parent
c62e3cdfab
commit
9a78f91cbf
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,786 @@
|
||||
"use strict";
|
||||
(self["webpackChunk"] = self["webpackChunk"] || []).push([[33172],{
|
||||
|
||||
/***/ 77171:
|
||||
/*!**********************************************************************************!*\
|
||||
!*** ./node_modules/@ant-design/icons/es/icons/ArrowDownOutlined.js + 1 modules ***!
|
||||
\**********************************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"Z": function() { return /* binding */ icons_ArrowDownOutlined; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js
|
||||
var objectSpread2 = __webpack_require__(1413);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/ArrowDownOutlined.js
|
||||
// This icon file is generated automatically.
|
||||
var ArrowDownOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M862 465.3h-81c-4.6 0-9 2-12.1 5.5L550 723.1V160c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v563.1L255.1 470.8c-3-3.5-7.4-5.5-12.1-5.5h-81c-6.8 0-10.5 8.1-6 13.2L487.9 861a31.96 31.96 0 0048.3 0L868 478.5c4.5-5.2.8-13.2-6-13.2z" } }] }, "name": "arrow-down", "theme": "outlined" };
|
||||
/* harmony default export */ var asn_ArrowDownOutlined = (ArrowDownOutlined);
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/components/AntdIcon.js + 6 modules
|
||||
var AntdIcon = __webpack_require__(7918);
|
||||
;// CONCATENATED MODULE: ./node_modules/@ant-design/icons/es/icons/ArrowDownOutlined.js
|
||||
|
||||
// GENERATE BY ./scripts/generate.ts
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
|
||||
|
||||
var ArrowDownOutlined_ArrowDownOutlined = function ArrowDownOutlined(props, ref) {
|
||||
return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, {
|
||||
ref: ref,
|
||||
icon: asn_ArrowDownOutlined
|
||||
}));
|
||||
};
|
||||
ArrowDownOutlined_ArrowDownOutlined.displayName = 'ArrowDownOutlined';
|
||||
/* harmony default export */ var icons_ArrowDownOutlined = (/*#__PURE__*/react.forwardRef(ArrowDownOutlined_ArrowDownOutlined));
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 5467:
|
||||
/*!**********************************************************!*\
|
||||
!*** ./node_modules/antd/es/_util/getDataOrAriaProps.js ***!
|
||||
\**********************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
||||
/* harmony export */ "Z": function() { return /* binding */ getDataOrAriaProps; }
|
||||
/* harmony export */ });
|
||||
function getDataOrAriaProps(props) {
|
||||
return Object.keys(props).reduce(function (prev, key) {
|
||||
if ((key.startsWith('data-') || key.startsWith('aria-') || key === 'role') && !key.startsWith('data-__')) {
|
||||
prev[key] = props[key];
|
||||
}
|
||||
return prev;
|
||||
}, {});
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 29924:
|
||||
/*!*********************************************************!*\
|
||||
!*** ./node_modules/antd/es/radio/index.js + 4 modules ***!
|
||||
\*********************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"ZP": function() { return /* binding */ es_radio; }
|
||||
});
|
||||
|
||||
// UNUSED EXPORTS: Button, Group
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js
|
||||
var esm_extends = __webpack_require__(87462);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
||||
var defineProperty = __webpack_require__(4942);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules
|
||||
var slicedToArray = __webpack_require__(97685);
|
||||
// EXTERNAL MODULE: ./node_modules/classnames/index.js
|
||||
var classnames = __webpack_require__(94184);
|
||||
var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
|
||||
// EXTERNAL MODULE: ./node_modules/rc-util/es/hooks/useMergedState.js
|
||||
var useMergedState = __webpack_require__(21770);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js
|
||||
var context = __webpack_require__(53124);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/SizeContext.js
|
||||
var SizeContext = __webpack_require__(97647);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/_util/getDataOrAriaProps.js
|
||||
var getDataOrAriaProps = __webpack_require__(5467);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/radio/context.js
|
||||
|
||||
var RadioGroupContext = /*#__PURE__*/react.createContext(null);
|
||||
var RadioGroupContextProvider = RadioGroupContext.Provider;
|
||||
/* harmony default export */ var radio_context = (RadioGroupContext);
|
||||
var RadioOptionTypeContext = /*#__PURE__*/react.createContext(null);
|
||||
var RadioOptionTypeContextProvider = RadioOptionTypeContext.Provider;
|
||||
// EXTERNAL MODULE: ./node_modules/rc-checkbox/es/index.js
|
||||
var es = __webpack_require__(50132);
|
||||
// EXTERNAL MODULE: ./node_modules/rc-util/es/ref.js
|
||||
var es_ref = __webpack_require__(42550);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/DisabledContext.js
|
||||
var DisabledContext = __webpack_require__(98866);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/form/context.js
|
||||
var form_context = __webpack_require__(65223);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/radio/radio.js
|
||||
|
||||
|
||||
var __rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var InternalRadio = function InternalRadio(props, ref) {
|
||||
var _classNames;
|
||||
var groupContext = react.useContext(radio_context);
|
||||
var radioOptionTypeContext = react.useContext(RadioOptionTypeContext);
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls,
|
||||
direction = _React$useContext.direction;
|
||||
var innerRef = react.useRef();
|
||||
var mergedRef = (0,es_ref/* composeRef */.sQ)(ref, innerRef);
|
||||
var _useContext = (0,react.useContext)(form_context/* FormItemInputContext */.aM),
|
||||
isFormItemInput = _useContext.isFormItemInput;
|
||||
false ? 0 : void 0;
|
||||
var onChange = function onChange(e) {
|
||||
var _a, _b;
|
||||
(_a = props.onChange) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
||||
(_b = groupContext === null || groupContext === void 0 ? void 0 : groupContext.onChange) === null || _b === void 0 ? void 0 : _b.call(groupContext, e);
|
||||
};
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
children = props.children,
|
||||
style = props.style,
|
||||
customDisabled = props.disabled,
|
||||
restProps = __rest(props, ["prefixCls", "className", "children", "style", "disabled"]);
|
||||
var radioPrefixCls = getPrefixCls('radio', customizePrefixCls);
|
||||
var prefixCls = ((groupContext === null || groupContext === void 0 ? void 0 : groupContext.optionType) || radioOptionTypeContext) === 'button' ? "".concat(radioPrefixCls, "-button") : radioPrefixCls;
|
||||
var radioProps = (0,esm_extends/* default */.Z)({}, restProps);
|
||||
// ===================== Disabled =====================
|
||||
var disabled = react.useContext(DisabledContext/* default */.Z);
|
||||
radioProps.disabled = customDisabled || disabled;
|
||||
if (groupContext) {
|
||||
radioProps.name = groupContext.name;
|
||||
radioProps.onChange = onChange;
|
||||
radioProps.checked = props.value === groupContext.value;
|
||||
radioProps.disabled = radioProps.disabled || groupContext.disabled;
|
||||
}
|
||||
var wrapperClassString = classnames_default()("".concat(prefixCls, "-wrapper"), (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-checked"), radioProps.checked), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-disabled"), radioProps.disabled), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-rtl"), direction === 'rtl'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-in-form-item"), isFormItemInput), _classNames), className);
|
||||
return (
|
||||
/*#__PURE__*/
|
||||
// eslint-disable-next-line jsx-a11y/label-has-associated-control
|
||||
react.createElement("label", {
|
||||
className: wrapperClassString,
|
||||
style: style,
|
||||
onMouseEnter: props.onMouseEnter,
|
||||
onMouseLeave: props.onMouseLeave
|
||||
}, /*#__PURE__*/react.createElement(es/* default */.Z, (0,esm_extends/* default */.Z)({}, radioProps, {
|
||||
type: "radio",
|
||||
prefixCls: prefixCls,
|
||||
ref: mergedRef
|
||||
})), children !== undefined ? /*#__PURE__*/react.createElement("span", null, children) : null)
|
||||
);
|
||||
};
|
||||
var Radio = /*#__PURE__*/react.forwardRef(InternalRadio);
|
||||
if (false) {}
|
||||
/* harmony default export */ var radio_radio = (Radio);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/radio/group.js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var RadioGroup = /*#__PURE__*/react.forwardRef(function (props, ref) {
|
||||
var _classNames;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls,
|
||||
direction = _React$useContext.direction;
|
||||
var size = react.useContext(SizeContext/* default */.Z);
|
||||
var _useMergedState = (0,useMergedState/* default */.Z)(props.defaultValue, {
|
||||
value: props.value
|
||||
}),
|
||||
_useMergedState2 = (0,slicedToArray/* default */.Z)(_useMergedState, 2),
|
||||
value = _useMergedState2[0],
|
||||
setValue = _useMergedState2[1];
|
||||
var onRadioChange = function onRadioChange(ev) {
|
||||
var lastValue = value;
|
||||
var val = ev.target.value;
|
||||
if (!('value' in props)) {
|
||||
setValue(val);
|
||||
}
|
||||
var onChange = props.onChange;
|
||||
if (onChange && val !== lastValue) {
|
||||
onChange(ev);
|
||||
}
|
||||
};
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
_props$className = props.className,
|
||||
className = _props$className === void 0 ? '' : _props$className,
|
||||
options = props.options,
|
||||
_props$buttonStyle = props.buttonStyle,
|
||||
buttonStyle = _props$buttonStyle === void 0 ? 'outline' : _props$buttonStyle,
|
||||
disabled = props.disabled,
|
||||
children = props.children,
|
||||
customizeSize = props.size,
|
||||
style = props.style,
|
||||
id = props.id,
|
||||
onMouseEnter = props.onMouseEnter,
|
||||
onMouseLeave = props.onMouseLeave,
|
||||
onFocus = props.onFocus,
|
||||
onBlur = props.onBlur;
|
||||
var prefixCls = getPrefixCls('radio', customizePrefixCls);
|
||||
var groupPrefixCls = "".concat(prefixCls, "-group");
|
||||
var childrenToRender = children;
|
||||
// 如果存在 options, 优先使用
|
||||
if (options && options.length > 0) {
|
||||
childrenToRender = options.map(function (option) {
|
||||
if (typeof option === 'string' || typeof option === 'number') {
|
||||
// 此处类型自动推导为 string
|
||||
return /*#__PURE__*/react.createElement(radio_radio, {
|
||||
key: option.toString(),
|
||||
prefixCls: prefixCls,
|
||||
disabled: disabled,
|
||||
value: option,
|
||||
checked: value === option
|
||||
}, option);
|
||||
}
|
||||
// 此处类型自动推导为 { label: string value: string }
|
||||
return /*#__PURE__*/react.createElement(radio_radio, {
|
||||
key: "radio-group-value-options-".concat(option.value),
|
||||
prefixCls: prefixCls,
|
||||
disabled: option.disabled || disabled,
|
||||
value: option.value,
|
||||
checked: value === option.value,
|
||||
style: option.style
|
||||
}, option.label);
|
||||
});
|
||||
}
|
||||
var mergedSize = customizeSize || size;
|
||||
var classString = classnames_default()(groupPrefixCls, "".concat(groupPrefixCls, "-").concat(buttonStyle), (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(groupPrefixCls, "-").concat(mergedSize), mergedSize), (0,defineProperty/* default */.Z)(_classNames, "".concat(groupPrefixCls, "-rtl"), direction === 'rtl'), _classNames), className);
|
||||
return /*#__PURE__*/react.createElement("div", (0,esm_extends/* default */.Z)({}, (0,getDataOrAriaProps/* default */.Z)(props), {
|
||||
className: classString,
|
||||
style: style,
|
||||
onMouseEnter: onMouseEnter,
|
||||
onMouseLeave: onMouseLeave,
|
||||
onFocus: onFocus,
|
||||
onBlur: onBlur,
|
||||
id: id,
|
||||
ref: ref
|
||||
}), /*#__PURE__*/react.createElement(RadioGroupContextProvider, {
|
||||
value: {
|
||||
onChange: onRadioChange,
|
||||
value: value,
|
||||
disabled: props.disabled,
|
||||
name: props.name,
|
||||
optionType: props.optionType
|
||||
}
|
||||
}, childrenToRender));
|
||||
});
|
||||
/* harmony default export */ var group = (/*#__PURE__*/react.memo(RadioGroup));
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/radio/radioButton.js
|
||||
|
||||
var radioButton_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
var RadioButton = function RadioButton(props, ref) {
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
radioProps = radioButton_rest(props, ["prefixCls"]);
|
||||
var prefixCls = getPrefixCls('radio', customizePrefixCls);
|
||||
return /*#__PURE__*/react.createElement(RadioOptionTypeContextProvider, {
|
||||
value: "button"
|
||||
}, /*#__PURE__*/react.createElement(radio_radio, (0,esm_extends/* default */.Z)({
|
||||
prefixCls: prefixCls
|
||||
}, radioProps, {
|
||||
type: "radio",
|
||||
ref: ref
|
||||
})));
|
||||
};
|
||||
/* harmony default export */ var radioButton = (/*#__PURE__*/react.forwardRef(RadioButton));
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/radio/index.js
|
||||
|
||||
|
||||
|
||||
|
||||
var radio_Radio = radio_radio;
|
||||
radio_Radio.Button = radioButton;
|
||||
radio_Radio.Group = group;
|
||||
radio_Radio.__ANT_RADIO = true;
|
||||
/* harmony default export */ var es_radio = (radio_Radio);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 83822:
|
||||
/*!***************************************************************!*\
|
||||
!*** ./node_modules/antd/es/radio/style/index.js + 1 modules ***!
|
||||
\***************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less
|
||||
var style_default = __webpack_require__(43146);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/radio/style/index.less
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/radio/style/index.js
|
||||
|
||||
|
||||
// deps-lint-skip: form
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 73481:
|
||||
/*!*************************************************************!*\
|
||||
!*** ./node_modules/antd/es/skeleton/index.js + 11 modules ***!
|
||||
\*************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"Z": function() { return /* binding */ skeleton; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
||||
var defineProperty = __webpack_require__(4942);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js
|
||||
var esm_extends = __webpack_require__(87462);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
|
||||
var esm_typeof = __webpack_require__(71002);
|
||||
// EXTERNAL MODULE: ./node_modules/classnames/index.js
|
||||
var classnames = __webpack_require__(94184);
|
||||
var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js
|
||||
var context = __webpack_require__(53124);
|
||||
// EXTERNAL MODULE: ./node_modules/rc-util/es/omit.js
|
||||
var omit = __webpack_require__(98423);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Element.js
|
||||
|
||||
|
||||
|
||||
|
||||
var Element = function Element(props) {
|
||||
var _classNames, _classNames2;
|
||||
var prefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
style = props.style,
|
||||
size = props.size,
|
||||
shape = props.shape;
|
||||
var sizeCls = classnames_default()((_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-lg"), size === 'large'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-sm"), size === 'small'), _classNames));
|
||||
var shapeCls = classnames_default()((_classNames2 = {}, (0,defineProperty/* default */.Z)(_classNames2, "".concat(prefixCls, "-circle"), shape === 'circle'), (0,defineProperty/* default */.Z)(_classNames2, "".concat(prefixCls, "-square"), shape === 'square'), (0,defineProperty/* default */.Z)(_classNames2, "".concat(prefixCls, "-round"), shape === 'round'), _classNames2));
|
||||
var sizeStyle = react.useMemo(function () {
|
||||
return typeof size === 'number' ? {
|
||||
width: size,
|
||||
height: size,
|
||||
lineHeight: "".concat(size, "px")
|
||||
} : {};
|
||||
}, [size]);
|
||||
return /*#__PURE__*/react.createElement("span", {
|
||||
className: classnames_default()(prefixCls, sizeCls, shapeCls, className),
|
||||
style: (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, sizeStyle), style)
|
||||
});
|
||||
};
|
||||
/* harmony default export */ var skeleton_Element = (Element);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Avatar.js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var SkeletonAvatar = function SkeletonAvatar(props) {
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
active = props.active,
|
||||
_props$shape = props.shape,
|
||||
shape = _props$shape === void 0 ? 'circle' : _props$shape,
|
||||
_props$size = props.size,
|
||||
size = _props$size === void 0 ? 'default' : _props$size;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
||||
var otherProps = (0,omit/* default */.Z)(props, ['prefixCls', 'className']);
|
||||
var cls = classnames_default()(prefixCls, "".concat(prefixCls, "-element"), (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-active"), active), className);
|
||||
return /*#__PURE__*/react.createElement("div", {
|
||||
className: cls
|
||||
}, /*#__PURE__*/react.createElement(skeleton_Element, (0,esm_extends/* default */.Z)({
|
||||
prefixCls: "".concat(prefixCls, "-avatar"),
|
||||
shape: shape,
|
||||
size: size
|
||||
}, otherProps)));
|
||||
};
|
||||
/* harmony default export */ var Avatar = (SkeletonAvatar);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Button.js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var SkeletonButton = function SkeletonButton(props) {
|
||||
var _classNames;
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
active = props.active,
|
||||
_props$block = props.block,
|
||||
block = _props$block === void 0 ? false : _props$block,
|
||||
_props$size = props.size,
|
||||
size = _props$size === void 0 ? 'default' : _props$size;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
||||
var otherProps = (0,omit/* default */.Z)(props, ['prefixCls']);
|
||||
var cls = classnames_default()(prefixCls, "".concat(prefixCls, "-element"), (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-active"), active), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-block"), block), _classNames), className);
|
||||
return /*#__PURE__*/react.createElement("div", {
|
||||
className: cls
|
||||
}, /*#__PURE__*/react.createElement(skeleton_Element, (0,esm_extends/* default */.Z)({
|
||||
prefixCls: "".concat(prefixCls, "-button"),
|
||||
size: size
|
||||
}, otherProps)));
|
||||
};
|
||||
/* harmony default export */ var Button = (SkeletonButton);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js
|
||||
var objectSpread2 = __webpack_require__(1413);
|
||||
;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/DotChartOutlined.js
|
||||
// This icon file is generated automatically.
|
||||
var DotChartOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M888 792H200V168c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v688c0 4.4 3.6 8 8 8h752c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM288 604a64 64 0 10128 0 64 64 0 10-128 0zm118-224a48 48 0 1096 0 48 48 0 10-96 0zm158 228a96 96 0 10192 0 96 96 0 10-192 0zm148-314a56 56 0 10112 0 56 56 0 10-112 0z" } }] }, "name": "dot-chart", "theme": "outlined" };
|
||||
/* harmony default export */ var asn_DotChartOutlined = (DotChartOutlined);
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/components/AntdIcon.js + 3 modules
|
||||
var AntdIcon = __webpack_require__(93771);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/DotChartOutlined.js
|
||||
|
||||
// GENERATE BY ./scripts/generate.ts
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
|
||||
|
||||
var DotChartOutlined_DotChartOutlined = function DotChartOutlined(props, ref) {
|
||||
return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, {
|
||||
ref: ref,
|
||||
icon: asn_DotChartOutlined
|
||||
}));
|
||||
};
|
||||
DotChartOutlined_DotChartOutlined.displayName = 'DotChartOutlined';
|
||||
/* harmony default export */ var icons_DotChartOutlined = (/*#__PURE__*/react.forwardRef(DotChartOutlined_DotChartOutlined));
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Node.js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var SkeletonNode = function SkeletonNode(props) {
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
style = props.style,
|
||||
active = props.active,
|
||||
children = props.children;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
||||
var cls = classnames_default()(prefixCls, "".concat(prefixCls, "-element"), (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-active"), active), className);
|
||||
var content = children !== null && children !== void 0 ? children : /*#__PURE__*/react.createElement(icons_DotChartOutlined, null);
|
||||
return /*#__PURE__*/react.createElement("div", {
|
||||
className: cls
|
||||
}, /*#__PURE__*/react.createElement("div", {
|
||||
className: classnames_default()("".concat(prefixCls, "-image"), className),
|
||||
style: style
|
||||
}, content));
|
||||
};
|
||||
/* harmony default export */ var Node = (SkeletonNode);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Image.js
|
||||
|
||||
|
||||
|
||||
|
||||
var path = 'M365.714286 329.142857q0 45.714286-32.036571 77.677714t-77.677714 32.036571-77.677714-32.036571-32.036571-77.677714 32.036571-77.677714 77.677714-32.036571 77.677714 32.036571 32.036571 77.677714zM950.857143 548.571429l0 256-804.571429 0 0-109.714286 182.857143-182.857143 91.428571 91.428571 292.571429-292.571429zM1005.714286 146.285714l-914.285714 0q-7.460571 0-12.873143 5.412571t-5.412571 12.873143l0 694.857143q0 7.460571 5.412571 12.873143t12.873143 5.412571l914.285714 0q7.460571 0 12.873143-5.412571t5.412571-12.873143l0-694.857143q0-7.460571-5.412571-12.873143t-12.873143-5.412571zM1097.142857 164.571429l0 694.857143q0 37.741714-26.843429 64.585143t-64.585143 26.843429l-914.285714 0q-37.741714 0-64.585143-26.843429t-26.843429-64.585143l0-694.857143q0-37.741714 26.843429-64.585143t64.585143-26.843429l914.285714 0q37.741714 0 64.585143 26.843429t26.843429 64.585143z';
|
||||
var SkeletonImage = function SkeletonImage(props) {
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
style = props.style,
|
||||
active = props.active;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
||||
var cls = classnames_default()(prefixCls, "".concat(prefixCls, "-element"), (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-active"), active), className);
|
||||
return /*#__PURE__*/react.createElement("div", {
|
||||
className: cls
|
||||
}, /*#__PURE__*/react.createElement("div", {
|
||||
className: classnames_default()("".concat(prefixCls, "-image"), className),
|
||||
style: style
|
||||
}, /*#__PURE__*/react.createElement("svg", {
|
||||
viewBox: "0 0 1098 1024",
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
className: "".concat(prefixCls, "-image-svg")
|
||||
}, /*#__PURE__*/react.createElement("path", {
|
||||
d: path,
|
||||
className: "".concat(prefixCls, "-image-path")
|
||||
}))));
|
||||
};
|
||||
/* harmony default export */ var Image = (SkeletonImage);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Input.js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var SkeletonInput = function SkeletonInput(props) {
|
||||
var _classNames;
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
active = props.active,
|
||||
block = props.block,
|
||||
_props$size = props.size,
|
||||
size = _props$size === void 0 ? 'default' : _props$size;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
||||
var otherProps = (0,omit/* default */.Z)(props, ['prefixCls']);
|
||||
var cls = classnames_default()(prefixCls, "".concat(prefixCls, "-element"), (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-active"), active), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-block"), block), _classNames), className);
|
||||
return /*#__PURE__*/react.createElement("div", {
|
||||
className: cls
|
||||
}, /*#__PURE__*/react.createElement(skeleton_Element, (0,esm_extends/* default */.Z)({
|
||||
prefixCls: "".concat(prefixCls, "-input"),
|
||||
size: size
|
||||
}, otherProps)));
|
||||
};
|
||||
/* harmony default export */ var Input = (SkeletonInput);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 2 modules
|
||||
var toConsumableArray = __webpack_require__(74902);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Paragraph.js
|
||||
|
||||
|
||||
|
||||
var Paragraph = function Paragraph(props) {
|
||||
var getWidth = function getWidth(index) {
|
||||
var width = props.width,
|
||||
_props$rows = props.rows,
|
||||
rows = _props$rows === void 0 ? 2 : _props$rows;
|
||||
if (Array.isArray(width)) {
|
||||
return width[index];
|
||||
}
|
||||
// last paragraph
|
||||
if (rows - 1 === index) {
|
||||
return width;
|
||||
}
|
||||
return undefined;
|
||||
};
|
||||
var prefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
style = props.style,
|
||||
rows = props.rows;
|
||||
var rowList = (0,toConsumableArray/* default */.Z)(Array(rows)).map(function (_, index) {
|
||||
return (
|
||||
/*#__PURE__*/
|
||||
// eslint-disable-next-line react/no-array-index-key
|
||||
react.createElement("li", {
|
||||
key: index,
|
||||
style: {
|
||||
width: getWidth(index)
|
||||
}
|
||||
})
|
||||
);
|
||||
});
|
||||
return /*#__PURE__*/react.createElement("ul", {
|
||||
className: classnames_default()(prefixCls, className),
|
||||
style: style
|
||||
}, rowList);
|
||||
};
|
||||
/* harmony default export */ var skeleton_Paragraph = (Paragraph);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Title.js
|
||||
|
||||
/* eslint-disable jsx-a11y/heading-has-content */
|
||||
|
||||
|
||||
var Title = function Title(_ref) {
|
||||
var prefixCls = _ref.prefixCls,
|
||||
className = _ref.className,
|
||||
width = _ref.width,
|
||||
style = _ref.style;
|
||||
return /*#__PURE__*/react.createElement("h3", {
|
||||
className: classnames_default()(prefixCls, className),
|
||||
style: (0,esm_extends/* default */.Z)({
|
||||
width: width
|
||||
}, style)
|
||||
});
|
||||
};
|
||||
/* harmony default export */ var skeleton_Title = (Title);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/Skeleton.js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function getComponentProps(prop) {
|
||||
if (prop && (0,esm_typeof/* default */.Z)(prop) === 'object') {
|
||||
return prop;
|
||||
}
|
||||
return {};
|
||||
}
|
||||
function getAvatarBasicProps(hasTitle, hasParagraph) {
|
||||
if (hasTitle && !hasParagraph) {
|
||||
// Square avatar
|
||||
return {
|
||||
size: 'large',
|
||||
shape: 'square'
|
||||
};
|
||||
}
|
||||
return {
|
||||
size: 'large',
|
||||
shape: 'circle'
|
||||
};
|
||||
}
|
||||
function getTitleBasicProps(hasAvatar, hasParagraph) {
|
||||
if (!hasAvatar && hasParagraph) {
|
||||
return {
|
||||
width: '38%'
|
||||
};
|
||||
}
|
||||
if (hasAvatar && hasParagraph) {
|
||||
return {
|
||||
width: '50%'
|
||||
};
|
||||
}
|
||||
return {};
|
||||
}
|
||||
function getParagraphBasicProps(hasAvatar, hasTitle) {
|
||||
var basicProps = {};
|
||||
// Width
|
||||
if (!hasAvatar || !hasTitle) {
|
||||
basicProps.width = '61%';
|
||||
}
|
||||
// Rows
|
||||
if (!hasAvatar && hasTitle) {
|
||||
basicProps.rows = 3;
|
||||
} else {
|
||||
basicProps.rows = 2;
|
||||
}
|
||||
return basicProps;
|
||||
}
|
||||
var Skeleton = function Skeleton(props) {
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
loading = props.loading,
|
||||
className = props.className,
|
||||
style = props.style,
|
||||
children = props.children,
|
||||
_props$avatar = props.avatar,
|
||||
avatar = _props$avatar === void 0 ? false : _props$avatar,
|
||||
_props$title = props.title,
|
||||
title = _props$title === void 0 ? true : _props$title,
|
||||
_props$paragraph = props.paragraph,
|
||||
paragraph = _props$paragraph === void 0 ? true : _props$paragraph,
|
||||
active = props.active,
|
||||
round = props.round;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls,
|
||||
direction = _React$useContext.direction;
|
||||
var prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
||||
if (loading || !('loading' in props)) {
|
||||
var _classNames;
|
||||
var hasAvatar = !!avatar;
|
||||
var hasTitle = !!title;
|
||||
var hasParagraph = !!paragraph;
|
||||
// Avatar
|
||||
var avatarNode;
|
||||
if (hasAvatar) {
|
||||
var avatarProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({
|
||||
prefixCls: "".concat(prefixCls, "-avatar")
|
||||
}, getAvatarBasicProps(hasTitle, hasParagraph)), getComponentProps(avatar));
|
||||
// We direct use SkeletonElement as avatar in skeleton internal.
|
||||
avatarNode = /*#__PURE__*/react.createElement("div", {
|
||||
className: "".concat(prefixCls, "-header")
|
||||
}, /*#__PURE__*/react.createElement(skeleton_Element, (0,esm_extends/* default */.Z)({}, avatarProps)));
|
||||
}
|
||||
var contentNode;
|
||||
if (hasTitle || hasParagraph) {
|
||||
// Title
|
||||
var $title;
|
||||
if (hasTitle) {
|
||||
var titleProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({
|
||||
prefixCls: "".concat(prefixCls, "-title")
|
||||
}, getTitleBasicProps(hasAvatar, hasParagraph)), getComponentProps(title));
|
||||
$title = /*#__PURE__*/react.createElement(skeleton_Title, (0,esm_extends/* default */.Z)({}, titleProps));
|
||||
}
|
||||
// Paragraph
|
||||
var paragraphNode;
|
||||
if (hasParagraph) {
|
||||
var paragraphProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({
|
||||
prefixCls: "".concat(prefixCls, "-paragraph")
|
||||
}, getParagraphBasicProps(hasAvatar, hasTitle)), getComponentProps(paragraph));
|
||||
paragraphNode = /*#__PURE__*/react.createElement(skeleton_Paragraph, (0,esm_extends/* default */.Z)({}, paragraphProps));
|
||||
}
|
||||
contentNode = /*#__PURE__*/react.createElement("div", {
|
||||
className: "".concat(prefixCls, "-content")
|
||||
}, $title, paragraphNode);
|
||||
}
|
||||
var cls = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-with-avatar"), hasAvatar), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-active"), active), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-round"), round), _classNames), className);
|
||||
return /*#__PURE__*/react.createElement("div", {
|
||||
className: cls,
|
||||
style: style
|
||||
}, avatarNode, contentNode);
|
||||
}
|
||||
return typeof children !== 'undefined' ? children : null;
|
||||
};
|
||||
Skeleton.Button = Button;
|
||||
Skeleton.Avatar = Avatar;
|
||||
Skeleton.Input = Input;
|
||||
Skeleton.Image = Image;
|
||||
Skeleton.Node = Node;
|
||||
/* harmony default export */ var skeleton_Skeleton = (Skeleton);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/index.js
|
||||
|
||||
/* harmony default export */ var skeleton = (skeleton_Skeleton);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 61099:
|
||||
/*!******************************************************************!*\
|
||||
!*** ./node_modules/antd/es/skeleton/style/index.js + 1 modules ***!
|
||||
\******************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less
|
||||
var style_default = __webpack_require__(43146);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/style/index.less
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/skeleton/style/index.js
|
||||
|
||||
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
@ -1,887 +0,0 @@
|
||||
"use strict";
|
||||
(self["webpackChunk"] = self["webpackChunk"] || []).push([[57549],{
|
||||
|
||||
/***/ 42110:
|
||||
/*!*******************************************************************!*\
|
||||
!*** ./node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.js ***!
|
||||
\*******************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__) {
|
||||
|
||||
// This icon file is generated automatically.
|
||||
var PlusOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "defs", "attrs": {}, "children": [{ "tag": "style", "attrs": {} }] }, { "tag": "path", "attrs": { "d": "M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z" } }, { "tag": "path", "attrs": { "d": "M176 474h672q8 0 8 8v60q0 8-8 8H176q-8 0-8-8v-60q0-8 8-8z" } }] }, "name": "plus", "theme": "outlined" };
|
||||
/* harmony default export */ __webpack_exports__["Z"] = (PlusOutlined);
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 87588:
|
||||
/*!******************************************************************************!*\
|
||||
!*** ./node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.js ***!
|
||||
\******************************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
/* harmony import */ var _babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread2 */ 1413);
|
||||
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294);
|
||||
/* harmony import */ var _ant_design_icons_svg_es_asn_ExclamationCircleOutlined__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @ant-design/icons-svg/es/asn/ExclamationCircleOutlined */ 61144);
|
||||
/* harmony import */ var _components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../components/AntdIcon */ 7918);
|
||||
|
||||
// GENERATE BY ./scripts/generate.ts
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
|
||||
|
||||
var ExclamationCircleOutlined = function ExclamationCircleOutlined(props, ref) {
|
||||
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z, (0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)({}, props), {}, {
|
||||
ref: ref,
|
||||
icon: _ant_design_icons_svg_es_asn_ExclamationCircleOutlined__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z
|
||||
}));
|
||||
};
|
||||
ExclamationCircleOutlined.displayName = 'ExclamationCircleOutlined';
|
||||
/* harmony default export */ __webpack_exports__["Z"] = (/*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(ExclamationCircleOutlined));
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 3089:
|
||||
/*!************************************************************************************!*\
|
||||
!*** ./node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.js + 1 modules ***!
|
||||
\************************************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"Z": function() { return /* binding */ icons_MinusCircleOutlined; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js
|
||||
var objectSpread2 = __webpack_require__(1413);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.js
|
||||
// This icon file is generated automatically.
|
||||
var MinusCircleOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M696 480H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8z" } }, { "tag": "path", "attrs": { "d": "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z" } }] }, "name": "minus-circle", "theme": "outlined" };
|
||||
/* harmony default export */ var asn_MinusCircleOutlined = (MinusCircleOutlined);
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/components/AntdIcon.js + 6 modules
|
||||
var AntdIcon = __webpack_require__(7918);
|
||||
;// CONCATENATED MODULE: ./node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.js
|
||||
|
||||
// GENERATE BY ./scripts/generate.ts
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
|
||||
|
||||
var MinusCircleOutlined_MinusCircleOutlined = function MinusCircleOutlined(props, ref) {
|
||||
return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, {
|
||||
ref: ref,
|
||||
icon: asn_MinusCircleOutlined
|
||||
}));
|
||||
};
|
||||
MinusCircleOutlined_MinusCircleOutlined.displayName = 'MinusCircleOutlined';
|
||||
/* harmony default export */ var icons_MinusCircleOutlined = (/*#__PURE__*/react.forwardRef(MinusCircleOutlined_MinusCircleOutlined));
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 64789:
|
||||
/*!***********************************************************************************!*\
|
||||
!*** ./node_modules/@ant-design/icons/es/icons/PlusCircleOutlined.js + 1 modules ***!
|
||||
\***********************************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"Z": function() { return /* binding */ icons_PlusCircleOutlined; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js
|
||||
var objectSpread2 = __webpack_require__(1413);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/PlusCircleOutlined.js
|
||||
// This icon file is generated automatically.
|
||||
var PlusCircleOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M696 480H544V328c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v152H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h152v152c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V544h152c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8z" } }, { "tag": "path", "attrs": { "d": "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z" } }] }, "name": "plus-circle", "theme": "outlined" };
|
||||
/* harmony default export */ var asn_PlusCircleOutlined = (PlusCircleOutlined);
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/components/AntdIcon.js + 6 modules
|
||||
var AntdIcon = __webpack_require__(7918);
|
||||
;// CONCATENATED MODULE: ./node_modules/@ant-design/icons/es/icons/PlusCircleOutlined.js
|
||||
|
||||
// GENERATE BY ./scripts/generate.ts
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
|
||||
|
||||
var PlusCircleOutlined_PlusCircleOutlined = function PlusCircleOutlined(props, ref) {
|
||||
return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, {
|
||||
ref: ref,
|
||||
icon: asn_PlusCircleOutlined
|
||||
}));
|
||||
};
|
||||
PlusCircleOutlined_PlusCircleOutlined.displayName = 'PlusCircleOutlined';
|
||||
/* harmony default export */ var icons_PlusCircleOutlined = (/*#__PURE__*/react.forwardRef(PlusCircleOutlined_PlusCircleOutlined));
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 51042:
|
||||
/*!*****************************************************************!*\
|
||||
!*** ./node_modules/@ant-design/icons/es/icons/PlusOutlined.js ***!
|
||||
\*****************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
/* harmony import */ var _babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread2 */ 1413);
|
||||
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294);
|
||||
/* harmony import */ var _ant_design_icons_svg_es_asn_PlusOutlined__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @ant-design/icons-svg/es/asn/PlusOutlined */ 42110);
|
||||
/* harmony import */ var _components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../components/AntdIcon */ 7918);
|
||||
|
||||
// GENERATE BY ./scripts/generate.ts
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
|
||||
|
||||
var PlusOutlined = function PlusOutlined(props, ref) {
|
||||
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z, (0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)({}, props), {}, {
|
||||
ref: ref,
|
||||
icon: _ant_design_icons_svg_es_asn_PlusOutlined__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z
|
||||
}));
|
||||
};
|
||||
PlusOutlined.displayName = 'PlusOutlined';
|
||||
/* harmony default export */ __webpack_exports__["Z"] = (/*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(PlusOutlined));
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 58492:
|
||||
/*!**************************************************************!*\
|
||||
!*** ./node_modules/antd/es/breadcrumb/index.js + 3 modules ***!
|
||||
\**************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"Z": function() { return /* binding */ breadcrumb; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
||||
var defineProperty = __webpack_require__(4942);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js
|
||||
var esm_extends = __webpack_require__(87462);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 2 modules
|
||||
var toConsumableArray = __webpack_require__(74902);
|
||||
// EXTERNAL MODULE: ./node_modules/classnames/index.js
|
||||
var classnames = __webpack_require__(94184);
|
||||
var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
|
||||
// EXTERNAL MODULE: ./node_modules/rc-util/es/Children/toArray.js
|
||||
var toArray = __webpack_require__(50344);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js
|
||||
var context = __webpack_require__(53124);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/menu/index.js + 5 modules
|
||||
var menu = __webpack_require__(66516);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/_util/reactNode.js
|
||||
var reactNode = __webpack_require__(96159);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/DownOutlined.js
|
||||
var DownOutlined = __webpack_require__(13622);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/dropdown/dropdown.js + 1 modules
|
||||
var dropdown = __webpack_require__(18562);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/BreadcrumbItem.js
|
||||
|
||||
var __rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var BreadcrumbItem = function BreadcrumbItem(props) {
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
_props$separator = props.separator,
|
||||
separator = _props$separator === void 0 ? '/' : _props$separator,
|
||||
children = props.children,
|
||||
menu = props.menu,
|
||||
overlay = props.overlay,
|
||||
dropdownProps = props.dropdownProps,
|
||||
restProps = __rest(props, ["prefixCls", "separator", "children", "menu", "overlay", "dropdownProps"]);
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var prefixCls = getPrefixCls('breadcrumb', customizePrefixCls);
|
||||
// Warning for deprecated usage
|
||||
if (false) {}
|
||||
/** If overlay is have Wrap a Dropdown */
|
||||
var renderBreadcrumbNode = function renderBreadcrumbNode(breadcrumbItem) {
|
||||
if (menu || overlay) {
|
||||
return /*#__PURE__*/react.createElement(dropdown/* default */.Z, (0,esm_extends/* default */.Z)({
|
||||
menu: menu,
|
||||
overlay: overlay,
|
||||
placement: "bottom"
|
||||
}, dropdownProps), /*#__PURE__*/react.createElement("span", {
|
||||
className: "".concat(prefixCls, "-overlay-link")
|
||||
}, breadcrumbItem, /*#__PURE__*/react.createElement(DownOutlined/* default */.Z, null)));
|
||||
}
|
||||
return breadcrumbItem;
|
||||
};
|
||||
var link;
|
||||
if ('href' in restProps) {
|
||||
link = /*#__PURE__*/react.createElement("a", (0,esm_extends/* default */.Z)({
|
||||
className: "".concat(prefixCls, "-link")
|
||||
}, restProps), children);
|
||||
} else {
|
||||
link = /*#__PURE__*/react.createElement("span", (0,esm_extends/* default */.Z)({
|
||||
className: "".concat(prefixCls, "-link")
|
||||
}, restProps), children);
|
||||
}
|
||||
// wrap to dropDown
|
||||
link = renderBreadcrumbNode(link);
|
||||
if (children !== undefined && children !== null) {
|
||||
return /*#__PURE__*/react.createElement("li", null, link, separator && /*#__PURE__*/react.createElement("span", {
|
||||
className: "".concat(prefixCls, "-separator")
|
||||
}, separator));
|
||||
}
|
||||
return null;
|
||||
};
|
||||
BreadcrumbItem.__ANT_BREADCRUMB_ITEM = true;
|
||||
/* harmony default export */ var breadcrumb_BreadcrumbItem = (BreadcrumbItem);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/BreadcrumbSeparator.js
|
||||
|
||||
|
||||
var BreadcrumbSeparator = function BreadcrumbSeparator(_ref) {
|
||||
var children = _ref.children;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var prefixCls = getPrefixCls('breadcrumb');
|
||||
return /*#__PURE__*/react.createElement("span", {
|
||||
className: "".concat(prefixCls, "-separator")
|
||||
}, children || '/');
|
||||
};
|
||||
BreadcrumbSeparator.__ANT_BREADCRUMB_SEPARATOR = true;
|
||||
/* harmony default export */ var breadcrumb_BreadcrumbSeparator = (BreadcrumbSeparator);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/Breadcrumb.js
|
||||
|
||||
|
||||
|
||||
var Breadcrumb_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function getBreadcrumbName(route, params) {
|
||||
if (!route.breadcrumbName) {
|
||||
return null;
|
||||
}
|
||||
var paramsKeys = Object.keys(params).join('|');
|
||||
var name = route.breadcrumbName.replace(new RegExp(":(".concat(paramsKeys, ")"), 'g'), function (replacement, key) {
|
||||
return params[key] || replacement;
|
||||
});
|
||||
return name;
|
||||
}
|
||||
function defaultItemRender(route, params, routes, paths) {
|
||||
var isLastItem = routes.indexOf(route) === routes.length - 1;
|
||||
var name = getBreadcrumbName(route, params);
|
||||
return isLastItem ? /*#__PURE__*/react.createElement("span", null, name) : /*#__PURE__*/react.createElement("a", {
|
||||
href: "#/".concat(paths.join('/'))
|
||||
}, name);
|
||||
}
|
||||
var getPath = function getPath(path, params) {
|
||||
path = (path || '').replace(/^\//, '');
|
||||
Object.keys(params).forEach(function (key) {
|
||||
path = path.replace(":".concat(key), params[key]);
|
||||
});
|
||||
return path;
|
||||
};
|
||||
var addChildPath = function addChildPath(paths, childPath, params) {
|
||||
var originalPaths = (0,toConsumableArray/* default */.Z)(paths);
|
||||
var path = getPath(childPath || '', params);
|
||||
if (path) {
|
||||
originalPaths.push(path);
|
||||
}
|
||||
return originalPaths;
|
||||
};
|
||||
var Breadcrumb = function Breadcrumb(_a) {
|
||||
var customizePrefixCls = _a.prefixCls,
|
||||
_a$separator = _a.separator,
|
||||
separator = _a$separator === void 0 ? '/' : _a$separator,
|
||||
style = _a.style,
|
||||
className = _a.className,
|
||||
routes = _a.routes,
|
||||
children = _a.children,
|
||||
_a$itemRender = _a.itemRender,
|
||||
itemRender = _a$itemRender === void 0 ? defaultItemRender : _a$itemRender,
|
||||
_a$params = _a.params,
|
||||
params = _a$params === void 0 ? {} : _a$params,
|
||||
restProps = Breadcrumb_rest(_a, ["prefixCls", "separator", "style", "className", "routes", "children", "itemRender", "params"]);
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls,
|
||||
direction = _React$useContext.direction;
|
||||
var crumbs;
|
||||
var prefixCls = getPrefixCls('breadcrumb', customizePrefixCls);
|
||||
if (routes && routes.length > 0) {
|
||||
// generated by route
|
||||
var paths = [];
|
||||
crumbs = routes.map(function (route) {
|
||||
var path = getPath(route.path, params);
|
||||
if (path) {
|
||||
paths.push(path);
|
||||
}
|
||||
// generated overlay by route.children
|
||||
var overlay;
|
||||
if (route.children && route.children.length) {
|
||||
overlay = /*#__PURE__*/react.createElement(menu/* default */.Z, {
|
||||
items: route.children.map(function (child) {
|
||||
return {
|
||||
key: child.path || child.breadcrumbName,
|
||||
label: itemRender(child, params, routes, addChildPath(paths, child.path, params))
|
||||
};
|
||||
})
|
||||
});
|
||||
}
|
||||
var itemProps = {
|
||||
separator: separator
|
||||
};
|
||||
if (overlay) {
|
||||
itemProps.overlay = overlay;
|
||||
}
|
||||
return /*#__PURE__*/react.createElement(breadcrumb_BreadcrumbItem, (0,esm_extends/* default */.Z)({}, itemProps, {
|
||||
key: path || route.breadcrumbName
|
||||
}), itemRender(route, params, routes, paths));
|
||||
});
|
||||
} else if (children) {
|
||||
crumbs = (0,toArray/* default */.Z)(children).map(function (element, index) {
|
||||
if (!element) {
|
||||
return element;
|
||||
}
|
||||
false ? 0 : void 0;
|
||||
return (0,reactNode/* cloneElement */.Tm)(element, {
|
||||
separator: separator,
|
||||
key: index
|
||||
});
|
||||
});
|
||||
}
|
||||
var breadcrumbClassName = classnames_default()(prefixCls, (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-rtl"), direction === 'rtl'), className);
|
||||
return /*#__PURE__*/react.createElement("nav", (0,esm_extends/* default */.Z)({
|
||||
className: breadcrumbClassName,
|
||||
style: style
|
||||
}, restProps), /*#__PURE__*/react.createElement("ol", null, crumbs));
|
||||
};
|
||||
Breadcrumb.Item = breadcrumb_BreadcrumbItem;
|
||||
Breadcrumb.Separator = breadcrumb_BreadcrumbSeparator;
|
||||
/* harmony default export */ var breadcrumb_Breadcrumb = (Breadcrumb);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/index.js
|
||||
|
||||
/* harmony default export */ var breadcrumb = (breadcrumb_Breadcrumb);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 63102:
|
||||
/*!********************************************************************!*\
|
||||
!*** ./node_modules/antd/es/breadcrumb/style/index.js + 1 modules ***!
|
||||
\********************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less
|
||||
var style_default = __webpack_require__(43146);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/style/index.less
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/dropdown/style/index.js + 1 modules
|
||||
var style = __webpack_require__(68018);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/menu/style/index.js + 1 modules
|
||||
var menu_style = __webpack_require__(83736);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/style/index.js
|
||||
|
||||
|
||||
// style dependencies
|
||||
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 27049:
|
||||
/*!***********************************************!*\
|
||||
!*** ./node_modules/antd/es/divider/index.js ***!
|
||||
\***********************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 87462);
|
||||
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ 4942);
|
||||
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! classnames */ 94184);
|
||||
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_0__);
|
||||
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ 67294);
|
||||
/* harmony import */ var _config_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../config-provider */ 53124);
|
||||
|
||||
|
||||
var __rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
var Divider = function Divider(props) {
|
||||
var _classNames;
|
||||
var _React$useContext = react__WEBPACK_IMPORTED_MODULE_1__.useContext(_config_provider__WEBPACK_IMPORTED_MODULE_2__/* .ConfigContext */ .E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls,
|
||||
direction = _React$useContext.direction;
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
_props$type = props.type,
|
||||
type = _props$type === void 0 ? 'horizontal' : _props$type,
|
||||
_props$orientation = props.orientation,
|
||||
orientation = _props$orientation === void 0 ? 'center' : _props$orientation,
|
||||
orientationMargin = props.orientationMargin,
|
||||
className = props.className,
|
||||
children = props.children,
|
||||
dashed = props.dashed,
|
||||
plain = props.plain,
|
||||
restProps = __rest(props, ["prefixCls", "type", "orientation", "orientationMargin", "className", "children", "dashed", "plain"]);
|
||||
var prefixCls = getPrefixCls('divider', customizePrefixCls);
|
||||
var orientationPrefix = orientation.length > 0 ? "-".concat(orientation) : orientation;
|
||||
var hasChildren = !!children;
|
||||
var hasCustomMarginLeft = orientation === 'left' && orientationMargin != null;
|
||||
var hasCustomMarginRight = orientation === 'right' && orientationMargin != null;
|
||||
var classString = classnames__WEBPACK_IMPORTED_MODULE_0___default()(prefixCls, "".concat(prefixCls, "-").concat(type), (_classNames = {}, (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-with-text"), hasChildren), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-with-text").concat(orientationPrefix), hasChildren), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-dashed"), !!dashed), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-plain"), !!plain), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-no-default-orientation-margin-left"), hasCustomMarginLeft), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-no-default-orientation-margin-right"), hasCustomMarginRight), _classNames), className);
|
||||
var innerStyle = (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)({}, hasCustomMarginLeft && {
|
||||
marginLeft: orientationMargin
|
||||
}), hasCustomMarginRight && {
|
||||
marginRight: orientationMargin
|
||||
});
|
||||
// Warning children not work in vertical mode
|
||||
if (false) {}
|
||||
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)({
|
||||
className: classString
|
||||
}, restProps, {
|
||||
role: "separator"
|
||||
}), children && type !== 'vertical' && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", {
|
||||
className: "".concat(prefixCls, "-inner-text"),
|
||||
style: innerStyle
|
||||
}, children));
|
||||
};
|
||||
/* harmony default export */ __webpack_exports__["Z"] = (Divider);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 98541:
|
||||
/*!*****************************************************************!*\
|
||||
!*** ./node_modules/antd/es/divider/style/index.js + 1 modules ***!
|
||||
\*****************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less
|
||||
var style_default = __webpack_require__(43146);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/divider/style/index.less
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/divider/style/index.js
|
||||
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 94594:
|
||||
/*!**********************************************************!*\
|
||||
!*** ./node_modules/antd/es/switch/index.js + 1 modules ***!
|
||||
\**********************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"Z": function() { return /* binding */ es_switch; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js
|
||||
var esm_extends = __webpack_require__(87462);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
||||
var defineProperty = __webpack_require__(4942);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/LoadingOutlined.js
|
||||
var LoadingOutlined = __webpack_require__(19267);
|
||||
// EXTERNAL MODULE: ./node_modules/classnames/index.js
|
||||
var classnames = __webpack_require__(94184);
|
||||
var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules
|
||||
var slicedToArray = __webpack_require__(97685);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js
|
||||
var objectWithoutProperties = __webpack_require__(45987);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
// EXTERNAL MODULE: ./node_modules/rc-util/es/hooks/useMergedState.js
|
||||
var useMergedState = __webpack_require__(21770);
|
||||
// EXTERNAL MODULE: ./node_modules/rc-util/es/KeyCode.js
|
||||
var KeyCode = __webpack_require__(15105);
|
||||
;// CONCATENATED MODULE: ./node_modules/rc-switch/es/index.js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var Switch = react.forwardRef(function (_ref, ref) {
|
||||
var _classNames;
|
||||
|
||||
var _ref$prefixCls = _ref.prefixCls,
|
||||
prefixCls = _ref$prefixCls === void 0 ? 'rc-switch' : _ref$prefixCls,
|
||||
className = _ref.className,
|
||||
checked = _ref.checked,
|
||||
defaultChecked = _ref.defaultChecked,
|
||||
disabled = _ref.disabled,
|
||||
loadingIcon = _ref.loadingIcon,
|
||||
checkedChildren = _ref.checkedChildren,
|
||||
unCheckedChildren = _ref.unCheckedChildren,
|
||||
onClick = _ref.onClick,
|
||||
onChange = _ref.onChange,
|
||||
onKeyDown = _ref.onKeyDown,
|
||||
restProps = (0,objectWithoutProperties/* default */.Z)(_ref, ["prefixCls", "className", "checked", "defaultChecked", "disabled", "loadingIcon", "checkedChildren", "unCheckedChildren", "onClick", "onChange", "onKeyDown"]);
|
||||
|
||||
var _useMergedState = (0,useMergedState/* default */.Z)(false, {
|
||||
value: checked,
|
||||
defaultValue: defaultChecked
|
||||
}),
|
||||
_useMergedState2 = (0,slicedToArray/* default */.Z)(_useMergedState, 2),
|
||||
innerChecked = _useMergedState2[0],
|
||||
setInnerChecked = _useMergedState2[1];
|
||||
|
||||
function triggerChange(newChecked, event) {
|
||||
var mergedChecked = innerChecked;
|
||||
|
||||
if (!disabled) {
|
||||
mergedChecked = newChecked;
|
||||
setInnerChecked(mergedChecked);
|
||||
onChange === null || onChange === void 0 ? void 0 : onChange(mergedChecked, event);
|
||||
}
|
||||
|
||||
return mergedChecked;
|
||||
}
|
||||
|
||||
function onInternalKeyDown(e) {
|
||||
if (e.which === KeyCode/* default.LEFT */.Z.LEFT) {
|
||||
triggerChange(false, e);
|
||||
} else if (e.which === KeyCode/* default.RIGHT */.Z.RIGHT) {
|
||||
triggerChange(true, e);
|
||||
}
|
||||
|
||||
onKeyDown === null || onKeyDown === void 0 ? void 0 : onKeyDown(e);
|
||||
}
|
||||
|
||||
function onInternalClick(e) {
|
||||
var ret = triggerChange(!innerChecked, e); // [Legacy] trigger onClick with value
|
||||
|
||||
onClick === null || onClick === void 0 ? void 0 : onClick(ret, e);
|
||||
}
|
||||
|
||||
var switchClassName = classnames_default()(prefixCls, className, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-checked"), innerChecked), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-disabled"), disabled), _classNames));
|
||||
return react.createElement("button", Object.assign({}, restProps, {
|
||||
type: "button",
|
||||
role: "switch",
|
||||
"aria-checked": innerChecked,
|
||||
disabled: disabled,
|
||||
className: switchClassName,
|
||||
ref: ref,
|
||||
onKeyDown: onInternalKeyDown,
|
||||
onClick: onInternalClick
|
||||
}), loadingIcon, react.createElement("span", {
|
||||
className: "".concat(prefixCls, "-inner")
|
||||
}, innerChecked ? checkedChildren : unCheckedChildren));
|
||||
});
|
||||
Switch.displayName = 'Switch';
|
||||
/* harmony default export */ var es = (Switch);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js
|
||||
var context = __webpack_require__(53124);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/DisabledContext.js
|
||||
var DisabledContext = __webpack_require__(98866);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/SizeContext.js
|
||||
var SizeContext = __webpack_require__(97647);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/_util/wave.js + 1 modules
|
||||
var wave = __webpack_require__(68349);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/switch/index.js
|
||||
|
||||
|
||||
var __rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var switch_Switch = /*#__PURE__*/react.forwardRef(function (_a, ref) {
|
||||
var _classNames;
|
||||
var customizePrefixCls = _a.prefixCls,
|
||||
customizeSize = _a.size,
|
||||
customDisabled = _a.disabled,
|
||||
loading = _a.loading,
|
||||
_a$className = _a.className,
|
||||
className = _a$className === void 0 ? '' : _a$className,
|
||||
props = __rest(_a, ["prefixCls", "size", "disabled", "loading", "className"]);
|
||||
false ? 0 : void 0;
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls,
|
||||
direction = _React$useContext.direction;
|
||||
var size = react.useContext(SizeContext/* default */.Z);
|
||||
// ===================== Disabled =====================
|
||||
var disabled = react.useContext(DisabledContext/* default */.Z);
|
||||
var mergedDisabled = (customDisabled !== null && customDisabled !== void 0 ? customDisabled : disabled) || loading;
|
||||
var prefixCls = getPrefixCls('switch', customizePrefixCls);
|
||||
var loadingIcon = /*#__PURE__*/react.createElement("div", {
|
||||
className: "".concat(prefixCls, "-handle")
|
||||
}, loading && /*#__PURE__*/react.createElement(LoadingOutlined/* default */.Z, {
|
||||
className: "".concat(prefixCls, "-loading-icon")
|
||||
}));
|
||||
var classes = classnames_default()((_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-small"), (customizeSize || size) === 'small'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-loading"), loading), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className);
|
||||
return /*#__PURE__*/react.createElement(wave/* default */.Z, {
|
||||
insertExtraNode: true
|
||||
}, /*#__PURE__*/react.createElement(es, (0,esm_extends/* default */.Z)({}, props, {
|
||||
prefixCls: prefixCls,
|
||||
className: classes,
|
||||
disabled: mergedDisabled,
|
||||
ref: ref,
|
||||
loadingIcon: loadingIcon
|
||||
})));
|
||||
});
|
||||
switch_Switch.__ANT_SWITCH = true;
|
||||
if (false) {}
|
||||
/* harmony default export */ var es_switch = (switch_Switch);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 5812:
|
||||
/*!****************************************************************!*\
|
||||
!*** ./node_modules/antd/es/switch/style/index.js + 1 modules ***!
|
||||
\****************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less
|
||||
var style_default = __webpack_require__(43146);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/switch/style/index.less
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/switch/style/index.js
|
||||
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 20550:
|
||||
/*!*******************************************************!*\
|
||||
!*** ./node_modules/antd/es/tag/index.js + 1 modules ***!
|
||||
\*******************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"Z": function() { return /* binding */ tag; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
||||
var defineProperty = __webpack_require__(4942);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js
|
||||
var esm_extends = __webpack_require__(87462);
|
||||
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules
|
||||
var slicedToArray = __webpack_require__(97685);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/CloseOutlined.js
|
||||
var CloseOutlined = __webpack_require__(62208);
|
||||
// EXTERNAL MODULE: ./node_modules/classnames/index.js
|
||||
var classnames = __webpack_require__(94184);
|
||||
var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
|
||||
// EXTERNAL MODULE: ./node_modules/rc-util/es/omit.js
|
||||
var omit = __webpack_require__(98423);
|
||||
// EXTERNAL MODULE: ./node_modules/react/index.js
|
||||
var react = __webpack_require__(67294);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js
|
||||
var context = __webpack_require__(53124);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/_util/colors.js
|
||||
var colors = __webpack_require__(98787);
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/_util/wave.js + 1 modules
|
||||
var wave = __webpack_require__(68349);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/tag/CheckableTag.js
|
||||
|
||||
|
||||
var __rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
var CheckableTag = function CheckableTag(_a) {
|
||||
var _classNames;
|
||||
var customizePrefixCls = _a.prefixCls,
|
||||
className = _a.className,
|
||||
checked = _a.checked,
|
||||
onChange = _a.onChange,
|
||||
onClick = _a.onClick,
|
||||
restProps = __rest(_a, ["prefixCls", "className", "checked", "onChange", "onClick"]);
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls;
|
||||
var handleClick = function handleClick(e) {
|
||||
onChange === null || onChange === void 0 ? void 0 : onChange(!checked);
|
||||
onClick === null || onClick === void 0 ? void 0 : onClick(e);
|
||||
};
|
||||
var prefixCls = getPrefixCls('tag', customizePrefixCls);
|
||||
var cls = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-checkable"), true), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-checkable-checked"), checked), _classNames), className);
|
||||
return /*#__PURE__*/react.createElement("span", (0,esm_extends/* default */.Z)({}, restProps, {
|
||||
className: cls,
|
||||
onClick: handleClick
|
||||
}));
|
||||
};
|
||||
/* harmony default export */ var tag_CheckableTag = (CheckableTag);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/tag/index.js
|
||||
|
||||
|
||||
|
||||
var tag_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var PresetColorRegex = new RegExp("^(".concat(colors/* PresetColorTypes.join */.Y.join('|'), ")(-inverse)?$"));
|
||||
var PresetStatusColorRegex = new RegExp("^(".concat(colors/* PresetStatusColorTypes.join */.E.join('|'), ")$"));
|
||||
var InternalTag = function InternalTag(_a, ref) {
|
||||
var _classNames;
|
||||
var customizePrefixCls = _a.prefixCls,
|
||||
className = _a.className,
|
||||
style = _a.style,
|
||||
children = _a.children,
|
||||
icon = _a.icon,
|
||||
color = _a.color,
|
||||
onClose = _a.onClose,
|
||||
closeIcon = _a.closeIcon,
|
||||
_a$closable = _a.closable,
|
||||
closable = _a$closable === void 0 ? false : _a$closable,
|
||||
props = tag_rest(_a, ["prefixCls", "className", "style", "children", "icon", "color", "onClose", "closeIcon", "closable"]);
|
||||
var _React$useContext = react.useContext(context/* ConfigContext */.E_),
|
||||
getPrefixCls = _React$useContext.getPrefixCls,
|
||||
direction = _React$useContext.direction;
|
||||
var _React$useState = react.useState(true),
|
||||
_React$useState2 = (0,slicedToArray/* default */.Z)(_React$useState, 2),
|
||||
visible = _React$useState2[0],
|
||||
setVisible = _React$useState2[1];
|
||||
// Warning for deprecated usage
|
||||
if (false) {}
|
||||
react.useEffect(function () {
|
||||
if ('visible' in props) {
|
||||
setVisible(props.visible);
|
||||
}
|
||||
}, [props.visible]);
|
||||
var isPresetColor = function isPresetColor() {
|
||||
if (!color) {
|
||||
return false;
|
||||
}
|
||||
return PresetColorRegex.test(color) || PresetStatusColorRegex.test(color);
|
||||
};
|
||||
var tagStyle = (0,esm_extends/* default */.Z)({
|
||||
backgroundColor: color && !isPresetColor() ? color : undefined
|
||||
}, style);
|
||||
var presetColor = isPresetColor();
|
||||
var prefixCls = getPrefixCls('tag', customizePrefixCls);
|
||||
var tagClassName = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-").concat(color), presetColor), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-has-color"), color && !presetColor), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-hidden"), !visible), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className);
|
||||
var handleCloseClick = function handleCloseClick(e) {
|
||||
e.stopPropagation();
|
||||
onClose === null || onClose === void 0 ? void 0 : onClose(e);
|
||||
if (e.defaultPrevented) {
|
||||
return;
|
||||
}
|
||||
if (!('visible' in props)) {
|
||||
setVisible(false);
|
||||
}
|
||||
};
|
||||
var renderCloseIcon = function renderCloseIcon() {
|
||||
if (closable) {
|
||||
return closeIcon ? /*#__PURE__*/react.createElement("span", {
|
||||
className: "".concat(prefixCls, "-close-icon"),
|
||||
onClick: handleCloseClick
|
||||
}, closeIcon) : /*#__PURE__*/react.createElement(CloseOutlined/* default */.Z, {
|
||||
className: "".concat(prefixCls, "-close-icon"),
|
||||
onClick: handleCloseClick
|
||||
});
|
||||
}
|
||||
return null;
|
||||
};
|
||||
var isNeedWave = 'onClick' in props || children && children.type === 'a';
|
||||
var tagProps = (0,omit/* default */.Z)(props, ['visible']);
|
||||
var iconNode = icon || null;
|
||||
var kids = iconNode ? /*#__PURE__*/react.createElement(react.Fragment, null, iconNode, /*#__PURE__*/react.createElement("span", null, children)) : children;
|
||||
var tagNode = /*#__PURE__*/react.createElement("span", (0,esm_extends/* default */.Z)({}, tagProps, {
|
||||
ref: ref,
|
||||
className: tagClassName,
|
||||
style: tagStyle
|
||||
}), kids, renderCloseIcon());
|
||||
return isNeedWave ? /*#__PURE__*/react.createElement(wave/* default */.Z, null, tagNode) : tagNode;
|
||||
};
|
||||
var Tag = /*#__PURE__*/react.forwardRef(InternalTag);
|
||||
if (false) {}
|
||||
Tag.CheckableTag = tag_CheckableTag;
|
||||
/* harmony default export */ var tag = (Tag);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 71114:
|
||||
/*!*************************************************************!*\
|
||||
!*** ./node_modules/antd/es/tag/style/index.js + 1 modules ***!
|
||||
\*************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less
|
||||
var style_default = __webpack_require__(43146);
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/tag/style/index.less
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
;// CONCATENATED MODULE: ./node_modules/antd/es/tag/style/index.js
|
||||
|
||||
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,958 +0,0 @@
|
||||
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/drawer/style/index.less ***!
|
||||
\**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
||||
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
.ant-drawer {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1000;
|
||||
pointer-events: none;
|
||||
}
|
||||
.ant-drawer-inline {
|
||||
position: absolute;
|
||||
}
|
||||
.ant-drawer-mask {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1000;
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
pointer-events: auto;
|
||||
}
|
||||
.ant-drawer-content-wrapper {
|
||||
position: absolute;
|
||||
z-index: 1000;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-drawer-content-wrapper-hidden {
|
||||
display: none;
|
||||
}
|
||||
.ant-drawer-left > .ant-drawer-content-wrapper {
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.ant-drawer-right > .ant-drawer-content-wrapper {
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.ant-drawer-top > .ant-drawer-content-wrapper {
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.ant-drawer-bottom > .ant-drawer-content-wrapper {
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.ant-drawer-content {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background: #fff;
|
||||
pointer-events: auto;
|
||||
}
|
||||
.ant-drawer-wrapper-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.ant-drawer-header {
|
||||
display: flex;
|
||||
flex: 0 1;
|
||||
align-items: center;
|
||||
padding: 11px 16px;
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.ant-drawer-header-title {
|
||||
display: flex;
|
||||
flex: 1 1;
|
||||
align-items: center;
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
}
|
||||
.ant-drawer-extra {
|
||||
flex: none;
|
||||
}
|
||||
.ant-drawer-close {
|
||||
display: inline-block;
|
||||
margin-right: 12px;
|
||||
color: rgba(0, 0, 0, 0.45);
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
text-transform: none;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
cursor: pointer;
|
||||
transition: color 0.3s;
|
||||
text-rendering: auto;
|
||||
}
|
||||
.ant-drawer-close:focus,
|
||||
.ant-drawer-close:hover {
|
||||
color: rgba(0, 0, 0, 0.75);
|
||||
text-decoration: none;
|
||||
}
|
||||
.ant-drawer-title {
|
||||
flex: 1 1;
|
||||
margin: 0;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.ant-drawer-body {
|
||||
flex: 1 1;
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
padding: 16px;
|
||||
overflow: auto;
|
||||
}
|
||||
.ant-drawer-footer {
|
||||
flex-shrink: 0;
|
||||
padding: 8px 8px;
|
||||
border-top: 1px solid #f0f0f0;
|
||||
}
|
||||
.panel-motion-enter-start,
|
||||
.panel-motion-appear-start,
|
||||
.panel-motion-leave-start {
|
||||
transition: none;
|
||||
}
|
||||
.panel-motion-enter-active,
|
||||
.panel-motion-appear-active,
|
||||
.panel-motion-leave-active {
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-drawer-mask-motion-enter-active,
|
||||
.ant-drawer-mask-motion-appear-active,
|
||||
.ant-drawer-mask-motion-leave-active {
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-drawer-mask-motion-enter,
|
||||
.ant-drawer-mask-motion-appear {
|
||||
opacity: 0;
|
||||
}
|
||||
.ant-drawer-mask-motion-enter-active,
|
||||
.ant-drawer-mask-motion-appear-active {
|
||||
opacity: 1;
|
||||
}
|
||||
.ant-drawer-mask-motion-leave {
|
||||
opacity: 1;
|
||||
}
|
||||
.ant-drawer-mask-motion-leave-active {
|
||||
opacity: 0;
|
||||
}
|
||||
.ant-drawer-panel-motion-left-enter-start,
|
||||
.ant-drawer-panel-motion-left-appear-start,
|
||||
.ant-drawer-panel-motion-left-leave-start {
|
||||
transition: none;
|
||||
}
|
||||
.ant-drawer-panel-motion-left-enter-active,
|
||||
.ant-drawer-panel-motion-left-appear-active,
|
||||
.ant-drawer-panel-motion-left-leave-active {
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-drawer-panel-motion-left-enter-start,
|
||||
.ant-drawer-panel-motion-left-appear-start {
|
||||
transform: translateX(-100%) !important;
|
||||
}
|
||||
.ant-drawer-panel-motion-left-enter-active,
|
||||
.ant-drawer-panel-motion-left-appear-active {
|
||||
transform: translateX(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-left-leave {
|
||||
transform: translateX(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-left-leave-active {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
.ant-drawer-panel-motion-right-enter-start,
|
||||
.ant-drawer-panel-motion-right-appear-start,
|
||||
.ant-drawer-panel-motion-right-leave-start {
|
||||
transition: none;
|
||||
}
|
||||
.ant-drawer-panel-motion-right-enter-active,
|
||||
.ant-drawer-panel-motion-right-appear-active,
|
||||
.ant-drawer-panel-motion-right-leave-active {
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-drawer-panel-motion-right-enter-start,
|
||||
.ant-drawer-panel-motion-right-appear-start {
|
||||
transform: translateX(100%) !important;
|
||||
}
|
||||
.ant-drawer-panel-motion-right-enter-active,
|
||||
.ant-drawer-panel-motion-right-appear-active {
|
||||
transform: translateX(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-right-leave {
|
||||
transform: translateX(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-right-leave-active {
|
||||
transform: translateX(100%);
|
||||
}
|
||||
.ant-drawer-panel-motion-top-enter-start,
|
||||
.ant-drawer-panel-motion-top-appear-start,
|
||||
.ant-drawer-panel-motion-top-leave-start {
|
||||
transition: none;
|
||||
}
|
||||
.ant-drawer-panel-motion-top-enter-active,
|
||||
.ant-drawer-panel-motion-top-appear-active,
|
||||
.ant-drawer-panel-motion-top-leave-active {
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-drawer-panel-motion-top-enter-start,
|
||||
.ant-drawer-panel-motion-top-appear-start {
|
||||
transform: translateY(-100%) !important;
|
||||
}
|
||||
.ant-drawer-panel-motion-top-enter-active,
|
||||
.ant-drawer-panel-motion-top-appear-active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-top-leave {
|
||||
transform: translateY(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-top-leave-active {
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
.ant-drawer-panel-motion-bottom-enter-start,
|
||||
.ant-drawer-panel-motion-bottom-appear-start,
|
||||
.ant-drawer-panel-motion-bottom-leave-start {
|
||||
transition: none;
|
||||
}
|
||||
.ant-drawer-panel-motion-bottom-enter-active,
|
||||
.ant-drawer-panel-motion-bottom-appear-active,
|
||||
.ant-drawer-panel-motion-bottom-leave-active {
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-drawer-panel-motion-bottom-enter-start,
|
||||
.ant-drawer-panel-motion-bottom-appear-start {
|
||||
transform: translateY(100%) !important;
|
||||
}
|
||||
.ant-drawer-panel-motion-bottom-enter-active,
|
||||
.ant-drawer-panel-motion-bottom-appear-active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-bottom-leave {
|
||||
transform: translateY(0);
|
||||
}
|
||||
.ant-drawer-panel-motion-bottom-leave-active {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
.ant-drawer-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.ant-drawer-rtl .ant-drawer-close {
|
||||
margin-right: 0;
|
||||
margin-left: 12px;
|
||||
}
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
|
||||
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/divider/style/index.less ***!
|
||||
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
||||
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
.ant-divider {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
font-size: 12px;
|
||||
font-variant: tabular-nums;
|
||||
line-height: 1.66667;
|
||||
list-style: none;
|
||||
font-feature-settings: tnum, "tnum";
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
.ant-divider-vertical {
|
||||
position: relative;
|
||||
top: -0.06em;
|
||||
display: inline-block;
|
||||
height: 0.9em;
|
||||
margin: 0 8px;
|
||||
vertical-align: middle;
|
||||
border-top: 0;
|
||||
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
.ant-divider-horizontal {
|
||||
display: flex;
|
||||
clear: both;
|
||||
width: 100%;
|
||||
min-width: 100%;
|
||||
margin: 24px 0;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 16px 0;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
border-top: 0;
|
||||
border-top-color: rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text::before,
|
||||
.ant-divider-horizontal.ant-divider-with-text::after {
|
||||
position: relative;
|
||||
width: 50%;
|
||||
border-top: 1px solid transparent;
|
||||
border-top-color: inherit;
|
||||
border-bottom: 0;
|
||||
transform: translateY(50%);
|
||||
content: '';
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-left::before {
|
||||
width: 5%;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-left::after {
|
||||
width: 95%;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-right::before {
|
||||
width: 95%;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-right::after {
|
||||
width: 5%;
|
||||
}
|
||||
.ant-divider-inner-text {
|
||||
display: inline-block;
|
||||
padding: 0 1em;
|
||||
}
|
||||
.ant-divider-dashed {
|
||||
background: none;
|
||||
border-color: rgba(0, 0, 0, 0.06);
|
||||
border-style: dashed;
|
||||
border-width: 1px 0 0;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before,
|
||||
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {
|
||||
border-style: dashed none none;
|
||||
}
|
||||
.ant-divider-vertical.ant-divider-dashed {
|
||||
border-width: 0 0 0 1px;
|
||||
}
|
||||
.ant-divider-plain.ant-divider-with-text {
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before {
|
||||
width: 0;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after {
|
||||
width: 100%;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text {
|
||||
padding-left: 0;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before {
|
||||
width: 100%;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after {
|
||||
width: 0;
|
||||
}
|
||||
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text {
|
||||
padding-right: 0;
|
||||
}
|
||||
.ant-divider-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before {
|
||||
width: 95%;
|
||||
}
|
||||
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after {
|
||||
width: 5%;
|
||||
}
|
||||
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before {
|
||||
width: 5%;
|
||||
}
|
||||
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after {
|
||||
width: 95%;
|
||||
}
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
|
||||
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/tag/style/index.less ***!
|
||||
\*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
||||
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
.ant-tag {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
font-variant: tabular-nums;
|
||||
line-height: 1.66667;
|
||||
list-style: none;
|
||||
font-feature-settings: tnum, "tnum";
|
||||
display: inline-block;
|
||||
height: auto;
|
||||
margin-right: 8px;
|
||||
padding: 0 7px;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
white-space: nowrap;
|
||||
background: #fafafa;
|
||||
border: 1px solid #d9d9d9;
|
||||
border-radius: 2px;
|
||||
opacity: 1;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-tag,
|
||||
.ant-tag a,
|
||||
.ant-tag a:hover {
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
}
|
||||
.ant-tag > a:first-child:last-child {
|
||||
display: inline-block;
|
||||
margin: 0 -8px;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.ant-tag-close-icon {
|
||||
margin-left: 3px;
|
||||
color: rgba(0, 0, 0, 0.45);
|
||||
font-size: 10px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.ant-tag-close-icon:hover {
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
}
|
||||
.ant-tag-has-color {
|
||||
border-color: transparent;
|
||||
}
|
||||
.ant-tag-has-color,
|
||||
.ant-tag-has-color a,
|
||||
.ant-tag-has-color a:hover,
|
||||
.ant-tag-has-color .anticon-close,
|
||||
.ant-tag-has-color .anticon-close:hover {
|
||||
color: #fff;
|
||||
}
|
||||
.ant-tag-checkable {
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
|
||||
color: #1890ff;
|
||||
}
|
||||
.ant-tag-checkable:active,
|
||||
.ant-tag-checkable-checked {
|
||||
color: #fff;
|
||||
}
|
||||
.ant-tag-checkable-checked {
|
||||
background-color: #1890ff;
|
||||
}
|
||||
.ant-tag-checkable:active {
|
||||
background-color: #096dd9;
|
||||
}
|
||||
.ant-tag-hidden {
|
||||
display: none;
|
||||
}
|
||||
.ant-tag-pink {
|
||||
color: #c41d7f;
|
||||
background: #fff0f6;
|
||||
border-color: #ffadd2;
|
||||
}
|
||||
.ant-tag-pink-inverse {
|
||||
color: #fff;
|
||||
background: #eb2f96;
|
||||
border-color: #eb2f96;
|
||||
}
|
||||
.ant-tag-magenta {
|
||||
color: #c41d7f;
|
||||
background: #fff0f6;
|
||||
border-color: #ffadd2;
|
||||
}
|
||||
.ant-tag-magenta-inverse {
|
||||
color: #fff;
|
||||
background: #eb2f96;
|
||||
border-color: #eb2f96;
|
||||
}
|
||||
.ant-tag-red {
|
||||
color: #cf1322;
|
||||
background: #fff1f0;
|
||||
border-color: #ffa39e;
|
||||
}
|
||||
.ant-tag-red-inverse {
|
||||
color: #fff;
|
||||
background: #f5222d;
|
||||
border-color: #f5222d;
|
||||
}
|
||||
.ant-tag-volcano {
|
||||
color: #d4380d;
|
||||
background: #fff2e8;
|
||||
border-color: #ffbb96;
|
||||
}
|
||||
.ant-tag-volcano-inverse {
|
||||
color: #fff;
|
||||
background: #fa541c;
|
||||
border-color: #fa541c;
|
||||
}
|
||||
.ant-tag-orange {
|
||||
color: #d46b08;
|
||||
background: #fff7e6;
|
||||
border-color: #ffd591;
|
||||
}
|
||||
.ant-tag-orange-inverse {
|
||||
color: #fff;
|
||||
background: #fa8c16;
|
||||
border-color: #fa8c16;
|
||||
}
|
||||
.ant-tag-yellow {
|
||||
color: #d4b106;
|
||||
background: #feffe6;
|
||||
border-color: #fffb8f;
|
||||
}
|
||||
.ant-tag-yellow-inverse {
|
||||
color: #fff;
|
||||
background: #fadb14;
|
||||
border-color: #fadb14;
|
||||
}
|
||||
.ant-tag-gold {
|
||||
color: #d48806;
|
||||
background: #fffbe6;
|
||||
border-color: #ffe58f;
|
||||
}
|
||||
.ant-tag-gold-inverse {
|
||||
color: #fff;
|
||||
background: #faad14;
|
||||
border-color: #faad14;
|
||||
}
|
||||
.ant-tag-cyan {
|
||||
color: #08979c;
|
||||
background: #e6fffb;
|
||||
border-color: #87e8de;
|
||||
}
|
||||
.ant-tag-cyan-inverse {
|
||||
color: #fff;
|
||||
background: #13c2c2;
|
||||
border-color: #13c2c2;
|
||||
}
|
||||
.ant-tag-lime {
|
||||
color: #7cb305;
|
||||
background: #fcffe6;
|
||||
border-color: #eaff8f;
|
||||
}
|
||||
.ant-tag-lime-inverse {
|
||||
color: #fff;
|
||||
background: #a0d911;
|
||||
border-color: #a0d911;
|
||||
}
|
||||
.ant-tag-green {
|
||||
color: #389e0d;
|
||||
background: #f6ffed;
|
||||
border-color: #b7eb8f;
|
||||
}
|
||||
.ant-tag-green-inverse {
|
||||
color: #fff;
|
||||
background: #52c41a;
|
||||
border-color: #52c41a;
|
||||
}
|
||||
.ant-tag-blue {
|
||||
color: #096dd9;
|
||||
background: #e6f7ff;
|
||||
border-color: #91d5ff;
|
||||
}
|
||||
.ant-tag-blue-inverse {
|
||||
color: #fff;
|
||||
background: #1890ff;
|
||||
border-color: #1890ff;
|
||||
}
|
||||
.ant-tag-geekblue {
|
||||
color: #1d39c4;
|
||||
background: #f0f5ff;
|
||||
border-color: #adc6ff;
|
||||
}
|
||||
.ant-tag-geekblue-inverse {
|
||||
color: #fff;
|
||||
background: #2f54eb;
|
||||
border-color: #2f54eb;
|
||||
}
|
||||
.ant-tag-purple {
|
||||
color: #531dab;
|
||||
background: #f9f0ff;
|
||||
border-color: #d3adf7;
|
||||
}
|
||||
.ant-tag-purple-inverse {
|
||||
color: #fff;
|
||||
background: #722ed1;
|
||||
border-color: #722ed1;
|
||||
}
|
||||
.ant-tag-success {
|
||||
color: #52c41a;
|
||||
background: #f6ffed;
|
||||
border-color: #b7eb8f;
|
||||
}
|
||||
.ant-tag-processing {
|
||||
color: #1890ff;
|
||||
background: #e6f7ff;
|
||||
border-color: #91d5ff;
|
||||
}
|
||||
.ant-tag-error {
|
||||
color: #ff4d4f;
|
||||
background: #fff2f0;
|
||||
border-color: #ffccc7;
|
||||
}
|
||||
.ant-tag-warning {
|
||||
color: #faad14;
|
||||
background: #fffbe6;
|
||||
border-color: #ffe58f;
|
||||
}
|
||||
.ant-tag > .anticon + span,
|
||||
.ant-tag > span + .anticon {
|
||||
margin-left: 7px;
|
||||
}
|
||||
.ant-tag.ant-tag-rtl {
|
||||
margin-right: 0;
|
||||
margin-left: 8px;
|
||||
direction: rtl;
|
||||
text-align: right;
|
||||
}
|
||||
.ant-tag-rtl .ant-tag-close-icon {
|
||||
margin-right: 3px;
|
||||
margin-left: 0;
|
||||
}
|
||||
.ant-tag-rtl.ant-tag > .anticon + span,
|
||||
.ant-tag-rtl.ant-tag > span + .anticon {
|
||||
margin-right: 7px;
|
||||
margin-left: 0;
|
||||
}
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
|
||||
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/affix/style/index.less ***!
|
||||
\*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
||||
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
.ant-affix {
|
||||
position: fixed;
|
||||
z-index: 10;
|
||||
}
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
|
||||
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/skeleton/style/index.less ***!
|
||||
\************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
||||
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
.ant-skeleton {
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
.ant-skeleton-header {
|
||||
display: table-cell;
|
||||
padding-right: 8px;
|
||||
vertical-align: top;
|
||||
}
|
||||
.ant-skeleton-header .ant-skeleton-avatar {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
background: rgba(190, 190, 190, 0.2);
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
}
|
||||
.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-header .ant-skeleton-avatar-lg {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-header .ant-skeleton-avatar-sm {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-content {
|
||||
display: table-cell;
|
||||
width: 100%;
|
||||
vertical-align: top;
|
||||
}
|
||||
.ant-skeleton-content .ant-skeleton-title {
|
||||
width: 100%;
|
||||
height: 14px;
|
||||
background: rgba(190, 190, 190, 0.2);
|
||||
border-radius: 2px;
|
||||
}
|
||||
.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.ant-skeleton-content .ant-skeleton-paragraph {
|
||||
padding: 0;
|
||||
}
|
||||
.ant-skeleton-content .ant-skeleton-paragraph > li {
|
||||
width: 100%;
|
||||
height: 14px;
|
||||
list-style: none;
|
||||
background: rgba(190, 190, 190, 0.2);
|
||||
border-radius: 2px;
|
||||
}
|
||||
.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {
|
||||
width: 61%;
|
||||
}
|
||||
.ant-skeleton-content .ant-skeleton-paragraph > li + li {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title {
|
||||
margin-top: 8px;
|
||||
}
|
||||
.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.ant-skeleton-round .ant-skeleton-content .ant-skeleton-title,
|
||||
.ant-skeleton-round .ant-skeleton-content .ant-skeleton-paragraph > li {
|
||||
border-radius: 100px;
|
||||
}
|
||||
.ant-skeleton-active .ant-skeleton-title,
|
||||
.ant-skeleton-active .ant-skeleton-paragraph > li,
|
||||
.ant-skeleton-active .ant-skeleton-avatar,
|
||||
.ant-skeleton-active .ant-skeleton-button,
|
||||
.ant-skeleton-active .ant-skeleton-input,
|
||||
.ant-skeleton-active .ant-skeleton-image {
|
||||
position: relative;
|
||||
/* stylelint-disable-next-line property-no-vendor-prefix,value-no-vendor-prefix */
|
||||
z-index: 0;
|
||||
overflow: hidden;
|
||||
background: transparent;
|
||||
}
|
||||
.ant-skeleton-active .ant-skeleton-title::after,
|
||||
.ant-skeleton-active .ant-skeleton-paragraph > li::after,
|
||||
.ant-skeleton-active .ant-skeleton-avatar::after,
|
||||
.ant-skeleton-active .ant-skeleton-button::after,
|
||||
.ant-skeleton-active .ant-skeleton-input::after,
|
||||
.ant-skeleton-active .ant-skeleton-image::after {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: -150%;
|
||||
bottom: 0;
|
||||
left: -150%;
|
||||
background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%);
|
||||
animation: ant-skeleton-loading 1.4s ease infinite;
|
||||
content: '';
|
||||
}
|
||||
.ant-skeleton.ant-skeleton-block {
|
||||
width: 100%;
|
||||
}
|
||||
.ant-skeleton.ant-skeleton-block .ant-skeleton-button {
|
||||
width: 100%;
|
||||
}
|
||||
.ant-skeleton.ant-skeleton-block .ant-skeleton-input {
|
||||
width: 100%;
|
||||
}
|
||||
.ant-skeleton-element {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
background: rgba(190, 190, 190, 0.2);
|
||||
border-radius: 2px;
|
||||
width: 56px;
|
||||
min-width: 56px;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-square {
|
||||
width: 28px;
|
||||
min-width: 28px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {
|
||||
width: 28px;
|
||||
min-width: 28px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round {
|
||||
border-radius: 28px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-lg {
|
||||
width: 64px;
|
||||
min-width: 64px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-square {
|
||||
width: 32px;
|
||||
min-width: 32px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle {
|
||||
width: 32px;
|
||||
min-width: 32px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round {
|
||||
border-radius: 32px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-sm {
|
||||
width: 44px;
|
||||
min-width: 44px;
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-square {
|
||||
width: 22px;
|
||||
min-width: 22px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle {
|
||||
width: 22px;
|
||||
min-width: 22px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round {
|
||||
border-radius: 22px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-avatar {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
background: rgba(190, 190, 190, 0.2);
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-avatar.ant-skeleton-avatar-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-avatar-lg {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-avatar-sm {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-input {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
background: rgba(190, 190, 190, 0.2);
|
||||
width: 140px;
|
||||
min-width: 140px;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-input-lg {
|
||||
width: 160px;
|
||||
min-width: 160px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-input-sm {
|
||||
width: 110px;
|
||||
min-width: 110px;
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-image {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
vertical-align: top;
|
||||
background: rgba(190, 190, 190, 0.2);
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
line-height: 96px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-image.ant-skeleton-image-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-image-path {
|
||||
fill: #bfbfbf;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-image-svg {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
line-height: 48px;
|
||||
max-width: 192px;
|
||||
max-height: 192px;
|
||||
}
|
||||
.ant-skeleton-element .ant-skeleton-image-svg.ant-skeleton-image-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
@keyframes ant-skeleton-loading {
|
||||
0% {
|
||||
transform: translateX(-37.5%);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(37.5%);
|
||||
}
|
||||
}
|
||||
.ant-skeleton-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.ant-skeleton-rtl .ant-skeleton-header {
|
||||
padding-right: 0;
|
||||
padding-left: 16px;
|
||||
}
|
||||
.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,
|
||||
.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li {
|
||||
animation-name: ant-skeleton-loading-rtl;
|
||||
}
|
||||
.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar {
|
||||
animation-name: ant-skeleton-loading-rtl;
|
||||
}
|
||||
@keyframes ant-skeleton-loading-rtl {
|
||||
0% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
100% {
|
||||
background-position: 100% 50%;
|
||||
}
|
||||
}
|
||||
/* stylelint-disable no-duplicate-selectors */
|
||||
/* stylelint-disable */
|
||||
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue