@cloudtower/eagle 0.27.25 → 0.27.28

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
@@ -7,12 +7,12 @@ import { useTranslation, Trans, withTranslation } from 'react-i18next';
7
7
  import { Tooltip as Tooltip$1, Menu, Dropdown, Button as Button$1, Checkbox as Checkbox$1, DatePicker, Select as Select$1, InputNumber as InputNumber$1, Input as Input$1, TimePicker as TimePicker$1, Switch as Switch$1, Popover, Calendar as Calendar$2, Alert as Alert$1, Badge as Badge$1, Card as Card$2, Collapse, Form as Form$1, Tag as Tag$1, Steps as Steps$1, Modal as Modal$1, Progress as Progress$1, Radio as Radio$1, Table as Table$2, Space, List, Row, Col, Tree, Divider, Skeleton, Layout, AutoComplete, Timeline, Typography, Upload, Tabs, message, Empty as Empty$1, TreeSelect, Drawer, ConfigProvider } from 'antd';
8
8
  export { Col, Row } from 'antd';
9
9
  import { XmarkRemove24SecondaryIcon, InfoICircleFill16SecondaryIcon, XmarkFailedSeriousWarningFill16RedIcon, NoticeAttention16YellowIcon, InfoICircleFill16BlueIcon, CheckmarkDoneSuccessCircleFill16GreenIcon, ArrowChevronDown16SecondaryIcon, MoreEllipsis316BoldBlueIcon, XmarkRemove16SecondaryIcon, XmarkRemove16BlueIcon, FocusIndicator16BlueIcon, ClockIcon, CloseIcon, ArrowChevronDown16BlueIcon, ArrowChevronDown16BoldBlueIcon, ArrowChevronDownSmall16BlueIcon, ArrowChevronDownSmall16BoldBlueIcon, ArrowChevronUp16BoldBlueIcon, CalendarClockDateTime24GradientGrayIcon, CalendarClockDateTime24GradientBlueIcon, CalendarTimeRecord16Icon, ArrowChevronLeft16BoldTertiaryIcon, ArrowChevronLeft16BoldBlueIcon, ArrowRightGrayIcon, ArrowChevronUp16SecondaryIcon, CheckmarkDoneSuccessCorrect16SecondaryIcon, ArrowChevronLeftSmall16BoldBlueIcon, ArrowChevronDownSmall16SecondaryIcon, Loading8GradientBlueIcon, ArrowChevronUp16BoldSecondaryIcon, PlusAddCreateNew16SecondaryIcon, HandlePoint816SecondaryIcon, HandlePoint816BlueIcon, XmarkRemove16RegularRedIcon, CheckmarkDoneSuccessCorrect16BlueIcon, XmarkRemoveSmall16RegularInheritIcon } from '@cloudtower/icons-react';
10
+ import { styled } from '@linaria/react';
10
11
  import cs from 'classnames';
11
- import { styled } from 'linaria/react';
12
12
  import _, { isEqual, debounce, uniqBy, groupBy, sortBy, toPairs } from 'lodash';
13
13
  import { SVGUniqueID } from 'react-svg-unique-id';
14
14
  import { CSSTransition } from 'react-transition-group';
15
- import { styled as styled$1 } from '@linaria/react';
15
+ import { Segmented, Cascader as Cascader$1 } from 'antd5';
16
16
  import dayjs from 'dayjs';
17
17
  import UTC from 'dayjs/plugin/utc';
18
18
  import customParseFormat from 'dayjs/plugin/customParseFormat';
@@ -23,7 +23,6 @@ import { CloseCircleFilled, LeftOutlined, RightOutlined, FormOutlined, SearchOut
23
23
  import Highlighter from 'react-highlight-words';
24
24
  import { RadialBarChart, PolarAngleAxis, RadialBar } from 'recharts';
25
25
  import { Draggable, DragDropContext, Droppable } from 'react-beautiful-dnd';
26
- import { Cascader as Cascader$1 } from 'antd5';
27
26
  import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled';
28
27
  import CloseCircleFilled$1 from '@ant-design/icons/CloseCircleFilled';
29
28
  import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled';
@@ -220,6 +219,36 @@ const Empty = (props) => {
220
219
  return /* @__PURE__ */ React__default.createElement("span", { className, style }, "-");
221
220
  };
222
221
 
222
+ var __defProp$17 = Object.defineProperty;
223
+ var __getOwnPropSymbols$18 = Object.getOwnPropertySymbols;
224
+ var __hasOwnProp$18 = Object.prototype.hasOwnProperty;
225
+ var __propIsEnum$18 = Object.prototype.propertyIsEnumerable;
226
+ var __defNormalProp$17 = (obj, key, value) => key in obj ? __defProp$17(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
227
+ var __spreadValues$16 = (a, b) => {
228
+ for (var prop in b || (b = {}))
229
+ if (__hasOwnProp$18.call(b, prop))
230
+ __defNormalProp$17(a, prop, b[prop]);
231
+ if (__getOwnPropSymbols$18)
232
+ for (var prop of __getOwnPropSymbols$18(b)) {
233
+ if (__propIsEnum$18.call(b, prop))
234
+ __defNormalProp$17(a, prop, b[prop]);
235
+ }
236
+ return a;
237
+ };
238
+ const Bit = ({
239
+ rawValue,
240
+ decimals,
241
+ unitClassName,
242
+ valueClassName,
243
+ emptyProps
244
+ }) => {
245
+ if (isEmpty(rawValue)) {
246
+ return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$16({}, emptyProps));
247
+ }
248
+ const { value, unit } = formatBits(rawValue, decimals);
249
+ 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}`));
250
+ };
251
+
223
252
  var __defProp$16 = Object.defineProperty;
224
253
  var __getOwnPropSymbols$17 = Object.getOwnPropertySymbols;
225
254
  var __hasOwnProp$17 = Object.prototype.hasOwnProperty;
@@ -236,17 +265,17 @@ var __spreadValues$15 = (a, b) => {
236
265
  }
237
266
  return a;
238
267
  };
239
- const Bit = ({
268
+ const BitPerSeconds = ({
240
269
  rawValue,
241
270
  decimals,
242
- unitClassName,
243
271
  valueClassName,
272
+ unitClassName,
244
273
  emptyProps
245
274
  }) => {
246
275
  if (isEmpty(rawValue)) {
247
276
  return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$15({}, emptyProps));
248
277
  }
249
- const { value, unit } = formatBits(rawValue, decimals);
278
+ const { value, unit } = formatBitPerSecond(rawValue, decimals);
250
279
  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}`));
