@cloudtower/eagle 0.27.1 → 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", {
@@ -1731,6 +1749,8 @@ const LoadingLine2 = "l13g0exg";
1731
1749
  const LoadingLine3 = "l1exo3h6";
1732
1750
 
1733
1751
  var __defProp$H = Object.defineProperty;
1752
+ var __defProps$y = Object.defineProperties;
1753
+ var __getOwnPropDescs$y = Object.getOwnPropertyDescriptors;
1734
1754
  var __getOwnPropSymbols$I = Object.getOwnPropertySymbols;
1735
1755
  var __hasOwnProp$I = Object.prototype.hasOwnProperty;
1736
1756
  var __propIsEnum$I = Object.prototype.propertyIsEnumerable;
@@ -1746,10 +1766,11 @@ var __spreadValues$H = (a, b) => {
1746
1766
  }
1747
1767
  return a;
1748
1768
  };
1769
+ var __spreadProps$y = (a, b) => __defProps$y(a, __getOwnPropDescs$y(b));
1749
1770
  const Loading = ({ fullView = true }) => {
1750
1771
  const Wrapper = fullView ? FullView : Fragment;
1751
1772
  const props = fullView ? { className: "loading-full-view" } : {};
1752
- return /* @__PURE__ */ React__default.createElement(Wrapper, __spreadValues$H({}, props), /* @__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 })));
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 })));
1753
1774
  };
1754
1775
 
1755
1776
  var __defProp$G = Object.defineProperty;
@@ -2576,7 +2597,7 @@ const FieldsString = (_a) => {
2576
2597
  size,
2577
2598
  allowClear,
2578
2599
  onClick,
2579
- 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,
2580
2601
  error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
2581
2602
  }), props), {
2582
2603
  onChange: (e) => {
@@ -2909,9 +2930,43 @@ const ParrotTrans = (props) => {
2909
2930
  return /* @__PURE__ */ React__default.createElement(Trans, __spreadValues$r({ i18n }, props));
2910
2931
  };
2911
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;
2912
2953
  var __getOwnPropSymbols$r = Object.getOwnPropertySymbols;
2913
2954
  var __hasOwnProp$r = Object.prototype.hasOwnProperty;
2914
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));
2915
2970
  var __objRest$a = (source, exclude) => {
2916
2971
  var target = {};
2917
2972
  for (var prop in source) if (__hasOwnProp$r.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
@@ -2920,22 +2975,137 @@ var __objRest$a = (source, exclude) => {
2920
2975
  }
2921
2976
  return target;
2922
2977
  };
2923
- const NameTag = /*#__PURE__*/styled$1('span')({
2924
- name: "NameTag",
2925
- class: "n3qomhu",
2926
- propsAsIs: false
2927
- });
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";
2928
3096
  const I18nNameTag = props => {
2929
3097
  const _a = props,
2930
3098
  {
2931
3099
  name,
2932
3100
  i18nKey
2933
3101
  } = _a,
2934
- otherOption = __objRest$a(_a, ["name", "i18nKey"]);
3102
+ otherOption = __objRest$8(_a, ["name", "i18nKey"]);
2935
3103
  return /* @__PURE__ */React__default.createElement(ParrotTrans, {
2936
3104
  i18nKey,
2937
3105
  tOptions: otherOption
2938
- }, "h", /* @__PURE__ */React__default.createElement(NameTag, null, {
3106
+ }, "h", /* @__PURE__ */React__default.createElement(Tag.NameTag, {
3107
+ className: tagStyle
3108
+ }, {
2939
3109
  name
2940
3110
  }));
2941
3111
  };
@@ -2947,25 +3117,25 @@ const InputGroup = /*#__PURE__*/styled$1(_exp())({
2947
3117
  propsAsIs: true
2948
3118
  });
2949
3119
 
2950
- var __defProp$q = Object.defineProperty;
2951
- var __defProps$k = Object.defineProperties;
2952
- var __getOwnPropDescs$k = Object.getOwnPropertyDescriptors;
2953
- var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
2954
- var __hasOwnProp$q = Object.prototype.hasOwnProperty;
2955
- var __propIsEnum$q = Object.prototype.propertyIsEnumerable;
2956
- var __defNormalProp$q = (obj, key2, value) => key2 in obj ? __defProp$q(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
2957
- 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) => {
2958
3128
  for (var prop in b || (b = {}))
2959
- if (__hasOwnProp$q.call(b, prop))
2960
- __defNormalProp$q(a, prop, b[prop]);
2961
- if (__getOwnPropSymbols$q)
2962
- for (var prop of __getOwnPropSymbols$q(b)) {
2963
- if (__propIsEnum$q.call(b, prop))
2964
- __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]);
2965
3135
  }
2966
3136
  return a;
2967
3137
  };
2968
- var __spreadProps$k = (a, b) => __defProps$k(a, __getOwnPropDescs$k(b));
3138
+ var __spreadProps$i = (a, b) => __defProps$i(a, __getOwnPropDescs$i(b));
2969
3139
  let messageInstance;
2970
3140
  let defaultDuration = 3;
2971
3141
  let defaultTop;
@@ -3072,7 +3242,7 @@ function notice(args) {
3072
3242
  }
3073
3243
  getRCNotificationInstance(args, ({ prefixCls, instance }) => {
3074
3244
  instance.notice(
3075
- getRCNoticeProps(__spreadProps$k(__spreadValues$q({}, args), { key: target, onClose: callback }), prefixCls)
3245
+ getRCNoticeProps(__spreadProps$i(__spreadValues$o({}, args), { key: target, onClose: callback }), prefixCls)
3076
3246
  );
3077
3247
  });
3078
3248
  });
