@cloudtower/eagle 0.27.2-alpha.0 → 0.27.2

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/esm/index.js CHANGED
@@ -1,8 +1,8 @@
1
- import { Tooltip as Tooltip$1, Alert as Alert$1, Badge as Badge$1, Button as Button$1, Checkbox as Checkbox$1, Card as Card$2, Collapse, DatePicker, Select as Select$1, InputNumber as InputNumber$1, Input as Input$1, TimePicker as TimePicker$1, Form as Form$1, Steps as Steps$1, Modal as Modal$1, Dropdown, Menu, Progress as Progress$1, Radio as Radio$1, Tag as Tag$1, Switch as Switch$1, Table as Table$1, Space, List, Row, Col, Tree, Divider, Skeleton, Layout, AutoComplete, Popover, Timeline, Typography, Cascader, Upload, Calendar, Tabs, message, Empty as Empty$1, TreeSelect, Drawer, ConfigProvider } from 'antd';
1
+ import { Tooltip as Tooltip$1, Alert as Alert$1, Badge as Badge$1, Button as Button$1, Checkbox as Checkbox$1, Card as Card$2, Collapse, DatePicker, Select as Select$1, InputNumber as InputNumber$1, Input as Input$1, TimePicker as TimePicker$1, Form as Form$1, Tag as Tag$1, Steps as Steps$1, Modal as Modal$1, Dropdown, Menu, Progress as Progress$1, Radio as Radio$1, Switch as Switch$1, Table as Table$1, Space, List, Row, Col, Tree, Divider, Skeleton, Layout, AutoComplete, Popover, Timeline, Typography, Cascader, Upload, Calendar, Tabs, message, Empty as Empty$1, TreeSelect, Drawer, ConfigProvider } from 'antd';
2
2
  export { Col, Row } from 'antd';
3
3
  import * as React from 'react';
4
- import React__default, { useState, useMemo, useEffect, useRef, useCallback, useLayoutEffect, forwardRef, Fragment, createContext, memo, useImperativeHandle, useContext } from 'react';
5
- import { XmarkRemove24SecondaryIcon, ArrowRightGrayIcon, ArrowChevronUp16SecondaryIcon, ArrowChevronDown16SecondaryIcon, CheckmarkDoneSuccessCorrect16SecondaryIcon, Loading8GradientBlueIcon, PlusAddCreateNew16SecondaryIcon, HandlePoint816SecondaryIcon, HandlePoint816BlueIcon, XmarkRemove16SecondaryIcon, XmarkRemove16RegularRedIcon, CheckmarkDoneSuccessCorrect16BlueIcon, XmarkRemoveSmall16RegularInheritIcon } from '@cloudtower/icons-react';
4
+ import React__default, { useState, useMemo, useRef, useLayoutEffect, useEffect, useCallback, forwardRef, Fragment, createContext, memo, useImperativeHandle, useContext } from 'react';
5
+ import { XmarkRemove24SecondaryIcon, InfoICircleFill16SecondaryIcon, XmarkFailedSeriousWarningFill16RedIcon, NoticeAttention16YellowIcon, InfoICircleFill16BlueIcon, CheckmarkDoneSuccessCircleFill16GreenIcon, ArrowRightGrayIcon, ArrowChevronUp16SecondaryIcon, ArrowChevronDown16SecondaryIcon, FocusIndicator16BlueIcon, CheckmarkDoneSuccessCorrect16SecondaryIcon, ArrowChevronLeftSmall16BoldBlueIcon, ArrowChevronDownSmall16SecondaryIcon, ArrowChevronDownSmall16BlueIcon, Loading8GradientBlueIcon, ArrowChevronUp16BoldSecondaryIcon, PlusAddCreateNew16SecondaryIcon, HandlePoint816SecondaryIcon, HandlePoint816BlueIcon, XmarkRemove16SecondaryIcon, XmarkRemove16RegularRedIcon, CheckmarkDoneSuccessCorrect16BlueIcon, XmarkRemoveSmall16RegularInheritIcon } from '@cloudtower/icons-react';
6
6
  import cs from 'classnames';
7
7
  import { styled } from 'linaria/react';
8
8
  import _, { debounce, uniqBy, groupBy, sortBy, toPairs } from 'lodash';
@@ -101,8 +101,8 @@ const BaseIcon = React__default.forwardRef(
101
101
  );
102
102
 
103
103
  var __defProp$X = Object.defineProperty;
104
- var __defProps$E = Object.defineProperties;
105
- var __getOwnPropDescs$E = Object.getOwnPropertyDescriptors;
104
+ var __defProps$F = Object.defineProperties;
105
+ var __getOwnPropDescs$F = Object.getOwnPropertyDescriptors;
106
106
  var __getOwnPropSymbols$Z = Object.getOwnPropertySymbols;
107
107
  var __hasOwnProp$Z = Object.prototype.hasOwnProperty;
108
108
  var __propIsEnum$Z = Object.prototype.propertyIsEnumerable;
@@ -119,7 +119,7 @@ var __spreadValues$X = (a, b) => {
119
119
  }
120
120
  return a;
121
121
  };
