@douyinfe/semi-ui 2.41.3 → 2.42.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/semi.css +27 -7
- package/dist/css/semi.min.css +1 -1
- package/dist/umd/semi-ui.js +1245 -1496
- package/dist/umd/semi-ui.js.map +1 -1
- package/dist/umd/semi-ui.min.js +1 -1
- package/dist/umd/semi-ui.min.js.map +1 -1
- package/lib/cjs/button/splitButtonGroup.d.ts +2 -0
- package/lib/cjs/button/splitButtonGroup.js +14 -0
- package/lib/cjs/collapse/item.d.ts +2 -1
- package/lib/cjs/collapse/item.js +4 -1
- package/lib/cjs/form/baseForm.d.ts +12 -10
- package/lib/cjs/form/baseForm.js +17 -13
- package/lib/cjs/form/hoc/withField.js +13 -11
- package/lib/cjs/form/interface.d.ts +5 -3
- package/lib/cjs/inputNumber/index.js +1 -1
- package/lib/cjs/modal/confirm.d.ts +1 -1
- package/lib/cjs/table/ResizableHeaderCell.d.ts +2 -0
- package/lib/cjs/table/ResizableHeaderCell.js +6 -4
- package/lib/cjs/table/TableHeader.d.ts +2 -2
- package/lib/cjs/table/TableHeaderRow.d.ts +2 -1
- package/lib/cjs/table/TableHeaderRow.js +3 -0
- package/lib/cjs/table/interface.d.ts +2 -1
- package/lib/cjs/toast/index.d.ts +18 -0
- package/lib/cjs/toast/index.js +49 -4
- package/lib/cjs/toast/toast.d.ts +11 -0
- package/lib/cjs/toast/toast.js +22 -2
- package/lib/cjs/tooltip/index.d.ts +1 -1
- package/lib/cjs/tooltip/index.js +2 -1
- package/lib/cjs/tree/treeNode.js +1 -2
- package/lib/cjs/typography/base.js +1 -3
- package/lib/cjs/upload/fileCard.d.ts +13 -2
- package/lib/cjs/upload/fileCard.js +52 -11
- package/lib/cjs/upload/index.d.ts +4 -0
- package/lib/cjs/upload/index.js +16 -4
- package/lib/es/button/splitButtonGroup.d.ts +2 -0
- package/lib/es/button/splitButtonGroup.js +14 -0
- package/lib/es/collapse/item.d.ts +2 -1
- package/lib/es/collapse/item.js +4 -1
- package/lib/es/form/baseForm.d.ts +12 -10
- package/lib/es/form/baseForm.js +17 -13
- package/lib/es/form/hoc/withField.js +14 -12
- package/lib/es/form/interface.d.ts +5 -3
- package/lib/es/inputNumber/index.js +1 -1
- package/lib/es/modal/confirm.d.ts +1 -1
- package/lib/es/table/ResizableHeaderCell.d.ts +2 -0
- package/lib/es/table/ResizableHeaderCell.js +6 -4
- package/lib/es/table/TableHeader.d.ts +2 -2
- package/lib/es/table/TableHeaderRow.d.ts +2 -1
- package/lib/es/table/TableHeaderRow.js +3 -0
- package/lib/es/table/interface.d.ts +2 -1
- package/lib/es/toast/index.d.ts +18 -0
- package/lib/es/toast/index.js +49 -4
- package/lib/es/toast/toast.d.ts +11 -0
- package/lib/es/toast/toast.js +22 -2
- package/lib/es/tooltip/index.d.ts +1 -1
- package/lib/es/tooltip/index.js +2 -1
- package/lib/es/tree/treeNode.js +1 -2
- package/lib/es/typography/base.js +1 -3
- package/lib/es/upload/fileCard.d.ts +13 -2
- package/lib/es/upload/fileCard.js +52 -9
- package/lib/es/upload/index.d.ts +4 -0
- package/lib/es/upload/index.js +16 -4
- package/package.json +2 -2
package/dist/umd/semi-ui.js
CHANGED
|
@@ -18297,7 +18297,7 @@ class foundation_Tooltip extends foundation {
|
|
|
18297
18297
|
* Because the handler needs to be bound to the document. If you bind during the constructor phase
|
|
18298
18298
|
* When there are multiple container instances in a page, one click triggers the handler of multiple containers
|
|
18299
18299
|
*/
|
|
18300
|
-
if (trigger === 'click' || clickTriggerToHide) {
|
|
18300
|
+
if (trigger === 'click' || clickTriggerToHide || trigger === 'contextMenu') {
|
|
18301
18301
|
this._adapter.registerClickOutsideHandler(this.hide);
|
|
18302
18302
|
}
|
|
18303
18303
|
this._bindScrollEvent();
|
|
@@ -18569,6 +18569,13 @@ class foundation_Tooltip extends foundation {
|
|
|
18569
18569
|
// when trigger type is 'custom', no need to bind eventHandler
|
|
18570
18570
|
// show/hide completely depend on props.visible which change by user
|
|
18571
18571
|
break;
|
|
18572
|
+
case 'contextMenu':
|
|
18573
|
+
triggerEventSet[eventNames.contextMenu] = e => {
|
|
18574
|
+
e.preventDefault();
|
|
18575
|
+
this.show();
|
|
18576
|
+
};
|
|
18577
|
+
// Click outside needs special treatment, can not be directly tied to the trigger Element, need to be bound to the document
|
|
18578
|
+
break;
|
|
18572
18579
|
default:
|
|
18573
18580
|
break;
|
|
18574
18581
|
}
|
|
@@ -19303,7 +19310,7 @@ const tooltip_constants_cssClasses = {
|
|
|
19303
19310
|
};
|
|
19304
19311
|
const tooltip_constants_strings = {
|
|
19305
19312
|
POSITION_SET: ['top', 'topLeft', 'topRight', 'left', 'leftTop', 'leftBottom', 'right', 'rightTop', 'rightBottom', 'bottom', 'bottomLeft', 'bottomRight', 'leftTopOver', 'rightTopOver', 'leftBottomOver', 'rightBottomOver'],
|
|
19306
|
-
TRIGGER_SET: ['hover', 'focus', 'click', 'custom'],
|
|
19313
|
+
TRIGGER_SET: ['hover', 'focus', 'click', 'custom', 'contextMenu'],
|
|
19307
19314
|
STATUS_DISABLED: 'disabled',
|
|
19308
19315
|
STATUS_LOADING: 'loading'
|
|
19309
19316
|
};
|
|
@@ -20350,7 +20357,8 @@ class Tooltip extends BaseComponent {
|
|
|
20350
20357
|
click: 'onClick',
|
|
20351
20358
|
focus: 'onFocus',
|
|
20352
20359
|
blur: 'onBlur',
|
|
20353
|
-
keydown: 'onKeyDown'
|
|
20360
|
+
keydown: 'onKeyDown',
|
|
20361
|
+
contextMenu: 'onContextMenu'
|
|
20354
20362
|
}),
|
|
20355
20363
|
registerTriggerEvent: triggerEventSet => {
|
|
20356
20364
|
this.setState({
|
|
@@ -21634,7 +21642,7 @@ const convertIcon = (Svg, iconType) => {
|
|
|
21634
21642
|
};
|
|
21635
21643
|
|
|
21636
21644
|
/* harmony default export */ const components_Icon = (Icon);
|
|
21637
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/
|
|
21645
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTick.js
|
|
21638
21646
|
|
|
21639
21647
|
|
|
21640
21648
|
function SvgComponent(props) {
|
|
@@ -21649,355 +21657,12 @@ function SvgComponent(props) {
|
|
|
21649
21657
|
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21650
21658
|
fillRule: "evenodd",
|
|
21651
21659
|
clipRule: "evenodd",
|
|
21652
|
-
d: "
|
|
21653
|
-
fill: "currentColor"
|
|
21654
|
-
}));
|
|
21655
|
-
}
|
|
21656
|
-
const IconComponent = convertIcon(SvgComponent, 'alert_circle');
|
|
21657
|
-
/* harmony default export */ const IconAlertCircle = (IconComponent);
|
|
21658
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconAlertTriangle.js
|
|
21659
|
-
|
|
21660
|
-
|
|
21661
|
-
function IconAlertTriangle_SvgComponent(props) {
|
|
21662
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21663
|
-
viewBox: "0 0 24 24",
|
|
21664
|
-
fill: "none",
|
|
21665
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21666
|
-
width: "1em",
|
|
21667
|
-
height: "1em",
|
|
21668
|
-
focusable: false,
|
|
21669
|
-
"aria-hidden": true
|
|
21670
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21671
|
-
fillRule: "evenodd",
|
|
21672
|
-
clipRule: "evenodd",
|
|
21673
|
-
d: "M10.2268 2.3986L1.52616 19.0749C0.831449 20.4064 1.79747 22 3.29933 22H20.7007C22.2025 22 23.1686 20.4064 22.4739 19.0749L13.7732 2.3986C13.0254 0.965441 10.9746 0.965442 10.2268 2.3986ZM13.1415 14.0101C13.0603 14.5781 12.5739 15 12.0001 15C11.4263 15 10.9398 14.5781 10.8586 14.0101L10.2829 9.97992C10.1336 8.93495 10.9445 8.00002 12.0001 8.00002C13.0556 8.00002 13.8665 8.93495 13.7172 9.97992L13.1415 14.0101ZM13.5001 18.5C13.5001 19.3284 12.8285 20 12.0001 20C11.1716 20 10.5001 19.3284 10.5001 18.5C10.5001 17.6716 11.1716 17 12.0001 17C12.8285 17 13.5001 17.6716 13.5001 18.5Z",
|
|
21674
|
-
fill: "currentColor"
|
|
21675
|
-
}));
|
|
21676
|
-
}
|
|
21677
|
-
const IconAlertTriangle_IconComponent = convertIcon(IconAlertTriangle_SvgComponent, 'alert_triangle');
|
|
21678
|
-
/* harmony default export */ const IconAlertTriangle = (IconAlertTriangle_IconComponent);
|
|
21679
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowLeft.js
|
|
21680
|
-
|
|
21681
|
-
|
|
21682
|
-
function IconArrowLeft_SvgComponent(props) {
|
|
21683
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21684
|
-
viewBox: "0 0 24 24",
|
|
21685
|
-
fill: "none",
|
|
21686
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21687
|
-
width: "1em",
|
|
21688
|
-
height: "1em",
|
|
21689
|
-
focusable: false,
|
|
21690
|
-
"aria-hidden": true
|
|
21691
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21692
|
-
fillRule: "evenodd",
|
|
21693
|
-
clipRule: "evenodd",
|
|
21694
|
-
d: "M23 12C23 12.8284 22.3284 13.5 21.5 13.5L6.12132 13.5L12.5607 19.9393C13.1464 20.5251 13.1464 21.4749 12.5607 22.0607C11.9749 22.6464 11.0251 22.6464 10.4393 22.0607L1.43934 13.0607C0.853554 12.4749 0.853554 11.5251 1.43934 10.9393L10.4393 1.93934C11.0251 1.35355 11.9749 1.35355 12.5607 1.93934C13.1464 2.52513 13.1464 3.47487 12.5607 4.06066L6.12132 10.5L21.5 10.5C22.3284 10.5 23 11.1716 23 12Z",
|
|
21695
|
-
fill: "currentColor"
|
|
21696
|
-
}));
|
|
21697
|
-
}
|
|
21698
|
-
const IconArrowLeft_IconComponent = convertIcon(IconArrowLeft_SvgComponent, 'arrow_left');
|
|
21699
|
-
/* harmony default export */ const IconArrowLeft = (IconArrowLeft_IconComponent);
|
|
21700
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowRight.js
|
|
21701
|
-
|
|
21702
|
-
|
|
21703
|
-
function IconArrowRight_SvgComponent(props) {
|
|
21704
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21705
|
-
viewBox: "0 0 24 24",
|
|
21706
|
-
fill: "none",
|
|
21707
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21708
|
-
width: "1em",
|
|
21709
|
-
height: "1em",
|
|
21710
|
-
focusable: false,
|
|
21711
|
-
"aria-hidden": true
|
|
21712
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21713
|
-
fillRule: "evenodd",
|
|
21714
|
-
clipRule: "evenodd",
|
|
21715
|
-
d: "M1 12C1 11.1716 1.67157 10.5 2.5 10.5L17.8787 10.5L11.4393 4.06066C10.8536 3.47487 10.8536 2.52513 11.4393 1.93934C12.0251 1.35355 12.9749 1.35355 13.5607 1.93934L22.5607 10.9393C23.1464 11.5251 23.1464 12.4749 22.5607 13.0607L13.5607 22.0607C12.9749 22.6464 12.0251 22.6464 11.4393 22.0607C10.8536 21.4749 10.8536 20.5251 11.4393 19.9393L17.8787 13.5L2.5 13.5C1.67157 13.5 1 12.8284 1 12Z",
|
|
21716
|
-
fill: "currentColor"
|
|
21717
|
-
}));
|
|
21718
|
-
}
|
|
21719
|
-
const IconArrowRight_IconComponent = convertIcon(IconArrowRight_SvgComponent, 'arrow_right');
|
|
21720
|
-
/* harmony default export */ const IconArrowRight = (IconArrowRight_IconComponent);
|
|
21721
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCalendar.js
|
|
21722
|
-
|
|
21723
|
-
|
|
21724
|
-
function IconCalendar_SvgComponent(props) {
|
|
21725
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21726
|
-
viewBox: "0 0 24 24",
|
|
21727
|
-
fill: "none",
|
|
21728
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21729
|
-
width: "1em",
|
|
21730
|
-
height: "1em",
|
|
21731
|
-
focusable: false,
|
|
21732
|
-
"aria-hidden": true
|
|
21733
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21734
|
-
fillRule: "evenodd",
|
|
21735
|
-
clipRule: "evenodd",
|
|
21736
|
-
d: "M4 20V8H20V20H4ZM2 4C2 2.89543 2.89543 2 4 2H20C21.1046 2 22 2.89543 22 4V20C22 21.1046 21.1046 22 20 22H4C2.89543 22 2 21.1046 2 20V4ZM6 10.5C6 10.2239 6.22386 10 6.5 10H8.5C8.77614 10 9 10.2239 9 10.5V12.5C9 12.7761 8.77614 13 8.5 13H6.5C6.22386 13 6 12.7761 6 12.5V10.5ZM6.5 15C6.22386 15 6 15.2239 6 15.5V17.5C6 17.7761 6.22386 18 6.5 18H8.5C8.77614 18 9 17.7761 9 17.5V15.5C9 15.2239 8.77614 15 8.5 15H6.5ZM10.5 10.5C10.5 10.2239 10.7239 10 11 10H13C13.2761 10 13.5 10.2239 13.5 10.5V12.5C13.5 12.7761 13.2761 13 13 13H11C10.7239 13 10.5 12.7761 10.5 12.5V10.5ZM11 15C10.7239 15 10.5 15.2239 10.5 15.5V17.5C10.5 17.7761 10.7239 18 11 18H13C13.2761 18 13.5 17.7761 13.5 17.5V15.5C13.5 15.2239 13.2761 15 13 15H11ZM15 10.5C15 10.2239 15.2239 10 15.5 10H17.5C17.7761 10 18 10.2239 18 10.5V12.5C18 12.7761 17.7761 13 17.5 13H15.5C15.2239 13 15 12.7761 15 12.5V10.5ZM15.5 15C15.2239 15 15 15.2239 15 15.5V17.5C15 17.7761 15.2239 18 15.5 18H17.5C17.7761 18 18 17.7761 18 17.5V15.5C18 15.2239 17.7761 15 17.5 15H15.5Z",
|
|
21737
|
-
fill: "currentColor"
|
|
21738
|
-
}));
|
|
21739
|
-
}
|
|
21740
|
-
const IconCalendar_IconComponent = convertIcon(IconCalendar_SvgComponent, 'calendar');
|
|
21741
|
-
/* harmony default export */ const IconCalendar = (IconCalendar_IconComponent);
|
|
21742
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCalendarClock.js
|
|
21743
|
-
|
|
21744
|
-
|
|
21745
|
-
function IconCalendarClock_SvgComponent(props) {
|
|
21746
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21747
|
-
viewBox: "0 0 24 24",
|
|
21748
|
-
fill: "none",
|
|
21749
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21750
|
-
width: "1em",
|
|
21751
|
-
height: "1em",
|
|
21752
|
-
focusable: false,
|
|
21753
|
-
"aria-hidden": true
|
|
21754
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21755
|
-
d: "M2 5V19C2 20.6569 3.34315 22 5 22H12.101C11.5151 21.4259 11.0297 20.7496 10.6736 20H6C4.89543 20 4 19.1046 4 18V8C4 7.44772 4.44772 7 5 7H19C19.5523 7 20 7.44772 20 8V10.6736C20.7496 11.0297 21.4259 11.5151 22 12.101V5C22 3.34315 20.6569 2 19 2H5C3.34315 2 2 3.34315 2 5Z",
|
|
21756
|
-
fill: "currentColor"
|
|
21757
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21758
|
-
d: "M16 10H17C16.4614 10 15.9369 10.0608 15.4332 10.176C15.5943 10.065 15.7896 10 16 10Z",
|
|
21759
|
-
fill: "currentColor"
|
|
21760
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21761
|
-
d: "M13.4981 10.9376C13.4659 10.4144 13.0313 10 12.5 10H11.5C10.9477 10 10.5 10.4477 10.5 11V12C10.5 12.4742 10.83 12.8712 11.2729 12.9741C11.857 12.1446 12.6168 11.4478 13.4981 10.9376Z",
|
|
21762
|
-
fill: "currentColor"
|
|
21763
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21764
|
-
d: "M7 10C6.44772 10 6 10.4477 6 11V12C6 12.5523 6.44772 13 7 13H8C8.55228 13 9 12.5523 9 12V11C9 10.4477 8.55228 10 8 10H7Z",
|
|
21765
|
-
fill: "currentColor"
|
|
21766
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21767
|
-
d: "M6 16C6 15.4477 6.44772 15 7 15H8C8.55228 15 9 15.4477 9 16V17C9 17.5523 8.55228 18 8 18H7C6.44772 18 6 17.5523 6 17V16Z",
|
|
21768
|
-
fill: "currentColor"
|
|
21769
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21770
|
-
fillRule: "evenodd",
|
|
21771
|
-
clipRule: "evenodd",
|
|
21772
|
-
d: "M22 17C22 19.7614 19.7614 22 17 22C14.2386 22 12 19.7614 12 17C12 14.2386 14.2386 12 17 12C19.7614 12 22 14.2386 22 17ZM18 15C18 14.4477 17.5523 14 17 14C16.4477 14 16 14.4477 16 15V17C16 17.2652 16.1054 17.5196 16.2929 17.7071L17.7929 19.2071C18.1834 19.5976 18.8166 19.5976 19.2071 19.2071C19.5976 18.8166 19.5976 18.1834 19.2071 17.7929L18 16.5858V15Z",
|
|
21773
|
-
fill: "currentColor"
|
|
21774
|
-
}));
|
|
21775
|
-
}
|
|
21776
|
-
const IconCalendarClock_IconComponent = convertIcon(IconCalendarClock_SvgComponent, 'calendar_clock');
|
|
21777
|
-
/* harmony default export */ const IconCalendarClock = (IconCalendarClock_IconComponent);
|
|
21778
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretdown.js
|
|
21779
|
-
|
|
21780
|
-
|
|
21781
|
-
function IconCaretdown_SvgComponent(props) {
|
|
21782
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21783
|
-
viewBox: "0 0 24 24",
|
|
21784
|
-
fill: "none",
|
|
21785
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21786
|
-
width: "1em",
|
|
21787
|
-
height: "1em",
|
|
21788
|
-
focusable: false,
|
|
21789
|
-
"aria-hidden": true
|
|
21790
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21791
|
-
d: "M17.549 15.659L12.753 21.139C12.6591 21.2464 12.5434 21.3325 12.4135 21.3915C12.2836 21.4505 12.1427 21.481 12 21.481C11.8574 21.481 11.7164 21.4505 11.5865 21.3915C11.4566 21.3325 11.3409 21.2464 11.247 21.139L6.45101 15.659C5.88501 15.011 6.34501 14 7.20401 14H16.796C17.656 14 18.115 15.012 17.549 15.659Z",
|
|
21792
|
-
fill: "currentColor"
|
|
21793
|
-
}));
|
|
21794
|
-
}
|
|
21795
|
-
const IconCaretdown_IconComponent = convertIcon(IconCaretdown_SvgComponent, 'caretdown');
|
|
21796
|
-
/* harmony default export */ const IconCaretdown = (IconCaretdown_IconComponent);
|
|
21797
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretup.js
|
|
21798
|
-
|
|
21799
|
-
|
|
21800
|
-
function IconCaretup_SvgComponent(props) {
|
|
21801
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21802
|
-
viewBox: "0 0 24 24",
|
|
21803
|
-
fill: "none",
|
|
21804
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21805
|
-
width: "1em",
|
|
21806
|
-
height: "1em",
|
|
21807
|
-
focusable: false,
|
|
21808
|
-
"aria-hidden": true
|
|
21809
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21810
|
-
d: "M6.45096 8.34102L11.247 2.86102C11.3408 2.75361 11.4566 2.66753 11.5865 2.60854C11.7163 2.54956 11.8573 2.51904 12 2.51904C12.1426 2.51904 12.2836 2.54956 12.4135 2.60854C12.5433 2.66753 12.6591 2.75361 12.753 2.86102L17.549 8.34102C18.115 8.98802 17.655 10 16.796 10H7.20396C6.34396 10 5.88496 8.98802 6.45096 8.34102Z",
|
|
21811
|
-
fill: "currentColor"
|
|
21812
|
-
}));
|
|
21813
|
-
}
|
|
21814
|
-
const IconCaretup_IconComponent = convertIcon(IconCaretup_SvgComponent, 'caretup');
|
|
21815
|
-
/* harmony default export */ const IconCaretup = (IconCaretup_IconComponent);
|
|
21816
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxIndeterminate.js
|
|
21817
|
-
|
|
21818
|
-
|
|
21819
|
-
function IconCheckboxIndeterminate_SvgComponent(props) {
|
|
21820
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21821
|
-
viewBox: "0 0 24 24",
|
|
21822
|
-
fill: "none",
|
|
21823
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21824
|
-
width: "1em",
|
|
21825
|
-
height: "1em",
|
|
21826
|
-
focusable: false,
|
|
21827
|
-
"aria-hidden": true
|
|
21828
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21829
|
-
d: "M5 12.5C5 11.6716 5.67157 11 6.5 11H17.5C18.3284 11 19 11.6716 19 12.5C19 13.3284 18.3284 14 17.5 14H6.5C5.67157 14 5 13.3284 5 12.5Z",
|
|
21830
|
-
fill: "currentColor"
|
|
21831
|
-
}));
|
|
21832
|
-
}
|
|
21833
|
-
const IconCheckboxIndeterminate_IconComponent = convertIcon(IconCheckboxIndeterminate_SvgComponent, 'checkbox_indeterminate');
|
|
21834
|
-
/* harmony default export */ const IconCheckboxIndeterminate = (IconCheckboxIndeterminate_IconComponent);
|
|
21835
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxTick.js
|
|
21836
|
-
|
|
21837
|
-
|
|
21838
|
-
function IconCheckboxTick_SvgComponent(props) {
|
|
21839
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21840
|
-
viewBox: "0 0 24 24",
|
|
21841
|
-
fill: "none",
|
|
21842
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21843
|
-
width: "1em",
|
|
21844
|
-
height: "1em",
|
|
21845
|
-
focusable: false,
|
|
21846
|
-
"aria-hidden": true
|
|
21847
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21848
|
-
fillRule: "evenodd",
|
|
21849
|
-
clipRule: "evenodd",
|
|
21850
|
-
d: "M17.4111 7.30848C18.0692 7.81171 18.1947 8.75312 17.6915 9.41119L11.1915 17.9112C10.909 18.2806 10.4711 18.4981 10.0061 18.5C9.54105 18.5019 9.10143 18.288 8.81592 17.9209L5.31592 13.4209C4.80731 12.767 4.92512 11.8246 5.57904 11.316C6.23296 10.8074 7.17537 10.9252 7.68398 11.5791L9.98988 14.5438L15.3084 7.58884C15.8116 6.93077 16.7531 6.80525 17.4111 7.30848Z",
|
|
21851
|
-
fill: "currentColor"
|
|
21852
|
-
}));
|
|
21853
|
-
}
|
|
21854
|
-
const IconCheckboxTick_IconComponent = convertIcon(IconCheckboxTick_SvgComponent, 'checkbox_tick');
|
|
21855
|
-
/* harmony default export */ const IconCheckboxTick = (IconCheckboxTick_IconComponent);
|
|
21856
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronDown.js
|
|
21857
|
-
|
|
21858
|
-
|
|
21859
|
-
function IconChevronDown_SvgComponent(props) {
|
|
21860
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21861
|
-
viewBox: "0 0 24 24",
|
|
21862
|
-
fill: "none",
|
|
21863
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21864
|
-
width: "1em",
|
|
21865
|
-
height: "1em",
|
|
21866
|
-
focusable: false,
|
|
21867
|
-
"aria-hidden": true
|
|
21868
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21869
|
-
fillRule: "evenodd",
|
|
21870
|
-
clipRule: "evenodd",
|
|
21871
|
-
d: "M4.08045 7.59809C4.66624 7.01231 5.61599 7.01231 6.20177 7.59809L11.8586 13.2549L17.5155 7.59809C18.1013 7.01231 19.051 7.01231 19.6368 7.59809C20.2226 8.18388 20.2226 9.13363 19.6368 9.71941L12.9193 16.4369C12.3335 17.0227 11.3838 17.0227 10.798 16.4369L4.08045 9.71941C3.49467 9.13363 3.49467 8.18388 4.08045 7.59809Z",
|
|
21872
|
-
fill: "currentColor"
|
|
21873
|
-
}));
|
|
21874
|
-
}
|
|
21875
|
-
const IconChevronDown_IconComponent = convertIcon(IconChevronDown_SvgComponent, 'chevron_down');
|
|
21876
|
-
/* harmony default export */ const IconChevronDown = (IconChevronDown_IconComponent);
|
|
21877
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronLeft.js
|
|
21878
|
-
|
|
21879
|
-
|
|
21880
|
-
function IconChevronLeft_SvgComponent(props) {
|
|
21881
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21882
|
-
viewBox: "0 0 24 24",
|
|
21883
|
-
fill: "none",
|
|
21884
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21885
|
-
width: "1em",
|
|
21886
|
-
height: "1em",
|
|
21887
|
-
focusable: false,
|
|
21888
|
-
"aria-hidden": true
|
|
21889
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21890
|
-
fillRule: "evenodd",
|
|
21891
|
-
clipRule: "evenodd",
|
|
21892
|
-
d: "M16.2782 4.23933C16.864 4.82511 16.864 5.77486 16.2782 6.36065L10.6213 12.0175L16.2782 17.6744C16.864 18.2601 16.864 19.2099 16.2782 19.7957C15.6924 20.3815 14.7426 20.3815 14.1569 19.7957L7.43934 13.0782C6.85355 12.4924 6.85355 11.5426 7.43934 10.9568L14.1569 4.23933C14.7426 3.65354 15.6924 3.65354 16.2782 4.23933Z",
|
|
21893
|
-
fill: "currentColor"
|
|
21894
|
-
}));
|
|
21895
|
-
}
|
|
21896
|
-
const IconChevronLeft_IconComponent = convertIcon(IconChevronLeft_SvgComponent, 'chevron_left');
|
|
21897
|
-
/* harmony default export */ const IconChevronLeft = (IconChevronLeft_IconComponent);
|
|
21898
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronRight.js
|
|
21899
|
-
|
|
21900
|
-
|
|
21901
|
-
function IconChevronRight_SvgComponent(props) {
|
|
21902
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21903
|
-
viewBox: "0 0 24 24",
|
|
21904
|
-
fill: "none",
|
|
21905
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21906
|
-
width: "1em",
|
|
21907
|
-
height: "1em",
|
|
21908
|
-
focusable: false,
|
|
21909
|
-
"aria-hidden": true
|
|
21910
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21911
|
-
fillRule: "evenodd",
|
|
21912
|
-
clipRule: "evenodd",
|
|
21913
|
-
d: "M7.43934 19.7957C6.85355 19.2099 6.85355 18.2601 7.43934 17.6744L13.0962 12.0175L7.43934 6.36065C6.85355 5.77486 6.85355 4.82511 7.43934 4.23933C8.02513 3.65354 8.97487 3.65354 9.56066 4.23933L16.2782 10.9568C16.864 11.5426 16.864 12.4924 16.2782 13.0782L9.56066 19.7957C8.97487 20.3815 8.02513 20.3815 7.43934 19.7957Z",
|
|
21914
|
-
fill: "currentColor"
|
|
21915
|
-
}));
|
|
21916
|
-
}
|
|
21917
|
-
const IconChevronRight_IconComponent = convertIcon(IconChevronRight_SvgComponent, 'chevron_right');
|
|
21918
|
-
/* harmony default export */ const IconChevronRight = (IconChevronRight_IconComponent);
|
|
21919
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronUp.js
|
|
21920
|
-
|
|
21921
|
-
|
|
21922
|
-
function IconChevronUp_SvgComponent(props) {
|
|
21923
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21924
|
-
viewBox: "0 0 24 24",
|
|
21925
|
-
fill: "none",
|
|
21926
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21927
|
-
width: "1em",
|
|
21928
|
-
height: "1em",
|
|
21929
|
-
focusable: false,
|
|
21930
|
-
"aria-hidden": true
|
|
21931
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21932
|
-
fillRule: "evenodd",
|
|
21933
|
-
clipRule: "evenodd",
|
|
21934
|
-
d: "M19.637 16.4369C19.0513 17.0227 18.1015 17.0227 17.5157 16.4369L11.8589 10.7801L6.20202 16.4369C5.61623 17.0227 4.66648 17.0227 4.0807 16.4369C3.49491 15.8511 3.49491 14.9014 4.0807 14.3156L10.7982 7.59809C11.384 7.01231 12.3337 7.01231 12.9195 7.59809L19.637 14.3156C20.2228 14.9014 20.2228 15.8511 19.637 16.4369Z",
|
|
21935
|
-
fill: "currentColor"
|
|
21936
|
-
}));
|
|
21937
|
-
}
|
|
21938
|
-
const IconChevronUp_IconComponent = convertIcon(IconChevronUp_SvgComponent, 'chevron_up');
|
|
21939
|
-
/* harmony default export */ const IconChevronUp = (IconChevronUp_IconComponent);
|
|
21940
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClear.js
|
|
21941
|
-
|
|
21942
|
-
|
|
21943
|
-
function IconClear_SvgComponent(props) {
|
|
21944
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21945
|
-
viewBox: "0 0 24 24",
|
|
21946
|
-
fill: "none",
|
|
21947
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21948
|
-
width: "1em",
|
|
21949
|
-
height: "1em",
|
|
21950
|
-
focusable: false,
|
|
21951
|
-
"aria-hidden": true
|
|
21952
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21953
|
-
fillRule: "evenodd",
|
|
21954
|
-
clipRule: "evenodd",
|
|
21955
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.0352 16.8626C16.4597 17.4585 15.5101 17.4751 14.9142 16.8996L12.0368 14.121L9.25822 16.9984C8.68274 17.5943 7.73314 17.6109 7.13722 17.0354C6.5413 16.4599 6.52472 15.5103 7.1002 14.9144L9.87883 12.037L7.00147 9.2584C6.40555 8.68293 6.38897 7.73332 6.96445 7.1374C7.53992 6.54148 8.48953 6.52491 9.08545 7.10038L11.9628 9.87901L14.7414 7.00165C15.3169 6.40573 16.2665 6.38916 16.8624 6.96463C17.4584 7.54011 17.4749 8.48971 16.8995 9.08563L14.1208 11.963L16.9982 14.7416C17.5941 15.3171 17.6107 16.2667 17.0352 16.8626Z",
|
|
21956
|
-
fill: "currentColor"
|
|
21957
|
-
}));
|
|
21958
|
-
}
|
|
21959
|
-
const IconClear_IconComponent = convertIcon(IconClear_SvgComponent, 'clear');
|
|
21960
|
-
/* harmony default export */ const IconClear = (IconClear_IconComponent);
|
|
21961
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClock.js
|
|
21962
|
-
|
|
21963
|
-
|
|
21964
|
-
function IconClock_SvgComponent(props) {
|
|
21965
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21966
|
-
viewBox: "0 0 24 24",
|
|
21967
|
-
fill: "none",
|
|
21968
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21969
|
-
width: "1em",
|
|
21970
|
-
height: "1em",
|
|
21971
|
-
focusable: false,
|
|
21972
|
-
"aria-hidden": true
|
|
21973
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21974
|
-
fillRule: "evenodd",
|
|
21975
|
-
clipRule: "evenodd",
|
|
21976
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM13.5 6.5V11.3787L17.0607 14.9393C17.6464 15.5251 17.6464 16.4749 17.0607 17.0607C16.4749 17.6464 15.5251 17.6464 14.9393 17.0607L10.9393 13.0607C10.658 12.7794 10.5 12.3978 10.5 12V6.5C10.5 5.67157 11.1716 5 12 5C12.8284 5 13.5 5.67157 13.5 6.5Z",
|
|
21977
|
-
fill: "currentColor"
|
|
21978
|
-
}));
|
|
21979
|
-
}
|
|
21980
|
-
const IconClock_IconComponent = convertIcon(IconClock_SvgComponent, 'clock');
|
|
21981
|
-
/* harmony default export */ const IconClock = (IconClock_IconComponent);
|
|
21982
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClose.js
|
|
21983
|
-
|
|
21984
|
-
|
|
21985
|
-
function IconClose_SvgComponent(props) {
|
|
21986
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21987
|
-
viewBox: "0 0 24 24",
|
|
21988
|
-
fill: "none",
|
|
21989
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21990
|
-
width: "1em",
|
|
21991
|
-
height: "1em",
|
|
21992
|
-
focusable: false,
|
|
21993
|
-
"aria-hidden": true
|
|
21994
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21995
|
-
d: "M17.6568 19.7782C18.2426 20.3639 19.1924 20.3639 19.7782 19.7782C20.3639 19.1924 20.3639 18.2426 19.7782 17.6568L14.1213 12L19.7782 6.34313C20.3639 5.75734 20.3639 4.8076 19.7782 4.22181C19.1924 3.63602 18.2426 3.63602 17.6568 4.22181L12 9.87866L6.34313 4.22181C5.75734 3.63602 4.8076 3.63602 4.22181 4.22181C3.63602 4.8076 3.63602 5.75734 4.22181 6.34313L9.87866 12L4.22181 17.6568C3.63602 18.2426 3.63602 19.1924 4.22181 19.7782C4.8076 20.3639 5.75734 20.3639 6.34313 19.7782L12 14.1213L17.6568 19.7782Z",
|
|
21660
|
+
d: "M21.3516 4.2652C22.0336 4.73552 22.2052 5.66964 21.7348 6.35162L11.7348 20.8516C11.4765 21.2262 11.0622 21.4632 10.6084 21.4961C10.1546 21.529 9.71041 21.3541 9.40082 21.0207L2.90082 14.0207C2.33711 13.4136 2.37226 12.4645 2.97933 11.9008C3.5864 11.3371 4.53549 11.3723 5.0992 11.9793L10.3268 17.6091L19.2652 4.64842C19.7355 3.96644 20.6696 3.79487 21.3516 4.2652Z",
|
|
21996
21661
|
fill: "currentColor"
|
|
21997
21662
|
}));
|
|
21998
21663
|
}
|
|
21999
|
-
const
|
|
22000
|
-
/* harmony default export */ const
|
|
21664
|
+
const IconComponent = convertIcon(SvgComponent, 'tick');
|
|
21665
|
+
/* harmony default export */ const IconTick = (IconComponent);
|
|
22001
21666
|
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCopy.js
|
|
22002
21667
|
|
|
22003
21668
|
|
|
@@ -22020,1087 +21685,6 @@ function IconCopy_SvgComponent(props) {
|
|
|
22020
21685
|
}
|
|
22021
21686
|
const IconCopy_IconComponent = convertIcon(IconCopy_SvgComponent, 'copy');
|
|
22022
21687
|
/* harmony default export */ const IconCopy = (IconCopy_IconComponent);
|
|
22023
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronLeft.js
|
|
22024
|
-
|
|
22025
|
-
|
|
22026
|
-
function IconDoubleChevronLeft_SvgComponent(props) {
|
|
22027
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22028
|
-
viewBox: "0 0 24 24",
|
|
22029
|
-
fill: "none",
|
|
22030
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22031
|
-
width: "1em",
|
|
22032
|
-
height: "1em",
|
|
22033
|
-
focusable: false,
|
|
22034
|
-
"aria-hidden": true
|
|
22035
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22036
|
-
fillRule: "evenodd",
|
|
22037
|
-
clipRule: "evenodd",
|
|
22038
|
-
d: "M12.6185 4.39653C13.1272 4.92524 13.1272 5.78245 12.6185 6.31116L7.14483 12L12.6185 17.6888C13.1272 18.2176 13.1272 19.0748 12.6185 19.6035C12.1098 20.1322 11.285 20.1322 10.7763 19.6035L4.38153 12.9573C3.87282 12.4286 3.87282 11.5714 4.38153 11.0427L10.7763 4.39653C11.285 3.86782 12.1098 3.86782 12.6185 4.39653Z",
|
|
22039
|
-
fill: "currentColor"
|
|
22040
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22041
|
-
fillRule: "evenodd",
|
|
22042
|
-
clipRule: "evenodd",
|
|
22043
|
-
d: "M19.6185 4.39653C20.1272 4.92524 20.1272 5.78245 19.6185 6.31116L14.1448 12L19.6185 17.6888C20.1272 18.2176 20.1272 19.0748 19.6185 19.6035C19.1098 20.1322 18.285 20.1322 17.7763 19.6035L11.3815 12.9573C10.8728 12.4286 10.8728 11.5714 11.3815 11.0427L17.7763 4.39653C18.285 3.86782 19.1098 3.86782 19.6185 4.39653Z",
|
|
22044
|
-
fill: "currentColor"
|
|
22045
|
-
}));
|
|
22046
|
-
}
|
|
22047
|
-
const IconDoubleChevronLeft_IconComponent = convertIcon(IconDoubleChevronLeft_SvgComponent, 'double_chevron_left');
|
|
22048
|
-
/* harmony default export */ const IconDoubleChevronLeft = (IconDoubleChevronLeft_IconComponent);
|
|
22049
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronRight.js
|
|
22050
|
-
|
|
22051
|
-
|
|
22052
|
-
function IconDoubleChevronRight_SvgComponent(props) {
|
|
22053
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22054
|
-
viewBox: "0 0 24 24",
|
|
22055
|
-
fill: "none",
|
|
22056
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22057
|
-
width: "1em",
|
|
22058
|
-
height: "1em",
|
|
22059
|
-
focusable: false,
|
|
22060
|
-
"aria-hidden": true
|
|
22061
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22062
|
-
fillRule: "evenodd",
|
|
22063
|
-
clipRule: "evenodd",
|
|
22064
|
-
d: "M4.38153 4.39653C4.89024 3.86782 5.71502 3.86782 6.22373 4.39653L12.6185 11.0427C13.1272 11.5714 13.1272 12.4286 12.6185 12.9573L6.22373 19.6035C5.71502 20.1322 4.89024 20.1322 4.38153 19.6035C3.87282 19.0748 3.87282 18.2176 4.38153 17.6888L9.85517 12L4.38153 6.31116C3.87282 5.78245 3.87282 4.92524 4.38153 4.39653Z",
|
|
22065
|
-
fill: "currentColor"
|
|
22066
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22067
|
-
fillRule: "evenodd",
|
|
22068
|
-
clipRule: "evenodd",
|
|
22069
|
-
d: "M11.3815 4.39653C11.8902 3.86782 12.715 3.86782 13.2237 4.39653L19.6185 11.0427C20.1272 11.5714 20.1272 12.4286 19.6185 12.9573L13.2237 19.6035C12.715 20.1322 11.8902 20.1322 11.3815 19.6035C10.8728 19.0748 10.8728 18.2176 11.3815 17.6888L16.8552 12L11.3815 6.31116C10.8728 5.78245 10.8728 4.92524 11.3815 4.39653Z",
|
|
22070
|
-
fill: "currentColor"
|
|
22071
|
-
}));
|
|
22072
|
-
}
|
|
22073
|
-
const IconDoubleChevronRight_IconComponent = convertIcon(IconDoubleChevronRight_SvgComponent, 'double_chevron_right');
|
|
22074
|
-
/* harmony default export */ const IconDoubleChevronRight = (IconDoubleChevronRight_IconComponent);
|
|
22075
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDownload.js
|
|
22076
|
-
|
|
22077
|
-
|
|
22078
|
-
function IconDownload_SvgComponent(props) {
|
|
22079
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22080
|
-
viewBox: "0 0 24 24",
|
|
22081
|
-
fill: "none",
|
|
22082
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22083
|
-
width: "1em",
|
|
22084
|
-
height: "1em",
|
|
22085
|
-
focusable: false,
|
|
22086
|
-
"aria-hidden": true
|
|
22087
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22088
|
-
fillRule: "evenodd",
|
|
22089
|
-
clipRule: "evenodd",
|
|
22090
|
-
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM11.6799 17.7333C11.8653 17.8878 12.1347 17.8878 12.3201 17.7333L17.4695 13.4421C17.6492 13.2924 17.5433 13 17.3095 13H14V9.5C14 9.22386 13.7761 9 13.5 9H10.5C10.2239 9 10 9.22386 10 9.5V13H6.69051C6.45669 13 6.35084 13.2924 6.53047 13.4421L11.6799 17.7333Z",
|
|
22091
|
-
fill: "currentColor"
|
|
22092
|
-
}));
|
|
22093
|
-
}
|
|
22094
|
-
const IconDownload_IconComponent = convertIcon(IconDownload_SvgComponent, 'download');
|
|
22095
|
-
/* harmony default export */ const IconDownload = (IconDownload_IconComponent);
|
|
22096
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeClosedSolid.js
|
|
22097
|
-
|
|
22098
|
-
|
|
22099
|
-
function IconEyeClosedSolid_SvgComponent(props) {
|
|
22100
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22101
|
-
viewBox: "0 0 24 24",
|
|
22102
|
-
fill: "none",
|
|
22103
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22104
|
-
width: "1em",
|
|
22105
|
-
height: "1em",
|
|
22106
|
-
focusable: false,
|
|
22107
|
-
"aria-hidden": true
|
|
22108
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22109
|
-
fillRule: "evenodd",
|
|
22110
|
-
clipRule: "evenodd",
|
|
22111
|
-
d: "M21.7071 3.70711C22.0976 3.31658 22.0976 2.68342 21.7071 2.29289C21.3166 1.90237 20.6834 1.90237 20.2929 2.29289L17.3135 5.27233C15.8114 4.50566 14.0321 4 12 4C5 4 1 10 1 12C1 13.1757 2.38219 15.7335 4.94345 17.6423L2.29289 20.2929C1.90237 20.6834 1.90237 21.3166 2.29289 21.7071C2.68342 22.0976 3.31658 22.0976 3.70711 21.7071L21.7071 3.70711ZM7.8284 14.7574L9.29237 13.2934C9.10495 12.9018 9 12.4631 9 12C9 10.3431 10.3431 9 12 9C12.4631 9 12.9018 9.10495 13.2934 9.29237L14.7574 7.8284C13.967 7.30488 13.0191 7 12 7C9.23858 7 7 9.23858 7 12C7 13.0191 7.30488 13.967 7.8284 14.7574Z",
|
|
22112
|
-
fill: "currentColor"
|
|
22113
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22114
|
-
d: "M12 20C10.7789 20 9.64914 19.8174 8.61594 19.5054L11.1871 16.9342C11.4516 16.9775 11.7232 17 12 17C14.7614 17 17 14.7614 17 12C17 11.7232 16.9775 11.4516 16.9342 11.1871L20.5032 7.61808C22.1342 9.27317 23 11.0695 23 12C23 14 19 20 12 20Z",
|
|
22115
|
-
fill: "currentColor"
|
|
22116
|
-
}));
|
|
22117
|
-
}
|
|
22118
|
-
const IconEyeClosedSolid_IconComponent = convertIcon(IconEyeClosedSolid_SvgComponent, 'eye_closed_solid');
|
|
22119
|
-
/* harmony default export */ const IconEyeClosedSolid = (IconEyeClosedSolid_IconComponent);
|
|
22120
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeOpened.js
|
|
22121
|
-
|
|
22122
|
-
|
|
22123
|
-
function IconEyeOpened_SvgComponent(props) {
|
|
22124
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22125
|
-
viewBox: "0 0 24 24",
|
|
22126
|
-
fill: "none",
|
|
22127
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22128
|
-
width: "1em",
|
|
22129
|
-
height: "1em",
|
|
22130
|
-
focusable: false,
|
|
22131
|
-
"aria-hidden": true
|
|
22132
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22133
|
-
fillRule: "evenodd",
|
|
22134
|
-
clipRule: "evenodd",
|
|
22135
|
-
d: "M12 4C5 4 1 10 1 12C1 14 5 20 12 20C19 20 23 14 23 12C23 10 19 4 12 4ZM17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
22136
|
-
fill: "currentColor"
|
|
22137
|
-
}));
|
|
22138
|
-
}
|
|
22139
|
-
const IconEyeOpened_IconComponent = convertIcon(IconEyeOpened_SvgComponent, 'eye_opened');
|
|
22140
|
-
/* harmony default export */ const IconEyeOpened = (IconEyeOpened_IconComponent);
|
|
22141
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFile.js
|
|
22142
|
-
|
|
22143
|
-
|
|
22144
|
-
function IconFile_SvgComponent(props) {
|
|
22145
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22146
|
-
viewBox: "0 0 24 24",
|
|
22147
|
-
fill: "none",
|
|
22148
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22149
|
-
width: "1em",
|
|
22150
|
-
height: "1em",
|
|
22151
|
-
focusable: false,
|
|
22152
|
-
"aria-hidden": true
|
|
22153
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22154
|
-
fillRule: "evenodd",
|
|
22155
|
-
clipRule: "evenodd",
|
|
22156
|
-
d: "M12 2C12 1.44772 11.5523 1 11 1H6C4.89543 1 4 1.89543 4 3V21C4 22.1046 4.89543 23 6 23H18C19.1046 23 20 22.1046 20 21V10C20 9.44772 19.5523 9 19 9H14C12.8954 9 12 8.10457 12 7V2ZM7 8C7 7.44772 7.44772 7 8 7H9C9.55228 7 10 7.44772 10 8C10 8.55228 9.55228 9 9 9H8C7.44772 9 7 8.55228 7 8ZM7 13C7 12.4477 7.44772 12 8 12H16C16.5523 12 17 12.4477 17 13C17 13.5523 16.5523 14 16 14H8C7.44772 14 7 13.5523 7 13ZM8 17C7.44772 17 7 17.4477 7 18C7 18.5523 7.44772 19 8 19H16C16.5523 19 17 18.5523 17 18C17 17.4477 16.5523 17 16 17H8ZM19.0686 7.49999H14.5C13.9477 7.49999 13.5 7.05228 13.5 6.49999V1.93136C13.5 1.21864 14.3617 0.861707 14.8657 1.36568L19.6343 6.13431C20.1383 6.63828 19.7814 7.49999 19.0686 7.49999Z",
|
|
22157
|
-
fill: "currentColor"
|
|
22158
|
-
}));
|
|
22159
|
-
}
|
|
22160
|
-
const IconFile_IconComponent = convertIcon(IconFile_SvgComponent, 'file');
|
|
22161
|
-
/* harmony default export */ const IconFile = (IconFile_IconComponent);
|
|
22162
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFilter.js
|
|
22163
|
-
|
|
22164
|
-
|
|
22165
|
-
function IconFilter_SvgComponent(props) {
|
|
22166
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22167
|
-
viewBox: "0 0 24 24",
|
|
22168
|
-
fill: "none",
|
|
22169
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22170
|
-
width: "1em",
|
|
22171
|
-
height: "1em",
|
|
22172
|
-
focusable: false,
|
|
22173
|
-
"aria-hidden": true
|
|
22174
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22175
|
-
fillRule: "evenodd",
|
|
22176
|
-
clipRule: "evenodd",
|
|
22177
|
-
d: "M1.0929 2.57912C1.25675 2.22596 1.61069 2 2.00001 2H22C22.3893 2 22.7433 2.22596 22.9071 2.57912C23.071 2.93229 23.015 3.34845 22.7636 3.64573L14.5654 12.8261V21C14.5654 21.3466 14.386 21.6684 14.0911 21.8507C13.7963 22.0329 13.4282 22.0494 13.1182 21.8944L10.0528 19.8944C9.71401 19.725 9.5 19.3788 9.5 19V12.8261L1.23644 3.64573C0.985045 3.34845 0.929036 2.93229 1.0929 2.57912Z",
|
|
22178
|
-
fill: "currentColor"
|
|
22179
|
-
}));
|
|
22180
|
-
}
|
|
22181
|
-
const IconFilter_IconComponent = convertIcon(IconFilter_SvgComponent, 'filter');
|
|
22182
|
-
/* harmony default export */ const IconFilter = (IconFilter_IconComponent);
|
|
22183
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolder.js
|
|
22184
|
-
|
|
22185
|
-
|
|
22186
|
-
function IconFolder_SvgComponent(props) {
|
|
22187
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22188
|
-
viewBox: "0 0 24 24",
|
|
22189
|
-
fill: "none",
|
|
22190
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22191
|
-
width: "1em",
|
|
22192
|
-
height: "1em",
|
|
22193
|
-
focusable: false,
|
|
22194
|
-
"aria-hidden": true
|
|
22195
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22196
|
-
d: "M5 2C3.34315 2 2 3.34315 2 5V8H22C22 6 21 4 19 4H12.5523C11.8711 4 11.2102 3.76816 10.6783 3.34261L9.54783 2.43826C9.1932 2.15456 8.75258 2 8.29844 2H5Z",
|
|
22197
|
-
fill: "currentColor"
|
|
22198
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22199
|
-
d: "M22 10H2V19C2 20.6569 3.34315 22 5 22H19C20.6569 22 22 20.6569 22 19V10Z",
|
|
22200
|
-
fill: "currentColor"
|
|
22201
|
-
}));
|
|
22202
|
-
}
|
|
22203
|
-
const IconFolder_IconComponent = convertIcon(IconFolder_SvgComponent, 'folder');
|
|
22204
|
-
/* harmony default export */ const IconFolder = (IconFolder_IconComponent);
|
|
22205
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolderOpen.js
|
|
22206
|
-
|
|
22207
|
-
|
|
22208
|
-
function IconFolderOpen_SvgComponent(props) {
|
|
22209
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22210
|
-
viewBox: "0 0 24 24",
|
|
22211
|
-
fill: "none",
|
|
22212
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22213
|
-
width: "1em",
|
|
22214
|
-
height: "1em",
|
|
22215
|
-
focusable: false,
|
|
22216
|
-
"aria-hidden": true
|
|
22217
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22218
|
-
fillRule: "evenodd",
|
|
22219
|
-
clipRule: "evenodd",
|
|
22220
|
-
d: "M2 5C2 3.34315 3.34315 2 5 2H8.29844C8.75258 2 9.1932 2.15456 9.54783 2.43826L10.6783 3.34261C11.2102 3.76816 11.8711 4 12.5523 4H18C20 4 21 6 21 8H7.53361C6.62889 8 5.83683 8.60735 5.6021 9.48109L2.57151 20.7617C2.21202 20.2671 2 19.6583 2 19V5ZM22.1667 10H9.5C8.61111 10 7.82889 10.5867 7.58 11.44L4.87333 20.72C4.68667 21.36 5.16667 22 5.83333 22H18.5C19.3889 22 20.1711 21.4133 20.42 20.56L23.1267 11.28C23.3133 10.64 22.8333 10 22.1667 10Z",
|
|
22221
|
-
fill: "currentColor"
|
|
22222
|
-
}));
|
|
22223
|
-
}
|
|
22224
|
-
const IconFolderOpen_IconComponent = convertIcon(IconFolderOpen_SvgComponent, 'folder_open');
|
|
22225
|
-
/* harmony default export */ const IconFolderOpen = (IconFolderOpen_IconComponent);
|
|
22226
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHandle.js
|
|
22227
|
-
|
|
22228
|
-
|
|
22229
|
-
function IconHandle_SvgComponent(props) {
|
|
22230
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22231
|
-
viewBox: "0 0 24 24",
|
|
22232
|
-
fill: "none",
|
|
22233
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22234
|
-
width: "1em",
|
|
22235
|
-
height: "1em",
|
|
22236
|
-
focusable: false,
|
|
22237
|
-
"aria-hidden": true
|
|
22238
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22239
|
-
d: "M9 7C10.1046 7 11 6.10457 11 5C11 3.89543 10.1046 3 9 3C7.89543 3 7 3.89543 7 5C7 6.10457 7.89543 7 9 7Z",
|
|
22240
|
-
fill: "currentColor"
|
|
22241
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22242
|
-
d: "M9 14C10.1046 14 11 13.1046 11 12C11 10.8954 10.1046 10 9 10C7.89543 10 7 10.8954 7 12C7 13.1046 7.89543 14 9 14Z",
|
|
22243
|
-
fill: "currentColor"
|
|
22244
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22245
|
-
d: "M11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 17.8954 7.89543 17 9 17C10.1046 17 11 17.8954 11 19Z",
|
|
22246
|
-
fill: "currentColor"
|
|
22247
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22248
|
-
d: "M15 7C16.1046 7 17 6.10457 17 5C17 3.89543 16.1046 3 15 3C13.8954 3 13 3.89543 13 5C13 6.10457 13.8954 7 15 7Z",
|
|
22249
|
-
fill: "currentColor"
|
|
22250
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22251
|
-
d: "M17 12C17 13.1046 16.1046 14 15 14C13.8954 14 13 13.1046 13 12C13 10.8954 13.8954 10 15 10C16.1046 10 17 10.8954 17 12Z",
|
|
22252
|
-
fill: "currentColor"
|
|
22253
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22254
|
-
d: "M15 21C16.1046 21 17 20.1046 17 19C17 17.8954 16.1046 17 15 17C13.8954 17 13 17.8954 13 19C13 20.1046 13.8954 21 15 21Z",
|
|
22255
|
-
fill: "currentColor"
|
|
22256
|
-
}));
|
|
22257
|
-
}
|
|
22258
|
-
const IconHandle_IconComponent = convertIcon(IconHandle_SvgComponent, 'handle');
|
|
22259
|
-
/* harmony default export */ const IconHandle = (IconHandle_IconComponent);
|
|
22260
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHelpCircle.js
|
|
22261
|
-
|
|
22262
|
-
|
|
22263
|
-
function IconHelpCircle_SvgComponent(props) {
|
|
22264
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22265
|
-
viewBox: "0 0 24 24",
|
|
22266
|
-
fill: "none",
|
|
22267
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22268
|
-
width: "1em",
|
|
22269
|
-
height: "1em",
|
|
22270
|
-
focusable: false,
|
|
22271
|
-
"aria-hidden": true
|
|
22272
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22273
|
-
fillRule: "evenodd",
|
|
22274
|
-
clipRule: "evenodd",
|
|
22275
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM11.8281 14.6094C10.9688 14.6094 10.5391 14.0723 10.5391 13.3691C10.5391 12.3242 11.0566 11.6504 12.2676 10.7324C12.2894 10.7158 12.3111 10.6993 12.3326 10.6829C13.1573 10.0555 13.7324 9.61807 13.7324 8.82812C13.7324 7.93945 12.9023 7.42188 11.9746 7.42188C11.2129 7.42188 10.627 7.70508 10.168 8.30078C9.83594 8.64258 9.57227 8.82812 9.12305 8.82812C8.38086 8.82812 8 8.31055 8 7.71484C8 7.10938 8.3418 6.49414 8.87891 6.02539C9.60156 5.40039 10.7539 5 12.2773 5C14.9922 5 16.8965 6.33789 16.8965 8.64258C16.8965 10.3223 15.8906 11.1328 14.709 11.9531C13.9082 12.5391 13.5273 12.8809 13.2246 13.5742L13.2238 13.5756C12.8922 14.1609 12.638 14.6094 11.8281 14.6094ZM11.8086 18.7695C10.8711 18.7695 10.0996 18.1641 10.0996 17.2266C10.0996 16.2891 10.8711 15.6836 11.8086 15.6836C12.7461 15.6836 13.5078 16.2891 13.5078 17.2266C13.5078 18.1641 12.7461 18.7695 11.8086 18.7695Z",
|
|
22276
|
-
fill: "currentColor"
|
|
22277
|
-
}));
|
|
22278
|
-
}
|
|
22279
|
-
const IconHelpCircle_IconComponent = convertIcon(IconHelpCircle_SvgComponent, 'help_circle');
|
|
22280
|
-
/* harmony default export */ const IconHelpCircle = (IconHelpCircle_IconComponent);
|
|
22281
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconInfoCircle.js
|
|
22282
|
-
|
|
22283
|
-
|
|
22284
|
-
function IconInfoCircle_SvgComponent(props) {
|
|
22285
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22286
|
-
viewBox: "0 0 24 24",
|
|
22287
|
-
fill: "none",
|
|
22288
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22289
|
-
width: "1em",
|
|
22290
|
-
height: "1em",
|
|
22291
|
-
focusable: false,
|
|
22292
|
-
"aria-hidden": true
|
|
22293
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22294
|
-
fillRule: "evenodd",
|
|
22295
|
-
clipRule: "evenodd",
|
|
22296
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM14 7C14 8.10457 13.1046 9 12 9C10.8954 9 10 8.10457 10 7C10 5.89543 10.8954 5 12 5C13.1046 5 14 5.89543 14 7ZM9 10.75C9 10.3358 9.33579 10 9.75 10H12.5C13.0523 10 13.5 10.4477 13.5 11V16.5H14.25C14.6642 16.5 15 16.8358 15 17.25C15 17.6642 14.6642 18 14.25 18H9.75C9.33579 18 9 17.6642 9 17.25C9 16.8358 9.33579 16.5 9.75 16.5H10.5V11.5H9.75C9.33579 11.5 9 11.1642 9 10.75Z",
|
|
22297
|
-
fill: "currentColor"
|
|
22298
|
-
}));
|
|
22299
|
-
}
|
|
22300
|
-
const IconInfoCircle_IconComponent = convertIcon(IconInfoCircle_SvgComponent, 'info_circle');
|
|
22301
|
-
/* harmony default export */ const IconInfoCircle = (IconInfoCircle_IconComponent);
|
|
22302
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMinus.js
|
|
22303
|
-
|
|
22304
|
-
|
|
22305
|
-
function IconMinus_SvgComponent(props) {
|
|
22306
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22307
|
-
viewBox: "0 0 24 24",
|
|
22308
|
-
fill: "none",
|
|
22309
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22310
|
-
width: "1em",
|
|
22311
|
-
height: "1em",
|
|
22312
|
-
focusable: false,
|
|
22313
|
-
"aria-hidden": true
|
|
22314
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22315
|
-
d: "M2 12C2 11.1716 2.67157 10.5 3.5 10.5H20.5C21.3284 10.5 22 11.1716 22 12C22 12.8284 21.3284 13.5 20.5 13.5H3.5C2.67157 13.5 2 12.8284 2 12Z",
|
|
22316
|
-
fill: "currentColor"
|
|
22317
|
-
}));
|
|
22318
|
-
}
|
|
22319
|
-
const IconMinus_IconComponent = convertIcon(IconMinus_SvgComponent, 'minus');
|
|
22320
|
-
/* harmony default export */ const IconMinus = (IconMinus_IconComponent);
|
|
22321
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMore.js
|
|
22322
|
-
|
|
22323
|
-
|
|
22324
|
-
function IconMore_SvgComponent(props) {
|
|
22325
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22326
|
-
viewBox: "0 0 24 24",
|
|
22327
|
-
fill: "none",
|
|
22328
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22329
|
-
width: "1em",
|
|
22330
|
-
height: "1em",
|
|
22331
|
-
focusable: false,
|
|
22332
|
-
"aria-hidden": true
|
|
22333
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22334
|
-
d: "M7 12C7 13.3807 5.88071 14.5 4.5 14.5C3.11929 14.5 2 13.3807 2 12C2 10.6193 3.11929 9.5 4.5 9.5C5.88071 9.5 7 10.6193 7 12Z",
|
|
22335
|
-
fill: "currentColor"
|
|
22336
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22337
|
-
d: "M14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12Z",
|
|
22338
|
-
fill: "currentColor"
|
|
22339
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22340
|
-
d: "M19.5 14.5C20.8807 14.5 22 13.3807 22 12C22 10.6193 20.8807 9.5 19.5 9.5C18.1193 9.5 17 10.6193 17 12C17 13.3807 18.1193 14.5 19.5 14.5Z",
|
|
22341
|
-
fill: "currentColor"
|
|
22342
|
-
}));
|
|
22343
|
-
}
|
|
22344
|
-
const IconMore_IconComponent = convertIcon(IconMore_SvgComponent, 'more');
|
|
22345
|
-
/* harmony default export */ const IconMore = (IconMore_IconComponent);
|
|
22346
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconPlus.js
|
|
22347
|
-
|
|
22348
|
-
|
|
22349
|
-
function IconPlus_SvgComponent(props) {
|
|
22350
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22351
|
-
viewBox: "0 0 24 24",
|
|
22352
|
-
fill: "none",
|
|
22353
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22354
|
-
width: "1em",
|
|
22355
|
-
height: "1em",
|
|
22356
|
-
focusable: false,
|
|
22357
|
-
"aria-hidden": true
|
|
22358
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22359
|
-
d: "M20.5 13.5C21.3284 13.5 22 12.8284 22 12C22 11.1716 21.3284 10.5 20.5 10.5L13.5 10.5L13.5 3.5C13.5 2.67157 12.8284 2 12 2C11.1716 2 10.5 2.67157 10.5 3.5L10.5 10.5L3.5 10.5C2.67157 10.5 2 11.1716 2 12C2 12.8284 2.67157 13.5 3.5 13.5L10.5 13.5V20.5C10.5 21.3284 11.1716 22 12 22C12.8284 22 13.5 21.3284 13.5 20.5V13.5L20.5 13.5Z",
|
|
22360
|
-
fill: "currentColor"
|
|
22361
|
-
}));
|
|
22362
|
-
}
|
|
22363
|
-
const IconPlus_IconComponent = convertIcon(IconPlus_SvgComponent, 'plus');
|
|
22364
|
-
/* harmony default export */ const IconPlus = (IconPlus_IconComponent);
|
|
22365
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRadio.js
|
|
22366
|
-
|
|
22367
|
-
|
|
22368
|
-
function IconRadio_SvgComponent(props) {
|
|
22369
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22370
|
-
viewBox: "0 0 24 24",
|
|
22371
|
-
fill: "none",
|
|
22372
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22373
|
-
width: "1em",
|
|
22374
|
-
height: "1em",
|
|
22375
|
-
focusable: false,
|
|
22376
|
-
"aria-hidden": true
|
|
22377
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("circle", {
|
|
22378
|
-
cx: 12,
|
|
22379
|
-
cy: 12,
|
|
22380
|
-
r: 5,
|
|
22381
|
-
fill: "currentColor"
|
|
22382
|
-
}));
|
|
22383
|
-
}
|
|
22384
|
-
const IconRadio_IconComponent = convertIcon(IconRadio_SvgComponent, 'radio');
|
|
22385
|
-
/* harmony default export */ const IconRadio = (IconRadio_IconComponent);
|
|
22386
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRealSizeStroked.js
|
|
22387
|
-
|
|
22388
|
-
|
|
22389
|
-
function IconRealSizeStroked_SvgComponent(props) {
|
|
22390
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22391
|
-
viewBox: "0 0 24 24",
|
|
22392
|
-
fill: "none",
|
|
22393
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22394
|
-
width: "1em",
|
|
22395
|
-
height: "1em",
|
|
22396
|
-
focusable: false,
|
|
22397
|
-
"aria-hidden": true
|
|
22398
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22399
|
-
fillRule: "evenodd",
|
|
22400
|
-
clipRule: "evenodd",
|
|
22401
|
-
d: "M1 6C1 4.89543 1.89543 4 3 4H21C22.1046 4 23 4.89543 23 6V18C23 19.1046 22.1046 20 21 20H3C1.89543 20 1 19.1046 1 18V6ZM21 6L3 6V18H21V6ZM5 9C5 8.44772 5.44772 8 6 8H7.5C8.05228 8 8.5 8.44772 8.5 9V15C8.5 15.5523 8.05228 16 7.5 16C6.94772 16 6.5 15.5523 6.5 15V10H6C5.44772 10 5 9.55228 5 9ZM16 8C15.4477 8 15 8.44772 15 9C15 9.55228 15.4477 10 16 10H16.5V15C16.5 15.5523 16.9477 16 17.5 16C18.0523 16 18.5 15.5523 18.5 15V9C18.5 8.44772 18.0523 8 17.5 8H16ZM13 10C13 10.5523 12.5523 11 12 11C11.4477 11 11 10.5523 11 10C11 9.44772 11.4477 9 12 9C12.5523 9 13 9.44772 13 10ZM12 15C12.5523 15 13 14.5523 13 14C13 13.4477 12.5523 13 12 13C11.4477 13 11 13.4477 11 14C11 14.5523 11.4477 15 12 15Z",
|
|
22402
|
-
fill: "currentColor"
|
|
22403
|
-
}));
|
|
22404
|
-
}
|
|
22405
|
-
const IconRealSizeStroked_IconComponent = convertIcon(IconRealSizeStroked_SvgComponent, 'real_size_stroked');
|
|
22406
|
-
/* harmony default export */ const IconRealSizeStroked = (IconRealSizeStroked_IconComponent);
|
|
22407
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRefresh.js
|
|
22408
|
-
|
|
22409
|
-
|
|
22410
|
-
function IconRefresh_SvgComponent(props) {
|
|
22411
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22412
|
-
viewBox: "0 0 24 24",
|
|
22413
|
-
fill: "none",
|
|
22414
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22415
|
-
width: "1em",
|
|
22416
|
-
height: "1em",
|
|
22417
|
-
focusable: false,
|
|
22418
|
-
"aria-hidden": true
|
|
22419
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22420
|
-
fillRule: "evenodd",
|
|
22421
|
-
clipRule: "evenodd",
|
|
22422
|
-
d: "M4.49993 11.9998C4.49993 7.85775 7.85775 4.49993 11.9998 4.49993C14.6403 4.49993 16.9645 5.86506 18.3012 7.9305L16.2939 7.52902C15.4815 7.36656 14.6913 7.89337 14.5288 8.7057C14.3664 9.51803 14.8932 10.3083 15.7055 10.4707L20.7055 11.4707C21.4643 11.6225 22.214 11.1721 22.4363 10.4309L23.9363 5.43095C24.1744 4.63747 23.7241 3.80126 22.9307 3.56321C22.1372 3.32517 21.301 3.77543 21.0629 4.56891L20.6287 6.01635C18.7332 3.28781 15.5765 1.49998 11.9998 1.49998C6.20092 1.49998 1.49998 6.20092 1.49998 11.9998C1.49998 17.7987 6.20092 22.4997 11.9998 22.4997C16.5739 22.4997 20.4611 19.5757 21.9018 15.4996C22.1779 14.7186 21.7685 13.8616 20.9874 13.5855C20.2064 13.3095 19.3494 13.7189 19.0733 14.4999C18.0431 17.4149 15.263 19.4997 11.9998 19.4997C7.85775 19.4997 4.49993 16.1419 4.49993 11.9998Z",
|
|
22423
|
-
fill: "currentColor"
|
|
22424
|
-
}));
|
|
22425
|
-
}
|
|
22426
|
-
const IconRefresh_IconComponent = convertIcon(IconRefresh_SvgComponent, 'refresh');
|
|
22427
|
-
/* harmony default export */ const IconRefresh = (IconRefresh_IconComponent);
|
|
22428
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRotate.js
|
|
22429
|
-
|
|
22430
|
-
|
|
22431
|
-
function IconRotate_SvgComponent(props) {
|
|
22432
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22433
|
-
viewBox: "0 0 24 24",
|
|
22434
|
-
fill: "none",
|
|
22435
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22436
|
-
width: "1em",
|
|
22437
|
-
height: "1em",
|
|
22438
|
-
focusable: false,
|
|
22439
|
-
"aria-hidden": true
|
|
22440
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22441
|
-
d: "M14.2071 2.20711C14.5976 1.81658 14.5976 1.18342 14.2071 0.792893C13.8166 0.402369 13.1834 0.402369 12.7929 0.792893L10.2929 3.29289C9.90237 3.68342 9.90237 4.31658 10.2929 4.70711L12.7929 7.20711C13.1834 7.59763 13.8166 7.59763 14.2071 7.20711C14.5976 6.81658 14.5976 6.18342 14.2071 5.79289L13.4142 5H16C18.7614 5 21 7.23858 21 10V12C21 12.5523 21.4477 13 22 13C22.5523 13 23 12.5523 23 12V10C23 6.13401 19.866 3 16 3H13.4142L14.2071 2.20711Z",
|
|
22442
|
-
fill: "currentColor"
|
|
22443
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22444
|
-
d: "M3 10C3 8.89543 3.89543 8 5 8H17C18.1046 8 19 8.89543 19 10V20C19 21.1046 18.1046 22 17 22H5C3.89543 22 3 21.1046 3 20V10Z",
|
|
22445
|
-
fill: "currentColor"
|
|
22446
|
-
}));
|
|
22447
|
-
}
|
|
22448
|
-
const IconRotate_IconComponent = convertIcon(IconRotate_SvgComponent, 'rotate');
|
|
22449
|
-
/* harmony default export */ const IconRotate = (IconRotate_IconComponent);
|
|
22450
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSearch.js
|
|
22451
|
-
|
|
22452
|
-
|
|
22453
|
-
function IconSearch_SvgComponent(props) {
|
|
22454
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22455
|
-
viewBox: "0 0 24 24",
|
|
22456
|
-
fill: "none",
|
|
22457
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22458
|
-
width: "1em",
|
|
22459
|
-
height: "1em",
|
|
22460
|
-
focusable: false,
|
|
22461
|
-
"aria-hidden": true
|
|
22462
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22463
|
-
fillRule: "evenodd",
|
|
22464
|
-
clipRule: "evenodd",
|
|
22465
|
-
d: "M10.5 2C5.80558 2 2 5.80558 2 10.5C2 15.1944 5.80558 19 10.5 19C12.3054 19 13.9794 18.4371 15.356 17.4773L19.4393 21.5606C20.0251 22.1464 20.9749 22.1464 21.5606 21.5606C22.1464 20.9749 22.1464 20.0251 21.5606 19.4393L17.4773 15.356C18.4371 13.9794 19 12.3054 19 10.5C19 5.80558 15.1944 2 10.5 2ZM5 10.5C5 7.46243 7.46243 5 10.5 5C13.5376 5 16 7.46243 16 10.5C16 13.5376 13.5376 16 10.5 16C7.46243 16 5 13.5376 5 10.5Z",
|
|
22466
|
-
fill: "currentColor"
|
|
22467
|
-
}));
|
|
22468
|
-
}
|
|
22469
|
-
const IconSearch_IconComponent = convertIcon(IconSearch_SvgComponent, 'search');
|
|
22470
|
-
/* harmony default export */ const IconSearch = (IconSearch_IconComponent);
|
|
22471
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSidebar.js
|
|
22472
|
-
|
|
22473
|
-
|
|
22474
|
-
function IconSidebar_SvgComponent(props) {
|
|
22475
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22476
|
-
viewBox: "0 0 24 24",
|
|
22477
|
-
fill: "none",
|
|
22478
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22479
|
-
width: "1em",
|
|
22480
|
-
height: "1em",
|
|
22481
|
-
focusable: false,
|
|
22482
|
-
"aria-hidden": true
|
|
22483
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22484
|
-
fillRule: "evenodd",
|
|
22485
|
-
clipRule: "evenodd",
|
|
22486
|
-
d: "M5 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V5C2 3.34315 3.34315 2 5 2ZM6 4C5.44772 4 5 4.44772 5 5V19C5 19.5523 5.44772 20 6 20H9C9.55229 20 10 19.5523 10 19V5C10 4.44772 9.55229 4 9 4H6Z",
|
|
22487
|
-
fill: "currentColor"
|
|
22488
|
-
}));
|
|
22489
|
-
}
|
|
22490
|
-
const IconSidebar_IconComponent = convertIcon(IconSidebar_SvgComponent, 'sidebar');
|
|
22491
|
-
/* harmony default export */ const IconSidebar = (IconSidebar_IconComponent);
|
|
22492
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconStar.js
|
|
22493
|
-
|
|
22494
|
-
|
|
22495
|
-
function IconStar_SvgComponent(props) {
|
|
22496
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22497
|
-
viewBox: "0 0 24 24",
|
|
22498
|
-
fill: "none",
|
|
22499
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22500
|
-
width: "1em",
|
|
22501
|
-
height: "1em",
|
|
22502
|
-
focusable: false,
|
|
22503
|
-
"aria-hidden": true
|
|
22504
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22505
|
-
d: "M10.7525 1.90411C11.1451 0.698628 12.8549 0.698631 13.2475 1.90411L15.2395 8.01946H21.6858C22.9565 8.01946 23.4848 9.64143 22.4568 10.3865L17.2417 14.1659L19.2337 20.2813C19.6263 21.4868 18.2431 22.4892 17.2151 21.7442L12 17.9647L6.78489 21.7442C5.75687 22.4892 4.37368 21.4868 4.76635 20.2813L6.75834 14.1659L1.54323 10.3865C0.515206 9.64142 1.04354 8.01946 2.31425 8.01946H8.76048L10.7525 1.90411Z",
|
|
22506
|
-
fill: "currentColor"
|
|
22507
|
-
}));
|
|
22508
|
-
}
|
|
22509
|
-
const IconStar_IconComponent = convertIcon(IconStar_SvgComponent, 'star');
|
|
22510
|
-
/* harmony default export */ const IconStar = (IconStar_IconComponent);
|
|
22511
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTick.js
|
|
22512
|
-
|
|
22513
|
-
|
|
22514
|
-
function IconTick_SvgComponent(props) {
|
|
22515
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22516
|
-
viewBox: "0 0 24 24",
|
|
22517
|
-
fill: "none",
|
|
22518
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22519
|
-
width: "1em",
|
|
22520
|
-
height: "1em",
|
|
22521
|
-
focusable: false,
|
|
22522
|
-
"aria-hidden": true
|
|
22523
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22524
|
-
fillRule: "evenodd",
|
|
22525
|
-
clipRule: "evenodd",
|
|
22526
|
-
d: "M21.3516 4.2652C22.0336 4.73552 22.2052 5.66964 21.7348 6.35162L11.7348 20.8516C11.4765 21.2262 11.0622 21.4632 10.6084 21.4961C10.1546 21.529 9.71041 21.3541 9.40082 21.0207L2.90082 14.0207C2.33711 13.4136 2.37226 12.4645 2.97933 11.9008C3.5864 11.3371 4.53549 11.3723 5.0992 11.9793L10.3268 17.6091L19.2652 4.64842C19.7355 3.96644 20.6696 3.79487 21.3516 4.2652Z",
|
|
22527
|
-
fill: "currentColor"
|
|
22528
|
-
}));
|
|
22529
|
-
}
|
|
22530
|
-
const IconTick_IconComponent = convertIcon(IconTick_SvgComponent, 'tick');
|
|
22531
|
-
/* harmony default export */ const IconTick = (IconTick_IconComponent);
|
|
22532
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTickCircle.js
|
|
22533
|
-
|
|
22534
|
-
|
|
22535
|
-
function IconTickCircle_SvgComponent(props) {
|
|
22536
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22537
|
-
viewBox: "0 0 24 24",
|
|
22538
|
-
fill: "none",
|
|
22539
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22540
|
-
width: "1em",
|
|
22541
|
-
height: "1em",
|
|
22542
|
-
focusable: false,
|
|
22543
|
-
"aria-hidden": true
|
|
22544
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22545
|
-
fillRule: "evenodd",
|
|
22546
|
-
clipRule: "evenodd",
|
|
22547
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.8831 9.82235L11.6854 17.4112C11.4029 17.7806 10.965 17.9981 10.5 18C10.035 18.0019 9.59533 17.788 9.30982 17.421L5.81604 13.4209C5.30744 12.767 5.42524 11.8246 6.07916 11.316C6.73308 10.8074 7.67549 10.9252 8.1841 11.5791L10.4838 14.0439L15.5 8C16.0032 7.34193 16.9446 7.21641 17.6027 7.71964C18.2608 8.22287 18.3863 9.16428 17.8831 9.82235Z",
|
|
22548
|
-
fill: "currentColor"
|
|
22549
|
-
}));
|
|
22550
|
-
}
|
|
22551
|
-
const IconTickCircle_IconComponent = convertIcon(IconTickCircle_SvgComponent, 'tick_circle');
|
|
22552
|
-
/* harmony default export */ const IconTickCircle = (IconTickCircle_IconComponent);
|
|
22553
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleDown.js
|
|
22554
|
-
|
|
22555
|
-
|
|
22556
|
-
function IconTreeTriangleDown_SvgComponent(props) {
|
|
22557
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22558
|
-
viewBox: "0 0 24 24",
|
|
22559
|
-
fill: "none",
|
|
22560
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22561
|
-
width: "1em",
|
|
22562
|
-
height: "1em",
|
|
22563
|
-
focusable: false,
|
|
22564
|
-
"aria-hidden": true
|
|
22565
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22566
|
-
d: "M20.5598 9.65618L12.7546 18.6322C12.3559 19.0906 11.644 19.0906 11.2453 18.6322L3.4401 9.65618C2.8773 9.00895 3.33701 8 4.19471 8L19.8052 8C20.6629 8 21.1226 9.00895 20.5598 9.65618Z",
|
|
22567
|
-
fill: "currentColor"
|
|
22568
|
-
}));
|
|
22569
|
-
}
|
|
22570
|
-
const IconTreeTriangleDown_IconComponent = convertIcon(IconTreeTriangleDown_SvgComponent, 'tree_triangle_down');
|
|
22571
|
-
/* harmony default export */ const IconTreeTriangleDown = (IconTreeTriangleDown_IconComponent);
|
|
22572
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleRight.js
|
|
22573
|
-
|
|
22574
|
-
|
|
22575
|
-
function IconTreeTriangleRight_SvgComponent(props) {
|
|
22576
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22577
|
-
viewBox: "0 0 24 24",
|
|
22578
|
-
fill: "none",
|
|
22579
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22580
|
-
width: "1em",
|
|
22581
|
-
height: "1em",
|
|
22582
|
-
focusable: false,
|
|
22583
|
-
"aria-hidden": true
|
|
22584
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22585
|
-
d: "M9.65618 3.44015L18.6322 11.2454C19.0906 11.644 19.0906 12.356 18.6322 12.7546L9.65618 20.5598C9.00895 21.1226 8 20.6629 8 19.8052V4.19475C8 3.33705 9.00895 2.87734 9.65618 3.44015Z",
|
|
22586
|
-
fill: "currentColor"
|
|
22587
|
-
}));
|
|
22588
|
-
}
|
|
22589
|
-
const IconTreeTriangleRight_IconComponent = convertIcon(IconTreeTriangleRight_SvgComponent, 'tree_triangle_right');
|
|
22590
|
-
/* harmony default export */ const IconTreeTriangleRight = (IconTreeTriangleRight_IconComponent);
|
|
22591
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUpload.js
|
|
22592
|
-
|
|
22593
|
-
|
|
22594
|
-
function IconUpload_SvgComponent(props) {
|
|
22595
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22596
|
-
viewBox: "0 0 24 24",
|
|
22597
|
-
fill: "none",
|
|
22598
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22599
|
-
width: "1em",
|
|
22600
|
-
height: "1em",
|
|
22601
|
-
focusable: false,
|
|
22602
|
-
"aria-hidden": true
|
|
22603
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22604
|
-
fillRule: "evenodd",
|
|
22605
|
-
clipRule: "evenodd",
|
|
22606
|
-
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM12.3201 8.26674C12.1347 8.11222 11.8653 8.11222 11.6799 8.26674L6.53047 12.5579C6.35084 12.7076 6.45669 13 6.69051 13H10V17.5C10 17.7761 10.2239 18 10.5 18H13.5C13.7761 18 14 17.7761 14 17.5V13H17.3095C17.5433 13 17.6492 12.7076 17.4695 12.5579L12.3201 8.26674Z",
|
|
22607
|
-
fill: "currentColor"
|
|
22608
|
-
}));
|
|
22609
|
-
}
|
|
22610
|
-
const IconUpload_IconComponent = convertIcon(IconUpload_SvgComponent, 'upload');
|
|
22611
|
-
/* harmony default export */ const IconUpload = (IconUpload_IconComponent);
|
|
22612
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUploadError.js
|
|
22613
|
-
|
|
22614
|
-
|
|
22615
|
-
function IconUploadError_SvgComponent(props) {
|
|
22616
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22617
|
-
viewBox: "0 0 24 24",
|
|
22618
|
-
fill: "none",
|
|
22619
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22620
|
-
width: "1em",
|
|
22621
|
-
height: "1em",
|
|
22622
|
-
focusable: false,
|
|
22623
|
-
"aria-hidden": true
|
|
22624
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22625
|
-
fillRule: "evenodd",
|
|
22626
|
-
clipRule: "evenodd",
|
|
22627
|
-
d: "M22.9998 12.0001C22.9998 18.0753 18.0749 23.0001 11.9998 23.0001C5.92463 23.0001 0.999756 18.0753 0.999756 12.0001C0.999756 5.92499 5.92463 1.00012 11.9998 1.00012C18.0749 1.00012 22.9998 5.92499 22.9998 12.0001ZM13.4998 17.5C13.4998 16.6718 12.8282 16.0001 11.9998 16.0001C11.1713 16.0001 10.4998 16.6718 10.4998 17.5C10.4998 18.3285 11.1713 19 11.9998 19C12.8282 19 13.4998 18.3285 13.4998 17.5ZM11.9998 5.00011C10.9136 5.00011 10.0505 5.91257 10.1107 6.99704L10.4166 12.5024C10.4632 13.3427 11.1582 14.0001 11.9998 14.0001C12.8413 14.0001 13.5363 13.3427 13.583 12.5024L13.8888 6.99704C13.9491 5.91257 13.0859 5.00011 11.9998 5.00011Z",
|
|
22628
|
-
fill: "currentColor"
|
|
22629
|
-
}));
|
|
22630
|
-
}
|
|
22631
|
-
const IconUploadError_IconComponent = convertIcon(IconUploadError_SvgComponent, 'upload_error');
|
|
22632
|
-
/* harmony default export */ const IconUploadError = (IconUploadError_IconComponent);
|
|
22633
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconWindowAdaptionStroked.js
|
|
22634
|
-
|
|
22635
|
-
|
|
22636
|
-
function IconWindowAdaptionStroked_SvgComponent(props) {
|
|
22637
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22638
|
-
viewBox: "0 0 24 24",
|
|
22639
|
-
fill: "none",
|
|
22640
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22641
|
-
width: "1em",
|
|
22642
|
-
height: "1em",
|
|
22643
|
-
focusable: false,
|
|
22644
|
-
"aria-hidden": true
|
|
22645
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22646
|
-
fillRule: "evenodd",
|
|
22647
|
-
clipRule: "evenodd",
|
|
22648
|
-
d: "M14 3C14 2.44772 14.4477 2 15 2H21C21.5523 2 22 2.44772 22 3V9C22 9.55229 21.5523 10 21 10C20.4477 10 20 9.55229 20 9V4H15C14.4477 4 14 3.55229 14 3ZM10 21C10 21.5523 9.55229 22 9 22H3C2.44772 22 2 21.5523 2 21V15C2 14.4477 2.44772 14 3 14C3.55228 14 4 14.4477 4 15L4 20H9C9.55229 20 10 20.4477 10 21ZM2 9C2 9.55228 2.44772 10 3 10C3.55229 10 4 9.55228 4 9L4 4L9 4C9.55229 4 10 3.55228 10 3C10 2.44771 9.55229 2 9 2H3C2.44772 2 2 2.44772 2 3V9ZM21 14C21.5523 14 22 14.4477 22 15V21C22 21.5523 21.5523 22 21 22H15C14.4477 22 14 21.5523 14 21C14 20.4477 14.4477 20 15 20H20V15C20 14.4477 20.4477 14 21 14ZM8.5 7.5C7.94772 7.5 7.5 7.94772 7.5 8.5V15.5C7.5 16.0523 7.94772 16.5 8.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V8.5C16.5 7.94772 16.0523 7.5 15.5 7.5H8.5ZM9.5 14.5V9.5H14.5V14.5H9.5Z",
|
|
22649
|
-
fill: "currentColor"
|
|
22650
|
-
}));
|
|
22651
|
-
}
|
|
22652
|
-
const IconWindowAdaptionStroked_IconComponent = convertIcon(IconWindowAdaptionStroked_SvgComponent, 'window_adaption_stroked');
|
|
22653
|
-
/* harmony default export */ const IconWindowAdaptionStroked = (IconWindowAdaptionStroked_IconComponent);
|
|
22654
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/index.js
|
|
22655
|
-
|
|
22656
|
-
|
|
22657
|
-
|
|
22658
|
-
|
|
22659
|
-
|
|
22660
|
-
|
|
22661
|
-
|
|
22662
|
-
|
|
22663
|
-
|
|
22664
|
-
|
|
22665
|
-
|
|
22666
|
-
|
|
22667
|
-
|
|
22668
|
-
|
|
22669
|
-
|
|
22670
|
-
|
|
22671
|
-
|
|
22672
|
-
|
|
22673
|
-
|
|
22674
|
-
|
|
22675
|
-
|
|
22676
|
-
|
|
22677
|
-
|
|
22678
|
-
|
|
22679
|
-
|
|
22680
|
-
|
|
22681
|
-
|
|
22682
|
-
|
|
22683
|
-
|
|
22684
|
-
|
|
22685
|
-
|
|
22686
|
-
|
|
22687
|
-
|
|
22688
|
-
|
|
22689
|
-
|
|
22690
|
-
|
|
22691
|
-
|
|
22692
|
-
|
|
22693
|
-
|
|
22694
|
-
|
|
22695
|
-
|
|
22696
|
-
|
|
22697
|
-
|
|
22698
|
-
|
|
22699
|
-
|
|
22700
|
-
|
|
22701
|
-
|
|
22702
|
-
|
|
22703
|
-
|
|
22704
|
-
|
|
22705
|
-
|
|
22706
|
-
|
|
22707
|
-
|
|
22708
|
-
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
|
|
22712
|
-
|
|
22713
|
-
|
|
22714
|
-
|
|
22715
|
-
|
|
22716
|
-
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
22735
|
-
|
|
22736
|
-
|
|
22737
|
-
|
|
22738
|
-
|
|
22739
|
-
|
|
22740
|
-
|
|
22741
|
-
|
|
22742
|
-
|
|
22743
|
-
|
|
22744
|
-
|
|
22745
|
-
|
|
22746
|
-
|
|
22747
|
-
|
|
22748
|
-
|
|
22749
|
-
|
|
22750
|
-
|
|
22751
|
-
|
|
22752
|
-
|
|
22753
|
-
|
|
22754
|
-
|
|
22755
|
-
|
|
22756
|
-
|
|
22757
|
-
|
|
22758
|
-
|
|
22759
|
-
|
|
22760
|
-
|
|
22761
|
-
|
|
22762
|
-
|
|
22763
|
-
|
|
22764
|
-
|
|
22765
|
-
|
|
22766
|
-
|
|
22767
|
-
|
|
22768
|
-
|
|
22769
|
-
|
|
22770
|
-
|
|
22771
|
-
|
|
22772
|
-
|
|
22773
|
-
|
|
22774
|
-
|
|
22775
|
-
|
|
22776
|
-
|
|
22777
|
-
|
|
22778
|
-
|
|
22779
|
-
|
|
22780
|
-
|
|
22781
|
-
|
|
22782
|
-
|
|
22783
|
-
|
|
22784
|
-
|
|
22785
|
-
|
|
22786
|
-
|
|
22787
|
-
|
|
22788
|
-
|
|
22789
|
-
|
|
22790
|
-
|
|
22791
|
-
|
|
22792
|
-
|
|
22793
|
-
|
|
22794
|
-
|
|
22795
|
-
|
|
22796
|
-
|
|
22797
|
-
|
|
22798
|
-
|
|
22799
|
-
|
|
22800
|
-
|
|
22801
|
-
|
|
22802
|
-
|
|
22803
|
-
|
|
22804
|
-
|
|
22805
|
-
|
|
22806
|
-
|
|
22807
|
-
|
|
22808
|
-
|
|
22809
|
-
|
|
22810
|
-
|
|
22811
|
-
|
|
22812
|
-
|
|
22813
|
-
|
|
22814
|
-
|
|
22815
|
-
|
|
22816
|
-
|
|
22817
|
-
|
|
22818
|
-
|
|
22819
|
-
|
|
22820
|
-
|
|
22821
|
-
|
|
22822
|
-
|
|
22823
|
-
|
|
22824
|
-
|
|
22825
|
-
|
|
22826
|
-
|
|
22827
|
-
|
|
22828
|
-
|
|
22829
|
-
|
|
22830
|
-
|
|
22831
|
-
|
|
22832
|
-
|
|
22833
|
-
|
|
22834
|
-
|
|
22835
|
-
|
|
22836
|
-
|
|
22837
|
-
|
|
22838
|
-
|
|
22839
|
-
|
|
22840
|
-
|
|
22841
|
-
|
|
22842
|
-
|
|
22843
|
-
|
|
22844
|
-
|
|
22845
|
-
|
|
22846
|
-
|
|
22847
|
-
|
|
22848
|
-
|
|
22849
|
-
|
|
22850
|
-
|
|
22851
|
-
|
|
22852
|
-
|
|
22853
|
-
|
|
22854
|
-
|
|
22855
|
-
|
|
22856
|
-
|
|
22857
|
-
|
|
22858
|
-
|
|
22859
|
-
|
|
22860
|
-
|
|
22861
|
-
|
|
22862
|
-
|
|
22863
|
-
|
|
22864
|
-
|
|
22865
|
-
|
|
22866
|
-
|
|
22867
|
-
|
|
22868
|
-
|
|
22869
|
-
|
|
22870
|
-
|
|
22871
|
-
|
|
22872
|
-
|
|
22873
|
-
|
|
22874
|
-
|
|
22875
|
-
|
|
22876
|
-
|
|
22877
|
-
|
|
22878
|
-
|
|
22879
|
-
|
|
22880
|
-
|
|
22881
|
-
|
|
22882
|
-
|
|
22883
|
-
|
|
22884
|
-
|
|
22885
|
-
|
|
22886
|
-
|
|
22887
|
-
|
|
22888
|
-
|
|
22889
|
-
|
|
22890
|
-
|
|
22891
|
-
|
|
22892
|
-
|
|
22893
|
-
|
|
22894
|
-
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
|
|
22899
|
-
|
|
22900
|
-
|
|
22901
|
-
|
|
22902
|
-
|
|
22903
|
-
|
|
22904
|
-
|
|
22905
|
-
|
|
22906
|
-
|
|
22907
|
-
|
|
22908
|
-
|
|
22909
|
-
|
|
22910
|
-
|
|
22911
|
-
|
|
22912
|
-
|
|
22913
|
-
|
|
22914
|
-
|
|
22915
|
-
|
|
22916
|
-
|
|
22917
|
-
|
|
22918
|
-
|
|
22919
|
-
|
|
22920
|
-
|
|
22921
|
-
|
|
22922
|
-
|
|
22923
|
-
|
|
22924
|
-
|
|
22925
|
-
|
|
22926
|
-
|
|
22927
|
-
|
|
22928
|
-
|
|
22929
|
-
|
|
22930
|
-
|
|
22931
|
-
|
|
22932
|
-
|
|
22933
|
-
|
|
22934
|
-
|
|
22935
|
-
|
|
22936
|
-
|
|
22937
|
-
|
|
22938
|
-
|
|
22939
|
-
|
|
22940
|
-
|
|
22941
|
-
|
|
22942
|
-
|
|
22943
|
-
|
|
22944
|
-
|
|
22945
|
-
|
|
22946
|
-
|
|
22947
|
-
|
|
22948
|
-
|
|
22949
|
-
|
|
22950
|
-
|
|
22951
|
-
|
|
22952
|
-
|
|
22953
|
-
|
|
22954
|
-
|
|
22955
|
-
|
|
22956
|
-
|
|
22957
|
-
|
|
22958
|
-
|
|
22959
|
-
|
|
22960
|
-
|
|
22961
|
-
|
|
22962
|
-
|
|
22963
|
-
|
|
22964
|
-
|
|
22965
|
-
|
|
22966
|
-
|
|
22967
|
-
|
|
22968
|
-
|
|
22969
|
-
|
|
22970
|
-
|
|
22971
|
-
|
|
22972
|
-
|
|
22973
|
-
|
|
22974
|
-
|
|
22975
|
-
|
|
22976
|
-
|
|
22977
|
-
|
|
22978
|
-
|
|
22979
|
-
|
|
22980
|
-
|
|
22981
|
-
|
|
22982
|
-
|
|
22983
|
-
|
|
22984
|
-
|
|
22985
|
-
|
|
22986
|
-
|
|
22987
|
-
|
|
22988
|
-
|
|
22989
|
-
|
|
22990
|
-
|
|
22991
|
-
|
|
22992
|
-
|
|
22993
|
-
|
|
22994
|
-
|
|
22995
|
-
|
|
22996
|
-
|
|
22997
|
-
|
|
22998
|
-
|
|
22999
|
-
|
|
23000
|
-
|
|
23001
|
-
|
|
23002
|
-
|
|
23003
|
-
|
|
23004
|
-
|
|
23005
|
-
|
|
23006
|
-
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23010
|
-
|
|
23011
|
-
|
|
23012
|
-
|
|
23013
|
-
|
|
23014
|
-
|
|
23015
|
-
|
|
23016
|
-
|
|
23017
|
-
|
|
23018
|
-
|
|
23019
|
-
|
|
23020
|
-
|
|
23021
|
-
|
|
23022
|
-
|
|
23023
|
-
|
|
23024
|
-
|
|
23025
|
-
|
|
23026
|
-
|
|
23027
|
-
|
|
23028
|
-
|
|
23029
|
-
|
|
23030
|
-
|
|
23031
|
-
|
|
23032
|
-
|
|
23033
|
-
|
|
23034
|
-
|
|
23035
|
-
|
|
23036
|
-
|
|
23037
|
-
|
|
23038
|
-
|
|
23039
|
-
|
|
23040
|
-
|
|
23041
|
-
|
|
23042
|
-
|
|
23043
|
-
|
|
23044
|
-
|
|
23045
|
-
|
|
23046
|
-
|
|
23047
|
-
|
|
23048
|
-
|
|
23049
|
-
|
|
23050
|
-
|
|
23051
|
-
|
|
23052
|
-
|
|
23053
|
-
|
|
23054
|
-
|
|
23055
|
-
|
|
23056
|
-
|
|
23057
|
-
|
|
23058
|
-
|
|
23059
|
-
|
|
23060
|
-
|
|
23061
|
-
|
|
23062
|
-
|
|
23063
|
-
|
|
23064
|
-
|
|
23065
|
-
|
|
23066
|
-
|
|
23067
|
-
|
|
23068
|
-
|
|
23069
|
-
|
|
23070
|
-
|
|
23071
|
-
|
|
23072
|
-
|
|
23073
|
-
|
|
23074
|
-
|
|
23075
|
-
|
|
23076
|
-
|
|
23077
|
-
|
|
23078
|
-
|
|
23079
|
-
|
|
23080
|
-
|
|
23081
|
-
|
|
23082
|
-
|
|
23083
|
-
|
|
23084
|
-
|
|
23085
|
-
|
|
23086
|
-
|
|
23087
|
-
|
|
23088
|
-
|
|
23089
|
-
|
|
23090
|
-
|
|
23091
|
-
|
|
23092
|
-
|
|
23093
|
-
|
|
23094
|
-
|
|
23095
|
-
|
|
23096
|
-
|
|
23097
|
-
|
|
23098
|
-
|
|
23099
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/index.js
|
|
23100
|
-
|
|
23101
|
-
|
|
23102
|
-
|
|
23103
|
-
/* harmony default export */ const lib_es = (components_Icon);
|
|
23104
21688
|
;// CONCATENATED MODULE: ../semi-foundation/utils/keyCode.ts
|
|
23105
21689
|
/**
|
|
23106
21690
|
* @ignore
|
|
@@ -25190,9 +23774,7 @@ class Base extends external_root_React_commonjs2_react_commonjs_react_amd_react_
|
|
|
25190
23774
|
if (showTooltip.type && showTooltip.type.toLowerCase() === 'popover') {
|
|
25191
23775
|
return merge_default()({
|
|
25192
23776
|
opts: {
|
|
25193
|
-
style: {
|
|
25194
|
-
width: '240px'
|
|
25195
|
-
},
|
|
23777
|
+
// style: { width: '240px' },
|
|
25196
23778
|
showArrow: true
|
|
25197
23779
|
}
|
|
25198
23780
|
}, showTooltip);
|
|
@@ -27482,6 +26064,72 @@ class InputFoundation extends foundation {
|
|
|
27482
26064
|
/* harmony default export */ const input_foundation = (InputFoundation);
|
|
27483
26065
|
// EXTERNAL MODULE: ../semi-foundation/input/input.scss
|
|
27484
26066
|
var input = __webpack_require__("Q7vW");
|
|
26067
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClear.js
|
|
26068
|
+
|
|
26069
|
+
|
|
26070
|
+
function IconClear_SvgComponent(props) {
|
|
26071
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
26072
|
+
viewBox: "0 0 24 24",
|
|
26073
|
+
fill: "none",
|
|
26074
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26075
|
+
width: "1em",
|
|
26076
|
+
height: "1em",
|
|
26077
|
+
focusable: false,
|
|
26078
|
+
"aria-hidden": true
|
|
26079
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26080
|
+
fillRule: "evenodd",
|
|
26081
|
+
clipRule: "evenodd",
|
|
26082
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.0352 16.8626C16.4597 17.4585 15.5101 17.4751 14.9142 16.8996L12.0368 14.121L9.25822 16.9984C8.68274 17.5943 7.73314 17.6109 7.13722 17.0354C6.5413 16.4599 6.52472 15.5103 7.1002 14.9144L9.87883 12.037L7.00147 9.2584C6.40555 8.68293 6.38897 7.73332 6.96445 7.1374C7.53992 6.54148 8.48953 6.52491 9.08545 7.10038L11.9628 9.87901L14.7414 7.00165C15.3169 6.40573 16.2665 6.38916 16.8624 6.96463C17.4584 7.54011 17.4749 8.48971 16.8995 9.08563L14.1208 11.963L16.9982 14.7416C17.5941 15.3171 17.6107 16.2667 17.0352 16.8626Z",
|
|
26083
|
+
fill: "currentColor"
|
|
26084
|
+
}));
|
|
26085
|
+
}
|
|
26086
|
+
const IconClear_IconComponent = convertIcon(IconClear_SvgComponent, 'clear');
|
|
26087
|
+
/* harmony default export */ const IconClear = (IconClear_IconComponent);
|
|
26088
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeClosedSolid.js
|
|
26089
|
+
|
|
26090
|
+
|
|
26091
|
+
function IconEyeClosedSolid_SvgComponent(props) {
|
|
26092
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
26093
|
+
viewBox: "0 0 24 24",
|
|
26094
|
+
fill: "none",
|
|
26095
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26096
|
+
width: "1em",
|
|
26097
|
+
height: "1em",
|
|
26098
|
+
focusable: false,
|
|
26099
|
+
"aria-hidden": true
|
|
26100
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26101
|
+
fillRule: "evenodd",
|
|
26102
|
+
clipRule: "evenodd",
|
|
26103
|
+
d: "M21.7071 3.70711C22.0976 3.31658 22.0976 2.68342 21.7071 2.29289C21.3166 1.90237 20.6834 1.90237 20.2929 2.29289L17.3135 5.27233C15.8114 4.50566 14.0321 4 12 4C5 4 1 10 1 12C1 13.1757 2.38219 15.7335 4.94345 17.6423L2.29289 20.2929C1.90237 20.6834 1.90237 21.3166 2.29289 21.7071C2.68342 22.0976 3.31658 22.0976 3.70711 21.7071L21.7071 3.70711ZM7.8284 14.7574L9.29237 13.2934C9.10495 12.9018 9 12.4631 9 12C9 10.3431 10.3431 9 12 9C12.4631 9 12.9018 9.10495 13.2934 9.29237L14.7574 7.8284C13.967 7.30488 13.0191 7 12 7C9.23858 7 7 9.23858 7 12C7 13.0191 7.30488 13.967 7.8284 14.7574Z",
|
|
26104
|
+
fill: "currentColor"
|
|
26105
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26106
|
+
d: "M12 20C10.7789 20 9.64914 19.8174 8.61594 19.5054L11.1871 16.9342C11.4516 16.9775 11.7232 17 12 17C14.7614 17 17 14.7614 17 12C17 11.7232 16.9775 11.4516 16.9342 11.1871L20.5032 7.61808C22.1342 9.27317 23 11.0695 23 12C23 14 19 20 12 20Z",
|
|
26107
|
+
fill: "currentColor"
|
|
26108
|
+
}));
|
|
26109
|
+
}
|
|
26110
|
+
const IconEyeClosedSolid_IconComponent = convertIcon(IconEyeClosedSolid_SvgComponent, 'eye_closed_solid');
|
|
26111
|
+
/* harmony default export */ const IconEyeClosedSolid = (IconEyeClosedSolid_IconComponent);
|
|
26112
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeOpened.js
|
|
26113
|
+
|
|
26114
|
+
|
|
26115
|
+
function IconEyeOpened_SvgComponent(props) {
|
|
26116
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
26117
|
+
viewBox: "0 0 24 24",
|
|
26118
|
+
fill: "none",
|
|
26119
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26120
|
+
width: "1em",
|
|
26121
|
+
height: "1em",
|
|
26122
|
+
focusable: false,
|
|
26123
|
+
"aria-hidden": true
|
|
26124
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26125
|
+
fillRule: "evenodd",
|
|
26126
|
+
clipRule: "evenodd",
|
|
26127
|
+
d: "M12 4C5 4 1 10 1 12C1 14 5 20 12 20C19 20 23 14 23 12C23 10 19 4 12 4ZM17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
26128
|
+
fill: "currentColor"
|
|
26129
|
+
}));
|
|
26130
|
+
}
|
|
26131
|
+
const IconEyeOpened_IconComponent = convertIcon(IconEyeOpened_SvgComponent, 'eye_opened');
|
|
26132
|
+
/* harmony default export */ const IconEyeOpened = (IconEyeOpened_IconComponent);
|
|
27485
26133
|
;// CONCATENATED MODULE: ./input/index.tsx
|
|
27486
26134
|
|
|
27487
26135
|
|
|
@@ -29916,6 +28564,27 @@ IconButton.propTypes = {
|
|
|
29916
28564
|
onMouseLeave: (prop_types_default()).func
|
|
29917
28565
|
};
|
|
29918
28566
|
/* harmony default export */ const iconButton_0 = (IconButton);
|
|
28567
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronUp.js
|
|
28568
|
+
|
|
28569
|
+
|
|
28570
|
+
function IconChevronUp_SvgComponent(props) {
|
|
28571
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28572
|
+
viewBox: "0 0 24 24",
|
|
28573
|
+
fill: "none",
|
|
28574
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28575
|
+
width: "1em",
|
|
28576
|
+
height: "1em",
|
|
28577
|
+
focusable: false,
|
|
28578
|
+
"aria-hidden": true
|
|
28579
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28580
|
+
fillRule: "evenodd",
|
|
28581
|
+
clipRule: "evenodd",
|
|
28582
|
+
d: "M19.637 16.4369C19.0513 17.0227 18.1015 17.0227 17.5157 16.4369L11.8589 10.7801L6.20202 16.4369C5.61623 17.0227 4.66648 17.0227 4.0807 16.4369C3.49491 15.8511 3.49491 14.9014 4.0807 14.3156L10.7982 7.59809C11.384 7.01231 12.3337 7.01231 12.9195 7.59809L19.637 14.3156C20.2228 14.9014 20.2228 15.8511 19.637 16.4369Z",
|
|
28583
|
+
fill: "currentColor"
|
|
28584
|
+
}));
|
|
28585
|
+
}
|
|
28586
|
+
const IconChevronUp_IconComponent = convertIcon(IconChevronUp_SvgComponent, 'chevron_up');
|
|
28587
|
+
/* harmony default export */ const IconChevronUp = (IconChevronUp_IconComponent);
|
|
29919
28588
|
;// CONCATENATED MODULE: ./backtop/index.tsx
|
|
29920
28589
|
var backtop_rest = undefined && undefined.__rest || function (s, e) {
|
|
29921
28590
|
var t = {};
|
|
@@ -30147,6 +28816,109 @@ class BannerFoundation extends foundation {
|
|
|
30147
28816
|
}
|
|
30148
28817
|
// EXTERNAL MODULE: ../semi-foundation/banner/banner.scss
|
|
30149
28818
|
var banner = __webpack_require__("9wFu");
|
|
28819
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClose.js
|
|
28820
|
+
|
|
28821
|
+
|
|
28822
|
+
function IconClose_SvgComponent(props) {
|
|
28823
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28824
|
+
viewBox: "0 0 24 24",
|
|
28825
|
+
fill: "none",
|
|
28826
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28827
|
+
width: "1em",
|
|
28828
|
+
height: "1em",
|
|
28829
|
+
focusable: false,
|
|
28830
|
+
"aria-hidden": true
|
|
28831
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28832
|
+
d: "M17.6568 19.7782C18.2426 20.3639 19.1924 20.3639 19.7782 19.7782C20.3639 19.1924 20.3639 18.2426 19.7782 17.6568L14.1213 12L19.7782 6.34313C20.3639 5.75734 20.3639 4.8076 19.7782 4.22181C19.1924 3.63602 18.2426 3.63602 17.6568 4.22181L12 9.87866L6.34313 4.22181C5.75734 3.63602 4.8076 3.63602 4.22181 4.22181C3.63602 4.8076 3.63602 5.75734 4.22181 6.34313L9.87866 12L4.22181 17.6568C3.63602 18.2426 3.63602 19.1924 4.22181 19.7782C4.8076 20.3639 5.75734 20.3639 6.34313 19.7782L12 14.1213L17.6568 19.7782Z",
|
|
28833
|
+
fill: "currentColor"
|
|
28834
|
+
}));
|
|
28835
|
+
}
|
|
28836
|
+
const IconClose_IconComponent = convertIcon(IconClose_SvgComponent, 'close');
|
|
28837
|
+
/* harmony default export */ const IconClose = (IconClose_IconComponent);
|
|
28838
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconAlertTriangle.js
|
|
28839
|
+
|
|
28840
|
+
|
|
28841
|
+
function IconAlertTriangle_SvgComponent(props) {
|
|
28842
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28843
|
+
viewBox: "0 0 24 24",
|
|
28844
|
+
fill: "none",
|
|
28845
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28846
|
+
width: "1em",
|
|
28847
|
+
height: "1em",
|
|
28848
|
+
focusable: false,
|
|
28849
|
+
"aria-hidden": true
|
|
28850
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28851
|
+
fillRule: "evenodd",
|
|
28852
|
+
clipRule: "evenodd",
|
|
28853
|
+
d: "M10.2268 2.3986L1.52616 19.0749C0.831449 20.4064 1.79747 22 3.29933 22H20.7007C22.2025 22 23.1686 20.4064 22.4739 19.0749L13.7732 2.3986C13.0254 0.965441 10.9746 0.965442 10.2268 2.3986ZM13.1415 14.0101C13.0603 14.5781 12.5739 15 12.0001 15C11.4263 15 10.9398 14.5781 10.8586 14.0101L10.2829 9.97992C10.1336 8.93495 10.9445 8.00002 12.0001 8.00002C13.0556 8.00002 13.8665 8.93495 13.7172 9.97992L13.1415 14.0101ZM13.5001 18.5C13.5001 19.3284 12.8285 20 12.0001 20C11.1716 20 10.5001 19.3284 10.5001 18.5C10.5001 17.6716 11.1716 17 12.0001 17C12.8285 17 13.5001 17.6716 13.5001 18.5Z",
|
|
28854
|
+
fill: "currentColor"
|
|
28855
|
+
}));
|
|
28856
|
+
}
|
|
28857
|
+
const IconAlertTriangle_IconComponent = convertIcon(IconAlertTriangle_SvgComponent, 'alert_triangle');
|
|
28858
|
+
/* harmony default export */ const IconAlertTriangle = (IconAlertTriangle_IconComponent);
|
|
28859
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTickCircle.js
|
|
28860
|
+
|
|
28861
|
+
|
|
28862
|
+
function IconTickCircle_SvgComponent(props) {
|
|
28863
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28864
|
+
viewBox: "0 0 24 24",
|
|
28865
|
+
fill: "none",
|
|
28866
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28867
|
+
width: "1em",
|
|
28868
|
+
height: "1em",
|
|
28869
|
+
focusable: false,
|
|
28870
|
+
"aria-hidden": true
|
|
28871
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28872
|
+
fillRule: "evenodd",
|
|
28873
|
+
clipRule: "evenodd",
|
|
28874
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.8831 9.82235L11.6854 17.4112C11.4029 17.7806 10.965 17.9981 10.5 18C10.035 18.0019 9.59533 17.788 9.30982 17.421L5.81604 13.4209C5.30744 12.767 5.42524 11.8246 6.07916 11.316C6.73308 10.8074 7.67549 10.9252 8.1841 11.5791L10.4838 14.0439L15.5 8C16.0032 7.34193 16.9446 7.21641 17.6027 7.71964C18.2608 8.22287 18.3863 9.16428 17.8831 9.82235Z",
|
|
28875
|
+
fill: "currentColor"
|
|
28876
|
+
}));
|
|
28877
|
+
}
|
|
28878
|
+
const IconTickCircle_IconComponent = convertIcon(IconTickCircle_SvgComponent, 'tick_circle');
|
|
28879
|
+
/* harmony default export */ const IconTickCircle = (IconTickCircle_IconComponent);
|
|
28880
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconInfoCircle.js
|
|
28881
|
+
|
|
28882
|
+
|
|
28883
|
+
function IconInfoCircle_SvgComponent(props) {
|
|
28884
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28885
|
+
viewBox: "0 0 24 24",
|
|
28886
|
+
fill: "none",
|
|
28887
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28888
|
+
width: "1em",
|
|
28889
|
+
height: "1em",
|
|
28890
|
+
focusable: false,
|
|
28891
|
+
"aria-hidden": true
|
|
28892
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28893
|
+
fillRule: "evenodd",
|
|
28894
|
+
clipRule: "evenodd",
|
|
28895
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM14 7C14 8.10457 13.1046 9 12 9C10.8954 9 10 8.10457 10 7C10 5.89543 10.8954 5 12 5C13.1046 5 14 5.89543 14 7ZM9 10.75C9 10.3358 9.33579 10 9.75 10H12.5C13.0523 10 13.5 10.4477 13.5 11V16.5H14.25C14.6642 16.5 15 16.8358 15 17.25C15 17.6642 14.6642 18 14.25 18H9.75C9.33579 18 9 17.6642 9 17.25C9 16.8358 9.33579 16.5 9.75 16.5H10.5V11.5H9.75C9.33579 11.5 9 11.1642 9 10.75Z",
|
|
28896
|
+
fill: "currentColor"
|
|
28897
|
+
}));
|
|
28898
|
+
}
|
|
28899
|
+
const IconInfoCircle_IconComponent = convertIcon(IconInfoCircle_SvgComponent, 'info_circle');
|
|
28900
|
+
/* harmony default export */ const IconInfoCircle = (IconInfoCircle_IconComponent);
|
|
28901
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconAlertCircle.js
|
|
28902
|
+
|
|
28903
|
+
|
|
28904
|
+
function IconAlertCircle_SvgComponent(props) {
|
|
28905
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28906
|
+
viewBox: "0 0 24 24",
|
|
28907
|
+
fill: "none",
|
|
28908
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28909
|
+
width: "1em",
|
|
28910
|
+
height: "1em",
|
|
28911
|
+
focusable: false,
|
|
28912
|
+
"aria-hidden": true
|
|
28913
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28914
|
+
fillRule: "evenodd",
|
|
28915
|
+
clipRule: "evenodd",
|
|
28916
|
+
d: "M23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12ZM13.5 17.5C13.5 16.6716 12.8284 16 12 16C11.1716 16 10.5 16.6716 10.5 17.5C10.5 18.3284 11.1716 19 12 19C12.8284 19 13.5 18.3284 13.5 17.5ZM12 5C10.9138 5 10.0507 5.91244 10.1109 6.99692L10.4168 12.5023C10.4635 13.3426 11.1584 14 12 14C12.8416 14 13.5365 13.3426 13.5832 12.5023L13.8891 6.99692C13.9493 5.91244 13.0862 5 12 5Z",
|
|
28917
|
+
fill: "currentColor"
|
|
28918
|
+
}));
|
|
28919
|
+
}
|
|
28920
|
+
const IconAlertCircle_IconComponent = convertIcon(IconAlertCircle_SvgComponent, 'alert_circle');
|
|
28921
|
+
/* harmony default export */ const IconAlertCircle = (IconAlertCircle_IconComponent);
|
|
30150
28922
|
;// CONCATENATED MODULE: ./banner/index.tsx
|
|
30151
28923
|
|
|
30152
28924
|
|
|
@@ -30575,6 +29347,31 @@ BreadcrumbItem.defaultProps = {
|
|
|
30575
29347
|
onClick: function_noop,
|
|
30576
29348
|
shouldRenderSeparator: true
|
|
30577
29349
|
};
|
|
29350
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMore.js
|
|
29351
|
+
|
|
29352
|
+
|
|
29353
|
+
function IconMore_SvgComponent(props) {
|
|
29354
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
29355
|
+
viewBox: "0 0 24 24",
|
|
29356
|
+
fill: "none",
|
|
29357
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29358
|
+
width: "1em",
|
|
29359
|
+
height: "1em",
|
|
29360
|
+
focusable: false,
|
|
29361
|
+
"aria-hidden": true
|
|
29362
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
29363
|
+
d: "M7 12C7 13.3807 5.88071 14.5 4.5 14.5C3.11929 14.5 2 13.3807 2 12C2 10.6193 3.11929 9.5 4.5 9.5C5.88071 9.5 7 10.6193 7 12Z",
|
|
29364
|
+
fill: "currentColor"
|
|
29365
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
29366
|
+
d: "M14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12Z",
|
|
29367
|
+
fill: "currentColor"
|
|
29368
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
29369
|
+
d: "M19.5 14.5C20.8807 14.5 22 13.3807 22 12C22 10.6193 20.8807 9.5 19.5 9.5C18.1193 9.5 17 10.6193 17 12C17 13.3807 18.1193 14.5 19.5 14.5Z",
|
|
29370
|
+
fill: "currentColor"
|
|
29371
|
+
}));
|
|
29372
|
+
}
|
|
29373
|
+
const IconMore_IconComponent = convertIcon(IconMore_SvgComponent, 'more');
|
|
29374
|
+
/* harmony default export */ const IconMore = (IconMore_IconComponent);
|
|
30578
29375
|
;// CONCATENATED MODULE: ./breadcrumb/index.tsx
|
|
30579
29376
|
|
|
30580
29377
|
|
|
@@ -37016,6 +35813,48 @@ CarouselIndicator.propTypes = {
|
|
|
37016
35813
|
trigger: prop_types_default().oneOf(carousel_constants_strings.TRIGGER)
|
|
37017
35814
|
};
|
|
37018
35815
|
/* harmony default export */ const carousel_CarouselIndicator = (CarouselIndicator);
|
|
35816
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronLeft.js
|
|
35817
|
+
|
|
35818
|
+
|
|
35819
|
+
function IconChevronLeft_SvgComponent(props) {
|
|
35820
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
35821
|
+
viewBox: "0 0 24 24",
|
|
35822
|
+
fill: "none",
|
|
35823
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35824
|
+
width: "1em",
|
|
35825
|
+
height: "1em",
|
|
35826
|
+
focusable: false,
|
|
35827
|
+
"aria-hidden": true
|
|
35828
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
35829
|
+
fillRule: "evenodd",
|
|
35830
|
+
clipRule: "evenodd",
|
|
35831
|
+
d: "M16.2782 4.23933C16.864 4.82511 16.864 5.77486 16.2782 6.36065L10.6213 12.0175L16.2782 17.6744C16.864 18.2601 16.864 19.2099 16.2782 19.7957C15.6924 20.3815 14.7426 20.3815 14.1569 19.7957L7.43934 13.0782C6.85355 12.4924 6.85355 11.5426 7.43934 10.9568L14.1569 4.23933C14.7426 3.65354 15.6924 3.65354 16.2782 4.23933Z",
|
|
35832
|
+
fill: "currentColor"
|
|
35833
|
+
}));
|
|
35834
|
+
}
|
|
35835
|
+
const IconChevronLeft_IconComponent = convertIcon(IconChevronLeft_SvgComponent, 'chevron_left');
|
|
35836
|
+
/* harmony default export */ const IconChevronLeft = (IconChevronLeft_IconComponent);
|
|
35837
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronRight.js
|
|
35838
|
+
|
|
35839
|
+
|
|
35840
|
+
function IconChevronRight_SvgComponent(props) {
|
|
35841
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
35842
|
+
viewBox: "0 0 24 24",
|
|
35843
|
+
fill: "none",
|
|
35844
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35845
|
+
width: "1em",
|
|
35846
|
+
height: "1em",
|
|
35847
|
+
focusable: false,
|
|
35848
|
+
"aria-hidden": true
|
|
35849
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
35850
|
+
fillRule: "evenodd",
|
|
35851
|
+
clipRule: "evenodd",
|
|
35852
|
+
d: "M7.43934 19.7957C6.85355 19.2099 6.85355 18.2601 7.43934 17.6744L13.0962 12.0175L7.43934 6.36065C6.85355 5.77486 6.85355 4.82511 7.43934 4.23933C8.02513 3.65354 8.97487 3.65354 9.56066 4.23933L16.2782 10.9568C16.864 11.5426 16.864 12.4924 16.2782 13.0782L9.56066 19.7957C8.97487 20.3815 8.02513 20.3815 7.43934 19.7957Z",
|
|
35853
|
+
fill: "currentColor"
|
|
35854
|
+
}));
|
|
35855
|
+
}
|
|
35856
|
+
const IconChevronRight_IconComponent = convertIcon(IconChevronRight_SvgComponent, 'chevron_right');
|
|
35857
|
+
/* harmony default export */ const IconChevronRight = (IconChevronRight_IconComponent);
|
|
37019
35858
|
;// CONCATENATED MODULE: ./carousel/CarouselArrow.tsx
|
|
37020
35859
|
|
|
37021
35860
|
/* eslint-disable jsx-a11y/click-events-have-key-events */
|
|
@@ -38976,6 +37815,27 @@ class CascaderFoundation extends foundation {
|
|
|
38976
37815
|
}
|
|
38977
37816
|
// EXTERNAL MODULE: ../semi-foundation/cascader/cascader.scss
|
|
38978
37817
|
var cascader = __webpack_require__("B2DP");
|
|
37818
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronDown.js
|
|
37819
|
+
|
|
37820
|
+
|
|
37821
|
+
function IconChevronDown_SvgComponent(props) {
|
|
37822
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
37823
|
+
viewBox: "0 0 24 24",
|
|
37824
|
+
fill: "none",
|
|
37825
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37826
|
+
width: "1em",
|
|
37827
|
+
height: "1em",
|
|
37828
|
+
focusable: false,
|
|
37829
|
+
"aria-hidden": true
|
|
37830
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
37831
|
+
fillRule: "evenodd",
|
|
37832
|
+
clipRule: "evenodd",
|
|
37833
|
+
d: "M4.08045 7.59809C4.66624 7.01231 5.61599 7.01231 6.20177 7.59809L11.8586 13.2549L17.5155 7.59809C18.1013 7.01231 19.051 7.01231 19.6368 7.59809C20.2226 8.18388 20.2226 9.13363 19.6368 9.71941L12.9193 16.4369C12.3335 17.0227 11.3838 17.0227 10.798 16.4369L4.08045 9.71941C3.49467 9.13363 3.49467 8.18388 4.08045 7.59809Z",
|
|
37834
|
+
fill: "currentColor"
|
|
37835
|
+
}));
|
|
37836
|
+
}
|
|
37837
|
+
const IconChevronDown_IconComponent = convertIcon(IconChevronDown_SvgComponent, 'chevron_down');
|
|
37838
|
+
/* harmony default export */ const IconChevronDown = (IconChevronDown_IconComponent);
|
|
38979
37839
|
// EXTERNAL MODULE: ../../node_modules/lodash/isBoolean.js
|
|
38980
37840
|
var isBoolean = __webpack_require__("p6M4");
|
|
38981
37841
|
var isBoolean_default = /*#__PURE__*/__webpack_require__.n(isBoolean);
|
|
@@ -39107,6 +37967,46 @@ class CheckboxFoundation extends foundation {
|
|
|
39107
37967
|
|
|
39108
37968
|
const Context = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext({});
|
|
39109
37969
|
|
|
37970
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxTick.js
|
|
37971
|
+
|
|
37972
|
+
|
|
37973
|
+
function IconCheckboxTick_SvgComponent(props) {
|
|
37974
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
37975
|
+
viewBox: "0 0 24 24",
|
|
37976
|
+
fill: "none",
|
|
37977
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37978
|
+
width: "1em",
|
|
37979
|
+
height: "1em",
|
|
37980
|
+
focusable: false,
|
|
37981
|
+
"aria-hidden": true
|
|
37982
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
37983
|
+
fillRule: "evenodd",
|
|
37984
|
+
clipRule: "evenodd",
|
|
37985
|
+
d: "M17.4111 7.30848C18.0692 7.81171 18.1947 8.75312 17.6915 9.41119L11.1915 17.9112C10.909 18.2806 10.4711 18.4981 10.0061 18.5C9.54105 18.5019 9.10143 18.288 8.81592 17.9209L5.31592 13.4209C4.80731 12.767 4.92512 11.8246 5.57904 11.316C6.23296 10.8074 7.17537 10.9252 7.68398 11.5791L9.98988 14.5438L15.3084 7.58884C15.8116 6.93077 16.7531 6.80525 17.4111 7.30848Z",
|
|
37986
|
+
fill: "currentColor"
|
|
37987
|
+
}));
|
|
37988
|
+
}
|
|
37989
|
+
const IconCheckboxTick_IconComponent = convertIcon(IconCheckboxTick_SvgComponent, 'checkbox_tick');
|
|
37990
|
+
/* harmony default export */ const IconCheckboxTick = (IconCheckboxTick_IconComponent);
|
|
37991
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxIndeterminate.js
|
|
37992
|
+
|
|
37993
|
+
|
|
37994
|
+
function IconCheckboxIndeterminate_SvgComponent(props) {
|
|
37995
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
37996
|
+
viewBox: "0 0 24 24",
|
|
37997
|
+
fill: "none",
|
|
37998
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37999
|
+
width: "1em",
|
|
38000
|
+
height: "1em",
|
|
38001
|
+
focusable: false,
|
|
38002
|
+
"aria-hidden": true
|
|
38003
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
38004
|
+
d: "M5 12.5C5 11.6716 5.67157 11 6.5 11H17.5C18.3284 11 19 11.6716 19 12.5C19 13.3284 18.3284 14 17.5 14H6.5C5.67157 14 5 13.3284 5 12.5Z",
|
|
38005
|
+
fill: "currentColor"
|
|
38006
|
+
}));
|
|
38007
|
+
}
|
|
38008
|
+
const IconCheckboxIndeterminate_IconComponent = convertIcon(IconCheckboxIndeterminate_SvgComponent, 'checkbox_indeterminate');
|
|
38009
|
+
/* harmony default export */ const IconCheckboxIndeterminate = (IconCheckboxIndeterminate_IconComponent);
|
|
39110
38010
|
;// CONCATENATED MODULE: ./checkbox/checkboxInner.tsx
|
|
39111
38011
|
|
|
39112
38012
|
|
|
@@ -40576,6 +39476,40 @@ class TagInputFoundation extends foundation {
|
|
|
40576
39476
|
}
|
|
40577
39477
|
}
|
|
40578
39478
|
/* harmony default export */ const tagInput_foundation = (TagInputFoundation);
|
|
39479
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHandle.js
|
|
39480
|
+
|
|
39481
|
+
|
|
39482
|
+
function IconHandle_SvgComponent(props) {
|
|
39483
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
39484
|
+
viewBox: "0 0 24 24",
|
|
39485
|
+
fill: "none",
|
|
39486
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
39487
|
+
width: "1em",
|
|
39488
|
+
height: "1em",
|
|
39489
|
+
focusable: false,
|
|
39490
|
+
"aria-hidden": true
|
|
39491
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39492
|
+
d: "M9 7C10.1046 7 11 6.10457 11 5C11 3.89543 10.1046 3 9 3C7.89543 3 7 3.89543 7 5C7 6.10457 7.89543 7 9 7Z",
|
|
39493
|
+
fill: "currentColor"
|
|
39494
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39495
|
+
d: "M9 14C10.1046 14 11 13.1046 11 12C11 10.8954 10.1046 10 9 10C7.89543 10 7 10.8954 7 12C7 13.1046 7.89543 14 9 14Z",
|
|
39496
|
+
fill: "currentColor"
|
|
39497
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39498
|
+
d: "M11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 17.8954 7.89543 17 9 17C10.1046 17 11 17.8954 11 19Z",
|
|
39499
|
+
fill: "currentColor"
|
|
39500
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39501
|
+
d: "M15 7C16.1046 7 17 6.10457 17 5C17 3.89543 16.1046 3 15 3C13.8954 3 13 3.89543 13 5C13 6.10457 13.8954 7 15 7Z",
|
|
39502
|
+
fill: "currentColor"
|
|
39503
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39504
|
+
d: "M17 12C17 13.1046 16.1046 14 15 14C13.8954 14 13 13.1046 13 12C13 10.8954 13.8954 10 15 10C16.1046 10 17 10.8954 17 12Z",
|
|
39505
|
+
fill: "currentColor"
|
|
39506
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39507
|
+
d: "M15 21C16.1046 21 17 20.1046 17 19C17 17.8954 16.1046 17 15 17C13.8954 17 13 17.8954 13 19C13 20.1046 13.8954 21 15 21Z",
|
|
39508
|
+
fill: "currentColor"
|
|
39509
|
+
}));
|
|
39510
|
+
}
|
|
39511
|
+
const IconHandle_IconComponent = convertIcon(IconHandle_SvgComponent, 'handle');
|
|
39512
|
+
/* harmony default export */ const IconHandle = (IconHandle_IconComponent);
|
|
40579
39513
|
;// CONCATENATED MODULE: ../../node_modules/@dnd-kit/utilities/dist/utilities.esm.js
|
|
40580
39514
|
|
|
40581
39515
|
|
|
@@ -47672,7 +46606,7 @@ class CollapsePanel extends external_root_React_commonjs2_react_commonjs_react_a
|
|
|
47672
46606
|
constructor() {
|
|
47673
46607
|
super(...arguments);
|
|
47674
46608
|
this.headerExpandIconTriggerRef = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
47675
|
-
this.ariaID =
|
|
46609
|
+
this.ariaID = "";
|
|
47676
46610
|
this.handleClick = (itemKey, e) => {
|
|
47677
46611
|
var _a;
|
|
47678
46612
|
// Judge user click Icon or Header
|
|
@@ -47682,6 +46616,9 @@ class CollapsePanel extends external_root_React_commonjs2_react_commonjs_react_a
|
|
|
47682
46616
|
}
|
|
47683
46617
|
};
|
|
47684
46618
|
}
|
|
46619
|
+
componentDidMount() {
|
|
46620
|
+
this.ariaID = getUuidShort({});
|
|
46621
|
+
}
|
|
47685
46622
|
renderHeader(active) {
|
|
47686
46623
|
let expandIconEnable = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
|
|
47687
46624
|
const {
|
|
@@ -53671,6 +52608,63 @@ class inputFoundation_InputFoundation extends foundation {
|
|
|
53671
52608
|
return inputValue;
|
|
53672
52609
|
}
|
|
53673
52610
|
}
|
|
52611
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCalendar.js
|
|
52612
|
+
|
|
52613
|
+
|
|
52614
|
+
function IconCalendar_SvgComponent(props) {
|
|
52615
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
52616
|
+
viewBox: "0 0 24 24",
|
|
52617
|
+
fill: "none",
|
|
52618
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
52619
|
+
width: "1em",
|
|
52620
|
+
height: "1em",
|
|
52621
|
+
focusable: false,
|
|
52622
|
+
"aria-hidden": true
|
|
52623
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52624
|
+
fillRule: "evenodd",
|
|
52625
|
+
clipRule: "evenodd",
|
|
52626
|
+
d: "M4 20V8H20V20H4ZM2 4C2 2.89543 2.89543 2 4 2H20C21.1046 2 22 2.89543 22 4V20C22 21.1046 21.1046 22 20 22H4C2.89543 22 2 21.1046 2 20V4ZM6 10.5C6 10.2239 6.22386 10 6.5 10H8.5C8.77614 10 9 10.2239 9 10.5V12.5C9 12.7761 8.77614 13 8.5 13H6.5C6.22386 13 6 12.7761 6 12.5V10.5ZM6.5 15C6.22386 15 6 15.2239 6 15.5V17.5C6 17.7761 6.22386 18 6.5 18H8.5C8.77614 18 9 17.7761 9 17.5V15.5C9 15.2239 8.77614 15 8.5 15H6.5ZM10.5 10.5C10.5 10.2239 10.7239 10 11 10H13C13.2761 10 13.5 10.2239 13.5 10.5V12.5C13.5 12.7761 13.2761 13 13 13H11C10.7239 13 10.5 12.7761 10.5 12.5V10.5ZM11 15C10.7239 15 10.5 15.2239 10.5 15.5V17.5C10.5 17.7761 10.7239 18 11 18H13C13.2761 18 13.5 17.7761 13.5 17.5V15.5C13.5 15.2239 13.2761 15 13 15H11ZM15 10.5C15 10.2239 15.2239 10 15.5 10H17.5C17.7761 10 18 10.2239 18 10.5V12.5C18 12.7761 17.7761 13 17.5 13H15.5C15.2239 13 15 12.7761 15 12.5V10.5ZM15.5 15C15.2239 15 15 15.2239 15 15.5V17.5C15 17.7761 15.2239 18 15.5 18H17.5C17.7761 18 18 17.7761 18 17.5V15.5C18 15.2239 17.7761 15 17.5 15H15.5Z",
|
|
52627
|
+
fill: "currentColor"
|
|
52628
|
+
}));
|
|
52629
|
+
}
|
|
52630
|
+
const IconCalendar_IconComponent = convertIcon(IconCalendar_SvgComponent, 'calendar');
|
|
52631
|
+
/* harmony default export */ const IconCalendar = (IconCalendar_IconComponent);
|
|
52632
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCalendarClock.js
|
|
52633
|
+
|
|
52634
|
+
|
|
52635
|
+
function IconCalendarClock_SvgComponent(props) {
|
|
52636
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
52637
|
+
viewBox: "0 0 24 24",
|
|
52638
|
+
fill: "none",
|
|
52639
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
52640
|
+
width: "1em",
|
|
52641
|
+
height: "1em",
|
|
52642
|
+
focusable: false,
|
|
52643
|
+
"aria-hidden": true
|
|
52644
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52645
|
+
d: "M2 5V19C2 20.6569 3.34315 22 5 22H12.101C11.5151 21.4259 11.0297 20.7496 10.6736 20H6C4.89543 20 4 19.1046 4 18V8C4 7.44772 4.44772 7 5 7H19C19.5523 7 20 7.44772 20 8V10.6736C20.7496 11.0297 21.4259 11.5151 22 12.101V5C22 3.34315 20.6569 2 19 2H5C3.34315 2 2 3.34315 2 5Z",
|
|
52646
|
+
fill: "currentColor"
|
|
52647
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52648
|
+
d: "M16 10H17C16.4614 10 15.9369 10.0608 15.4332 10.176C15.5943 10.065 15.7896 10 16 10Z",
|
|
52649
|
+
fill: "currentColor"
|
|
52650
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52651
|
+
d: "M13.4981 10.9376C13.4659 10.4144 13.0313 10 12.5 10H11.5C10.9477 10 10.5 10.4477 10.5 11V12C10.5 12.4742 10.83 12.8712 11.2729 12.9741C11.857 12.1446 12.6168 11.4478 13.4981 10.9376Z",
|
|
52652
|
+
fill: "currentColor"
|
|
52653
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52654
|
+
d: "M7 10C6.44772 10 6 10.4477 6 11V12C6 12.5523 6.44772 13 7 13H8C8.55228 13 9 12.5523 9 12V11C9 10.4477 8.55228 10 8 10H7Z",
|
|
52655
|
+
fill: "currentColor"
|
|
52656
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52657
|
+
d: "M6 16C6 15.4477 6.44772 15 7 15H8C8.55228 15 9 15.4477 9 16V17C9 17.5523 8.55228 18 8 18H7C6.44772 18 6 17.5523 6 17V16Z",
|
|
52658
|
+
fill: "currentColor"
|
|
52659
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52660
|
+
fillRule: "evenodd",
|
|
52661
|
+
clipRule: "evenodd",
|
|
52662
|
+
d: "M22 17C22 19.7614 19.7614 22 17 22C14.2386 22 12 19.7614 12 17C12 14.2386 14.2386 12 17 12C19.7614 12 22 14.2386 22 17ZM18 15C18 14.4477 17.5523 14 17 14C16.4477 14 16 14.4477 16 15V17C16 17.2652 16.1054 17.5196 16.2929 17.7071L17.7929 19.2071C18.1834 19.5976 18.8166 19.5976 19.2071 19.2071C19.5976 18.8166 19.5976 18.1834 19.2071 17.7929L18 16.5858V15Z",
|
|
52663
|
+
fill: "currentColor"
|
|
52664
|
+
}));
|
|
52665
|
+
}
|
|
52666
|
+
const IconCalendarClock_IconComponent = convertIcon(IconCalendarClock_SvgComponent, 'calendar_clock');
|
|
52667
|
+
/* harmony default export */ const IconCalendarClock = (IconCalendarClock_IconComponent);
|
|
53674
52668
|
;// CONCATENATED MODULE: ./datePicker/insetInput.tsx
|
|
53675
52669
|
|
|
53676
52670
|
|
|
@@ -55463,6 +54457,58 @@ class MonthsGridFoundation extends foundation {
|
|
|
55463
54457
|
}
|
|
55464
54458
|
}
|
|
55465
54459
|
}
|
|
54460
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronLeft.js
|
|
54461
|
+
|
|
54462
|
+
|
|
54463
|
+
function IconDoubleChevronLeft_SvgComponent(props) {
|
|
54464
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
54465
|
+
viewBox: "0 0 24 24",
|
|
54466
|
+
fill: "none",
|
|
54467
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
54468
|
+
width: "1em",
|
|
54469
|
+
height: "1em",
|
|
54470
|
+
focusable: false,
|
|
54471
|
+
"aria-hidden": true
|
|
54472
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54473
|
+
fillRule: "evenodd",
|
|
54474
|
+
clipRule: "evenodd",
|
|
54475
|
+
d: "M12.6185 4.39653C13.1272 4.92524 13.1272 5.78245 12.6185 6.31116L7.14483 12L12.6185 17.6888C13.1272 18.2176 13.1272 19.0748 12.6185 19.6035C12.1098 20.1322 11.285 20.1322 10.7763 19.6035L4.38153 12.9573C3.87282 12.4286 3.87282 11.5714 4.38153 11.0427L10.7763 4.39653C11.285 3.86782 12.1098 3.86782 12.6185 4.39653Z",
|
|
54476
|
+
fill: "currentColor"
|
|
54477
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54478
|
+
fillRule: "evenodd",
|
|
54479
|
+
clipRule: "evenodd",
|
|
54480
|
+
d: "M19.6185 4.39653C20.1272 4.92524 20.1272 5.78245 19.6185 6.31116L14.1448 12L19.6185 17.6888C20.1272 18.2176 20.1272 19.0748 19.6185 19.6035C19.1098 20.1322 18.285 20.1322 17.7763 19.6035L11.3815 12.9573C10.8728 12.4286 10.8728 11.5714 11.3815 11.0427L17.7763 4.39653C18.285 3.86782 19.1098 3.86782 19.6185 4.39653Z",
|
|
54481
|
+
fill: "currentColor"
|
|
54482
|
+
}));
|
|
54483
|
+
}
|
|
54484
|
+
const IconDoubleChevronLeft_IconComponent = convertIcon(IconDoubleChevronLeft_SvgComponent, 'double_chevron_left');
|
|
54485
|
+
/* harmony default export */ const IconDoubleChevronLeft = (IconDoubleChevronLeft_IconComponent);
|
|
54486
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronRight.js
|
|
54487
|
+
|
|
54488
|
+
|
|
54489
|
+
function IconDoubleChevronRight_SvgComponent(props) {
|
|
54490
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
54491
|
+
viewBox: "0 0 24 24",
|
|
54492
|
+
fill: "none",
|
|
54493
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
54494
|
+
width: "1em",
|
|
54495
|
+
height: "1em",
|
|
54496
|
+
focusable: false,
|
|
54497
|
+
"aria-hidden": true
|
|
54498
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54499
|
+
fillRule: "evenodd",
|
|
54500
|
+
clipRule: "evenodd",
|
|
54501
|
+
d: "M4.38153 4.39653C4.89024 3.86782 5.71502 3.86782 6.22373 4.39653L12.6185 11.0427C13.1272 11.5714 13.1272 12.4286 12.6185 12.9573L6.22373 19.6035C5.71502 20.1322 4.89024 20.1322 4.38153 19.6035C3.87282 19.0748 3.87282 18.2176 4.38153 17.6888L9.85517 12L4.38153 6.31116C3.87282 5.78245 3.87282 4.92524 4.38153 4.39653Z",
|
|
54502
|
+
fill: "currentColor"
|
|
54503
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54504
|
+
fillRule: "evenodd",
|
|
54505
|
+
clipRule: "evenodd",
|
|
54506
|
+
d: "M11.3815 4.39653C11.8902 3.86782 12.715 3.86782 13.2237 4.39653L19.6185 11.0427C20.1272 11.5714 20.1272 12.4286 19.6185 12.9573L13.2237 19.6035C12.715 20.1322 11.8902 20.1322 11.3815 19.6035C10.8728 19.0748 10.8728 18.2176 11.3815 17.6888L16.8552 12L11.3815 6.31116C10.8728 5.78245 10.8728 4.92524 11.3815 4.39653Z",
|
|
54507
|
+
fill: "currentColor"
|
|
54508
|
+
}));
|
|
54509
|
+
}
|
|
54510
|
+
const IconDoubleChevronRight_IconComponent = convertIcon(IconDoubleChevronRight_SvgComponent, 'double_chevron_right');
|
|
54511
|
+
/* harmony default export */ const IconDoubleChevronRight = (IconDoubleChevronRight_IconComponent);
|
|
55466
54512
|
;// CONCATENATED MODULE: ./datePicker/navigation.tsx
|
|
55467
54513
|
|
|
55468
54514
|
|
|
@@ -57902,6 +56948,27 @@ YearAndMonth.defaultProps = {
|
|
|
57902
56948
|
type: 'month'
|
|
57903
56949
|
};
|
|
57904
56950
|
/* harmony default export */ const yearAndMonth = (YearAndMonth);
|
|
56951
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClock.js
|
|
56952
|
+
|
|
56953
|
+
|
|
56954
|
+
function IconClock_SvgComponent(props) {
|
|
56955
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
56956
|
+
viewBox: "0 0 24 24",
|
|
56957
|
+
fill: "none",
|
|
56958
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56959
|
+
width: "1em",
|
|
56960
|
+
height: "1em",
|
|
56961
|
+
focusable: false,
|
|
56962
|
+
"aria-hidden": true
|
|
56963
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
56964
|
+
fillRule: "evenodd",
|
|
56965
|
+
clipRule: "evenodd",
|
|
56966
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM13.5 6.5V11.3787L17.0607 14.9393C17.6464 15.5251 17.6464 16.4749 17.0607 17.0607C16.4749 17.6464 15.5251 17.6464 14.9393 17.0607L10.9393 13.0607C10.658 12.7794 10.5 12.3978 10.5 12V6.5C10.5 5.67157 11.1716 5 12 5C12.8284 5 13.5 5.67157 13.5 6.5Z",
|
|
56967
|
+
fill: "currentColor"
|
|
56968
|
+
}));
|
|
56969
|
+
}
|
|
56970
|
+
const IconClock_IconComponent = convertIcon(IconClock_SvgComponent, 'clock');
|
|
56971
|
+
/* harmony default export */ const IconClock = (IconClock_IconComponent);
|
|
57905
56972
|
;// CONCATENATED MODULE: ./datePicker/monthsGrid.tsx
|
|
57906
56973
|
|
|
57907
56974
|
|
|
@@ -60630,6 +59697,27 @@ const ConfirmModal = props => {
|
|
|
60630
59697
|
}, content));
|
|
60631
59698
|
};
|
|
60632
59699
|
/* harmony default export */ const modal_ConfirmModal = (ConfirmModal);
|
|
59700
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHelpCircle.js
|
|
59701
|
+
|
|
59702
|
+
|
|
59703
|
+
function IconHelpCircle_SvgComponent(props) {
|
|
59704
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
59705
|
+
viewBox: "0 0 24 24",
|
|
59706
|
+
fill: "none",
|
|
59707
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
59708
|
+
width: "1em",
|
|
59709
|
+
height: "1em",
|
|
59710
|
+
focusable: false,
|
|
59711
|
+
"aria-hidden": true
|
|
59712
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
59713
|
+
fillRule: "evenodd",
|
|
59714
|
+
clipRule: "evenodd",
|
|
59715
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM11.8281 14.6094C10.9688 14.6094 10.5391 14.0723 10.5391 13.3691C10.5391 12.3242 11.0566 11.6504 12.2676 10.7324C12.2894 10.7158 12.3111 10.6993 12.3326 10.6829C13.1573 10.0555 13.7324 9.61807 13.7324 8.82812C13.7324 7.93945 12.9023 7.42188 11.9746 7.42188C11.2129 7.42188 10.627 7.70508 10.168 8.30078C9.83594 8.64258 9.57227 8.82812 9.12305 8.82812C8.38086 8.82812 8 8.31055 8 7.71484C8 7.10938 8.3418 6.49414 8.87891 6.02539C9.60156 5.40039 10.7539 5 12.2773 5C14.9922 5 16.8965 6.33789 16.8965 8.64258C16.8965 10.3223 15.8906 11.1328 14.709 11.9531C13.9082 12.5391 13.5273 12.8809 13.2246 13.5742L13.2238 13.5756C12.8922 14.1609 12.638 14.6094 11.8281 14.6094ZM11.8086 18.7695C10.8711 18.7695 10.0996 18.1641 10.0996 17.2266C10.0996 16.2891 10.8711 15.6836 11.8086 15.6836C12.7461 15.6836 13.5078 16.2891 13.5078 17.2266C13.5078 18.1641 12.7461 18.7695 11.8086 18.7695Z",
|
|
59716
|
+
fill: "currentColor"
|
|
59717
|
+
}));
|
|
59718
|
+
}
|
|
59719
|
+
const IconHelpCircle_IconComponent = convertIcon(IconHelpCircle_SvgComponent, 'help_circle');
|
|
59720
|
+
/* harmony default export */ const IconHelpCircle = (IconHelpCircle_IconComponent);
|
|
60633
59721
|
;// CONCATENATED MODULE: ./modal/confirm.tsx
|
|
60634
59722
|
|
|
60635
59723
|
|
|
@@ -62557,6 +61645,11 @@ List.defaultProps = {
|
|
|
62557
61645
|
onClick: (noop_default())
|
|
62558
61646
|
};
|
|
62559
61647
|
/* harmony default export */ const list_0 = (List);
|
|
61648
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/index.js
|
|
61649
|
+
|
|
61650
|
+
|
|
61651
|
+
|
|
61652
|
+
/* harmony default export */ const lib_es = (components_Icon);
|
|
62560
61653
|
;// CONCATENATED MODULE: ./icons/index.tsx
|
|
62561
61654
|
|
|
62562
61655
|
/* harmony default export */ const icons_0 = (lib_es);
|
|
@@ -62569,7 +61662,8 @@ const form_constants_strings = {
|
|
|
62569
61662
|
LAYOUT: ['horizontal', 'vertical'],
|
|
62570
61663
|
LABEL_POS: ['left', 'top', 'inset'],
|
|
62571
61664
|
LABEL_ALIGN: ['left', 'right'],
|
|
62572
|
-
EXTRA_POS: ['middle', 'bottom']
|
|
61665
|
+
EXTRA_POS: ['middle', 'bottom'],
|
|
61666
|
+
DEFAULT_TRIGGER: 'change'
|
|
62573
61667
|
};
|
|
62574
61668
|
const form_constants_numbers = {};
|
|
62575
61669
|
|
|
@@ -64230,7 +63324,7 @@ class InputNumber extends BaseComponent {
|
|
|
64230
63324
|
} else {
|
|
64231
63325
|
let valueStr = value;
|
|
64232
63326
|
if (typeof value === 'number') {
|
|
64233
|
-
valueStr =
|
|
63327
|
+
valueStr = this.foundation.doFormat(value);
|
|
64234
63328
|
}
|
|
64235
63329
|
const parsedNum = this.foundation.doParse(valueStr, false, true, true);
|
|
64236
63330
|
const toNum = typeof value === 'number' ? value : this.foundation.doParse(valueStr, false, false, false);
|
|
@@ -65562,6 +64656,27 @@ SubNav.defaultProps = {
|
|
|
65562
64656
|
maxHeight: navigation_constants_numbers.DEFAULT_SUBNAV_MAX_HEIGHT,
|
|
65563
64657
|
disabled: false
|
|
65564
64658
|
};
|
|
64659
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSidebar.js
|
|
64660
|
+
|
|
64661
|
+
|
|
64662
|
+
function IconSidebar_SvgComponent(props) {
|
|
64663
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
64664
|
+
viewBox: "0 0 24 24",
|
|
64665
|
+
fill: "none",
|
|
64666
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
64667
|
+
width: "1em",
|
|
64668
|
+
height: "1em",
|
|
64669
|
+
focusable: false,
|
|
64670
|
+
"aria-hidden": true
|
|
64671
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
64672
|
+
fillRule: "evenodd",
|
|
64673
|
+
clipRule: "evenodd",
|
|
64674
|
+
d: "M5 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V5C2 3.34315 3.34315 2 5 2ZM6 4C5.44772 4 5 4.44772 5 5V19C5 19.5523 5.44772 20 6 20H9C9.55229 20 10 19.5523 10 19V5C10 4.44772 9.55229 4 9 4H6Z",
|
|
64675
|
+
fill: "currentColor"
|
|
64676
|
+
}));
|
|
64677
|
+
}
|
|
64678
|
+
const IconSidebar_IconComponent = convertIcon(IconSidebar_SvgComponent, 'sidebar');
|
|
64679
|
+
/* harmony default export */ const IconSidebar = (IconSidebar_IconComponent);
|
|
65565
64680
|
;// CONCATENATED MODULE: ./navigation/CollapseButton.tsx
|
|
65566
64681
|
|
|
65567
64682
|
|
|
@@ -74170,6 +73285,27 @@ class RadioInnerFoundation extends foundation {
|
|
|
74170
73285
|
|
|
74171
73286
|
const context_Context = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext(null);
|
|
74172
73287
|
/* harmony default export */ const radio_context = (context_Context);
|
|
73288
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRadio.js
|
|
73289
|
+
|
|
73290
|
+
|
|
73291
|
+
function IconRadio_SvgComponent(props) {
|
|
73292
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
73293
|
+
viewBox: "0 0 24 24",
|
|
73294
|
+
fill: "none",
|
|
73295
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
73296
|
+
width: "1em",
|
|
73297
|
+
height: "1em",
|
|
73298
|
+
focusable: false,
|
|
73299
|
+
"aria-hidden": true
|
|
73300
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("circle", {
|
|
73301
|
+
cx: 12,
|
|
73302
|
+
cy: 12,
|
|
73303
|
+
r: 5,
|
|
73304
|
+
fill: "currentColor"
|
|
73305
|
+
}));
|
|
73306
|
+
}
|
|
73307
|
+
const IconRadio_IconComponent = convertIcon(IconRadio_SvgComponent, 'radio');
|
|
73308
|
+
/* harmony default export */ const IconRadio = (IconRadio_IconComponent);
|
|
74173
73309
|
;// CONCATENATED MODULE: ./radio/radioInner.tsx
|
|
74174
73310
|
|
|
74175
73311
|
|
|
@@ -74755,6 +73891,25 @@ const rating_constants_strings = {
|
|
|
74755
73891
|
|
|
74756
73892
|
// EXTERNAL MODULE: ../semi-foundation/rating/rating.scss
|
|
74757
73893
|
var rating = __webpack_require__("FII7");
|
|
73894
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconStar.js
|
|
73895
|
+
|
|
73896
|
+
|
|
73897
|
+
function IconStar_SvgComponent(props) {
|
|
73898
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
73899
|
+
viewBox: "0 0 24 24",
|
|
73900
|
+
fill: "none",
|
|
73901
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
73902
|
+
width: "1em",
|
|
73903
|
+
height: "1em",
|
|
73904
|
+
focusable: false,
|
|
73905
|
+
"aria-hidden": true
|
|
73906
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
73907
|
+
d: "M10.7525 1.90411C11.1451 0.698628 12.8549 0.698631 13.2475 1.90411L15.2395 8.01946H21.6858C22.9565 8.01946 23.4848 9.64143 22.4568 10.3865L17.2417 14.1659L19.2337 20.2813C19.6263 21.4868 18.2431 22.4892 17.2151 21.7442L12 17.9647L6.78489 21.7442C5.75687 22.4892 4.37368 21.4868 4.76635 20.2813L6.75834 14.1659L1.54323 10.3865C0.515206 9.64142 1.04354 8.01946 2.31425 8.01946H8.76048L10.7525 1.90411Z",
|
|
73908
|
+
fill: "currentColor"
|
|
73909
|
+
}));
|
|
73910
|
+
}
|
|
73911
|
+
const IconStar_IconComponent = convertIcon(IconStar_SvgComponent, 'star');
|
|
73912
|
+
/* harmony default export */ const IconStar = (IconStar_IconComponent);
|
|
74758
73913
|
;// CONCATENATED MODULE: ../semi-foundation/rating/foundation.ts
|
|
74759
73914
|
|
|
74760
73915
|
|
|
@@ -77483,6 +76638,19 @@ Slider.defaultProps = {
|
|
|
77483
76638
|
|
|
77484
76639
|
const splitButtonGroup_prefixCls = button_constants_cssClasses.PREFIX;
|
|
77485
76640
|
class SplitButtonGroup extends BaseComponent {
|
|
76641
|
+
constructor() {
|
|
76642
|
+
super(...arguments);
|
|
76643
|
+
this.containerRef = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
76644
|
+
}
|
|
76645
|
+
componentDidMount() {
|
|
76646
|
+
if (this.containerRef.current) {
|
|
76647
|
+
const buttons = this.containerRef.current.querySelectorAll('button');
|
|
76648
|
+
const firstButton = buttons[0];
|
|
76649
|
+
const lastButton = buttons[buttons.length - 1];
|
|
76650
|
+
firstButton === null || firstButton === void 0 ? void 0 : firstButton.classList.add(`${splitButtonGroup_prefixCls}-first`);
|
|
76651
|
+
lastButton === null || lastButton === void 0 ? void 0 : lastButton.classList.add(`${splitButtonGroup_prefixCls}-last`);
|
|
76652
|
+
}
|
|
76653
|
+
}
|
|
77486
76654
|
render() {
|
|
77487
76655
|
const {
|
|
77488
76656
|
children,
|
|
@@ -77491,6 +76659,7 @@ class SplitButtonGroup extends BaseComponent {
|
|
|
77491
76659
|
} = this.props;
|
|
77492
76660
|
const cls = classnames_default()(`${splitButtonGroup_prefixCls}-split`, className);
|
|
77493
76661
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
76662
|
+
ref: this.containerRef,
|
|
77494
76663
|
className: cls,
|
|
77495
76664
|
style: style,
|
|
77496
76665
|
role: "group",
|
|
@@ -80320,6 +79489,27 @@ TablePagination.propTypes = {
|
|
|
80320
79489
|
TablePagination.defaultProps = {
|
|
80321
79490
|
prefixCls: table_constants_cssClasses.PREFIX
|
|
80322
79491
|
};
|
|
79492
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFilter.js
|
|
79493
|
+
|
|
79494
|
+
|
|
79495
|
+
function IconFilter_SvgComponent(props) {
|
|
79496
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79497
|
+
viewBox: "0 0 24 24",
|
|
79498
|
+
fill: "none",
|
|
79499
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79500
|
+
width: "1em",
|
|
79501
|
+
height: "1em",
|
|
79502
|
+
focusable: false,
|
|
79503
|
+
"aria-hidden": true
|
|
79504
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79505
|
+
fillRule: "evenodd",
|
|
79506
|
+
clipRule: "evenodd",
|
|
79507
|
+
d: "M1.0929 2.57912C1.25675 2.22596 1.61069 2 2.00001 2H22C22.3893 2 22.7433 2.22596 22.9071 2.57912C23.071 2.93229 23.015 3.34845 22.7636 3.64573L14.5654 12.8261V21C14.5654 21.3466 14.386 21.6684 14.0911 21.8507C13.7963 22.0329 13.4282 22.0494 13.1182 21.8944L10.0528 19.8944C9.71401 19.725 9.5 19.3788 9.5 19V12.8261L1.23644 3.64573C0.985045 3.34845 0.929036 2.93229 1.0929 2.57912Z",
|
|
79508
|
+
fill: "currentColor"
|
|
79509
|
+
}));
|
|
79510
|
+
}
|
|
79511
|
+
const IconFilter_IconComponent = convertIcon(IconFilter_SvgComponent, 'filter');
|
|
79512
|
+
/* harmony default export */ const IconFilter = (IconFilter_IconComponent);
|
|
80323
79513
|
;// CONCATENATED MODULE: ./table/ColumnFilter.tsx
|
|
80324
79514
|
|
|
80325
79515
|
|
|
@@ -80458,6 +79648,44 @@ function ColumnFilter() {
|
|
|
80458
79648
|
}) : renderDropdown(renderProps, iconElem);
|
|
80459
79649
|
return filterDropdown;
|
|
80460
79650
|
}
|
|
79651
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretup.js
|
|
79652
|
+
|
|
79653
|
+
|
|
79654
|
+
function IconCaretup_SvgComponent(props) {
|
|
79655
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79656
|
+
viewBox: "0 0 24 24",
|
|
79657
|
+
fill: "none",
|
|
79658
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79659
|
+
width: "1em",
|
|
79660
|
+
height: "1em",
|
|
79661
|
+
focusable: false,
|
|
79662
|
+
"aria-hidden": true
|
|
79663
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79664
|
+
d: "M6.45096 8.34102L11.247 2.86102C11.3408 2.75361 11.4566 2.66753 11.5865 2.60854C11.7163 2.54956 11.8573 2.51904 12 2.51904C12.1426 2.51904 12.2836 2.54956 12.4135 2.60854C12.5433 2.66753 12.6591 2.75361 12.753 2.86102L17.549 8.34102C18.115 8.98802 17.655 10 16.796 10H7.20396C6.34396 10 5.88496 8.98802 6.45096 8.34102Z",
|
|
79665
|
+
fill: "currentColor"
|
|
79666
|
+
}));
|
|
79667
|
+
}
|
|
79668
|
+
const IconCaretup_IconComponent = convertIcon(IconCaretup_SvgComponent, 'caretup');
|
|
79669
|
+
/* harmony default export */ const IconCaretup = (IconCaretup_IconComponent);
|
|
79670
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretdown.js
|
|
79671
|
+
|
|
79672
|
+
|
|
79673
|
+
function IconCaretdown_SvgComponent(props) {
|
|
79674
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79675
|
+
viewBox: "0 0 24 24",
|
|
79676
|
+
fill: "none",
|
|
79677
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79678
|
+
width: "1em",
|
|
79679
|
+
height: "1em",
|
|
79680
|
+
focusable: false,
|
|
79681
|
+
"aria-hidden": true
|
|
79682
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79683
|
+
d: "M17.549 15.659L12.753 21.139C12.6591 21.2464 12.5434 21.3325 12.4135 21.3915C12.2836 21.4505 12.1427 21.481 12 21.481C11.8574 21.481 11.7164 21.4505 11.5865 21.3915C11.4566 21.3325 11.3409 21.2464 11.247 21.139L6.45101 15.659C5.88501 15.011 6.34501 14 7.20401 14H16.796C17.656 14 18.115 15.012 17.549 15.659Z",
|
|
79684
|
+
fill: "currentColor"
|
|
79685
|
+
}));
|
|
79686
|
+
}
|
|
79687
|
+
const IconCaretdown_IconComponent = convertIcon(IconCaretdown_SvgComponent, 'caretdown');
|
|
79688
|
+
/* harmony default export */ const IconCaretdown = (IconCaretdown_IconComponent);
|
|
80461
79689
|
;// CONCATENATED MODULE: ./table/ColumnSorter.tsx
|
|
80462
79690
|
|
|
80463
79691
|
|
|
@@ -80523,6 +79751,44 @@ ColumnSorter.defaultProps = {
|
|
|
80523
79751
|
onClick: (noop_default()),
|
|
80524
79752
|
sortOrder: false
|
|
80525
79753
|
};
|
|
79754
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleDown.js
|
|
79755
|
+
|
|
79756
|
+
|
|
79757
|
+
function IconTreeTriangleDown_SvgComponent(props) {
|
|
79758
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79759
|
+
viewBox: "0 0 24 24",
|
|
79760
|
+
fill: "none",
|
|
79761
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79762
|
+
width: "1em",
|
|
79763
|
+
height: "1em",
|
|
79764
|
+
focusable: false,
|
|
79765
|
+
"aria-hidden": true
|
|
79766
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79767
|
+
d: "M20.5598 9.65618L12.7546 18.6322C12.3559 19.0906 11.644 19.0906 11.2453 18.6322L3.4401 9.65618C2.8773 9.00895 3.33701 8 4.19471 8L19.8052 8C20.6629 8 21.1226 9.00895 20.5598 9.65618Z",
|
|
79768
|
+
fill: "currentColor"
|
|
79769
|
+
}));
|
|
79770
|
+
}
|
|
79771
|
+
const IconTreeTriangleDown_IconComponent = convertIcon(IconTreeTriangleDown_SvgComponent, 'tree_triangle_down');
|
|
79772
|
+
/* harmony default export */ const IconTreeTriangleDown = (IconTreeTriangleDown_IconComponent);
|
|
79773
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleRight.js
|
|
79774
|
+
|
|
79775
|
+
|
|
79776
|
+
function IconTreeTriangleRight_SvgComponent(props) {
|
|
79777
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79778
|
+
viewBox: "0 0 24 24",
|
|
79779
|
+
fill: "none",
|
|
79780
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79781
|
+
width: "1em",
|
|
79782
|
+
height: "1em",
|
|
79783
|
+
focusable: false,
|
|
79784
|
+
"aria-hidden": true
|
|
79785
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79786
|
+
d: "M9.65618 3.44015L18.6322 11.2454C19.0906 11.644 19.0906 12.356 18.6322 12.7546L9.65618 20.5598C9.00895 21.1226 8 20.6629 8 19.8052V4.19475C8 3.33705 9.00895 2.87734 9.65618 3.44015Z",
|
|
79787
|
+
fill: "currentColor"
|
|
79788
|
+
}));
|
|
79789
|
+
}
|
|
79790
|
+
const IconTreeTriangleRight_IconComponent = convertIcon(IconTreeTriangleRight_SvgComponent, 'tree_triangle_right');
|
|
79791
|
+
/* harmony default export */ const IconTreeTriangleRight = (IconTreeTriangleRight_IconComponent);
|
|
80526
79792
|
;// CONCATENATED MODULE: ./table/CustomExpandIcon.tsx
|
|
80527
79793
|
|
|
80528
79794
|
/* eslint-disable react-hooks/exhaustive-deps */
|
|
@@ -80792,6 +80058,9 @@ class TableHeaderRow extends BaseComponent {
|
|
|
80792
80058
|
}
|
|
80793
80059
|
}
|
|
80794
80060
|
}
|
|
80061
|
+
Object.assign(cellProps, {
|
|
80062
|
+
resize: column.resize
|
|
80063
|
+
});
|
|
80795
80064
|
const props = omit_default()(Object.assign(Object.assign({}, cellProps), customProps), ['colStart', 'colEnd', 'hasSubColumns', 'parents', 'level']);
|
|
80796
80065
|
const {
|
|
80797
80066
|
rowSpan,
|
|
@@ -84566,10 +83835,11 @@ class ResizableHeaderCell extends (external_root_React_commonjs2_react_commonjs_
|
|
|
84566
83835
|
onResize,
|
|
84567
83836
|
onResizeStart,
|
|
84568
83837
|
onResizeStop,
|
|
84569
|
-
width
|
|
83838
|
+
width,
|
|
83839
|
+
resize
|
|
84570
83840
|
} = _a,
|
|
84571
|
-
restProps = ResizableHeaderCell_rest(_a, ["onResize", "onResizeStart", "onResizeStop", "width"]);
|
|
84572
|
-
if (typeof width !== 'number') {
|
|
83841
|
+
restProps = ResizableHeaderCell_rest(_a, ["onResize", "onResizeStart", "onResizeStop", "width", "resize"]);
|
|
83842
|
+
if (typeof width !== 'number' || resize === false) {
|
|
84573
83843
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("th", Object.assign({}, restProps));
|
|
84574
83844
|
}
|
|
84575
83845
|
let {
|
|
@@ -84587,7 +83857,8 @@ class ResizableHeaderCell extends (external_root_React_commonjs2_react_commonjs_
|
|
|
84587
83857
|
onResizeStop: onResizeStop,
|
|
84588
83858
|
draggableOpts: {
|
|
84589
83859
|
enableUserSelectHack: false
|
|
84590
|
-
}
|
|
83860
|
+
},
|
|
83861
|
+
axis: 'x'
|
|
84591
83862
|
}, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("th", Object.assign({}, restProps), children));
|
|
84592
83863
|
}
|
|
84593
83864
|
}
|
|
@@ -87180,6 +86451,12 @@ LocaleTimePicker.defaultProps = TimePicker.defaultProps;
|
|
|
87180
86451
|
class ToastListFoundation extends foundation {
|
|
87181
86452
|
constructor(adapter) {
|
|
87182
86453
|
super(Object.assign(Object.assign({}, ToastListFoundation.defaultAdapter), adapter));
|
|
86454
|
+
this.handleMouseInSideChange = mouseInSideChange => {
|
|
86455
|
+
this._adapter.handleMouseInSideChange(mouseInSideChange);
|
|
86456
|
+
};
|
|
86457
|
+
this.getInputWrapperRect = () => {
|
|
86458
|
+
return this._adapter.getInputWrapperRect();
|
|
86459
|
+
};
|
|
87183
86460
|
}
|
|
87184
86461
|
hasToast(id) {
|
|
87185
86462
|
const toastList = this._adapter.getState('list');
|
|
@@ -87303,6 +86580,7 @@ const toast_prefixCls = toast_constants_cssClasses.PREFIX;
|
|
|
87303
86580
|
class Toast extends BaseComponent {
|
|
87304
86581
|
constructor(props) {
|
|
87305
86582
|
super(props);
|
|
86583
|
+
this.toastEle = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
87306
86584
|
this.clearCloseTimer = () => {
|
|
87307
86585
|
this.foundation.clearCloseTimer_();
|
|
87308
86586
|
};
|
|
@@ -87382,11 +86660,15 @@ class Toast extends BaseComponent {
|
|
|
87382
86660
|
textStyle.maxWidth = textMaxWidth;
|
|
87383
86661
|
const btnTheme = 'borderless';
|
|
87384
86662
|
const btnSize = 'small';
|
|
87385
|
-
|
|
86663
|
+
const reservedIndex = this.props.positionInList ? this.props.positionInList.length - this.props.positionInList.index - 1 : 0;
|
|
86664
|
+
const toastEle = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
86665
|
+
ref: this.toastEle,
|
|
87386
86666
|
role: "alert",
|
|
87387
86667
|
"aria-label": `${type ? type : 'default'} type`,
|
|
87388
86668
|
className: toastCls,
|
|
87389
|
-
style: style,
|
|
86669
|
+
style: Object.assign(Object.assign({}, style), {
|
|
86670
|
+
transform: `translate3d(0,0,${reservedIndex * -10}px)`
|
|
86671
|
+
}),
|
|
87390
86672
|
onMouseEnter: this.clearCloseTimer,
|
|
87391
86673
|
onMouseLeave: this.startCloseTimer,
|
|
87392
86674
|
onAnimationStart: this.props.onAnimationStart,
|
|
@@ -87408,6 +86690,17 @@ class Toast extends BaseComponent {
|
|
|
87408
86690
|
theme: btnTheme,
|
|
87409
86691
|
size: btnSize
|
|
87410
86692
|
}))));
|
|
86693
|
+
if (this.props.stack) {
|
|
86694
|
+
const height = this.props.stackExpanded && this.toastEle.current && getComputedStyle(this.toastEle.current).height || 0;
|
|
86695
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
86696
|
+
className: `${toast_prefixCls}-zero-height-wrapper`,
|
|
86697
|
+
style: {
|
|
86698
|
+
height
|
|
86699
|
+
}
|
|
86700
|
+
}, toastEle);
|
|
86701
|
+
} else {
|
|
86702
|
+
return toastEle;
|
|
86703
|
+
}
|
|
87411
86704
|
}
|
|
87412
86705
|
}
|
|
87413
86706
|
Toast.contextType = context;
|
|
@@ -87422,6 +86715,8 @@ Toast.propTypes = {
|
|
|
87422
86715
|
style: (prop_types_default()).object,
|
|
87423
86716
|
className: (prop_types_default()).string,
|
|
87424
86717
|
showClose: (prop_types_default()).bool,
|
|
86718
|
+
stack: (prop_types_default()).bool,
|
|
86719
|
+
stackExpanded: (prop_types_default()).bool,
|
|
87425
86720
|
icon: prop_types_default().oneOfType([(prop_types_default()).string, (prop_types_default()).node]),
|
|
87426
86721
|
direction: prop_types_default().oneOf(toast_constants_strings.directions)
|
|
87427
86722
|
};
|
|
@@ -87432,6 +86727,8 @@ Toast.defaultProps = {
|
|
|
87432
86727
|
duration: toast_constants_numbers.duration,
|
|
87433
86728
|
textMaxWidth: 450,
|
|
87434
86729
|
showClose: true,
|
|
86730
|
+
stack: false,
|
|
86731
|
+
stackExpanded: false,
|
|
87435
86732
|
theme: 'normal'
|
|
87436
86733
|
};
|
|
87437
86734
|
/* harmony default export */ const toast = (Toast);
|
|
@@ -87568,10 +86865,27 @@ const createBaseToast = () => {
|
|
|
87568
86865
|
return _a = class ToastList extends BaseComponent {
|
|
87569
86866
|
constructor(props) {
|
|
87570
86867
|
super(props);
|
|
86868
|
+
this.stack = false;
|
|
86869
|
+
this.innerWrapperRef = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
86870
|
+
this.handleMouseEnter = e => {
|
|
86871
|
+
if (this.stack) {
|
|
86872
|
+
this.foundation.handleMouseInSideChange(true);
|
|
86873
|
+
}
|
|
86874
|
+
};
|
|
86875
|
+
this.handleMouseLeave = e => {
|
|
86876
|
+
var _a;
|
|
86877
|
+
if (this.stack) {
|
|
86878
|
+
const height = (_a = this.foundation.getInputWrapperRect()) === null || _a === void 0 ? void 0 : _a.height;
|
|
86879
|
+
if (height) {
|
|
86880
|
+
this.foundation.handleMouseInSideChange(false);
|
|
86881
|
+
}
|
|
86882
|
+
}
|
|
86883
|
+
};
|
|
87571
86884
|
this.state = {
|
|
87572
86885
|
list: [],
|
|
87573
86886
|
removedItems: [],
|
|
87574
|
-
updatedItems: []
|
|
86887
|
+
updatedItems: [],
|
|
86888
|
+
mouseInSide: false
|
|
87575
86889
|
};
|
|
87576
86890
|
this.foundation = new ToastListFoundation(this.adapter);
|
|
87577
86891
|
}
|
|
@@ -87583,6 +86897,15 @@ const createBaseToast = () => {
|
|
|
87583
86897
|
removedItems,
|
|
87584
86898
|
updatedItems
|
|
87585
86899
|
});
|
|
86900
|
+
},
|
|
86901
|
+
handleMouseInSideChange: mouseInSide => {
|
|
86902
|
+
this.setState({
|
|
86903
|
+
mouseInSide
|
|
86904
|
+
});
|
|
86905
|
+
},
|
|
86906
|
+
getInputWrapperRect: () => {
|
|
86907
|
+
var _a;
|
|
86908
|
+
return (_a = this.innerWrapperRef.current) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect();
|
|
87586
86909
|
}
|
|
87587
86910
|
});
|
|
87588
86911
|
}
|
|
@@ -87617,6 +86940,7 @@ const createBaseToast = () => {
|
|
|
87617
86940
|
ToastList.ref.add(Object.assign(Object.assign({}, opts), {
|
|
87618
86941
|
id
|
|
87619
86942
|
}));
|
|
86943
|
+
ToastList.ref.stack = Boolean(opts.stack);
|
|
87620
86944
|
});
|
|
87621
86945
|
} else {
|
|
87622
86946
|
const node = document.querySelector(`#${this.wrapperId}`);
|
|
@@ -87625,6 +86949,9 @@ const createBaseToast = () => {
|
|
|
87625
86949
|
node.style[pos] = typeof opts[pos] === 'number' ? `${opts[pos]}px` : opts[pos];
|
|
87626
86950
|
}
|
|
87627
86951
|
});
|
|
86952
|
+
if (Boolean(opts.stack) !== ToastList.ref.stack) {
|
|
86953
|
+
ToastList.ref.stack = Boolean(opts.stack);
|
|
86954
|
+
}
|
|
87628
86955
|
if (ToastList.ref.has(id)) {
|
|
87629
86956
|
ToastList.ref.update(id, Object.assign(Object.assign({}, opts), {
|
|
87630
86957
|
id
|
|
@@ -87750,7 +87077,15 @@ const createBaseToast = () => {
|
|
|
87750
87077
|
toast.foundation.restartCloseTimer();
|
|
87751
87078
|
}
|
|
87752
87079
|
};
|
|
87753
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement((external_root_React_commonjs2_react_commonjs_react_amd_react_default()).Fragment, null,
|
|
87080
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement((external_root_React_commonjs2_react_commonjs_react_amd_react_default()).Fragment, null, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
87081
|
+
className: classnames_default()({
|
|
87082
|
+
[`${toast_constants_cssClasses.PREFIX}-innerWrapper`]: true,
|
|
87083
|
+
[`${toast_constants_cssClasses.PREFIX}-innerWrapper-hover`]: this.state.mouseInSide
|
|
87084
|
+
}),
|
|
87085
|
+
ref: this.innerWrapperRef,
|
|
87086
|
+
onMouseEnter: this.handleMouseEnter,
|
|
87087
|
+
onMouseLeave: this.handleMouseLeave
|
|
87088
|
+
}, list.map((item, index) => {
|
|
87754
87089
|
const isRemoved = removedItems.find(removedItem => removedItem.id === item.id) !== undefined;
|
|
87755
87090
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(_cssAnimation, {
|
|
87756
87091
|
key: item.id,
|
|
@@ -87764,6 +87099,12 @@ const createBaseToast = () => {
|
|
|
87764
87099
|
isAnimating
|
|
87765
87100
|
} = _ref2;
|
|
87766
87101
|
return isRemoved && !isAnimating ? null : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(toast, Object.assign({}, item, {
|
|
87102
|
+
stack: this.stack,
|
|
87103
|
+
stackExpanded: this.state.mouseInSide,
|
|
87104
|
+
positionInList: {
|
|
87105
|
+
length: list.length,
|
|
87106
|
+
index
|
|
87107
|
+
},
|
|
87767
87108
|
className: classnames_default()({
|
|
87768
87109
|
[item.className]: Boolean(item.className),
|
|
87769
87110
|
[animationClassName]: true
|
|
@@ -87774,7 +87115,7 @@ const createBaseToast = () => {
|
|
|
87774
87115
|
ref: refFn
|
|
87775
87116
|
}));
|
|
87776
87117
|
});
|
|
87777
|
-
}));
|
|
87118
|
+
})));
|
|
87778
87119
|
}
|
|
87779
87120
|
}, _a.defaultOpts = {
|
|
87780
87121
|
motion: true,
|
|
@@ -87785,7 +87126,8 @@ const createBaseToast = () => {
|
|
|
87785
87126
|
duration: (prop_types_default()).number,
|
|
87786
87127
|
onClose: (prop_types_default()).func,
|
|
87787
87128
|
icon: (prop_types_default()).node,
|
|
87788
|
-
direction: prop_types_default().oneOf(toast_constants_strings.directions)
|
|
87129
|
+
direction: prop_types_default().oneOf(toast_constants_strings.directions),
|
|
87130
|
+
stack: (prop_types_default()).bool
|
|
87789
87131
|
}, _a.defaultProps = {}, _a;
|
|
87790
87132
|
};
|
|
87791
87133
|
class ToastFactory {
|
|
@@ -88505,6 +87847,70 @@ AutoSizer.defaultProps = {
|
|
|
88505
87847
|
|
|
88506
87848
|
const TreeContext = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext(null);
|
|
88507
87849
|
/* harmony default export */ const treeContext = (TreeContext);
|
|
87850
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFile.js
|
|
87851
|
+
|
|
87852
|
+
|
|
87853
|
+
function IconFile_SvgComponent(props) {
|
|
87854
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
87855
|
+
viewBox: "0 0 24 24",
|
|
87856
|
+
fill: "none",
|
|
87857
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
87858
|
+
width: "1em",
|
|
87859
|
+
height: "1em",
|
|
87860
|
+
focusable: false,
|
|
87861
|
+
"aria-hidden": true
|
|
87862
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87863
|
+
fillRule: "evenodd",
|
|
87864
|
+
clipRule: "evenodd",
|
|
87865
|
+
d: "M12 2C12 1.44772 11.5523 1 11 1H6C4.89543 1 4 1.89543 4 3V21C4 22.1046 4.89543 23 6 23H18C19.1046 23 20 22.1046 20 21V10C20 9.44772 19.5523 9 19 9H14C12.8954 9 12 8.10457 12 7V2ZM7 8C7 7.44772 7.44772 7 8 7H9C9.55228 7 10 7.44772 10 8C10 8.55228 9.55228 9 9 9H8C7.44772 9 7 8.55228 7 8ZM7 13C7 12.4477 7.44772 12 8 12H16C16.5523 12 17 12.4477 17 13C17 13.5523 16.5523 14 16 14H8C7.44772 14 7 13.5523 7 13ZM8 17C7.44772 17 7 17.4477 7 18C7 18.5523 7.44772 19 8 19H16C16.5523 19 17 18.5523 17 18C17 17.4477 16.5523 17 16 17H8ZM19.0686 7.49999H14.5C13.9477 7.49999 13.5 7.05228 13.5 6.49999V1.93136C13.5 1.21864 14.3617 0.861707 14.8657 1.36568L19.6343 6.13431C20.1383 6.63828 19.7814 7.49999 19.0686 7.49999Z",
|
|
87866
|
+
fill: "currentColor"
|
|
87867
|
+
}));
|
|
87868
|
+
}
|
|
87869
|
+
const IconFile_IconComponent = convertIcon(IconFile_SvgComponent, 'file');
|
|
87870
|
+
/* harmony default export */ const IconFile = (IconFile_IconComponent);
|
|
87871
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolderOpen.js
|
|
87872
|
+
|
|
87873
|
+
|
|
87874
|
+
function IconFolderOpen_SvgComponent(props) {
|
|
87875
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
87876
|
+
viewBox: "0 0 24 24",
|
|
87877
|
+
fill: "none",
|
|
87878
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
87879
|
+
width: "1em",
|
|
87880
|
+
height: "1em",
|
|
87881
|
+
focusable: false,
|
|
87882
|
+
"aria-hidden": true
|
|
87883
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87884
|
+
fillRule: "evenodd",
|
|
87885
|
+
clipRule: "evenodd",
|
|
87886
|
+
d: "M2 5C2 3.34315 3.34315 2 5 2H8.29844C8.75258 2 9.1932 2.15456 9.54783 2.43826L10.6783 3.34261C11.2102 3.76816 11.8711 4 12.5523 4H18C20 4 21 6 21 8H7.53361C6.62889 8 5.83683 8.60735 5.6021 9.48109L2.57151 20.7617C2.21202 20.2671 2 19.6583 2 19V5ZM22.1667 10H9.5C8.61111 10 7.82889 10.5867 7.58 11.44L4.87333 20.72C4.68667 21.36 5.16667 22 5.83333 22H18.5C19.3889 22 20.1711 21.4133 20.42 20.56L23.1267 11.28C23.3133 10.64 22.8333 10 22.1667 10Z",
|
|
87887
|
+
fill: "currentColor"
|
|
87888
|
+
}));
|
|
87889
|
+
}
|
|
87890
|
+
const IconFolderOpen_IconComponent = convertIcon(IconFolderOpen_SvgComponent, 'folder_open');
|
|
87891
|
+
/* harmony default export */ const IconFolderOpen = (IconFolderOpen_IconComponent);
|
|
87892
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolder.js
|
|
87893
|
+
|
|
87894
|
+
|
|
87895
|
+
function IconFolder_SvgComponent(props) {
|
|
87896
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
87897
|
+
viewBox: "0 0 24 24",
|
|
87898
|
+
fill: "none",
|
|
87899
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
87900
|
+
width: "1em",
|
|
87901
|
+
height: "1em",
|
|
87902
|
+
focusable: false,
|
|
87903
|
+
"aria-hidden": true
|
|
87904
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87905
|
+
d: "M5 2C3.34315 2 2 3.34315 2 5V8H22C22 6 21 4 19 4H12.5523C11.8711 4 11.2102 3.76816 10.6783 3.34261L9.54783 2.43826C9.1932 2.15456 8.75258 2 8.29844 2H5Z",
|
|
87906
|
+
fill: "currentColor"
|
|
87907
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87908
|
+
d: "M22 10H2V19C2 20.6569 3.34315 22 5 22H19C20.6569 22 22 20.6569 22 19V10Z",
|
|
87909
|
+
fill: "currentColor"
|
|
87910
|
+
}));
|
|
87911
|
+
}
|
|
87912
|
+
const IconFolder_IconComponent = convertIcon(IconFolder_SvgComponent, 'folder');
|
|
87913
|
+
/* harmony default export */ const IconFolder = (IconFolder_IconComponent);
|
|
88508
87914
|
;// CONCATENATED MODULE: ./tree/treeNode.tsx
|
|
88509
87915
|
|
|
88510
87916
|
|
|
@@ -88716,7 +88122,7 @@ class TreeNode extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
88716
88122
|
} = this.props;
|
|
88717
88123
|
if (isFunction_default()(renderLabel)) {
|
|
88718
88124
|
return renderLabel(label, data);
|
|
88719
|
-
} else if (isString_default()(label) && filtered && keyword
|
|
88125
|
+
} else if (isString_default()(label) && filtered && keyword) {
|
|
88720
88126
|
return getHighLightTextHTML({
|
|
88721
88127
|
sourceString: label,
|
|
88722
88128
|
searchWords: [keyword],
|
|
@@ -88866,7 +88272,6 @@ class TreeNode extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
88866
88272
|
[`${treeNode_prefixcls}-selected`]: selected,
|
|
88867
88273
|
[`${treeNode_prefixcls}-active`]: !multiple && active,
|
|
88868
88274
|
[`${treeNode_prefixcls}-ellipsis`]: labelEllipsis,
|
|
88869
|
-
[`${treeNode_prefixcls}-filtered`]: filtered && treeNodeFilterProp !== 'label',
|
|
88870
88275
|
[`${treeNode_prefixcls}-drag-over`]: !disabled && dragOver,
|
|
88871
88276
|
[`${treeNode_prefixcls}-draggable`]: !disabled && draggable && !renderFullLabel,
|
|
88872
88277
|
// When draggable + renderFullLabel is enabled, the default style
|
|
@@ -89106,6 +88511,27 @@ class NodeList extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
89106
88511
|
NodeList.contextType = treeContext;
|
|
89107
88512
|
// EXTERNAL MODULE: ../semi-foundation/tree/tree.scss
|
|
89108
88513
|
var tree = __webpack_require__("TKyF");
|
|
88514
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSearch.js
|
|
88515
|
+
|
|
88516
|
+
|
|
88517
|
+
function IconSearch_SvgComponent(props) {
|
|
88518
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
88519
|
+
viewBox: "0 0 24 24",
|
|
88520
|
+
fill: "none",
|
|
88521
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
88522
|
+
width: "1em",
|
|
88523
|
+
height: "1em",
|
|
88524
|
+
focusable: false,
|
|
88525
|
+
"aria-hidden": true
|
|
88526
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
88527
|
+
fillRule: "evenodd",
|
|
88528
|
+
clipRule: "evenodd",
|
|
88529
|
+
d: "M10.5 2C5.80558 2 2 5.80558 2 10.5C2 15.1944 5.80558 19 10.5 19C12.3054 19 13.9794 18.4371 15.356 17.4773L19.4393 21.5606C20.0251 22.1464 20.9749 22.1464 21.5606 21.5606C22.1464 20.9749 22.1464 20.0251 21.5606 19.4393L17.4773 15.356C18.4371 13.9794 19 12.3054 19 10.5C19 5.80558 15.1944 2 10.5 2ZM5 10.5C5 7.46243 7.46243 5 10.5 5C13.5376 5 16 7.46243 16 10.5C16 13.5376 13.5376 16 10.5 16C7.46243 16 5 13.5376 5 10.5Z",
|
|
88530
|
+
fill: "currentColor"
|
|
88531
|
+
}));
|
|
88532
|
+
}
|
|
88533
|
+
const IconSearch_IconComponent = convertIcon(IconSearch_SvgComponent, 'search');
|
|
88534
|
+
/* harmony default export */ const IconSearch = (IconSearch_IconComponent);
|
|
89109
88535
|
;// CONCATENATED MODULE: ./tree/index.tsx
|
|
89110
88536
|
|
|
89111
88537
|
|
|
@@ -93006,6 +92432,38 @@ class UploadFoundation extends foundation {
|
|
|
93006
92432
|
}
|
|
93007
92433
|
}
|
|
93008
92434
|
/* harmony default export */ const upload_foundation = (UploadFoundation);
|
|
92435
|
+
;// CONCATENATED MODULE: ../semi-foundation/upload/fileCardFoundation.ts
|
|
92436
|
+
|
|
92437
|
+
class FileCardFoundation extends foundation {
|
|
92438
|
+
constructor(adapter) {
|
|
92439
|
+
super(Object.assign({}, adapter));
|
|
92440
|
+
}
|
|
92441
|
+
handleImageError(error) {
|
|
92442
|
+
this._adapter.updateFallbackPreview(true);
|
|
92443
|
+
}
|
|
92444
|
+
}
|
|
92445
|
+
/* harmony default export */ const fileCardFoundation = (FileCardFoundation);
|
|
92446
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRefresh.js
|
|
92447
|
+
|
|
92448
|
+
|
|
92449
|
+
function IconRefresh_SvgComponent(props) {
|
|
92450
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
92451
|
+
viewBox: "0 0 24 24",
|
|
92452
|
+
fill: "none",
|
|
92453
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
92454
|
+
width: "1em",
|
|
92455
|
+
height: "1em",
|
|
92456
|
+
focusable: false,
|
|
92457
|
+
"aria-hidden": true
|
|
92458
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
92459
|
+
fillRule: "evenodd",
|
|
92460
|
+
clipRule: "evenodd",
|
|
92461
|
+
d: "M4.49993 11.9998C4.49993 7.85775 7.85775 4.49993 11.9998 4.49993C14.6403 4.49993 16.9645 5.86506 18.3012 7.9305L16.2939 7.52902C15.4815 7.36656 14.6913 7.89337 14.5288 8.7057C14.3664 9.51803 14.8932 10.3083 15.7055 10.4707L20.7055 11.4707C21.4643 11.6225 22.214 11.1721 22.4363 10.4309L23.9363 5.43095C24.1744 4.63747 23.7241 3.80126 22.9307 3.56321C22.1372 3.32517 21.301 3.77543 21.0629 4.56891L20.6287 6.01635C18.7332 3.28781 15.5765 1.49998 11.9998 1.49998C6.20092 1.49998 1.49998 6.20092 1.49998 11.9998C1.49998 17.7987 6.20092 22.4997 11.9998 22.4997C16.5739 22.4997 20.4611 19.5757 21.9018 15.4996C22.1779 14.7186 21.7685 13.8616 20.9874 13.5855C20.2064 13.3095 19.3494 13.7189 19.0733 14.4999C18.0431 17.4149 15.263 19.4997 11.9998 19.4997C7.85775 19.4997 4.49993 16.1419 4.49993 11.9998Z",
|
|
92462
|
+
fill: "currentColor"
|
|
92463
|
+
}));
|
|
92464
|
+
}
|
|
92465
|
+
const IconRefresh_IconComponent = convertIcon(IconRefresh_SvgComponent, 'refresh');
|
|
92466
|
+
/* harmony default export */ const IconRefresh = (IconRefresh_IconComponent);
|
|
93009
92467
|
;// CONCATENATED MODULE: ./_base/reactUtils.ts
|
|
93010
92468
|
// https://stackoverflow.com/questions/33199959/how-to-detect-a-react-component-vs-a-react-element
|
|
93011
92469
|
|
|
@@ -93046,6 +92504,8 @@ function isEmptyChildren(children) {
|
|
|
93046
92504
|
|
|
93047
92505
|
|
|
93048
92506
|
|
|
92507
|
+
|
|
92508
|
+
|
|
93049
92509
|
const fileCard_prefixCls = upload_constants_cssClasses.PREFIX;
|
|
93050
92510
|
const ErrorSvg = function () {
|
|
93051
92511
|
let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
@@ -93115,7 +92575,21 @@ const DirectorySvg = function () {
|
|
|
93115
92575
|
strokeLinejoin: "round"
|
|
93116
92576
|
}));
|
|
93117
92577
|
};
|
|
93118
|
-
class FileCard extends
|
|
92578
|
+
class FileCard extends BaseComponent {
|
|
92579
|
+
constructor(props) {
|
|
92580
|
+
super(props);
|
|
92581
|
+
this.state = {
|
|
92582
|
+
fallbackPreview: false
|
|
92583
|
+
};
|
|
92584
|
+
this.foundation = new fileCardFoundation(this.adapter);
|
|
92585
|
+
}
|
|
92586
|
+
get adapter() {
|
|
92587
|
+
return Object.assign(Object.assign({}, super.adapter), {
|
|
92588
|
+
updateFallbackPreview: fallbackPreview => this.setState({
|
|
92589
|
+
fallbackPreview
|
|
92590
|
+
})
|
|
92591
|
+
});
|
|
92592
|
+
}
|
|
93119
92593
|
transSize(size) {
|
|
93120
92594
|
if (typeof size === 'number') {
|
|
93121
92595
|
return getFileSize(size);
|
|
@@ -93176,6 +92650,9 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93176
92650
|
}, icon) : null;
|
|
93177
92651
|
}
|
|
93178
92652
|
renderPic(locale) {
|
|
92653
|
+
const {
|
|
92654
|
+
fallbackPreview
|
|
92655
|
+
} = this.state;
|
|
93179
92656
|
const {
|
|
93180
92657
|
url,
|
|
93181
92658
|
percent,
|
|
@@ -93188,7 +92665,9 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93188
92665
|
renderPicPreviewIcon,
|
|
93189
92666
|
renderThumbnail,
|
|
93190
92667
|
name,
|
|
93191
|
-
index
|
|
92668
|
+
index,
|
|
92669
|
+
picHeight,
|
|
92670
|
+
picWidth
|
|
93192
92671
|
} = this.props;
|
|
93193
92672
|
const showProgress = status === upload_constants_strings.FILE_STATUS_UPLOADING && percent !== 100;
|
|
93194
92673
|
const showRetry = status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL && this.props.showRetry;
|
|
@@ -93196,6 +92675,7 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93196
92675
|
const showPreview = status === upload_constants_strings.FILE_STATUS_SUCCESS && !this.props.showReplace;
|
|
93197
92676
|
const filePicCardCls = classnames_default()({
|
|
93198
92677
|
[`${fileCard_prefixCls}-picture-file-card`]: true,
|
|
92678
|
+
[`${fileCard_prefixCls}-picture-file-card-preview-fallback`]: fallbackPreview,
|
|
93199
92679
|
[`${fileCard_prefixCls}-picture-file-card-disabled`]: disabled,
|
|
93200
92680
|
[`${fileCard_prefixCls}-picture-file-card-show-pointer`]: typeof onPreviewClick !== 'undefined',
|
|
93201
92681
|
[`${fileCard_prefixCls}-picture-file-card-error`]: status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL,
|
|
@@ -93237,14 +92717,29 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93237
92717
|
const picInfo = typeof renderPicInfo === 'function' ? renderPicInfo(this.props) : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
93238
92718
|
className: `${fileCard_prefixCls}-picture-file-card-pic-info`
|
|
93239
92719
|
}, index + 1);
|
|
93240
|
-
|
|
92720
|
+
let imgStyle = {};
|
|
92721
|
+
let itemStyle = style ? Object.assign({}, style) : {};
|
|
92722
|
+
if (picHeight) {
|
|
92723
|
+
itemStyle.height = picHeight;
|
|
92724
|
+
imgStyle.height = picHeight;
|
|
92725
|
+
}
|
|
92726
|
+
if (picWidth) {
|
|
92727
|
+
itemStyle.width = picWidth;
|
|
92728
|
+
imgStyle.width = picWidth;
|
|
92729
|
+
}
|
|
92730
|
+
const defaultThumbTail = !fallbackPreview ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("img", {
|
|
93241
92731
|
src: url,
|
|
93242
|
-
alt: name
|
|
92732
|
+
alt: name,
|
|
92733
|
+
onError: error => this.foundation.handleImageError(error),
|
|
92734
|
+
style: imgStyle
|
|
92735
|
+
}) : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(IconFile, {
|
|
92736
|
+
size: "large"
|
|
93243
92737
|
});
|
|
92738
|
+
const thumbnail = typeof renderThumbnail === 'function' ? renderThumbnail(this.props) : defaultThumbTail;
|
|
93244
92739
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
93245
92740
|
role: "listitem",
|
|
93246
92741
|
className: filePicCardCls,
|
|
93247
|
-
style:
|
|
92742
|
+
style: itemStyle,
|
|
93248
92743
|
onClick: onPreviewClick
|
|
93249
92744
|
}, thumbnail, showProgress ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(progress_0, {
|
|
93250
92745
|
percent: percent,
|
|
@@ -93269,6 +92764,9 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93269
92764
|
onPreviewClick,
|
|
93270
92765
|
renderFileOperation
|
|
93271
92766
|
} = this.props;
|
|
92767
|
+
const {
|
|
92768
|
+
fallbackPreview
|
|
92769
|
+
} = this.state;
|
|
93272
92770
|
const fileCardCls = classnames_default()({
|
|
93273
92771
|
[`${fileCard_prefixCls}-file-card`]: true,
|
|
93274
92772
|
[`${fileCard_prefixCls}-file-card-fail`]: status === upload_constants_strings.FILE_STATUS_VALID_FAIL || status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL,
|
|
@@ -93276,7 +92774,7 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93276
92774
|
});
|
|
93277
92775
|
const previewCls = classnames_default()({
|
|
93278
92776
|
[`${fileCard_prefixCls}-file-card-preview`]: true,
|
|
93279
|
-
[`${fileCard_prefixCls}-file-card-preview-placeholder`]: !preview || previewFile
|
|
92777
|
+
[`${fileCard_prefixCls}-file-card-preview-placeholder`]: !preview || previewFile || fallbackPreview
|
|
93280
92778
|
});
|
|
93281
92779
|
const infoCls = `${fileCard_prefixCls}-file-card-info`;
|
|
93282
92780
|
const closeCls = `${fileCard_prefixCls}-file-card-close`;
|
|
@@ -93286,9 +92784,10 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93286
92784
|
const showRetry = status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL && propsShowRetry;
|
|
93287
92785
|
const showReplace = status === upload_constants_strings.FILE_STATUS_SUCCESS && propsShowReplace;
|
|
93288
92786
|
const fileSize = this.transSize(size);
|
|
93289
|
-
let previewContent = preview ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("img", {
|
|
92787
|
+
let previewContent = preview && !fallbackPreview ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("img", {
|
|
93290
92788
|
src: url,
|
|
93291
|
-
alt: name
|
|
92789
|
+
alt: name,
|
|
92790
|
+
onError: error => this.foundation.handleImageError(error)
|
|
93292
92791
|
}) : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(IconFile, {
|
|
93293
92792
|
size: "large"
|
|
93294
92793
|
});
|
|
@@ -93388,6 +92887,8 @@ FileCard.propTypes = {
|
|
|
93388
92887
|
percent: (prop_types_default()).number,
|
|
93389
92888
|
preview: (prop_types_default()).bool,
|
|
93390
92889
|
previewFile: (prop_types_default()).func,
|
|
92890
|
+
picWidth: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
92891
|
+
picHeight: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
93391
92892
|
showReplace: (prop_types_default()).bool,
|
|
93392
92893
|
showRetry: (prop_types_default()).bool,
|
|
93393
92894
|
size: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
@@ -93406,6 +92907,27 @@ FileCard.defaultProps = {
|
|
|
93406
92907
|
size: ''
|
|
93407
92908
|
};
|
|
93408
92909
|
/* harmony default export */ const fileCard = (FileCard);
|
|
92910
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUpload.js
|
|
92911
|
+
|
|
92912
|
+
|
|
92913
|
+
function IconUpload_SvgComponent(props) {
|
|
92914
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
92915
|
+
viewBox: "0 0 24 24",
|
|
92916
|
+
fill: "none",
|
|
92917
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
92918
|
+
width: "1em",
|
|
92919
|
+
height: "1em",
|
|
92920
|
+
focusable: false,
|
|
92921
|
+
"aria-hidden": true
|
|
92922
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
92923
|
+
fillRule: "evenodd",
|
|
92924
|
+
clipRule: "evenodd",
|
|
92925
|
+
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM12.3201 8.26674C12.1347 8.11222 11.8653 8.11222 11.6799 8.26674L6.53047 12.5579C6.35084 12.7076 6.45669 13 6.69051 13H10V17.5C10 17.7761 10.2239 18 10.5 18H13.5C13.7761 18 14 17.7761 14 17.5V13H17.3095C17.5433 13 17.6492 12.7076 17.4695 12.5579L12.3201 8.26674Z",
|
|
92926
|
+
fill: "currentColor"
|
|
92927
|
+
}));
|
|
92928
|
+
}
|
|
92929
|
+
const IconUpload_IconComponent = convertIcon(IconUpload_SvgComponent, 'upload');
|
|
92930
|
+
/* harmony default export */ const IconUpload = (IconUpload_IconComponent);
|
|
93409
92931
|
// EXTERNAL MODULE: ../semi-foundation/upload/upload.scss
|
|
93410
92932
|
var upload = __webpack_require__("kbHv");
|
|
93411
92933
|
;// CONCATENATED MODULE: ./upload/index.tsx
|
|
@@ -93520,7 +93042,9 @@ class Upload extends BaseComponent {
|
|
|
93520
93042
|
renderFileItem,
|
|
93521
93043
|
renderThumbnail,
|
|
93522
93044
|
disabled,
|
|
93523
|
-
onPreviewClick
|
|
93045
|
+
onPreviewClick,
|
|
93046
|
+
picWidth,
|
|
93047
|
+
picHeight
|
|
93524
93048
|
} = this.props;
|
|
93525
93049
|
const onRemove = () => this.remove(file);
|
|
93526
93050
|
const onRetry = () => {
|
|
@@ -93544,7 +93068,9 @@ class Upload extends BaseComponent {
|
|
|
93544
93068
|
renderFileOperation,
|
|
93545
93069
|
renderThumbnail,
|
|
93546
93070
|
onReplace,
|
|
93547
|
-
onPreviewClick: typeof onPreviewClick !== 'undefined' ? () => this.foundation.handlePreviewClick(file) : undefined
|
|
93071
|
+
onPreviewClick: typeof onPreviewClick !== 'undefined' ? () => this.foundation.handlePreviewClick(file) : undefined,
|
|
93072
|
+
picWidth,
|
|
93073
|
+
picHeight
|
|
93548
93074
|
});
|
|
93549
93075
|
if (status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL && !validateMessage) {
|
|
93550
93076
|
fileCardProps.validateMessage = locale.fail;
|
|
@@ -93577,7 +93103,9 @@ class Upload extends BaseComponent {
|
|
|
93577
93103
|
disabled,
|
|
93578
93104
|
children,
|
|
93579
93105
|
draggable,
|
|
93580
|
-
hotSpotLocation
|
|
93106
|
+
hotSpotLocation,
|
|
93107
|
+
picHeight,
|
|
93108
|
+
picWidth
|
|
93581
93109
|
} = this.props;
|
|
93582
93110
|
const {
|
|
93583
93111
|
fileList: stateFileList,
|
|
@@ -93601,7 +93129,11 @@ class Upload extends BaseComponent {
|
|
|
93601
93129
|
const addContentProps = {
|
|
93602
93130
|
role: 'button',
|
|
93603
93131
|
className: uploadAddCls,
|
|
93604
|
-
onClick: this.onClick
|
|
93132
|
+
onClick: this.onClick,
|
|
93133
|
+
style: {
|
|
93134
|
+
height: picHeight,
|
|
93135
|
+
width: picWidth
|
|
93136
|
+
}
|
|
93605
93137
|
};
|
|
93606
93138
|
const containerProps = {
|
|
93607
93139
|
className: fileListCls
|
|
@@ -93982,6 +93514,8 @@ Upload.propTypes = {
|
|
|
93982
93514
|
previewFile: (prop_types_default()).func,
|
|
93983
93515
|
prompt: (prop_types_default()).node,
|
|
93984
93516
|
promptPosition: prop_types_default().oneOf(upload_constants_strings.PROMPT_POSITION),
|
|
93517
|
+
picWidth: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
93518
|
+
picHeight: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
93985
93519
|
renderFileItem: (prop_types_default()).func,
|
|
93986
93520
|
renderPicPreviewIcon: (prop_types_default()).func,
|
|
93987
93521
|
renderFileOperation: (prop_types_default()).func,
|
|
@@ -96450,6 +95984,7 @@ Schema.validators = validators;
|
|
|
96450
95984
|
|
|
96451
95985
|
;// CONCATENATED MODULE: ../semi-foundation/form/utils.ts
|
|
96452
95986
|
|
|
95987
|
+
|
|
96453
95988
|
var form_utils_rest = undefined && undefined.__rest || function (s, e) {
|
|
96454
95989
|
var t = {};
|
|
96455
95990
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
@@ -96459,6 +95994,7 @@ var form_utils_rest = undefined && undefined.__rest || function (s, e) {
|
|
|
96459
95994
|
return t;
|
|
96460
95995
|
};
|
|
96461
95996
|
|
|
95997
|
+
|
|
96462
95998
|
/**
|
|
96463
95999
|
*
|
|
96464
96000
|
* @param WrappedComponent React.ComponentType | any
|
|
@@ -96501,16 +96037,40 @@ function utils_isValid(errors) {
|
|
|
96501
96037
|
}
|
|
96502
96038
|
return valid;
|
|
96503
96039
|
}
|
|
96504
|
-
|
|
96505
|
-
|
|
96040
|
+
/**
|
|
96041
|
+
* trigger transform rule
|
|
96042
|
+
1. If the user has set fieldProps, follow the user's fieldProps
|
|
96043
|
+
2. If the user does not set fieldProps, follow formProps
|
|
96044
|
+
3. If there is no formProps, follow the change
|
|
96045
|
+
4. If it is an array, follow the array, if it is not an array (pure string), convert it to a string array
|
|
96046
|
+
*/
|
|
96047
|
+
function transformTrigger(fieldTrigger, formTrigger) {
|
|
96506
96048
|
let result = [];
|
|
96507
|
-
|
|
96508
|
-
|
|
96049
|
+
let finalResult = [];
|
|
96050
|
+
if (!isUndefined_default()(fieldTrigger)) {
|
|
96051
|
+
result = fieldTrigger;
|
|
96052
|
+
} else if (!isUndefined_default()(formTrigger)) {
|
|
96053
|
+
result = formTrigger;
|
|
96054
|
+
} else {
|
|
96055
|
+
result = form_constants_strings.DEFAULT_TRIGGER;
|
|
96509
96056
|
}
|
|
96510
|
-
if (
|
|
96511
|
-
|
|
96057
|
+
if (Array.isArray(result)) {
|
|
96058
|
+
finalResult = result;
|
|
96059
|
+
}
|
|
96060
|
+
if (typeof result === 'string') {
|
|
96061
|
+
finalResult[0] = result;
|
|
96062
|
+
}
|
|
96063
|
+
return finalResult;
|
|
96064
|
+
}
|
|
96065
|
+
function transformDefaultBooleanAPI(fieldProp, formProp) {
|
|
96066
|
+
let defaultVal = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
96067
|
+
if (!isUndefined_default()(fieldProp)) {
|
|
96068
|
+
return fieldProp;
|
|
96069
|
+
} else if (!isUndefined_default()(formProp)) {
|
|
96070
|
+
return formProp;
|
|
96071
|
+
} else {
|
|
96072
|
+
return defaultVal;
|
|
96512
96073
|
}
|
|
96513
|
-
return result;
|
|
96514
96074
|
}
|
|
96515
96075
|
function mergeOptions(opts, props) {
|
|
96516
96076
|
// Opts: different types of component identification value, value change callback function may be inconsistent, used to adapt 1, input, select 2, radio, checkbox 3, switch
|
|
@@ -96534,15 +96094,13 @@ function mergeOptions(opts, props) {
|
|
|
96534
96094
|
}
|
|
96535
96095
|
function mergeProps(props) {
|
|
96536
96096
|
const defaultProps = {
|
|
96537
|
-
trigger: 'change',
|
|
96538
96097
|
// validateStatus: 'default',
|
|
96539
96098
|
allowEmptyString: false,
|
|
96540
96099
|
allowEmpty: false,
|
|
96541
96100
|
emptyValue: '',
|
|
96542
96101
|
noLabel: false,
|
|
96543
96102
|
noErrorMessage: false,
|
|
96544
|
-
isInInputGroup: false
|
|
96545
|
-
stopValidateWithError: false
|
|
96103
|
+
isInInputGroup: false
|
|
96546
96104
|
};
|
|
96547
96105
|
let _a = Object.assign(Object.assign({}, defaultProps), props),
|
|
96548
96106
|
{
|
|
@@ -96597,7 +96155,6 @@ function mergeProps(props) {
|
|
|
96597
96155
|
initValue = cloneDeep_default()(initValue);
|
|
96598
96156
|
}
|
|
96599
96157
|
const required = isRequired(rules);
|
|
96600
|
-
trigger = transformTrigger(trigger);
|
|
96601
96158
|
emptyValue = typeof emptyValue !== 'undefined' ? emptyValue : '';
|
|
96602
96159
|
return {
|
|
96603
96160
|
field,
|
|
@@ -97853,6 +97410,15 @@ function withField(Component, opts) {
|
|
|
97853
97410
|
warning(true, '[Semi Form]: Field Component must be use inside the Form, please check your dom declaration');
|
|
97854
97411
|
return null;
|
|
97855
97412
|
}
|
|
97413
|
+
let formProps = updater.getFormProps(['labelPosition', 'labelWidth', 'labelAlign', 'labelCol', 'wrapperCol', 'disabled', 'showValidateIcon', 'extraTextPosition', 'stopValidateWithError', 'trigger']);
|
|
97414
|
+
let mergeLabelPos = labelPosition || formProps.labelPosition;
|
|
97415
|
+
let mergeLabelWidth = labelWidth || formProps.labelWidth;
|
|
97416
|
+
let mergeLabelAlign = labelAlign || formProps.labelAlign;
|
|
97417
|
+
let mergeLabelCol = labelCol || formProps.labelCol;
|
|
97418
|
+
let mergeWrapperCol = wrapperCol || formProps.wrapperCol;
|
|
97419
|
+
let mergeExtraPos = extraTextPosition || formProps.extraTextPosition || 'bottom';
|
|
97420
|
+
let mergeStopValidateWithError = transformDefaultBooleanAPI(stopValidateWithError, formProps.stopValidateWithError, false);
|
|
97421
|
+
let mergeTrigger = transformTrigger(trigger, formProps.trigger);
|
|
97856
97422
|
// To prevent user forgetting to pass the field, use undefined as the key, and updater.getValue will get the wrong value.
|
|
97857
97423
|
let initValueInFormOpts = typeof field !== 'undefined' ? updater.getValue(field) : undefined; // Get the init value of form from formP rops.init Values Get the initial value set in the initValues of Form
|
|
97858
97424
|
let initVal = typeof initValue !== 'undefined' ? initValue : initValueInFormOpts;
|
|
@@ -97866,7 +97432,7 @@ function withField(Component, opts) {
|
|
|
97866
97432
|
} catch (err) {}
|
|
97867
97433
|
// FIXME typeof initVal
|
|
97868
97434
|
const [value, setValue, getVal] = useStateWithGetter(typeof initVal !== undefined ? initVal : null);
|
|
97869
|
-
const validateOnMount =
|
|
97435
|
+
const validateOnMount = mergeTrigger.includes('mount');
|
|
97870
97436
|
allowEmpty = allowEmpty || updater.getFormProps().allowEmpty;
|
|
97871
97437
|
// Error information: Array, String, undefined
|
|
97872
97438
|
const [error, setError, getError] = useStateWithGetter();
|
|
@@ -97925,7 +97491,7 @@ function withField(Component, opts) {
|
|
|
97925
97491
|
};
|
|
97926
97492
|
const rootPromise = new Promise((resolve, reject) => {
|
|
97927
97493
|
validator.validate(model, {
|
|
97928
|
-
first:
|
|
97494
|
+
first: mergeStopValidateWithError
|
|
97929
97495
|
}, (errors, fields) => {}).then(res => {
|
|
97930
97496
|
if (validatePromise.current !== rootPromise) {
|
|
97931
97497
|
return;
|
|
@@ -98073,7 +97639,7 @@ function withField(Component, opts) {
|
|
|
98073
97639
|
});
|
|
98074
97640
|
updateValue(val);
|
|
98075
97641
|
// only validate when trigger includes change
|
|
98076
|
-
if (
|
|
97642
|
+
if (mergeTrigger.includes('change')) {
|
|
98077
97643
|
fieldValidate(val);
|
|
98078
97644
|
}
|
|
98079
97645
|
};
|
|
@@ -98084,7 +97650,7 @@ function withField(Component, opts) {
|
|
|
98084
97650
|
if (!touched) {
|
|
98085
97651
|
updateTouched(true);
|
|
98086
97652
|
}
|
|
98087
|
-
if (
|
|
97653
|
+
if (mergeTrigger.includes('blur')) {
|
|
98088
97654
|
let val = getVal();
|
|
98089
97655
|
fieldValidate(val);
|
|
98090
97656
|
}
|
|
@@ -98144,13 +97710,6 @@ function withField(Component, opts) {
|
|
|
98144
97710
|
};
|
|
98145
97711
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
98146
97712
|
}, [field]);
|
|
98147
|
-
let formProps = updater.getFormProps(['labelPosition', 'labelWidth', 'labelAlign', 'labelCol', 'wrapperCol', 'disabled', 'showValidateIcon', 'extraTextPosition']);
|
|
98148
|
-
let mergeLabelPos = labelPosition || formProps.labelPosition;
|
|
98149
|
-
let mergeLabelWidth = labelWidth || formProps.labelWidth;
|
|
98150
|
-
let mergeLabelAlign = labelAlign || formProps.labelAlign;
|
|
98151
|
-
let mergeLabelCol = labelCol || formProps.labelCol;
|
|
98152
|
-
let mergeWrapperCol = wrapperCol || formProps.wrapperCol;
|
|
98153
|
-
let mergeExtraPos = extraTextPosition || formProps.extraTextPosition || 'bottom';
|
|
98154
97713
|
// id attribute to improve a11y
|
|
98155
97714
|
const a11yId = id ? id : field;
|
|
98156
97715
|
const labelId = `${a11yId}-label`;
|
|
@@ -98518,10 +98077,12 @@ class Form extends BaseComponent {
|
|
|
98518
98077
|
allowEmpty,
|
|
98519
98078
|
autoScrollToError,
|
|
98520
98079
|
showValidateIcon,
|
|
98080
|
+
stopValidateWithError,
|
|
98521
98081
|
extraTextPosition,
|
|
98522
|
-
id
|
|
98082
|
+
id,
|
|
98083
|
+
trigger
|
|
98523
98084
|
} = _a,
|
|
98524
|
-
rest = baseForm_rest(_a, ["children", "getFormApi", "onChange", "onSubmit", "onSubmitFail", "onValueChange", "component", "render", "validateFields", "initValues", "layout", "style", "className", "labelPosition", "labelWidth", "labelAlign", "labelCol", "wrapperCol", "allowEmpty", "autoScrollToError", "showValidateIcon", "extraTextPosition", "id"]);
|
|
98085
|
+
rest = baseForm_rest(_a, ["children", "getFormApi", "onChange", "onSubmit", "onSubmitFail", "onValueChange", "component", "render", "validateFields", "initValues", "layout", "style", "className", "labelPosition", "labelWidth", "labelAlign", "labelCol", "wrapperCol", "allowEmpty", "autoScrollToError", "showValidateIcon", "stopValidateWithError", "extraTextPosition", "id", "trigger"]);
|
|
98525
98086
|
const formCls = classnames_default()(baseForm_prefix, className, {
|
|
98526
98087
|
[baseForm_prefix + '-vertical']: layout === 'vertical',
|
|
98527
98088
|
[baseForm_prefix + '-horizontal']: layout === 'horizontal'
|
|
@@ -98554,25 +98115,27 @@ Form.propTypes = {
|
|
|
98554
98115
|
onReset: (prop_types_default()).func,
|
|
98555
98116
|
// Triggered when the value of the form is updated, only when the value of the subfield changes. The entry parameter is formState.values
|
|
98556
98117
|
onValueChange: (prop_types_default()).func,
|
|
98557
|
-
|
|
98558
|
-
|
|
98118
|
+
autoScrollToError: prop_types_default().oneOfType([(prop_types_default()).bool, (prop_types_default()).object]),
|
|
98119
|
+
allowEmpty: (prop_types_default()).bool,
|
|
98120
|
+
className: (prop_types_default()).string,
|
|
98559
98121
|
component: prop_types_default().oneOfType([(prop_types_default()).node, (prop_types_default()).func]),
|
|
98560
|
-
|
|
98122
|
+
disabled: (prop_types_default()).bool,
|
|
98123
|
+
extraTextPosition: prop_types_default().oneOf(form_constants_strings.EXTRA_POS),
|
|
98124
|
+
getFormApi: (prop_types_default()).func,
|
|
98125
|
+
initValues: (prop_types_default()).object,
|
|
98561
98126
|
validateFields: (prop_types_default()).func,
|
|
98562
|
-
style: (prop_types_default()).object,
|
|
98563
|
-
className: (prop_types_default()).string,
|
|
98564
98127
|
layout: prop_types_default().oneOf(form_constants_strings.LAYOUT),
|
|
98565
98128
|
labelPosition: prop_types_default().oneOf(form_constants_strings.LABEL_POS),
|
|
98566
98129
|
labelWidth: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
98567
98130
|
labelAlign: prop_types_default().oneOf(form_constants_strings.LABEL_ALIGN),
|
|
98568
98131
|
labelCol: (prop_types_default()).object,
|
|
98569
|
-
|
|
98570
|
-
|
|
98571
|
-
autoScrollToError: prop_types_default().oneOfType([(prop_types_default()).bool, (prop_types_default()).object]),
|
|
98572
|
-
disabled: (prop_types_default()).bool,
|
|
98132
|
+
render: (prop_types_default()).func,
|
|
98133
|
+
style: (prop_types_default()).object,
|
|
98573
98134
|
showValidateIcon: (prop_types_default()).bool,
|
|
98574
|
-
|
|
98575
|
-
id: (prop_types_default()).string
|
|
98135
|
+
stopValidateWithError: (prop_types_default()).bool,
|
|
98136
|
+
id: (prop_types_default()).string,
|
|
98137
|
+
wrapperCol: (prop_types_default()).object,
|
|
98138
|
+
trigger: prop_types_default().oneOfType([prop_types_default().oneOf(['blur', 'change', 'custom', 'mount']), prop_types_default().arrayOf(prop_types_default().oneOf(['blur', 'change', 'custom', 'mount']))])
|
|
98576
98139
|
};
|
|
98577
98140
|
Form.defaultProps = {
|
|
98578
98141
|
onChange: (noop_default()),
|
|
@@ -98875,6 +98438,69 @@ const image_constants_cssClasses = {
|
|
|
98875
98438
|
PREFIX: `${BASE_CLASS_PREFIX}-image`
|
|
98876
98439
|
};
|
|
98877
98440
|
|
|
98441
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUploadError.js
|
|
98442
|
+
|
|
98443
|
+
|
|
98444
|
+
function IconUploadError_SvgComponent(props) {
|
|
98445
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98446
|
+
viewBox: "0 0 24 24",
|
|
98447
|
+
fill: "none",
|
|
98448
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98449
|
+
width: "1em",
|
|
98450
|
+
height: "1em",
|
|
98451
|
+
focusable: false,
|
|
98452
|
+
"aria-hidden": true
|
|
98453
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98454
|
+
fillRule: "evenodd",
|
|
98455
|
+
clipRule: "evenodd",
|
|
98456
|
+
d: "M22.9998 12.0001C22.9998 18.0753 18.0749 23.0001 11.9998 23.0001C5.92463 23.0001 0.999756 18.0753 0.999756 12.0001C0.999756 5.92499 5.92463 1.00012 11.9998 1.00012C18.0749 1.00012 22.9998 5.92499 22.9998 12.0001ZM13.4998 17.5C13.4998 16.6718 12.8282 16.0001 11.9998 16.0001C11.1713 16.0001 10.4998 16.6718 10.4998 17.5C10.4998 18.3285 11.1713 19 11.9998 19C12.8282 19 13.4998 18.3285 13.4998 17.5ZM11.9998 5.00011C10.9136 5.00011 10.0505 5.91257 10.1107 6.99704L10.4166 12.5024C10.4632 13.3427 11.1582 14.0001 11.9998 14.0001C12.8413 14.0001 13.5363 13.3427 13.583 12.5024L13.8888 6.99704C13.9491 5.91257 13.0859 5.00011 11.9998 5.00011Z",
|
|
98457
|
+
fill: "currentColor"
|
|
98458
|
+
}));
|
|
98459
|
+
}
|
|
98460
|
+
const IconUploadError_IconComponent = convertIcon(IconUploadError_SvgComponent, 'upload_error');
|
|
98461
|
+
/* harmony default export */ const IconUploadError = (IconUploadError_IconComponent);
|
|
98462
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowLeft.js
|
|
98463
|
+
|
|
98464
|
+
|
|
98465
|
+
function IconArrowLeft_SvgComponent(props) {
|
|
98466
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98467
|
+
viewBox: "0 0 24 24",
|
|
98468
|
+
fill: "none",
|
|
98469
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98470
|
+
width: "1em",
|
|
98471
|
+
height: "1em",
|
|
98472
|
+
focusable: false,
|
|
98473
|
+
"aria-hidden": true
|
|
98474
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98475
|
+
fillRule: "evenodd",
|
|
98476
|
+
clipRule: "evenodd",
|
|
98477
|
+
d: "M23 12C23 12.8284 22.3284 13.5 21.5 13.5L6.12132 13.5L12.5607 19.9393C13.1464 20.5251 13.1464 21.4749 12.5607 22.0607C11.9749 22.6464 11.0251 22.6464 10.4393 22.0607L1.43934 13.0607C0.853554 12.4749 0.853554 11.5251 1.43934 10.9393L10.4393 1.93934C11.0251 1.35355 11.9749 1.35355 12.5607 1.93934C13.1464 2.52513 13.1464 3.47487 12.5607 4.06066L6.12132 10.5L21.5 10.5C22.3284 10.5 23 11.1716 23 12Z",
|
|
98478
|
+
fill: "currentColor"
|
|
98479
|
+
}));
|
|
98480
|
+
}
|
|
98481
|
+
const IconArrowLeft_IconComponent = convertIcon(IconArrowLeft_SvgComponent, 'arrow_left');
|
|
98482
|
+
/* harmony default export */ const IconArrowLeft = (IconArrowLeft_IconComponent);
|
|
98483
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowRight.js
|
|
98484
|
+
|
|
98485
|
+
|
|
98486
|
+
function IconArrowRight_SvgComponent(props) {
|
|
98487
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98488
|
+
viewBox: "0 0 24 24",
|
|
98489
|
+
fill: "none",
|
|
98490
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98491
|
+
width: "1em",
|
|
98492
|
+
height: "1em",
|
|
98493
|
+
focusable: false,
|
|
98494
|
+
"aria-hidden": true
|
|
98495
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98496
|
+
fillRule: "evenodd",
|
|
98497
|
+
clipRule: "evenodd",
|
|
98498
|
+
d: "M1 12C1 11.1716 1.67157 10.5 2.5 10.5L17.8787 10.5L11.4393 4.06066C10.8536 3.47487 10.8536 2.52513 11.4393 1.93934C12.0251 1.35355 12.9749 1.35355 13.5607 1.93934L22.5607 10.9393C23.1464 11.5251 23.1464 12.4749 22.5607 13.0607L13.5607 22.0607C12.9749 22.6464 12.0251 22.6464 11.4393 22.0607C10.8536 21.4749 10.8536 20.5251 11.4393 19.9393L17.8787 13.5L2.5 13.5C1.67157 13.5 1 12.8284 1 12Z",
|
|
98499
|
+
fill: "currentColor"
|
|
98500
|
+
}));
|
|
98501
|
+
}
|
|
98502
|
+
const IconArrowRight_IconComponent = convertIcon(IconArrowRight_SvgComponent, 'arrow_right');
|
|
98503
|
+
/* harmony default export */ const IconArrowRight = (IconArrowRight_IconComponent);
|
|
98878
98504
|
;// CONCATENATED MODULE: ./image/previewContext.tsx
|
|
98879
98505
|
|
|
98880
98506
|
const PreviewContext = /*#__PURE__*/(0,external_root_React_commonjs2_react_commonjs_react_amd_react_.createContext)({});
|
|
@@ -98913,6 +98539,129 @@ const previewHeader_Header = _ref => {
|
|
|
98913
98539
|
});
|
|
98914
98540
|
};
|
|
98915
98541
|
/* harmony default export */ const previewHeader = (previewHeader_Header);
|
|
98542
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMinus.js
|
|
98543
|
+
|
|
98544
|
+
|
|
98545
|
+
function IconMinus_SvgComponent(props) {
|
|
98546
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98547
|
+
viewBox: "0 0 24 24",
|
|
98548
|
+
fill: "none",
|
|
98549
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98550
|
+
width: "1em",
|
|
98551
|
+
height: "1em",
|
|
98552
|
+
focusable: false,
|
|
98553
|
+
"aria-hidden": true
|
|
98554
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98555
|
+
d: "M2 12C2 11.1716 2.67157 10.5 3.5 10.5H20.5C21.3284 10.5 22 11.1716 22 12C22 12.8284 21.3284 13.5 20.5 13.5H3.5C2.67157 13.5 2 12.8284 2 12Z",
|
|
98556
|
+
fill: "currentColor"
|
|
98557
|
+
}));
|
|
98558
|
+
}
|
|
98559
|
+
const IconMinus_IconComponent = convertIcon(IconMinus_SvgComponent, 'minus');
|
|
98560
|
+
/* harmony default export */ const IconMinus = (IconMinus_IconComponent);
|
|
98561
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconPlus.js
|
|
98562
|
+
|
|
98563
|
+
|
|
98564
|
+
function IconPlus_SvgComponent(props) {
|
|
98565
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98566
|
+
viewBox: "0 0 24 24",
|
|
98567
|
+
fill: "none",
|
|
98568
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98569
|
+
width: "1em",
|
|
98570
|
+
height: "1em",
|
|
98571
|
+
focusable: false,
|
|
98572
|
+
"aria-hidden": true
|
|
98573
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98574
|
+
d: "M20.5 13.5C21.3284 13.5 22 12.8284 22 12C22 11.1716 21.3284 10.5 20.5 10.5L13.5 10.5L13.5 3.5C13.5 2.67157 12.8284 2 12 2C11.1716 2 10.5 2.67157 10.5 3.5L10.5 10.5L3.5 10.5C2.67157 10.5 2 11.1716 2 12C2 12.8284 2.67157 13.5 3.5 13.5L10.5 13.5V20.5C10.5 21.3284 11.1716 22 12 22C12.8284 22 13.5 21.3284 13.5 20.5V13.5L20.5 13.5Z",
|
|
98575
|
+
fill: "currentColor"
|
|
98576
|
+
}));
|
|
98577
|
+
}
|
|
98578
|
+
const IconPlus_IconComponent = convertIcon(IconPlus_SvgComponent, 'plus');
|
|
98579
|
+
/* harmony default export */ const IconPlus = (IconPlus_IconComponent);
|
|
98580
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRealSizeStroked.js
|
|
98581
|
+
|
|
98582
|
+
|
|
98583
|
+
function IconRealSizeStroked_SvgComponent(props) {
|
|
98584
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98585
|
+
viewBox: "0 0 24 24",
|
|
98586
|
+
fill: "none",
|
|
98587
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98588
|
+
width: "1em",
|
|
98589
|
+
height: "1em",
|
|
98590
|
+
focusable: false,
|
|
98591
|
+
"aria-hidden": true
|
|
98592
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98593
|
+
fillRule: "evenodd",
|
|
98594
|
+
clipRule: "evenodd",
|
|
98595
|
+
d: "M1 6C1 4.89543 1.89543 4 3 4H21C22.1046 4 23 4.89543 23 6V18C23 19.1046 22.1046 20 21 20H3C1.89543 20 1 19.1046 1 18V6ZM21 6L3 6V18H21V6ZM5 9C5 8.44772 5.44772 8 6 8H7.5C8.05228 8 8.5 8.44772 8.5 9V15C8.5 15.5523 8.05228 16 7.5 16C6.94772 16 6.5 15.5523 6.5 15V10H6C5.44772 10 5 9.55228 5 9ZM16 8C15.4477 8 15 8.44772 15 9C15 9.55228 15.4477 10 16 10H16.5V15C16.5 15.5523 16.9477 16 17.5 16C18.0523 16 18.5 15.5523 18.5 15V9C18.5 8.44772 18.0523 8 17.5 8H16ZM13 10C13 10.5523 12.5523 11 12 11C11.4477 11 11 10.5523 11 10C11 9.44772 11.4477 9 12 9C12.5523 9 13 9.44772 13 10ZM12 15C12.5523 15 13 14.5523 13 14C13 13.4477 12.5523 13 12 13C11.4477 13 11 13.4477 11 14C11 14.5523 11.4477 15 12 15Z",
|
|
98596
|
+
fill: "currentColor"
|
|
98597
|
+
}));
|
|
98598
|
+
}
|
|
98599
|
+
const IconRealSizeStroked_IconComponent = convertIcon(IconRealSizeStroked_SvgComponent, 'real_size_stroked');
|
|
98600
|
+
/* harmony default export */ const IconRealSizeStroked = (IconRealSizeStroked_IconComponent);
|
|
98601
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconWindowAdaptionStroked.js
|
|
98602
|
+
|
|
98603
|
+
|
|
98604
|
+
function IconWindowAdaptionStroked_SvgComponent(props) {
|
|
98605
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98606
|
+
viewBox: "0 0 24 24",
|
|
98607
|
+
fill: "none",
|
|
98608
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98609
|
+
width: "1em",
|
|
98610
|
+
height: "1em",
|
|
98611
|
+
focusable: false,
|
|
98612
|
+
"aria-hidden": true
|
|
98613
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98614
|
+
fillRule: "evenodd",
|
|
98615
|
+
clipRule: "evenodd",
|
|
98616
|
+
d: "M14 3C14 2.44772 14.4477 2 15 2H21C21.5523 2 22 2.44772 22 3V9C22 9.55229 21.5523 10 21 10C20.4477 10 20 9.55229 20 9V4H15C14.4477 4 14 3.55229 14 3ZM10 21C10 21.5523 9.55229 22 9 22H3C2.44772 22 2 21.5523 2 21V15C2 14.4477 2.44772 14 3 14C3.55228 14 4 14.4477 4 15L4 20H9C9.55229 20 10 20.4477 10 21ZM2 9C2 9.55228 2.44772 10 3 10C3.55229 10 4 9.55228 4 9L4 4L9 4C9.55229 4 10 3.55228 10 3C10 2.44771 9.55229 2 9 2H3C2.44772 2 2 2.44772 2 3V9ZM21 14C21.5523 14 22 14.4477 22 15V21C22 21.5523 21.5523 22 21 22H15C14.4477 22 14 21.5523 14 21C14 20.4477 14.4477 20 15 20H20V15C20 14.4477 20.4477 14 21 14ZM8.5 7.5C7.94772 7.5 7.5 7.94772 7.5 8.5V15.5C7.5 16.0523 7.94772 16.5 8.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V8.5C16.5 7.94772 16.0523 7.5 15.5 7.5H8.5ZM9.5 14.5V9.5H14.5V14.5H9.5Z",
|
|
98617
|
+
fill: "currentColor"
|
|
98618
|
+
}));
|
|
98619
|
+
}
|
|
98620
|
+
const IconWindowAdaptionStroked_IconComponent = convertIcon(IconWindowAdaptionStroked_SvgComponent, 'window_adaption_stroked');
|
|
98621
|
+
/* harmony default export */ const IconWindowAdaptionStroked = (IconWindowAdaptionStroked_IconComponent);
|
|
98622
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRotate.js
|
|
98623
|
+
|
|
98624
|
+
|
|
98625
|
+
function IconRotate_SvgComponent(props) {
|
|
98626
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98627
|
+
viewBox: "0 0 24 24",
|
|
98628
|
+
fill: "none",
|
|
98629
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98630
|
+
width: "1em",
|
|
98631
|
+
height: "1em",
|
|
98632
|
+
focusable: false,
|
|
98633
|
+
"aria-hidden": true
|
|
98634
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98635
|
+
d: "M14.2071 2.20711C14.5976 1.81658 14.5976 1.18342 14.2071 0.792893C13.8166 0.402369 13.1834 0.402369 12.7929 0.792893L10.2929 3.29289C9.90237 3.68342 9.90237 4.31658 10.2929 4.70711L12.7929 7.20711C13.1834 7.59763 13.8166 7.59763 14.2071 7.20711C14.5976 6.81658 14.5976 6.18342 14.2071 5.79289L13.4142 5H16C18.7614 5 21 7.23858 21 10V12C21 12.5523 21.4477 13 22 13C22.5523 13 23 12.5523 23 12V10C23 6.13401 19.866 3 16 3H13.4142L14.2071 2.20711Z",
|
|
98636
|
+
fill: "currentColor"
|
|
98637
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98638
|
+
d: "M3 10C3 8.89543 3.89543 8 5 8H17C18.1046 8 19 8.89543 19 10V20C19 21.1046 18.1046 22 17 22H5C3.89543 22 3 21.1046 3 20V10Z",
|
|
98639
|
+
fill: "currentColor"
|
|
98640
|
+
}));
|
|
98641
|
+
}
|
|
98642
|
+
const IconRotate_IconComponent = convertIcon(IconRotate_SvgComponent, 'rotate');
|
|
98643
|
+
/* harmony default export */ const IconRotate = (IconRotate_IconComponent);
|
|
98644
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDownload.js
|
|
98645
|
+
|
|
98646
|
+
|
|
98647
|
+
function IconDownload_SvgComponent(props) {
|
|
98648
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98649
|
+
viewBox: "0 0 24 24",
|
|
98650
|
+
fill: "none",
|
|
98651
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98652
|
+
width: "1em",
|
|
98653
|
+
height: "1em",
|
|
98654
|
+
focusable: false,
|
|
98655
|
+
"aria-hidden": true
|
|
98656
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98657
|
+
fillRule: "evenodd",
|
|
98658
|
+
clipRule: "evenodd",
|
|
98659
|
+
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM11.6799 17.7333C11.8653 17.8878 12.1347 17.8878 12.3201 17.7333L17.4695 13.4421C17.6492 13.2924 17.5433 13 17.3095 13H14V9.5C14 9.22386 13.7761 9 13.5 9H10.5C10.2239 9 10 9.22386 10 9.5V13H6.69051C6.45669 13 6.35084 13.2924 6.53047 13.4421L11.6799 17.7333Z",
|
|
98660
|
+
fill: "currentColor"
|
|
98661
|
+
}));
|
|
98662
|
+
}
|
|
98663
|
+
const IconDownload_IconComponent = convertIcon(IconDownload_SvgComponent, 'download');
|
|
98664
|
+
/* harmony default export */ const IconDownload = (IconDownload_IconComponent);
|
|
98916
98665
|
;// CONCATENATED MODULE: ../semi-foundation/image/previewFooterFoundation.ts
|
|
98917
98666
|
|
|
98918
98667
|
class PreviewFooterFoundation extends foundation {
|