nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

View File

@@ -1,18 +1,20 @@
'use strict';
exports.__esModule = true;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = normalizeBoxShadow;
var _postcssValueParser = require('postcss-value-parser');
var _cssnanoUtilGetArguments = require('cssnano-util-get-arguments');
var _cssnanoUtilGetArguments2 = _interopRequireDefault(_cssnanoUtilGetArguments);
var _addSpace = require('../lib/addSpace');
var _addSpace2 = _interopRequireDefault(_addSpace);
var _getArguments = require('../lib/getArguments');
var _getArguments2 = _interopRequireDefault(_getArguments);
var _getValue = require('../lib/getValue');
var _getValue2 = _interopRequireDefault(_getValue);
@@ -21,39 +23,45 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
// box-shadow: inset? && <length>{2,4} && <color>?
function normalizeBoxShadow(decl, parsed) {
var args = (0, _getArguments2.default)(parsed);
var abort = false;
function normalizeBoxShadow(parsed) {
let args = (0, _cssnanoUtilGetArguments2.default)(parsed);
let abort = false;
var values = args.reduce(function (list, arg) {
var val = [];
var state = {
let values = args.reduce((list, arg) => {
let val = [];
let state = {
inset: [],
color: []
};
arg.forEach(function (node) {
if (node.type === 'function' && ~node.value.indexOf('calc')) {
arg.forEach(node => {
const { type, value } = node;
if (type === 'function' && ~value.toLowerCase().indexOf('calc')) {
abort = true;
return;
}
if (node.type === 'space') {
if (type === 'space') {
return;
}
if ((0, _postcssValueParser.unit)(node.value)) {
val = [].concat(val, [node, (0, _addSpace2.default)()]);
} else if (node.value === 'inset') {
state.inset = [].concat(state.inset, [node, (0, _addSpace2.default)()]);
if ((0, _postcssValueParser.unit)(value)) {
val = [...val, node, (0, _addSpace2.default)()];
} else if (value.toLowerCase() === 'inset') {
state.inset = [...state.inset, node, (0, _addSpace2.default)()];
} else {
state.color = [].concat(state.color, [node, (0, _addSpace2.default)()]);
state.color = [...state.color, node, (0, _addSpace2.default)()];
}
});
return [].concat(list, [[].concat(state.inset, val, state.color)]);
return [...list, [...state.inset, ...val, ...state.color]];
}, []);
if (abort) {
return;
return parsed.toString();
}
decl.value = (0, _getValue2.default)(values);
return (0, _getValue2.default)(values);
}
module.exports = exports['default'];