122
- var __spreadProps$E = (a, b) => __defProps$E(a, __getOwnPropDescs$E(b));
122
+ var __spreadProps$F = (a, b) => __defProps$F(a, __getOwnPropDescs$F(b));
123
123
  var __objRest$A = (source, exclude) => {
124
124
  var target = {};
125
125
  for (var prop in source) if (__hasOwnProp$Z.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
@@ -176,7 +176,7 @@ const Icon = React__default.forwardRef((props, ref) => {
176
176
  }
177
177
  return src2;
178
178
  }, [active, hover, suffix]);
179
- return /* @__PURE__ */React__default.createElement(BaseIcon, __spreadProps$E(__spreadValues$X({
179
+ return /* @__PURE__ */React__default.createElement(BaseIcon, __spreadProps$F(__spreadValues$X({
180
180
  src: _src,
181
181
  className: cs(IconWrapper, "icon-wrapper", className, isRotate && "is-rotate"),
182
182
  suffixIconSrc,
@@ -512,6 +512,44 @@ const DetailCard = props => {
512
512
  }, props.children));
513
513
  };
514
514
 
515
+ const CircleProgressStyle = "c1bus5hc";
516
+ const CircleProgress = props => {
517
+ const {
518
+ percent,
519
+ color = "#0080ff",
520
+ className
521
+ } = props;
522
+ const wrapperRef = useRef(null);
523
+ const childRef = useRef(null);
524
+ useLayoutEffect(() => {
525
+ var _a;
526
+ (_a = wrapperRef.current) == null ? void 0 : _a.style.setProperty("--color", color);
527
+ }, [color]);
528
+ useLayoutEffect(() => {
529
+ let deg = 0;
530
+ const childStyle = childRef.current.style;
531
+ if (percent <= 0.5) {
532
+ deg = 180 * (percent / 0.5);
533
+ childStyle.background = "white";
534
+ } else {
535
+ deg = 180 * ((percent - 0.5) / 0.5);
536
+ childStyle.background = color;
537
+ }
538
+ childStyle.transform = `rotate(${deg}deg)`;
539
+ }, [percent, color]);
540
+ return /* @__PURE__ */React__default.createElement("div", {
541
+ className: cs(CircleProgressStyle, className),
542
+ ref: wrapperRef
543
+ }, /* @__PURE__ */React__default.createElement("div", {
544
+ className: "circle-inner"
545
+ }, /* @__PURE__ */React__default.createElement("div", {
546
+ className: "circle-content"
547
+ }), /* @__PURE__ */React__default.createElement("div", {
548
+ className: "circle-child",
549
+ ref: childRef
550
+ })));
551
+ };
552
+
515
553
  const Counting = (props) => {
516
554
  const { stop, interval = 1e3, render } = props;
517
555
  const [, setState] = useState(true);
@@ -529,8 +567,8 @@ const Counting = (props) => {
529
567
  };
530
568
 
531
569
  var __defProp$V = Object.defineProperty;
532
- var __defProps$D = Object.defineProperties;
533
- var __getOwnPropDescs$D = Object.getOwnPropertyDescriptors;
570
+ var __defProps$E = Object.defineProperties;
571
+ var __getOwnPropDescs$E = Object.getOwnPropertyDescriptors;
534
572
  var __getOwnPropSymbols$X = Object.getOwnPropertySymbols;
535
573
  var __hasOwnProp$X = Object.prototype.hasOwnProperty;
536
574
  var __propIsEnum$X = Object.prototype.propertyIsEnumerable;
@@ -546,7 +584,7 @@ var __spreadValues$V = (a, b) => {
546
584
  }
547
585
  return a;
548
586
  };
549
- var __spreadProps$D = (a, b) => __defProps$D(a, __getOwnPropDescs$D(b));
587
+ var __spreadProps$E = (a, b) => __defProps$E(a, __getOwnPropDescs$E(b));
550
588
  var __objRest$y = (source, exclude) => {
551
589
  var target = {};
552
590
  for (var prop in source)
@@ -608,7 +646,7 @@ const Tooltip = (props) => {
608
646
  }, [followMouse, onmousemove, uniqueContainerClass]);
609
647
  return /* @__PURE__ */ React__default.createElement(
610
648
  Tooltip$1,
611
- __spreadProps$D(__spreadValues$V({}, restProps), {
649
+ __spreadProps$E(__spreadValues$V({}, restProps), {
612
650
  overlayClassName: followMouse ? cs(overlayClassName, uniquePopupClass) : overlayClassName,
613
651
  children: _children,
614
652
  overlayStyle: followMouse ? __spreadValues$V({
@@ -620,8 +658,8 @@ const Tooltip = (props) => {
620
658
  };
621
659
 
622
660
  var __defProp$U = Object.defineProperty;
623
- var __defProps$C = Object.defineProperties;
624
- var __getOwnPropDescs$C = Object.getOwnPropertyDescriptors;
661
+ var __defProps$D = Object.defineProperties;
662
+ var __getOwnPropDescs$D = Object.getOwnPropertyDescriptors;
625
663
  var __getOwnPropSymbols$W = Object.getOwnPropertySymbols;
626
664
  var __hasOwnProp$W = Object.prototype.hasOwnProperty;
627
665
  var __propIsEnum$W = Object.prototype.propertyIsEnumerable;
@@ -638,7 +676,7 @@ var __spreadValues$U = (a, b) => {
638
676
  }
639
677
  return a;
640
678
  };
641
- var __spreadProps$C = (a, b) => __defProps$C(a, __getOwnPropDescs$C(b));
679
+ var __spreadProps$D = (a, b) => __defProps$D(a, __getOwnPropDescs$D(b));
642
680
  var __objRest$x = (source, exclude) => {
643
681
  var target = {};
644
682
  for (var prop in source) if (__hasOwnProp$W.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
@@ -674,7 +712,7 @@ const TruncatedTextWithTooltip = props => {
674
712
  ref: textWrapper,
675
713
  className: textWrapperCls
676
714
  }, text);
677
- return isTextTruncated ? /* @__PURE__ */React__default.createElement(Tooltip, __spreadProps$C(__spreadValues$U({}, restProps), {
715
+ return isTextTruncated ? /* @__PURE__ */React__default.createElement(Tooltip, __spreadProps$D(__spreadValues$U({}, restProps), {
678
716
  title: text,
679
717
  "data-testid": "text-tooltip"
680
718
  }), /* @__PURE__ */React__default.createElement(TruncatedTextWrapper, null, renderName())) : renderName();
@@ -865,46 +903,26 @@ function formatSpeed(input, decimals = 0) {
865
903
  };
866
904
  }
867
905
 
868
- var img$9 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.11092 7.0535C3.91566 6.85824 3.91566 6.54166 4.11092 6.3464C4.30619 6.15114 4.62277 6.15114 4.81803 6.3464L8.00001 9.52838L8.35226 9.17613L8.35356 9.17482L11.182 6.3464C11.3773 6.15114 11.6938 6.15114 11.8891 6.3464C12.0844 6.54166 12.0844 6.85824 11.8891 7.0535L10.4408 8.50184C10.4288 8.51384 10.4166 8.52604 10.4042 8.53843L9.13138 9.81122C9.11899 9.82361 9.1068 9.83581 9.09479 9.84781L9.06067 9.88193L9.057 9.88556C8.70964 10.2323 8.5226 10.41 8.30903 10.4794C8.10819 10.5447 7.89184 10.5447 7.691 10.4794C7.47748 10.4101 7.29048 10.2324 6.94327 9.88581L6.93935 9.88193L4.11092 7.0535Z' fill='%230080FF'/%3e%3c/svg%3e";
869
-
870
- var img$8 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.11092 7.0535C3.91566 6.85824 3.91566 6.54166 4.11092 6.3464C4.30619 6.15114 4.62277 6.15114 4.81803 6.3464L8.00001 9.52838L8.35226 9.17613L8.35356 9.17482L11.182 6.3464C11.3773 6.15114 11.6938 6.15114 11.8891 6.3464C12.0844 6.54166 12.0844 6.85824 11.8891 7.0535L10.4408 8.50184C10.4288 8.51384 10.4166 8.52604 10.4042 8.53843L9.13138 9.81122C9.11899 9.82361 9.1068 9.83581 9.09479 9.84781L9.06067 9.88193L9.057 9.88556C8.70964 10.2323 8.5226 10.41 8.30903 10.4794C8.10819 10.5447 7.89184 10.5447 7.691 10.4794C7.47748 10.4101 7.29048 10.2324 6.94327 9.88581L6.93935 9.88193L4.11092 7.0535Z' fill='%232C3852' fill-opacity='0.6'/%3e%3c/svg%3e";
871
-
872
- var img$7 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.06067 3.75725C9.45119 3.36672 10.0844 3.36672 10.4749 3.75725C10.8654 4.14777 10.8654 4.78094 10.4749 5.17146L7.64645 7.99989L10.4749 10.8283C10.8654 11.2188 10.8654 11.852 10.4749 12.2425C10.0844 12.6331 9.45119 12.6331 9.06067 12.2425L5.9494 9.13126C5.55338 8.73524 5.35537 8.53723 5.28118 8.30891C5.21592 8.10806 5.21592 7.89172 5.28118 7.69087C5.35537 7.46254 5.55338 7.26454 5.9494 6.86852L9.06067 3.75725Z' fill='%230080FF'/%3e%3c/svg%3e";
873
-
874
- var img$6 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.05028 9.4142L6.86865 5.59582C6.87513 5.58934 6.88156 5.58292 6.88793 5.57655C7.27116 5.19336 7.46641 5.00058 7.69101 4.92761C7.89185 4.86235 8.1082 4.86235 8.30904 4.92761C8.53737 5.00179 8.73538 5.1998 9.1314 5.59582L12.9498 9.4142C13.3403 9.80472 13.3403 10.4379 12.9498 10.8284C12.5592 11.2189 11.9261 11.2189 11.5356 10.8284L8.00003 7.29288L4.46449 10.8284C4.07397 11.2189 3.4408 11.2189 3.05028 10.8284C2.65975 10.4379 2.65975 9.80472 3.05028 9.4142Z' fill='%232C3852' fill-opacity='0.6'/%3e%3c/svg%3e";
875
-
876
- var img$5 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 14.5C11.5899 14.5 14.5 11.5899 14.5 8C14.5 4.41015 11.5899 1.5 8 1.5C4.41015 1.5 1.5 4.41015 1.5 8C1.5 11.5899 4.41015 14.5 8 14.5ZM11.134 6.56615C11.3346 6.28527 11.2696 5.89493 10.9887 5.6943C10.7078 5.49367 10.3175 5.55872 10.1168 5.83961L7.26389 9.83372L5.81653 8.38635C5.57245 8.14227 5.17672 8.14227 4.93265 8.38635C4.68857 8.63043 4.68857 9.02616 4.93265 9.27023L6.90171 11.2393C7.03162 11.3692 7.2121 11.4354 7.3952 11.4202C7.57829 11.4051 7.74545 11.3101 7.85223 11.1606L11.134 6.56615Z' fill='%2300BA5D'/%3e%3c/svg%3e";
877
-
878
- var img$4 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.81662 7.33209C10.1545 7.55506 10.3235 7.66655 10.3822 7.80742C10.4336 7.93055 10.4336 8.0691 10.3822 8.19224C10.3235 8.33311 10.1545 8.4446 9.81662 8.66757L6.81921 10.6454C6.4159 10.9115 6.21424 11.0445 6.04715 11.034C5.90158 11.0248 5.76727 10.9525 5.67943 10.8361C5.57861 10.7024 5.57861 10.4608 5.57861 9.97761L5.57861 6.02205C5.57861 5.53885 5.57861 5.29726 5.67943 5.16359C5.76727 5.04714 5.90158 4.97485 6.04715 4.96567C6.21424 4.95513 6.4159 5.08819 6.81921 5.35431L9.81662 7.33209Z' fill='%230080FF'/%3e%3c/svg%3e";
879
-
880
- var img$3 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 14.5C11.5899 14.5 14.5 11.5899 14.5 8C14.5 4.41015 11.5899 1.5 8 1.5C4.41015 1.5 1.5 4.41015 1.5 8C1.5 11.5899 4.41015 14.5 8 14.5ZM8.75 11.5C8.75 11.9142 8.41421 12.25 8 12.25C7.58579 12.25 7.25 11.9142 7.25 11.5V7.99812C7.25 7.58391 7.58579 7.24812 8 7.24812C8.41421 7.24812 8.75 7.58391 8.75 7.99812V11.5ZM8.875 5.125C8.875 5.60825 8.48325 6 8 6C7.51675 6 7.125 5.60825 7.125 5.125C7.125 4.64175 7.51675 4.25 8 4.25C8.48325 4.25 8.875 4.64175 8.875 5.125Z' fill='%230080FF'/%3e%3c/svg%3e";
881
-
882
- var img$2 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 14.5C11.5899 14.5 14.5 11.5899 14.5 8C14.5 4.41015 11.5899 1.5 8 1.5C4.41015 1.5 1.5 4.41015 1.5 8C1.5 11.5899 4.41015 14.5 8 14.5ZM8.75 11.5C8.75 11.9142 8.41421 12.25 8 12.25C7.58579 12.25 7.25 11.9142 7.25 11.5V7.99812C7.25 7.58391 7.58579 7.24812 8 7.24812C8.41421 7.24812 8.75 7.58391 8.75 7.99812V11.5ZM8.875 5.125C8.875 5.60825 8.48325 6 8 6C7.51675 6 7.125 5.60825 7.125 5.125C7.125 4.64175 7.51675 4.25 8 4.25C8.48325 4.25 8.875 4.64175 8.875 5.125Z' fill='%232C3852' fill-opacity='0.6'/%3e%3c/svg%3e";
883
-
884
- var img$1 = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.60245 1.88247C7.31193 2.00834 7.08625 2.37752 6.63487 3.11589L1.69402 11.1983C1.20753 11.9941 0.964285 12.392 0.992929 12.7198C1.0179 13.0056 1.16444 13.267 1.39527 13.4373C1.66005 13.6328 2.12641 13.6328 3.05915 13.6328H12.9408C13.8736 13.6328 14.34 13.6328 14.6047 13.4373C14.8356 13.267 14.9821 13.0056 15.0071 12.7198C15.0357 12.392 14.7925 11.9941 14.306 11.1983L9.36513 3.11589C8.91375 2.37752 8.68807 2.00834 8.39755 1.88247C8.14391 1.77258 7.85609 1.77258 7.60245 1.88247ZM7.25 5.38278C7.25 4.96856 7.58579 4.63278 8 4.63278C8.41421 4.63278 8.75 4.96856 8.75 5.38278V9.38278C8.75 9.79699 8.41421 10.1328 8 10.1328C7.58579 10.1328 7.25 9.79699 7.25 9.38278V5.38278ZM7.125 11.7578C7.125 11.2745 7.51675 10.8828 8 10.8828C8.48325 10.8828 8.875 11.2745 8.875 11.7578C8.875 12.241 8.48325 12.6328 8 12.6328C7.51675 12.6328 7.125 12.241 7.125 11.7578Z' fill='%23FEA008'/%3e%3c/svg%3e";
885
-
886
- var img = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.47964 2.70117L2.70108 4.47973C2.35518 4.82563 2.18223 4.99859 2.05854 5.20042C1.94889 5.37936 1.86808 5.57445 1.81908 5.77853C1.76382 6.0087 1.76382 6.25329 1.76382 6.74247V9.25773C1.76382 9.74691 1.76382 9.9915 1.81908 10.2217C1.86808 10.4258 1.94889 10.6208 2.05854 10.7998C2.18223 11.0016 2.35518 11.1746 2.70108 11.5205L4.47964 13.299C4.82554 13.6449 4.9985 13.8179 5.20033 13.9416C5.37927 14.0512 5.57436 14.132 5.77843 14.181C6.00861 14.2363 6.2532 14.2363 6.74238 14.2363H9.25764C9.74682 14.2363 9.99141 14.2363 10.2216 14.181C10.4257 14.132 10.6207 14.0512 10.7997 13.9416C11.0015 13.8179 11.1745 13.6449 11.5204 13.299L13.2989 11.5205C13.6448 11.1746 13.8178 11.0016 13.9415 10.7998C14.0511 10.6208 14.1319 10.4258 14.1809 10.2217C14.2362 9.9915 14.2362 9.74691 14.2362 9.25773V6.74247C14.2362 6.25329 14.2362 6.0087 14.1809 5.77853C14.1319 5.57445 14.0511 5.37936 13.9415 5.20042C13.8178 4.99859 13.6448 4.82563 13.2989 4.47973L11.5204 2.70117C11.1745 2.35527 11.0015 2.18232 10.7997 2.05864C10.6207 1.94898 10.4257 1.86817 10.2216 1.81918C9.99141 1.76392 9.74682 1.76392 9.25764 1.76392H6.74238C6.2532 1.76392 6.00861 1.76392 5.77843 1.81918C5.57436 1.86817 5.37927 1.94898 5.20033 2.05864C4.99849 2.18232 4.82554 2.35527 4.47964 2.70117ZM9.94454 5.17157C10.1886 4.92749 10.5843 4.92749 10.8284 5.17157C11.0725 5.41564 11.0725 5.81137 10.8284 6.05545L8.88389 7.99998L10.8285 9.94457C11.0726 10.1886 11.0726 10.5844 10.8285 10.8284C10.5844 11.0725 10.1887 11.0725 9.9446 10.8284L8.00001 8.88386L6.05545 10.8284C5.81138 11.0725 5.41565 11.0725 5.17157 10.8284C4.92749 10.5843 4.92749 10.1886 5.17157 9.94454L7.11613 7.99998L5.17162 6.05548C4.92755 5.8114 4.92755 5.41567 5.17162 5.17159C5.4157 4.92752 5.81143 4.92752 6.05551 5.17159L8.00001 7.1161L9.94454 5.17157Z' fill='%23F0483E'/%3e%3c/svg%3e";
887
-
888
906
  function getAlertIcon(type) {
889
907
  switch (type) {
890
908
  case "success":
891
- return img$5;
909
+ return CheckmarkDoneSuccessCircleFill16GreenIcon;
892
910
  case "info":
893
- return img$3;
911
+ return InfoICircleFill16BlueIcon;
894
912
  case "warning":
895
- return img$1;
913
+ return NoticeAttention16YellowIcon;
896
914
  case "error":
897
- return img;
915
+ return XmarkFailedSeriousWarningFill16RedIcon;
898
916
  case "normal":
899
- return img$2;
917
+ return InfoICircleFill16SecondaryIcon;
900
918
  default:
901
- return img$2;
919
+ return InfoICircleFill16SecondaryIcon;
902
920
  }
903
921
  }
904
922
 
905
923
  var __defProp$T = Object.defineProperty;
906
- var __defProps$B = Object.defineProperties;
907
- var __getOwnPropDescs$B = Object.getOwnPropertyDescriptors;
924
+ var __defProps$C = Object.defineProperties;
925
+ var __getOwnPropDescs$C = Object.getOwnPropertyDescriptors;
908
926
  var __getOwnPropSymbols$V = Object.getOwnPropertySymbols;
909
927
  var __hasOwnProp$V = Object.prototype.hasOwnProperty;
910
928
  var __propIsEnum$V = Object.prototype.propertyIsEnumerable;
@@ -921,7 +939,7 @@ var __spreadValues$T = (a, b) => {
921
939
  }
922
940
  return a;
923
941
  };
924
- var __spreadProps$B = (a, b) => __defProps$B(a, __getOwnPropDescs$B(b));
942
+ var __spreadProps$C = (a, b) => __defProps$C(a, __getOwnPropDescs$C(b));
925
943
  var __objRest$w = (source, exclude) => {
926
944
  var target = {};
927
945
  for (var prop in source) if (__hasOwnProp$V.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
@@ -950,7 +968,7 @@ const Alert = _a => {
950
968
  src: getAlertIcon(type)
951
969
  });
952
970
  const _type = type === "normal" ? "info" : type;
953
- return /* @__PURE__ */React__default.createElement(Alert$1, __spreadProps$B(__spreadValues$T({}, props), {
971
+ return /* @__PURE__ */React__default.createElement(Alert$1, __spreadProps$C(__spreadValues$T({}, props), {
954
972
  className: cs(AlertStyle, type ? `alert-${type}` : "", className, {
955
973
  action
956
974
  }),
@@ -989,8 +1007,8 @@ const Arch = (props) => {
989
1007
  };
990
1008
 
991
1009
  var __defProp$S = Object.defineProperty;
992
- var __defProps$A = Object.defineProperties;
993
- var __getOwnPropDescs$A = Object.getOwnPropertyDescriptors;
1010
+ var __defProps$B = Object.defineProperties;
1011
+ var __getOwnPropDescs$B = Object.getOwnPropertyDescriptors;
994
1012
  var __getOwnPropSymbols$U = Object.getOwnPropertySymbols;
995
1013
  var __hasOwnProp$U = Object.prototype.hasOwnProperty;
996
1014
  var __propIsEnum$U = Object.prototype.propertyIsEnumerable;
@@ -1006,7 +1024,7 @@ var __spreadValues$S = (a, b) => {
1006
1024
  }
1007
1025
  return a;
1008
1026
  };
1009
- var __spreadProps$A = (a, b) => __defProps$A(a, __getOwnPropDescs$A(b));
1027
+ var __spreadProps$B = (a, b) => __defProps$B(a, __getOwnPropDescs$B(b));
1010
1028
  var __objRest$v = (source, exclude) => {
1011
1029
  var target = {};
1012
1030
  for (var prop in source)
@@ -1023,7 +1041,7 @@ const Badge = (_a) => {
1023
1041
  var _b = _a, { type = "error", className } = _b, props = __objRest$v(_b, ["type", "className"]);
1024
1042
  return /* @__PURE__ */ React__default.createElement(
1025
1043
  Badge$1,
1026
- __spreadProps$A(__spreadValues$S({
1044
+ __spreadProps$B(__spreadValues$S({
1027
1045
  className: cx(`badge-${type}`, className)
1028
1046
  }, props), {
1029
1047
  showZero: false
@@ -1416,8 +1434,8 @@ const CardWrapper = /*#__PURE__*/styled$1(_exp$3())({
1416
1434
  });
1417
1435
 
1418
1436
  var __defProp$K = Object.defineProperty;
1419
- var __defProps$z = Object.defineProperties;
1420
- var __getOwnPropDescs$z = Object.getOwnPropertyDescriptors;
1437
+ var __defProps$A = Object.defineProperties;
1438
+ var __getOwnPropDescs$A = Object.getOwnPropertyDescriptors;
1421
1439
  var __getOwnPropSymbols$M = Object.getOwnPropertySymbols;
1422
1440
  var __hasOwnProp$M = Object.prototype.hasOwnProperty;
1423
1441
  var __propIsEnum$M = Object.prototype.propertyIsEnumerable;
@@ -1433,7 +1451,7 @@ var __spreadValues$K = (a, b) => {
1433
1451
  }
1434
1452
  return a;
1435
1453
  };
1436
- var __spreadProps$z = (a, b) => __defProps$z(a, __getOwnPropDescs$z(b));
1454
+ var __spreadProps$A = (a, b) => __defProps$A(a, __getOwnPropDescs$A(b));
1437
1455
  var __objRest$r = (source, exclude) => {
1438
1456
  var target = {};
1439
1457
  for (var prop in source)
@@ -1468,7 +1486,7 @@ const Card = React__default.forwardRef(
1468
1486
  const [open, setOpen] = useState(defaultOpen);
1469
1487
  return /* @__PURE__ */ React__default.createElement(
1470
1488
  CardWrapper,
1471
- __spreadProps$z(__spreadValues$K({
1489
+ __spreadProps$A(__spreadValues$K({
1472
1490
  ref,
1473
1491
  className: cs(["card-wrapper", className, hoverable && "hoverable"])
1474
1492
  }, domProps), {
@@ -1498,8 +1516,8 @@ const Card = React__default.forwardRef(
1498
1516
  );
1499
1517
 
1500
1518
  var __defProp$J = Object.defineProperty;
1501
- var __defProps$y = Object.defineProperties;
1502
- var __getOwnPropDescs$y = Object.getOwnPropertyDescriptors;
1519
+ var __defProps$z = Object.defineProperties;
1520
+ var __getOwnPropDescs$z = Object.getOwnPropertyDescriptors;
1503
1521
  var __getOwnPropSymbols$L = Object.getOwnPropertySymbols;
1504
1522
  var __hasOwnProp$L = Object.prototype.hasOwnProperty;
1505
1523
  var __propIsEnum$L = Object.prototype.propertyIsEnumerable;
@@ -1516,7 +1534,7 @@ var __spreadValues$J = (a, b) => {
1516
1534
  }
1517
1535
  return a;
1518
1536
  };
1519
- var __spreadProps$y = (a, b) => __defProps$y(a, __getOwnPropDescs$y(b));
1537
+ var __spreadProps$z = (a, b) => __defProps$z(a, __getOwnPropDescs$z(b));
1520
1538
  var __objRest$q = (source, exclude) => {
1521
1539
  var target = {};
1522
1540
  for (var prop in source) if (__hasOwnProp$L.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
@@ -1535,7 +1553,7 @@ const Checkbox = _a => {
1535
1553
  compact
1536
1554
  } = _b,
1537
1555
  props = __objRest$q(_b, ["className", "children", "description", "compact"]);
1538
- return /* @__PURE__ */React__default.createElement(Checkbox$1, __spreadProps$y(__spreadValues$J({}, props), {
1556
+ return /* @__PURE__ */React__default.createElement(Checkbox$1, __spreadProps$z(__spreadValues$J({}, props), {
1539
1557
  "data-test": props["data-test"] || props.value,
1540
1558
  className: cs(className, CheckboxStyle, compact && "compact")
1541
1559
  }), children ? /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement("div", {
@@ -1725,7 +1743,14 @@ const FullView = /*#__PURE__*/styled$1('div')({
1725
1743
  const InputStyle = "ipd9bk";
1726
1744
  const KitInputStyle = "kypn5o5";
1727
1745
 
1746
+ const LoadingWrapper = "l4bld33";
1747
+ const LoadingLine1 = "lgitjoj";
1748
+ const LoadingLine2 = "l13g0exg";
1749
+ const LoadingLine3 = "l1exo3h6";
1750
+
1728
1751
  var __defProp$H = Object.defineProperty;
1752
+ var __defProps$y = Object.defineProperties;
1753
+ var __getOwnPropDescs$y = Object.getOwnPropertyDescriptors;
1729
1754
  var __getOwnPropSymbols$I = Object.getOwnPropertySymbols;
1730
1755
  var __hasOwnProp$I = Object.prototype.hasOwnProperty;
1731
1756
  var __propIsEnum$I = Object.prototype.propertyIsEnumerable;
@@ -1741,10 +1766,11 @@ var __spreadValues$H = (a, b) => {
1741
1766
  }
1742
1767
  return a;
1743
1768
  };
1769
+ var __spreadProps$y = (a, b) => __defProps$y(a, __getOwnPropDescs$y(b));
1744
1770
  const Loading = ({ fullView = true }) => {
1745
1771
  const Wrapper = fullView ? FullView : Fragment;
1746
1772
  const props = fullView ? { className: "loading-full-view" } : {};
1747
- return /* @__PURE__ */ React__default.createElement(Wrapper, __spreadValues$H({}, props), /* @__PURE__ */ React__default.createElement("div", { className: "loading" }, /* @__PURE__ */ React__default.createElement("div", { className: "loading-indicator__line1" }), /* @__PURE__ */ React__default.createElement("div", { className: "loading-indicator__line2" }), /* @__PURE__ */ React__default.createElement("div", { className: "loading-indicator__line3" })));
1773
+ return /* @__PURE__ */ React__default.createElement(Wrapper, __spreadProps$y(__spreadValues$H({}, props), { "data-testid": "loading" }), /* @__PURE__ */ React__default.createElement("div", { className: LoadingWrapper }, /* @__PURE__ */ React__default.createElement("div", { className: LoadingLine1 }), /* @__PURE__ */ React__default.createElement("div", { className: LoadingLine2 }), /* @__PURE__ */ React__default.createElement("div", { className: LoadingLine3 })));
1748
1774
  };
1749
1775
 
1750
1776
  var __defProp$G = Object.defineProperty;
@@ -2571,7 +2597,7 @@ const FieldsString = (_a) => {
2571
2597
  size,
2572
2598
  allowClear,
2573
2599
  onClick,
2574
- prefix: focusIndicator ? /* @__PURE__ */ React__default.createElement(Icon, { alt: "focusIndicator16Blue", src: img$4 }) : void 0,
2600
+ prefix: focusIndicator ? /* @__PURE__ */ React__default.createElement(Icon, { alt: "focusIndicator16Blue", src: FocusIndicator16BlueIcon }) : void 0,
2575
2601
  error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
2576
2602
  }), props), {
2577
2603
  onChange: (e) => {
@@ -2904,9 +2930,43 @@ const ParrotTrans = (props) => {
2904
2930
  return /* @__PURE__ */ React__default.createElement(Trans, __spreadValues$r({ i18n }, props));
2905
2931
  };
2906
2932
 
2933
+ const PresetColors$3 = [
2934
+ "blue",
2935
+ "red",
2936
+ "yellow",
2937
+ "green",
2938
+ "gray",
2939
+ "purple"
2940
+ ];
2941
+
2942
+ const Size$1 = {
2943
+ small: "sut42l0",
2944
+ medium: "mfsz1jz"
2945
+ };
2946
+ const TagStyle$1 = "tnd6h4m";
2947
+ const IconStyle$1 = "i1qw4clm";
2948
+ const NameTagStyle = "n1r5ku5l";
2949
+
2950
+ var __defProp$q = Object.defineProperty;
2951
+ var __defProps$k = Object.defineProperties;
2952
+ var __getOwnPropDescs$k = Object.getOwnPropertyDescriptors;
2907
2953
  var __getOwnPropSymbols$r = Object.getOwnPropertySymbols;
2908
2954
  var __hasOwnProp$r = Object.prototype.hasOwnProperty;
2909
2955
  var __propIsEnum$r = Object.prototype.propertyIsEnumerable;
2956
+ var __defNormalProp$q = (obj, key, value) => key in obj ? __defProp$q(obj, key, {
2957
+ enumerable: true,
2958
+ configurable: true,
2959
+ writable: true,
2960
+ value
2961
+ }) : obj[key] = value;
2962
+ var __spreadValues$q = (a, b) => {
2963
+ for (var prop in b || (b = {})) if (__hasOwnProp$r.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
2964
+ if (__getOwnPropSymbols$r) for (var prop of __getOwnPropSymbols$r(b)) {
2965
+ if (__propIsEnum$r.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
2966
+ }
2967
+ return a;
2968
+ };
2969
+ var __spreadProps$k = (a, b) => __defProps$k(a, __getOwnPropDescs$k(b));
2910
2970
  var __objRest$a = (source, exclude) => {
2911
2971
  var target = {};
2912
2972
  for (var prop in source) if (__hasOwnProp$r.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
@@ -2915,22 +2975,137 @@ var __objRest$a = (source, exclude) => {
2915
2975
  }
2916
2976
  return target;
2917
2977
  };
2918
- const NameTag = /*#__PURE__*/styled$1('span')({
2919
- name: "NameTag",
2920
- class: "n3qomhu",
2921
- propsAsIs: false
2922
- });
2978
+ const WrapperStyle = "w1xcixj5";
2979
+ const SplitTag = _a => {
2980
+ var _b = _a,
2981
+ {
2982
+ size = "small",
2983
+ color = "gray",
2984
+ className,
2985
+ primaryContent,
2986
+ secondaryContent,
2987
+ icon
2988
+ } = _b,
2989
+ props = __objRest$a(_b, ["size", "color", "className", "primaryContent", "secondaryContent", "icon"]);
2990
+ return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$k(__spreadValues$q({}, props), {
2991
+ className: cs(className, TagStyle$1, Size$1[size], WrapperStyle, Typo.Label.l4_regular, {
2992
+ [`ant-tag-${color}`]: PresetColors$3.includes(color)
2993
+ }, "outside-tag")
2994
+ }), /* @__PURE__ */React__default.createElement(Tag$1, {
2995
+ className: cs(Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
2996
+ [`ant-tag-${color}`]: PresetColors$3.includes(color)
2997
+ }, "inside-tag")
2998
+ }, icon && /* @__PURE__ */React__default.createElement("span", {
2999
+ className: cs("ui-kit-tag-icon", IconStyle$1)
3000
+ }, icon), primaryContent), secondaryContent);
3001
+ };
3002
+
3003
+ var __defProp$p = Object.defineProperty;
3004
+ var __defProps$j = Object.defineProperties;
3005
+ var __getOwnPropDescs$j = Object.getOwnPropertyDescriptors;
3006
+ var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
3007
+ var __hasOwnProp$q = Object.prototype.hasOwnProperty;
3008
+ var __propIsEnum$q = Object.prototype.propertyIsEnumerable;
3009
+ var __defNormalProp$p = (obj, key, value) => key in obj ? __defProp$p(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3010
+ var __spreadValues$p = (a, b) => {
3011
+ for (var prop in b || (b = {}))
3012
+ if (__hasOwnProp$q.call(b, prop))
3013
+ __defNormalProp$p(a, prop, b[prop]);
3014
+ if (__getOwnPropSymbols$q)
3015
+ for (var prop of __getOwnPropSymbols$q(b)) {
3016
+ if (__propIsEnum$q.call(b, prop))
3017
+ __defNormalProp$p(a, prop, b[prop]);
3018
+ }
3019
+ return a;
3020
+ };
3021
+ var __spreadProps$j = (a, b) => __defProps$j(a, __getOwnPropDescs$j(b));
3022
+ var __objRest$9 = (source, exclude) => {
3023
+ var target = {};
3024
+ for (var prop in source)
3025
+ if (__hasOwnProp$q.call(source, prop) && exclude.indexOf(prop) < 0)
3026
+ target[prop] = source[prop];
3027
+ if (source != null && __getOwnPropSymbols$q)
3028
+ for (var prop of __getOwnPropSymbols$q(source)) {
3029
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$q.call(source, prop))
3030
+ target[prop] = source[prop];
3031
+ }
3032
+ return target;
3033
+ };
3034
+ const PresetColors$2 = [
3035
+ ...PresetColors$3,
3036
+ "red-ontint",
3037
+ "green-ontint"
3038
+ ];
3039
+ const AntdColorMap = {
3040
+ processing: "blue",
3041
+ success: "green",
3042
+ error: "red",
3043
+ warn: "yellow",
3044
+ default: "gray"
3045
+ };
3046
+ const Tag = (_a) => {
3047
+ var _b = _a, {
3048
+ size = "small",
3049
+ color = "gray",
3050
+ className,
3051
+ hoverable = false,
3052
+ icon,
3053
+ children
3054
+ } = _b, props = __objRest$9(_b, [
3055
+ "size",
3056
+ "color",
3057
+ "className",
3058
+ "hoverable",
3059
+ "icon",
3060
+ "children"
3061
+ ]);
3062
+ const computedColor = AntdColorMap[color] || color;
3063
+ return /* @__PURE__ */ React__default.createElement(
3064
+ Tag$1,
3065
+ __spreadProps$j(__spreadValues$p({}, props), {
3066
+ className: cs(className, Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
3067
+ [`ant-tag-${computedColor}`]: PresetColors$2.includes(computedColor),
3068
+ "tag-hover": hoverable
3069
+ }),
3070
+ closable: false,
3071
+ color: computedColor === "gray" ? void 0 : computedColor
3072
+ }),
3073
+ icon && /* @__PURE__ */ React__default.createElement("span", { className: IconStyle$1 }, icon),
3074
+ children
3075
+ );
3076
+ };
3077
+ const NameTag = (_c) => {
3078
+ var _d = _c, { className } = _d, props = __objRest$9(_d, ["className"]);
3079
+ return /* @__PURE__ */ React__default.createElement(Tag, __spreadValues$p({ className: cs(NameTagStyle, className) }, props));
3080
+ };
3081
+ Tag.SplitTag = SplitTag;
3082
+ Tag.NameTag = NameTag;
3083
+
3084
+ var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
3085
+ var __hasOwnProp$p = Object.prototype.hasOwnProperty;
3086
+ var __propIsEnum$p = Object.prototype.propertyIsEnumerable;
3087
+ var __objRest$8 = (source, exclude) => {
3088
+ var target = {};
3089
+ for (var prop in source) if (__hasOwnProp$p.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
3090
+ if (source != null && __getOwnPropSymbols$p) for (var prop of __getOwnPropSymbols$p(source)) {
3091
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$p.call(source, prop)) target[prop] = source[prop];
3092
+ }
3093
+ return target;
3094
+ };
3095
+ const tagStyle = "t3qomhu";
2923
3096
  const I18nNameTag = props => {
2924
3097
  const _a = props,
2925
3098
  {
2926
3099
  name,
2927
3100
  i18nKey
2928
3101
  } = _a,
2929
- otherOption = __objRest$a(_a, ["name", "i18nKey"]);
3102
+ otherOption = __objRest$8(_a, ["name", "i18nKey"]);
2930
3103
  return /* @__PURE__ */React__default.createElement(ParrotTrans, {
2931
3104
  i18nKey,
2932
3105
  tOptions: otherOption
2933
- }, "h", /* @__PURE__ */React__default.createElement(NameTag, null, {
3106
+ }, "h", /* @__PURE__ */React__default.createElement(Tag.NameTag, {
3107
+ className: tagStyle
3108
+ }, {
2934
3109
  name
2935
3110
  }));
2936
3111
  };
@@ -2942,25 +3117,25 @@ const InputGroup = /*#__PURE__*/styled$1(_exp())({
2942
3117
  propsAsIs: true
2943
3118
  });
2944
3119
 
2945
- var __defProp$q = Object.defineProperty;
2946
- var __defProps$k = Object.defineProperties;
2947
- var __getOwnPropDescs$k = Object.getOwnPropertyDescriptors;
2948
- var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
2949
- var __hasOwnProp$q = Object.prototype.hasOwnProperty;
2950
- var __propIsEnum$q = Object.prototype.propertyIsEnumerable;
2951
- var __defNormalProp$q = (obj, key2, value) => key2 in obj ? __defProp$q(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
2952
- var __spreadValues$q = (a, b) => {
3120
+ var __defProp$o = Object.defineProperty;
3121
+ var __defProps$i = Object.defineProperties;
3122
+ var __getOwnPropDescs$i = Object.getOwnPropertyDescriptors;
3123
+ var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
3124
+ var __hasOwnProp$o = Object.prototype.hasOwnProperty;
3125
+ var __propIsEnum$o = Object.prototype.propertyIsEnumerable;
3126
+ var __defNormalProp$o = (obj, key2, value) => key2 in obj ? __defProp$o(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
3127
+ var __spreadValues$o = (a, b) => {
2953
3128
  for (var prop in b || (b = {}))
2954
- if (__hasOwnProp$q.call(b, prop))
2955
- __defNormalProp$q(a, prop, b[prop]);
2956
- if (__getOwnPropSymbols$q)
2957
- for (var prop of __getOwnPropSymbols$q(b)) {
2958
- if (__propIsEnum$q.call(b, prop))
2959
- __defNormalProp$q(a, prop, b[prop]);
3129
+ if (__hasOwnProp$o.call(b, prop))
3130
+ __defNormalProp$o(a, prop, b[prop]);
3131
+ if (__getOwnPropSymbols$o)
3132
+ for (var prop of __getOwnPropSymbols$o(b)) {
3133
+ if (__propIsEnum$o.call(b, prop))
3134
+ __defNormalProp$o(a, prop, b[prop]);
2960
3135
  }
2961
3136
  return a;
2962
3137
  };
2963
- var __spreadProps$k = (a, b) => __defProps$k(a, __getOwnPropDescs$k(b));
3138
+ var __spreadProps$i = (a, b) => __defProps$i(a, __getOwnPropDescs$i(b));
2964
3139
  let messageInstance;
2965
3140
  let defaultDuration = 3;
2966
3141
  let defaultTop;
@@ -3067,7 +3242,7 @@ function notice(args) {
3067
3242
  }
3068
3243
  getRCNotificationInstance(args, ({ prefixCls, instance }) => {
3069
3244
  instance.notice(
3070
- getRCNoticeProps(__spreadProps$k(__spreadValues$q({}, args), { key: target, onClose: callback }), prefixCls)
3245
+ getRCNoticeProps(__spreadProps$i(__spreadValues$o({}, args), { key: target, onClose: callback }), prefixCls)
3071
3246
  );
3072
3247
  });
3073
3248
  });
@@ -3096,7 +3271,7 @@ const api = {
3096
3271
  function attachTypeApi(originalApi, type) {
3097
3272
  originalApi[type] = (content, duration, onClose) => {
3098
3273
  if (isArgsProps(content)) {
3099
- return originalApi.open(__spreadProps$k(__spreadValues$q({}, content), { type }));
3274
+ return originalApi.open(__spreadProps$i(__spreadValues$o({}, content), { type }));
3100
3275
  }
3101
3276
  if (typeof duration === "function") {
3102
3277
  onClose = duration;
@@ -3110,25 +3285,25 @@ function attachTypeApi(originalApi, type) {
3110
3285
  );
3111
3286
  api.warn = api.warning;
3112
3287
 
3113
- var __defProp$p = Object.defineProperty;
3114
- var __defProps$j = Object.defineProperties;
3115
- var __getOwnPropDescs$j = Object.getOwnPropertyDescriptors;
3116
- var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
3117
- var __hasOwnProp$p = Object.prototype.hasOwnProperty;
3118
- var __propIsEnum$p = Object.prototype.propertyIsEnumerable;
3119
- var __defNormalProp$p = (obj, key, value) => key in obj ? __defProp$p(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3120
- var __spreadValues$p = (a, b) => {
3288
+ var __defProp$n = Object.defineProperty;
3289
+ var __defProps$h = Object.defineProperties;
3290
+ var __getOwnPropDescs$h = Object.getOwnPropertyDescriptors;
3291
+ var __getOwnPropSymbols$n = Object.getOwnPropertySymbols;
3292
+ var __hasOwnProp$n = Object.prototype.hasOwnProperty;
3293
+ var __propIsEnum$n = Object.prototype.propertyIsEnumerable;
3294
+ var __defNormalProp$n = (obj, key, value) => key in obj ? __defProp$n(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3295
+ var __spreadValues$n = (a, b) => {
3121
3296
  for (var prop in b || (b = {}))
3122
- if (__hasOwnProp$p.call(b, prop))
3123
- __defNormalProp$p(a, prop, b[prop]);
3124
- if (__getOwnPropSymbols$p)
3125
- for (var prop of __getOwnPropSymbols$p(b)) {
3126
- if (__propIsEnum$p.call(b, prop))
3127
- __defNormalProp$p(a, prop, b[prop]);
3297
+ if (__hasOwnProp$n.call(b, prop))
3298
+ __defNormalProp$n(a, prop, b[prop]);
3299
+ if (__getOwnPropSymbols$n)
3300
+ for (var prop of __getOwnPropSymbols$n(b)) {
3301
+ if (__propIsEnum$n.call(b, prop))
3302
+ __defNormalProp$n(a, prop, b[prop]);
3128
3303
  }
3129
3304
  return a;
3130
3305
  };
3131
- var __spreadProps$j = (a, b) => __defProps$j(a, __getOwnPropDescs$j(b));
3306
+ var __spreadProps$h = (a, b) => __defProps$h(a, __getOwnPropDescs$h(b));
3132
3307
  const initialChartState = {
3133
3308
  pointers: {},
3134
3309
  resourceData: {},
@@ -3138,8 +3313,8 @@ const chartReducer = (state = initialChartState, action) => {
3138
3313
  switch (action.type) {
3139
3314
  case "SET_POINTER" /* SET_POINTER */: {
3140
3315
  const { uuid, left, text, visible, value } = action.payload;
3141
- return __spreadProps$j(__spreadValues$p({}, state), {
3142
- pointers: __spreadProps$j(__spreadValues$p({}, state.pointers), {
3316
+ return __spreadProps$h(__spreadValues$n({}, state), {
3317
+ pointers: __spreadProps$h(__spreadValues$n({}, state.pointers), {
3143
3318
  [uuid]: {
3144
3319
  left,
3145
3320
  text,
@@ -3151,16 +3326,16 @@ const chartReducer = (state = initialChartState, action) => {
3151
3326
  }
3152
3327
  case "SET_RESOURCE_DATA" /* SET_RESOURCE_DATA */: {
3153
3328
  const { uuid, data } = action.payload;
3154
- return __spreadProps$j(__spreadValues$p({}, state), {
3155
- resourceData: __spreadProps$j(__spreadValues$p({}, state.resourceData), {
3329
+ return __spreadProps$h(__spreadValues$n({}, state), {
3330
+ resourceData: __spreadProps$h(__spreadValues$n({}, state.resourceData), {
3156
3331
  [uuid]: data
3157
3332
  })
3158
3333
  });
3159
3334
  }
3160
3335
  case "SET_AVERAGE_DATA" /* SET_AVERAGE_DATA */: {
3161
3336
  const { uuid, average } = action.payload;
3162
- return __spreadProps$j(__spreadValues$p({}, state), {
3163
- averageData: __spreadProps$j(__spreadValues$p({}, state.averageData), {
3337
+ return __spreadProps$h(__spreadValues$n({}, state), {
3338
+ averageData: __spreadProps$h(__spreadValues$n({}, state.averageData), {
3164
3339
  [uuid]: average
3165
3340
  })
3166
3341
  });
@@ -3171,25 +3346,25 @@ const chartReducer = (state = initialChartState, action) => {
3171
3346
  }
3172
3347
  };
3173
3348
 
3174
- var __defProp$o = Object.defineProperty;
3175
- var __defProps$i = Object.defineProperties;
3176
- var __getOwnPropDescs$i = Object.getOwnPropertyDescriptors;
3177
- var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
3178
- var __hasOwnProp$o = Object.prototype.hasOwnProperty;
3179
- var __propIsEnum$o = Object.prototype.propertyIsEnumerable;
3180
- var __defNormalProp$o = (obj, key, value) => key in obj ? __defProp$o(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3181
- var __spreadValues$o = (a, b) => {
3349
+ var __defProp$m = Object.defineProperty;
3350
+ var __defProps$g = Object.defineProperties;
3351
+ var __getOwnPropDescs$g = Object.getOwnPropertyDescriptors;
3352
+ var __getOwnPropSymbols$m = Object.getOwnPropertySymbols;
3353
+ var __hasOwnProp$m = Object.prototype.hasOwnProperty;
3354
+ var __propIsEnum$m = Object.prototype.propertyIsEnumerable;
3355
+ var __defNormalProp$m = (obj, key, value) => key in obj ? __defProp$m(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3356
+ var __spreadValues$m = (a, b) => {
3182
3357
  for (var prop in b || (b = {}))
3183
- if (__hasOwnProp$o.call(b, prop))
3184
- __defNormalProp$o(a, prop, b[prop]);
3185
- if (__getOwnPropSymbols$o)
3186
- for (var prop of __getOwnPropSymbols$o(b)) {
3187
- if (__propIsEnum$o.call(b, prop))
3188
- __defNormalProp$o(a, prop, b[prop]);
3358
+ if (__hasOwnProp$m.call(b, prop))
3359
+ __defNormalProp$m(a, prop, b[prop]);
3360
+ if (__getOwnPropSymbols$m)
3361
+ for (var prop of __getOwnPropSymbols$m(b)) {
3362
+ if (__propIsEnum$m.call(b, prop))
3363
+ __defNormalProp$m(a, prop, b[prop]);
3189
3364
  }
3190
3365
  return a;
3191
3366
  };
3192
- var __spreadProps$i = (a, b) => __defProps$i(a, __getOwnPropDescs$i(b));
3367
+ var __spreadProps$g = (a, b) => __defProps$g(a, __getOwnPropDescs$g(b));
3193
3368
  var ModalActions = /* @__PURE__ */ ((ModalActions2) => {
3194
3369
  ModalActions2["PUSH_MODAL"] = "PUSH_MODAL";
3195
3370
  ModalActions2["POP_MODAL"] = "POP_MODAL";
@@ -3210,22 +3385,22 @@ const modalReducer = (state = initialModalState, action) => {
3210
3385
  )) {
3211
3386
  return state;
3212
3387
  }
3213
- return __spreadProps$i(__spreadValues$o({}, state), {
3214
- stack: state.stack.concat(__spreadProps$i(__spreadValues$o({}, action.payload), {
3388
+ return __spreadProps$g(__spreadValues$m({}, state), {
3389
+ stack: state.stack.concat(__spreadProps$g(__spreadValues$m({}, action.payload), {
3215
3390
  id: MODAL_ID++
3216
3391
  }))
3217
3392
  });
3218
3393
  case "POP_MODAL" /* POP_MODAL */:
3219
- return __spreadProps$i(__spreadValues$o({}, state), {
3394
+ return __spreadProps$g(__spreadValues$m({}, state), {
3220
3395
  stack: state.stack.slice(0, -1)
3221
3396
  });
3222
3397
  case "REMOVE_MODAL" /* REMOVE_MODAL */:
3223
- return __spreadProps$i(__spreadValues$o({}, state), {
3398
+ return __spreadProps$g(__spreadValues$m({}, state), {
3224
3399
  closeId: 0,
3225
3400
  stack: state.stack.filter((m) => m.id !== action.id)
3226
3401
  });
3227
3402
  case "CLOSE_MODAL" /* CLOSE_MODAL */:
3228
- return __spreadProps$i(__spreadValues$o({}, state), {
3403
+ return __spreadProps$g(__spreadValues$m({}, state), {
3229
3404
  closeId: action.id
3230
3405
  });
3231
3406
  default:
@@ -3282,33 +3457,33 @@ const VerticalStyle = "v1p8siwu";
3282
3457
  const HorizontalStepContentStyle = "h1xo7yjb";
3283
3458
  const VerticalStepContentStyle = "v1f2f7cy";
3284
3459
 
3285
- var __defProp$n = Object.defineProperty;
3286
- var __defProps$h = Object.defineProperties;
3287
- var __getOwnPropDescs$h = Object.getOwnPropertyDescriptors;
3288
- var __getOwnPropSymbols$n = Object.getOwnPropertySymbols;
3289
- var __hasOwnProp$n = Object.prototype.hasOwnProperty;
3290
- var __propIsEnum$n = Object.prototype.propertyIsEnumerable;
3291
- var __defNormalProp$n = (obj, key, value) => key in obj ? __defProp$n(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3292
- var __spreadValues$n = (a, b) => {
3460
+ var __defProp$l = Object.defineProperty;
3461
+ var __defProps$f = Object.defineProperties;
3462
+ var __getOwnPropDescs$f = Object.getOwnPropertyDescriptors;
3463
+ var __getOwnPropSymbols$l = Object.getOwnPropertySymbols;
3464
+ var __hasOwnProp$l = Object.prototype.hasOwnProperty;
3465
+ var __propIsEnum$l = Object.prototype.propertyIsEnumerable;
3466
+ var __defNormalProp$l = (obj, key, value) => key in obj ? __defProp$l(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3467
+ var __spreadValues$l = (a, b) => {
3293
3468
  for (var prop in b || (b = {}))
3294
- if (__hasOwnProp$n.call(b, prop))
3295
- __defNormalProp$n(a, prop, b[prop]);
3296
- if (__getOwnPropSymbols$n)
3297
- for (var prop of __getOwnPropSymbols$n(b)) {
3298
- if (__propIsEnum$n.call(b, prop))
3299
- __defNormalProp$n(a, prop, b[prop]);
3469
+ if (__hasOwnProp$l.call(b, prop))
3470
+ __defNormalProp$l(a, prop, b[prop]);
3471
+ if (__getOwnPropSymbols$l)
3472
+ for (var prop of __getOwnPropSymbols$l(b)) {
3473
+ if (__propIsEnum$l.call(b, prop))
3474
+ __defNormalProp$l(a, prop, b[prop]);
3300
3475
  }
3301
3476
  return a;
3302
3477
  };
3303
- var __spreadProps$h = (a, b) => __defProps$h(a, __getOwnPropDescs$h(b));
3304
- var __objRest$9 = (source, exclude) => {
3478
+ var __spreadProps$f = (a, b) => __defProps$f(a, __getOwnPropDescs$f(b));
3479
+ var __objRest$7 = (source, exclude) => {
3305
3480
  var target = {};
3306
3481
  for (var prop in source)
3307
- if (__hasOwnProp$n.call(source, prop) && exclude.indexOf(prop) < 0)
3482
+ if (__hasOwnProp$l.call(source, prop) && exclude.indexOf(prop) < 0)
3308
3483
  target[prop] = source[prop];
3309
- if (source != null && __getOwnPropSymbols$n)
3310
- for (var prop of __getOwnPropSymbols$n(source)) {
3311
- if (exclude.indexOf(prop) < 0 && __propIsEnum$n.call(source, prop))
3484
+ if (source != null && __getOwnPropSymbols$l)
3485
+ for (var prop of __getOwnPropSymbols$l(source)) {
3486
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$l.call(source, prop))
3312
3487
  target[prop] = source[prop];
3313
3488
  }
3314
3489
  return target;
@@ -3324,7 +3499,7 @@ const StepTitle = (props) => {
3324
3499
  setTooltipEnable({});
3325
3500
  }
3326
3501
  }, [textRef]);
3327
- return /* @__PURE__ */ React__default.createElement(Tooltip, __spreadProps$h(__spreadValues$n({}, tooltipEnable), { title: step.title }), /* @__PURE__ */ React__default.createElement(
3502
+ return /* @__PURE__ */ React__default.createElement(Tooltip, __spreadProps$f(__spreadValues$l({}, tooltipEnable), { title: step.title }), /* @__PURE__ */ React__default.createElement(
3328
3503
  "div",
3329
3504
  {
3330
3505
  className: isVerticalMode ? VerticalStepContentStyle : HorizontalStepContentStyle
@@ -3340,7 +3515,7 @@ const Steps = (props) => {
3340
3515
  containerClassname,
3341
3516
  current = 0,
3342
3517
  disabled
3343
- } = _a, stepsProps = __objRest$9(_a, [
3518
+ } = _a, stepsProps = __objRest$7(_a, [
3344
3519
  "stepsConfig",
3345
3520
  "direction",
3346
3521
  "containerClassname",
@@ -3359,14 +3534,14 @@ const Steps = (props) => {
3359
3534
  },
3360
3535
  /* @__PURE__ */ React__default.createElement(
3361
3536
  Steps$1,
3362
- __spreadProps$h(__spreadValues$n({}, stepsProps), {
3537
+ __spreadProps$f(__spreadValues$l({}, stepsProps), {
3363
3538
  direction,
3364
3539
  current,
3365
3540
  type: "default"
3366
3541
  }),
3367
3542
  (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */ React__default.createElement(
3368
3543
  Steps$1.Step,
3369
- __spreadProps$h(__spreadValues$n({
3544
+ __spreadProps$f(__spreadValues$l({
3370
3545
  key: index
3371
3546
  }, step), {
3372
3547
  disabled: disabled || index > current,
@@ -3385,33 +3560,33 @@ const Steps = (props) => {
3385
3560
  );
3386
3561
  };
3387
3562
 
3388
- var __defProp$m = Object.defineProperty;
3389
- var __defProps$g = Object.defineProperties;
3390
- var __getOwnPropDescs$g = Object.getOwnPropertyDescriptors;
3391
- var __getOwnPropSymbols$m = Object.getOwnPropertySymbols;
3392
- var __hasOwnProp$m = Object.prototype.hasOwnProperty;
3393
- var __propIsEnum$m = Object.prototype.propertyIsEnumerable;
3394
- var __defNormalProp$m = (obj, key, value) => key in obj ? __defProp$m(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3395
- var __spreadValues$m = (a, b) => {
3563
+ var __defProp$k = Object.defineProperty;
3564
+ var __defProps$e = Object.defineProperties;
3565
+ var __getOwnPropDescs$e = Object.getOwnPropertyDescriptors;
3566
+ var __getOwnPropSymbols$k = Object.getOwnPropertySymbols;
3567
+ var __hasOwnProp$k = Object.prototype.hasOwnProperty;
3568
+ var __propIsEnum$k = Object.prototype.propertyIsEnumerable;
3569
+ var __defNormalProp$k = (obj, key, value) => key in obj ? __defProp$k(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3570
+ var __spreadValues$k = (a, b) => {
3396
3571
  for (var prop in b || (b = {}))
3397
- if (__hasOwnProp$m.call(b, prop))
3398
- __defNormalProp$m(a, prop, b[prop]);
3399
- if (__getOwnPropSymbols$m)
3400
- for (var prop of __getOwnPropSymbols$m(b)) {
3401
- if (__propIsEnum$m.call(b, prop))
3402
- __defNormalProp$m(a, prop, b[prop]);
3572
+ if (__hasOwnProp$k.call(b, prop))
3573
+ __defNormalProp$k(a, prop, b[prop]);
3574
+ if (__getOwnPropSymbols$k)
3575
+ for (var prop of __getOwnPropSymbols$k(b)) {
3576
+ if (__propIsEnum$k.call(b, prop))
3577
+ __defNormalProp$k(a, prop, b[prop]);
3403
3578
  }
3404
3579
  return a;
3405
3580
  };
3406
- var __spreadProps$g = (a, b) => __defProps$g(a, __getOwnPropDescs$g(b));
3407
- var __objRest$8 = (source, exclude) => {
3581
+ var __spreadProps$e = (a, b) => __defProps$e(a, __getOwnPropDescs$e(b));
3582
+ var __objRest$6 = (source, exclude) => {
3408
3583
  var target = {};
3409
3584
  for (var prop in source)
3410
- if (__hasOwnProp$m.call(source, prop) && exclude.indexOf(prop) < 0)
3585
+ if (__hasOwnProp$k.call(source, prop) && exclude.indexOf(prop) < 0)
3411
3586
  target[prop] = source[prop];
3412
- if (source != null && __getOwnPropSymbols$m)
3413
- for (var prop of __getOwnPropSymbols$m(source)) {
3414
- if (exclude.indexOf(prop) < 0 && __propIsEnum$m.call(source, prop))
3587
+ if (source != null && __getOwnPropSymbols$k)
3588
+ for (var prop of __getOwnPropSymbols$k(source)) {
3589
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$k.call(source, prop))
3415
3590
  target[prop] = source[prop];
3416
3591
  }
3417
3592
  return target;
@@ -3438,7 +3613,7 @@ const Modal = (props) => {
3438
3613
  showCancel = true,
3439
3614
  showOk = true,
3440
3615
  afterClose
3441
- } = _a, restProps = __objRest$8(_a, [
3616
+ } = _a, restProps = __objRest$6(_a, [
3442
3617
  "error",
3443
3618
  "okText",
3444
3619
  "cancelText",
@@ -3493,7 +3668,7 @@ const Modal = (props) => {
3493
3668
  }
3494
3669
  return /* @__PURE__ */ React__default.createElement(
3495
3670
  Modal$1,
3496
- __spreadProps$g(__spreadValues$m({
3671
+ __spreadProps$e(__spreadValues$k({
3497
3672
  maskClosable,
3498
3673
  className: cs(
3499
3674
  className,
@@ -3528,7 +3703,7 @@ const Modal = (props) => {
3528
3703
  prevText
3529
3704
  ), error && /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement("span", { className: "modal-error" }, error))), /* @__PURE__ */ React__default.createElement("div", { className: "modal-footer-btn-group" }, showCancel && /* @__PURE__ */ React__default.createElement(
3530
3705
  Button,
3531
- __spreadValues$m({
3706
+ __spreadValues$k({
3532
3707
  type: "quiet",
3533
3708
  onMouseDown: (e) => {
3534
3709
  e.preventDefault();
@@ -3542,7 +3717,7 @@ const Modal = (props) => {
3542
3717
  cancelText
3543
3718
  ), showOk && /* @__PURE__ */ React__default.createElement(
3544
3719
  Button,
3545
- __spreadValues$m({
3720
+ __spreadValues$k({
3546
3721
  onClick: (e) => {
3547
3722
  var _a2, _b2;
3548
3723
  onOk == null ? void 0 : onOk(e);
@@ -3584,26 +3759,26 @@ const Modal = (props) => {
3584
3759
  );
3585
3760
  };
3586
3761
 
3587
- var __defProp$l = Object.defineProperty;
3588
- var __defProps$f = Object.defineProperties;
3589
- var __getOwnPropDescs$f = Object.getOwnPropertyDescriptors;
3590
- var __getOwnPropSymbols$l = Object.getOwnPropertySymbols;
3591
- var __hasOwnProp$l = Object.prototype.hasOwnProperty;
3592
- var __propIsEnum$l = Object.prototype.propertyIsEnumerable;
3593
- var __defNormalProp$l = (obj, key, value) => key in obj ? __defProp$l(obj, key, {
3762
+ var __defProp$j = Object.defineProperty;
3763
+ var __defProps$d = Object.defineProperties;
3764
+ var __getOwnPropDescs$d = Object.getOwnPropertyDescriptors;
3765
+ var __getOwnPropSymbols$j = Object.getOwnPropertySymbols;
3766
+ var __hasOwnProp$j = Object.prototype.hasOwnProperty;
3767
+ var __propIsEnum$j = Object.prototype.propertyIsEnumerable;
3768
+ var __defNormalProp$j = (obj, key, value) => key in obj ? __defProp$j(obj, key, {
3594
3769
  enumerable: true,
3595
3770
  configurable: true,
3596
3771
  writable: true,
3597
3772
  value
3598
3773
  }) : obj[key] = value;
3599
- var __spreadValues$l = (a, b) => {
3600
- for (var prop in b || (b = {})) if (__hasOwnProp$l.call(b, prop)) __defNormalProp$l(a, prop, b[prop]);
3601
- if (__getOwnPropSymbols$l) for (var prop of __getOwnPropSymbols$l(b)) {
3602
- if (__propIsEnum$l.call(b, prop)) __defNormalProp$l(a, prop, b[prop]);
3774
+ var __spreadValues$j = (a, b) => {
3775
+ for (var prop in b || (b = {})) if (__hasOwnProp$j.call(b, prop)) __defNormalProp$j(a, prop, b[prop]);
3776
+ if (__getOwnPropSymbols$j) for (var prop of __getOwnPropSymbols$j(b)) {
3777
+ if (__propIsEnum$j.call(b, prop)) __defNormalProp$j(a, prop, b[prop]);
3603
3778
  }
3604
3779
  return a;
3605
3780
  };
3606
- var __spreadProps$f = (a, b) => __defProps$f(a, __getOwnPropDescs$f(b));
3781
+ var __spreadProps$d = (a, b) => __defProps$d(a, __getOwnPropDescs$d(b));
3607
3782
  const OverflowText = "o8ocss1";
3608
3783
  const NoWrap = "n17syc35";
3609
3784
  const OverflowTooltip = props => {
@@ -3634,7 +3809,7 @@ const OverflowTooltip = props => {
3634
3809
  observer == null ? void 0 : observer.disconnect();
3635
3810
  };
3636
3811
  });
3637
- return /* @__PURE__ */React__default.createElement(Tooltip, __spreadProps$f(__spreadValues$l({}, !ellipsis && {
3812
+ return /* @__PURE__ */React__default.createElement(Tooltip, __spreadProps$d(__spreadValues$j({}, !ellipsis && {
3638
3813
  visible: false
3639
3814
  }), {
3640
3815
  title: tooltip
@@ -3707,8 +3882,8 @@ const Pagination = props => {
3707
3882
  }, /* @__PURE__ */React__default.createElement(Icon, {
3708
3883
  alt: "arrowChevronDownSmall16Secondary",
3709
3884
  className: "pagination-left dropdown-trigger",
3710
- src: img$8,
3711
- hoverSrc: img$9,
3885
+ src: ArrowChevronDownSmall16SecondaryIcon,
3886
+ hoverSrc: ArrowChevronDownSmall16BlueIcon,
3712
3887
  prefix: content
3713
3888
  }));
3714
3889
  }
@@ -3729,7 +3904,7 @@ const Pagination = props => {
3729
3904
  size: "small",
3730
3905
  prefixIcon: /* @__PURE__ */React__default.createElement(Icon, {
3731
3906
  alt: "arrowChevronLeftSmall16BoldBlue",
3732
- src: img$7
3907
+ src: ArrowChevronLeftSmall16BoldBlueIcon
3733
3908
  }),
3734
3909
  onClick: () => {
3735
3910
  onChange == null ? void 0 : onChange(current - 1);
@@ -3742,7 +3917,7 @@ const Pagination = props => {
3742
3917
  size: "small",
3743
3918
  suffixIcon: /* @__PURE__ */React__default.createElement(Icon, {
3744
3919
  alt: "arrowChevronLeftSmall16BoldBlue",
3745
- src: img$7
3920
+ src: ArrowChevronLeftSmall16BoldBlueIcon
3746
3921
  }),
3747
3922
  onClick: () => {
3748
3923
  onChange == null ? void 0 : onChange(current + 1);
@@ -3752,19 +3927,19 @@ const Pagination = props => {
3752
3927
  }))));
3753
3928
  };
3754
3929
 
3755
- var __defProp$k = Object.defineProperty;
3756
- var __getOwnPropSymbols$k = Object.getOwnPropertySymbols;
3757
- var __hasOwnProp$k = Object.prototype.hasOwnProperty;
3758
- var __propIsEnum$k = Object.prototype.propertyIsEnumerable;
3759
- var __defNormalProp$k = (obj, key, value) => key in obj ? __defProp$k(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3760
- var __spreadValues$k = (a, b) => {
3930
+ var __defProp$i = Object.defineProperty;
3931
+ var __getOwnPropSymbols$i = Object.getOwnPropertySymbols;
3932
+ var __hasOwnProp$i = Object.prototype.hasOwnProperty;
3933
+ var __propIsEnum$i = Object.prototype.propertyIsEnumerable;
3934
+ var __defNormalProp$i = (obj, key, value) => key in obj ? __defProp$i(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3935
+ var __spreadValues$i = (a, b) => {
3761
3936
  for (var prop in b || (b = {}))
3762
- if (__hasOwnProp$k.call(b, prop))
3763
- __defNormalProp$k(a, prop, b[prop]);
3764
- if (__getOwnPropSymbols$k)
3765
- for (var prop of __getOwnPropSymbols$k(b)) {
3766
- if (__propIsEnum$k.call(b, prop))
3767
- __defNormalProp$k(a, prop, b[prop]);
3937
+ if (__hasOwnProp$i.call(b, prop))
3938
+ __defNormalProp$i(a, prop, b[prop]);
3939
+ if (__getOwnPropSymbols$i)
3940
+ for (var prop of __getOwnPropSymbols$i(b)) {
3941
+ if (__propIsEnum$i.call(b, prop))
3942
+ __defNormalProp$i(a, prop, b[prop]);
3768
3943
  }
3769
3944
  return a;
3770
3945
  };
@@ -3777,52 +3952,52 @@ const Percent = ({
3777
3952
  emptyProps
3778
3953
  }) => {
3779
3954
  if (isEmpty(rawValue)) {
3780
- return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$k({}, emptyProps));
3955
+ return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$i({}, emptyProps));
3781
3956
  }
3782
3957
  const { value, unit } = formatPercent(rawValue, decimals, saturated);
3783
3958
  return /* @__PURE__ */ React__default.createElement("span", null, /* @__PURE__ */ React__default.createElement("span", { className: cx("value", valueClassName) }, value), /* @__PURE__ */ React__default.createElement("span", { className: cx("unit", unitClassName) }, unit));
3784
3959
  };
3785
3960
 
3786
- var __defProp$j = Object.defineProperty;
3787
- var __getOwnPropSymbols$j = Object.getOwnPropertySymbols;
3788
- var __hasOwnProp$j = Object.prototype.hasOwnProperty;
3789
- var __propIsEnum$j = Object.prototype.propertyIsEnumerable;
3790
- var __defNormalProp$j = (obj, key, value) => key in obj ? __defProp$j(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3791
- var __spreadValues$j = (a, b) => {
3961
+ var __defProp$h = Object.defineProperty;
3962
+ var __getOwnPropSymbols$h = Object.getOwnPropertySymbols;
3963
+ var __hasOwnProp$h = Object.prototype.hasOwnProperty;
3964
+ var __propIsEnum$h = Object.prototype.propertyIsEnumerable;
3965
+ var __defNormalProp$h = (obj, key, value) => key in obj ? __defProp$h(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3966
+ var __spreadValues$h = (a, b) => {
3792
3967
  for (var prop in b || (b = {}))
3793
- if (__hasOwnProp$j.call(b, prop))
3794
- __defNormalProp$j(a, prop, b[prop]);
3795
- if (__getOwnPropSymbols$j)
3796
- for (var prop of __getOwnPropSymbols$j(b)) {
3797
- if (__propIsEnum$j.call(b, prop))
3798
- __defNormalProp$j(a, prop, b[prop]);
3968
+ if (__hasOwnProp$h.call(b, prop))
3969
+ __defNormalProp$h(a, prop, b[prop]);
3970
+ if (__getOwnPropSymbols$h)
3971
+ for (var prop of __getOwnPropSymbols$h(b)) {
3972
+ if (__propIsEnum$h.call(b, prop))
3973
+ __defNormalProp$h(a, prop, b[prop]);
3799
3974
  }
3800
3975
  return a;
3801
3976
  };
3802
- const Progress = (props) => /* @__PURE__ */ React__default.createElement(Progress$1, __spreadValues$j({}, props));
3977
+ const Progress = (props) => /* @__PURE__ */ React__default.createElement(Progress$1, __spreadValues$h({}, props));
3803
3978
 
3804
- var __defProp$i = Object.defineProperty;
3805
- var __getOwnPropSymbols$i = Object.getOwnPropertySymbols;
3806
- var __hasOwnProp$i = Object.prototype.hasOwnProperty;
3807
- var __propIsEnum$i = Object.prototype.propertyIsEnumerable;
3808
- var __defNormalProp$i = (obj, key, value) => key in obj ? __defProp$i(obj, key, {
3979
+ var __defProp$g = Object.defineProperty;
3980
+ var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
3981
+ var __hasOwnProp$g = Object.prototype.hasOwnProperty;
3982
+ var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
3983
+ var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, {
3809
3984
  enumerable: true,
3810
3985
  configurable: true,
3811
3986
  writable: true,
3812
3987
  value
3813
3988
  }) : obj[key] = value;
3814
- var __spreadValues$i = (a, b) => {
3815
- for (var prop in b || (b = {})) if (__hasOwnProp$i.call(b, prop)) __defNormalProp$i(a, prop, b[prop]);
3816
- if (__getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(b)) {
3817
- if (__propIsEnum$i.call(b, prop)) __defNormalProp$i(a, prop, b[prop]);
3989
+ var __spreadValues$g = (a, b) => {
3990
+ for (var prop in b || (b = {})) if (__hasOwnProp$g.call(b, prop)) __defNormalProp$g(a, prop, b[prop]);
3991
+ if (__getOwnPropSymbols$g) for (var prop of __getOwnPropSymbols$g(b)) {
3992
+ if (__propIsEnum$g.call(b, prop)) __defNormalProp$g(a, prop, b[prop]);
3818
3993
  }
3819
3994
  return a;
3820
3995
  };
3821
- var __objRest$7 = (source, exclude) => {
3996
+ var __objRest$5 = (source, exclude) => {
3822
3997
  var target = {};
3823
- for (var prop in source) if (__hasOwnProp$i.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
3824
- if (source != null && __getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(source)) {
3825
- if (exclude.indexOf(prop) < 0 && __propIsEnum$i.call(source, prop)) target[prop] = source[prop];
3998
+ for (var prop in source) if (__hasOwnProp$g.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
3999
+ if (source != null && __getOwnPropSymbols$g) for (var prop of __getOwnPropSymbols$g(source)) {
4000
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$g.call(source, prop)) target[prop] = source[prop];
3826
4001
  }
3827
4002
  return target;
3828
4003
  };
@@ -3838,7 +4013,7 @@ const Radio = _a => {
3838
4013
  checked,
3839
4014
  compact = false
3840
4015
  } = _b,
3841
- props = __objRest$7(_b, ["children", "className", "checked", "compact"]);
4016
+ props = __objRest$5(_b, ["children", "className", "checked", "compact"]);
3842
4017
  const {
3843
4018
  description
3844
4019
  } = props;
@@ -3848,7 +4023,7 @@ const Radio = _a => {
3848
4023
  className: cx("radio-description", Typo.Label.l4_regular)
3849
4024
  }, description));
3850
4025
  }
3851
- return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Radio$1, __spreadValues$i({
4026
+ return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Radio$1, __spreadValues$g({
3852
4027
  className: cx(className, RadioStyle, compact && "compact"),
3853
4028
  checked: checked || false,
3854
4029
  "data-test": context.name ? `${context.name}-${String(props.value)}` : String(props.value)
@@ -3860,13 +4035,13 @@ const RadioGroup = _c => {
3860
4035
  children,
3861
4036
  className
3862
4037
  } = _d,
3863
- props = __objRest$7(_d, ["children", "className"]);
4038
+ props = __objRest$5(_d, ["children", "className"]);
3864
4039
  return /* @__PURE__ */React__default.createElement(KitRadioGroupContext.Provider, {
3865
4040
  value: {
3866
4041
  disabled: props.disabled,
3867
4042
  name: props.name
3868
4043
  }
3869
- }, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$i({
4044
+ }, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$g({
3870
4045
  className: cx(className, RadioGroupStyle)
3871
4046
  }, props), children ? children : null));
3872
4047
  };
@@ -3876,7 +4051,7 @@ const RadioButton = _e => {
3876
4051
  children,
3877
4052
  className
3878
4053
  } = _f,
3879
- props = __objRest$7(_f, ["children", "className"]);
4054
+ props = __objRest$5(_f, ["children", "className"]);
3880
4055
  const {
3881
4056
  type,
3882
4057
  placeholder = "Label",
@@ -3922,46 +4097,46 @@ const RadioButton = _e => {
3922
4097
  className: "ant-radio-button-input-label"
3923
4098
  }, typeof children === "string" ? children : ""));
3924
4099
  };
3925
- return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$i({
4100
+ return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$g({
3926
4101
  className: cx(className, RadioButtonStyle),
3927
4102
  value: radioButtonValue
3928
4103
  }, props), renderChildren());
3929
4104
  };
3930
4105
 
3931
- var __defProp$h = Object.defineProperty;
3932
- var __getOwnPropSymbols$h = Object.getOwnPropertySymbols;
3933
- var __hasOwnProp$h = Object.prototype.hasOwnProperty;
3934
- var __propIsEnum$h = Object.prototype.propertyIsEnumerable;
3935
- var __defNormalProp$h = (obj, key, value) => key in obj ? __defProp$h(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3936
- var __spreadValues$h = (a, b) => {
4106
+ var __defProp$f = Object.defineProperty;
4107
+ var __getOwnPropSymbols$f = Object.getOwnPropertySymbols;
4108
+ var __hasOwnProp$f = Object.prototype.hasOwnProperty;
4109
+ var __propIsEnum$f = Object.prototype.propertyIsEnumerable;
4110
+ var __defNormalProp$f = (obj, key, value) => key in obj ? __defProp$f(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4111
+ var __spreadValues$f = (a, b) => {
3937
4112
  for (var prop in b || (b = {}))
3938
- if (__hasOwnProp$h.call(b, prop))
3939
- __defNormalProp$h(a, prop, b[prop]);
3940
- if (__getOwnPropSymbols$h)
3941
- for (var prop of __getOwnPropSymbols$h(b)) {
3942
- if (__propIsEnum$h.call(b, prop))
3943
- __defNormalProp$h(a, prop, b[prop]);
4113
+ if (__hasOwnProp$f.call(b, prop))
4114
+ __defNormalProp$f(a, prop, b[prop]);
4115
+ if (__getOwnPropSymbols$f)
4116
+ for (var prop of __getOwnPropSymbols$f(b)) {
4117
+ if (__propIsEnum$f.call(b, prop))
4118
+ __defNormalProp$f(a, prop, b[prop]);
3944
4119
  }
3945
4120
  return a;
3946
4121
  };
3947
- var __objRest$6 = (source, exclude) => {
4122
+ var __objRest$4 = (source, exclude) => {
3948
4123
  var target = {};
3949
4124
  for (var prop in source)
3950
- if (__hasOwnProp$h.call(source, prop) && exclude.indexOf(prop) < 0)
4125
+ if (__hasOwnProp$f.call(source, prop) && exclude.indexOf(prop) < 0)
3951
4126
  target[prop] = source[prop];
3952
- if (source != null && __getOwnPropSymbols$h)
3953
- for (var prop of __getOwnPropSymbols$h(source)) {
3954
- if (exclude.indexOf(prop) < 0 && __propIsEnum$h.call(source, prop))
4127
+ if (source != null && __getOwnPropSymbols$f)
4128
+ for (var prop of __getOwnPropSymbols$f(source)) {
4129
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$f.call(source, prop))
3955
4130
  target[prop] = source[prop];
3956
4131
  }
3957
4132
  return target;
3958
4133
  };
3959
4134
  const SearchInput = (props) => {
3960
- const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$6(_a, ["onChange", "debounceWait"]);
4135
+ const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$4(_a, ["onChange", "debounceWait"]);
3961
4136
  const onSearch = _.debounce(onChange, debounceWait);
3962
4137
  return /* @__PURE__ */ React__default.createElement(
3963
4138
  Input,
3964
- __spreadValues$h({
4139
+ __spreadValues$f({
3965
4140
  style: { width: 276 },
3966
4141
  prefix: /* @__PURE__ */ React__default.createElement(SearchOutlined, null),
3967
4142
  onChange: (e) => onSearch(e.target.value)
@@ -3969,19 +4144,19 @@ const SearchInput = (props) => {
3969
4144
  );
3970
4145
  };
3971
4146
 
3972
- var __defProp$g = Object.defineProperty;
3973
- var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
3974
- var __hasOwnProp$g = Object.prototype.hasOwnProperty;
3975
- var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
3976
- var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3977
- var __spreadValues$g = (a, b) => {
4147
+ var __defProp$e = Object.defineProperty;
4148
+ var __getOwnPropSymbols$e = Object.getOwnPropertySymbols;
4149
+ var __hasOwnProp$e = Object.prototype.hasOwnProperty;
4150
+ var __propIsEnum$e = Object.prototype.propertyIsEnumerable;
4151
+ var __defNormalProp$e = (obj, key, value) => key in obj ? __defProp$e(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4152
+ var __spreadValues$e = (a, b) => {
3978
4153
  for (var prop in b || (b = {}))
3979
- if (__hasOwnProp$g.call(b, prop))
3980
- __defNormalProp$g(a, prop, b[prop]);
3981
- if (__getOwnPropSymbols$g)
3982
- for (var prop of __getOwnPropSymbols$g(b)) {
3983
- if (__propIsEnum$g.call(b, prop))
3984
- __defNormalProp$g(a, prop, b[prop]);
4154
+ if (__hasOwnProp$e.call(b, prop))
4155
+ __defNormalProp$e(a, prop, b[prop]);
4156
+ if (__getOwnPropSymbols$e)
4157
+ for (var prop of __getOwnPropSymbols$e(b)) {
4158
+ if (__propIsEnum$e.call(b, prop))
4159
+ __defNormalProp$e(a, prop, b[prop]);
3985
4160
  }
3986
4161
  return a;
3987
4162
  };
@@ -3995,7 +4170,7 @@ const Second = ({
3995
4170
  }) => {
3996
4171
  const { t } = useParrotTranslation();
3997
4172
  if (isEmpty(rawValue)) {
3998
- return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$g({}, emptyProps));
4173
+ return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$e({}, emptyProps));
3999
4174
  }
4000
4175
  const { value, unit } = formatSeconds(rawValue, decimals);
4001
4176
  return /* @__PURE__ */ React__default.createElement("span", null, /* @__PURE__ */ React__default.createElement("span", { className: cx("value", valueClassName) }, value, " "), /* @__PURE__ */ React__default.createElement("span", { className: cx("unit", unitClassName) }, t(`common.${abbreviate ? `${unit}_abbreviation` : unit}`)));
@@ -4041,7 +4216,7 @@ const SimplePagination = props => {
4041
4216
  },
4042
4217
  prefixIcon: /* @__PURE__ */React__default.createElement(Icon, {
4043
4218
  alt: "arrowChevronLeftSmall16BoldBlue",
4044
- src: img$7
4219
+ src: ArrowChevronLeftSmall16BoldBlueIcon
4045
4220
  }),
4046
4221
  onClick: () => {
4047
4222
  onPageChange == null ? void 0 : onPageChange(current - 1);
@@ -4069,7 +4244,7 @@ const SimplePagination = props => {
4069
4244
  },
4070
4245
  prefixIcon: /* @__PURE__ */React__default.createElement(Icon, {
4071
4246
  alt: "arrowChevronLeftSmall16BoldBlue",
4072
- src: img$7
4247
+ src: ArrowChevronLeftSmall16BoldBlueIcon
4073
4248
  }),
4074
4249
  onClick: () => {
4075
4250
  onPageChange == null ? void 0 : onPageChange(current + 1);
@@ -4077,19 +4252,19 @@ const SimplePagination = props => {
4077
4252
  })));
4078
4253
  };
4079
4254
 
4080
- var __defProp$f = Object.defineProperty;
4081
- var __getOwnPropSymbols$f = Object.getOwnPropertySymbols;
4082
- var __hasOwnProp$f = Object.prototype.hasOwnProperty;
4083
- var __propIsEnum$f = Object.prototype.propertyIsEnumerable;
4084
- var __defNormalProp$f = (obj, key, value) => key in obj ? __defProp$f(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4085
- var __spreadValues$f = (a, b) => {
4255
+ var __defProp$d = Object.defineProperty;
4256
+ var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
4257
+ var __hasOwnProp$d = Object.prototype.hasOwnProperty;
4258
+ var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
4259
+ var __defNormalProp$d = (obj, key, value) => key in obj ? __defProp$d(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4260
+ var __spreadValues$d = (a, b) => {
4086
4261
  for (var prop in b || (b = {}))
4087
- if (__hasOwnProp$f.call(b, prop))
4088
- __defNormalProp$f(a, prop, b[prop]);
4089
- if (__getOwnPropSymbols$f)
4090
- for (var prop of __getOwnPropSymbols$f(b)) {
4091
- if (__propIsEnum$f.call(b, prop))
4092
- __defNormalProp$f(a, prop, b[prop]);
4262
+ if (__hasOwnProp$d.call(b, prop))
4263
+ __defNormalProp$d(a, prop, b[prop]);
4264
+ if (__getOwnPropSymbols$d)
4265
+ for (var prop of __getOwnPropSymbols$d(b)) {
4266
+ if (__propIsEnum$d.call(b, prop))
4267
+ __defNormalProp$d(a, prop, b[prop]);
4093
4268
  }
4094
4269
  return a;
4095
4270
  };
@@ -4101,41 +4276,41 @@ const Speed = ({
4101
4276
  emptyProps
4102
4277
  }) => {
4103
4278
  if (isEmpty(rawValue)) {
4104
- return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$f({}, emptyProps));
4279
+ return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$d({}, emptyProps));
4105
4280
  }
4106
4281
  const { value, unit } = formatSpeed(rawValue, decimals);
4107
4282
  return /* @__PURE__ */ React__default.createElement("span", null, /* @__PURE__ */ React__default.createElement("span", { className: cx("value", valueClassName) }, value), /* @__PURE__ */ React__default.createElement("span", { className: cx("unit", unitClassName) }, ` ${unit}`));
4108
4283
  };
4109
4284
 
4110
- var __defProp$e = Object.defineProperty;
4111
- var __defProps$e = Object.defineProperties;
4112
- var __getOwnPropDescs$e = Object.getOwnPropertyDescriptors;
4113
- var __getOwnPropSymbols$e = Object.getOwnPropertySymbols;
4114
- var __hasOwnProp$e = Object.prototype.hasOwnProperty;
4115
- var __propIsEnum$e = Object.prototype.propertyIsEnumerable;
4116
- var __defNormalProp$e = (obj, key, value) => key in obj ? __defProp$e(obj, key, {
4285
+ var __defProp$c = Object.defineProperty;
4286
+ var __defProps$c = Object.defineProperties;
4287
+ var __getOwnPropDescs$c = Object.getOwnPropertyDescriptors;
4288
+ var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
4289
+ var __hasOwnProp$c = Object.prototype.hasOwnProperty;
4290
+ var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
4291
+ var __defNormalProp$c = (obj, key, value) => key in obj ? __defProp$c(obj, key, {
4117
4292
  enumerable: true,
4118
4293
  configurable: true,
4119
4294
  writable: true,
4120
4295
  value
4121
4296
  }) : obj[key] = value;
4122
- var __spreadValues$e = (a, b) => {
4123
- for (var prop in b || (b = {})) if (__hasOwnProp$e.call(b, prop)) __defNormalProp$e(a, prop, b[prop]);
4124
- if (__getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(b)) {
4125
- if (__propIsEnum$e.call(b, prop)) __defNormalProp$e(a, prop, b[prop]);
4297
+ var __spreadValues$c = (a, b) => {
4298
+ for (var prop in b || (b = {})) if (__hasOwnProp$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
4299
+ if (__getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(b)) {
4300
+ if (__propIsEnum$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
4126
4301
  }
4127
4302
  return a;
4128
4303
  };
4129
- var __spreadProps$e = (a, b) => __defProps$e(a, __getOwnPropDescs$e(b));
4130
- var __objRest$5 = (source, exclude) => {
4304
+ var __spreadProps$c = (a, b) => __defProps$c(a, __getOwnPropDescs$c(b));
4305
+ var __objRest$3 = (source, exclude) => {
4131
4306
  var target = {};
4132
- for (var prop in source) if (__hasOwnProp$e.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
4133
- if (source != null && __getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(source)) {
4134
- if (exclude.indexOf(prop) < 0 && __propIsEnum$e.call(source, prop)) target[prop] = source[prop];
4307
+ for (var prop in source) if (__hasOwnProp$c.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
4308
+ if (source != null && __getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(source)) {
4309
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$c.call(source, prop)) target[prop] = source[prop];
4135
4310
  }
4136
4311
  return target;
4137
4312
  };
4138
- const PresetColors$3 = ["blue", "red", "yellow", "green", "gray"];
4313
+ const PresetColors$1 = ["blue", "red", "yellow", "green", "gray"];
4139
4314
  const StatusCapsuleStyle = "s14dk8r1";
4140
4315
  const StatusCode = /*#__PURE__*/styled$1('i')({
4141
4316
  name: "StatusCode",
@@ -4174,11 +4349,11 @@ const StatusCapsule = _a => {
4174
4349
  offWhiteMode,
4175
4350
  number
4176
4351
  } = _b,
4177
- props = __objRest$5(_b, ["color", "className", "loading", "hoverable", "children", "offWhiteMode", "number"]);
4352
+ props = __objRest$3(_b, ["color", "className", "loading", "hoverable", "children", "offWhiteMode", "number"]);
4178
4353
  const computedColor = ColorMap[color] || color;
4179
- return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$e(__spreadValues$e({}, props), {
4354
+ return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$c(__spreadValues$c({}, props), {
4180
4355
  className: cs(className, StatusCapsuleStyle, Typo.Label.l4_regular, "ui-kit-status-capsule", {
4181
- [`ant-tag-${computedColor}`]: PresetColors$3.includes(computedColor),
4356
+ [`ant-tag-${computedColor}`]: PresetColors$1.includes(computedColor),
4182
4357
  "tag-hover": hoverable,
4183
4358
  "off-white": offWhiteMode
4184
4359
  }),
@@ -4191,31 +4366,31 @@ const StatusCapsule = _a => {
4191
4366
  }, number));
4192
4367
  };
4193
4368
 
4194
- var __defProp$d = Object.defineProperty;
4195
- var __defProps$d = Object.defineProperties;
4196
- var __getOwnPropDescs$d = Object.getOwnPropertyDescriptors;
4197
- var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
4198
- var __hasOwnProp$d = Object.prototype.hasOwnProperty;
4199
- var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
4200
- var __defNormalProp$d = (obj, key, value) => key in obj ? __defProp$d(obj, key, {
4369
+ var __defProp$b = Object.defineProperty;
4370
+ var __defProps$b = Object.defineProperties;
4371
+ var __getOwnPropDescs$b = Object.getOwnPropertyDescriptors;
4372
+ var __getOwnPropSymbols$b = Object.getOwnPropertySymbols;
4373
+ var __hasOwnProp$b = Object.prototype.hasOwnProperty;
4374
+ var __propIsEnum$b = Object.prototype.propertyIsEnumerable;
4375
+ var __defNormalProp$b = (obj, key, value) => key in obj ? __defProp$b(obj, key, {
4201
4376
  enumerable: true,
4202
4377
  configurable: true,
4203
4378
  writable: true,
4204
4379
  value
4205
4380
  }) : obj[key] = value;
4206
- var __spreadValues$d = (a, b) => {
4207
- for (var prop in b || (b = {})) if (__hasOwnProp$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
4208
- if (__getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(b)) {
4209
- if (__propIsEnum$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
4381
+ var __spreadValues$b = (a, b) => {
4382
+ for (var prop in b || (b = {})) if (__hasOwnProp$b.call(b, prop)) __defNormalProp$b(a, prop, b[prop]);
4383
+ if (__getOwnPropSymbols$b) for (var prop of __getOwnPropSymbols$b(b)) {
4384
+ if (__propIsEnum$b.call(b, prop)) __defNormalProp$b(a, prop, b[prop]);
4210
4385
  }
4211
4386
  return a;
4212
4387
  };
4213
- var __spreadProps$d = (a, b) => __defProps$d(a, __getOwnPropDescs$d(b));
4214
- var __objRest$4 = (source, exclude) => {
4388
+ var __spreadProps$b = (a, b) => __defProps$b(a, __getOwnPropDescs$b(b));
4389
+ var __objRest$2 = (source, exclude) => {
4215
4390
  var target = {};
4216
- for (var prop in source) if (__hasOwnProp$d.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
4217
- if (source != null && __getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(source)) {
4218
- if (exclude.indexOf(prop) < 0 && __propIsEnum$d.call(source, prop)) target[prop] = source[prop];
4391
+ for (var prop in source) if (__hasOwnProp$b.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
4392
+ if (source != null && __getOwnPropSymbols$b) for (var prop of __getOwnPropSymbols$b(source)) {
4393
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$b.call(source, prop)) target[prop] = source[prop];
4219
4394
  }
4220
4395
  return target;
4221
4396
  };
@@ -4227,7 +4402,7 @@ const Switch = _a => {
4227
4402
  className,
4228
4403
  checked
4229
4404
  } = _b,
4230
- props = __objRest$4(_b, ["children", "className", "checked"]);
4405
+ props = __objRest$2(_b, ["children", "className", "checked"]);
4231
4406
  const Content = /*#__PURE__*/styled$1('span')({
4232
4407
  name: "Content",
4233
4408
  class: "c1to9vb9",
@@ -4235,7 +4410,7 @@ const Switch = _a => {
4235
4410
  });
4236
4411
  const classNames = [className, SwitchStyle, "switch"];
4237
4412
  if (props.size === "large") classNames.push("ant-switch-large");
4238
- return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Switch$1, __spreadProps$d(__spreadValues$d({
4413
+ return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Switch$1, __spreadProps$b(__spreadValues$b({
4239
4414
  className: cx(...classNames),
4240
4415
  checked: checked || false
4241
4416
  }, props), {
@@ -4317,30 +4492,30 @@ const ColumnTitle = props => {
4317
4492
  return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, title, /* @__PURE__ */React__default.createElement(Icon, {
4318
4493
  alt: "arrowChevronUp16BoldSecondary",
4319
4494
  className: cs("order-icon", sortOrder),
4320
- src: img$6
4495
+ src: ArrowChevronUp16BoldSecondaryIcon
4321
4496
  }));
4322
4497
  };
4323
4498
 
4324
- var __defProp$c = Object.defineProperty;
4325
- var __defProps$c = Object.defineProperties;
4326
- var __getOwnPropDescs$c = Object.getOwnPropertyDescriptors;
4327
- var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
4328
- var __hasOwnProp$c = Object.prototype.hasOwnProperty;
4329
- var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
4330
- var __defNormalProp$c = (obj, key, value) => key in obj ? __defProp$c(obj, key, {
4499
+ var __defProp$a = Object.defineProperty;
4500
+ var __defProps$a = Object.defineProperties;
4501
+ var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
4502
+ var __getOwnPropSymbols$a = Object.getOwnPropertySymbols;
4503
+ var __hasOwnProp$a = Object.prototype.hasOwnProperty;
4504
+ var __propIsEnum$a = Object.prototype.propertyIsEnumerable;
4505
+ var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, {
4331
4506
  enumerable: true,
4332
4507
  configurable: true,
4333
4508
  writable: true,
4334
4509
  value
4335
4510
  }) : obj[key] = value;
4336
- var __spreadValues$c = (a, b) => {
4337
- for (var prop in b || (b = {})) if (__hasOwnProp$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
4338
- if (__getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(b)) {
4339
- if (__propIsEnum$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
4511
+ var __spreadValues$a = (a, b) => {
4512
+ for (var prop in b || (b = {})) if (__hasOwnProp$a.call(b, prop)) __defNormalProp$a(a, prop, b[prop]);
4513
+ if (__getOwnPropSymbols$a) for (var prop of __getOwnPropSymbols$a(b)) {
4514
+ if (__propIsEnum$a.call(b, prop)) __defNormalProp$a(a, prop, b[prop]);
4340
4515
  }
4341
4516
  return a;
4342
4517
  };
4343
- var __spreadProps$c = (a, b) => __defProps$c(a, __getOwnPropDescs$c(b));
4518
+ var __spreadProps$a = (a, b) => __defProps$a(a, __getOwnPropDescs$a(b));
4344
4519
  const TableContainerStyle = "t1upn1sz";
4345
4520
  const tableStyleCover = "tta5kd2";
4346
4521
  const Table = props => {
@@ -4367,7 +4542,7 @@ const Table = props => {
4367
4542
  const orderRef = useRef(null);
4368
4543
  const hasScrollBard = useTableBodyHasScrollBar(wrapper, dataSource);
4369
4544
  const _columns = useMemo(() => columns.map(column => {
4370
- const _column = __spreadValues$c({}, column);
4545
+ const _column = __spreadValues$a({}, column);
4371
4546
  if (_column.sorter && typeof _column.title !== "function") {
4372
4547
  _column.title = /* @__PURE__ */React__default.createElement(ColumnTitle, {
4373
4548
  title: column.title,
@@ -4404,12 +4579,12 @@ const Table = props => {
4404
4579
  onSorterChange == null ? void 0 : onSorterChange(orderRef.current, sorter.columnKey);
4405
4580
  }
4406
4581
  },
4407
- onRow: (record, index) => __spreadValues$c({
4582
+ onRow: (record, index) => __spreadValues$a({
4408
4583
  onClick: evt => onRowClick == null ? void 0 : onRowClick(record, index, evt)
4409
4584
  }, onRow == null ? void 0 : onRow(record, index)),
4410
4585
  rowClassName,
4411
4586
  scroll,
4412
- rowSelection: rowSelection && __spreadProps$c(__spreadValues$c({}, rowSelection), {
4587
+ rowSelection: rowSelection && __spreadProps$a(__spreadValues$a({}, rowSelection), {
4413
4588
  columnWidth: 32
4414
4589
  }),
4415
4590
  showSorterTooltip: false
@@ -4471,33 +4646,33 @@ const moveItemInArray = (array, fromIndex, toIndex) => {
4471
4646
  return sortArr;
4472
4647
  };
4473
4648
 
4474
- var __defProp$b = Object.defineProperty;
4475
- var __defProps$b = Object.defineProperties;
4476
- var __getOwnPropDescs$b = Object.getOwnPropertyDescriptors;
4477
- var __getOwnPropSymbols$b = Object.getOwnPropertySymbols;
4478
- var __hasOwnProp$b = Object.prototype.hasOwnProperty;
4479
- var __propIsEnum$b = Object.prototype.propertyIsEnumerable;
4480
- var __defNormalProp$b = (obj, key, value) => key in obj ? __defProp$b(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4481
- var __spreadValues$b = (a, b) => {
4649
+ var __defProp$9 = Object.defineProperty;
4650
+ var __defProps$9 = Object.defineProperties;
4651
+ var __getOwnPropDescs$9 = Object.getOwnPropertyDescriptors;
4652
+ var __getOwnPropSymbols$9 = Object.getOwnPropertySymbols;
4653
+ var __hasOwnProp$9 = Object.prototype.hasOwnProperty;
4654
+ var __propIsEnum$9 = Object.prototype.propertyIsEnumerable;
4655
+ var __defNormalProp$9 = (obj, key, value) => key in obj ? __defProp$9(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4656
+ var __spreadValues$9 = (a, b) => {
4482
4657
  for (var prop in b || (b = {}))
4483
- if (__hasOwnProp$b.call(b, prop))
4484
- __defNormalProp$b(a, prop, b[prop]);
4485
- if (__getOwnPropSymbols$b)
4486
- for (var prop of __getOwnPropSymbols$b(b)) {
4487
- if (__propIsEnum$b.call(b, prop))
4488
- __defNormalProp$b(a, prop, b[prop]);
4658
+ if (__hasOwnProp$9.call(b, prop))
4659
+ __defNormalProp$9(a, prop, b[prop]);
4660
+ if (__getOwnPropSymbols$9)
4661
+ for (var prop of __getOwnPropSymbols$9(b)) {
4662
+ if (__propIsEnum$9.call(b, prop))
4663
+ __defNormalProp$9(a, prop, b[prop]);
4489
4664
  }
4490
4665
  return a;
4491
4666
  };
4492
- var __spreadProps$b = (a, b) => __defProps$b(a, __getOwnPropDescs$b(b));
4493
- var __objRest$3 = (source, exclude) => {
4667
+ var __spreadProps$9 = (a, b) => __defProps$9(a, __getOwnPropDescs$9(b));
4668
+ var __objRest$1 = (source, exclude) => {
4494
4669
  var target = {};
4495
4670
  for (var prop in source)
4496
- if (__hasOwnProp$b.call(source, prop) && exclude.indexOf(prop) < 0)
4671
+ if (__hasOwnProp$9.call(source, prop) && exclude.indexOf(prop) < 0)
4497
4672
  target[prop] = source[prop];
4498
- if (source != null && __getOwnPropSymbols$b)
4499
- for (var prop of __getOwnPropSymbols$b(source)) {
4500
- if (exclude.indexOf(prop) < 0 && __propIsEnum$b.call(source, prop))
4673
+ if (source != null && __getOwnPropSymbols$9)
4674
+ for (var prop of __getOwnPropSymbols$9(source)) {
4675
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$9.call(source, prop))
4501
4676
  target[prop] = source[prop];
4502
4677
  }
4503
4678
  return target;
@@ -4513,7 +4688,7 @@ const AddRowButton = (props) => {
4513
4688
  const _a = buttonProps || {}, {
4514
4689
  disabled: disabledFromProp,
4515
4690
  onClick
4516
- } = _a, restButtonProps = __objRest$3(_a, [
4691
+ } = _a, restButtonProps = __objRest$1(_a, [
4517
4692
  "disabled",
4518
4693
  "onClick"
4519
4694
  ]);
@@ -4538,9 +4713,9 @@ const AddRowButton = (props) => {
4538
4713
  if (!columns.length) {
4539
4714
  return null;
4540
4715
  }
4541
- return CustomizedButton ? /* @__PURE__ */ React__default.createElement(CustomizedButton, __spreadValues$b({}, props)) : /* @__PURE__ */ React__default.createElement(AddRowButtonWrapper, { className }, /* @__PURE__ */ React__default.createElement(
4716
+ return CustomizedButton ? /* @__PURE__ */ React__default.createElement(CustomizedButton, __spreadValues$9({}, props)) : /* @__PURE__ */ React__default.createElement(AddRowButtonWrapper, { className }, /* @__PURE__ */ React__default.createElement(
4542
4717
  Button,
4543
- __spreadProps$b(__spreadValues$b({}, restButtonProps), {
4718
+ __spreadProps$9(__spreadValues$9({}, restButtonProps), {
4544
4719
  type: restButtonProps.type || "ordinary",
4545
4720
  size: restButtonProps.size || "small",
4546
4721
  prefixIcon: restButtonProps.prefixIcon || /* @__PURE__ */ React__default.createElement(PlusAddCreateNew16SecondaryIcon, null),
@@ -4635,25 +4810,25 @@ const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
4635
4810
  );
4636
4811
  };
4637
4812
 
4638
- var __defProp$a = Object.defineProperty;
4639
- var __defProps$a = Object.defineProperties;
4640
- var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
4641
- var __getOwnPropSymbols$a = Object.getOwnPropertySymbols;
4642
- var __hasOwnProp$a = Object.prototype.hasOwnProperty;
4643
- var __propIsEnum$a = Object.prototype.propertyIsEnumerable;
4644
- var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4645
- var __spreadValues$a = (a, b) => {
4813
+ var __defProp$8 = Object.defineProperty;
4814
+ var __defProps$8 = Object.defineProperties;
4815
+ var __getOwnPropDescs$8 = Object.getOwnPropertyDescriptors;
4816
+ var __getOwnPropSymbols$8 = Object.getOwnPropertySymbols;
4817
+ var __hasOwnProp$8 = Object.prototype.hasOwnProperty;
4818
+ var __propIsEnum$8 = Object.prototype.propertyIsEnumerable;
4819
+ var __defNormalProp$8 = (obj, key, value) => key in obj ? __defProp$8(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4820
+ var __spreadValues$8 = (a, b) => {
4646
4821
  for (var prop in b || (b = {}))
4647
- if (__hasOwnProp$a.call(b, prop))
4648
- __defNormalProp$a(a, prop, b[prop]);
4649
- if (__getOwnPropSymbols$a)
4650
- for (var prop of __getOwnPropSymbols$a(b)) {
4651
- if (__propIsEnum$a.call(b, prop))
4652
- __defNormalProp$a(a, prop, b[prop]);
4822
+ if (__hasOwnProp$8.call(b, prop))
4823
+ __defNormalProp$8(a, prop, b[prop]);
4824
+ if (__getOwnPropSymbols$8)
4825
+ for (var prop of __getOwnPropSymbols$8(b)) {
4826
+ if (__propIsEnum$8.call(b, prop))
4827
+ __defNormalProp$8(a, prop, b[prop]);
4653
4828
  }
4654
4829
  return a;
4655
4830
  };
4656
- var __spreadProps$a = (a, b) => __defProps$a(a, __getOwnPropDescs$a(b));
4831
+ var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
4657
4832
  const InputPassword = (props) => {
4658
4833
  const [showPassword, setShowPassword] = useState(false);
4659
4834
  useEffect(() => {
@@ -4669,7 +4844,7 @@ const InputPassword = (props) => {
4669
4844
  const inputType = showPassword ? "text" : "password";
4670
4845
  return /* @__PURE__ */ React__default.createElement(
4671
4846
  Input,
4672
- __spreadProps$a(__spreadValues$a({}, props), {
4847
+ __spreadProps$8(__spreadValues$8({}, props), {
4673
4848
  type: inputType,
4674
4849
  suffix: showPassword ? /* @__PURE__ */ React__default.createElement(
4675
4850
  EyeOutlined,
@@ -4689,9 +4864,9 @@ const InputPassword = (props) => {
4689
4864
  };
4690
4865
  const CustomInput = (props) => {
4691
4866
  if (props.type === "password") {
4692
- return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$a({}, props));
4867
+ return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$8({}, props));
4693
4868
  }
4694
- return /* @__PURE__ */ React__default.createElement(Input, __spreadValues$a({}, props));
4869
+ return /* @__PURE__ */ React__default.createElement(Input, __spreadValues$8({}, props));
4695
4870
  };
4696
4871
  const InputColumnHeaderCell = ({ disabled, column, onChange, onBlur, onVisibleChange }) => {
4697
4872
  const _onChange = (e) => {
@@ -4815,25 +4990,25 @@ var ValidateTriggerType = /* @__PURE__ */ ((ValidateTriggerType2) => {
4815
4990
  return ValidateTriggerType2;
4816
4991
  })(ValidateTriggerType || {});
4817
4992
 
4818
- var __defProp$9 = Object.defineProperty;
4819
- var __defProps$9 = Object.defineProperties;
4820
- var __getOwnPropDescs$9 = Object.getOwnPropertyDescriptors;
4821
- var __getOwnPropSymbols$9 = Object.getOwnPropertySymbols;
4822
- var __hasOwnProp$9 = Object.prototype.hasOwnProperty;
4823
- var __propIsEnum$9 = Object.prototype.propertyIsEnumerable;
4824
- var __defNormalProp$9 = (obj, key, value) => key in obj ? __defProp$9(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4825
- var __spreadValues$9 = (a, b) => {
4993
+ var __defProp$7 = Object.defineProperty;
4994
+ var __defProps$7 = Object.defineProperties;
4995
+ var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
4996
+ var __getOwnPropSymbols$7 = Object.getOwnPropertySymbols;
4997
+ var __hasOwnProp$7 = Object.prototype.hasOwnProperty;
4998
+ var __propIsEnum$7 = Object.prototype.propertyIsEnumerable;
4999
+ var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5000
+ var __spreadValues$7 = (a, b) => {
4826
5001
  for (var prop in b || (b = {}))
4827
- if (__hasOwnProp$9.call(b, prop))
4828
- __defNormalProp$9(a, prop, b[prop]);
4829
- if (__getOwnPropSymbols$9)
4830
- for (var prop of __getOwnPropSymbols$9(b)) {
4831
- if (__propIsEnum$9.call(b, prop))
4832
- __defNormalProp$9(a, prop, b[prop]);
5002
+ if (__hasOwnProp$7.call(b, prop))
5003
+ __defNormalProp$7(a, prop, b[prop]);
5004
+ if (__getOwnPropSymbols$7)
5005
+ for (var prop of __getOwnPropSymbols$7(b)) {
5006
+ if (__propIsEnum$7.call(b, prop))
5007
+ __defNormalProp$7(a, prop, b[prop]);
4833
5008
  }
4834
5009
  return a;
4835
5010
  };
4836
- var __spreadProps$9 = (a, b) => __defProps$9(a, __getOwnPropDescs$9(b));
5011
+ var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
4837
5012
  const TableFormBodyCell = (props) => {
4838
5013
  const {
4839
5014
  column,
@@ -4865,7 +5040,7 @@ const TableFormBodyCell = (props) => {
4865
5040
  (currentValue) => {
4866
5041
  var _a;
4867
5042
  const value = currentValue || data[rowIndex][column.key];
4868
- const rowData = __spreadProps$9(__spreadValues$9({}, data[rowIndex]), { [column.key]: value });
5043
+ const rowData = __spreadProps$7(__spreadValues$7({}, data[rowIndex]), { [column.key]: value });
4869
5044
  const rowValidateRes = getRowValidateResult(rowData);
4870
5045
  if (rowValidateRes) {
4871
5046
  return;
@@ -4888,7 +5063,7 @@ const TableFormBodyCell = (props) => {
4888
5063
  }, [validateAll, triggerValidate]);
4889
5064
  const _onChange = (value, data2) => {
4890
5065
  const newData = data2.map(
4891
- (row, i) => i === rowIndex ? __spreadProps$9(__spreadValues$9({}, row), { [column.key]: value }) : row
5066
+ (row, i) => i === rowIndex ? __spreadProps$7(__spreadValues$7({}, row), { [column.key]: value }) : row
4892
5067
  );
4893
5068
  onChange == null ? void 0 : onChange(newData, rowIndex, column.key);
4894
5069
  if (validateTriggerType === ValidateTriggerType.Normal && isTouched.current || validateTriggerType === ValidateTriggerType.Aggressive) {
@@ -4966,25 +5141,25 @@ const TableFormBodyCell = (props) => {
4966
5141
  );
4967
5142
  };
4968
5143
 
4969
- var __defProp$8 = Object.defineProperty;
4970
- var __defProps$8 = Object.defineProperties;
4971
- var __getOwnPropDescs$8 = Object.getOwnPropertyDescriptors;
4972
- var __getOwnPropSymbols$8 = Object.getOwnPropertySymbols;
4973
- var __hasOwnProp$8 = Object.prototype.hasOwnProperty;
4974
- var __propIsEnum$8 = Object.prototype.propertyIsEnumerable;
4975
- var __defNormalProp$8 = (obj, key, value) => key in obj ? __defProp$8(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4976
- var __spreadValues$8 = (a, b) => {
5144
+ var __defProp$6 = Object.defineProperty;
5145
+ var __defProps$6 = Object.defineProperties;
5146
+ var __getOwnPropDescs$6 = Object.getOwnPropertyDescriptors;
5147
+ var __getOwnPropSymbols$6 = Object.getOwnPropertySymbols;
5148
+ var __hasOwnProp$6 = Object.prototype.hasOwnProperty;
5149
+ var __propIsEnum$6 = Object.prototype.propertyIsEnumerable;
5150
+ var __defNormalProp$6 = (obj, key, value) => key in obj ? __defProp$6(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5151
+ var __spreadValues$6 = (a, b) => {
4977
5152
  for (var prop in b || (b = {}))
4978
- if (__hasOwnProp$8.call(b, prop))
4979
- __defNormalProp$8(a, prop, b[prop]);
4980
- if (__getOwnPropSymbols$8)
4981
- for (var prop of __getOwnPropSymbols$8(b)) {
4982
- if (__propIsEnum$8.call(b, prop))
4983
- __defNormalProp$8(a, prop, b[prop]);
5153
+ if (__hasOwnProp$6.call(b, prop))
5154
+ __defNormalProp$6(a, prop, b[prop]);
5155
+ if (__getOwnPropSymbols$6)
5156
+ for (var prop of __getOwnPropSymbols$6(b)) {
5157
+ if (__propIsEnum$6.call(b, prop))
5158
+ __defNormalProp$6(a, prop, b[prop]);
4984
5159
  }
4985
5160
  return a;
4986
5161
  };
4987
- var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
5162
+ var __spreadProps$6 = (a, b) => __defProps$6(a, __getOwnPropDescs$6(b));
4988
5163
  const TableFormRowDeleteAction = (props) => {
4989
5164
  var _a, _b, _c, _d;
4990
5165
  const { deleteConfig, row, updateData, rowIndex, data } = props;
@@ -5077,7 +5252,7 @@ const TableFormRow = (props) => {
5077
5252
  );
5078
5253
  });
5079
5254
  const DraggableHandle = useMemo(
5080
- () => draggable && provided ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, __spreadValues$8({}, provided.dragHandleProps), /* @__PURE__ */ React__default.createElement(
5255
+ () => draggable && provided ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, __spreadValues$6({}, provided.dragHandleProps), /* @__PURE__ */ React__default.createElement(
5081
5256
  Icon,
5082
5257
  {
5083
5258
  src: HandlePoint816SecondaryIcon,
@@ -5139,7 +5314,7 @@ const TableFormBodyRows = memo((props) => {
5139
5314
  );
5140
5315
  return draggable ? /* @__PURE__ */ React__default.createElement(DragDropContext, { onDragEnd }, /* @__PURE__ */ React__default.createElement(Droppable, { droppableId: "droppable" }, (provided) => /* @__PURE__ */ React__default.createElement(
5141
5316
  "div",
5142
- __spreadValues$8({
5317
+ __spreadValues$6({
5143
5318
  className: "draggable-container",
5144
5319
  ref: provided.innerRef
5145
5320
  }, provided.droppableProps),
@@ -5150,9 +5325,9 @@ const TableFormBodyRows = memo((props) => {
5150
5325
  key: `draggable-id-${i}`,
5151
5326
  index: i
5152
5327
  },
5153
- (provided2, snapshot) => /* @__PURE__ */ React__default.createElement("div", __spreadValues$8({ ref: provided2.innerRef }, provided2.draggableProps), /* @__PURE__ */ React__default.createElement(
5328
+ (provided2, snapshot) => /* @__PURE__ */ React__default.createElement("div", __spreadValues$6({ ref: provided2.innerRef }, provided2.draggableProps), /* @__PURE__ */ React__default.createElement(
5154
5329
  TableFormRow,
5155
- __spreadProps$8(__spreadValues$8({}, props), {
5330
+ __spreadProps$6(__spreadValues$6({}, props), {
5156
5331
  rowIndex: i,
5157
5332
  provided: provided2,
5158
5333
  snapshot
@@ -5160,28 +5335,28 @@ const TableFormBodyRows = memo((props) => {
5160
5335
  ))
5161
5336
  )),
5162
5337
  provided.placeholder
5163
- ))) : /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, data.map((_d, i) => /* @__PURE__ */ React__default.createElement(TableFormRow, __spreadProps$8(__spreadValues$8({}, props), { rowIndex: i, key: `table-row-${i}` }))));
5338
+ ))) : /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, data.map((_d, i) => /* @__PURE__ */ React__default.createElement(TableFormRow, __spreadProps$6(__spreadValues$6({}, props), { rowIndex: i, key: `table-row-${i}` }))));
5164
5339
  });
5165
5340
 
5166
- var __defProp$7 = Object.defineProperty;
5167
- var __defProps$7 = Object.defineProperties;
5168
- var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
5169
- var __getOwnPropSymbols$7 = Object.getOwnPropertySymbols;
5170
- var __hasOwnProp$7 = Object.prototype.hasOwnProperty;
5171
- var __propIsEnum$7 = Object.prototype.propertyIsEnumerable;
5172
- var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5173
- var __spreadValues$7 = (a, b) => {
5341
+ var __defProp$5 = Object.defineProperty;
5342
+ var __defProps$5 = Object.defineProperties;
5343
+ var __getOwnPropDescs$5 = Object.getOwnPropertyDescriptors;
5344
+ var __getOwnPropSymbols$5 = Object.getOwnPropertySymbols;
5345
+ var __hasOwnProp$5 = Object.prototype.hasOwnProperty;
5346
+ var __propIsEnum$5 = Object.prototype.propertyIsEnumerable;
5347
+ var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5348
+ var __spreadValues$5 = (a, b) => {
5174
5349
  for (var prop in b || (b = {}))
5175
- if (__hasOwnProp$7.call(b, prop))
5176
- __defNormalProp$7(a, prop, b[prop]);
5177
- if (__getOwnPropSymbols$7)
5178
- for (var prop of __getOwnPropSymbols$7(b)) {
5179
- if (__propIsEnum$7.call(b, prop))
5180
- __defNormalProp$7(a, prop, b[prop]);
5350
+ if (__hasOwnProp$5.call(b, prop))
5351
+ __defNormalProp$5(a, prop, b[prop]);
5352
+ if (__getOwnPropSymbols$5)
5353
+ for (var prop of __getOwnPropSymbols$5(b)) {
5354
+ if (__propIsEnum$5.call(b, prop))
5355
+ __defNormalProp$5(a, prop, b[prop]);
5181
5356
  }
5182
5357
  return a;
5183
5358
  };
5184
- var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
5359
+ var __spreadProps$5 = (a, b) => __defProps$5(a, __getOwnPropDescs$5(b));
5185
5360
  const BatchInputListHeaderCell = (props) => {
5186
5361
  const { column, disabled, data, disableBatchFilling, onBlur, onChange } = props;
5187
5362
  const [errMsg, setErrMsg] = useState();
@@ -5193,7 +5368,7 @@ const BatchInputListHeaderCell = (props) => {
5193
5368
  setErrMsg(err || void 0);
5194
5369
  const shouldAutoIncrease = column.type !== "password" && column.autoIncrease;
5195
5370
  const newData = data.map((cell, rowIndex) => {
5196
- return __spreadProps$7(__spreadValues$7({}, cell), {
5371
+ return __spreadProps$5(__spreadValues$5({}, cell), {
5197
5372
  [column.key]: shouldAutoIncrease && typeof value === "string" ? increaseLastNumber(value, rowIndex) : value
5198
5373
  });
5199
5374
  });
@@ -5210,7 +5385,7 @@ const BatchInputListHeaderCell = (props) => {
5210
5385
  const CellComponent = ColumnHeaderImpls[column.type];
5211
5386
  return /* @__PURE__ */ React__default.createElement(
5212
5387
  CellComponent,
5213
- __spreadProps$7(__spreadValues$7({}, props), {
5388
+ __spreadProps$5(__spreadValues$5({}, props), {
5214
5389
  column,
5215
5390
  onChange: headerOnChange,
5216
5391
  onBlur: _onBlur
@@ -5245,25 +5420,25 @@ const BatchInputListHeaderCell = (props) => {
5245
5420
  );
5246
5421
  };
5247
5422
 
5248
- var __defProp$6 = Object.defineProperty;
5249
- var __defProps$6 = Object.defineProperties;
5250
- var __getOwnPropDescs$6 = Object.getOwnPropertyDescriptors;
5251
- var __getOwnPropSymbols$6 = Object.getOwnPropertySymbols;
5252
- var __hasOwnProp$6 = Object.prototype.hasOwnProperty;
5253
- var __propIsEnum$6 = Object.prototype.propertyIsEnumerable;
5254
- var __defNormalProp$6 = (obj, key, value) => key in obj ? __defProp$6(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5255
- var __spreadValues$6 = (a, b) => {
5423
+ var __defProp$4 = Object.defineProperty;
5424
+ var __defProps$4 = Object.defineProperties;
5425
+ var __getOwnPropDescs$4 = Object.getOwnPropertyDescriptors;
5426
+ var __getOwnPropSymbols$4 = Object.getOwnPropertySymbols;
5427
+ var __hasOwnProp$4 = Object.prototype.hasOwnProperty;
5428
+ var __propIsEnum$4 = Object.prototype.propertyIsEnumerable;
5429
+ var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5430
+ var __spreadValues$4 = (a, b) => {
5256
5431
  for (var prop in b || (b = {}))
5257
- if (__hasOwnProp$6.call(b, prop))
5258
- __defNormalProp$6(a, prop, b[prop]);
5259
- if (__getOwnPropSymbols$6)
5260
- for (var prop of __getOwnPropSymbols$6(b)) {
5261
- if (__propIsEnum$6.call(b, prop))
5262
- __defNormalProp$6(a, prop, b[prop]);
5432
+ if (__hasOwnProp$4.call(b, prop))
5433
+ __defNormalProp$4(a, prop, b[prop]);
5434
+ if (__getOwnPropSymbols$4)
5435
+ for (var prop of __getOwnPropSymbols$4(b)) {
5436
+ if (__propIsEnum$4.call(b, prop))
5437
+ __defNormalProp$4(a, prop, b[prop]);
5263
5438
  }
5264
5439
  return a;
5265
5440
  };
5266
- var __spreadProps$6 = (a, b) => __defProps$6(a, __getOwnPropDescs$6(b));
5441
+ var __spreadProps$4 = (a, b) => __defProps$4(a, __getOwnPropDescs$4(b));
5267
5442
  const DEFAULT_ROW_COUNT = 3;
5268
5443
  const TableForm = React__default.forwardRef(
5269
5444
  (props, ref) => {
@@ -5325,7 +5500,7 @@ const TableForm = React__default.forwardRef(
5325
5500
  (key, error) => {
5326
5501
  if (error) {
5327
5502
  const newData = latestData.map((cell) => {
5328
- return __spreadProps$6(__spreadValues$6({}, cell), {
5503
+ return __spreadProps$4(__spreadValues$4({}, cell), {
5329
5504
  [key]: ""
5330
5505
  });
5331
5506
  });
@@ -5420,151 +5595,6 @@ const TableForm = React__default.forwardRef(
5420
5595
  }
5421
5596
  );
5422
5597
 
5423
- const PresetColors$2 = [
5424
- "blue",
5425
- "red",
5426
- "yellow",
5427
- "green",
5428
- "gray",
5429
- "purple"
5430
- ];
5431
-
5432
- const Size$1 = {
5433
- small: "sut42l0",
5434
- medium: "mfsz1jz"
5435
- };
5436
- const TagStyle$1 = "tnd6h4m";
5437
- const IconStyle$1 = "i1qw4clm";
5438
-
5439
- var __defProp$5 = Object.defineProperty;
5440
- var __defProps$5 = Object.defineProperties;
5441
- var __getOwnPropDescs$5 = Object.getOwnPropertyDescriptors;
5442
- var __getOwnPropSymbols$5 = Object.getOwnPropertySymbols;
5443
- var __hasOwnProp$5 = Object.prototype.hasOwnProperty;
5444
- var __propIsEnum$5 = Object.prototype.propertyIsEnumerable;
5445
- var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, {
5446
- enumerable: true,
5447
- configurable: true,
5448
- writable: true,
5449
- value
5450
- }) : obj[key] = value;
5451
- var __spreadValues$5 = (a, b) => {
5452
- for (var prop in b || (b = {})) if (__hasOwnProp$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
5453
- if (__getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(b)) {
5454
- if (__propIsEnum$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
5455
- }
5456
- return a;
5457
- };
5458
- var __spreadProps$5 = (a, b) => __defProps$5(a, __getOwnPropDescs$5(b));
5459
- var __objRest$2 = (source, exclude) => {
5460
- var target = {};
5461
- for (var prop in source) if (__hasOwnProp$5.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
5462
- if (source != null && __getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(source)) {
5463
- if (exclude.indexOf(prop) < 0 && __propIsEnum$5.call(source, prop)) target[prop] = source[prop];
5464
- }
5465
- return target;
5466
- };
5467
- const WrapperStyle = "w1xcixj5";
5468
- const SplitTag = _a => {
5469
- var _b = _a,
5470
- {
5471
- size = "small",
5472
- color = "gray",
5473
- className,
5474
- primaryContent,
5475
- secondaryContent,
5476
- icon
5477
- } = _b,
5478
- props = __objRest$2(_b, ["size", "color", "className", "primaryContent", "secondaryContent", "icon"]);
5479
- return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$5(__spreadValues$5({}, props), {
5480
- className: cs(className, TagStyle$1, Size$1[size], WrapperStyle, Typo.Label.l4_regular, {
5481
- [`ant-tag-${color}`]: PresetColors$2.includes(color)
5482
- }, "outside-tag")
5483
- }), /* @__PURE__ */React__default.createElement(Tag$1, {
5484
- className: cs(Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
5485
- [`ant-tag-${color}`]: PresetColors$2.includes(color)
5486
- }, "inside-tag")
5487
- }, icon && /* @__PURE__ */React__default.createElement("span", {
5488
- className: cs("ui-kit-tag-icon", IconStyle$1)
5489
- }, icon), primaryContent), secondaryContent);
5490
- };
5491
-
5492
- var __defProp$4 = Object.defineProperty;
5493
- var __defProps$4 = Object.defineProperties;
5494
- var __getOwnPropDescs$4 = Object.getOwnPropertyDescriptors;
5495
- var __getOwnPropSymbols$4 = Object.getOwnPropertySymbols;
5496
- var __hasOwnProp$4 = Object.prototype.hasOwnProperty;
5497
- var __propIsEnum$4 = Object.prototype.propertyIsEnumerable;
5498
- var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5499
- var __spreadValues$4 = (a, b) => {
5500
- for (var prop in b || (b = {}))
5501
- if (__hasOwnProp$4.call(b, prop))
5502
- __defNormalProp$4(a, prop, b[prop]);
5503
- if (__getOwnPropSymbols$4)
5504
- for (var prop of __getOwnPropSymbols$4(b)) {
5505
- if (__propIsEnum$4.call(b, prop))
5506
- __defNormalProp$4(a, prop, b[prop]);
5507
- }
5508
- return a;
5509
- };
5510
- var __spreadProps$4 = (a, b) => __defProps$4(a, __getOwnPropDescs$4(b));
5511
- var __objRest$1 = (source, exclude) => {
5512
- var target = {};
5513
- for (var prop in source)
5514
- if (__hasOwnProp$4.call(source, prop) && exclude.indexOf(prop) < 0)
5515
- target[prop] = source[prop];
5516
- if (source != null && __getOwnPropSymbols$4)
5517
- for (var prop of __getOwnPropSymbols$4(source)) {
5518
- if (exclude.indexOf(prop) < 0 && __propIsEnum$4.call(source, prop))
5519
- target[prop] = source[prop];
5520
- }
5521
- return target;
5522
- };
5523
- const PresetColors$1 = [
5524
- ...PresetColors$2,
5525
- "red-ontint",
5526
- "green-ontint"
5527
- ];
5528
- const AntdColorMap = {
5529
- processing: "blue",
5530
- success: "green",
5531
- error: "red",
5532
- warn: "yellow",
5533
- default: "gray"
5534
- };
5535
- const Tag = (_a) => {
5536
- var _b = _a, {
5537
- size = "small",
5538
- color = "gray",
5539
- className,
5540
- hoverable = false,
5541
- icon,
5542
- children
5543
- } = _b, props = __objRest$1(_b, [
5544
- "size",
5545
- "color",
5546
- "className",
5547
- "hoverable",
5548
- "icon",
5549
- "children"
5550
- ]);
5551
- const computedColor = AntdColorMap[color] || color;
5552
- return /* @__PURE__ */ React__default.createElement(
5553
- Tag$1,
5554
- __spreadProps$4(__spreadValues$4({}, props), {
5555
- className: cs(className, Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
5556
- [`ant-tag-${computedColor}`]: PresetColors$1.includes(computedColor),
5557
- "tag-hover": hoverable
5558
- }),
5559
- closable: false,
5560
- color: computedColor === "gray" ? void 0 : computedColor
5561
- }),
5562
- icon && /* @__PURE__ */ React__default.createElement("span", { className: IconStyle$1 }, icon),
5563
- children
5564
- );
5565
- };
5566
- Tag.SplitTag = SplitTag;
5567
-
5568
5598
  const timeWrapper = "t19ustft";
5569
5599
  const Time = props => {
5570
5600
  const {
@@ -5696,7 +5726,7 @@ const TimeZoneSelect = props => {
5696
5726
  className: OptionWrapperStyle
5697
5727
  }, /* @__PURE__ */React__default.createElement(TimeZoneOption, {
5698
5728
  key: "utc",
5699
- customLabel: t("components.coorddinated_universal_time"),
5729
+ customLabel: t("components.coordinated_universal_time"),
5700
5730
  timeZone: {
5701
5731
  value: "UTC",
5702
5732
  text: "UTC",
@@ -5956,7 +5986,8 @@ function getAntdKit() {
5956
5986
  DetailCard,
5957
5987
  TruncatedTextWithTooltip,
5958
5988
  Counting,
5959
- Breadcrumb
5989
+ Breadcrumb,
5990
+ CircleProgress
5960
5991
  };
5961
5992
  kit.option.isSelectOption = true;
5962
5993
  kit.button.__ANT_BUTTON = true;