@@ -3101,7 +3271,7 @@ const api = {
3101
3271
  function attachTypeApi(originalApi, type) {
3102
3272
  originalApi[type] = (content, duration, onClose) => {
3103
3273
  if (isArgsProps(content)) {
3104
- return originalApi.open(__spreadProps$k(__spreadValues$q({}, content), { type }));
3274
+ return originalApi.open(__spreadProps$i(__spreadValues$o({}, content), { type }));
3105
3275
  }
3106
3276
  if (typeof duration === "function") {
3107
3277
  onClose = duration;
@@ -3115,25 +3285,25 @@ function attachTypeApi(originalApi, type) {
3115
3285
  );
3116
3286
  api.warn = api.warning;
3117
3287
 
3118
- var __defProp$p = Object.defineProperty;
3119
- var __defProps$j = Object.defineProperties;
3120
- var __getOwnPropDescs$j = Object.getOwnPropertyDescriptors;
3121
- var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
3122
- var __hasOwnProp$p = Object.prototype.hasOwnProperty;
3123
- var __propIsEnum$p = Object.prototype.propertyIsEnumerable;
3124
- var __defNormalProp$p = (obj, key, value) => key in obj ? __defProp$p(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3125
- 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) => {
3126
3296
  for (var prop in b || (b = {}))
3127
- if (__hasOwnProp$p.call(b, prop))
3128
- __defNormalProp$p(a, prop, b[prop]);
3129
- if (__getOwnPropSymbols$p)
3130
- for (var prop of __getOwnPropSymbols$p(b)) {
3131
- if (__propIsEnum$p.call(b, prop))
3132
- __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]);
3133
3303
  }
3134
3304
  return a;
3135
3305
  };
3136
- var __spreadProps$j = (a, b) => __defProps$j(a, __getOwnPropDescs$j(b));
3306
+ var __spreadProps$h = (a, b) => __defProps$h(a, __getOwnPropDescs$h(b));
3137
3307
  const initialChartState = {
3138
3308
  pointers: {},
3139
3309
  resourceData: {},
@@ -3143,8 +3313,8 @@ const chartReducer = (state = initialChartState, action) => {
3143
3313
  switch (action.type) {
3144
3314
  case "SET_POINTER" /* SET_POINTER */: {
3145
3315
  const { uuid, left, text, visible, value } = action.payload;
3146
- return __spreadProps$j(__spreadValues$p({}, state), {
3147
- pointers: __spreadProps$j(__spreadValues$p({}, state.pointers), {
3316
+ return __spreadProps$h(__spreadValues$n({}, state), {
3317
+ pointers: __spreadProps$h(__spreadValues$n({}, state.pointers), {
3148
3318
  [uuid]: {
3149
3319
  left,
3150
3320
  text,
@@ -3156,16 +3326,16 @@ const chartReducer = (state = initialChartState, action) => {
3156
3326
  }
3157
3327
  case "SET_RESOURCE_DATA" /* SET_RESOURCE_DATA */: {
3158
3328
  const { uuid, data } = action.payload;
3159
- return __spreadProps$j(__spreadValues$p({}, state), {
3160
- resourceData: __spreadProps$j(__spreadValues$p({}, state.resourceData), {
3329
+ return __spreadProps$h(__spreadValues$n({}, state), {
3330
+ resourceData: __spreadProps$h(__spreadValues$n({}, state.resourceData), {
3161
3331
  [uuid]: data
3162
3332
  })
3163
3333
  });
3164
3334
  }
3165
3335
  case "SET_AVERAGE_DATA" /* SET_AVERAGE_DATA */: {
3166
3336
  const { uuid, average } = action.payload;
3167
- return __spreadProps$j(__spreadValues$p({}, state), {
3168
- averageData: __spreadProps$j(__spreadValues$p({}, state.averageData), {
3337
+ return __spreadProps$h(__spreadValues$n({}, state), {
3338
+ averageData: __spreadProps$h(__spreadValues$n({}, state.averageData), {
3169
3339
  [uuid]: average
3170
3340
  })
3171
3341
  });
@@ -3176,25 +3346,25 @@ const chartReducer = (state = initialChartState, action) => {
3176
3346
  }
3177
3347
  };
3178
3348
 
3179
- var __defProp$o = Object.defineProperty;
3180
- var __defProps$i = Object.defineProperties;
3181
- var __getOwnPropDescs$i = Object.getOwnPropertyDescriptors;
3182
- var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
3183
- var __hasOwnProp$o = Object.prototype.hasOwnProperty;
3184
- var __propIsEnum$o = Object.prototype.propertyIsEnumerable;
3185
- var __defNormalProp$o = (obj, key, value) => key in obj ? __defProp$o(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3186
- var __spreadValues$o = (a, b) => {
3187
- for (var prop in b || (b = {}))
3188
- if (__hasOwnProp$o.call(b, prop))
3189
- __defNormalProp$o(a, prop, b[prop]);
3190
- if (__getOwnPropSymbols$o)
3191
- for (var prop of __getOwnPropSymbols$o(b)) {
3192
- if (__propIsEnum$o.call(b, prop))
3193
- __defNormalProp$o(a, prop, b[prop]);
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) => {
3357
+ for (var prop in b || (b = {}))
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]);
3194
3364
  }
3195
3365
  return a;
3196
3366
  };
3197
- var __spreadProps$i = (a, b) => __defProps$i(a, __getOwnPropDescs$i(b));
3367
+ var __spreadProps$g = (a, b) => __defProps$g(a, __getOwnPropDescs$g(b));
3198
3368
  var ModalActions = /* @__PURE__ */ ((ModalActions2) => {
3199
3369
  ModalActions2["PUSH_MODAL"] = "PUSH_MODAL";
3200
3370
  ModalActions2["POP_MODAL"] = "POP_MODAL";
@@ -3215,22 +3385,22 @@ const modalReducer = (state = initialModalState, action) => {
3215
3385
  )) {
3216
3386
  return state;
3217
3387
  }
3218
- return __spreadProps$i(__spreadValues$o({}, state), {
3219
- 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), {
3220
3390
  id: MODAL_ID++
3221
3391
  }))
3222
3392
  });
3223
3393
  case "POP_MODAL" /* POP_MODAL */:
3224
- return __spreadProps$i(__spreadValues$o({}, state), {
3394
+ return __spreadProps$g(__spreadValues$m({}, state), {
3225
3395
  stack: state.stack.slice(0, -1)
3226
3396
  });
3227
3397
  case "REMOVE_MODAL" /* REMOVE_MODAL */:
3228
- return __spreadProps$i(__spreadValues$o({}, state), {
3398
+ return __spreadProps$g(__spreadValues$m({}, state), {
3229
3399
  closeId: 0,
3230
3400
  stack: state.stack.filter((m) => m.id !== action.id)
3231
3401
  });
3232
3402
  case "CLOSE_MODAL" /* CLOSE_MODAL */:
3233
- return __spreadProps$i(__spreadValues$o({}, state), {
3403
+ return __spreadProps$g(__spreadValues$m({}, state), {
3234
3404
  closeId: action.id
3235
3405
  });
3236
3406
  default:
@@ -3287,33 +3457,33 @@ const VerticalStyle = "v1p8siwu";
3287
3457
  const HorizontalStepContentStyle = "h1xo7yjb";
3288
3458
  const VerticalStepContentStyle = "v1f2f7cy";
3289
3459
 
3290
- var __defProp$n = Object.defineProperty;
3291
- var __defProps$h = Object.defineProperties;
3292
- var __getOwnPropDescs$h = Object.getOwnPropertyDescriptors;
3293
- var __getOwnPropSymbols$n = Object.getOwnPropertySymbols;
3294
- var __hasOwnProp$n = Object.prototype.hasOwnProperty;
3295
- var __propIsEnum$n = Object.prototype.propertyIsEnumerable;
3296
- var __defNormalProp$n = (obj, key, value) => key in obj ? __defProp$n(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3297
- 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) => {
3298
3468
  for (var prop in b || (b = {}))
3299
- if (__hasOwnProp$n.call(b, prop))
3300
- __defNormalProp$n(a, prop, b[prop]);
3301
- if (__getOwnPropSymbols$n)
3302
- for (var prop of __getOwnPropSymbols$n(b)) {
3303
- if (__propIsEnum$n.call(b, prop))
3304
- __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]);
3305
3475
  }
3306
3476
  return a;
3307
3477
  };
3308
- var __spreadProps$h = (a, b) => __defProps$h(a, __getOwnPropDescs$h(b));
3309
- var __objRest$9 = (source, exclude) => {
3478
+ var __spreadProps$f = (a, b) => __defProps$f(a, __getOwnPropDescs$f(b));
3479
+ var __objRest$7 = (source, exclude) => {
3310
3480
  var target = {};
3311
3481
  for (var prop in source)
3312
- if (__hasOwnProp$n.call(source, prop) && exclude.indexOf(prop) < 0)
3482
+ if (__hasOwnProp$l.call(source, prop) && exclude.indexOf(prop) < 0)
3313
3483
  target[prop] = source[prop];
3314
- if (source != null && __getOwnPropSymbols$n)
3315
- for (var prop of __getOwnPropSymbols$n(source)) {
3316
- 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))
3317
3487
  target[prop] = source[prop];
3318
3488
  }
3319
3489
  return target;
@@ -3329,7 +3499,7 @@ const StepTitle = (props) => {
3329
3499
  setTooltipEnable({});
3330
3500
  }
3331
3501
  }, [textRef]);
3332
- 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(
3333
3503
  "div",
3334
3504
  {
3335
3505
  className: isVerticalMode ? VerticalStepContentStyle : HorizontalStepContentStyle
@@ -3345,7 +3515,7 @@ const Steps = (props) => {
3345
3515
  containerClassname,
3346
3516
  current = 0,
3347
3517
  disabled
3348
- } = _a, stepsProps = __objRest$9(_a, [
3518
+ } = _a, stepsProps = __objRest$7(_a, [
3349
3519
  "stepsConfig",
3350
3520
  "direction",
3351
3521
  "containerClassname",
@@ -3364,14 +3534,14 @@ const Steps = (props) => {
3364
3534
  },
3365
3535
  /* @__PURE__ */ React__default.createElement(
3366
3536
  Steps$1,
3367
- __spreadProps$h(__spreadValues$n({}, stepsProps), {
3537
+ __spreadProps$f(__spreadValues$l({}, stepsProps), {
3368
3538
  direction,
3369
3539
  current,
3370
3540
  type: "default"
3371
3541
  }),
3372
3542
  (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */ React__default.createElement(
3373
3543
  Steps$1.Step,
3374
- __spreadProps$h(__spreadValues$n({
3544
+ __spreadProps$f(__spreadValues$l({
3375
3545
  key: index
3376
3546
  }, step), {
3377
3547
  disabled: disabled || index > current,
@@ -3390,33 +3560,33 @@ const Steps = (props) => {
3390
3560
  );
3391
3561
  };
3392
3562
 
3393
- var __defProp$m = Object.defineProperty;
3394
- var __defProps$g = Object.defineProperties;
3395
- var __getOwnPropDescs$g = Object.getOwnPropertyDescriptors;
3396
- var __getOwnPropSymbols$m = Object.getOwnPropertySymbols;
3397
- var __hasOwnProp$m = Object.prototype.hasOwnProperty;
3398
- var __propIsEnum$m = Object.prototype.propertyIsEnumerable;
3399
- var __defNormalProp$m = (obj, key, value) => key in obj ? __defProp$m(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3400
- 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) => {
3401
3571
  for (var prop in b || (b = {}))
3402
- if (__hasOwnProp$m.call(b, prop))
3403
- __defNormalProp$m(a, prop, b[prop]);
3404
- if (__getOwnPropSymbols$m)
3405
- for (var prop of __getOwnPropSymbols$m(b)) {
3406
- if (__propIsEnum$m.call(b, prop))
3407
- __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]);
3408
3578
  }
3409
3579
  return a;
3410
3580
  };
3411
- var __spreadProps$g = (a, b) => __defProps$g(a, __getOwnPropDescs$g(b));
3412
- var __objRest$8 = (source, exclude) => {
3581
+ var __spreadProps$e = (a, b) => __defProps$e(a, __getOwnPropDescs$e(b));
3582
+ var __objRest$6 = (source, exclude) => {
3413
3583
  var target = {};
3414
3584
  for (var prop in source)
3415
- if (__hasOwnProp$m.call(source, prop) && exclude.indexOf(prop) < 0)
3585
+ if (__hasOwnProp$k.call(source, prop) && exclude.indexOf(prop) < 0)
3416
3586
  target[prop] = source[prop];
3417
- if (source != null && __getOwnPropSymbols$m)
3418
- for (var prop of __getOwnPropSymbols$m(source)) {
3419
- 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))
3420
3590
  target[prop] = source[prop];
3421
3591
  }
3422
3592
  return target;
@@ -3443,7 +3613,7 @@ const Modal = (props) => {
3443
3613
  showCancel = true,
3444
3614
  showOk = true,
3445
3615
  afterClose
3446
- } = _a, restProps = __objRest$8(_a, [
3616
+ } = _a, restProps = __objRest$6(_a, [
3447
3617
  "error",
3448
3618
  "okText",
3449
3619
  "cancelText",
@@ -3498,7 +3668,7 @@ const Modal = (props) => {
3498
3668
  }
3499
3669
  return /* @__PURE__ */ React__default.createElement(
3500
3670
  Modal$1,
3501
- __spreadProps$g(__spreadValues$m({
3671
+ __spreadProps$e(__spreadValues$k({
3502
3672
  maskClosable,
3503
3673
  className: cs(
3504
3674
  className,
@@ -3533,7 +3703,7 @@ const Modal = (props) => {
3533
3703
  prevText
3534
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(
3535
3705
  Button,
3536
- __spreadValues$m({
3706
+ __spreadValues$k({
3537
3707
  type: "quiet",
3538
3708
  onMouseDown: (e) => {
3539
3709
  e.preventDefault();
@@ -3547,7 +3717,7 @@ const Modal = (props) => {
3547
3717
  cancelText
3548
3718
  ), showOk && /* @__PURE__ */ React__default.createElement(
3549
3719
  Button,
3550
- __spreadValues$m({
3720
+ __spreadValues$k({
3551
3721
  onClick: (e) => {
3552
3722
  var _a2, _b2;
3553
3723
  onOk == null ? void 0 : onOk(e);
@@ -3589,26 +3759,26 @@ const Modal = (props) => {
3589
3759
  );
3590
3760
  };
3591
3761
 
3592
- var __defProp$l = Object.defineProperty;
3593
- var __defProps$f = Object.defineProperties;
3594
- var __getOwnPropDescs$f = Object.getOwnPropertyDescriptors;
3595
- var __getOwnPropSymbols$l = Object.getOwnPropertySymbols;
3596
- var __hasOwnProp$l = Object.prototype.hasOwnProperty;
3597
- var __propIsEnum$l = Object.prototype.propertyIsEnumerable;
3598
- 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, {
3599
3769
  enumerable: true,
3600
3770
  configurable: true,
3601
3771
  writable: true,
3602
3772
  value
3603
3773
  }) : obj[key] = value;
3604
- var __spreadValues$l = (a, b) => {
3605
- for (var prop in b || (b = {})) if (__hasOwnProp$l.call(b, prop)) __defNormalProp$l(a, prop, b[prop]);
3606
- if (__getOwnPropSymbols$l) for (var prop of __getOwnPropSymbols$l(b)) {
3607
- 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]);
3608
3778
  }
3609
3779
  return a;
3610
3780
  };
3611
- var __spreadProps$f = (a, b) => __defProps$f(a, __getOwnPropDescs$f(b));
3781
+ var __spreadProps$d = (a, b) => __defProps$d(a, __getOwnPropDescs$d(b));
3612
3782
  const OverflowText = "o8ocss1";
3613
3783
  const NoWrap = "n17syc35";
3614
3784
  const OverflowTooltip = props => {
@@ -3639,7 +3809,7 @@ const OverflowTooltip = props => {
3639
3809
  observer == null ? void 0 : observer.disconnect();
3640
3810
  };
3641
3811
  });
3642
- return /* @__PURE__ */React__default.createElement(Tooltip, __spreadProps$f(__spreadValues$l({}, !ellipsis && {
3812
+ return /* @__PURE__ */React__default.createElement(Tooltip, __spreadProps$d(__spreadValues$j({}, !ellipsis && {
3643
3813
  visible: false
3644
3814
  }), {
3645
3815
  title: tooltip
@@ -3712,8 +3882,8 @@ const Pagination = props => {
3712
3882
  }, /* @__PURE__ */React__default.createElement(Icon, {
3713
3883
  alt: "arrowChevronDownSmall16Secondary",
3714
3884
  className: "pagination-left dropdown-trigger",
3715
- src: img$8,
3716
- hoverSrc: img$9,
3885
+ src: ArrowChevronDownSmall16SecondaryIcon,
3886
+ hoverSrc: ArrowChevronDownSmall16BlueIcon,
3717
3887
  prefix: content
3718
3888
  }));
3719
3889
  }
@@ -3734,7 +3904,7 @@ const Pagination = props => {
3734
3904
  size: "small",
3735
3905
  prefixIcon: /* @__PURE__ */React__default.createElement(Icon, {
3736
3906
  alt: "arrowChevronLeftSmall16BoldBlue",
3737
- src: img$7
3907
+ src: ArrowChevronLeftSmall16BoldBlueIcon
3738
3908
  }),
3739
3909
  onClick: () => {
3740
3910
  onChange == null ? void 0 : onChange(current - 1);
@@ -3747,7 +3917,7 @@ const Pagination = props => {
3747
3917
  size: "small",
3748
3918
  suffixIcon: /* @__PURE__ */React__default.createElement(Icon, {
3749
3919
  alt: "arrowChevronLeftSmall16BoldBlue",
3750
- src: img$7
3920
+ src: ArrowChevronLeftSmall16BoldBlueIcon
3751
3921
  }),
3752
3922
  onClick: () => {
3753
3923
  onChange == null ? void 0 : onChange(current + 1);
@@ -3757,19 +3927,19 @@ const Pagination = props => {
3757
3927
  }))));
3758
3928
  };
3759
3929
 
3760
- var __defProp$k = Object.defineProperty;
3761
- var __getOwnPropSymbols$k = Object.getOwnPropertySymbols;
3762
- var __hasOwnProp$k = Object.prototype.hasOwnProperty;
3763
- var __propIsEnum$k = Object.prototype.propertyIsEnumerable;
3764
- var __defNormalProp$k = (obj, key, value) => key in obj ? __defProp$k(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3765
- 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) => {
3766
3936
  for (var prop in b || (b = {}))
3767
- if (__hasOwnProp$k.call(b, prop))
3768
- __defNormalProp$k(a, prop, b[prop]);
3769
- if (__getOwnPropSymbols$k)
3770
- for (var prop of __getOwnPropSymbols$k(b)) {
3771
- if (__propIsEnum$k.call(b, prop))
3772
- __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]);
3773
3943
  }
3774
3944
  return a;
3775
3945
  };
@@ -3782,52 +3952,52 @@ const Percent = ({
3782
3952
  emptyProps
3783
3953
  }) => {
3784
3954
  if (isEmpty(rawValue)) {
3785
- return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$k({}, emptyProps));
3955
+ return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$i({}, emptyProps));
3786
3956
  }
3787
3957
  const { value, unit } = formatPercent(rawValue, decimals, saturated);
3788
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));
3789
3959
  };
3790
3960
 
3791
- var __defProp$j = Object.defineProperty;
3792
- var __getOwnPropSymbols$j = Object.getOwnPropertySymbols;
3793
- var __hasOwnProp$j = Object.prototype.hasOwnProperty;
3794
- var __propIsEnum$j = Object.prototype.propertyIsEnumerable;
3795
- var __defNormalProp$j = (obj, key, value) => key in obj ? __defProp$j(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3796
- 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) => {
3797
3967
  for (var prop in b || (b = {}))
3798
- if (__hasOwnProp$j.call(b, prop))
3799
- __defNormalProp$j(a, prop, b[prop]);
3800
- if (__getOwnPropSymbols$j)
3801
- for (var prop of __getOwnPropSymbols$j(b)) {
3802
- if (__propIsEnum$j.call(b, prop))
3803
- __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]);
3804
3974
  }
3805
3975
  return a;
3806
3976
  };
3807
- 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));
3808
3978
 
3809
- var __defProp$i = Object.defineProperty;
3810
- var __getOwnPropSymbols$i = Object.getOwnPropertySymbols;
3811
- var __hasOwnProp$i = Object.prototype.hasOwnProperty;
3812
- var __propIsEnum$i = Object.prototype.propertyIsEnumerable;
3813
- 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, {
3814
3984
  enumerable: true,
3815
3985
  configurable: true,
3816
3986
  writable: true,
3817
3987
  value
3818
3988
  }) : obj[key] = value;
3819
- var __spreadValues$i = (a, b) => {
3820
- for (var prop in b || (b = {})) if (__hasOwnProp$i.call(b, prop)) __defNormalProp$i(a, prop, b[prop]);
3821
- if (__getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(b)) {
3822
- 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]);
3823
3993
  }
3824
3994
  return a;
3825
3995
  };
3826
- var __objRest$7 = (source, exclude) => {
3996
+ var __objRest$5 = (source, exclude) => {
3827
3997
  var target = {};
3828
- for (var prop in source) if (__hasOwnProp$i.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
3829
- if (source != null && __getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(source)) {
3830
- 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];
3831
4001
  }
3832
4002
  return target;
3833
4003
  };
@@ -3843,7 +4013,7 @@ const Radio = _a => {
3843
4013
  checked,
3844
4014
  compact = false
3845
4015
  } = _b,
3846
- props = __objRest$7(_b, ["children", "className", "checked", "compact"]);
4016
+ props = __objRest$5(_b, ["children", "className", "checked", "compact"]);
3847
4017
  const {
3848
4018
  description
3849
4019
  } = props;
@@ -3853,7 +4023,7 @@ const Radio = _a => {
3853
4023
  className: cx("radio-description", Typo.Label.l4_regular)
3854
4024
  }, description));
3855
4025
  }
3856
- 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({
3857
4027
  className: cx(className, RadioStyle, compact && "compact"),
3858
4028
  checked: checked || false,
3859
4029
  "data-test": context.name ? `${context.name}-${String(props.value)}` : String(props.value)
@@ -3865,13 +4035,13 @@ const RadioGroup = _c => {
3865
4035
  children,
3866
4036
  className
3867
4037
  } = _d,
3868
- props = __objRest$7(_d, ["children", "className"]);
4038
+ props = __objRest$5(_d, ["children", "className"]);
3869
4039
  return /* @__PURE__ */React__default.createElement(KitRadioGroupContext.Provider, {
3870
4040
  value: {
3871
4041
  disabled: props.disabled,
3872
4042
  name: props.name
3873
4043
  }
3874
- }, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$i({
4044
+ }, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$g({
3875
4045
  className: cx(className, RadioGroupStyle)
3876
4046
  }, props), children ? children : null));
3877
4047
  };
@@ -3881,7 +4051,7 @@ const RadioButton = _e => {
3881
4051
  children,
3882
4052
  className
3883
4053
  } = _f,
3884
- props = __objRest$7(_f, ["children", "className"]);
4054
+ props = __objRest$5(_f, ["children", "className"]);
3885
4055
  const {
3886
4056
  type,
3887
4057
  placeholder = "Label",
@@ -3927,46 +4097,46 @@ const RadioButton = _e => {
3927
4097
  className: "ant-radio-button-input-label"
3928
4098
  }, typeof children === "string" ? children : ""));
3929
4099
  };
3930
- return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$i({
4100
+ return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$g({
3931
4101
  className: cx(className, RadioButtonStyle),
3932
4102
  value: radioButtonValue
3933
4103
  }, props), renderChildren());
3934
4104
  };
3935
4105
 
3936
- var __defProp$h = Object.defineProperty;
3937
- var __getOwnPropSymbols$h = Object.getOwnPropertySymbols;
3938
- var __hasOwnProp$h = Object.prototype.hasOwnProperty;
3939
- var __propIsEnum$h = Object.prototype.propertyIsEnumerable;
3940
- var __defNormalProp$h = (obj, key, value) => key in obj ? __defProp$h(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3941
- 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) => {
3942
4112
  for (var prop in b || (b = {}))
3943
- if (__hasOwnProp$h.call(b, prop))
3944
- __defNormalProp$h(a, prop, b[prop]);
3945
- if (__getOwnPropSymbols$h)
3946
- for (var prop of __getOwnPropSymbols$h(b)) {
3947
- if (__propIsEnum$h.call(b, prop))
3948
- __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]);
3949
4119
  }
3950
4120
  return a;
3951
4121
  };
3952
- var __objRest$6 = (source, exclude) => {
4122
+ var __objRest$4 = (source, exclude) => {
3953
4123
  var target = {};
3954
4124
  for (var prop in source)
3955
- if (__hasOwnProp$h.call(source, prop) && exclude.indexOf(prop) < 0)
4125
+ if (__hasOwnProp$f.call(source, prop) && exclude.indexOf(prop) < 0)
3956
4126
  target[prop] = source[prop];
3957
- if (source != null && __getOwnPropSymbols$h)
3958
- for (var prop of __getOwnPropSymbols$h(source)) {
3959
- 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))
3960
4130
  target[prop] = source[prop];
3961
4131
  }
3962
4132
  return target;
3963
4133
  };
3964
4134
  const SearchInput = (props) => {
3965
- 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"]);
3966
4136
  const onSearch = _.debounce(onChange, debounceWait);
3967
4137
  return /* @__PURE__ */ React__default.createElement(
3968
4138
  Input,
3969
- __spreadValues$h({
4139
+ __spreadValues$f({
3970
4140
  style: { width: 276 },
3971
4141
  prefix: /* @__PURE__ */ React__default.createElement(SearchOutlined, null),
3972
4142
  onChange: (e) => onSearch(e.target.value)
@@ -3974,19 +4144,19 @@ const SearchInput = (props) => {
3974
4144
  );
3975
4145
  };
3976
4146
 
3977
- var __defProp$g = Object.defineProperty;
3978
- var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
3979
- var __hasOwnProp$g = Object.prototype.hasOwnProperty;
3980
- var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
3981
- var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3982
- 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) => {
3983
4153
  for (var prop in b || (b = {}))
3984
- if (__hasOwnProp$g.call(b, prop))
3985
- __defNormalProp$g(a, prop, b[prop]);
3986
- if (__getOwnPropSymbols$g)
3987
- for (var prop of __getOwnPropSymbols$g(b)) {
3988
- if (__propIsEnum$g.call(b, prop))
3989
- __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]);
3990
4160
  }
3991
4161
  return a;
3992
4162
  };
@@ -4000,7 +4170,7 @@ const Second = ({
4000
4170
  }) => {
4001
4171
  const { t } = useParrotTranslation();
4002
4172
  if (isEmpty(rawValue)) {
4003
- return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$g({}, emptyProps));
4173
+ return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$e({}, emptyProps));
4004
4174
  }
4005
4175
  const { value, unit } = formatSeconds(rawValue, decimals);
4006
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}`)));
@@ -4046,7 +4216,7 @@ const SimplePagination = props => {
4046
4216
  },
4047
4217
  prefixIcon: /* @__PURE__ */React__default.createElement(Icon, {
4048
4218
  alt: "arrowChevronLeftSmall16BoldBlue",
4049
- src: img$7
4219
+ src: ArrowChevronLeftSmall16BoldBlueIcon
4050
4220
  }),
4051
4221
  onClick: () => {
4052
4222
  onPageChange == null ? void 0 : onPageChange(current - 1);
@@ -4074,7 +4244,7 @@ const SimplePagination = props => {
4074
4244
  },
4075
4245
  prefixIcon: /* @__PURE__ */React__default.createElement(Icon, {
4076
4246
  alt: "arrowChevronLeftSmall16BoldBlue",
4077
- src: img$7
4247
+ src: ArrowChevronLeftSmall16BoldBlueIcon
4078
4248
  }),
4079
4249
  onClick: () => {
4080
4250
  onPageChange == null ? void 0 : onPageChange(current + 1);
@@ -4082,19 +4252,19 @@ const SimplePagination = props => {
4082
4252
  })));
4083
4253
  };
4084
4254
 
4085
- var __defProp$f = Object.defineProperty;
4086
- var __getOwnPropSymbols$f = Object.getOwnPropertySymbols;
4087
- var __hasOwnProp$f = Object.prototype.hasOwnProperty;
4088
- var __propIsEnum$f = Object.prototype.propertyIsEnumerable;
4089
- var __defNormalProp$f = (obj, key, value) => key in obj ? __defProp$f(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4090
- 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) => {
4091
4261
  for (var prop in b || (b = {}))
4092
- if (__hasOwnProp$f.call(b, prop))
4093
- __defNormalProp$f(a, prop, b[prop]);
4094
- if (__getOwnPropSymbols$f)
4095
- for (var prop of __getOwnPropSymbols$f(b)) {
4096
- if (__propIsEnum$f.call(b, prop))
4097
- __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]);
4098
4268
  }
4099
4269
  return a;
4100
4270
  };
@@ -4106,41 +4276,41 @@ const Speed = ({
4106
4276
  emptyProps
4107
4277
  }) => {
4108
4278
  if (isEmpty(rawValue)) {
4109
- return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$f({}, emptyProps));
4279
+ return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$d({}, emptyProps));
4110
4280
  }
4111
4281
  const { value, unit } = formatSpeed(rawValue, decimals);
4112
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}`));
4113
4283
  };
4114
4284
 
4115
- var __defProp$e = Object.defineProperty;
4116
- var __defProps$e = Object.defineProperties;
4117
- var __getOwnPropDescs$e = Object.getOwnPropertyDescriptors;
4118
- var __getOwnPropSymbols$e = Object.getOwnPropertySymbols;
4119
- var __hasOwnProp$e = Object.prototype.hasOwnProperty;
4120
- var __propIsEnum$e = Object.prototype.propertyIsEnumerable;
4121
- 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, {
4122
4292
  enumerable: true,
4123
4293
  configurable: true,
4124
4294
  writable: true,
4125
4295
  value
4126
4296
  }) : obj[key] = value;
4127
- var __spreadValues$e = (a, b) => {
4128
- for (var prop in b || (b = {})) if (__hasOwnProp$e.call(b, prop)) __defNormalProp$e(a, prop, b[prop]);
4129
- if (__getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(b)) {
4130
- 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]);
4131
4301
  }
4132
4302
  return a;
4133
4303
  };
4134
- var __spreadProps$e = (a, b) => __defProps$e(a, __getOwnPropDescs$e(b));
4135
- var __objRest$5 = (source, exclude) => {
4304
+ var __spreadProps$c = (a, b) => __defProps$c(a, __getOwnPropDescs$c(b));
4305
+ var __objRest$3 = (source, exclude) => {
4136
4306
  var target = {};
4137
- for (var prop in source) if (__hasOwnProp$e.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
4138
- if (source != null && __getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(source)) {
4139
- 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];
4140
4310
  }
4141
4311
  return target;
4142
4312
  };
4143
- const PresetColors$3 = ["blue", "red", "yellow", "green", "gray"];
4313
+ const PresetColors$1 = ["blue", "red", "yellow", "green", "gray"];
4144
4314
  const StatusCapsuleStyle = "s14dk8r1";
4145
4315
  const StatusCode = /*#__PURE__*/styled$1('i')({
4146
4316
  name: "StatusCode",
@@ -4179,11 +4349,11 @@ const StatusCapsule = _a => {
4179
4349
  offWhiteMode,
4180
4350
  number
4181
4351
  } = _b,
4182
- props = __objRest$5(_b, ["color", "className", "loading", "hoverable", "children", "offWhiteMode", "number"]);
4352
+ props = __objRest$3(_b, ["color", "className", "loading", "hoverable", "children", "offWhiteMode", "number"]);
4183
4353
  const computedColor = ColorMap[color] || color;
4184
- 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), {
4185
4355
  className: cs(className, StatusCapsuleStyle, Typo.Label.l4_regular, "ui-kit-status-capsule", {
4186
- [`ant-tag-${computedColor}`]: PresetColors$3.includes(computedColor),
4356
+ [`ant-tag-${computedColor}`]: PresetColors$1.includes(computedColor),
4187
4357
  "tag-hover": hoverable,
4188
4358
  "off-white": offWhiteMode
4189
4359
  }),
@@ -4196,31 +4366,31 @@ const StatusCapsule = _a => {
4196
4366
  }, number));
4197
4367
  };
4198
4368
 
4199
- var __defProp$d = Object.defineProperty;
4200
- var __defProps$d = Object.defineProperties;
4201
- var __getOwnPropDescs$d = Object.getOwnPropertyDescriptors;
4202
- var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
4203
- var __hasOwnProp$d = Object.prototype.hasOwnProperty;
4204
- var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
4205
- 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, {
4206
4376
  enumerable: true,
4207
4377
  configurable: true,
4208
4378
  writable: true,
4209
4379
  value
4210
4380
  }) : obj[key] = value;
4211
- var __spreadValues$d = (a, b) => {
4212
- for (var prop in b || (b = {})) if (__hasOwnProp$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
4213
- if (__getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(b)) {
4214
- 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]);
4215
4385
  }
4216
4386
  return a;
4217
4387
  };
4218
- var __spreadProps$d = (a, b) => __defProps$d(a, __getOwnPropDescs$d(b));
4219
- var __objRest$4 = (source, exclude) => {
4388
+ var __spreadProps$b = (a, b) => __defProps$b(a, __getOwnPropDescs$b(b));
4389
+ var __objRest$2 = (source, exclude) => {
4220
4390
  var target = {};
4221
- for (var prop in source) if (__hasOwnProp$d.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
4222
- if (source != null && __getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(source)) {
4223
- 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];
4224
4394
  }
4225
4395
  return target;
4226
4396
  };
@@ -4232,7 +4402,7 @@ const Switch = _a => {
4232
4402
  className,
4233
4403
  checked
4234
4404
  } = _b,
4235
- props = __objRest$4(_b, ["children", "className", "checked"]);
4405
+ props = __objRest$2(_b, ["children", "className", "checked"]);
4236
4406
  const Content = /*#__PURE__*/styled$1('span')({
4237
4407
  name: "Content",
4238
4408
  class: "c1to9vb9",
@@ -4240,7 +4410,7 @@ const Switch = _a => {
4240
4410
  });
4241
4411
  const classNames = [className, SwitchStyle, "switch"];
4242
4412
  if (props.size === "large") classNames.push("ant-switch-large");
4243
- 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({
4244
4414
  className: cx(...classNames),
4245
4415
  checked: checked || false
4246
4416
  }, props), {
@@ -4322,30 +4492,30 @@ const ColumnTitle = props => {
4322
4492
  return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, title, /* @__PURE__ */React__default.createElement(Icon, {
4323
4493
  alt: "arrowChevronUp16BoldSecondary",
4324
4494
  className: cs("order-icon", sortOrder),
4325
- src: img$6
4495
+ src: ArrowChevronUp16BoldSecondaryIcon
4326
4496
  }));
4327
4497
  };
4328
4498
 
4329
- var __defProp$c = Object.defineProperty;
4330
- var __defProps$c = Object.defineProperties;
4331
- var __getOwnPropDescs$c = Object.getOwnPropertyDescriptors;
4332
- var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
4333
- var __hasOwnProp$c = Object.prototype.hasOwnProperty;
4334
- var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
4335
- 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, {
4336
4506
  enumerable: true,
4337
4507
  configurable: true,
4338
4508
  writable: true,
4339
4509
  value
4340
4510
  }) : obj[key] = value;
4341
- var __spreadValues$c = (a, b) => {
4342
- for (var prop in b || (b = {})) if (__hasOwnProp$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
4343
- if (__getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(b)) {
4344
- 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]);
4345
4515
  }
4346
4516
  return a;
4347
4517
  };
4348
- var __spreadProps$c = (a, b) => __defProps$c(a, __getOwnPropDescs$c(b));
4518
+ var __spreadProps$a = (a, b) => __defProps$a(a, __getOwnPropDescs$a(b));
4349
4519
  const TableContainerStyle = "t1upn1sz";
4350
4520
  const tableStyleCover = "tta5kd2";
4351
4521
  const Table = props => {
@@ -4372,7 +4542,7 @@ const Table = props => {
4372
4542
  const orderRef = useRef(null);
4373
4543
  const hasScrollBard = useTableBodyHasScrollBar(wrapper, dataSource);
4374
4544
  const _columns = useMemo(() => columns.map(column => {
4375
- const _column = __spreadValues$c({}, column);
4545
+ const _column = __spreadValues$a({}, column);
4376
4546
  if (_column.sorter && typeof _column.title !== "function") {
4377
4547
  _column.title = /* @__PURE__ */React__default.createElement(ColumnTitle, {
4378
4548
  title: column.title,
@@ -4409,12 +4579,12 @@ const Table = props => {
4409
4579
  onSorterChange == null ? void 0 : onSorterChange(orderRef.current, sorter.columnKey);
4410
4580
  }
4411
4581
  },
4412
- onRow: (record, index) => __spreadValues$c({
4582
+ onRow: (record, index) => __spreadValues$a({
4413
4583
  onClick: evt => onRowClick == null ? void 0 : onRowClick(record, index, evt)
4414
4584
  }, onRow == null ? void 0 : onRow(record, index)),
4415
4585
  rowClassName,
4416
4586
  scroll,
4417
- rowSelection: rowSelection && __spreadProps$c(__spreadValues$c({}, rowSelection), {
4587
+ rowSelection: rowSelection && __spreadProps$a(__spreadValues$a({}, rowSelection), {
4418
4588
  columnWidth: 32
4419
4589
  }),
4420
4590
  showSorterTooltip: false
@@ -4476,33 +4646,33 @@ const moveItemInArray = (array, fromIndex, toIndex) => {
4476
4646
  return sortArr;
4477
4647
  };
4478
4648
 
4479
- var __defProp$b = Object.defineProperty;
4480
- var __defProps$b = Object.defineProperties;
4481
- var __getOwnPropDescs$b = Object.getOwnPropertyDescriptors;
4482
- var __getOwnPropSymbols$b = Object.getOwnPropertySymbols;
4483
- var __hasOwnProp$b = Object.prototype.hasOwnProperty;
4484
- var __propIsEnum$b = Object.prototype.propertyIsEnumerable;
4485
- var __defNormalProp$b = (obj, key, value) => key in obj ? __defProp$b(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4486
- 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) => {
4487
4657
  for (var prop in b || (b = {}))
4488
- if (__hasOwnProp$b.call(b, prop))
4489
- __defNormalProp$b(a, prop, b[prop]);
4490
- if (__getOwnPropSymbols$b)
4491
- for (var prop of __getOwnPropSymbols$b(b)) {
4492
- if (__propIsEnum$b.call(b, prop))
4493
- __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]);
4494
4664
  }
4495
4665
  return a;
4496
4666
  };
4497
- var __spreadProps$b = (a, b) => __defProps$b(a, __getOwnPropDescs$b(b));
4498
- var __objRest$3 = (source, exclude) => {
4667
+ var __spreadProps$9 = (a, b) => __defProps$9(a, __getOwnPropDescs$9(b));
4668
+ var __objRest$1 = (source, exclude) => {
4499
4669
  var target = {};
4500
4670
  for (var prop in source)
4501
- if (__hasOwnProp$b.call(source, prop) && exclude.indexOf(prop) < 0)
4671
+ if (__hasOwnProp$9.call(source, prop) && exclude.indexOf(prop) < 0)
4502
4672
  target[prop] = source[prop];
4503
- if (source != null && __getOwnPropSymbols$b)
4504
- for (var prop of __getOwnPropSymbols$b(source)) {
4505
- 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))
4506
4676
  target[prop] = source[prop];
4507
4677
  }
4508
4678
  return target;
@@ -4518,7 +4688,7 @@ const AddRowButton = (props) => {
4518
4688
  const _a = buttonProps || {}, {
4519
4689
  disabled: disabledFromProp,
4520
4690
  onClick
4521
- } = _a, restButtonProps = __objRest$3(_a, [
4691
+ } = _a, restButtonProps = __objRest$1(_a, [
4522
4692
  "disabled",
4523
4693
  "onClick"
4524
4694
  ]);
@@ -4543,9 +4713,9 @@ const AddRowButton = (props) => {
4543
4713
  if (!columns.length) {
4544
4714
  return null;
4545
4715
  }
4546
- 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(
4547
4717
  Button,
4548
- __spreadProps$b(__spreadValues$b({}, restButtonProps), {
4718
+ __spreadProps$9(__spreadValues$9({}, restButtonProps), {
4549
4719
  type: restButtonProps.type || "ordinary",
4550
4720
  size: restButtonProps.size || "small",
4551
4721
  prefixIcon: restButtonProps.prefixIcon || /* @__PURE__ */ React__default.createElement(PlusAddCreateNew16SecondaryIcon, null),
@@ -4640,25 +4810,25 @@ const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
4640
4810
  );
4641
4811
  };
4642
4812
 
4643
- var __defProp$a = Object.defineProperty;
4644
- var __defProps$a = Object.defineProperties;
4645
- var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
4646
- var __getOwnPropSymbols$a = Object.getOwnPropertySymbols;
4647
- var __hasOwnProp$a = Object.prototype.hasOwnProperty;
4648
- var __propIsEnum$a = Object.prototype.propertyIsEnumerable;
4649
- var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4650
- 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) => {
4651
4821
  for (var prop in b || (b = {}))
4652
- if (__hasOwnProp$a.call(b, prop))
4653
- __defNormalProp$a(a, prop, b[prop]);
4654
- if (__getOwnPropSymbols$a)
4655
- for (var prop of __getOwnPropSymbols$a(b)) {
4656
- if (__propIsEnum$a.call(b, prop))
4657
- __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]);
4658
4828
  }
4659
4829
  return a;
4660
4830
  };
4661
- var __spreadProps$a = (a, b) => __defProps$a(a, __getOwnPropDescs$a(b));
4831
+ var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
4662
4832
  const InputPassword = (props) => {
4663
4833
  const [showPassword, setShowPassword] = useState(false);
4664
4834
  useEffect(() => {
@@ -4674,7 +4844,7 @@ const InputPassword = (props) => {
4674
4844
  const inputType = showPassword ? "text" : "password";
4675
4845
  return /* @__PURE__ */ React__default.createElement(
4676
4846
  Input,
4677
- __spreadProps$a(__spreadValues$a({}, props), {
4847
+ __spreadProps$8(__spreadValues$8({}, props), {
4678
4848
  type: inputType,
4679
4849
  suffix: showPassword ? /* @__PURE__ */ React__default.createElement(
4680
4850
  EyeOutlined,
@@ -4694,9 +4864,9 @@ const InputPassword = (props) => {
4694
4864
  };
4695
4865
  const CustomInput = (props) => {
4696
4866
  if (props.type === "password") {
4697
- return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$a({}, props));
4867
+ return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$8({}, props));
4698
4868
  }
4699
- return /* @__PURE__ */ React__default.createElement(Input, __spreadValues$a({}, props));
4869
+ return /* @__PURE__ */ React__default.createElement(Input, __spreadValues$8({}, props));
4700
4870
  };
4701
4871
  const InputColumnHeaderCell = ({ disabled, column, onChange, onBlur, onVisibleChange }) => {
4702
4872
  const _onChange = (e) => {
@@ -4820,25 +4990,25 @@ var ValidateTriggerType = /* @__PURE__ */ ((ValidateTriggerType2) => {
4820
4990
  return ValidateTriggerType2;
4821
4991
  })(ValidateTriggerType || {});
4822
4992
 
4823
- var __defProp$9 = Object.defineProperty;
4824
- var __defProps$9 = Object.defineProperties;
4825
- var __getOwnPropDescs$9 = Object.getOwnPropertyDescriptors;
4826
- var __getOwnPropSymbols$9 = Object.getOwnPropertySymbols;
4827
- var __hasOwnProp$9 = Object.prototype.hasOwnProperty;
4828
- var __propIsEnum$9 = Object.prototype.propertyIsEnumerable;
4829
- var __defNormalProp$9 = (obj, key, value) => key in obj ? __defProp$9(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4830
- 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) => {
4831
5001
  for (var prop in b || (b = {}))
4832
- if (__hasOwnProp$9.call(b, prop))
4833
- __defNormalProp$9(a, prop, b[prop]);
4834
- if (__getOwnPropSymbols$9)
4835
- for (var prop of __getOwnPropSymbols$9(b)) {
4836
- if (__propIsEnum$9.call(b, prop))
4837
- __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]);
4838
5008
  }
4839
5009
  return a;
4840
5010
  };
4841
- var __spreadProps$9 = (a, b) => __defProps$9(a, __getOwnPropDescs$9(b));
5011
+ var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
4842
5012
  const TableFormBodyCell = (props) => {
4843
5013
  const {
4844
5014
  column,
@@ -4870,7 +5040,7 @@ const TableFormBodyCell = (props) => {
4870
5040
  (currentValue) => {
4871
5041
  var _a;
4872
5042
  const value = currentValue || data[rowIndex][column.key];
4873
- const rowData = __spreadProps$9(__spreadValues$9({}, data[rowIndex]), { [column.key]: value });
5043
+ const rowData = __spreadProps$7(__spreadValues$7({}, data[rowIndex]), { [column.key]: value });
4874
5044
  const rowValidateRes = getRowValidateResult(rowData);
4875
5045
  if (rowValidateRes) {
4876
5046
  return;
@@ -4893,7 +5063,7 @@ const TableFormBodyCell = (props) => {
4893
5063
  }, [validateAll, triggerValidate]);
4894
5064
  const _onChange = (value, data2) => {
4895
5065
  const newData = data2.map(
4896
- (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
4897
5067
  );
4898
5068
  onChange == null ? void 0 : onChange(newData, rowIndex, column.key);
4899
5069
  if (validateTriggerType === ValidateTriggerType.Normal && isTouched.current || validateTriggerType === ValidateTriggerType.Aggressive) {
@@ -4971,25 +5141,25 @@ const TableFormBodyCell = (props) => {
4971
5141
  );
4972
5142
  };
4973
5143
 
4974
- var __defProp$8 = Object.defineProperty;
4975
- var __defProps$8 = Object.defineProperties;
4976
- var __getOwnPropDescs$8 = Object.getOwnPropertyDescriptors;
4977
- var __getOwnPropSymbols$8 = Object.getOwnPropertySymbols;
4978
- var __hasOwnProp$8 = Object.prototype.hasOwnProperty;
4979
- var __propIsEnum$8 = Object.prototype.propertyIsEnumerable;
4980
- var __defNormalProp$8 = (obj, key, value) => key in obj ? __defProp$8(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4981
- 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) => {
4982
5152
  for (var prop in b || (b = {}))
4983
- if (__hasOwnProp$8.call(b, prop))
4984
- __defNormalProp$8(a, prop, b[prop]);
4985
- if (__getOwnPropSymbols$8)
4986
- for (var prop of __getOwnPropSymbols$8(b)) {
4987
- if (__propIsEnum$8.call(b, prop))
4988
- __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]);
4989
5159
  }
4990
5160
  return a;
4991
5161
  };
4992
- var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
5162
+ var __spreadProps$6 = (a, b) => __defProps$6(a, __getOwnPropDescs$6(b));
4993
5163
  const TableFormRowDeleteAction = (props) => {
4994
5164
  var _a, _b, _c, _d;
4995
5165
  const { deleteConfig, row, updateData, rowIndex, data } = props;
@@ -5082,7 +5252,7 @@ const TableFormRow = (props) => {
5082
5252
  );
5083
5253
  });
5084
5254
  const DraggableHandle = useMemo(
5085
- () => 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(
5086
5256
  Icon,
5087
5257
  {
5088
5258
  src: HandlePoint816SecondaryIcon,
@@ -5144,7 +5314,7 @@ const TableFormBodyRows = memo((props) => {
5144
5314
  );
5145
5315
  return draggable ? /* @__PURE__ */ React__default.createElement(DragDropContext, { onDragEnd }, /* @__PURE__ */ React__default.createElement(Droppable, { droppableId: "droppable" }, (provided) => /* @__PURE__ */ React__default.createElement(
5146
5316
  "div",
5147
- __spreadValues$8({
5317
+ __spreadValues$6({
5148
5318
  className: "draggable-container",
5149
5319
  ref: provided.innerRef
5150
5320
  }, provided.droppableProps),
@@ -5155,9 +5325,9 @@ const TableFormBodyRows = memo((props) => {
5155
5325
  key: `draggable-id-${i}`,
5156
5326
  index: i
5157
5327
  },
5158
- (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(
5159
5329
  TableFormRow,
5160
- __spreadProps$8(__spreadValues$8({}, props), {
5330
+ __spreadProps$6(__spreadValues$6({}, props), {
5161
5331
  rowIndex: i,
5162
5332
  provided: provided2,
5163
5333
  snapshot
@@ -5165,28 +5335,28 @@ const TableFormBodyRows = memo((props) => {
5165
5335
  ))
5166
5336
  )),
5167
5337
  provided.placeholder
5168
- ))) : /* @__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}` }))));
5169
5339
  });
5170
5340
 
5171
- var __defProp$7 = Object.defineProperty;
5172
- var __defProps$7 = Object.defineProperties;
5173
- var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
5174
- var __getOwnPropSymbols$7 = Object.getOwnPropertySymbols;
5175
- var __hasOwnProp$7 = Object.prototype.hasOwnProperty;
5176
- var __propIsEnum$7 = Object.prototype.propertyIsEnumerable;
5177
- var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5178
- 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) => {
5179
5349
  for (var prop in b || (b = {}))
5180
- if (__hasOwnProp$7.call(b, prop))
5181
- __defNormalProp$7(a, prop, b[prop]);
5182
- if (__getOwnPropSymbols$7)
5183
- for (var prop of __getOwnPropSymbols$7(b)) {
5184
- if (__propIsEnum$7.call(b, prop))
5185
- __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]);
5186
5356
  }
5187
5357
  return a;
5188
5358
  };
5189
- var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
5359
+ var __spreadProps$5 = (a, b) => __defProps$5(a, __getOwnPropDescs$5(b));
5190
5360
  const BatchInputListHeaderCell = (props) => {
5191
5361
  const { column, disabled, data, disableBatchFilling, onBlur, onChange } = props;
5192
5362
  const [errMsg, setErrMsg] = useState();
@@ -5198,7 +5368,7 @@ const BatchInputListHeaderCell = (props) => {
5198
5368
  setErrMsg(err || void 0);
5199
5369
  const shouldAutoIncrease = column.type !== "password" && column.autoIncrease;
5200
5370
  const newData = data.map((cell, rowIndex) => {
5201
- return __spreadProps$7(__spreadValues$7({}, cell), {
5371
+ return __spreadProps$5(__spreadValues$5({}, cell), {
5202
5372
  [column.key]: shouldAutoIncrease && typeof value === "string" ? increaseLastNumber(value, rowIndex) : value
5203
5373
  });
5204
5374
  });
@@ -5215,7 +5385,7 @@ const BatchInputListHeaderCell = (props) => {
5215
5385
  const CellComponent = ColumnHeaderImpls[column.type];
5216
5386
  return /* @__PURE__ */ React__default.createElement(
5217
5387
  CellComponent,
5218
- __spreadProps$7(__spreadValues$7({}, props), {
5388
+ __spreadProps$5(__spreadValues$5({}, props), {
5219
5389
  column,
5220
5390
  onChange: headerOnChange,
5221
5391
  onBlur: _onBlur
@@ -5250,25 +5420,25 @@ const BatchInputListHeaderCell = (props) => {
5250
5420
  );
5251
5421
  };
5252
5422
 
5253
- var __defProp$6 = Object.defineProperty;
5254
- var __defProps$6 = Object.defineProperties;
5255
- var __getOwnPropDescs$6 = Object.getOwnPropertyDescriptors;
5256
- var __getOwnPropSymbols$6 = Object.getOwnPropertySymbols;
5257
- var __hasOwnProp$6 = Object.prototype.hasOwnProperty;
5258
- var __propIsEnum$6 = Object.prototype.propertyIsEnumerable;
5259
- var __defNormalProp$6 = (obj, key, value) => key in obj ? __defProp$6(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5260
- 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) => {
5261
5431
  for (var prop in b || (b = {}))
5262
- if (__hasOwnProp$6.call(b, prop))
5263
- __defNormalProp$6(a, prop, b[prop]);
5264
- if (__getOwnPropSymbols$6)
5265
- for (var prop of __getOwnPropSymbols$6(b)) {
5266
- if (__propIsEnum$6.call(b, prop))
5267
- __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]);
5268
5438
  }
5269
5439
  return a;
5270
5440
  };
5271
- var __spreadProps$6 = (a, b) => __defProps$6(a, __getOwnPropDescs$6(b));
5441
+ var __spreadProps$4 = (a, b) => __defProps$4(a, __getOwnPropDescs$4(b));
5272
5442
  const DEFAULT_ROW_COUNT = 3;
5273
5443
  const TableForm = React__default.forwardRef(
5274
5444
  (props, ref) => {
@@ -5330,7 +5500,7 @@ const TableForm = React__default.forwardRef(
5330
5500
  (key, error) => {
5331
5501
  if (error) {
5332
5502
  const newData = latestData.map((cell) => {
5333
- return __spreadProps$6(__spreadValues$6({}, cell), {
5503
+ return __spreadProps$4(__spreadValues$4({}, cell), {
5334
5504
  [key]: ""
5335
5505
  });
5336
5506
  });
@@ -5425,151 +5595,6 @@ const TableForm = React__default.forwardRef(
5425
5595
  }
5426
5596
  );
5427
5597
 
5428
- const PresetColors$2 = [
5429
- "blue",
5430
- "red",
5431
- "yellow",
5432
- "green",
5433
- "gray",
5434
- "purple"
5435
- ];
5436
-
5437
- const Size$1 = {
5438
- small: "sut42l0",
5439
- medium: "mfsz1jz"
5440
- };
5441
- const TagStyle$1 = "tnd6h4m";
5442
- const IconStyle$1 = "i1qw4clm";
5443
-
5444
- var __defProp$5 = Object.defineProperty;
5445
- var __defProps$5 = Object.defineProperties;
5446
- var __getOwnPropDescs$5 = Object.getOwnPropertyDescriptors;
5447
- var __getOwnPropSymbols$5 = Object.getOwnPropertySymbols;
5448
- var __hasOwnProp$5 = Object.prototype.hasOwnProperty;
5449
- var __propIsEnum$5 = Object.prototype.propertyIsEnumerable;
5450
- var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, {
5451
- enumerable: true,
5452
- configurable: true,
5453
- writable: true,
5454
- value
5455
- }) : obj[key] = value;
5456
- var __spreadValues$5 = (a, b) => {
5457
- for (var prop in b || (b = {})) if (__hasOwnProp$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
5458
- if (__getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(b)) {
5459
- if (__propIsEnum$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
5460
- }
5461
- return a;
5462
- };
5463
- var __spreadProps$5 = (a, b) => __defProps$5(a, __getOwnPropDescs$5(b));
5464
- var __objRest$2 = (source, exclude) => {
5465
- var target = {};
5466
- for (var prop in source) if (__hasOwnProp$5.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
5467
- if (source != null && __getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(source)) {
5468
- if (exclude.indexOf(prop) < 0 && __propIsEnum$5.call(source, prop)) target[prop] = source[prop];
5469
- }
5470
- return target;
5471
- };
5472
- const WrapperStyle = "w1xcixj5";
5473
- const SplitTag = _a => {
5474
- var _b = _a,
5475
- {
5476
- size = "small",
5477
- color = "gray",
5478
- className,
5479
- primaryContent,
5480
- secondaryContent,
5481
- icon
5482
- } = _b,
5483
- props = __objRest$2(_b, ["size", "color", "className", "primaryContent", "secondaryContent", "icon"]);
5484
- return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$5(__spreadValues$5({}, props), {
5485
- className: cs(className, TagStyle$1, Size$1[size], WrapperStyle, Typo.Label.l4_regular, {
5486
- [`ant-tag-${color}`]: PresetColors$2.includes(color)
5487
- }, "outside-tag")
5488
- }), /* @__PURE__ */React__default.createElement(Tag$1, {
5489
- className: cs(Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
5490
- [`ant-tag-${color}`]: PresetColors$2.includes(color)
5491
- }, "inside-tag")
5492
- }, icon && /* @__PURE__ */React__default.createElement("span", {
5493
- className: cs("ui-kit-tag-icon", IconStyle$1)
5494
- }, icon), primaryContent), secondaryContent);
5495
- };
5496
-
5497
- var __defProp$4 = Object.defineProperty;
5498
- var __defProps$4 = Object.defineProperties;
5499
- var __getOwnPropDescs$4 = Object.getOwnPropertyDescriptors;
5500
- var __getOwnPropSymbols$4 = Object.getOwnPropertySymbols;
5501
- var __hasOwnProp$4 = Object.prototype.hasOwnProperty;
5502
- var __propIsEnum$4 = Object.prototype.propertyIsEnumerable;
5503
- var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
5504
- var __spreadValues$4 = (a, b) => {
5505
- for (var prop in b || (b = {}))
5506
- if (__hasOwnProp$4.call(b, prop))
5507
- __defNormalProp$4(a, prop, b[prop]);
5508
- if (__getOwnPropSymbols$4)
5509
- for (var prop of __getOwnPropSymbols$4(b)) {
5510
- if (__propIsEnum$4.call(b, prop))
5511
- __defNormalProp$4(a, prop, b[prop]);
5512
- }
5513
- return a;
5514
- };
5515
- var __spreadProps$4 = (a, b) => __defProps$4(a, __getOwnPropDescs$4(b));
5516
- var __objRest$1 = (source, exclude) => {
5517
- var target = {};
5518
- for (var prop in source)
5519
- if (__hasOwnProp$4.call(source, prop) && exclude.indexOf(prop) < 0)
5520
- target[prop] = source[prop];
5521
- if (source != null && __getOwnPropSymbols$4)
5522
- for (var prop of __getOwnPropSymbols$4(source)) {
5523
- if (exclude.indexOf(prop) < 0 && __propIsEnum$4.call(source, prop))
5524
- target[prop] = source[prop];
5525
- }
5526
- return target;
5527
- };
5528
- const PresetColors$1 = [
5529
- ...PresetColors$2,
5530
- "red-ontint",
5531
- "green-ontint"
5532
- ];
5533
- const AntdColorMap = {
5534
- processing: "blue",
5535
- success: "green",
5536
- error: "red",
5537
- warn: "yellow",
5538
- default: "gray"
5539
- };
5540
- const Tag = (_a) => {
5541
- var _b = _a, {
5542
- size = "small",
5543
- color = "gray",
5544
- className,
5545
- hoverable = false,
5546
- icon,
5547
- children
5548
- } = _b, props = __objRest$1(_b, [
5549
- "size",
5550
- "color",
5551
- "className",
5552
- "hoverable",
5553
- "icon",
5554
- "children"
5555
- ]);
5556
- const computedColor = AntdColorMap[color] || color;
5557
- return /* @__PURE__ */ React__default.createElement(
5558
- Tag$1,
5559
- __spreadProps$4(__spreadValues$4({}, props), {
5560
- className: cs(className, Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
5561
- [`ant-tag-${computedColor}`]: PresetColors$1.includes(computedColor),
5562
- "tag-hover": hoverable
5563
- }),
5564
- closable: false,
5565
- color: computedColor === "gray" ? void 0 : computedColor
5566
- }),
5567
- icon && /* @__PURE__ */ React__default.createElement("span", { className: IconStyle$1 }, icon),
5568
- children
5569
- );
5570
- };
5571
- Tag.SplitTag = SplitTag;
5572
-
5573
5598
  const timeWrapper = "t19ustft";
5574
5599
  const Time = props => {
5575
5600
  const {
@@ -5701,7 +5726,7 @@ const TimeZoneSelect = props => {
5701
5726
  className: OptionWrapperStyle
5702
5727
  }, /* @__PURE__ */React__default.createElement(TimeZoneOption, {
5703
5728
  key: "utc",
5704
- customLabel: t("components.coorddinated_universal_time"),
5729
+ customLabel: t("components.coordinated_universal_time"),
5705
5730
  timeZone: {
5706
5731
  value: "UTC",
5707
5732
  text: "UTC",
@@ -5961,7 +5986,8 @@ function getAntdKit() {
5961
5986
  DetailCard,
5962
5987
  TruncatedTextWithTooltip,
5963
5988
  Counting,
5964
- Breadcrumb
5989
+ Breadcrumb,
5990
+ CircleProgress
5965
5991
  };
5966
5992
  kit.option.isSelectOption = true;
5967
5993
  kit.button.__ANT_BUTTON = true;