251
280
  };
252
281
 
@@ -266,7 +295,7 @@ var __spreadValues$14 = (a, b) => {
266
295
  }
267
296
  return a;
268
297
  };
269
- const BitPerSeconds = ({
298
+ const Bps = ({
270
299
  rawValue,
271
300
  decimals,
272
301
  valueClassName,
@@ -276,10 +305,16 @@ const BitPerSeconds = ({
276
305
  if (isEmpty(rawValue)) {
277
306
  return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$14({}, emptyProps));
278
307
  }
279
- const { value, unit } = formatBitPerSecond(rawValue, decimals);
308
+ const { value, unit } = formatBps(rawValue, decimals);
280
309
  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}`));
281
310
  };
282
311
 
312
+ const useParrotTranslation = () => {
313
+ return useTranslation(void 0, {
314
+ i18n: parrotI18n
315
+ });
316
+ };
317
+
283
318
  var __defProp$14 = Object.defineProperty;
284
319
  var __getOwnPropSymbols$15 = Object.getOwnPropertySymbols;
285
320
  var __hasOwnProp$15 = Object.prototype.hasOwnProperty;
@@ -296,26 +331,28 @@ var __spreadValues$13 = (a, b) => {
296
331
  }
297
332
  return a;
298
333
  };
299
- const Bps = ({
334
+ const Byte = ({
300
335
  rawValue,
336
+ noUnitOnZero,
301
337
  decimals,
302
338
  valueClassName,
303
339
  unitClassName,
304
340
  emptyProps
305
341
  }) => {
342
+ const { t } = useParrotTranslation();
306
343
  if (isEmpty(rawValue)) {
307
344
  return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$13({}, emptyProps));
308
345
  }
309
- const { value, unit } = formatBps(rawValue, decimals);
346
+ if (rawValue === -1) {
347
+ return /* @__PURE__ */ React__default.createElement("span", null, t("common.calculation"));
348
+ }
349
+ const { value, unit } = formatBytes(rawValue, decimals);
350
+ if (noUnitOnZero && value === 0) {
351
+ return /* @__PURE__ */ React__default.createElement("span", { className: "value" }, value);
352
+ }
310
353
  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}`));
311
354
  };
312
355
 
313
- const useParrotTranslation = () => {
314
- return useTranslation(void 0, {
315
- i18n: parrotI18n
316
- });
317
- };
318
-
319
356
  var __defProp$13 = Object.defineProperty;
320
357
  var __getOwnPropSymbols$14 = Object.getOwnPropertySymbols;
321
358
  var __hasOwnProp$14 = Object.prototype.hasOwnProperty;
@@ -332,25 +369,17 @@ var __spreadValues$12 = (a, b) => {
332
369
  }
333
370
  return a;
334
371
  };
335
- const Byte = ({
372
+ const Frequency = ({
336
373
  rawValue,
337
- noUnitOnZero,
338
374
  decimals,
339
375
  valueClassName,
340
376
  unitClassName,
341
377
  emptyProps
342
378
  }) => {
343
- const { t } = useParrotTranslation();
344
379
  if (isEmpty(rawValue)) {
345
380
  return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$12({}, emptyProps));
346
381
  }
347
- if (rawValue === -1) {
348
- return /* @__PURE__ */ React__default.createElement("span", null, t("common.calculation"));
349
- }
350
- const { value, unit } = formatBytes(rawValue, decimals);
351
- if (noUnitOnZero && value === 0) {
352
- return /* @__PURE__ */ React__default.createElement("span", { className: "value" }, value);
353
- }
382
+ const { value, unit } = formatFrequency(rawValue, decimals);
354
383
  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}`));
355
384
  };
356
385
 
@@ -370,9 +399,10 @@ var __spreadValues$11 = (a, b) => {
370
399
  }
371
400
  return a;
372
401
  };
373
- const Frequency = ({
402
+ const Percent = ({
374
403
  rawValue,
375
404
  decimals,
405
+ saturated,
376
406
  valueClassName,
377
407
  unitClassName,
378
408
  emptyProps
@@ -380,8 +410,8 @@ const Frequency = ({
380
410
  if (isEmpty(rawValue)) {
381
411
  return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$11({}, emptyProps));
382
412
  }
383
- const { value, unit } = formatFrequency(rawValue, decimals);
384
- 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}`));
413
+ const { value, unit } = formatPercent(rawValue, decimals, saturated);
414
+ 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));
385
415
  };
386
416
 
387
417
  var __defProp$11 = Object.defineProperty;
@@ -400,19 +430,20 @@ var __spreadValues$10 = (a, b) => {
400
430
  }
401
431
  return a;
402
432
  };
