You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1072 lines
37 KiB
1072 lines
37 KiB
"use strict";
|
|
(self["webpackChunk"] = self["webpackChunk"] || []).push([[64932],{
|
|
|
|
/***/ 37906:
|
|
/*!****************************************************************************!*\
|
|
!*** ./node_modules/_antd@5.9.0@antd/es/descriptions/index.js + 8 modules ***!
|
|
\****************************************************************************/
|
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
|
|
|
|
// EXPORTS
|
|
__webpack_require__.d(__webpack_exports__, {
|
|
Z: function() { return /* binding */ descriptions; }
|
|
});
|
|
|
|
// UNUSED EXPORTS: DescriptionsContext
|
|
|
|
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
|
var _react_17_0_2_react = __webpack_require__(59301);
|
|
// EXTERNAL MODULE: ./node_modules/_classnames@2.5.1@classnames/index.js
|
|
var _classnames_2_5_1_classnames = __webpack_require__(92310);
|
|
var _classnames_2_5_1_classnames_default = /*#__PURE__*/__webpack_require__.n(_classnames_2_5_1_classnames);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/_util/responsiveObserver.js
|
|
var responsiveObserver = __webpack_require__(69507);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/config-provider/context.js
|
|
var context = __webpack_require__(36355);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/config-provider/hooks/useSize.js
|
|
var useSize = __webpack_require__(19716);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/grid/hooks/useBreakpoint.js
|
|
var useBreakpoint = __webpack_require__(8628);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/constant.js
|
|
const DEFAULT_COLUMN_MAP = {
|
|
xxl: 3,
|
|
xl: 3,
|
|
lg: 3,
|
|
md: 3,
|
|
sm: 2,
|
|
xs: 1
|
|
};
|
|
/* harmony default export */ var constant = (DEFAULT_COLUMN_MAP);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/DescriptionsContext.js
|
|
|
|
const DescriptionsContext = /*#__PURE__*/_react_17_0_2_react.createContext({});
|
|
/* harmony default export */ var descriptions_DescriptionsContext = (DescriptionsContext);
|
|
// EXTERNAL MODULE: ./node_modules/_rc-util@5.43.0@rc-util/es/Children/toArray.js
|
|
var toArray = __webpack_require__(75440);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/hooks/useItems.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;
|
|
};
|
|
|
|
|
|
|
|
// Convert children into items
|
|
const transChildren2Items = childNodes => (0,toArray/* default */.Z)(childNodes).map(node => Object.assign({}, node === null || node === void 0 ? void 0 : node.props));
|
|
function useItems(screens, items, children) {
|
|
const mergedItems = _react_17_0_2_react.useMemo(() =>
|
|
// Take `items` first or convert `children` into items
|
|
items || transChildren2Items(children), [items, children]);
|
|
const responsiveItems = _react_17_0_2_react.useMemo(() => mergedItems.map(_a => {
|
|
var {
|
|
span
|
|
} = _a,
|
|
restItem = __rest(_a, ["span"]);
|
|
return Object.assign(Object.assign({}, restItem), {
|
|
span: typeof span === 'number' ? span : (0,responsiveObserver/* matchScreen */.m9)(screens, span)
|
|
});
|
|
}), [mergedItems, screens]);
|
|
return responsiveItems;
|
|
}
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/hooks/useRow.js
|
|
|
|
|
|
function getFilledItem(rowItem, rowRestCol, span) {
|
|
let clone = rowItem;
|
|
if (span === undefined || span > rowRestCol) {
|
|
clone = Object.assign(Object.assign({}, rowItem), {
|
|
span: rowRestCol
|
|
});
|
|
false ? 0 : void 0;
|
|
}
|
|
return clone;
|
|
}
|
|
// Calculate the sum of span in a row
|
|
function getCalcRows(rowItems, mergedColumn) {
|
|
const rows = [];
|
|
let tmpRow = [];
|
|
let rowRestCol = mergedColumn;
|
|
rowItems.filter(n => n).forEach((rowItem, index) => {
|
|
const span = rowItem === null || rowItem === void 0 ? void 0 : rowItem.span;
|
|
const mergedSpan = span || 1;
|
|
// Additional handle last one
|
|
if (index === rowItems.length - 1) {
|
|
tmpRow.push(getFilledItem(rowItem, rowRestCol, span));
|
|
rows.push(tmpRow);
|
|
return;
|
|
}
|
|
if (mergedSpan < rowRestCol) {
|
|
rowRestCol -= mergedSpan;
|
|
tmpRow.push(rowItem);
|
|
} else {
|
|
tmpRow.push(getFilledItem(rowItem, rowRestCol, mergedSpan));
|
|
rows.push(tmpRow);
|
|
rowRestCol = mergedColumn;
|
|
tmpRow = [];
|
|
}
|
|
});
|
|
return rows;
|
|
}
|
|
const useRow = (mergedColumn, items) => {
|
|
const rows = (0,_react_17_0_2_react.useMemo)(() => getCalcRows(items, mergedColumn), [items, mergedColumn]);
|
|
return rows;
|
|
};
|
|
/* harmony default export */ var hooks_useRow = (useRow);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/Item.js
|
|
const DescriptionsItem = _ref => {
|
|
let {
|
|
children
|
|
} = _ref;
|
|
return children;
|
|
};
|
|
/* harmony default export */ var Item = (DescriptionsItem);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/Cell.js
|
|
"use client";
|
|
|
|
|
|
|
|
function notEmpty(val) {
|
|
return val !== undefined && val !== null;
|
|
}
|
|
const Cell = props => {
|
|
const {
|
|
itemPrefixCls,
|
|
component,
|
|
span,
|
|
className,
|
|
style,
|
|
labelStyle,
|
|
contentStyle,
|
|
bordered,
|
|
label,
|
|
content,
|
|
colon
|
|
} = props;
|
|
const Component = component;
|
|
if (bordered) {
|
|
return /*#__PURE__*/_react_17_0_2_react.createElement(Component, {
|
|
className: _classnames_2_5_1_classnames_default()({
|
|
[`${itemPrefixCls}-item-label`]: notEmpty(label),
|
|
[`${itemPrefixCls}-item-content`]: notEmpty(content)
|
|
}, className),
|
|
style: style,
|
|
colSpan: span
|
|
}, notEmpty(label) && /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
|
style: labelStyle
|
|
}, label), notEmpty(content) && /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
|
style: contentStyle
|
|
}, content));
|
|
}
|
|
return /*#__PURE__*/_react_17_0_2_react.createElement(Component, {
|
|
className: _classnames_2_5_1_classnames_default()(`${itemPrefixCls}-item`, className),
|
|
style: style,
|
|
colSpan: span
|
|
}, /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
|
className: `${itemPrefixCls}-item-container`
|
|
}, (label || label === 0) && /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
|
className: _classnames_2_5_1_classnames_default()(`${itemPrefixCls}-item-label`, {
|
|
[`${itemPrefixCls}-item-no-colon`]: !colon
|
|
}),
|
|
style: labelStyle
|
|
}, label), (content || content === 0) && /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
|
className: _classnames_2_5_1_classnames_default()(`${itemPrefixCls}-item-content`),
|
|
style: contentStyle
|
|
}, content)));
|
|
};
|
|
/* harmony default export */ var descriptions_Cell = (Cell);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/Row.js
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
function renderCells(items, _ref, _ref2) {
|
|
let {
|
|
colon,
|
|
prefixCls,
|
|
bordered
|
|
} = _ref;
|
|
let {
|
|
component,
|
|
type,
|
|
showLabel,
|
|
showContent,
|
|
labelStyle: rootLabelStyle,
|
|
contentStyle: rootContentStyle
|
|
} = _ref2;
|
|
return items.map((_ref3, index) => {
|
|
let {
|
|
label,
|
|
children,
|
|
prefixCls: itemPrefixCls = prefixCls,
|
|
className,
|
|
style,
|
|
labelStyle,
|
|
contentStyle,
|
|
span = 1,
|
|
key
|
|
} = _ref3;
|
|
if (typeof component === 'string') {
|
|
return /*#__PURE__*/_react_17_0_2_react.createElement(descriptions_Cell, {
|
|
key: `${type}-${key || index}`,
|
|
className: className,
|
|
style: style,
|
|
labelStyle: Object.assign(Object.assign({}, rootLabelStyle), labelStyle),
|
|
contentStyle: Object.assign(Object.assign({}, rootContentStyle), contentStyle),
|
|
span: span,
|
|
colon: colon,
|
|
component: component,
|
|
itemPrefixCls: itemPrefixCls,
|
|
bordered: bordered,
|
|
label: showLabel ? label : null,
|
|
content: showContent ? children : null
|
|
});
|
|
}
|
|
return [/*#__PURE__*/_react_17_0_2_react.createElement(descriptions_Cell, {
|
|
key: `label-${key || index}`,
|
|
className: className,
|
|
style: Object.assign(Object.assign(Object.assign({}, rootLabelStyle), style), labelStyle),
|
|
span: 1,
|
|
colon: colon,
|
|
component: component[0],
|
|
itemPrefixCls: itemPrefixCls,
|
|
bordered: bordered,
|
|
label: label
|
|
}), /*#__PURE__*/_react_17_0_2_react.createElement(descriptions_Cell, {
|
|
key: `content-${key || index}`,
|
|
className: className,
|
|
style: Object.assign(Object.assign(Object.assign({}, rootContentStyle), style), contentStyle),
|
|
span: span * 2 - 1,
|
|
component: component[1],
|
|
itemPrefixCls: itemPrefixCls,
|
|
bordered: bordered,
|
|
content: children
|
|
})];
|
|
});
|
|
}
|
|
const Row = props => {
|
|
const descContext = _react_17_0_2_react.useContext(descriptions_DescriptionsContext);
|
|
const {
|
|
prefixCls,
|
|
vertical,
|
|
row,
|
|
index,
|
|
bordered
|
|
} = props;
|
|
if (vertical) {
|
|
return /*#__PURE__*/_react_17_0_2_react.createElement(_react_17_0_2_react.Fragment, null, /*#__PURE__*/_react_17_0_2_react.createElement("tr", {
|
|
key: `label-${index}`,
|
|
className: `${prefixCls}-row`
|
|
}, renderCells(row, props, Object.assign({
|
|
component: 'th',
|
|
type: 'label',
|
|
showLabel: true
|
|
}, descContext))), /*#__PURE__*/_react_17_0_2_react.createElement("tr", {
|
|
key: `content-${index}`,
|
|
className: `${prefixCls}-row`
|
|
}, renderCells(row, props, Object.assign({
|
|
component: 'td',
|
|
type: 'content',
|
|
showContent: true
|
|
}, descContext))));
|
|
}
|
|
return /*#__PURE__*/_react_17_0_2_react.createElement("tr", {
|
|
key: index,
|
|
className: `${prefixCls}-row`
|
|
}, renderCells(row, props, Object.assign({
|
|
component: bordered ? ['th', 'td'] : 'td',
|
|
type: 'item',
|
|
showLabel: true,
|
|
showContent: true
|
|
}, descContext)));
|
|
};
|
|
/* harmony default export */ var descriptions_Row = (Row);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/style/index.js
|
|
var style = __webpack_require__(17313);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/genComponentStyleHook.js
|
|
var genComponentStyleHook = __webpack_require__(83116);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/statistic.js
|
|
var statistic = __webpack_require__(37613);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/style/index.js
|
|
|
|
|
|
const genBorderedStyle = token => {
|
|
const {
|
|
componentCls,
|
|
labelBg
|
|
} = token;
|
|
return {
|
|
[`&${componentCls}-bordered`]: {
|
|
[`> ${componentCls}-view`]: {
|
|
border: `${token.lineWidth}px ${token.lineType} ${token.colorSplit}`,
|
|
'> table': {
|
|
tableLayout: 'auto',
|
|
borderCollapse: 'collapse'
|
|
},
|
|
[`${componentCls}-row`]: {
|
|
borderBottom: `${token.lineWidth}px ${token.lineType} ${token.colorSplit}`,
|
|
'&:last-child': {
|
|
borderBottom: 'none'
|
|
},
|
|
[`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {
|
|
padding: `${token.padding}px ${token.paddingLG}px`,
|
|
borderInlineEnd: `${token.lineWidth}px ${token.lineType} ${token.colorSplit}`,
|
|
'&:last-child': {
|
|
borderInlineEnd: 'none'
|
|
}
|
|
},
|
|
[`> ${componentCls}-item-label`]: {
|
|
color: token.colorTextSecondary,
|
|
backgroundColor: labelBg,
|
|
'&::after': {
|
|
display: 'none'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
[`&${componentCls}-middle`]: {
|
|
[`${componentCls}-row`]: {
|
|
[`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {
|
|
padding: `${token.paddingSM}px ${token.paddingLG}px`
|
|
}
|
|
}
|
|
},
|
|
[`&${componentCls}-small`]: {
|
|
[`${componentCls}-row`]: {
|
|
[`> ${componentCls}-item-label, > ${componentCls}-item-content`]: {
|
|
padding: `${token.paddingXS}px ${token.padding}px`
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|
|
const genDescriptionStyles = token => {
|
|
const {
|
|
componentCls,
|
|
extraColor,
|
|
itemPaddingBottom,
|
|
colonMarginRight,
|
|
colonMarginLeft,
|
|
titleMarginBottom
|
|
} = token;
|
|
return {
|
|
[componentCls]: Object.assign(Object.assign(Object.assign({}, (0,style/* resetComponent */.Wf)(token)), genBorderedStyle(token)), {
|
|
[`&-rtl`]: {
|
|
direction: 'rtl'
|
|
},
|
|
[`${componentCls}-header`]: {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
marginBottom: titleMarginBottom
|
|
},
|
|
[`${componentCls}-title`]: Object.assign(Object.assign({}, style/* textEllipsis */.vS), {
|
|
flex: 'auto',
|
|
color: token.colorText,
|
|
fontWeight: token.fontWeightStrong,
|
|
fontSize: token.fontSizeLG,
|
|
lineHeight: token.lineHeightLG
|
|
}),
|
|
[`${componentCls}-extra`]: {
|
|
marginInlineStart: 'auto',
|
|
color: extraColor,
|
|
fontSize: token.fontSize
|
|
},
|
|
[`${componentCls}-view`]: {
|
|
width: '100%',
|
|
borderRadius: token.borderRadiusLG,
|
|
table: {
|
|
width: '100%',
|
|
tableLayout: 'fixed'
|
|
}
|
|
},
|
|
[`${componentCls}-row`]: {
|
|
'> th, > td': {
|
|
paddingBottom: itemPaddingBottom
|
|
},
|
|
'&:last-child': {
|
|
borderBottom: 'none'
|
|
}
|
|
},
|
|
[`${componentCls}-item-label`]: {
|
|
color: token.colorTextTertiary,
|
|
fontWeight: 'normal',
|
|
fontSize: token.fontSize,
|
|
lineHeight: token.lineHeight,
|
|
textAlign: `start`,
|
|
'&::after': {
|
|
content: '":"',
|
|
position: 'relative',
|
|
top: -0.5,
|
|
marginInline: `${colonMarginLeft}px ${colonMarginRight}px`
|
|
},
|
|
[`&${componentCls}-item-no-colon::after`]: {
|
|
content: '""'
|
|
}
|
|
},
|
|
[`${componentCls}-item-no-label`]: {
|
|
'&::after': {
|
|
margin: 0,
|
|
content: '""'
|
|
}
|
|
},
|
|
[`${componentCls}-item-content`]: {
|
|
display: 'table-cell',
|
|
flex: 1,
|
|
color: token.colorText,
|
|
fontSize: token.fontSize,
|
|
lineHeight: token.lineHeight,
|
|
wordBreak: 'break-word',
|
|
overflowWrap: 'break-word'
|
|
},
|
|
[`${componentCls}-item`]: {
|
|
paddingBottom: 0,
|
|
verticalAlign: 'top',
|
|
'&-container': {
|
|
display: 'flex',
|
|
[`${componentCls}-item-label`]: {
|
|
display: 'inline-flex',
|
|
alignItems: 'baseline'
|
|
},
|
|
[`${componentCls}-item-content`]: {
|
|
display: 'inline-flex',
|
|
alignItems: 'baseline'
|
|
}
|
|
}
|
|
},
|
|
'&-middle': {
|
|
[`${componentCls}-row`]: {
|
|
'> th, > td': {
|
|
paddingBottom: token.paddingSM
|
|
}
|
|
}
|
|
},
|
|
'&-small': {
|
|
[`${componentCls}-row`]: {
|
|
'> th, > td': {
|
|
paddingBottom: token.paddingXS
|
|
}
|
|
}
|
|
}
|
|
})
|
|
};
|
|
};
|
|
// ============================== Export ==============================
|
|
/* harmony default export */ var descriptions_style = ((0,genComponentStyleHook/* default */.Z)('Descriptions', token => {
|
|
const descriptionToken = (0,statistic/* merge */.TS)(token, {});
|
|
return [genDescriptionStyles(descriptionToken)];
|
|
}, token => ({
|
|
labelBg: token.colorFillAlter,
|
|
titleMarginBottom: token.fontSizeSM * token.lineHeightSM,
|
|
itemPaddingBottom: token.padding,
|
|
colonMarginRight: token.marginXS,
|
|
colonMarginLeft: token.marginXXS / 2,
|
|
extraColor: token.colorText
|
|
})));
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/descriptions/index.js
|
|
"use client";
|
|
|
|
var descriptions_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;
|
|
};
|
|
/* eslint-disable react/no-array-index-key */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const Descriptions = props => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
title,
|
|
extra,
|
|
column,
|
|
colon = true,
|
|
bordered,
|
|
layout,
|
|
children,
|
|
className,
|
|
rootClassName,
|
|
style,
|
|
size: customizeSize,
|
|
labelStyle,
|
|
contentStyle,
|
|
items
|
|
} = props,
|
|
restProps = descriptions_rest(props, ["prefixCls", "title", "extra", "column", "colon", "bordered", "layout", "children", "className", "rootClassName", "style", "size", "labelStyle", "contentStyle", "items"]);
|
|
const {
|
|
getPrefixCls,
|
|
direction,
|
|
descriptions
|
|
} = _react_17_0_2_react.useContext(context/* ConfigContext */.E_);
|
|
const prefixCls = getPrefixCls('descriptions', customizePrefixCls);
|
|
const screens = (0,useBreakpoint/* default */.Z)();
|
|
// Column count
|
|
const mergedColumn = _react_17_0_2_react.useMemo(() => {
|
|
var _a;
|
|
if (typeof column === 'number') {
|
|
return column;
|
|
}
|
|
return (_a = (0,responsiveObserver/* matchScreen */.m9)(screens, Object.assign(Object.assign({}, constant), column))) !== null && _a !== void 0 ? _a : 3;
|
|
}, [screens, column]);
|
|
// Items with responsive
|
|
const mergedItems = useItems(screens, items, children);
|
|
const mergedSize = (0,useSize/* default */.Z)(customizeSize);
|
|
const rows = hooks_useRow(mergedColumn, mergedItems);
|
|
const [wrapSSR, hashId] = descriptions_style(prefixCls);
|
|
// ======================== Render ========================
|
|
const contextValue = _react_17_0_2_react.useMemo(() => ({
|
|
labelStyle,
|
|
contentStyle
|
|
}), [labelStyle, contentStyle]);
|
|
return wrapSSR( /*#__PURE__*/_react_17_0_2_react.createElement(descriptions_DescriptionsContext.Provider, {
|
|
value: contextValue
|
|
}, /*#__PURE__*/_react_17_0_2_react.createElement("div", Object.assign({
|
|
className: _classnames_2_5_1_classnames_default()(prefixCls, descriptions === null || descriptions === void 0 ? void 0 : descriptions.className, {
|
|
[`${prefixCls}-${mergedSize}`]: mergedSize && mergedSize !== 'default',
|
|
[`${prefixCls}-bordered`]: !!bordered,
|
|
[`${prefixCls}-rtl`]: direction === 'rtl'
|
|
}, className, rootClassName, hashId),
|
|
style: Object.assign(Object.assign({}, descriptions === null || descriptions === void 0 ? void 0 : descriptions.style), style)
|
|
}, restProps), (title || extra) && /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
|
className: `${prefixCls}-header`
|
|
}, title && /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
|
className: `${prefixCls}-title`
|
|
}, title), extra && /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
|
className: `${prefixCls}-extra`
|
|
}, extra)), /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
|
className: `${prefixCls}-view`
|
|
}, /*#__PURE__*/_react_17_0_2_react.createElement("table", null, /*#__PURE__*/_react_17_0_2_react.createElement("tbody", null, rows.map((row, index) => /*#__PURE__*/_react_17_0_2_react.createElement(descriptions_Row, {
|
|
key: index,
|
|
index: index,
|
|
colon: colon,
|
|
prefixCls: prefixCls,
|
|
vertical: layout === 'vertical',
|
|
bordered: bordered,
|
|
row: row
|
|
}))))))));
|
|
};
|
|
if (false) {}
|
|
|
|
Descriptions.Item = Item;
|
|
/* harmony default export */ var descriptions = (Descriptions);
|
|
|
|
/***/ }),
|
|
|
|
/***/ 78673:
|
|
/*!**********************************************************************!*\
|
|
!*** ./node_modules/_antd@5.9.0@antd/es/switch/index.js + 2 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/_@ant-design_icons@5.4.0@@ant-design/icons/es/icons/LoadingOutlined.js + 1 modules
|
|
var LoadingOutlined = __webpack_require__(42857);
|
|
// EXTERNAL MODULE: ./node_modules/_classnames@2.5.1@classnames/index.js
|
|
var _classnames_2_5_1_classnames = __webpack_require__(92310);
|
|
var _classnames_2_5_1_classnames_default = /*#__PURE__*/__webpack_require__.n(_classnames_2_5_1_classnames);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.25.6@@babel/runtime/helpers/esm/extends.js
|
|
var esm_extends = __webpack_require__(33614);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.25.6@@babel/runtime/helpers/esm/defineProperty.js
|
|
var defineProperty = __webpack_require__(24018);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.25.6@@babel/runtime/helpers/esm/slicedToArray.js + 1 modules
|
|
var slicedToArray = __webpack_require__(54099);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.25.6@@babel/runtime/helpers/esm/objectWithoutProperties.js
|
|
var objectWithoutProperties = __webpack_require__(63011);
|
|
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
|
var _react_17_0_2_react = __webpack_require__(59301);
|
|
// EXTERNAL MODULE: ./node_modules/_rc-util@5.43.0@rc-util/es/hooks/useMergedState.js
|
|
var useMergedState = __webpack_require__(71366);
|
|
// EXTERNAL MODULE: ./node_modules/_rc-util@5.43.0@rc-util/es/KeyCode.js
|
|
var KeyCode = __webpack_require__(20287);
|
|
;// CONCATENATED MODULE: ./node_modules/_rc-switch@4.1.0@rc-switch/es/index.js
|
|
|
|
|
|
|
|
|
|
var _excluded = ["prefixCls", "className", "checked", "defaultChecked", "disabled", "loadingIcon", "checkedChildren", "unCheckedChildren", "onClick", "onChange", "onKeyDown"];
|
|
|
|
|
|
|
|
|
|
var Switch = /*#__PURE__*/_react_17_0_2_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, _excluded);
|
|
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 */.Z.LEFT) {
|
|
triggerChange(false, e);
|
|
} else if (e.which === KeyCode/* default */.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_2_5_1_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 /*#__PURE__*/_react_17_0_2_react.createElement("button", (0,esm_extends/* default */.Z)({}, restProps, {
|
|
type: "button",
|
|
role: "switch",
|
|
"aria-checked": innerChecked,
|
|
disabled: disabled,
|
|
className: switchClassName,
|
|
ref: ref,
|
|
onKeyDown: onInternalKeyDown,
|
|
onClick: onInternalClick
|
|
}), loadingIcon, /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
|
className: "".concat(prefixCls, "-inner")
|
|
}, /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
|
className: "".concat(prefixCls, "-inner-checked")
|
|
}, checkedChildren), /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
|
className: "".concat(prefixCls, "-inner-unchecked")
|
|
}, unCheckedChildren)));
|
|
});
|
|
Switch.displayName = 'Switch';
|
|
/* harmony default export */ var es = (Switch);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/_util/wave/index.js + 4 modules
|
|
var wave = __webpack_require__(14088);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/config-provider/context.js
|
|
var context = __webpack_require__(36355);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/config-provider/DisabledContext.js
|
|
var DisabledContext = __webpack_require__(1684);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/config-provider/hooks/useSize.js
|
|
var useSize = __webpack_require__(19716);
|
|
// EXTERNAL MODULE: ./node_modules/_@ctrl_tinycolor@3.6.1@@ctrl/tinycolor/dist/module/index.js
|
|
var dist_module = __webpack_require__(64993);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/style/index.js
|
|
var style = __webpack_require__(17313);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/genComponentStyleHook.js
|
|
var genComponentStyleHook = __webpack_require__(83116);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/statistic.js
|
|
var statistic = __webpack_require__(37613);
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/switch/style/index.js
|
|
|
|
|
|
|
|
const genSwitchSmallStyle = token => {
|
|
const {
|
|
componentCls,
|
|
trackHeightSM,
|
|
trackPadding,
|
|
trackMinWidthSM,
|
|
innerMinMarginSM,
|
|
innerMaxMarginSM,
|
|
handleSizeSM
|
|
} = token;
|
|
const switchInnerCls = `${componentCls}-inner`;
|
|
return {
|
|
[componentCls]: {
|
|
[`&${componentCls}-small`]: {
|
|
minWidth: trackMinWidthSM,
|
|
height: trackHeightSM,
|
|
lineHeight: `${trackHeightSM}px`,
|
|
[`${componentCls}-inner`]: {
|
|
paddingInlineStart: innerMaxMarginSM,
|
|
paddingInlineEnd: innerMinMarginSM,
|
|
[`${switchInnerCls}-checked`]: {
|
|
marginInlineStart: `calc(-100% + ${handleSizeSM + trackPadding * 2}px - ${innerMaxMarginSM * 2}px)`,
|
|
marginInlineEnd: `calc(100% - ${handleSizeSM + trackPadding * 2}px + ${innerMaxMarginSM * 2}px)`
|
|
},
|
|
[`${switchInnerCls}-unchecked`]: {
|
|
marginTop: -trackHeightSM,
|
|
marginInlineStart: 0,
|
|
marginInlineEnd: 0
|
|
}
|
|
},
|
|
[`${componentCls}-handle`]: {
|
|
width: handleSizeSM,
|
|
height: handleSizeSM
|
|
},
|
|
[`${componentCls}-loading-icon`]: {
|
|
top: (handleSizeSM - token.switchLoadingIconSize) / 2,
|
|
fontSize: token.switchLoadingIconSize
|
|
},
|
|
[`&${componentCls}-checked`]: {
|
|
[`${componentCls}-inner`]: {
|
|
paddingInlineStart: innerMinMarginSM,
|
|
paddingInlineEnd: innerMaxMarginSM,
|
|
[`${switchInnerCls}-checked`]: {
|
|
marginInlineStart: 0,
|
|
marginInlineEnd: 0
|
|
},
|
|
[`${switchInnerCls}-unchecked`]: {
|
|
marginInlineStart: `calc(100% - ${handleSizeSM + trackPadding * 2}px + ${innerMaxMarginSM * 2}px)`,
|
|
marginInlineEnd: `calc(-100% + ${handleSizeSM + trackPadding * 2}px - ${innerMaxMarginSM * 2}px)`
|
|
}
|
|
},
|
|
[`${componentCls}-handle`]: {
|
|
insetInlineStart: `calc(100% - ${handleSizeSM + trackPadding}px)`
|
|
}
|
|
},
|
|
[`&:not(${componentCls}-disabled):active`]: {
|
|
[`&:not(${componentCls}-checked) ${switchInnerCls}`]: {
|
|
[`${switchInnerCls}-unchecked`]: {
|
|
marginInlineStart: token.marginXXS / 2,
|
|
marginInlineEnd: -token.marginXXS / 2
|
|
}
|
|
},
|
|
[`&${componentCls}-checked ${switchInnerCls}`]: {
|
|
[`${switchInnerCls}-checked`]: {
|
|
marginInlineStart: -token.marginXXS / 2,
|
|
marginInlineEnd: token.marginXXS / 2
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|
|
const genSwitchLoadingStyle = token => {
|
|
const {
|
|
componentCls,
|
|
handleSize
|
|
} = token;
|
|
return {
|
|
[componentCls]: {
|
|
[`${componentCls}-loading-icon${token.iconCls}`]: {
|
|
position: 'relative',
|
|
top: (handleSize - token.fontSize) / 2,
|
|
color: token.switchLoadingIconColor,
|
|
verticalAlign: 'top'
|
|
},
|
|
[`&${componentCls}-checked ${componentCls}-loading-icon`]: {
|
|
color: token.switchColor
|
|
}
|
|
}
|
|
};
|
|
};
|
|
const genSwitchHandleStyle = token => {
|
|
const {
|
|
componentCls,
|
|
motion,
|
|
trackPadding,
|
|
handleBg,
|
|
handleShadow,
|
|
handleSize
|
|
} = token;
|
|
const switchHandleCls = `${componentCls}-handle`;
|
|
return {
|
|
[componentCls]: {
|
|
[switchHandleCls]: {
|
|
position: 'absolute',
|
|
top: trackPadding,
|
|
insetInlineStart: trackPadding,
|
|
width: handleSize,
|
|
height: handleSize,
|
|
transition: `all ${token.switchDuration} ease-in-out`,
|
|
'&::before': {
|
|
position: 'absolute',
|
|
top: 0,
|
|
insetInlineEnd: 0,
|
|
bottom: 0,
|
|
insetInlineStart: 0,
|
|
backgroundColor: handleBg,
|
|
borderRadius: handleSize / 2,
|
|
boxShadow: handleShadow,
|
|
transition: `all ${token.switchDuration} ease-in-out`,
|
|
content: '""'
|
|
}
|
|
},
|
|
[`&${componentCls}-checked ${switchHandleCls}`]: {
|
|
insetInlineStart: `calc(100% - ${handleSize + trackPadding}px)`
|
|
},
|
|
[`&:not(${componentCls}-disabled):active`]: motion ? {
|
|
[`${switchHandleCls}::before`]: {
|
|
insetInlineEnd: token.switchHandleActiveInset,
|
|
insetInlineStart: 0
|
|
},
|
|
[`&${componentCls}-checked ${switchHandleCls}::before`]: {
|
|
insetInlineEnd: 0,
|
|
insetInlineStart: token.switchHandleActiveInset
|
|
}
|
|
} : /* istanbul ignore next */
|
|
{}
|
|
}
|
|
};
|
|
};
|
|
const genSwitchInnerStyle = token => {
|
|
const {
|
|
componentCls,
|
|
trackHeight,
|
|
trackPadding,
|
|
innerMinMargin,
|
|
innerMaxMargin,
|
|
handleSize
|
|
} = token;
|
|
const switchInnerCls = `${componentCls}-inner`;
|
|
return {
|
|
[componentCls]: {
|
|
[switchInnerCls]: {
|
|
display: 'block',
|
|
overflow: 'hidden',
|
|
borderRadius: 100,
|
|
height: '100%',
|
|
paddingInlineStart: innerMaxMargin,
|
|
paddingInlineEnd: innerMinMargin,
|
|
transition: `padding-inline-start ${token.switchDuration} ease-in-out, padding-inline-end ${token.switchDuration} ease-in-out`,
|
|
[`${switchInnerCls}-checked, ${switchInnerCls}-unchecked`]: {
|
|
display: 'block',
|
|
color: token.colorTextLightSolid,
|
|
fontSize: token.fontSizeSM,
|
|
transition: `margin-inline-start ${token.switchDuration} ease-in-out, margin-inline-end ${token.switchDuration} ease-in-out`,
|
|
pointerEvents: 'none'
|
|
},
|
|
[`${switchInnerCls}-checked`]: {
|
|
marginInlineStart: `calc(-100% + ${handleSize + trackPadding * 2}px - ${innerMaxMargin * 2}px)`,
|
|
marginInlineEnd: `calc(100% - ${handleSize + trackPadding * 2}px + ${innerMaxMargin * 2}px)`
|
|
},
|
|
[`${switchInnerCls}-unchecked`]: {
|
|
marginTop: -trackHeight,
|
|
marginInlineStart: 0,
|
|
marginInlineEnd: 0
|
|
}
|
|
},
|
|
[`&${componentCls}-checked ${switchInnerCls}`]: {
|
|
paddingInlineStart: innerMinMargin,
|
|
paddingInlineEnd: innerMaxMargin,
|
|
[`${switchInnerCls}-checked`]: {
|
|
marginInlineStart: 0,
|
|
marginInlineEnd: 0
|
|
},
|
|
[`${switchInnerCls}-unchecked`]: {
|
|
marginInlineStart: `calc(100% - ${handleSize + trackPadding * 2}px + ${innerMaxMargin * 2}px)`,
|
|
marginInlineEnd: `calc(-100% + ${handleSize + trackPadding * 2}px - ${innerMaxMargin * 2}px)`
|
|
}
|
|
},
|
|
[`&:not(${componentCls}-disabled):active`]: {
|
|
[`&:not(${componentCls}-checked) ${switchInnerCls}`]: {
|
|
[`${switchInnerCls}-unchecked`]: {
|
|
marginInlineStart: trackPadding * 2,
|
|
marginInlineEnd: -trackPadding * 2
|
|
}
|
|
},
|
|
[`&${componentCls}-checked ${switchInnerCls}`]: {
|
|
[`${switchInnerCls}-checked`]: {
|
|
marginInlineStart: -trackPadding * 2,
|
|
marginInlineEnd: trackPadding * 2
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|
|
const genSwitchStyle = token => {
|
|
const {
|
|
componentCls,
|
|
trackHeight,
|
|
trackMinWidth
|
|
} = token;
|
|
return {
|
|
[componentCls]: Object.assign(Object.assign(Object.assign(Object.assign({}, (0,style/* resetComponent */.Wf)(token)), {
|
|
position: 'relative',
|
|
display: 'inline-block',
|
|
boxSizing: 'border-box',
|
|
minWidth: trackMinWidth,
|
|
height: trackHeight,
|
|
lineHeight: `${trackHeight}px`,
|
|
verticalAlign: 'middle',
|
|
background: token.colorTextQuaternary,
|
|
border: '0',
|
|
borderRadius: 100,
|
|
cursor: 'pointer',
|
|
transition: `all ${token.motionDurationMid}`,
|
|
userSelect: 'none',
|
|
[`&:hover:not(${componentCls}-disabled)`]: {
|
|
background: token.colorTextTertiary
|
|
}
|
|
}), (0,style/* genFocusStyle */.Qy)(token)), {
|
|
[`&${componentCls}-checked`]: {
|
|
background: token.switchColor,
|
|
[`&:hover:not(${componentCls}-disabled)`]: {
|
|
background: token.colorPrimaryHover
|
|
}
|
|
},
|
|
[`&${componentCls}-loading, &${componentCls}-disabled`]: {
|
|
cursor: 'not-allowed',
|
|
opacity: token.switchDisabledOpacity,
|
|
'*': {
|
|
boxShadow: 'none',
|
|
cursor: 'not-allowed'
|
|
}
|
|
},
|
|
// rtl style
|
|
[`&${componentCls}-rtl`]: {
|
|
direction: 'rtl'
|
|
}
|
|
})
|
|
};
|
|
};
|
|
// ============================== Export ==============================
|
|
/* harmony default export */ var switch_style = ((0,genComponentStyleHook/* default */.Z)('Switch', token => {
|
|
const switchToken = (0,statistic/* merge */.TS)(token, {
|
|
switchDuration: token.motionDurationMid,
|
|
switchColor: token.colorPrimary,
|
|
switchDisabledOpacity: token.opacityLoading,
|
|
switchLoadingIconSize: token.fontSizeIcon * 0.75,
|
|
switchLoadingIconColor: `rgba(0, 0, 0, ${token.opacityLoading})`,
|
|
switchHandleActiveInset: '-30%'
|
|
});
|
|
return [genSwitchStyle(switchToken),
|
|
// inner style
|
|
genSwitchInnerStyle(switchToken),
|
|
// handle style
|
|
genSwitchHandleStyle(switchToken),
|
|
// loading style
|
|
genSwitchLoadingStyle(switchToken),
|
|
// small style
|
|
genSwitchSmallStyle(switchToken)];
|
|
}, token => {
|
|
const {
|
|
fontSize,
|
|
lineHeight,
|
|
controlHeight,
|
|
colorWhite
|
|
} = token;
|
|
const height = fontSize * lineHeight;
|
|
const heightSM = controlHeight / 2;
|
|
const padding = 2; // Fixed value
|
|
const handleSize = height - padding * 2;
|
|
const handleSizeSM = heightSM - padding * 2;
|
|
return {
|
|
trackHeight: height,
|
|
trackHeightSM: heightSM,
|
|
trackMinWidth: handleSize * 2 + padding * 4,
|
|
trackMinWidthSM: handleSizeSM * 2 + padding * 2,
|
|
trackPadding: padding,
|
|
handleBg: colorWhite,
|
|
handleSize,
|
|
handleSizeSM,
|
|
handleShadow: `0 2px 4px 0 ${new dist_module/* TinyColor */.C('#00230b').setAlpha(0.2).toRgbString()}`,
|
|
innerMinMargin: handleSize / 2,
|
|
innerMaxMargin: handleSize + padding + padding * 2,
|
|
innerMinMarginSM: handleSizeSM / 2,
|
|
innerMaxMarginSM: handleSizeSM + padding + padding * 2
|
|
};
|
|
}));
|
|
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/switch/index.js
|
|
"use client";
|
|
|
|
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;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const switch_Switch = /*#__PURE__*/_react_17_0_2_react.forwardRef((props, ref) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
size: customizeSize,
|
|
disabled: customDisabled,
|
|
loading,
|
|
className,
|
|
rootClassName,
|
|
style
|
|
} = props,
|
|
restProps = __rest(props, ["prefixCls", "size", "disabled", "loading", "className", "rootClassName", "style"]);
|
|
false ? 0 : void 0;
|
|
const {
|
|
getPrefixCls,
|
|
direction,
|
|
switch: SWITCH
|
|
} = _react_17_0_2_react.useContext(context/* ConfigContext */.E_);
|
|
// ===================== Disabled =====================
|
|
const disabled = _react_17_0_2_react.useContext(DisabledContext/* default */.Z);
|
|
const mergedDisabled = (customDisabled !== null && customDisabled !== void 0 ? customDisabled : disabled) || loading;
|
|
const prefixCls = getPrefixCls('switch', customizePrefixCls);
|
|
const loadingIcon = /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
|
className: `${prefixCls}-handle`
|
|
}, loading && /*#__PURE__*/_react_17_0_2_react.createElement(LoadingOutlined/* default */.Z, {
|
|
className: `${prefixCls}-loading-icon`
|
|
}));
|
|
// Style
|
|
const [wrapSSR, hashId] = switch_style(prefixCls);
|
|
const mergedSize = (0,useSize/* default */.Z)(customizeSize);
|
|
const classes = _classnames_2_5_1_classnames_default()(SWITCH === null || SWITCH === void 0 ? void 0 : SWITCH.className, {
|
|
[`${prefixCls}-small`]: mergedSize === 'small',
|
|
[`${prefixCls}-loading`]: loading,
|
|
[`${prefixCls}-rtl`]: direction === 'rtl'
|
|
}, className, rootClassName, hashId);
|
|
const mergedStyle = Object.assign(Object.assign({}, SWITCH === null || SWITCH === void 0 ? void 0 : SWITCH.style), style);
|
|
return wrapSSR( /*#__PURE__*/_react_17_0_2_react.createElement(wave/* default */.Z, {
|
|
component: "Switch"
|
|
}, /*#__PURE__*/_react_17_0_2_react.createElement(es, Object.assign({}, restProps, {
|
|
prefixCls: prefixCls,
|
|
className: classes,
|
|
style: mergedStyle,
|
|
disabled: mergedDisabled,
|
|
ref: ref,
|
|
loadingIcon: loadingIcon
|
|
}))));
|
|
});
|
|
switch_Switch.__ANT_SWITCH = true;
|
|
if (false) {}
|
|
/* harmony default export */ var es_switch = (switch_Switch);
|
|
|
|
/***/ })
|
|
|
|
}]); |