403
- const Percent = ({
433
+ const Second = ({
404
434
  rawValue,
405
435
  decimals,
406
- saturated,
407
436
  valueClassName,
408
437
  unitClassName,
438
+ abbreviate,
409
439
  emptyProps
410
440
  }) => {
441
+ const { t } = useParrotTranslation();
411
442
  if (isEmpty(rawValue)) {
412
443
  return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$10({}, emptyProps));
413
444
  }
414
- const { value, unit } = formatPercent(rawValue, decimals, saturated);
415
- 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));
445
+ const { value, unit } = formatSeconds(rawValue, decimals);
446
+ 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}`)));
416
447
  };
417
448
 
418
449
  var __defProp$10 = Object.defineProperty;
@@ -431,20 +462,18 @@ var __spreadValues$$ = (a, b) => {
431
462
  }
432
463
  return a;
433
464
  };
434
- const Second = ({
465
+ const Speed = ({
435
466
  rawValue,
436
467
  decimals,
437
468
  valueClassName,
438
469
  unitClassName,
439
- abbreviate,
440
470
  emptyProps
441
471
  }) => {
442
- const { t } = useParrotTranslation();
443
472
  if (isEmpty(rawValue)) {
444
473
  return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$$({}, emptyProps));
445
474
  }
446
- const { value, unit } = formatSeconds(rawValue, decimals);
447
- 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}`)));
475
+ const { value, unit } = formatSpeed(rawValue, decimals);
476
+ 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}`));
448
477
  };
449
478
 
450
479
  var __defProp$$ = Object.defineProperty;
@@ -463,44 +492,14 @@ var __spreadValues$_ = (a, b) => {
463
492
  }
464
493
  return a;
465
494
  };
466
- const Speed = ({
467
- rawValue,
468
- decimals,
469
- valueClassName,
470
- unitClassName,
471
- emptyProps
472
- }) => {
473
- if (isEmpty(rawValue)) {
474
- return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$_({}, emptyProps));
475
- }
476
- const { value, unit } = formatSpeed(rawValue, decimals);
477
- 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}`));
478
- };
479
-
480
- var __defProp$_ = Object.defineProperty;
481
- var __getOwnPropSymbols$$ = Object.getOwnPropertySymbols;
482
- var __hasOwnProp$$ = Object.prototype.hasOwnProperty;
483
- var __propIsEnum$$ = Object.prototype.propertyIsEnumerable;
484
- var __defNormalProp$_ = (obj, key, value) => key in obj ? __defProp$_(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
485
- var __spreadValues$Z = (a, b) => {
486
- for (var prop in b || (b = {}))
487
- if (__hasOwnProp$$.call(b, prop))
488
- __defNormalProp$_(a, prop, b[prop]);
489
- if (__getOwnPropSymbols$$)
490
- for (var prop of __getOwnPropSymbols$$(b)) {
491
- if (__propIsEnum$$.call(b, prop))
492
- __defNormalProp$_(a, prop, b[prop]);
493
- }
494
- return a;
495
- };
496
495
  var __objRest$D = (source, exclude) => {
497
496
  var target = {};
498
497
  for (var prop in source)
499
- if (__hasOwnProp$$.call(source, prop) && exclude.indexOf(prop) < 0)
498
+ if (__hasOwnProp$10.call(source, prop) && exclude.indexOf(prop) < 0)
500
499
  target[prop] = source[prop];
501
- if (source != null && __getOwnPropSymbols$$)
502
- for (var prop of __getOwnPropSymbols$$(source)) {
503
- if (exclude.indexOf(prop) < 0 && __propIsEnum$$.call(source, prop))
500
+ if (source != null && __getOwnPropSymbols$10)
501
+ for (var prop of __getOwnPropSymbols$10(source)) {
502
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$10.call(source, prop))
504
503
  target[prop] = source[prop];
505
504
  }
506
505
  return target;
@@ -532,10 +531,10 @@ const BaseIcon = React__default.forwardRef(
532
531
  ]);
533
532
  return /* @__PURE__ */ React__default.createElement(
534
533
  "span",
535
- __spreadValues$Z({
534
+ __spreadValues$_({
536
535
  ref,
537
536
  className,
538
- style: _.pickBy(__spreadValues$Z({ cursor }, style))
537
+ style: _.pickBy(__spreadValues$_({ cursor }, style))
539
538
  }, HTMLSpanElementProps),
540
539
  prefixNode,
541
540
  /* @__PURE__ */ React__default.createElement("span", { className: "icon-inner" }, typeof Src === "string" ? /* @__PURE__ */ React__default.createElement("img", { alt, src: Src, width, height }) : /* @__PURE__ */ React__default.createElement(SVGUniqueID, null, Src({ width, height }))),
@@ -545,31 +544,31 @@ const BaseIcon = React__default.forwardRef(
545
544
  }
546
545
  );
547
546
 
548
- var __defProp$Z = Object.defineProperty;
547
+ var __defProp$_ = Object.defineProperty;
549
548
  var __defProps$J = Object.defineProperties;
550
549
  var __getOwnPropDescs$J = Object.getOwnPropertyDescriptors;
551
- var __getOwnPropSymbols$_ = Object.getOwnPropertySymbols;
552
- var __hasOwnProp$_ = Object.prototype.hasOwnProperty;
553
- var __propIsEnum$_ = Object.prototype.propertyIsEnumerable;
554
- var __defNormalProp$Z = (obj, key, value) => key in obj ? __defProp$Z(obj, key, {
550
+ var __getOwnPropSymbols$$ = Object.getOwnPropertySymbols;
551
+ var __hasOwnProp$$ = Object.prototype.hasOwnProperty;
552
+ var __propIsEnum$$ = Object.prototype.propertyIsEnumerable;
553
+ var __defNormalProp$_ = (obj, key, value) => key in obj ? __defProp$_(obj, key, {
555
554
  enumerable: true,
556
555
  configurable: true,
557
556
  writable: true,
558
557
  value
559
558
  }) : obj[key] = value;
560
- var __spreadValues$Y = (a, b) => {
561
- for (var prop in b || (b = {})) if (__hasOwnProp$_.call(b, prop)) __defNormalProp$Z(a, prop, b[prop]);
562
- if (__getOwnPropSymbols$_) for (var prop of __getOwnPropSymbols$_(b)) {
563
- if (__propIsEnum$_.call(b, prop)) __defNormalProp$Z(a, prop, b[prop]);
559
+ var __spreadValues$Z = (a, b) => {
560
+ for (var prop in b || (b = {})) if (__hasOwnProp$$.call(b, prop)) __defNormalProp$_(a, prop, b[prop]);
561
+ if (__getOwnPropSymbols$$) for (var prop of __getOwnPropSymbols$$(b)) {
562
+ if (__propIsEnum$$.call(b, prop)) __defNormalProp$_(a, prop, b[prop]);
564
563
  }
565
564
  return a;
566
565
  };
567
566
  var __spreadProps$J = (a, b) => __defProps$J(a, __getOwnPropDescs$J(b));
568
567
  var __objRest$C = (source, exclude) => {
569
568
  var target = {};
570
- for (var prop in source) if (__hasOwnProp$_.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
571
- if (source != null && __getOwnPropSymbols$_) for (var prop of __getOwnPropSymbols$_(source)) {
572
- if (exclude.indexOf(prop) < 0 && __propIsEnum$_.call(source, prop)) target[prop] = source[prop];
569
+ for (var prop in source) if (__hasOwnProp$$.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
570
+ if (source != null && __getOwnPropSymbols$$) for (var prop of __getOwnPropSymbols$$(source)) {
571
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$$.call(source, prop)) target[prop] = source[prop];
573
572
  }
574
573
  return target;
575
574
  };
@@ -621,14 +620,14 @@ const Icon = React__default.forwardRef((props, ref) => {
621
620
  }
622
621
  return src2;
623
622
  }, [active, hover, suffix]);
624
- return /* @__PURE__ */React__default.createElement(BaseIcon, __spreadProps$J(__spreadValues$Y({
623
+ return /* @__PURE__ */React__default.createElement(BaseIcon, __spreadProps$J(__spreadValues$Z({
625
624
  src: _src,
626
625
  className: cs(IconWrapper, "icon-wrapper", className, isRotate && "is-rotate"),
627
626
  suffixIconSrc,
628
627
  height: iconHeight,
629
628
  width: iconWidth,
630
629
  prefixNode: prefix,
631
- style: _.pickBy(__spreadValues$Y({
630
+ style: _.pickBy(__spreadValues$Z({
632
631
  cursor
633
632
  }, style))
634
633
  }, restProps), {
@@ -653,30 +652,30 @@ const Icon = React__default.forwardRef((props, ref) => {
653
652
  }));
654
653
  });
655
654
 
656
- var __defProp$Y = Object.defineProperty;
657
- var __getOwnPropSymbols$Z = Object.getOwnPropertySymbols;
658
- var __hasOwnProp$Z = Object.prototype.hasOwnProperty;
659
- var __propIsEnum$Z = Object.prototype.propertyIsEnumerable;
660
- var __defNormalProp$Y = (obj, key, value) => key in obj ? __defProp$Y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
661
- var __spreadValues$X = (a, b) => {
655
+ var __defProp$Z = Object.defineProperty;
656
+ var __getOwnPropSymbols$_ = Object.getOwnPropertySymbols;
657
+ var __hasOwnProp$_ = Object.prototype.hasOwnProperty;
658
+ var __propIsEnum$_ = Object.prototype.propertyIsEnumerable;
659
+ var __defNormalProp$Z = (obj, key, value) => key in obj ? __defProp$Z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
660
+ var __spreadValues$Y = (a, b) => {
662
661
  for (var prop in b || (b = {}))
663
- if (__hasOwnProp$Z.call(b, prop))
664
- __defNormalProp$Y(a, prop, b[prop]);
665
- if (__getOwnPropSymbols$Z)
666
- for (var prop of __getOwnPropSymbols$Z(b)) {
667
- if (__propIsEnum$Z.call(b, prop))
668
- __defNormalProp$Y(a, prop, b[prop]);
662
+ if (__hasOwnProp$_.call(b, prop))
663
+ __defNormalProp$Z(a, prop, b[prop]);
664
+ if (__getOwnPropSymbols$_)
665
+ for (var prop of __getOwnPropSymbols$_(b)) {
666
+ if (__propIsEnum$_.call(b, prop))
667
+ __defNormalProp$Z(a, prop, b[prop]);
669
668
  }
670
669
  return a;
671
670
  };
672
671
  var __objRest$B = (source, exclude) => {
673
672
  var target = {};
674
673
  for (var prop in source)
675
- if (__hasOwnProp$Z.call(source, prop) && exclude.indexOf(prop) < 0)
674
+ if (__hasOwnProp$_.call(source, prop) && exclude.indexOf(prop) < 0)
676
675
  target[prop] = source[prop];
677
- if (source != null && __getOwnPropSymbols$Z)
678
- for (var prop of __getOwnPropSymbols$Z(source)) {
679
- if (exclude.indexOf(prop) < 0 && __propIsEnum$Z.call(source, prop))
676
+ if (source != null && __getOwnPropSymbols$_)
677
+ for (var prop of __getOwnPropSymbols$_(source)) {
678
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$_.call(source, prop))
680
679
  target[prop] = source[prop];
681
680
  }
682
681
  return target;
@@ -697,7 +696,7 @@ const DropdownTransition = (props) => {
697
696
  ]);
698
697
  return /* @__PURE__ */ React__default.createElement(
699
698
  CSSTransition,
700
- __spreadValues$X({
699
+ __spreadValues$Y({
701
700
  in: visible,
702
701
  timeout: timeout || 200,
703
702
  mountOnEnter,
@@ -894,7 +893,7 @@ const Typo = {
894
893
  }
895
894
  };
896
895
 
897
- const BreadWrapper = /*#__PURE__*/styled$1('div')({
896
+ const BreadWrapper = /*#__PURE__*/styled('div')({
898
897
  name: "BreadWrapper",
899
898
  class: "berrcjl",
900
899
  propsAsIs: false
@@ -941,7 +940,7 @@ const Breadcrumb = props => {
941
940
  }));
942
941
  };
943
942
 
944
- const CardWrapper$1 = /*#__PURE__*/styled$1('div')({
943
+ const CardWrapper$1 = /*#__PURE__*/styled('div')({
945
944
  name: "CardWrapper",
946
945
  class: "c1uzzomf",
947
946
  propsAsIs: false
@@ -957,21 +956,21 @@ const DetailCard = props => {
957
956
  }, props.children));
958
957
  };
959
958
 
960
- var __defProp$X = Object.defineProperty;
959
+ var __defProp$Y = Object.defineProperty;
961
960
  var __defProps$I = Object.defineProperties;
962
961
  var __getOwnPropDescs$I = Object.getOwnPropertyDescriptors;
963
- var __getOwnPropSymbols$Y = Object.getOwnPropertySymbols;
964
- var __hasOwnProp$Y = Object.prototype.hasOwnProperty;
965
- var __propIsEnum$Y = Object.prototype.propertyIsEnumerable;
966
- var __defNormalProp$X = (obj, key, value) => key in obj ? __defProp$X(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
967
- var __spreadValues$W = (a, b) => {
962
+ var __getOwnPropSymbols$Z = Object.getOwnPropertySymbols;
963
+ var __hasOwnProp$Z = Object.prototype.hasOwnProperty;
964
+ var __propIsEnum$Z = Object.prototype.propertyIsEnumerable;
965
+ var __defNormalProp$Y = (obj, key, value) => key in obj ? __defProp$Y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
966
+ var __spreadValues$X = (a, b) => {
968
967
  for (var prop in b || (b = {}))
969
- if (__hasOwnProp$Y.call(b, prop))
970
- __defNormalProp$X(a, prop, b[prop]);
971
- if (__getOwnPropSymbols$Y)
972
- for (var prop of __getOwnPropSymbols$Y(b)) {
973
- if (__propIsEnum$Y.call(b, prop))
974
- __defNormalProp$X(a, prop, b[prop]);
968
+ if (__hasOwnProp$Z.call(b, prop))
969
+ __defNormalProp$Y(a, prop, b[prop]);
970
+ if (__getOwnPropSymbols$Z)
971
+ for (var prop of __getOwnPropSymbols$Z(b)) {
972
+ if (__propIsEnum$Z.call(b, prop))
973
+ __defNormalProp$Y(a, prop, b[prop]);
975
974
  }
976
975
  return a;
977
976
  };
@@ -979,11 +978,11 @@ var __spreadProps$I = (a, b) => __defProps$I(a, __getOwnPropDescs$I(b));
979
978
  var __objRest$A = (source, exclude) => {
980
979
  var target = {};
981
980
  for (var prop in source)
982
- if (__hasOwnProp$Y.call(source, prop) && exclude.indexOf(prop) < 0)
981
+ if (__hasOwnProp$Z.call(source, prop) && exclude.indexOf(prop) < 0)
983
982
  target[prop] = source[prop];
984
- if (source != null && __getOwnPropSymbols$Y)
985
- for (var prop of __getOwnPropSymbols$Y(source)) {
986
- if (exclude.indexOf(prop) < 0 && __propIsEnum$Y.call(source, prop))
983
+ if (source != null && __getOwnPropSymbols$Z)
984
+ for (var prop of __getOwnPropSymbols$Z(source)) {
985
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$Z.call(source, prop))
987
986
  target[prop] = source[prop];
988
987
  }
989
988
  return target;
@@ -1037,10 +1036,10 @@ const Tooltip = (props) => {
1037
1036
  }, [followMouse, onmousemove, uniqueContainerClass]);
1038
1037
  return /* @__PURE__ */ React__default.createElement(
1039
1038
  Tooltip$1,
1040
- __spreadProps$I(__spreadValues$W({}, restProps), {
1039
+ __spreadProps$I(__spreadValues$X({}, restProps), {
1041
1040
  overlayClassName: followMouse ? cs(overlayClassName, uniquePopupClass) : overlayClassName,
1042
1041
  children: _children,
1043
- overlayStyle: followMouse ? __spreadValues$W({
1042
+ overlayStyle: followMouse ? __spreadValues$X({
1044
1043
  transform: "translate(-50%, -100%)",
1045
1044
  pointerEvents: "none"
1046
1045
  }, overlayStyle) : overlayStyle
@@ -1102,6 +1101,41 @@ const DropdownMenu = ({
1102
1101
  }, /* @__PURE__ */React__default.createElement("span", null, slotsElements.trigger ? slotsElements.trigger({}) : null));
1103
1102
  };
1104
1103
 
1104
+ var __defProp$X = Object.defineProperty;
1105
+ var __getOwnPropSymbols$Y = Object.getOwnPropertySymbols;
1106
+ var __hasOwnProp$Y = Object.prototype.hasOwnProperty;
1107
+ var __propIsEnum$Y = Object.prototype.propertyIsEnumerable;
1108
+ var __defNormalProp$X = (obj, key, value) => key in obj ? __defProp$X(obj, key, {
1109
+ enumerable: true,
1110
+ configurable: true,
1111
+ writable: true,
1112
+ value
1113
+ }) : obj[key] = value;
1114
+ var __spreadValues$W = (a, b) => {
1115
+ for (var prop in b || (b = {})) if (__hasOwnProp$Y.call(b, prop)) __defNormalProp$X(a, prop, b[prop]);
1116
+ if (__getOwnPropSymbols$Y) for (var prop of __getOwnPropSymbols$Y(b)) {
1117
+ if (__propIsEnum$Y.call(b, prop)) __defNormalProp$X(a, prop, b[prop]);
1118
+ }
1119
+ return a;
1120
+ };
1121
+ const Segment = "s11wux3h";
1122
+ const SmallSegment = "s1t2an3z";
1123
+ const MediumSegment = "ma64lna";
1124
+ const ColorSegment = "ckld275";
1125
+ const SegmentControl = props => {
1126
+ const {
1127
+ size = "middle",
1128
+ className
1129
+ } = props;
1130
+ return /* @__PURE__ */React__default.createElement(Segmented, __spreadValues$W({
1131
+ className: cs(className, {
1132
+ [SmallSegment]: size === "small",
1133
+ [MediumSegment]: size === "middle"
1134
+ }, Segment, ColorSegment),
1135
+ size
1136
+ }, props));
1137
+ };
1138
+
1105
1139
  const CircleProgressStyle = "c1bus5hc";
1106
1140
  const CircleProgress = props => {
1107
1141
  const {
@@ -2272,41 +2306,41 @@ const FieldsDateTimeRange = (_a) => {
2272
2306
  ));
2273
2307
  };
2274
2308
 
2275
- const WizardBody = /*#__PURE__*/styled$1('div')({
2309
+ const WizardBody = /*#__PURE__*/styled('div')({
2276
2310
  name: "WizardBody",
2277
2311
  class: "w1vvwdlp",
2278
2312
  propsAsIs: false
2279
2313
  });
2280
- const FullView = /*#__PURE__*/styled$1('div')({
2314
+ const FullView = /*#__PURE__*/styled('div')({
2281
2315
  name: "FullView",
2282
2316
  class: "f1rest1f",
2283
2317
  propsAsIs: false
2284
2318
  });
2285
- const TertiaryText = /*#__PURE__*/styled$1('div')({
2319
+ const TertiaryText = /*#__PURE__*/styled('div')({
2286
2320
  name: "TertiaryText",
2287
2321
  class: "t79k8o2",
2288
2322
  propsAsIs: false
2289
2323
  });
2290
2324
  const InputStyle = "ipd9bk";
2291
2325
  const KitInputStyle = "kypn5o5";
2292
- const ContentWrapper = /*#__PURE__*/styled$1('div')({
2326
+ const ContentWrapper = /*#__PURE__*/styled('div')({
2293
2327
  name: "ContentWrapper",
2294
2328
  class: "c1t6wbwv",
2295
2329
  propsAsIs: false
2296
2330
  });
2297
- const Desc = /*#__PURE__*/styled$1('div')({
2331
+ const Desc = /*#__PURE__*/styled('div')({
2298
2332
  name: "Desc",
2299
2333
  class: "d1k7vv5v",
2300
2334
  propsAsIs: false
2301
2335
  });
2302
2336
  const _exp2$3 = () => Desc;
2303
- const LightDesc = /*#__PURE__*/styled$1(_exp2$3())({
2337
+ const LightDesc = /*#__PURE__*/styled(_exp2$3())({
2304
2338
  name: "LightDesc",
2305
2339
  class: "le7b9r4",
2306
2340
  propsAsIs: true
2307
2341
  });
2308
2342
  const _exp3$2 = () => LightDesc;
2309
- const RadioDesc = /*#__PURE__*/styled$1(_exp3$2())({
2343
+ const RadioDesc = /*#__PURE__*/styled(_exp3$2())({
2310
2344
  name: "RadioDesc",
2311
2345
  class: "r1dnygxx",
2312
2346
  propsAsIs: true
@@ -2561,7 +2595,7 @@ const _exp5$1 = () => props => `"${props.prefix ? props.prefix : ""}"`;
2561
2595
  const _exp6$1 = () => ({
2562
2596
  prefix
2563
2597
  }) => prefix ? "flex" : "none";
2564
- const AntdInputNumberStyled = /*#__PURE__*/styled$1(_exp$5())({
2598
+ const AntdInputNumberStyled = /*#__PURE__*/styled(_exp$5())({
2565
2599
  name: "AntdInputNumberStyled",
2566
2600
  class: "a6dbbkm",
2567
2601
  propsAsIs: true,
@@ -2828,7 +2862,7 @@ const _exp5 = () => props => `"${props.prefix ? props.prefix : ""}"`;
2828
2862
  const _exp6 = () => ({
2829
2863
  prefix
2830
2864
  }) => prefix ? "flex" : "none";
2831
- const AntdIntStyled = /*#__PURE__*/styled$1(_exp$4())({
2865
+ const AntdIntStyled = /*#__PURE__*/styled(_exp$4())({
2832
2866
  name: "AntdIntStyled",
2833
2867
  class: "at4ovwe",
2834
2868
  propsAsIs: true,
@@ -2922,7 +2956,7 @@ const FieldsInteger = (_a) => {
2922
2956
  ));
2923
2957
  };
2924
2958
 
2925
- const InputTagItem = /*#__PURE__*/styled$1('span')({
2959
+ const InputTagItem = /*#__PURE__*/styled('span')({
2926
2960
  name: "InputTagItem",
2927
2961
  class: "iap75of",
2928
2962
  propsAsIs: false
@@ -3302,7 +3336,7 @@ const Switch = _a => {
3302
3336
  checked
3303
3337
  } = _b,
3304
3338
  props = __objRest$i(_b, ["children", "className", "checked"]);
3305
- const Content = /*#__PURE__*/styled$1('span')({
3339
+ const Content = /*#__PURE__*/styled('span')({
3306
3340
  name: "Content",
3307
3341
  class: "c1to9vb9",
3308
3342
  propsAsIs: false
@@ -4075,22 +4109,22 @@ function copyDay(day) {
4075
4109
  return day.clone().set("millisecond", 0);
4076
4110
  }
4077
4111
 
4078
- const CalendarWrapper = /*#__PURE__*/styled$1('div')({
4112
+ const CalendarWrapper = /*#__PURE__*/styled('div')({
4079
4113
  name: "CalendarWrapper",
4080
4114
  class: "c1kchka8",
4081
4115
  propsAsIs: false
4082
4116
  });
4083
- const CalendarYearWrapper = /*#__PURE__*/styled$1('div')({
4117
+ const CalendarYearWrapper = /*#__PURE__*/styled('div')({
4084
4118
  name: "CalendarYearWrapper",
4085
4119
  class: "ctdb951",
4086
4120
  propsAsIs: false
4087
4121
  });
4088
- const CalendarWeekWrapper = /*#__PURE__*/styled$1('ul')({
4122
+ const CalendarWeekWrapper = /*#__PURE__*/styled('ul')({
4089
4123
  name: "CalendarWeekWrapper",
4090
4124
  class: "cvgtyx0",
4091
4125
  propsAsIs: false
4092
4126
  });
4093
- const CalendarMonthWrapper = /*#__PURE__*/styled$1('div')({
4127
+ const CalendarMonthWrapper = /*#__PURE__*/styled('div')({
4094
4128
  name: "CalendarMonthWrapper",
4095
4129
  class: "crprfvb",
4096
4130
  propsAsIs: false
@@ -4101,7 +4135,7 @@ const CalendarStyle = {
4101
4135
  Week: CalendarWeekWrapper,
4102
4136
  Month: CalendarMonthWrapper
4103
4137
  };
4104
- const InputTimeWrapper = /*#__PURE__*/styled$1('div')({
4138
+ const InputTimeWrapper = /*#__PURE__*/styled('div')({
4105
4139
  name: "InputTimeWrapper",
4106
4140
  class: "ipbxcfl",
4107
4141
  propsAsIs: false
@@ -4109,12 +4143,12 @@ const InputTimeWrapper = /*#__PURE__*/styled$1('div')({
4109
4143
  const InputTimeStyle = {
4110
4144
  Wrapper: InputTimeWrapper
4111
4145
  };
4112
- const AbsoluteTimeWrapper = /*#__PURE__*/styled$1('div')({
4146
+ const AbsoluteTimeWrapper = /*#__PURE__*/styled('div')({
4113
4147
  name: "AbsoluteTimeWrapper",
4114
4148
  class: "a120uq8m",
4115
4149
  propsAsIs: false
4116
4150
  });
4117
- const AbsoluteTimeSectionWrapper = /*#__PURE__*/styled$1('div')({
4151
+ const AbsoluteTimeSectionWrapper = /*#__PURE__*/styled('div')({
4118
4152
  name: "AbsoluteTimeSectionWrapper",
4119
4153
  class: "a15s9m0d",
4120
4154
  propsAsIs: false
@@ -4123,7 +4157,7 @@ const AbsoluteTimeStyle = {
4123
4157
  Wrapper: AbsoluteTimeWrapper,
4124
4158
  Time: AbsoluteTimeSectionWrapper
4125
4159
  };
4126
- const RelativeTimeWrapper = /*#__PURE__*/styled$1('div')({
4160
+ const RelativeTimeWrapper = /*#__PURE__*/styled('div')({
4127
4161
  name: "RelativeTimeWrapper",
4128
4162
  class: "r5hl59d",
4129
4163
  propsAsIs: false
@@ -4131,13 +4165,13 @@ const RelativeTimeWrapper = /*#__PURE__*/styled$1('div')({
4131
4165
  const RelativeTimeStyle = {
4132
4166
  Wrapper: RelativeTimeWrapper
4133
4167
  };
4134
- const DateRangePickerWrapper = /*#__PURE__*/styled$1('div')({
4168
+ const DateRangePickerWrapper = /*#__PURE__*/styled('div')({
4135
4169
  name: "DateRangePickerWrapper",
4136
4170
  class: "dhqt3dw",
4137
4171
  propsAsIs: false
4138
4172
  });
4139
4173
  const DateRangePickerPopover = "d956d92";
4140
- const DateRangePickerHistory = /*#__PURE__*/styled$1('div')({
4174
+ const DateRangePickerHistory = /*#__PURE__*/styled('div')({
4141
4175
  name: "DateRangePickerHistory",
4142
4176
  class: "d1tc7lgk",
4143
4177
  propsAsIs: false
@@ -5193,7 +5227,7 @@ const units$1 = {
5193
5227
  Bit,
5194
5228
  Second
5195
5229
  };
5196
- const Wrapper$1 = /*#__PURE__*/styled$1('div')({
5230
+ const Wrapper$1 = /*#__PURE__*/styled('div')({
5197
5231
  name: "Wrapper",
5198
5232
  class: "wg1tsps",
5199
5233
  propsAsIs: false
@@ -5273,29 +5307,29 @@ const units = {
5273
5307
  Bit,
5274
5308
  Second
5275
5309
  };
5276
- const ChartContent = /*#__PURE__*/styled$1('div')({
5310
+ const ChartContent = /*#__PURE__*/styled('div')({
5277
5311
  name: "ChartContent",
5278
5312
  class: "c18bcrac",
5279
5313
  propsAsIs: false
5280
5314
  });
5281
- const ChartTooltipContainer = /*#__PURE__*/styled$1('div')({
5315
+ const ChartTooltipContainer = /*#__PURE__*/styled('div')({
5282
5316
  name: "ChartTooltipContainer",
5283
5317
  class: "cro7kg2",
5284
5318
  propsAsIs: false
5285
5319
  });
5286
- const ChartTooltipRow = /*#__PURE__*/styled$1('div')({
5320
+ const ChartTooltipRow = /*#__PURE__*/styled('div')({
5287
5321
  name: "ChartTooltipRow",
5288
5322
  class: "c14wcxf0",
5289
5323
  propsAsIs: false
5290
5324
  });
5291
5325
  const _exp$3 = () => ChartTooltipRow;
5292
- const ChartTooltipTitle = /*#__PURE__*/styled$1(_exp$3())({
5326
+ const ChartTooltipTitle = /*#__PURE__*/styled(_exp$3())({
5293
5327
  name: "ChartTooltipTitle",
5294
5328
  class: "coy29mj",
5295
5329
  propsAsIs: true
5296
5330
  });
5297
5331
  const _exp2 = () => props => props.color;
5298
- const SpaceStatus = /*#__PURE__*/styled$1('i')({
5332
+ const SpaceStatus = /*#__PURE__*/styled('i')({
5299
5333
  name: "SpaceStatus",
5300
5334
  class: "s11212zy",
5301
5335
  propsAsIs: false,
@@ -5303,7 +5337,7 @@ const SpaceStatus = /*#__PURE__*/styled$1('i')({
5303
5337
  "s11212zy-0": [_exp2()]
5304
5338
  }
5305
5339
  });
5306
- const PrimaryUnit = /*#__PURE__*/styled$1('div')({
5340
+ const PrimaryUnit = /*#__PURE__*/styled('div')({
5307
5341
  name: "PrimaryUnit",
5308
5342
  class: "p1lyky6c",
5309
5343
  propsAsIs: false
@@ -5573,12 +5607,12 @@ const GobackButton = props => {
5573
5607
  }, title)));
5574
5608
  };
5575
5609
 
5576
- const NameItem = /*#__PURE__*/styled$1('div')({
5610
+ const NameItem = /*#__PURE__*/styled('div')({
5577
5611
  name: "NameItem",
5578
5612
  class: "n12mqh7z",
5579
5613
  propsAsIs: false
5580
5614
  });
5581
- const TooltipText = /*#__PURE__*/styled$1('span')({
5615
+ const TooltipText = /*#__PURE__*/styled('span')({
5582
5616
  name: "TooltipText",
5583
5617
  class: "tf5bynu",
5584
5618
  propsAsIs: false
@@ -5630,28 +5664,28 @@ const SortableList = ({ moveItem, children }) => {
5630
5664
  };
5631
5665
  SortableList.Item = Draggable;
5632
5666
 
5633
- const Table$1 = /*#__PURE__*/styled$1('div')({
5667
+ const Table$1 = /*#__PURE__*/styled('div')({
5634
5668
  name: "Table",
5635
5669
  class: "t1sqg15u",
5636
5670
  propsAsIs: false
5637
5671
  });
5638
- const TableHeader = /*#__PURE__*/styled$1('header')({
5672
+ const TableHeader = /*#__PURE__*/styled('header')({
5639
5673
  name: "TableHeader",
5640
5674
  class: "t4zczcp",
5641
5675
  propsAsIs: false
5642
5676
  });
5643
- const TableContent = /*#__PURE__*/styled$1('div')({
5677
+ const TableContent = /*#__PURE__*/styled('div')({
5644
5678
  name: "TableContent",
5645
5679
  class: "t1s7goww",
5646
5680
  propsAsIs: false
5647
5681
  });
5648
- const TableRow = /*#__PURE__*/styled$1('div')({
5682
+ const TableRow = /*#__PURE__*/styled('div')({
5649
5683
  name: "TableRow",
5650
5684
  class: "t93e4cf",
5651
5685
  propsAsIs: false
5652
5686
  });
5653
5687
  const _exp$2 = () => props => props.width;
5654
- const RowLabel = /*#__PURE__*/styled$1('label')({
5688
+ const RowLabel = /*#__PURE__*/styled('label')({
5655
5689
  name: "RowLabel",
5656
5690
  class: "rhz2uv5",
5657
5691
  propsAsIs: false,
@@ -5754,7 +5788,7 @@ var __objRest$h = (source, exclude) => {
5754
5788
  }
5755
5789
  return target;
5756
5790
  };
5757
- const SwitchWrapper = /*#__PURE__*/styled$1('span')({
5791
+ const SwitchWrapper = /*#__PURE__*/styled('span')({
5758
5792
  name: "SwitchWrapper",
5759
5793
  class: "s1iv0tp1",
5760
5794
  propsAsIs: false
@@ -5807,7 +5841,7 @@ var __objRest$g = (source, exclude) => {
5807
5841
  }
5808
5842
  return target;
5809
5843
  };
5810
- const TruncatedTextWrapper = /*#__PURE__*/styled$1('div')({
5844
+ const TruncatedTextWrapper = /*#__PURE__*/styled('div')({
5811
5845
  name: "TruncatedTextWrapper",
5812
5846
  class: "tje3huy",
5813
5847
  propsAsIs: false
@@ -5989,7 +6023,7 @@ var __objRest$d = (source, exclude) => {
5989
6023
  return target;
5990
6024
  };
5991
6025
  const ButtonStyle = "bpq0js6";
5992
- const ButtonGroupContainer = /*#__PURE__*/styled$1('div')({
6026
+ const ButtonGroupContainer = /*#__PURE__*/styled('div')({
5993
6027
  name: "ButtonGroupContainer",
5994
6028
  class: "b15sn34c",
5995
6029
  propsAsIs: false
@@ -6061,13 +6095,13 @@ const ButtonGroup = React__default.forwardRef((props, ref) => {
6061
6095
  }));
6062
6096
  });
6063
6097
 
6064
- const CardBody = /*#__PURE__*/styled$1('div')({
6098
+ const CardBody = /*#__PURE__*/styled('div')({
6065
6099
  name: "CardBody",
6066
6100
  class: "c1k4vanq",
6067
6101
  propsAsIs: false
6068
6102
  });
6069
6103
 
6070
- const CardTitle = /*#__PURE__*/styled$1('div')({
6104
+ const CardTitle = /*#__PURE__*/styled('div')({
6071
6105
  name: "CardTitle",
6072
6106
  class: "c1udgdh2",
6073
6107
  propsAsIs: false
@@ -6114,7 +6148,7 @@ const Wrapper = forwardRef(props => {
6114
6148
  }, otherProps), children);
6115
6149
  });
6116
6150
  const _exp$1 = () => Wrapper;
6117
- const CardWrapper = /*#__PURE__*/styled$1(_exp$1())({
6151
+ const CardWrapper = /*#__PURE__*/styled(_exp$1())({
6118
6152
  name: "CardWrapper",
6119
6153
  class: "cav4gt6",
6120
6154
  propsAsIs: true
@@ -6526,7 +6560,7 @@ const I18nNameTag = props => {
6526
6560
  };
6527
6561
 
6528
6562
  const _exp = () => Input$1.Group;
6529
- const InputGroup = /*#__PURE__*/styled$1(_exp())({
6563
+ const InputGroup = /*#__PURE__*/styled(_exp())({
6530
6564
  name: "InputGroup",
6531
6565
  class: "iiqau4c",
6532
6566
  propsAsIs: true
@@ -7694,7 +7728,7 @@ var __objRest$2 = (source, exclude) => {
7694
7728
  };
7695
7729
  const PresetColors$1 = ["blue", "red", "yellow", "green", "gray"];
7696
7730
  const StatusCapsuleStyle = "s14dk8r1";
7697
- const StatusCode = /*#__PURE__*/styled$1('i')({
7731
+ const StatusCode = /*#__PURE__*/styled('i')({
7698
7732
  name: "StatusCode",
7699
7733
  class: "s1uupoto",
7700
7734
  propsAsIs: false
@@ -7924,22 +7958,22 @@ const Table = props => {
7924
7958
  const TitleStyle = "tc40oxa";
7925
7959
  const SubtitleStyle = "sa410aw";
7926
7960
  const BodyCellTextStyle = "b1lc7yin";
7927
- const BodyCellTextWrapper = /*#__PURE__*/styled$1('div')({
7961
+ const BodyCellTextWrapper = /*#__PURE__*/styled('div')({
7928
7962
  name: "BodyCellTextWrapper",
7929
7963
  class: "b1jhbz3e",
7930
7964
  propsAsIs: false
7931
7965
  });
7932
- const TableFormWrapper = /*#__PURE__*/styled$1('div')({
7966
+ const TableFormWrapper = /*#__PURE__*/styled('div')({
7933
7967
  name: "TableFormWrapper",
7934
7968
  class: "tyua489",
7935
7969
  propsAsIs: false
7936
7970
  });
7937
- const AddRowButtonWrapper = /*#__PURE__*/styled$1('div')({
7971
+ const AddRowButtonWrapper = /*#__PURE__*/styled('div')({
7938
7972
  name: "AddRowButtonWrapper",
7939
7973
  class: "a1ccrot9",
7940
7974
  propsAsIs: false
7941
7975
  });
7942
- const DraggableHandleWrapper = /*#__PURE__*/styled$1('div')({
7976
+ const DraggableHandleWrapper = /*#__PURE__*/styled('div')({
7943
7977
  name: "DraggableHandleWrapper",
7944
7978
  class: "d8c9v9g",
7945
7979
  propsAsIs: false
@@ -9337,7 +9371,8 @@ function getAntdKit() {
9337
9371
  Link,
9338
9372
  DropdownMenu,
9339
9373
  BatchOperation,
9340
- DateRangePicker
9374
+ DateRangePicker,
9375
+ SegmentedControl: SegmentControl
9341
9376
  };
9342
9377
  kit.option.isSelectOption = true;
9343
9378
  kit.button.__ANT_BUTTON = true;