@cloudtower/eagle 0.26.8 → 0.26.9
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/components/Button/index.d.ts +3 -3
- package/dist/components/Card/CardBody.d.ts +5 -0
- package/dist/components/Card/CardTitle.d.ts +5 -0
- package/dist/components/Card/CardWrapper.d.ts +10 -0
- package/dist/components/Card/__test__/Card.spec.d.ts +1 -0
- package/dist/components/Card/index.d.ts +13 -0
- package/dist/components/Stack/index.d.ts +12 -0
- package/dist/components/TableForm/Columns/InputColumn.d.ts +1 -0
- package/dist/components/TableForm/Columns/index.d.ts +6 -3
- package/dist/components/TableForm/__test__/tableForm.test.d.ts +1 -0
- package/dist/components/TableForm/types.d.ts +36 -2
- package/dist/components/Tag/SplitTag.d.ts +3 -0
- package/dist/components/Tag/const.d.ts +1 -0
- package/dist/components/Tag/index.d.ts +6 -0
- package/dist/components/Tag/style.d.ts +4 -0
- package/dist/components.css +1202 -1098
- package/dist/esm/index.js +1298 -1000
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +16 -3
- package/dist/style.css +508 -404
- package/dist/umd/index.js +1298 -1000
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/testSuit.d.ts +2 -0
- package/dist/variables.scss +3 -2
- package/package.json +5 -5
package/dist/esm/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Alert as Alert$1, Badge as Badge$1, Button as Button$1, Tooltip as Tooltip$1, Checkbox as Checkbox$1, DatePicker, Select as Select$1, InputNumber as InputNumber$1, Input as Input$1, TimePicker as TimePicker$1, Form as Form$1, Modal as Modal$1, Steps as Steps$1, Dropdown, Menu, Progress as Progress$1, Radio as Radio$1, Switch as Switch$1, Table as Table$1, Space, List, Tag, Row, Col, Tree, Divider, Skeleton, Layout, AutoComplete, Popover, Timeline, Typography, Cascader, Upload, Calendar, Tabs, message, Empty as Empty$1, Collapse, TreeSelect, Drawer, ConfigProvider } from 'antd';
|
|
1
|
+
import { Alert as Alert$1, Badge as Badge$1, Button as Button$1, Tooltip as Tooltip$1, Checkbox as Checkbox$1, DatePicker, Select as Select$1, InputNumber as InputNumber$1, Input as Input$1, TimePicker as TimePicker$1, Form as Form$1, Modal as Modal$1, Steps as Steps$1, Dropdown, Menu, Progress as Progress$1, Radio as Radio$1, Switch as Switch$1, Table as Table$1, Space, List, Tag as Tag$1, Row, Col, Tree, Divider, Skeleton, Layout, AutoComplete, Popover, Timeline, Typography, Cascader, Upload, Calendar, Tabs, message, Empty as Empty$1, Collapse, 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, useRef, useCallback, useEffect, Fragment, useLayoutEffect, createContext, memo, useImperativeHandle, useContext } from 'react';
|
|
4
|
+
import React__default, { useState, useMemo, useRef, useCallback, useEffect, forwardRef, Fragment, useLayoutEffect, createContext, memo, useImperativeHandle, useContext } from 'react';
|
|
5
5
|
import cs from 'classnames';
|
|
6
6
|
import _, { uniqBy, groupBy, sortBy, toPairs } from 'lodash';
|
|
7
7
|
import { SVGUniqueID } from 'react-svg-unique-id';
|
|
@@ -10,11 +10,11 @@ export * from '@cloudtower/parrot';
|
|
|
10
10
|
import { useTranslation, withTranslation } from 'react-i18next';
|
|
11
11
|
import { cx } from '@linaria/core';
|
|
12
12
|
import { styled } from '@linaria/react';
|
|
13
|
+
import { ArrowRightGrayIcon, HandlePoint816SecondaryIcon, HandlePoint816BlueIcon, XmarkRemove16SecondaryIcon, XmarkRemove16RegularRedIcon, CheckmarkDoneSuccessCorrect16BlueIcon, XmarkRemoveSmall16RegularInheritIcon } from '@cloudtower/icons-react';
|
|
13
14
|
import moment from 'moment';
|
|
14
15
|
import { findDOMNode } from 'react-dom';
|
|
15
16
|
import { isElement } from 'react-is';
|
|
16
17
|
import { CloseCircleFilled, CheckOutlined, SearchOutlined, PlusOutlined, EyeOutlined, EyeInvisibleOutlined } from '@ant-design/icons';
|
|
17
|
-
import AntdFormItem from 'antd/lib/form/FormItem';
|
|
18
18
|
import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled';
|
|
19
19
|
import CloseCircleFilled$1 from '@ant-design/icons/CloseCircleFilled';
|
|
20
20
|
import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled';
|
|
@@ -23,7 +23,6 @@ import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
|
23
23
|
import RCNotification from '@cloudtower/rc-notification';
|
|
24
24
|
import { combineReducers, createStore } from 'redux';
|
|
25
25
|
import { createDispatchHook, createSelectorHook, Provider } from 'react-redux';
|
|
26
|
-
import { XmarkRemove16SecondaryIcon, XmarkRemove16RegularRedIcon, HandlePoint816SecondaryIcon, HandlePoint816BlueIcon, CheckmarkDoneSuccessCorrect16BlueIcon, XmarkRemoveSmall16RegularInheritIcon } from '@cloudtower/icons-react';
|
|
27
26
|
import { DragDropContext, Droppable, Draggable } from 'react-beautiful-dnd';
|
|
28
27
|
import TimeZones from 'timezones.json';
|
|
29
28
|
import dayjs from 'dayjs';
|
|
@@ -253,30 +252,30 @@ function getAlertIcon(type) {
|
|
|
253
252
|
}
|
|
254
253
|
}
|
|
255
254
|
|
|
256
|
-
var __defProp$
|
|
257
|
-
var __getOwnPropSymbols$
|
|
258
|
-
var __hasOwnProp$
|
|
259
|
-
var __propIsEnum$
|
|
260
|
-
var __defNormalProp$
|
|
261
|
-
var __spreadValues$
|
|
255
|
+
var __defProp$S = Object.defineProperty;
|
|
256
|
+
var __getOwnPropSymbols$T = Object.getOwnPropertySymbols;
|
|
257
|
+
var __hasOwnProp$T = Object.prototype.hasOwnProperty;
|
|
258
|
+
var __propIsEnum$T = Object.prototype.propertyIsEnumerable;
|
|
259
|
+
var __defNormalProp$S = (obj, key, value) => key in obj ? __defProp$S(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
260
|
+
var __spreadValues$S = (a, b) => {
|
|
262
261
|
for (var prop in b || (b = {}))
|
|
263
|
-
if (__hasOwnProp$
|
|
264
|
-
__defNormalProp$
|
|
265
|
-
if (__getOwnPropSymbols$
|
|
266
|
-
for (var prop of __getOwnPropSymbols$
|
|
267
|
-
if (__propIsEnum$
|
|
268
|
-
__defNormalProp$
|
|
262
|
+
if (__hasOwnProp$T.call(b, prop))
|
|
263
|
+
__defNormalProp$S(a, prop, b[prop]);
|
|
264
|
+
if (__getOwnPropSymbols$T)
|
|
265
|
+
for (var prop of __getOwnPropSymbols$T(b)) {
|
|
266
|
+
if (__propIsEnum$T.call(b, prop))
|
|
267
|
+
__defNormalProp$S(a, prop, b[prop]);
|
|
269
268
|
}
|
|
270
269
|
return a;
|
|
271
270
|
};
|
|
272
|
-
var __objRest$
|
|
271
|
+
var __objRest$w = (source, exclude) => {
|
|
273
272
|
var target = {};
|
|
274
273
|
for (var prop in source)
|
|
275
|
-
if (__hasOwnProp$
|
|
274
|
+
if (__hasOwnProp$T.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
276
275
|
target[prop] = source[prop];
|
|
277
|
-
if (source != null && __getOwnPropSymbols$
|
|
278
|
-
for (var prop of __getOwnPropSymbols$
|
|
279
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
276
|
+
if (source != null && __getOwnPropSymbols$T)
|
|
277
|
+
for (var prop of __getOwnPropSymbols$T(source)) {
|
|
278
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$T.call(source, prop))
|
|
280
279
|
target[prop] = source[prop];
|
|
281
280
|
}
|
|
282
281
|
return target;
|
|
@@ -294,7 +293,7 @@ const BaseIcon = React__default.forwardRef(
|
|
|
294
293
|
prefixNode,
|
|
295
294
|
suffixIconSrc: SuffixSrc,
|
|
296
295
|
src: Src
|
|
297
|
-
} = _a, HTMLSpanElementProps = __objRest$
|
|
296
|
+
} = _a, HTMLSpanElementProps = __objRest$w(_a, [
|
|
298
297
|
"alt",
|
|
299
298
|
"className",
|
|
300
299
|
"width",
|
|
@@ -308,10 +307,10 @@ const BaseIcon = React__default.forwardRef(
|
|
|
308
307
|
]);
|
|
309
308
|
return /* @__PURE__ */ React__default.createElement(
|
|
310
309
|
"span",
|
|
311
|
-
__spreadValues$
|
|
310
|
+
__spreadValues$S({
|
|
312
311
|
ref,
|
|
313
312
|
className,
|
|
314
|
-
style: _.pickBy(__spreadValues$
|
|
313
|
+
style: _.pickBy(__spreadValues$S({ cursor }, style))
|
|
315
314
|
}, HTMLSpanElementProps),
|
|
316
315
|
prefixNode,
|
|
317
316
|
/* @__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 }))),
|
|
@@ -321,31 +320,31 @@ const BaseIcon = React__default.forwardRef(
|
|
|
321
320
|
}
|
|
322
321
|
);
|
|
323
322
|
|
|
324
|
-
var __defProp$
|
|
325
|
-
var __defProps$
|
|
326
|
-
var __getOwnPropDescs$
|
|
327
|
-
var __getOwnPropSymbols$
|
|
328
|
-
var __hasOwnProp$
|
|
329
|
-
var __propIsEnum$
|
|
330
|
-
var __defNormalProp$
|
|
323
|
+
var __defProp$R = Object.defineProperty;
|
|
324
|
+
var __defProps$B = Object.defineProperties;
|
|
325
|
+
var __getOwnPropDescs$B = Object.getOwnPropertyDescriptors;
|
|
326
|
+
var __getOwnPropSymbols$S = Object.getOwnPropertySymbols;
|
|
327
|
+
var __hasOwnProp$S = Object.prototype.hasOwnProperty;
|
|
328
|
+
var __propIsEnum$S = Object.prototype.propertyIsEnumerable;
|
|
329
|
+
var __defNormalProp$R = (obj, key, value) => key in obj ? __defProp$R(obj, key, {
|
|
331
330
|
enumerable: true,
|
|
332
331
|
configurable: true,
|
|
333
332
|
writable: true,
|
|
334
333
|
value
|
|
335
334
|
}) : obj[key] = value;
|
|
336
|
-
var __spreadValues$
|
|
337
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
338
|
-
if (__getOwnPropSymbols$
|
|
339
|
-
if (__propIsEnum$
|
|
335
|
+
var __spreadValues$R = (a, b) => {
|
|
336
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$S.call(b, prop)) __defNormalProp$R(a, prop, b[prop]);
|
|
337
|
+
if (__getOwnPropSymbols$S) for (var prop of __getOwnPropSymbols$S(b)) {
|
|
338
|
+
if (__propIsEnum$S.call(b, prop)) __defNormalProp$R(a, prop, b[prop]);
|
|
340
339
|
}
|
|
341
340
|
return a;
|
|
342
341
|
};
|
|
343
|
-
var __spreadProps$
|
|
344
|
-
var __objRest$
|
|
342
|
+
var __spreadProps$B = (a, b) => __defProps$B(a, __getOwnPropDescs$B(b));
|
|
343
|
+
var __objRest$v = (source, exclude) => {
|
|
345
344
|
var target = {};
|
|
346
|
-
for (var prop in source) if (__hasOwnProp$
|
|
347
|
-
if (source != null && __getOwnPropSymbols$
|
|
348
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
345
|
+
for (var prop in source) if (__hasOwnProp$S.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
346
|
+
if (source != null && __getOwnPropSymbols$S) for (var prop of __getOwnPropSymbols$S(source)) {
|
|
347
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$S.call(source, prop)) target[prop] = source[prop];
|
|
349
348
|
}
|
|
350
349
|
return target;
|
|
351
350
|
};
|
|
@@ -369,7 +368,7 @@ const Icon = React__default.forwardRef((props, ref) => {
|
|
|
369
368
|
prefix,
|
|
370
369
|
suffix
|
|
371
370
|
} = _a,
|
|
372
|
-
restProps = __objRest$
|
|
371
|
+
restProps = __objRest$v(_a, ["src", "hoverSrc", "active", "activeSrc", "onMouseEnter", "onMouseLeave", "onMouseMove", "className", "iconWidth", "iconHeight", "cursor", "style", "isRotate", "prefix", "suffix"]);
|
|
373
372
|
const [hover, setHover] = useState(false);
|
|
374
373
|
const _src = useMemo(() => {
|
|
375
374
|
if (active && activeSrc) {
|
|
@@ -397,14 +396,14 @@ const Icon = React__default.forwardRef((props, ref) => {
|
|
|
397
396
|
}
|
|
398
397
|
return src2;
|
|
399
398
|
}, [active, hover, suffix]);
|
|
400
|
-
return /* @__PURE__ */React__default.createElement(BaseIcon, __spreadProps$
|
|
399
|
+
return /* @__PURE__ */React__default.createElement(BaseIcon, __spreadProps$B(__spreadValues$R({
|
|
401
400
|
src: _src,
|
|
402
401
|
className: cs(IconWrapper, "icon-wrapper", className, isRotate && "is-rotate"),
|
|
403
402
|
suffixIconSrc,
|
|
404
403
|
height: iconHeight,
|
|
405
404
|
width: iconWidth,
|
|
406
405
|
prefixNode: prefix,
|
|
407
|
-
style: _.pickBy(__spreadValues$
|
|
406
|
+
style: _.pickBy(__spreadValues$R({
|
|
408
407
|
cursor
|
|
409
408
|
}, style))
|
|
410
409
|
}, restProps), {
|
|
@@ -429,67 +428,74 @@ const Icon = React__default.forwardRef((props, ref) => {
|
|
|
429
428
|
}));
|
|
430
429
|
});
|
|
431
430
|
|
|
432
|
-
var __defProp$
|
|
433
|
-
var __defProps$
|
|
434
|
-
var __getOwnPropDescs$
|
|
435
|
-
var __getOwnPropSymbols$
|
|
436
|
-
var __hasOwnProp$
|
|
437
|
-
var __propIsEnum$
|
|
438
|
-
var __defNormalProp$
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
431
|
+
var __defProp$Q = Object.defineProperty;
|
|
432
|
+
var __defProps$A = Object.defineProperties;
|
|
433
|
+
var __getOwnPropDescs$A = Object.getOwnPropertyDescriptors;
|
|
434
|
+
var __getOwnPropSymbols$R = Object.getOwnPropertySymbols;
|
|
435
|
+
var __hasOwnProp$R = Object.prototype.hasOwnProperty;
|
|
436
|
+
var __propIsEnum$R = Object.prototype.propertyIsEnumerable;
|
|
437
|
+
var __defNormalProp$Q = (obj, key, value) => key in obj ? __defProp$Q(obj, key, {
|
|
438
|
+
enumerable: true,
|
|
439
|
+
configurable: true,
|
|
440
|
+
writable: true,
|
|
441
|
+
value
|
|
442
|
+
}) : obj[key] = value;
|
|
443
|
+
var __spreadValues$Q = (a, b) => {
|
|
444
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$R.call(b, prop)) __defNormalProp$Q(a, prop, b[prop]);
|
|
445
|
+
if (__getOwnPropSymbols$R) for (var prop of __getOwnPropSymbols$R(b)) {
|
|
446
|
+
if (__propIsEnum$R.call(b, prop)) __defNormalProp$Q(a, prop, b[prop]);
|
|
447
|
+
}
|
|
448
448
|
return a;
|
|
449
449
|
};
|
|
450
|
-
var __spreadProps$
|
|
451
|
-
var __objRest$
|
|
450
|
+
var __spreadProps$A = (a, b) => __defProps$A(a, __getOwnPropDescs$A(b));
|
|
451
|
+
var __objRest$u = (source, exclude) => {
|
|
452
452
|
var target = {};
|
|
453
|
-
for (var prop in source)
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
for (var prop of __getOwnPropSymbols$O(source)) {
|
|
458
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$O.call(source, prop))
|
|
459
|
-
target[prop] = source[prop];
|
|
460
|
-
}
|
|
453
|
+
for (var prop in source) if (__hasOwnProp$R.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
454
|
+
if (source != null && __getOwnPropSymbols$R) for (var prop of __getOwnPropSymbols$R(source)) {
|
|
455
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$R.call(source, prop)) target[prop] = source[prop];
|
|
456
|
+
}
|
|
461
457
|
return target;
|
|
462
458
|
};
|
|
463
|
-
const
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
"type",
|
|
473
|
-
"icon",
|
|
474
|
-
"showIcon",
|
|
475
|
-
"className",
|
|
476
|
-
"onClose",
|
|
477
|
-
"closeText"
|
|
478
|
-
]);
|
|
479
|
-
const _icon = /* @__PURE__ */ React__default.createElement(Icon, { alt: type, src: getAlertIcon(type) });
|
|
480
|
-
const _type = type === "normal" ? "info" : type;
|
|
481
|
-
return /* @__PURE__ */ React__default.createElement(
|
|
482
|
-
Alert$1,
|
|
483
|
-
__spreadProps$x(__spreadValues$N({}, props), {
|
|
484
|
-
className: cs(type ? `alert-${type}` : "", className),
|
|
485
|
-
type: _type,
|
|
486
|
-
icon: icon || _icon,
|
|
487
|
-
showIcon,
|
|
459
|
+
const MessageWrapperStyle = "m15dvk92";
|
|
460
|
+
const AlertStyle = "aql8iqz";
|
|
461
|
+
const Alert = _a => {
|
|
462
|
+
var _b = _a,
|
|
463
|
+
{
|
|
464
|
+
type,
|
|
465
|
+
icon,
|
|
466
|
+
showIcon = true,
|
|
467
|
+
className,
|
|
488
468
|
onClose,
|
|
489
469
|
closeText,
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
470
|
+
action,
|
|
471
|
+
message
|
|
472
|
+
} = _b,
|
|
473
|
+
props = __objRest$u(_b, ["type", "icon", "showIcon", "className", "onClose", "closeText", "action", "message"]);
|
|
474
|
+
const _icon = /* @__PURE__ */React__default.createElement(Icon, {
|
|
475
|
+
alt: type,
|
|
476
|
+
src: getAlertIcon(type)
|
|
477
|
+
});
|
|
478
|
+
const _type = type === "normal" ? "info" : type;
|
|
479
|
+
return /* @__PURE__ */React__default.createElement(Alert$1, __spreadProps$A(__spreadValues$Q({}, props), {
|
|
480
|
+
className: cs(AlertStyle, type ? `alert-${type}` : "", className, {
|
|
481
|
+
action
|
|
482
|
+
}),
|
|
483
|
+
type: _type,
|
|
484
|
+
message: /* @__PURE__ */React__default.createElement("div", {
|
|
485
|
+
className: MessageWrapperStyle
|
|
486
|
+
}, /* @__PURE__ */React__default.createElement("span", {
|
|
487
|
+
style: {
|
|
488
|
+
flex: 1
|
|
489
|
+
}
|
|
490
|
+
}, message), action ? /* @__PURE__ */React__default.createElement("span", {
|
|
491
|
+
className: cs("action")
|
|
492
|
+
}, action) : null),
|
|
493
|
+
icon: icon || _icon,
|
|
494
|
+
showIcon,
|
|
495
|
+
onClose,
|
|
496
|
+
closeText,
|
|
497
|
+
closable: !!onClose
|
|
498
|
+
}));
|
|
493
499
|
};
|
|
494
500
|
|
|
495
501
|
const useParrotTranslation = () => {
|
|
@@ -508,42 +514,42 @@ const Arch = (props) => {
|
|
|
508
514
|
return /* @__PURE__ */ React__default.createElement("span", null, text);
|
|
509
515
|
};
|
|
510
516
|
|
|
511
|
-
var __defProp$
|
|
512
|
-
var __defProps$
|
|
513
|
-
var __getOwnPropDescs$
|
|
514
|
-
var __getOwnPropSymbols$
|
|
515
|
-
var __hasOwnProp$
|
|
516
|
-
var __propIsEnum$
|
|
517
|
-
var __defNormalProp$
|
|
518
|
-
var __spreadValues$
|
|
517
|
+
var __defProp$P = Object.defineProperty;
|
|
518
|
+
var __defProps$z = Object.defineProperties;
|
|
519
|
+
var __getOwnPropDescs$z = Object.getOwnPropertyDescriptors;
|
|
520
|
+
var __getOwnPropSymbols$Q = Object.getOwnPropertySymbols;
|
|
521
|
+
var __hasOwnProp$Q = Object.prototype.hasOwnProperty;
|
|
522
|
+
var __propIsEnum$Q = Object.prototype.propertyIsEnumerable;
|
|
523
|
+
var __defNormalProp$P = (obj, key, value) => key in obj ? __defProp$P(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
524
|
+
var __spreadValues$P = (a, b) => {
|
|
519
525
|
for (var prop in b || (b = {}))
|
|
520
|
-
if (__hasOwnProp$
|
|
521
|
-
__defNormalProp$
|
|
522
|
-
if (__getOwnPropSymbols$
|
|
523
|
-
for (var prop of __getOwnPropSymbols$
|
|
524
|
-
if (__propIsEnum$
|
|
525
|
-
__defNormalProp$
|
|
526
|
+
if (__hasOwnProp$Q.call(b, prop))
|
|
527
|
+
__defNormalProp$P(a, prop, b[prop]);
|
|
528
|
+
if (__getOwnPropSymbols$Q)
|
|
529
|
+
for (var prop of __getOwnPropSymbols$Q(b)) {
|
|
530
|
+
if (__propIsEnum$Q.call(b, prop))
|
|
531
|
+
__defNormalProp$P(a, prop, b[prop]);
|
|
526
532
|
}
|
|
527
533
|
return a;
|
|
528
534
|
};
|
|
529
|
-
var __spreadProps$
|
|
530
|
-
var __objRest$
|
|
535
|
+
var __spreadProps$z = (a, b) => __defProps$z(a, __getOwnPropDescs$z(b));
|
|
536
|
+
var __objRest$t = (source, exclude) => {
|
|
531
537
|
var target = {};
|
|
532
538
|
for (var prop in source)
|
|
533
|
-
if (__hasOwnProp$
|
|
539
|
+
if (__hasOwnProp$Q.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
534
540
|
target[prop] = source[prop];
|
|
535
|
-
if (source != null && __getOwnPropSymbols$
|
|
536
|
-
for (var prop of __getOwnPropSymbols$
|
|
537
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
541
|
+
if (source != null && __getOwnPropSymbols$Q)
|
|
542
|
+
for (var prop of __getOwnPropSymbols$Q(source)) {
|
|
543
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$Q.call(source, prop))
|
|
538
544
|
target[prop] = source[prop];
|
|
539
545
|
}
|
|
540
546
|
return target;
|
|
541
547
|
};
|
|
542
548
|
const Badge = (_a) => {
|
|
543
|
-
var _b = _a, { type = "error", className } = _b, props = __objRest$
|
|
549
|
+
var _b = _a, { type = "error", className } = _b, props = __objRest$t(_b, ["type", "className"]);
|
|
544
550
|
return /* @__PURE__ */ React__default.createElement(
|
|
545
551
|
Badge$1,
|
|
546
|
-
__spreadProps$
|
|
552
|
+
__spreadProps$z(__spreadValues$P({
|
|
547
553
|
className: cx(`badge-${type}`, className)
|
|
548
554
|
}, props), {
|
|
549
555
|
showZero: false
|
|
@@ -563,19 +569,19 @@ const Empty = (props) => {
|
|
|
563
569
|
return /* @__PURE__ */ React__default.createElement("span", { className, style }, "-");
|
|
564
570
|
};
|
|
565
571
|
|
|
566
|
-
var __defProp$
|
|
567
|
-
var __getOwnPropSymbols$
|
|
568
|
-
var __hasOwnProp$
|
|
569
|
-
var __propIsEnum$
|
|
570
|
-
var __defNormalProp$
|
|
571
|
-
var __spreadValues$
|
|
572
|
+
var __defProp$O = Object.defineProperty;
|
|
573
|
+
var __getOwnPropSymbols$P = Object.getOwnPropertySymbols;
|
|
574
|
+
var __hasOwnProp$P = Object.prototype.hasOwnProperty;
|
|
575
|
+
var __propIsEnum$P = Object.prototype.propertyIsEnumerable;
|
|
576
|
+
var __defNormalProp$O = (obj, key, value) => key in obj ? __defProp$O(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
577
|
+
var __spreadValues$O = (a, b) => {
|
|
572
578
|
for (var prop in b || (b = {}))
|
|
573
|
-
if (__hasOwnProp$
|
|
574
|
-
__defNormalProp$
|
|
575
|
-
if (__getOwnPropSymbols$
|
|
576
|
-
for (var prop of __getOwnPropSymbols$
|
|
577
|
-
if (__propIsEnum$
|
|
578
|
-
__defNormalProp$
|
|
579
|
+
if (__hasOwnProp$P.call(b, prop))
|
|
580
|
+
__defNormalProp$O(a, prop, b[prop]);
|
|
581
|
+
if (__getOwnPropSymbols$P)
|
|
582
|
+
for (var prop of __getOwnPropSymbols$P(b)) {
|
|
583
|
+
if (__propIsEnum$P.call(b, prop))
|
|
584
|
+
__defNormalProp$O(a, prop, b[prop]);
|
|
579
585
|
}
|
|
580
586
|
return a;
|
|
581
587
|
};
|
|
@@ -587,25 +593,25 @@ const Bit = ({
|
|
|
587
593
|
emptyProps
|
|
588
594
|
}) => {
|
|
589
595
|
if (isEmpty(rawValue)) {
|
|
590
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
596
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$O({}, emptyProps));
|
|
591
597
|
}
|
|
592
598
|
const { value, unit } = formatBits(rawValue, decimals);
|
|
593
599
|
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}`));
|
|
594
600
|
};
|
|
595
601
|
|
|
596
|
-
var __defProp$
|
|
597
|
-
var __getOwnPropSymbols$
|
|
598
|
-
var __hasOwnProp$
|
|
599
|
-
var __propIsEnum$
|
|
600
|
-
var __defNormalProp$
|
|
601
|
-
var __spreadValues$
|
|
602
|
+
var __defProp$N = Object.defineProperty;
|
|
603
|
+
var __getOwnPropSymbols$O = Object.getOwnPropertySymbols;
|
|
604
|
+
var __hasOwnProp$O = Object.prototype.hasOwnProperty;
|
|
605
|
+
var __propIsEnum$O = Object.prototype.propertyIsEnumerable;
|
|
606
|
+
var __defNormalProp$N = (obj, key, value) => key in obj ? __defProp$N(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
607
|
+
var __spreadValues$N = (a, b) => {
|
|
602
608
|
for (var prop in b || (b = {}))
|
|
603
|
-
if (__hasOwnProp$
|
|
604
|
-
__defNormalProp$
|
|
605
|
-
if (__getOwnPropSymbols$
|
|
606
|
-
for (var prop of __getOwnPropSymbols$
|
|
607
|
-
if (__propIsEnum$
|
|
608
|
-
__defNormalProp$
|
|
609
|
+
if (__hasOwnProp$O.call(b, prop))
|
|
610
|
+
__defNormalProp$N(a, prop, b[prop]);
|
|
611
|
+
if (__getOwnPropSymbols$O)
|
|
612
|
+
for (var prop of __getOwnPropSymbols$O(b)) {
|
|
613
|
+
if (__propIsEnum$O.call(b, prop))
|
|
614
|
+
__defNormalProp$N(a, prop, b[prop]);
|
|
609
615
|
}
|
|
610
616
|
return a;
|
|
611
617
|
};
|
|
@@ -617,25 +623,25 @@ const BitPerSeconds = ({
|
|
|
617
623
|
emptyProps
|
|
618
624
|
}) => {
|
|
619
625
|
if (isEmpty(rawValue)) {
|
|
620
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
626
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$N({}, emptyProps));
|
|
621
627
|
}
|
|
622
628
|
const { value, unit } = formatBitPerSecond(rawValue, decimals);
|
|
623
629
|
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}`));
|
|
624
630
|
};
|
|
625
631
|
|
|
626
|
-
var __defProp$
|
|
627
|
-
var __getOwnPropSymbols$
|
|
628
|
-
var __hasOwnProp$
|
|
629
|
-
var __propIsEnum$
|
|
630
|
-
var __defNormalProp$
|
|
631
|
-
var __spreadValues$
|
|
632
|
+
var __defProp$M = Object.defineProperty;
|
|
633
|
+
var __getOwnPropSymbols$N = Object.getOwnPropertySymbols;
|
|
634
|
+
var __hasOwnProp$N = Object.prototype.hasOwnProperty;
|
|
635
|
+
var __propIsEnum$N = Object.prototype.propertyIsEnumerable;
|
|
636
|
+
var __defNormalProp$M = (obj, key, value) => key in obj ? __defProp$M(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
637
|
+
var __spreadValues$M = (a, b) => {
|
|
632
638
|
for (var prop in b || (b = {}))
|
|
633
|
-
if (__hasOwnProp$
|
|
634
|
-
__defNormalProp$
|
|
635
|
-
if (__getOwnPropSymbols$
|
|
636
|
-
for (var prop of __getOwnPropSymbols$
|
|
637
|
-
if (__propIsEnum$
|
|
638
|
-
__defNormalProp$
|
|
639
|
+
if (__hasOwnProp$N.call(b, prop))
|
|
640
|
+
__defNormalProp$M(a, prop, b[prop]);
|
|
641
|
+
if (__getOwnPropSymbols$N)
|
|
642
|
+
for (var prop of __getOwnPropSymbols$N(b)) {
|
|
643
|
+
if (__propIsEnum$N.call(b, prop))
|
|
644
|
+
__defNormalProp$M(a, prop, b[prop]);
|
|
639
645
|
}
|
|
640
646
|
return a;
|
|
641
647
|
};
|
|
@@ -647,7 +653,7 @@ const Bps = ({
|
|
|
647
653
|
emptyProps
|
|
648
654
|
}) => {
|
|
649
655
|
if (isEmpty(rawValue)) {
|
|
650
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
656
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$M({}, emptyProps));
|
|
651
657
|
}
|
|
652
658
|
const { value, unit } = formatBps(rawValue, decimals);
|
|
653
659
|
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}`));
|
|
@@ -788,28 +794,28 @@ const HoverableElement = (props) => {
|
|
|
788
794
|
return icon != null ? React__default.cloneElement(icon, { className }) : null;
|
|
789
795
|
};
|
|
790
796
|
|
|
791
|
-
var __defProp$
|
|
792
|
-
var __getOwnPropSymbols$
|
|
793
|
-
var __hasOwnProp$
|
|
794
|
-
var __propIsEnum$
|
|
795
|
-
var __defNormalProp$
|
|
797
|
+
var __defProp$L = Object.defineProperty;
|
|
798
|
+
var __getOwnPropSymbols$M = Object.getOwnPropertySymbols;
|
|
799
|
+
var __hasOwnProp$M = Object.prototype.hasOwnProperty;
|
|
800
|
+
var __propIsEnum$M = Object.prototype.propertyIsEnumerable;
|
|
801
|
+
var __defNormalProp$L = (obj, key, value) => key in obj ? __defProp$L(obj, key, {
|
|
796
802
|
enumerable: true,
|
|
797
803
|
configurable: true,
|
|
798
804
|
writable: true,
|
|
799
805
|
value
|
|
800
806
|
}) : obj[key] = value;
|
|
801
|
-
var __spreadValues$
|
|
802
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
803
|
-
if (__getOwnPropSymbols$
|
|
804
|
-
if (__propIsEnum$
|
|
807
|
+
var __spreadValues$L = (a, b) => {
|
|
808
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$M.call(b, prop)) __defNormalProp$L(a, prop, b[prop]);
|
|
809
|
+
if (__getOwnPropSymbols$M) for (var prop of __getOwnPropSymbols$M(b)) {
|
|
810
|
+
if (__propIsEnum$M.call(b, prop)) __defNormalProp$L(a, prop, b[prop]);
|
|
805
811
|
}
|
|
806
812
|
return a;
|
|
807
813
|
};
|
|
808
|
-
var __objRest$
|
|
814
|
+
var __objRest$s = (source, exclude) => {
|
|
809
815
|
var target = {};
|
|
810
|
-
for (var prop in source) if (__hasOwnProp$
|
|
811
|
-
if (source != null && __getOwnPropSymbols$
|
|
812
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
816
|
+
for (var prop in source) if (__hasOwnProp$M.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
817
|
+
if (source != null && __getOwnPropSymbols$M) for (var prop of __getOwnPropSymbols$M(source)) {
|
|
818
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$M.call(source, prop)) target[prop] = source[prop];
|
|
813
819
|
}
|
|
814
820
|
return target;
|
|
815
821
|
};
|
|
@@ -832,11 +838,11 @@ const Button = React__default.forwardRef((props, ref) => {
|
|
|
832
838
|
onMouseLeave,
|
|
833
839
|
size = "middle"
|
|
834
840
|
} = _a,
|
|
835
|
-
restProps = __objRest$
|
|
841
|
+
restProps = __objRest$s(_a, ["type", "className", "children", "prefixIcon", "hoverPrefixIcon", "suffixIcon", "hoverSuffixIcon", "onMouseEnter", "onMouseLeave", "size"]);
|
|
836
842
|
const [status, setStatus] = useState("normal");
|
|
837
843
|
const hasIcon = prefixIcon || suffixIcon;
|
|
838
844
|
const hasHoverIcon = hoverPrefixIcon || hoverSuffixIcon;
|
|
839
|
-
return /* @__PURE__ */React__default.createElement(Button$1, __spreadValues$
|
|
845
|
+
return /* @__PURE__ */React__default.createElement(Button$1, __spreadValues$L({
|
|
840
846
|
ref,
|
|
841
847
|
className: cs(className, ButtonStyle$1, type === "link" && NoPadding, (prefixIcon || suffixIcon) && "has-icon", size === "large" && Typo.Label.l1_regular_title, size === "middle" && Typo.Label.l2_regular_title, size === "small" && Typo.Label.l3_regular_title, type && `ant-btn-${type}`, !children && children !== 0 && restProps.icon && "ant-btn-icon-only"),
|
|
842
848
|
type: isAntdButtonTypes(type) ? type : void 0,
|
|
@@ -866,33 +872,33 @@ const Button = React__default.forwardRef((props, ref) => {
|
|
|
866
872
|
}));
|
|
867
873
|
});
|
|
868
874
|
|
|
869
|
-
var __defProp$
|
|
870
|
-
var __defProps$
|
|
871
|
-
var __getOwnPropDescs$
|
|
872
|
-
var __getOwnPropSymbols$
|
|
873
|
-
var __hasOwnProp$
|
|
874
|
-
var __propIsEnum$
|
|
875
|
-
var __defNormalProp$
|
|
876
|
-
var __spreadValues$
|
|
875
|
+
var __defProp$K = Object.defineProperty;
|
|
876
|
+
var __defProps$y = Object.defineProperties;
|
|
877
|
+
var __getOwnPropDescs$y = Object.getOwnPropertyDescriptors;
|
|
878
|
+
var __getOwnPropSymbols$L = Object.getOwnPropertySymbols;
|
|
879
|
+
var __hasOwnProp$L = Object.prototype.hasOwnProperty;
|
|
880
|
+
var __propIsEnum$L = Object.prototype.propertyIsEnumerable;
|
|
881
|
+
var __defNormalProp$K = (obj, key, value) => key in obj ? __defProp$K(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
882
|
+
var __spreadValues$K = (a, b) => {
|
|
877
883
|
for (var prop in b || (b = {}))
|
|
878
|
-
if (__hasOwnProp$
|
|
879
|
-
__defNormalProp$
|
|
880
|
-
if (__getOwnPropSymbols$
|
|
881
|
-
for (var prop of __getOwnPropSymbols$
|
|
882
|
-
if (__propIsEnum$
|
|
883
|
-
__defNormalProp$
|
|
884
|
+
if (__hasOwnProp$L.call(b, prop))
|
|
885
|
+
__defNormalProp$K(a, prop, b[prop]);
|
|
886
|
+
if (__getOwnPropSymbols$L)
|
|
887
|
+
for (var prop of __getOwnPropSymbols$L(b)) {
|
|
888
|
+
if (__propIsEnum$L.call(b, prop))
|
|
889
|
+
__defNormalProp$K(a, prop, b[prop]);
|
|
884
890
|
}
|
|
885
891
|
return a;
|
|
886
892
|
};
|
|
887
|
-
var __spreadProps$
|
|
888
|
-
var __objRest$
|
|
893
|
+
var __spreadProps$y = (a, b) => __defProps$y(a, __getOwnPropDescs$y(b));
|
|
894
|
+
var __objRest$r = (source, exclude) => {
|
|
889
895
|
var target = {};
|
|
890
896
|
for (var prop in source)
|
|
891
|
-
if (__hasOwnProp$
|
|
897
|
+
if (__hasOwnProp$L.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
892
898
|
target[prop] = source[prop];
|
|
893
|
-
if (source != null && __getOwnPropSymbols$
|
|
894
|
-
for (var prop of __getOwnPropSymbols$
|
|
895
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
899
|
+
if (source != null && __getOwnPropSymbols$L)
|
|
900
|
+
for (var prop of __getOwnPropSymbols$L(source)) {
|
|
901
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$L.call(source, prop))
|
|
896
902
|
target[prop] = source[prop];
|
|
897
903
|
}
|
|
898
904
|
return target;
|
|
@@ -904,7 +910,7 @@ const Tooltip = (props) => {
|
|
|
904
910
|
overlayClassName,
|
|
905
911
|
overlayStyle,
|
|
906
912
|
children
|
|
907
|
-
} = _a, restProps = __objRest$
|
|
913
|
+
} = _a, restProps = __objRest$r(_a, [
|
|
908
914
|
"followMouse",
|
|
909
915
|
"overlayClassName",
|
|
910
916
|
"overlayStyle",
|
|
@@ -946,10 +952,10 @@ const Tooltip = (props) => {
|
|
|
946
952
|
}, [followMouse, onmousemove, uniqueContainerClass]);
|
|
947
953
|
return /* @__PURE__ */ React__default.createElement(
|
|
948
954
|
Tooltip$1,
|
|
949
|
-
__spreadProps$
|
|
955
|
+
__spreadProps$y(__spreadValues$K({}, restProps), {
|
|
950
956
|
overlayClassName: followMouse ? cs(overlayClassName, uniquePopupClass) : overlayClassName,
|
|
951
957
|
children: _children,
|
|
952
|
-
overlayStyle: followMouse ? __spreadValues$
|
|
958
|
+
overlayStyle: followMouse ? __spreadValues$K({
|
|
953
959
|
transform: "translate(-50%, -100%)",
|
|
954
960
|
pointerEvents: "none"
|
|
955
961
|
}, overlayStyle) : overlayStyle
|
|
@@ -957,28 +963,28 @@ const Tooltip = (props) => {
|
|
|
957
963
|
);
|
|
958
964
|
};
|
|
959
965
|
|
|
960
|
-
var __defProp$
|
|
961
|
-
var __getOwnPropSymbols$
|
|
962
|
-
var __hasOwnProp$
|
|
963
|
-
var __propIsEnum$
|
|
964
|
-
var __defNormalProp$
|
|
966
|
+
var __defProp$J = Object.defineProperty;
|
|
967
|
+
var __getOwnPropSymbols$K = Object.getOwnPropertySymbols;
|
|
968
|
+
var __hasOwnProp$K = Object.prototype.hasOwnProperty;
|
|
969
|
+
var __propIsEnum$K = Object.prototype.propertyIsEnumerable;
|
|
970
|
+
var __defNormalProp$J = (obj, key, value) => key in obj ? __defProp$J(obj, key, {
|
|
965
971
|
enumerable: true,
|
|
966
972
|
configurable: true,
|
|
967
973
|
writable: true,
|
|
968
974
|
value
|
|
969
975
|
}) : obj[key] = value;
|
|
970
|
-
var __spreadValues$
|
|
971
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
972
|
-
if (__getOwnPropSymbols$
|
|
973
|
-
if (__propIsEnum$
|
|
976
|
+
var __spreadValues$J = (a, b) => {
|
|
977
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$K.call(b, prop)) __defNormalProp$J(a, prop, b[prop]);
|
|
978
|
+
if (__getOwnPropSymbols$K) for (var prop of __getOwnPropSymbols$K(b)) {
|
|
979
|
+
if (__propIsEnum$K.call(b, prop)) __defNormalProp$J(a, prop, b[prop]);
|
|
974
980
|
}
|
|
975
981
|
return a;
|
|
976
982
|
};
|
|
977
|
-
var __objRest$
|
|
983
|
+
var __objRest$q = (source, exclude) => {
|
|
978
984
|
var target = {};
|
|
979
|
-
for (var prop in source) if (__hasOwnProp$
|
|
980
|
-
if (source != null && __getOwnPropSymbols$
|
|
981
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
985
|
+
for (var prop in source) if (__hasOwnProp$K.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
986
|
+
if (source != null && __getOwnPropSymbols$K) for (var prop of __getOwnPropSymbols$K(source)) {
|
|
987
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$K.call(source, prop)) target[prop] = source[prop];
|
|
982
988
|
}
|
|
983
989
|
return target;
|
|
984
990
|
};
|
|
@@ -1013,7 +1019,7 @@ const ButtonGroup = React__default.forwardRef((props, ref) => {
|
|
|
1013
1019
|
hideTitle,
|
|
1014
1020
|
title
|
|
1015
1021
|
} = _a,
|
|
1016
|
-
buttonPropArgs = __objRest$
|
|
1022
|
+
buttonPropArgs = __objRest$q(_a, ["key", "icon", "type", "children", "danger", "ghost", "className", "hideTitle", "title"]);
|
|
1017
1023
|
if (hideTitle) {
|
|
1018
1024
|
return /* @__PURE__ */React__default.createElement(Tooltip, {
|
|
1019
1025
|
key: key || index,
|
|
@@ -1022,7 +1028,7 @@ const ButtonGroup = React__default.forwardRef((props, ref) => {
|
|
|
1022
1028
|
style: {
|
|
1023
1029
|
cursor: "not-allowed"
|
|
1024
1030
|
}
|
|
1025
|
-
}, /* @__PURE__ */React__default.createElement(Button, __spreadValues$
|
|
1031
|
+
}, /* @__PURE__ */React__default.createElement(Button, __spreadValues$J({
|
|
1026
1032
|
style: {
|
|
1027
1033
|
pointerEvents: "none"
|
|
1028
1034
|
},
|
|
@@ -1032,7 +1038,7 @@ const ButtonGroup = React__default.forwardRef((props, ref) => {
|
|
|
1032
1038
|
ghost,
|
|
1033
1039
|
className: cx(ButtonStyle, className2),
|
|
1034
1040
|
prefixIcon: icon
|
|
1035
|
-
}, buttonPropArgs))) : /* @__PURE__ */React__default.createElement(Button, __spreadValues$
|
|
1041
|
+
}, buttonPropArgs))) : /* @__PURE__ */React__default.createElement(Button, __spreadValues$J({
|
|
1036
1042
|
type,
|
|
1037
1043
|
size,
|
|
1038
1044
|
danger,
|
|
@@ -1041,7 +1047,7 @@ const ButtonGroup = React__default.forwardRef((props, ref) => {
|
|
|
1041
1047
|
prefixIcon: icon
|
|
1042
1048
|
}, buttonPropArgs)));
|
|
1043
1049
|
}
|
|
1044
|
-
return /* @__PURE__ */React__default.createElement(Button, __spreadValues$
|
|
1050
|
+
return /* @__PURE__ */React__default.createElement(Button, __spreadValues$J({
|
|
1045
1051
|
key: key || index,
|
|
1046
1052
|
type,
|
|
1047
1053
|
size,
|
|
@@ -1055,19 +1061,19 @@ const ButtonGroup = React__default.forwardRef((props, ref) => {
|
|
|
1055
1061
|
}));
|
|
1056
1062
|
});
|
|
1057
1063
|
|
|
1058
|
-
var __defProp$
|
|
1059
|
-
var __getOwnPropSymbols$
|
|
1060
|
-
var __hasOwnProp$
|
|
1061
|
-
var __propIsEnum$
|
|
1062
|
-
var __defNormalProp$
|
|
1063
|
-
var __spreadValues$
|
|
1064
|
+
var __defProp$I = Object.defineProperty;
|
|
1065
|
+
var __getOwnPropSymbols$J = Object.getOwnPropertySymbols;
|
|
1066
|
+
var __hasOwnProp$J = Object.prototype.hasOwnProperty;
|
|
1067
|
+
var __propIsEnum$J = Object.prototype.propertyIsEnumerable;
|
|
1068
|
+
var __defNormalProp$I = (obj, key, value) => key in obj ? __defProp$I(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1069
|
+
var __spreadValues$I = (a, b) => {
|
|
1064
1070
|
for (var prop in b || (b = {}))
|
|
1065
|
-
if (__hasOwnProp$
|
|
1066
|
-
__defNormalProp$
|
|
1067
|
-
if (__getOwnPropSymbols$
|
|
1068
|
-
for (var prop of __getOwnPropSymbols$
|
|
1069
|
-
if (__propIsEnum$
|
|
1070
|
-
__defNormalProp$
|
|
1071
|
+
if (__hasOwnProp$J.call(b, prop))
|
|
1072
|
+
__defNormalProp$I(a, prop, b[prop]);
|
|
1073
|
+
if (__getOwnPropSymbols$J)
|
|
1074
|
+
for (var prop of __getOwnPropSymbols$J(b)) {
|
|
1075
|
+
if (__propIsEnum$J.call(b, prop))
|
|
1076
|
+
__defNormalProp$I(a, prop, b[prop]);
|
|
1071
1077
|
}
|
|
1072
1078
|
return a;
|
|
1073
1079
|
};
|
|
@@ -1081,7 +1087,7 @@ const Byte = ({
|
|
|
1081
1087
|
}) => {
|
|
1082
1088
|
const { t } = useParrotTranslation();
|
|
1083
1089
|
if (isEmpty(rawValue)) {
|
|
1084
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
1090
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$I({}, emptyProps));
|
|
1085
1091
|
}
|
|
1086
1092
|
if (rawValue === -1) {
|
|
1087
1093
|
return /* @__PURE__ */ React__default.createElement("span", null, t("common.calculation"));
|
|
@@ -1093,31 +1099,143 @@ const Byte = ({
|
|
|
1093
1099
|
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}`));
|
|
1094
1100
|
};
|
|
1095
1101
|
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1102
|
+
const CardBody = /*#__PURE__*/styled('div')({
|
|
1103
|
+
name: "CardBody",
|
|
1104
|
+
class: "c1k4vanq",
|
|
1105
|
+
propsAsIs: false
|
|
1106
|
+
});
|
|
1107
|
+
|
|
1108
|
+
const CardTitle = /*#__PURE__*/styled('div')({
|
|
1109
|
+
name: "CardTitle",
|
|
1110
|
+
class: "c1udgdh2",
|
|
1111
|
+
propsAsIs: false
|
|
1112
|
+
});
|
|
1113
|
+
|
|
1114
|
+
const boxShadow = "bab9xum";
|
|
1115
|
+
const Wrapper = forwardRef(props => {
|
|
1116
|
+
const {
|
|
1117
|
+
children,
|
|
1118
|
+
className,
|
|
1119
|
+
shadow
|
|
1120
|
+
} = props;
|
|
1121
|
+
return /* @__PURE__ */React__default.createElement("div", {
|
|
1122
|
+
className: cs({
|
|
1123
|
+
[boxShadow]: shadow
|
|
1124
|
+
}, className)
|
|
1125
|
+
}, children);
|
|
1126
|
+
});
|
|
1127
|
+
const _exp$3 = () => Wrapper;
|
|
1128
|
+
const CardWrapper = /*#__PURE__*/styled(_exp$3())({
|
|
1129
|
+
name: "CardWrapper",
|
|
1130
|
+
class: "cav4gt6",
|
|
1131
|
+
propsAsIs: true
|
|
1132
|
+
});
|
|
1133
|
+
|
|
1134
|
+
var __defProp$H = Object.defineProperty;
|
|
1135
|
+
var __defProps$x = Object.defineProperties;
|
|
1136
|
+
var __getOwnPropDescs$x = Object.getOwnPropertyDescriptors;
|
|
1137
|
+
var __getOwnPropSymbols$I = Object.getOwnPropertySymbols;
|
|
1138
|
+
var __hasOwnProp$I = Object.prototype.hasOwnProperty;
|
|
1139
|
+
var __propIsEnum$I = Object.prototype.propertyIsEnumerable;
|
|
1140
|
+
var __defNormalProp$H = (obj, key, value) => key in obj ? __defProp$H(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1141
|
+
var __spreadValues$H = (a, b) => {
|
|
1142
|
+
for (var prop in b || (b = {}))
|
|
1143
|
+
if (__hasOwnProp$I.call(b, prop))
|
|
1144
|
+
__defNormalProp$H(a, prop, b[prop]);
|
|
1145
|
+
if (__getOwnPropSymbols$I)
|
|
1146
|
+
for (var prop of __getOwnPropSymbols$I(b)) {
|
|
1147
|
+
if (__propIsEnum$I.call(b, prop))
|
|
1148
|
+
__defNormalProp$H(a, prop, b[prop]);
|
|
1149
|
+
}
|
|
1150
|
+
return a;
|
|
1151
|
+
};
|
|
1152
|
+
var __spreadProps$x = (a, b) => __defProps$x(a, __getOwnPropDescs$x(b));
|
|
1153
|
+
var __objRest$p = (source, exclude) => {
|
|
1154
|
+
var target = {};
|
|
1155
|
+
for (var prop in source)
|
|
1156
|
+
if (__hasOwnProp$I.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1157
|
+
target[prop] = source[prop];
|
|
1158
|
+
if (source != null && __getOwnPropSymbols$I)
|
|
1159
|
+
for (var prop of __getOwnPropSymbols$I(source)) {
|
|
1160
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$I.call(source, prop))
|
|
1161
|
+
target[prop] = source[prop];
|
|
1162
|
+
}
|
|
1163
|
+
return target;
|
|
1164
|
+
};
|
|
1165
|
+
const Card = React__default.forwardRef(
|
|
1166
|
+
(props, ref) => {
|
|
1167
|
+
const _a = props, {
|
|
1168
|
+
collapsible = false,
|
|
1169
|
+
title,
|
|
1170
|
+
subInfo,
|
|
1171
|
+
className,
|
|
1172
|
+
defaultOpen = false,
|
|
1173
|
+
shadow = true
|
|
1174
|
+
} = _a, domProps = __objRest$p(_a, [
|
|
1175
|
+
"collapsible",
|
|
1176
|
+
"title",
|
|
1177
|
+
"subInfo",
|
|
1178
|
+
"className",
|
|
1179
|
+
"defaultOpen",
|
|
1180
|
+
"shadow"
|
|
1181
|
+
]);
|
|
1182
|
+
const [open, setOpen] = useState(defaultOpen);
|
|
1183
|
+
return /* @__PURE__ */ React__default.createElement(
|
|
1184
|
+
CardWrapper,
|
|
1185
|
+
__spreadProps$x(__spreadValues$H({
|
|
1186
|
+
ref,
|
|
1187
|
+
className: cs(["card-wrapper", className])
|
|
1188
|
+
}, domProps), {
|
|
1189
|
+
shadow
|
|
1190
|
+
}),
|
|
1191
|
+
title && /* @__PURE__ */ React__default.createElement(
|
|
1192
|
+
CardTitle,
|
|
1193
|
+
{
|
|
1194
|
+
className: cs(["card-title", collapsible ? "has-arrow" : ""])
|
|
1195
|
+
},
|
|
1196
|
+
/* @__PURE__ */ React__default.createElement(
|
|
1197
|
+
"div",
|
|
1198
|
+
{
|
|
1199
|
+
className: cs(["title-wrapper", open ? "is-open" : ""]),
|
|
1200
|
+
onClick: () => {
|
|
1201
|
+
collapsible && setOpen(!open);
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
collapsible && /* @__PURE__ */ React__default.createElement(Icon, { className: "collapse-arrow", src: ArrowRightGrayIcon }),
|
|
1205
|
+
title
|
|
1206
|
+
),
|
|
1207
|
+
subInfo && /* @__PURE__ */ React__default.createElement("div", { className: "sub-info" }, subInfo)
|
|
1208
|
+
),
|
|
1209
|
+
(!collapsible || open) && /* @__PURE__ */ React__default.createElement(CardBody, { className: "card-body" }, props.children)
|
|
1210
|
+
);
|
|
1211
|
+
}
|
|
1212
|
+
);
|
|
1213
|
+
|
|
1214
|
+
var __defProp$G = Object.defineProperty;
|
|
1215
|
+
var __defProps$w = Object.defineProperties;
|
|
1216
|
+
var __getOwnPropDescs$w = Object.getOwnPropertyDescriptors;
|
|
1217
|
+
var __getOwnPropSymbols$H = Object.getOwnPropertySymbols;
|
|
1218
|
+
var __hasOwnProp$H = Object.prototype.hasOwnProperty;
|
|
1219
|
+
var __propIsEnum$H = Object.prototype.propertyIsEnumerable;
|
|
1220
|
+
var __defNormalProp$G = (obj, key, value) => key in obj ? __defProp$G(obj, key, {
|
|
1221
|
+
enumerable: true,
|
|
1222
|
+
configurable: true,
|
|
1223
|
+
writable: true,
|
|
1106
1224
|
value
|
|
1107
1225
|
}) : obj[key] = value;
|
|
1108
|
-
var __spreadValues$
|
|
1109
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1110
|
-
if (__getOwnPropSymbols$
|
|
1111
|
-
if (__propIsEnum$
|
|
1226
|
+
var __spreadValues$G = (a, b) => {
|
|
1227
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$H.call(b, prop)) __defNormalProp$G(a, prop, b[prop]);
|
|
1228
|
+
if (__getOwnPropSymbols$H) for (var prop of __getOwnPropSymbols$H(b)) {
|
|
1229
|
+
if (__propIsEnum$H.call(b, prop)) __defNormalProp$G(a, prop, b[prop]);
|
|
1112
1230
|
}
|
|
1113
1231
|
return a;
|
|
1114
1232
|
};
|
|
1115
|
-
var __spreadProps$
|
|
1116
|
-
var __objRest$
|
|
1233
|
+
var __spreadProps$w = (a, b) => __defProps$w(a, __getOwnPropDescs$w(b));
|
|
1234
|
+
var __objRest$o = (source, exclude) => {
|
|
1117
1235
|
var target = {};
|
|
1118
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1119
|
-
if (source != null && __getOwnPropSymbols$
|
|
1120
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1236
|
+
for (var prop in source) if (__hasOwnProp$H.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1237
|
+
if (source != null && __getOwnPropSymbols$H) for (var prop of __getOwnPropSymbols$H(source)) {
|
|
1238
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$H.call(source, prop)) target[prop] = source[prop];
|
|
1121
1239
|
}
|
|
1122
1240
|
return target;
|
|
1123
1241
|
};
|
|
@@ -1130,8 +1248,8 @@ const Checkbox = _a => {
|
|
|
1130
1248
|
description,
|
|
1131
1249
|
compact
|
|
1132
1250
|
} = _b,
|
|
1133
|
-
props = __objRest$
|
|
1134
|
-
return /* @__PURE__ */React__default.createElement(Checkbox$1, __spreadProps$
|
|
1251
|
+
props = __objRest$o(_b, ["className", "children", "description", "compact"]);
|
|
1252
|
+
return /* @__PURE__ */React__default.createElement(Checkbox$1, __spreadProps$w(__spreadValues$G({}, props), {
|
|
1135
1253
|
"data-test": props["data-test"] || props.value,
|
|
1136
1254
|
className: cs(className, CheckboxStyle, compact && "compact")
|
|
1137
1255
|
}), children ? /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement("div", {
|
|
@@ -1141,39 +1259,39 @@ const Checkbox = _a => {
|
|
|
1141
1259
|
}, description) : null) : null);
|
|
1142
1260
|
};
|
|
1143
1261
|
|
|
1144
|
-
var __defProp$
|
|
1145
|
-
var __getOwnPropSymbols$
|
|
1146
|
-
var __hasOwnProp$
|
|
1147
|
-
var __propIsEnum$
|
|
1148
|
-
var __defNormalProp$
|
|
1149
|
-
var __spreadValues$
|
|
1262
|
+
var __defProp$F = Object.defineProperty;
|
|
1263
|
+
var __getOwnPropSymbols$G = Object.getOwnPropertySymbols;
|
|
1264
|
+
var __hasOwnProp$G = Object.prototype.hasOwnProperty;
|
|
1265
|
+
var __propIsEnum$G = Object.prototype.propertyIsEnumerable;
|
|
1266
|
+
var __defNormalProp$F = (obj, key, value) => key in obj ? __defProp$F(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1267
|
+
var __spreadValues$F = (a, b) => {
|
|
1150
1268
|
for (var prop in b || (b = {}))
|
|
1151
|
-
if (__hasOwnProp$
|
|
1152
|
-
__defNormalProp$
|
|
1153
|
-
if (__getOwnPropSymbols$
|
|
1154
|
-
for (var prop of __getOwnPropSymbols$
|
|
1155
|
-
if (__propIsEnum$
|
|
1156
|
-
__defNormalProp$
|
|
1269
|
+
if (__hasOwnProp$G.call(b, prop))
|
|
1270
|
+
__defNormalProp$F(a, prop, b[prop]);
|
|
1271
|
+
if (__getOwnPropSymbols$G)
|
|
1272
|
+
for (var prop of __getOwnPropSymbols$G(b)) {
|
|
1273
|
+
if (__propIsEnum$G.call(b, prop))
|
|
1274
|
+
__defNormalProp$F(a, prop, b[prop]);
|
|
1157
1275
|
}
|
|
1158
1276
|
return a;
|
|
1159
1277
|
};
|
|
1160
|
-
var __objRest$
|
|
1278
|
+
var __objRest$n = (source, exclude) => {
|
|
1161
1279
|
var target = {};
|
|
1162
1280
|
for (var prop in source)
|
|
1163
|
-
if (__hasOwnProp$
|
|
1281
|
+
if (__hasOwnProp$G.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1164
1282
|
target[prop] = source[prop];
|
|
1165
|
-
if (source != null && __getOwnPropSymbols$
|
|
1166
|
-
for (var prop of __getOwnPropSymbols$
|
|
1167
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1283
|
+
if (source != null && __getOwnPropSymbols$G)
|
|
1284
|
+
for (var prop of __getOwnPropSymbols$G(source)) {
|
|
1285
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$G.call(source, prop))
|
|
1168
1286
|
target[prop] = source[prop];
|
|
1169
1287
|
}
|
|
1170
1288
|
return target;
|
|
1171
1289
|
};
|
|
1172
1290
|
const FieldsBoolean = (_a) => {
|
|
1173
|
-
var _b = _a, { input, children } = _b, props = __objRest$
|
|
1291
|
+
var _b = _a, { input, children } = _b, props = __objRest$n(_b, ["input", "children"]);
|
|
1174
1292
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
1175
1293
|
Checkbox,
|
|
1176
|
-
__spreadValues$
|
|
1294
|
+
__spreadValues$F({
|
|
1177
1295
|
checked: Boolean(input.value),
|
|
1178
1296
|
onChange: (e) => input.onChange(e.target.checked)
|
|
1179
1297
|
}, props),
|
|
@@ -1198,17 +1316,17 @@ const FieldsDateTime = ({ input }) => /* @__PURE__ */ React__default.createEleme
|
|
|
1198
1316
|
}
|
|
1199
1317
|
));
|
|
1200
1318
|
|
|
1201
|
-
var __getOwnPropSymbols$
|
|
1202
|
-
var __hasOwnProp$
|
|
1203
|
-
var __propIsEnum$
|
|
1204
|
-
var __objRest$
|
|
1319
|
+
var __getOwnPropSymbols$F = Object.getOwnPropertySymbols;
|
|
1320
|
+
var __hasOwnProp$F = Object.prototype.hasOwnProperty;
|
|
1321
|
+
var __propIsEnum$F = Object.prototype.propertyIsEnumerable;
|
|
1322
|
+
var __objRest$m = (source, exclude) => {
|
|
1205
1323
|
var target = {};
|
|
1206
1324
|
for (var prop in source)
|
|
1207
|
-
if (__hasOwnProp$
|
|
1325
|
+
if (__hasOwnProp$F.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1208
1326
|
target[prop] = source[prop];
|
|
1209
|
-
if (source != null && __getOwnPropSymbols$
|
|
1210
|
-
for (var prop of __getOwnPropSymbols$
|
|
1211
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1327
|
+
if (source != null && __getOwnPropSymbols$F)
|
|
1328
|
+
for (var prop of __getOwnPropSymbols$F(source)) {
|
|
1329
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$F.call(source, prop))
|
|
1212
1330
|
target[prop] = source[prop];
|
|
1213
1331
|
}
|
|
1214
1332
|
return target;
|
|
@@ -1216,7 +1334,7 @@ var __objRest$k = (source, exclude) => {
|
|
|
1216
1334
|
const FieldsDateTimeRange = (_a) => {
|
|
1217
1335
|
var _b = _a, {
|
|
1218
1336
|
input
|
|
1219
|
-
} = _b, props = __objRest$
|
|
1337
|
+
} = _b, props = __objRest$m(_b, [
|
|
1220
1338
|
"input"
|
|
1221
1339
|
]);
|
|
1222
1340
|
var _a2, _b2;
|
|
@@ -1253,53 +1371,53 @@ const FullView = /*#__PURE__*/styled('div')({
|
|
|
1253
1371
|
const InputStyle = "ipd9bk";
|
|
1254
1372
|
const KitInputStyle = "kypn5o5";
|
|
1255
1373
|
|
|
1256
|
-
var __defProp$
|
|
1257
|
-
var __getOwnPropSymbols$
|
|
1258
|
-
var __hasOwnProp$
|
|
1259
|
-
var __propIsEnum$
|
|
1260
|
-
var __defNormalProp$
|
|
1261
|
-
var __spreadValues$
|
|
1374
|
+
var __defProp$E = Object.defineProperty;
|
|
1375
|
+
var __getOwnPropSymbols$E = Object.getOwnPropertySymbols;
|
|
1376
|
+
var __hasOwnProp$E = Object.prototype.hasOwnProperty;
|
|
1377
|
+
var __propIsEnum$E = Object.prototype.propertyIsEnumerable;
|
|
1378
|
+
var __defNormalProp$E = (obj, key, value) => key in obj ? __defProp$E(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1379
|
+
var __spreadValues$E = (a, b) => {
|
|
1262
1380
|
for (var prop in b || (b = {}))
|
|
1263
|
-
if (__hasOwnProp$
|
|
1264
|
-
__defNormalProp$
|
|
1265
|
-
if (__getOwnPropSymbols$
|
|
1266
|
-
for (var prop of __getOwnPropSymbols$
|
|
1267
|
-
if (__propIsEnum$
|
|
1268
|
-
__defNormalProp$
|
|
1381
|
+
if (__hasOwnProp$E.call(b, prop))
|
|
1382
|
+
__defNormalProp$E(a, prop, b[prop]);
|
|
1383
|
+
if (__getOwnPropSymbols$E)
|
|
1384
|
+
for (var prop of __getOwnPropSymbols$E(b)) {
|
|
1385
|
+
if (__propIsEnum$E.call(b, prop))
|
|
1386
|
+
__defNormalProp$E(a, prop, b[prop]);
|
|
1269
1387
|
}
|
|
1270
1388
|
return a;
|
|
1271
1389
|
};
|
|
1272
1390
|
const Loading = ({ fullView = true }) => {
|
|
1273
1391
|
const Wrapper = fullView ? FullView : Fragment;
|
|
1274
1392
|
const props = fullView ? { className: "loading-full-view" } : {};
|
|
1275
|
-
return /* @__PURE__ */ React__default.createElement(Wrapper, __spreadValues$
|
|
1393
|
+
return /* @__PURE__ */ React__default.createElement(Wrapper, __spreadValues$E({}, props), /* @__PURE__ */ React__default.createElement("div", { className: "loading" }, /* @__PURE__ */ React__default.createElement("div", { className: "loading-indicator__line1" }), /* @__PURE__ */ React__default.createElement("div", { className: "loading-indicator__line2" }), /* @__PURE__ */ React__default.createElement("div", { className: "loading-indicator__line3" })));
|
|
1276
1394
|
};
|
|
1277
1395
|
|
|
1278
|
-
var __defProp$
|
|
1279
|
-
var __defProps$
|
|
1280
|
-
var __getOwnPropDescs$
|
|
1281
|
-
var __getOwnPropSymbols$
|
|
1282
|
-
var __hasOwnProp$
|
|
1283
|
-
var __propIsEnum$
|
|
1284
|
-
var __defNormalProp$
|
|
1396
|
+
var __defProp$D = Object.defineProperty;
|
|
1397
|
+
var __defProps$v = Object.defineProperties;
|
|
1398
|
+
var __getOwnPropDescs$v = Object.getOwnPropertyDescriptors;
|
|
1399
|
+
var __getOwnPropSymbols$D = Object.getOwnPropertySymbols;
|
|
1400
|
+
var __hasOwnProp$D = Object.prototype.hasOwnProperty;
|
|
1401
|
+
var __propIsEnum$D = Object.prototype.propertyIsEnumerable;
|
|
1402
|
+
var __defNormalProp$D = (obj, key, value) => key in obj ? __defProp$D(obj, key, {
|
|
1285
1403
|
enumerable: true,
|
|
1286
1404
|
configurable: true,
|
|
1287
1405
|
writable: true,
|
|
1288
1406
|
value
|
|
1289
1407
|
}) : obj[key] = value;
|
|
1290
|
-
var __spreadValues$
|
|
1291
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1292
|
-
if (__getOwnPropSymbols$
|
|
1293
|
-
if (__propIsEnum$
|
|
1408
|
+
var __spreadValues$D = (a, b) => {
|
|
1409
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$D.call(b, prop)) __defNormalProp$D(a, prop, b[prop]);
|
|
1410
|
+
if (__getOwnPropSymbols$D) for (var prop of __getOwnPropSymbols$D(b)) {
|
|
1411
|
+
if (__propIsEnum$D.call(b, prop)) __defNormalProp$D(a, prop, b[prop]);
|
|
1294
1412
|
}
|
|
1295
1413
|
return a;
|
|
1296
1414
|
};
|
|
1297
|
-
var __spreadProps$
|
|
1298
|
-
var __objRest$
|
|
1415
|
+
var __spreadProps$v = (a, b) => __defProps$v(a, __getOwnPropDescs$v(b));
|
|
1416
|
+
var __objRest$l = (source, exclude) => {
|
|
1299
1417
|
var target = {};
|
|
1300
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1301
|
-
if (source != null && __getOwnPropSymbols$
|
|
1302
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1418
|
+
for (var prop in source) if (__hasOwnProp$D.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1419
|
+
if (source != null && __getOwnPropSymbols$D) for (var prop of __getOwnPropSymbols$D(source)) {
|
|
1420
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$D.call(source, prop)) target[prop] = source[prop];
|
|
1303
1421
|
}
|
|
1304
1422
|
return target;
|
|
1305
1423
|
};
|
|
@@ -1327,7 +1445,7 @@ const Select = _a => {
|
|
|
1327
1445
|
meta,
|
|
1328
1446
|
placeholder
|
|
1329
1447
|
} = _b,
|
|
1330
|
-
restProps = __objRest$
|
|
1448
|
+
restProps = __objRest$l(_b, ["input", "multiple", "className", "scrollBottomBuffer", "onScrollBottom", "onPopupScroll", "onSearch", "showSearch", "filterOption", "loading", "notFoundContent", "children", "error", "selectLimit", "dropdownClassName", "danger", "size", "meta", "placeholder"]);
|
|
1331
1449
|
var _a2;
|
|
1332
1450
|
const limitExceeded = multiple && selectLimit && selectLimit <= (((_a2 = input.value) == null ? void 0 : _a2.length) || 0);
|
|
1333
1451
|
const typo = {
|
|
@@ -1353,7 +1471,7 @@ const Select = _a => {
|
|
|
1353
1471
|
inputDom && (placeholder || item) && inputDom.setAttribute("data-test", String(placeholder || item.textContent));
|
|
1354
1472
|
}
|
|
1355
1473
|
}, [selectRef, placeholder]);
|
|
1356
|
-
return /* @__PURE__ */React__default.createElement(Select$1, __spreadValues$
|
|
1474
|
+
return /* @__PURE__ */React__default.createElement(Select$1, __spreadValues$D(__spreadProps$v(__spreadValues$D({}, input), {
|
|
1357
1475
|
ref: selectRef,
|
|
1358
1476
|
size,
|
|
1359
1477
|
value: multiple ? input.value || [] : input.value || void 0,
|
|
@@ -1393,38 +1511,38 @@ const Select = _a => {
|
|
|
1393
1511
|
loading,
|
|
1394
1512
|
placeholder
|
|
1395
1513
|
}), restProps), React__default.Children.map(children, child => {
|
|
1396
|
-
return isElement(child) ? __spreadProps$
|
|
1397
|
-
props: __spreadProps$
|
|
1514
|
+
return isElement(child) ? __spreadProps$v(__spreadValues$D({}, child), {
|
|
1515
|
+
props: __spreadProps$v(__spreadValues$D({}, child.props), {
|
|
1398
1516
|
"data-test": child.props.value
|
|
1399
1517
|
})
|
|
1400
1518
|
}) : child;
|
|
1401
1519
|
}));
|
|
1402
1520
|
};
|
|
1403
1521
|
|
|
1404
|
-
var __defProp$
|
|
1405
|
-
var __getOwnPropSymbols$
|
|
1406
|
-
var __hasOwnProp$
|
|
1407
|
-
var __propIsEnum$
|
|
1408
|
-
var __defNormalProp$
|
|
1409
|
-
var __spreadValues$
|
|
1522
|
+
var __defProp$C = Object.defineProperty;
|
|
1523
|
+
var __getOwnPropSymbols$C = Object.getOwnPropertySymbols;
|
|
1524
|
+
var __hasOwnProp$C = Object.prototype.hasOwnProperty;
|
|
1525
|
+
var __propIsEnum$C = Object.prototype.propertyIsEnumerable;
|
|
1526
|
+
var __defNormalProp$C = (obj, key, value) => key in obj ? __defProp$C(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1527
|
+
var __spreadValues$C = (a, b) => {
|
|
1410
1528
|
for (var prop in b || (b = {}))
|
|
1411
|
-
if (__hasOwnProp$
|
|
1412
|
-
__defNormalProp$
|
|
1413
|
-
if (__getOwnPropSymbols$
|
|
1414
|
-
for (var prop of __getOwnPropSymbols$
|
|
1415
|
-
if (__propIsEnum$
|
|
1416
|
-
__defNormalProp$
|
|
1529
|
+
if (__hasOwnProp$C.call(b, prop))
|
|
1530
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
1531
|
+
if (__getOwnPropSymbols$C)
|
|
1532
|
+
for (var prop of __getOwnPropSymbols$C(b)) {
|
|
1533
|
+
if (__propIsEnum$C.call(b, prop))
|
|
1534
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
1417
1535
|
}
|
|
1418
1536
|
return a;
|
|
1419
1537
|
};
|
|
1420
|
-
var __objRest$
|
|
1538
|
+
var __objRest$k = (source, exclude) => {
|
|
1421
1539
|
var target = {};
|
|
1422
1540
|
for (var prop in source)
|
|
1423
|
-
if (__hasOwnProp$
|
|
1541
|
+
if (__hasOwnProp$C.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1424
1542
|
target[prop] = source[prop];
|
|
1425
|
-
if (source != null && __getOwnPropSymbols$
|
|
1426
|
-
for (var prop of __getOwnPropSymbols$
|
|
1427
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1543
|
+
if (source != null && __getOwnPropSymbols$C)
|
|
1544
|
+
for (var prop of __getOwnPropSymbols$C(source)) {
|
|
1545
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$C.call(source, prop))
|
|
1428
1546
|
target[prop] = source[prop];
|
|
1429
1547
|
}
|
|
1430
1548
|
return target;
|
|
@@ -1434,12 +1552,12 @@ const FieldsEnum = (_a) => {
|
|
|
1434
1552
|
meta: __,
|
|
1435
1553
|
enumValues,
|
|
1436
1554
|
emptyLabel
|
|
1437
|
-
} = _b, restProps = __objRest$
|
|
1555
|
+
} = _b, restProps = __objRest$k(_b, [
|
|
1438
1556
|
"meta",
|
|
1439
1557
|
"enumValues",
|
|
1440
1558
|
"emptyLabel"
|
|
1441
1559
|
]);
|
|
1442
|
-
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(Select, __spreadValues$
|
|
1560
|
+
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(Select, __spreadValues$C({}, restProps), emptyLabel && /* @__PURE__ */ React__default.createElement(Select$1.Option, { value: "" }, emptyLabel), enumValues.map((v) => {
|
|
1443
1561
|
const item = typeof v === "string" ? { value: v, text: v } : v;
|
|
1444
1562
|
return /* @__PURE__ */ React__default.createElement(
|
|
1445
1563
|
Select$1.Option,
|
|
@@ -1453,31 +1571,31 @@ const FieldsEnum = (_a) => {
|
|
|
1453
1571
|
})));
|
|
1454
1572
|
};
|
|
1455
1573
|
|
|
1456
|
-
var __defProp$
|
|
1457
|
-
var __defProps$
|
|
1458
|
-
var __getOwnPropDescs$
|
|
1459
|
-
var __getOwnPropSymbols$
|
|
1460
|
-
var __hasOwnProp$
|
|
1461
|
-
var __propIsEnum$
|
|
1462
|
-
var __defNormalProp$
|
|
1574
|
+
var __defProp$B = Object.defineProperty;
|
|
1575
|
+
var __defProps$u = Object.defineProperties;
|
|
1576
|
+
var __getOwnPropDescs$u = Object.getOwnPropertyDescriptors;
|
|
1577
|
+
var __getOwnPropSymbols$B = Object.getOwnPropertySymbols;
|
|
1578
|
+
var __hasOwnProp$B = Object.prototype.hasOwnProperty;
|
|
1579
|
+
var __propIsEnum$B = Object.prototype.propertyIsEnumerable;
|
|
1580
|
+
var __defNormalProp$B = (obj, key, value) => key in obj ? __defProp$B(obj, key, {
|
|
1463
1581
|
enumerable: true,
|
|
1464
1582
|
configurable: true,
|
|
1465
1583
|
writable: true,
|
|
1466
1584
|
value
|
|
1467
1585
|
}) : obj[key] = value;
|
|
1468
|
-
var __spreadValues$
|
|
1469
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1470
|
-
if (__getOwnPropSymbols$
|
|
1471
|
-
if (__propIsEnum$
|
|
1586
|
+
var __spreadValues$B = (a, b) => {
|
|
1587
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$B.call(b, prop)) __defNormalProp$B(a, prop, b[prop]);
|
|
1588
|
+
if (__getOwnPropSymbols$B) for (var prop of __getOwnPropSymbols$B(b)) {
|
|
1589
|
+
if (__propIsEnum$B.call(b, prop)) __defNormalProp$B(a, prop, b[prop]);
|
|
1472
1590
|
}
|
|
1473
1591
|
return a;
|
|
1474
1592
|
};
|
|
1475
|
-
var __spreadProps$
|
|
1476
|
-
var __objRest$
|
|
1593
|
+
var __spreadProps$u = (a, b) => __defProps$u(a, __getOwnPropDescs$u(b));
|
|
1594
|
+
var __objRest$j = (source, exclude) => {
|
|
1477
1595
|
var target = {};
|
|
1478
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1479
|
-
if (source != null && __getOwnPropSymbols$
|
|
1480
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1596
|
+
for (var prop in source) if (__hasOwnProp$B.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1597
|
+
if (source != null && __getOwnPropSymbols$B) for (var prop of __getOwnPropSymbols$B(source)) {
|
|
1598
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$B.call(source, prop)) target[prop] = source[prop];
|
|
1481
1599
|
}
|
|
1482
1600
|
return target;
|
|
1483
1601
|
};
|
|
@@ -1513,13 +1631,13 @@ const InputNumber = _a => {
|
|
|
1513
1631
|
prefix,
|
|
1514
1632
|
controls = true
|
|
1515
1633
|
} = _b,
|
|
1516
|
-
props = __objRest$
|
|
1634
|
+
props = __objRest$j(_b, ["className", "error", "size", "suffix", "prefix", "controls"]);
|
|
1517
1635
|
const typo = {
|
|
1518
1636
|
large: Typo.Label.l2_regular,
|
|
1519
1637
|
middle: Typo.Label.l3_regular,
|
|
1520
1638
|
small: Typo.Label.l4_regular
|
|
1521
1639
|
}[size];
|
|
1522
|
-
return /* @__PURE__ */React__default.createElement(AntdInputNumberStyled, __spreadProps$
|
|
1640
|
+
return /* @__PURE__ */React__default.createElement(AntdInputNumberStyled, __spreadProps$u(__spreadValues$B({}, props), {
|
|
1523
1641
|
size,
|
|
1524
1642
|
controls,
|
|
1525
1643
|
"data-test": props.name,
|
|
@@ -1529,33 +1647,33 @@ const InputNumber = _a => {
|
|
|
1529
1647
|
}));
|
|
1530
1648
|
};
|
|
1531
1649
|
|
|
1532
|
-
var __defProp$
|
|
1533
|
-
var __defProps$
|
|
1534
|
-
var __getOwnPropDescs$
|
|
1535
|
-
var __getOwnPropSymbols$
|
|
1536
|
-
var __hasOwnProp$
|
|
1537
|
-
var __propIsEnum$
|
|
1538
|
-
var __defNormalProp$
|
|
1539
|
-
var __spreadValues$
|
|
1650
|
+
var __defProp$A = Object.defineProperty;
|
|
1651
|
+
var __defProps$t = Object.defineProperties;
|
|
1652
|
+
var __getOwnPropDescs$t = Object.getOwnPropertyDescriptors;
|
|
1653
|
+
var __getOwnPropSymbols$A = Object.getOwnPropertySymbols;
|
|
1654
|
+
var __hasOwnProp$A = Object.prototype.hasOwnProperty;
|
|
1655
|
+
var __propIsEnum$A = Object.prototype.propertyIsEnumerable;
|
|
1656
|
+
var __defNormalProp$A = (obj, key, value) => key in obj ? __defProp$A(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1657
|
+
var __spreadValues$A = (a, b) => {
|
|
1540
1658
|
for (var prop in b || (b = {}))
|
|
1541
|
-
if (__hasOwnProp$
|
|
1542
|
-
__defNormalProp$
|
|
1543
|
-
if (__getOwnPropSymbols$
|
|
1544
|
-
for (var prop of __getOwnPropSymbols$
|
|
1545
|
-
if (__propIsEnum$
|
|
1546
|
-
__defNormalProp$
|
|
1659
|
+
if (__hasOwnProp$A.call(b, prop))
|
|
1660
|
+
__defNormalProp$A(a, prop, b[prop]);
|
|
1661
|
+
if (__getOwnPropSymbols$A)
|
|
1662
|
+
for (var prop of __getOwnPropSymbols$A(b)) {
|
|
1663
|
+
if (__propIsEnum$A.call(b, prop))
|
|
1664
|
+
__defNormalProp$A(a, prop, b[prop]);
|
|
1547
1665
|
}
|
|
1548
1666
|
return a;
|
|
1549
1667
|
};
|
|
1550
|
-
var __spreadProps$
|
|
1551
|
-
var __objRest$
|
|
1668
|
+
var __spreadProps$t = (a, b) => __defProps$t(a, __getOwnPropDescs$t(b));
|
|
1669
|
+
var __objRest$i = (source, exclude) => {
|
|
1552
1670
|
var target = {};
|
|
1553
1671
|
for (var prop in source)
|
|
1554
|
-
if (__hasOwnProp$
|
|
1672
|
+
if (__hasOwnProp$A.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1555
1673
|
target[prop] = source[prop];
|
|
1556
|
-
if (source != null && __getOwnPropSymbols$
|
|
1557
|
-
for (var prop of __getOwnPropSymbols$
|
|
1558
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1674
|
+
if (source != null && __getOwnPropSymbols$A)
|
|
1675
|
+
for (var prop of __getOwnPropSymbols$A(source)) {
|
|
1676
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$A.call(source, prop))
|
|
1559
1677
|
target[prop] = source[prop];
|
|
1560
1678
|
}
|
|
1561
1679
|
return target;
|
|
@@ -1566,7 +1684,7 @@ const FieldsFloat = (_a) => {
|
|
|
1566
1684
|
meta,
|
|
1567
1685
|
onBlur,
|
|
1568
1686
|
autoComplete = "off"
|
|
1569
|
-
} = _b, props = __objRest$
|
|
1687
|
+
} = _b, props = __objRest$i(_b, [
|
|
1570
1688
|
"input",
|
|
1571
1689
|
"meta",
|
|
1572
1690
|
"onBlur",
|
|
@@ -1574,7 +1692,7 @@ const FieldsFloat = (_a) => {
|
|
|
1574
1692
|
]);
|
|
1575
1693
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
1576
1694
|
InputNumber,
|
|
1577
|
-
__spreadValues$
|
|
1695
|
+
__spreadValues$A(__spreadProps$t(__spreadValues$A({}, input), {
|
|
1578
1696
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1579
1697
|
autoComplete,
|
|
1580
1698
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
@@ -1582,33 +1700,33 @@ const FieldsFloat = (_a) => {
|
|
|
1582
1700
|
));
|
|
1583
1701
|
};
|
|
1584
1702
|
|
|
1585
|
-
var __defProp$
|
|
1586
|
-
var __defProps$
|
|
1587
|
-
var __getOwnPropDescs$
|
|
1588
|
-
var __getOwnPropSymbols$
|
|
1589
|
-
var __hasOwnProp$
|
|
1590
|
-
var __propIsEnum$
|
|
1591
|
-
var __defNormalProp$
|
|
1592
|
-
var __spreadValues$
|
|
1703
|
+
var __defProp$z = Object.defineProperty;
|
|
1704
|
+
var __defProps$s = Object.defineProperties;
|
|
1705
|
+
var __getOwnPropDescs$s = Object.getOwnPropertyDescriptors;
|
|
1706
|
+
var __getOwnPropSymbols$z = Object.getOwnPropertySymbols;
|
|
1707
|
+
var __hasOwnProp$z = Object.prototype.hasOwnProperty;
|
|
1708
|
+
var __propIsEnum$z = Object.prototype.propertyIsEnumerable;
|
|
1709
|
+
var __defNormalProp$z = (obj, key, value) => key in obj ? __defProp$z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1710
|
+
var __spreadValues$z = (a, b) => {
|
|
1593
1711
|
for (var prop in b || (b = {}))
|
|
1594
|
-
if (__hasOwnProp$
|
|
1595
|
-
__defNormalProp$
|
|
1596
|
-
if (__getOwnPropSymbols$
|
|
1597
|
-
for (var prop of __getOwnPropSymbols$
|
|
1598
|
-
if (__propIsEnum$
|
|
1599
|
-
__defNormalProp$
|
|
1712
|
+
if (__hasOwnProp$z.call(b, prop))
|
|
1713
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
1714
|
+
if (__getOwnPropSymbols$z)
|
|
1715
|
+
for (var prop of __getOwnPropSymbols$z(b)) {
|
|
1716
|
+
if (__propIsEnum$z.call(b, prop))
|
|
1717
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
1600
1718
|
}
|
|
1601
1719
|
return a;
|
|
1602
1720
|
};
|
|
1603
|
-
var __spreadProps$
|
|
1604
|
-
var __objRest$
|
|
1721
|
+
var __spreadProps$s = (a, b) => __defProps$s(a, __getOwnPropDescs$s(b));
|
|
1722
|
+
var __objRest$h = (source, exclude) => {
|
|
1605
1723
|
var target = {};
|
|
1606
1724
|
for (var prop in source)
|
|
1607
|
-
if (__hasOwnProp$
|
|
1725
|
+
if (__hasOwnProp$z.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1608
1726
|
target[prop] = source[prop];
|
|
1609
|
-
if (source != null && __getOwnPropSymbols$
|
|
1610
|
-
for (var prop of __getOwnPropSymbols$
|
|
1611
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1727
|
+
if (source != null && __getOwnPropSymbols$z)
|
|
1728
|
+
for (var prop of __getOwnPropSymbols$z(source)) {
|
|
1729
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$z.call(source, prop))
|
|
1612
1730
|
target[prop] = source[prop];
|
|
1613
1731
|
}
|
|
1614
1732
|
return target;
|
|
@@ -1618,7 +1736,7 @@ const Input = (_a) => {
|
|
|
1618
1736
|
className,
|
|
1619
1737
|
error,
|
|
1620
1738
|
size = "middle"
|
|
1621
|
-
} = _b, props = __objRest$
|
|
1739
|
+
} = _b, props = __objRest$h(_b, [
|
|
1622
1740
|
"className",
|
|
1623
1741
|
"error",
|
|
1624
1742
|
"size"
|
|
@@ -1630,7 +1748,7 @@ const Input = (_a) => {
|
|
|
1630
1748
|
}[size];
|
|
1631
1749
|
return /* @__PURE__ */ React__default.createElement(
|
|
1632
1750
|
Input$1,
|
|
1633
|
-
__spreadProps$
|
|
1751
|
+
__spreadProps$s(__spreadValues$z({}, props), {
|
|
1634
1752
|
size,
|
|
1635
1753
|
"data-test": props.name,
|
|
1636
1754
|
className: cs(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -1638,33 +1756,33 @@ const Input = (_a) => {
|
|
|
1638
1756
|
);
|
|
1639
1757
|
};
|
|
1640
1758
|
|
|
1641
|
-
var __defProp$
|
|
1642
|
-
var __defProps$
|
|
1643
|
-
var __getOwnPropDescs$
|
|
1644
|
-
var __getOwnPropSymbols$
|
|
1645
|
-
var __hasOwnProp$
|
|
1646
|
-
var __propIsEnum$
|
|
1647
|
-
var __defNormalProp$
|
|
1648
|
-
var __spreadValues$
|
|
1759
|
+
var __defProp$y = Object.defineProperty;
|
|
1760
|
+
var __defProps$r = Object.defineProperties;
|
|
1761
|
+
var __getOwnPropDescs$r = Object.getOwnPropertyDescriptors;
|
|
1762
|
+
var __getOwnPropSymbols$y = Object.getOwnPropertySymbols;
|
|
1763
|
+
var __hasOwnProp$y = Object.prototype.hasOwnProperty;
|
|
1764
|
+
var __propIsEnum$y = Object.prototype.propertyIsEnumerable;
|
|
1765
|
+
var __defNormalProp$y = (obj, key, value) => key in obj ? __defProp$y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1766
|
+
var __spreadValues$y = (a, b) => {
|
|
1649
1767
|
for (var prop in b || (b = {}))
|
|
1650
|
-
if (__hasOwnProp$
|
|
1651
|
-
__defNormalProp$
|
|
1652
|
-
if (__getOwnPropSymbols$
|
|
1653
|
-
for (var prop of __getOwnPropSymbols$
|
|
1654
|
-
if (__propIsEnum$
|
|
1655
|
-
__defNormalProp$
|
|
1768
|
+
if (__hasOwnProp$y.call(b, prop))
|
|
1769
|
+
__defNormalProp$y(a, prop, b[prop]);
|
|
1770
|
+
if (__getOwnPropSymbols$y)
|
|
1771
|
+
for (var prop of __getOwnPropSymbols$y(b)) {
|
|
1772
|
+
if (__propIsEnum$y.call(b, prop))
|
|
1773
|
+
__defNormalProp$y(a, prop, b[prop]);
|
|
1656
1774
|
}
|
|
1657
1775
|
return a;
|
|
1658
1776
|
};
|
|
1659
|
-
var __spreadProps$
|
|
1660
|
-
var __objRest$
|
|
1777
|
+
var __spreadProps$r = (a, b) => __defProps$r(a, __getOwnPropDescs$r(b));
|
|
1778
|
+
var __objRest$g = (source, exclude) => {
|
|
1661
1779
|
var target = {};
|
|
1662
1780
|
for (var prop in source)
|
|
1663
|
-
if (__hasOwnProp$
|
|
1781
|
+
if (__hasOwnProp$y.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1664
1782
|
target[prop] = source[prop];
|
|
1665
|
-
if (source != null && __getOwnPropSymbols$
|
|
1666
|
-
for (var prop of __getOwnPropSymbols$
|
|
1667
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1783
|
+
if (source != null && __getOwnPropSymbols$y)
|
|
1784
|
+
for (var prop of __getOwnPropSymbols$y(source)) {
|
|
1785
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$y.call(source, prop))
|
|
1668
1786
|
target[prop] = source[prop];
|
|
1669
1787
|
}
|
|
1670
1788
|
return target;
|
|
@@ -1676,7 +1794,7 @@ const FieldsInt = (_a) => {
|
|
|
1676
1794
|
onBlur,
|
|
1677
1795
|
autoComplete = "off",
|
|
1678
1796
|
supportNegativeValue = false
|
|
1679
|
-
} = _b, props = __objRest$
|
|
1797
|
+
} = _b, props = __objRest$g(_b, [
|
|
1680
1798
|
"input",
|
|
1681
1799
|
"meta",
|
|
1682
1800
|
"onBlur",
|
|
@@ -1685,7 +1803,7 @@ const FieldsInt = (_a) => {
|
|
|
1685
1803
|
]);
|
|
1686
1804
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
1687
1805
|
Input,
|
|
1688
|
-
__spreadValues$
|
|
1806
|
+
__spreadValues$y(__spreadProps$r(__spreadValues$y({}, input), {
|
|
1689
1807
|
onChange: (e) => {
|
|
1690
1808
|
const value = e.currentTarget.value;
|
|
1691
1809
|
if (supportNegativeValue) {
|
|
@@ -1720,31 +1838,31 @@ const formatterInteger = (value) => {
|
|
|
1720
1838
|
}
|
|
1721
1839
|
};
|
|
1722
1840
|
|
|
1723
|
-
var __defProp$
|
|
1724
|
-
var __defProps$
|
|
1725
|
-
var __getOwnPropDescs$
|
|
1726
|
-
var __getOwnPropSymbols$
|
|
1727
|
-
var __hasOwnProp$
|
|
1728
|
-
var __propIsEnum$
|
|
1729
|
-
var __defNormalProp$
|
|
1841
|
+
var __defProp$x = Object.defineProperty;
|
|
1842
|
+
var __defProps$q = Object.defineProperties;
|
|
1843
|
+
var __getOwnPropDescs$q = Object.getOwnPropertyDescriptors;
|
|
1844
|
+
var __getOwnPropSymbols$x = Object.getOwnPropertySymbols;
|
|
1845
|
+
var __hasOwnProp$x = Object.prototype.hasOwnProperty;
|
|
1846
|
+
var __propIsEnum$x = Object.prototype.propertyIsEnumerable;
|
|
1847
|
+
var __defNormalProp$x = (obj, key, value) => key in obj ? __defProp$x(obj, key, {
|
|
1730
1848
|
enumerable: true,
|
|
1731
1849
|
configurable: true,
|
|
1732
1850
|
writable: true,
|
|
1733
1851
|
value
|
|
1734
1852
|
}) : obj[key] = value;
|
|
1735
|
-
var __spreadValues$
|
|
1736
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1737
|
-
if (__getOwnPropSymbols$
|
|
1738
|
-
if (__propIsEnum$
|
|
1853
|
+
var __spreadValues$x = (a, b) => {
|
|
1854
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$x.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
1855
|
+
if (__getOwnPropSymbols$x) for (var prop of __getOwnPropSymbols$x(b)) {
|
|
1856
|
+
if (__propIsEnum$x.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
1739
1857
|
}
|
|
1740
1858
|
return a;
|
|
1741
1859
|
};
|
|
1742
|
-
var __spreadProps$
|
|
1743
|
-
var __objRest$
|
|
1860
|
+
var __spreadProps$q = (a, b) => __defProps$q(a, __getOwnPropDescs$q(b));
|
|
1861
|
+
var __objRest$f = (source, exclude) => {
|
|
1744
1862
|
var target = {};
|
|
1745
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1746
|
-
if (source != null && __getOwnPropSymbols$
|
|
1747
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1863
|
+
for (var prop in source) if (__hasOwnProp$x.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1864
|
+
if (source != null && __getOwnPropSymbols$x) for (var prop of __getOwnPropSymbols$x(source)) {
|
|
1865
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$x.call(source, prop)) target[prop] = source[prop];
|
|
1748
1866
|
}
|
|
1749
1867
|
return target;
|
|
1750
1868
|
};
|
|
@@ -1782,13 +1900,13 @@ const InputInteger = _a => {
|
|
|
1782
1900
|
min,
|
|
1783
1901
|
controls = false
|
|
1784
1902
|
} = _b,
|
|
1785
|
-
props = __objRest$
|
|
1903
|
+
props = __objRest$f(_b, ["className", "error", "size", "suffix", "prefix", "max", "min", "controls"]);
|
|
1786
1904
|
const typo = {
|
|
1787
1905
|
large: Typo.Label.l2_regular,
|
|
1788
1906
|
middle: Typo.Label.l3_regular,
|
|
1789
1907
|
small: Typo.Label.l4_regular
|
|
1790
1908
|
}[size];
|
|
1791
|
-
return /* @__PURE__ */React__default.createElement(AntdIntStyled, __spreadProps$
|
|
1909
|
+
return /* @__PURE__ */React__default.createElement(AntdIntStyled, __spreadProps$q(__spreadValues$x({}, props), {
|
|
1792
1910
|
size,
|
|
1793
1911
|
formatter: formatterInteger,
|
|
1794
1912
|
parser: formatterInteger,
|
|
@@ -1802,33 +1920,33 @@ const InputInteger = _a => {
|
|
|
1802
1920
|
}));
|
|
1803
1921
|
};
|
|
1804
1922
|
|
|
1805
|
-
var __defProp$
|
|
1806
|
-
var __defProps$
|
|
1807
|
-
var __getOwnPropDescs$
|
|
1808
|
-
var __getOwnPropSymbols$
|
|
1809
|
-
var __hasOwnProp$
|
|
1810
|
-
var __propIsEnum$
|
|
1811
|
-
var __defNormalProp$
|
|
1812
|
-
var __spreadValues$
|
|
1923
|
+
var __defProp$w = Object.defineProperty;
|
|
1924
|
+
var __defProps$p = Object.defineProperties;
|
|
1925
|
+
var __getOwnPropDescs$p = Object.getOwnPropertyDescriptors;
|
|
1926
|
+
var __getOwnPropSymbols$w = Object.getOwnPropertySymbols;
|
|
1927
|
+
var __hasOwnProp$w = Object.prototype.hasOwnProperty;
|
|
1928
|
+
var __propIsEnum$w = Object.prototype.propertyIsEnumerable;
|
|
1929
|
+
var __defNormalProp$w = (obj, key, value) => key in obj ? __defProp$w(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1930
|
+
var __spreadValues$w = (a, b) => {
|
|
1813
1931
|
for (var prop in b || (b = {}))
|
|
1814
|
-
if (__hasOwnProp$
|
|
1815
|
-
__defNormalProp$
|
|
1816
|
-
if (__getOwnPropSymbols$
|
|
1817
|
-
for (var prop of __getOwnPropSymbols$
|
|
1818
|
-
if (__propIsEnum$
|
|
1819
|
-
__defNormalProp$
|
|
1932
|
+
if (__hasOwnProp$w.call(b, prop))
|
|
1933
|
+
__defNormalProp$w(a, prop, b[prop]);
|
|
1934
|
+
if (__getOwnPropSymbols$w)
|
|
1935
|
+
for (var prop of __getOwnPropSymbols$w(b)) {
|
|
1936
|
+
if (__propIsEnum$w.call(b, prop))
|
|
1937
|
+
__defNormalProp$w(a, prop, b[prop]);
|
|
1820
1938
|
}
|
|
1821
1939
|
return a;
|
|
1822
1940
|
};
|
|
1823
|
-
var __spreadProps$
|
|
1824
|
-
var __objRest$
|
|
1941
|
+
var __spreadProps$p = (a, b) => __defProps$p(a, __getOwnPropDescs$p(b));
|
|
1942
|
+
var __objRest$e = (source, exclude) => {
|
|
1825
1943
|
var target = {};
|
|
1826
1944
|
for (var prop in source)
|
|
1827
|
-
if (__hasOwnProp$
|
|
1945
|
+
if (__hasOwnProp$w.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1828
1946
|
target[prop] = source[prop];
|
|
1829
|
-
if (source != null && __getOwnPropSymbols$
|
|
1830
|
-
for (var prop of __getOwnPropSymbols$
|
|
1831
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1947
|
+
if (source != null && __getOwnPropSymbols$w)
|
|
1948
|
+
for (var prop of __getOwnPropSymbols$w(source)) {
|
|
1949
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$w.call(source, prop))
|
|
1832
1950
|
target[prop] = source[prop];
|
|
1833
1951
|
}
|
|
1834
1952
|
return target;
|
|
@@ -1838,14 +1956,14 @@ const FieldsInteger = (_a) => {
|
|
|
1838
1956
|
meta,
|
|
1839
1957
|
input,
|
|
1840
1958
|
onBlur
|
|
1841
|
-
} = _b, props = __objRest$
|
|
1959
|
+
} = _b, props = __objRest$e(_b, [
|
|
1842
1960
|
"meta",
|
|
1843
1961
|
"input",
|
|
1844
1962
|
"onBlur"
|
|
1845
1963
|
]);
|
|
1846
1964
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
1847
1965
|
InputInteger,
|
|
1848
|
-
__spreadProps$
|
|
1966
|
+
__spreadProps$p(__spreadValues$w(__spreadValues$w({}, props), input), {
|
|
1849
1967
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1850
1968
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
1851
1969
|
})
|
|
@@ -2010,33 +2128,33 @@ const Overflow = props => {
|
|
|
2010
2128
|
}, children), showOverflow && /* @__PURE__ */React__default.createElement("span", null, overflow));
|
|
2011
2129
|
};
|
|
2012
2130
|
|
|
2013
|
-
var __defProp$
|
|
2014
|
-
var __defProps$
|
|
2015
|
-
var __getOwnPropDescs$
|
|
2016
|
-
var __getOwnPropSymbols$
|
|
2017
|
-
var __hasOwnProp$
|
|
2018
|
-
var __propIsEnum$
|
|
2019
|
-
var __defNormalProp$
|
|
2020
|
-
var __spreadValues$
|
|
2131
|
+
var __defProp$v = Object.defineProperty;
|
|
2132
|
+
var __defProps$o = Object.defineProperties;
|
|
2133
|
+
var __getOwnPropDescs$o = Object.getOwnPropertyDescriptors;
|
|
2134
|
+
var __getOwnPropSymbols$v = Object.getOwnPropertySymbols;
|
|
2135
|
+
var __hasOwnProp$v = Object.prototype.hasOwnProperty;
|
|
2136
|
+
var __propIsEnum$v = Object.prototype.propertyIsEnumerable;
|
|
2137
|
+
var __defNormalProp$v = (obj, key, value) => key in obj ? __defProp$v(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2138
|
+
var __spreadValues$v = (a, b) => {
|
|
2021
2139
|
for (var prop in b || (b = {}))
|
|
2022
|
-
if (__hasOwnProp$
|
|
2023
|
-
__defNormalProp$
|
|
2024
|
-
if (__getOwnPropSymbols$
|
|
2025
|
-
for (var prop of __getOwnPropSymbols$
|
|
2026
|
-
if (__propIsEnum$
|
|
2027
|
-
__defNormalProp$
|
|
2140
|
+
if (__hasOwnProp$v.call(b, prop))
|
|
2141
|
+
__defNormalProp$v(a, prop, b[prop]);
|
|
2142
|
+
if (__getOwnPropSymbols$v)
|
|
2143
|
+
for (var prop of __getOwnPropSymbols$v(b)) {
|
|
2144
|
+
if (__propIsEnum$v.call(b, prop))
|
|
2145
|
+
__defNormalProp$v(a, prop, b[prop]);
|
|
2028
2146
|
}
|
|
2029
2147
|
return a;
|
|
2030
2148
|
};
|
|
2031
|
-
var __spreadProps$
|
|
2032
|
-
var __objRest$
|
|
2149
|
+
var __spreadProps$o = (a, b) => __defProps$o(a, __getOwnPropDescs$o(b));
|
|
2150
|
+
var __objRest$d = (source, exclude) => {
|
|
2033
2151
|
var target = {};
|
|
2034
2152
|
for (var prop in source)
|
|
2035
|
-
if (__hasOwnProp$
|
|
2153
|
+
if (__hasOwnProp$v.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2036
2154
|
target[prop] = source[prop];
|
|
2037
|
-
if (source != null && __getOwnPropSymbols$
|
|
2038
|
-
for (var prop of __getOwnPropSymbols$
|
|
2039
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2155
|
+
if (source != null && __getOwnPropSymbols$v)
|
|
2156
|
+
for (var prop of __getOwnPropSymbols$v(source)) {
|
|
2157
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$v.call(source, prop))
|
|
2040
2158
|
target[prop] = source[prop];
|
|
2041
2159
|
}
|
|
2042
2160
|
return target;
|
|
@@ -2055,7 +2173,7 @@ const FieldsString = (_a) => {
|
|
|
2055
2173
|
onClick,
|
|
2056
2174
|
maxLength,
|
|
2057
2175
|
focusIndicator
|
|
2058
|
-
} = _b, props = __objRest$
|
|
2176
|
+
} = _b, props = __objRest$d(_b, [
|
|
2059
2177
|
"input",
|
|
2060
2178
|
"meta",
|
|
2061
2179
|
"autoComplete",
|
|
@@ -2087,7 +2205,7 @@ const FieldsString = (_a) => {
|
|
|
2087
2205
|
}
|
|
2088
2206
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
2089
2207
|
Input,
|
|
2090
|
-
__spreadProps$
|
|
2208
|
+
__spreadProps$o(__spreadValues$v(__spreadProps$o(__spreadValues$v({
|
|
2091
2209
|
className: cs(
|
|
2092
2210
|
className,
|
|
2093
2211
|
KitInputStyle,
|
|
@@ -2112,33 +2230,33 @@ const FieldsString = (_a) => {
|
|
|
2112
2230
|
));
|
|
2113
2231
|
};
|
|
2114
2232
|
|
|
2115
|
-
var __defProp$
|
|
2116
|
-
var __defProps$
|
|
2117
|
-
var __getOwnPropDescs$
|
|
2118
|
-
var __getOwnPropSymbols$
|
|
2119
|
-
var __hasOwnProp$
|
|
2120
|
-
var __propIsEnum$
|
|
2121
|
-
var __defNormalProp$
|
|
2122
|
-
var __spreadValues$
|
|
2233
|
+
var __defProp$u = Object.defineProperty;
|
|
2234
|
+
var __defProps$n = Object.defineProperties;
|
|
2235
|
+
var __getOwnPropDescs$n = Object.getOwnPropertyDescriptors;
|
|
2236
|
+
var __getOwnPropSymbols$u = Object.getOwnPropertySymbols;
|
|
2237
|
+
var __hasOwnProp$u = Object.prototype.hasOwnProperty;
|
|
2238
|
+
var __propIsEnum$u = Object.prototype.propertyIsEnumerable;
|
|
2239
|
+
var __defNormalProp$u = (obj, key, value) => key in obj ? __defProp$u(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2240
|
+
var __spreadValues$u = (a, b) => {
|
|
2123
2241
|
for (var prop in b || (b = {}))
|
|
2124
|
-
if (__hasOwnProp$
|
|
2125
|
-
__defNormalProp$
|
|
2126
|
-
if (__getOwnPropSymbols$
|
|
2127
|
-
for (var prop of __getOwnPropSymbols$
|
|
2128
|
-
if (__propIsEnum$
|
|
2129
|
-
__defNormalProp$
|
|
2242
|
+
if (__hasOwnProp$u.call(b, prop))
|
|
2243
|
+
__defNormalProp$u(a, prop, b[prop]);
|
|
2244
|
+
if (__getOwnPropSymbols$u)
|
|
2245
|
+
for (var prop of __getOwnPropSymbols$u(b)) {
|
|
2246
|
+
if (__propIsEnum$u.call(b, prop))
|
|
2247
|
+
__defNormalProp$u(a, prop, b[prop]);
|
|
2130
2248
|
}
|
|
2131
2249
|
return a;
|
|
2132
2250
|
};
|
|
2133
|
-
var __spreadProps$
|
|
2134
|
-
var __objRest$
|
|
2251
|
+
var __spreadProps$n = (a, b) => __defProps$n(a, __getOwnPropDescs$n(b));
|
|
2252
|
+
var __objRest$c = (source, exclude) => {
|
|
2135
2253
|
var target = {};
|
|
2136
2254
|
for (var prop in source)
|
|
2137
|
-
if (__hasOwnProp$
|
|
2255
|
+
if (__hasOwnProp$u.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2138
2256
|
target[prop] = source[prop];
|
|
2139
|
-
if (source != null && __getOwnPropSymbols$
|
|
2140
|
-
for (var prop of __getOwnPropSymbols$
|
|
2141
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2257
|
+
if (source != null && __getOwnPropSymbols$u)
|
|
2258
|
+
for (var prop of __getOwnPropSymbols$u(source)) {
|
|
2259
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$u.call(source, prop))
|
|
2142
2260
|
target[prop] = source[prop];
|
|
2143
2261
|
}
|
|
2144
2262
|
return target;
|
|
@@ -2148,7 +2266,7 @@ const TextArea = (_a) => {
|
|
|
2148
2266
|
className,
|
|
2149
2267
|
error,
|
|
2150
2268
|
size = "middle"
|
|
2151
|
-
} = _b, props = __objRest$
|
|
2269
|
+
} = _b, props = __objRest$c(_b, [
|
|
2152
2270
|
"className",
|
|
2153
2271
|
"error",
|
|
2154
2272
|
"size"
|
|
@@ -2160,7 +2278,7 @@ const TextArea = (_a) => {
|
|
|
2160
2278
|
}[size];
|
|
2161
2279
|
return /* @__PURE__ */ React__default.createElement(
|
|
2162
2280
|
Input$1.TextArea,
|
|
2163
|
-
__spreadProps$
|
|
2281
|
+
__spreadProps$n(__spreadValues$u({}, props), {
|
|
2164
2282
|
className: cs(
|
|
2165
2283
|
className,
|
|
2166
2284
|
InputStyle,
|
|
@@ -2174,33 +2292,33 @@ const TextArea = (_a) => {
|
|
|
2174
2292
|
);
|
|
2175
2293
|
};
|
|
2176
2294
|
|
|
2177
|
-
var __defProp$
|
|
2178
|
-
var __defProps$
|
|
2179
|
-
var __getOwnPropDescs$
|
|
2180
|
-
var __getOwnPropSymbols$
|
|
2181
|
-
var __hasOwnProp$
|
|
2182
|
-
var __propIsEnum$
|
|
2183
|
-
var __defNormalProp$
|
|
2184
|
-
var __spreadValues$
|
|
2295
|
+
var __defProp$t = Object.defineProperty;
|
|
2296
|
+
var __defProps$m = Object.defineProperties;
|
|
2297
|
+
var __getOwnPropDescs$m = Object.getOwnPropertyDescriptors;
|
|
2298
|
+
var __getOwnPropSymbols$t = Object.getOwnPropertySymbols;
|
|
2299
|
+
var __hasOwnProp$t = Object.prototype.hasOwnProperty;
|
|
2300
|
+
var __propIsEnum$t = Object.prototype.propertyIsEnumerable;
|
|
2301
|
+
var __defNormalProp$t = (obj, key, value) => key in obj ? __defProp$t(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2302
|
+
var __spreadValues$t = (a, b) => {
|
|
2185
2303
|
for (var prop in b || (b = {}))
|
|
2186
|
-
if (__hasOwnProp$
|
|
2187
|
-
__defNormalProp$
|
|
2188
|
-
if (__getOwnPropSymbols$
|
|
2189
|
-
for (var prop of __getOwnPropSymbols$
|
|
2190
|
-
if (__propIsEnum$
|
|
2191
|
-
__defNormalProp$
|
|
2304
|
+
if (__hasOwnProp$t.call(b, prop))
|
|
2305
|
+
__defNormalProp$t(a, prop, b[prop]);
|
|
2306
|
+
if (__getOwnPropSymbols$t)
|
|
2307
|
+
for (var prop of __getOwnPropSymbols$t(b)) {
|
|
2308
|
+
if (__propIsEnum$t.call(b, prop))
|
|
2309
|
+
__defNormalProp$t(a, prop, b[prop]);
|
|
2192
2310
|
}
|
|
2193
2311
|
return a;
|
|
2194
2312
|
};
|
|
2195
|
-
var __spreadProps$
|
|
2196
|
-
var __objRest$
|
|
2313
|
+
var __spreadProps$m = (a, b) => __defProps$m(a, __getOwnPropDescs$m(b));
|
|
2314
|
+
var __objRest$b = (source, exclude) => {
|
|
2197
2315
|
var target = {};
|
|
2198
2316
|
for (var prop in source)
|
|
2199
|
-
if (__hasOwnProp$
|
|
2317
|
+
if (__hasOwnProp$t.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2200
2318
|
target[prop] = source[prop];
|
|
2201
|
-
if (source != null && __getOwnPropSymbols$
|
|
2202
|
-
for (var prop of __getOwnPropSymbols$
|
|
2203
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2319
|
+
if (source != null && __getOwnPropSymbols$t)
|
|
2320
|
+
for (var prop of __getOwnPropSymbols$t(source)) {
|
|
2321
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$t.call(source, prop))
|
|
2204
2322
|
target[prop] = source[prop];
|
|
2205
2323
|
}
|
|
2206
2324
|
return target;
|
|
@@ -2210,14 +2328,14 @@ const FieldsTextArea = (_a) => {
|
|
|
2210
2328
|
input,
|
|
2211
2329
|
meta,
|
|
2212
2330
|
onFocusChangeHeight
|
|
2213
|
-
} = _b, props = __objRest$
|
|
2331
|
+
} = _b, props = __objRest$b(_b, [
|
|
2214
2332
|
"input",
|
|
2215
2333
|
"meta",
|
|
2216
2334
|
"onFocusChangeHeight"
|
|
2217
2335
|
]);
|
|
2218
2336
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
2219
2337
|
TextArea,
|
|
2220
|
-
__spreadProps$
|
|
2338
|
+
__spreadProps$m(__spreadValues$t(__spreadValues$t({}, input), props), {
|
|
2221
2339
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError),
|
|
2222
2340
|
onFocus: (e) => {
|
|
2223
2341
|
input.onFocus(e);
|
|
@@ -2231,33 +2349,33 @@ const FieldsTextArea = (_a) => {
|
|
|
2231
2349
|
));
|
|
2232
2350
|
};
|
|
2233
2351
|
|
|
2234
|
-
var __defProp$
|
|
2235
|
-
var __defProps$
|
|
2236
|
-
var __getOwnPropDescs$
|
|
2237
|
-
var __getOwnPropSymbols$
|
|
2238
|
-
var __hasOwnProp$
|
|
2239
|
-
var __propIsEnum$
|
|
2240
|
-
var __defNormalProp$
|
|
2241
|
-
var __spreadValues$
|
|
2352
|
+
var __defProp$s = Object.defineProperty;
|
|
2353
|
+
var __defProps$l = Object.defineProperties;
|
|
2354
|
+
var __getOwnPropDescs$l = Object.getOwnPropertyDescriptors;
|
|
2355
|
+
var __getOwnPropSymbols$s = Object.getOwnPropertySymbols;
|
|
2356
|
+
var __hasOwnProp$s = Object.prototype.hasOwnProperty;
|
|
2357
|
+
var __propIsEnum$s = Object.prototype.propertyIsEnumerable;
|
|
2358
|
+
var __defNormalProp$s = (obj, key, value) => key in obj ? __defProp$s(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2359
|
+
var __spreadValues$s = (a, b) => {
|
|
2242
2360
|
for (var prop in b || (b = {}))
|
|
2243
|
-
if (__hasOwnProp$
|
|
2244
|
-
__defNormalProp$
|
|
2245
|
-
if (__getOwnPropSymbols$
|
|
2246
|
-
for (var prop of __getOwnPropSymbols$
|
|
2247
|
-
if (__propIsEnum$
|
|
2248
|
-
__defNormalProp$
|
|
2361
|
+
if (__hasOwnProp$s.call(b, prop))
|
|
2362
|
+
__defNormalProp$s(a, prop, b[prop]);
|
|
2363
|
+
if (__getOwnPropSymbols$s)
|
|
2364
|
+
for (var prop of __getOwnPropSymbols$s(b)) {
|
|
2365
|
+
if (__propIsEnum$s.call(b, prop))
|
|
2366
|
+
__defNormalProp$s(a, prop, b[prop]);
|
|
2249
2367
|
}
|
|
2250
2368
|
return a;
|
|
2251
2369
|
};
|
|
2252
|
-
var __spreadProps$
|
|
2253
|
-
var __objRest$
|
|
2370
|
+
var __spreadProps$l = (a, b) => __defProps$l(a, __getOwnPropDescs$l(b));
|
|
2371
|
+
var __objRest$a = (source, exclude) => {
|
|
2254
2372
|
var target = {};
|
|
2255
2373
|
for (var prop in source)
|
|
2256
|
-
if (__hasOwnProp$
|
|
2374
|
+
if (__hasOwnProp$s.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2257
2375
|
target[prop] = source[prop];
|
|
2258
|
-
if (source != null && __getOwnPropSymbols$
|
|
2259
|
-
for (var prop of __getOwnPropSymbols$
|
|
2260
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2376
|
+
if (source != null && __getOwnPropSymbols$s)
|
|
2377
|
+
for (var prop of __getOwnPropSymbols$s(source)) {
|
|
2378
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$s.call(source, prop))
|
|
2261
2379
|
target[prop] = source[prop];
|
|
2262
2380
|
}
|
|
2263
2381
|
return target;
|
|
@@ -2267,7 +2385,7 @@ const TimePicker = (_a) => {
|
|
|
2267
2385
|
className,
|
|
2268
2386
|
error,
|
|
2269
2387
|
size = "middle"
|
|
2270
|
-
} = _b, props = __objRest$
|
|
2388
|
+
} = _b, props = __objRest$a(_b, [
|
|
2271
2389
|
"className",
|
|
2272
2390
|
"error",
|
|
2273
2391
|
"size"
|
|
@@ -2279,7 +2397,7 @@ const TimePicker = (_a) => {
|
|
|
2279
2397
|
}[size];
|
|
2280
2398
|
return /* @__PURE__ */ React__default.createElement(
|
|
2281
2399
|
TimePicker$1,
|
|
2282
|
-
__spreadProps$
|
|
2400
|
+
__spreadProps$l(__spreadValues$s({}, props), {
|
|
2283
2401
|
size,
|
|
2284
2402
|
"data-test": props.name,
|
|
2285
2403
|
className: cs(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -2287,33 +2405,33 @@ const TimePicker = (_a) => {
|
|
|
2287
2405
|
);
|
|
2288
2406
|
};
|
|
2289
2407
|
|
|
2290
|
-
var __defProp$
|
|
2291
|
-
var __defProps$
|
|
2292
|
-
var __getOwnPropDescs$
|
|
2293
|
-
var __getOwnPropSymbols$
|
|
2294
|
-
var __hasOwnProp$
|
|
2295
|
-
var __propIsEnum$
|
|
2296
|
-
var __defNormalProp$
|
|
2297
|
-
var __spreadValues$
|
|
2408
|
+
var __defProp$r = Object.defineProperty;
|
|
2409
|
+
var __defProps$k = Object.defineProperties;
|
|
2410
|
+
var __getOwnPropDescs$k = Object.getOwnPropertyDescriptors;
|
|
2411
|
+
var __getOwnPropSymbols$r = Object.getOwnPropertySymbols;
|
|
2412
|
+
var __hasOwnProp$r = Object.prototype.hasOwnProperty;
|
|
2413
|
+
var __propIsEnum$r = Object.prototype.propertyIsEnumerable;
|
|
2414
|
+
var __defNormalProp$r = (obj, key, value) => key in obj ? __defProp$r(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2415
|
+
var __spreadValues$r = (a, b) => {
|
|
2298
2416
|
for (var prop in b || (b = {}))
|
|
2299
|
-
if (__hasOwnProp$
|
|
2300
|
-
__defNormalProp$
|
|
2301
|
-
if (__getOwnPropSymbols$
|
|
2302
|
-
for (var prop of __getOwnPropSymbols$
|
|
2303
|
-
if (__propIsEnum$
|
|
2304
|
-
__defNormalProp$
|
|
2417
|
+
if (__hasOwnProp$r.call(b, prop))
|
|
2418
|
+
__defNormalProp$r(a, prop, b[prop]);
|
|
2419
|
+
if (__getOwnPropSymbols$r)
|
|
2420
|
+
for (var prop of __getOwnPropSymbols$r(b)) {
|
|
2421
|
+
if (__propIsEnum$r.call(b, prop))
|
|
2422
|
+
__defNormalProp$r(a, prop, b[prop]);
|
|
2305
2423
|
}
|
|
2306
2424
|
return a;
|
|
2307
2425
|
};
|
|
2308
|
-
var __spreadProps$
|
|
2309
|
-
var __objRest$
|
|
2426
|
+
var __spreadProps$k = (a, b) => __defProps$k(a, __getOwnPropDescs$k(b));
|
|
2427
|
+
var __objRest$9 = (source, exclude) => {
|
|
2310
2428
|
var target = {};
|
|
2311
2429
|
for (var prop in source)
|
|
2312
|
-
if (__hasOwnProp$
|
|
2430
|
+
if (__hasOwnProp$r.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2313
2431
|
target[prop] = source[prop];
|
|
2314
|
-
if (source != null && __getOwnPropSymbols$
|
|
2315
|
-
for (var prop of __getOwnPropSymbols$
|
|
2316
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2432
|
+
if (source != null && __getOwnPropSymbols$r)
|
|
2433
|
+
for (var prop of __getOwnPropSymbols$r(source)) {
|
|
2434
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$r.call(source, prop))
|
|
2317
2435
|
target[prop] = source[prop];
|
|
2318
2436
|
}
|
|
2319
2437
|
return target;
|
|
@@ -2322,13 +2440,13 @@ const FieldsTimePicker = (_a) => {
|
|
|
2322
2440
|
var _b = _a, {
|
|
2323
2441
|
input,
|
|
2324
2442
|
meta
|
|
2325
|
-
} = _b, props = __objRest$
|
|
2443
|
+
} = _b, props = __objRest$9(_b, [
|
|
2326
2444
|
"input",
|
|
2327
2445
|
"meta"
|
|
2328
2446
|
]);
|
|
2329
2447
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
2330
2448
|
TimePicker,
|
|
2331
|
-
__spreadValues$
|
|
2449
|
+
__spreadValues$r(__spreadProps$k(__spreadValues$r({}, input), {
|
|
2332
2450
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
2333
2451
|
}), props)
|
|
2334
2452
|
));
|
|
@@ -2347,29 +2465,32 @@ const fields = {
|
|
|
2347
2465
|
DateTimeRange: FieldsDateTimeRange
|
|
2348
2466
|
};
|
|
2349
2467
|
|
|
2350
|
-
var __defProp$
|
|
2351
|
-
var __defProps$
|
|
2352
|
-
var __getOwnPropDescs$
|
|
2353
|
-
var __getOwnPropSymbols$
|
|
2354
|
-
var __hasOwnProp$
|
|
2355
|
-
var __propIsEnum$
|
|
2356
|
-
var __defNormalProp$
|
|
2468
|
+
var __defProp$q = Object.defineProperty;
|
|
2469
|
+
var __defProps$j = Object.defineProperties;
|
|
2470
|
+
var __getOwnPropDescs$j = Object.getOwnPropertyDescriptors;
|
|
2471
|
+
var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
|
|
2472
|
+
var __hasOwnProp$q = Object.prototype.hasOwnProperty;
|
|
2473
|
+
var __propIsEnum$q = Object.prototype.propertyIsEnumerable;
|
|
2474
|
+
var __defNormalProp$q = (obj, key, value) => key in obj ? __defProp$q(obj, key, {
|
|
2357
2475
|
enumerable: true,
|
|
2358
2476
|
configurable: true,
|
|
2359
2477
|
writable: true,
|
|
2360
2478
|
value
|
|
2361
2479
|
}) : obj[key] = value;
|
|
2362
|
-
var __spreadValues$
|
|
2363
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
2364
|
-
if (__getOwnPropSymbols$
|
|
2365
|
-
if (__propIsEnum$
|
|
2480
|
+
var __spreadValues$q = (a, b) => {
|
|
2481
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$q.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
|
|
2482
|
+
if (__getOwnPropSymbols$q) for (var prop of __getOwnPropSymbols$q(b)) {
|
|
2483
|
+
if (__propIsEnum$q.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
|
|
2366
2484
|
}
|
|
2367
2485
|
return a;
|
|
2368
2486
|
};
|
|
2369
|
-
var __spreadProps$
|
|
2487
|
+
var __spreadProps$j = (a, b) => __defProps$j(a, __getOwnPropDescs$j(b));
|
|
2488
|
+
const {
|
|
2489
|
+
Item: AntdFormItem
|
|
2490
|
+
} = Form$1;
|
|
2370
2491
|
const FormItemStyle$1 = "f1p9ti6d";
|
|
2371
2492
|
const FormItem$1 = props => {
|
|
2372
|
-
return /* @__PURE__ */React__default.createElement(AntdFormItem, __spreadProps$
|
|
2493
|
+
return /* @__PURE__ */React__default.createElement(AntdFormItem, __spreadProps$j(__spreadValues$q({}, props), {
|
|
2373
2494
|
className: cs(FormItemStyle$1, props.className)
|
|
2374
2495
|
}));
|
|
2375
2496
|
};
|
|
@@ -2377,19 +2498,19 @@ const FormItem$1 = props => {
|
|
|
2377
2498
|
const Form = Form$1;
|
|
2378
2499
|
Form.Item = FormItem$1;
|
|
2379
2500
|
|
|
2380
|
-
var __defProp$
|
|
2381
|
-
var __getOwnPropSymbols$
|
|
2382
|
-
var __hasOwnProp$
|
|
2383
|
-
var __propIsEnum$
|
|
2384
|
-
var __defNormalProp$
|
|
2385
|
-
var __spreadValues$
|
|
2501
|
+
var __defProp$p = Object.defineProperty;
|
|
2502
|
+
var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
|
|
2503
|
+
var __hasOwnProp$p = Object.prototype.hasOwnProperty;
|
|
2504
|
+
var __propIsEnum$p = Object.prototype.propertyIsEnumerable;
|
|
2505
|
+
var __defNormalProp$p = (obj, key, value) => key in obj ? __defProp$p(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2506
|
+
var __spreadValues$p = (a, b) => {
|
|
2386
2507
|
for (var prop in b || (b = {}))
|
|
2387
|
-
if (__hasOwnProp$
|
|
2388
|
-
__defNormalProp$
|
|
2389
|
-
if (__getOwnPropSymbols$
|
|
2390
|
-
for (var prop of __getOwnPropSymbols$
|
|
2391
|
-
if (__propIsEnum$
|
|
2392
|
-
__defNormalProp$
|
|
2508
|
+
if (__hasOwnProp$p.call(b, prop))
|
|
2509
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
2510
|
+
if (__getOwnPropSymbols$p)
|
|
2511
|
+
for (var prop of __getOwnPropSymbols$p(b)) {
|
|
2512
|
+
if (__propIsEnum$p.call(b, prop))
|
|
2513
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
2393
2514
|
}
|
|
2394
2515
|
return a;
|
|
2395
2516
|
};
|
|
@@ -2401,7 +2522,7 @@ const Frequency = ({
|
|
|
2401
2522
|
emptyProps
|
|
2402
2523
|
}) => {
|
|
2403
2524
|
if (isEmpty(rawValue)) {
|
|
2404
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
2525
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$p({}, emptyProps));
|
|
2405
2526
|
}
|
|
2406
2527
|
const { value, unit } = formatFrequency(rawValue, decimals);
|
|
2407
2528
|
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}`));
|
|
@@ -2414,25 +2535,25 @@ const InputGroup = /*#__PURE__*/styled(_exp())({
|
|
|
2414
2535
|
propsAsIs: true
|
|
2415
2536
|
});
|
|
2416
2537
|
|
|
2417
|
-
var __defProp$
|
|
2418
|
-
var __defProps$
|
|
2419
|
-
var __getOwnPropDescs$
|
|
2420
|
-
var __getOwnPropSymbols$
|
|
2421
|
-
var __hasOwnProp$
|
|
2422
|
-
var __propIsEnum$
|
|
2423
|
-
var __defNormalProp$
|
|
2424
|
-
var __spreadValues$
|
|
2538
|
+
var __defProp$o = Object.defineProperty;
|
|
2539
|
+
var __defProps$i = Object.defineProperties;
|
|
2540
|
+
var __getOwnPropDescs$i = Object.getOwnPropertyDescriptors;
|
|
2541
|
+
var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
|
|
2542
|
+
var __hasOwnProp$o = Object.prototype.hasOwnProperty;
|
|
2543
|
+
var __propIsEnum$o = Object.prototype.propertyIsEnumerable;
|
|
2544
|
+
var __defNormalProp$o = (obj, key2, value) => key2 in obj ? __defProp$o(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
|
|
2545
|
+
var __spreadValues$o = (a, b) => {
|
|
2425
2546
|
for (var prop in b || (b = {}))
|
|
2426
|
-
if (__hasOwnProp$
|
|
2427
|
-
__defNormalProp$
|
|
2428
|
-
if (__getOwnPropSymbols$
|
|
2429
|
-
for (var prop of __getOwnPropSymbols$
|
|
2430
|
-
if (__propIsEnum$
|
|
2431
|
-
__defNormalProp$
|
|
2547
|
+
if (__hasOwnProp$o.call(b, prop))
|
|
2548
|
+
__defNormalProp$o(a, prop, b[prop]);
|
|
2549
|
+
if (__getOwnPropSymbols$o)
|
|
2550
|
+
for (var prop of __getOwnPropSymbols$o(b)) {
|
|
2551
|
+
if (__propIsEnum$o.call(b, prop))
|
|
2552
|
+
__defNormalProp$o(a, prop, b[prop]);
|
|
2432
2553
|
}
|
|
2433
2554
|
return a;
|
|
2434
2555
|
};
|
|
2435
|
-
var __spreadProps$
|
|
2556
|
+
var __spreadProps$i = (a, b) => __defProps$i(a, __getOwnPropDescs$i(b));
|
|
2436
2557
|
let messageInstance;
|
|
2437
2558
|
let defaultDuration = 3;
|
|
2438
2559
|
let defaultTop;
|
|
@@ -2539,7 +2660,7 @@ function notice(args) {
|
|
|
2539
2660
|
}
|
|
2540
2661
|
getRCNotificationInstance(args, ({ prefixCls, instance }) => {
|
|
2541
2662
|
instance.notice(
|
|
2542
|
-
getRCNoticeProps(__spreadProps$
|
|
2663
|
+
getRCNoticeProps(__spreadProps$i(__spreadValues$o({}, args), { key: target, onClose: callback }), prefixCls)
|
|
2543
2664
|
);
|
|
2544
2665
|
});
|
|
2545
2666
|
});
|
|
@@ -2568,7 +2689,7 @@ const api = {
|
|
|
2568
2689
|
function attachTypeApi(originalApi, type) {
|
|
2569
2690
|
originalApi[type] = (content, duration, onClose) => {
|
|
2570
2691
|
if (isArgsProps(content)) {
|
|
2571
|
-
return originalApi.open(__spreadProps$
|
|
2692
|
+
return originalApi.open(__spreadProps$i(__spreadValues$o({}, content), { type }));
|
|
2572
2693
|
}
|
|
2573
2694
|
if (typeof duration === "function") {
|
|
2574
2695
|
onClose = duration;
|
|
@@ -2582,25 +2703,25 @@ function attachTypeApi(originalApi, type) {
|
|
|
2582
2703
|
);
|
|
2583
2704
|
api.warn = api.warning;
|
|
2584
2705
|
|
|
2585
|
-
var __defProp$
|
|
2586
|
-
var __defProps$
|
|
2587
|
-
var __getOwnPropDescs$
|
|
2588
|
-
var __getOwnPropSymbols$
|
|
2589
|
-
var __hasOwnProp$
|
|
2590
|
-
var __propIsEnum$
|
|
2591
|
-
var __defNormalProp$
|
|
2592
|
-
var __spreadValues$
|
|
2706
|
+
var __defProp$n = Object.defineProperty;
|
|
2707
|
+
var __defProps$h = Object.defineProperties;
|
|
2708
|
+
var __getOwnPropDescs$h = Object.getOwnPropertyDescriptors;
|
|
2709
|
+
var __getOwnPropSymbols$n = Object.getOwnPropertySymbols;
|
|
2710
|
+
var __hasOwnProp$n = Object.prototype.hasOwnProperty;
|
|
2711
|
+
var __propIsEnum$n = Object.prototype.propertyIsEnumerable;
|
|
2712
|
+
var __defNormalProp$n = (obj, key, value) => key in obj ? __defProp$n(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2713
|
+
var __spreadValues$n = (a, b) => {
|
|
2593
2714
|
for (var prop in b || (b = {}))
|
|
2594
|
-
if (__hasOwnProp$
|
|
2595
|
-
__defNormalProp$
|
|
2596
|
-
if (__getOwnPropSymbols$
|
|
2597
|
-
for (var prop of __getOwnPropSymbols$
|
|
2598
|
-
if (__propIsEnum$
|
|
2599
|
-
__defNormalProp$
|
|
2715
|
+
if (__hasOwnProp$n.call(b, prop))
|
|
2716
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
2717
|
+
if (__getOwnPropSymbols$n)
|
|
2718
|
+
for (var prop of __getOwnPropSymbols$n(b)) {
|
|
2719
|
+
if (__propIsEnum$n.call(b, prop))
|
|
2720
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
2600
2721
|
}
|
|
2601
2722
|
return a;
|
|
2602
2723
|
};
|
|
2603
|
-
var __spreadProps$
|
|
2724
|
+
var __spreadProps$h = (a, b) => __defProps$h(a, __getOwnPropDescs$h(b));
|
|
2604
2725
|
const initialChartState = {
|
|
2605
2726
|
pointers: {},
|
|
2606
2727
|
resourceData: {},
|
|
@@ -2610,8 +2731,8 @@ const chartReducer = (state = initialChartState, action) => {
|
|
|
2610
2731
|
switch (action.type) {
|
|
2611
2732
|
case "SET_POINTER" /* SET_POINTER */: {
|
|
2612
2733
|
const { uuid, left, text, visible, value } = action.payload;
|
|
2613
|
-
return __spreadProps$
|
|
2614
|
-
pointers: __spreadProps$
|
|
2734
|
+
return __spreadProps$h(__spreadValues$n({}, state), {
|
|
2735
|
+
pointers: __spreadProps$h(__spreadValues$n({}, state.pointers), {
|
|
2615
2736
|
[uuid]: {
|
|
2616
2737
|
left,
|
|
2617
2738
|
text,
|
|
@@ -2623,16 +2744,16 @@ const chartReducer = (state = initialChartState, action) => {
|
|
|
2623
2744
|
}
|
|
2624
2745
|
case "SET_RESOURCE_DATA" /* SET_RESOURCE_DATA */: {
|
|
2625
2746
|
const { uuid, data } = action.payload;
|
|
2626
|
-
return __spreadProps$
|
|
2627
|
-
resourceData: __spreadProps$
|
|
2747
|
+
return __spreadProps$h(__spreadValues$n({}, state), {
|
|
2748
|
+
resourceData: __spreadProps$h(__spreadValues$n({}, state.resourceData), {
|
|
2628
2749
|
[uuid]: data
|
|
2629
2750
|
})
|
|
2630
2751
|
});
|
|
2631
2752
|
}
|
|
2632
2753
|
case "SET_AVERAGE_DATA" /* SET_AVERAGE_DATA */: {
|
|
2633
2754
|
const { uuid, average } = action.payload;
|
|
2634
|
-
return __spreadProps$
|
|
2635
|
-
averageData: __spreadProps$
|
|
2755
|
+
return __spreadProps$h(__spreadValues$n({}, state), {
|
|
2756
|
+
averageData: __spreadProps$h(__spreadValues$n({}, state.averageData), {
|
|
2636
2757
|
[uuid]: average
|
|
2637
2758
|
})
|
|
2638
2759
|
});
|
|
@@ -2643,25 +2764,25 @@ const chartReducer = (state = initialChartState, action) => {
|
|
|
2643
2764
|
}
|
|
2644
2765
|
};
|
|
2645
2766
|
|
|
2646
|
-
var __defProp$
|
|
2647
|
-
var __defProps$
|
|
2648
|
-
var __getOwnPropDescs$
|
|
2649
|
-
var __getOwnPropSymbols$
|
|
2650
|
-
var __hasOwnProp$
|
|
2651
|
-
var __propIsEnum$
|
|
2652
|
-
var __defNormalProp$
|
|
2653
|
-
var __spreadValues$
|
|
2767
|
+
var __defProp$m = Object.defineProperty;
|
|
2768
|
+
var __defProps$g = Object.defineProperties;
|
|
2769
|
+
var __getOwnPropDescs$g = Object.getOwnPropertyDescriptors;
|
|
2770
|
+
var __getOwnPropSymbols$m = Object.getOwnPropertySymbols;
|
|
2771
|
+
var __hasOwnProp$m = Object.prototype.hasOwnProperty;
|
|
2772
|
+
var __propIsEnum$m = Object.prototype.propertyIsEnumerable;
|
|
2773
|
+
var __defNormalProp$m = (obj, key, value) => key in obj ? __defProp$m(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2774
|
+
var __spreadValues$m = (a, b) => {
|
|
2654
2775
|
for (var prop in b || (b = {}))
|
|
2655
|
-
if (__hasOwnProp$
|
|
2656
|
-
__defNormalProp$
|
|
2657
|
-
if (__getOwnPropSymbols$
|
|
2658
|
-
for (var prop of __getOwnPropSymbols$
|
|
2659
|
-
if (__propIsEnum$
|
|
2660
|
-
__defNormalProp$
|
|
2776
|
+
if (__hasOwnProp$m.call(b, prop))
|
|
2777
|
+
__defNormalProp$m(a, prop, b[prop]);
|
|
2778
|
+
if (__getOwnPropSymbols$m)
|
|
2779
|
+
for (var prop of __getOwnPropSymbols$m(b)) {
|
|
2780
|
+
if (__propIsEnum$m.call(b, prop))
|
|
2781
|
+
__defNormalProp$m(a, prop, b[prop]);
|
|
2661
2782
|
}
|
|
2662
2783
|
return a;
|
|
2663
2784
|
};
|
|
2664
|
-
var __spreadProps$
|
|
2785
|
+
var __spreadProps$g = (a, b) => __defProps$g(a, __getOwnPropDescs$g(b));
|
|
2665
2786
|
var ModalActions = /* @__PURE__ */ ((ModalActions2) => {
|
|
2666
2787
|
ModalActions2["PUSH_MODAL"] = "PUSH_MODAL";
|
|
2667
2788
|
ModalActions2["POP_MODAL"] = "POP_MODAL";
|
|
@@ -2682,22 +2803,22 @@ const modalReducer = (state = initialModalState, action) => {
|
|
|
2682
2803
|
)) {
|
|
2683
2804
|
return state;
|
|
2684
2805
|
}
|
|
2685
|
-
return __spreadProps$
|
|
2686
|
-
stack: state.stack.concat(__spreadProps$
|
|
2806
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2807
|
+
stack: state.stack.concat(__spreadProps$g(__spreadValues$m({}, action.payload), {
|
|
2687
2808
|
id: MODAL_ID++
|
|
2688
2809
|
}))
|
|
2689
2810
|
});
|
|
2690
2811
|
case "POP_MODAL" /* POP_MODAL */:
|
|
2691
|
-
return __spreadProps$
|
|
2812
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2692
2813
|
stack: state.stack.slice(0, -1)
|
|
2693
2814
|
});
|
|
2694
2815
|
case "REMOVE_MODAL" /* REMOVE_MODAL */:
|
|
2695
|
-
return __spreadProps$
|
|
2816
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2696
2817
|
closeId: 0,
|
|
2697
2818
|
stack: state.stack.filter((m) => m.id !== action.id)
|
|
2698
2819
|
});
|
|
2699
2820
|
case "CLOSE_MODAL" /* CLOSE_MODAL */:
|
|
2700
|
-
return __spreadProps$
|
|
2821
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2701
2822
|
closeId: action.id
|
|
2702
2823
|
});
|
|
2703
2824
|
default:
|
|
@@ -2748,33 +2869,33 @@ const KitStoreProvider = (props) => {
|
|
|
2748
2869
|
const useKitDispatch = createDispatchHook(ctx);
|
|
2749
2870
|
const useKitSelector = createSelectorHook(ctx);
|
|
2750
2871
|
|
|
2751
|
-
var __defProp$
|
|
2752
|
-
var __defProps$
|
|
2753
|
-
var __getOwnPropDescs$
|
|
2754
|
-
var __getOwnPropSymbols$
|
|
2755
|
-
var __hasOwnProp$
|
|
2756
|
-
var __propIsEnum$
|
|
2757
|
-
var __defNormalProp$
|
|
2758
|
-
var __spreadValues$
|
|
2872
|
+
var __defProp$l = Object.defineProperty;
|
|
2873
|
+
var __defProps$f = Object.defineProperties;
|
|
2874
|
+
var __getOwnPropDescs$f = Object.getOwnPropertyDescriptors;
|
|
2875
|
+
var __getOwnPropSymbols$l = Object.getOwnPropertySymbols;
|
|
2876
|
+
var __hasOwnProp$l = Object.prototype.hasOwnProperty;
|
|
2877
|
+
var __propIsEnum$l = Object.prototype.propertyIsEnumerable;
|
|
2878
|
+
var __defNormalProp$l = (obj, key, value) => key in obj ? __defProp$l(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2879
|
+
var __spreadValues$l = (a, b) => {
|
|
2759
2880
|
for (var prop in b || (b = {}))
|
|
2760
|
-
if (__hasOwnProp$
|
|
2761
|
-
__defNormalProp$
|
|
2762
|
-
if (__getOwnPropSymbols$
|
|
2763
|
-
for (var prop of __getOwnPropSymbols$
|
|
2764
|
-
if (__propIsEnum$
|
|
2765
|
-
__defNormalProp$
|
|
2881
|
+
if (__hasOwnProp$l.call(b, prop))
|
|
2882
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
2883
|
+
if (__getOwnPropSymbols$l)
|
|
2884
|
+
for (var prop of __getOwnPropSymbols$l(b)) {
|
|
2885
|
+
if (__propIsEnum$l.call(b, prop))
|
|
2886
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
2766
2887
|
}
|
|
2767
2888
|
return a;
|
|
2768
2889
|
};
|
|
2769
|
-
var __spreadProps$
|
|
2770
|
-
var __objRest$
|
|
2890
|
+
var __spreadProps$f = (a, b) => __defProps$f(a, __getOwnPropDescs$f(b));
|
|
2891
|
+
var __objRest$8 = (source, exclude) => {
|
|
2771
2892
|
var target = {};
|
|
2772
2893
|
for (var prop in source)
|
|
2773
|
-
if (__hasOwnProp$
|
|
2894
|
+
if (__hasOwnProp$l.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2774
2895
|
target[prop] = source[prop];
|
|
2775
|
-
if (source != null && __getOwnPropSymbols$
|
|
2776
|
-
for (var prop of __getOwnPropSymbols$
|
|
2777
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2896
|
+
if (source != null && __getOwnPropSymbols$l)
|
|
2897
|
+
for (var prop of __getOwnPropSymbols$l(source)) {
|
|
2898
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$l.call(source, prop))
|
|
2778
2899
|
target[prop] = source[prop];
|
|
2779
2900
|
}
|
|
2780
2901
|
return target;
|
|
@@ -2801,7 +2922,7 @@ const Modal = (props) => {
|
|
|
2801
2922
|
showCancel = true,
|
|
2802
2923
|
showOk = true,
|
|
2803
2924
|
afterClose
|
|
2804
|
-
} = _a, restProps = __objRest$
|
|
2925
|
+
} = _a, restProps = __objRest$8(_a, [
|
|
2805
2926
|
"error",
|
|
2806
2927
|
"okText",
|
|
2807
2928
|
"cancelText",
|
|
@@ -2856,7 +2977,7 @@ const Modal = (props) => {
|
|
|
2856
2977
|
}
|
|
2857
2978
|
return /* @__PURE__ */ React__default.createElement(
|
|
2858
2979
|
Modal$1,
|
|
2859
|
-
__spreadProps$
|
|
2980
|
+
__spreadProps$f(__spreadValues$l({
|
|
2860
2981
|
maskClosable,
|
|
2861
2982
|
className: cs(
|
|
2862
2983
|
className,
|
|
@@ -2891,7 +3012,7 @@ const Modal = (props) => {
|
|
|
2891
3012
|
prevText
|
|
2892
3013
|
), 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(
|
|
2893
3014
|
Button,
|
|
2894
|
-
__spreadValues$
|
|
3015
|
+
__spreadValues$l({
|
|
2895
3016
|
type: "quiet",
|
|
2896
3017
|
onMouseDown: (e) => {
|
|
2897
3018
|
e.preventDefault();
|
|
@@ -2905,7 +3026,7 @@ const Modal = (props) => {
|
|
|
2905
3026
|
cancelText
|
|
2906
3027
|
), showOk && /* @__PURE__ */ React__default.createElement(
|
|
2907
3028
|
Button,
|
|
2908
|
-
__spreadValues$
|
|
3029
|
+
__spreadValues$l({
|
|
2909
3030
|
onClick: (e) => {
|
|
2910
3031
|
var _a2, _b2;
|
|
2911
3032
|
onOk == null ? void 0 : onOk(e);
|
|
@@ -3057,19 +3178,19 @@ const Pagination = props => {
|
|
|
3057
3178
|
}))));
|
|
3058
3179
|
};
|
|
3059
3180
|
|
|
3060
|
-
var __defProp$
|
|
3061
|
-
var __getOwnPropSymbols$
|
|
3062
|
-
var __hasOwnProp$
|
|
3063
|
-
var __propIsEnum$
|
|
3064
|
-
var __defNormalProp$
|
|
3065
|
-
var __spreadValues$
|
|
3181
|
+
var __defProp$k = Object.defineProperty;
|
|
3182
|
+
var __getOwnPropSymbols$k = Object.getOwnPropertySymbols;
|
|
3183
|
+
var __hasOwnProp$k = Object.prototype.hasOwnProperty;
|
|
3184
|
+
var __propIsEnum$k = Object.prototype.propertyIsEnumerable;
|
|
3185
|
+
var __defNormalProp$k = (obj, key, value) => key in obj ? __defProp$k(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3186
|
+
var __spreadValues$k = (a, b) => {
|
|
3066
3187
|
for (var prop in b || (b = {}))
|
|
3067
|
-
if (__hasOwnProp$
|
|
3068
|
-
__defNormalProp$
|
|
3069
|
-
if (__getOwnPropSymbols$
|
|
3070
|
-
for (var prop of __getOwnPropSymbols$
|
|
3071
|
-
if (__propIsEnum$
|
|
3072
|
-
__defNormalProp$
|
|
3188
|
+
if (__hasOwnProp$k.call(b, prop))
|
|
3189
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
3190
|
+
if (__getOwnPropSymbols$k)
|
|
3191
|
+
for (var prop of __getOwnPropSymbols$k(b)) {
|
|
3192
|
+
if (__propIsEnum$k.call(b, prop))
|
|
3193
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
3073
3194
|
}
|
|
3074
3195
|
return a;
|
|
3075
3196
|
};
|
|
@@ -3082,52 +3203,52 @@ const Percent = ({
|
|
|
3082
3203
|
emptyProps
|
|
3083
3204
|
}) => {
|
|
3084
3205
|
if (isEmpty(rawValue)) {
|
|
3085
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
3206
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$k({}, emptyProps));
|
|
3086
3207
|
}
|
|
3087
3208
|
const { value, unit } = formatPercent(rawValue, decimals, saturated);
|
|
3088
3209
|
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));
|
|
3089
3210
|
};
|
|
3090
3211
|
|
|
3091
|
-
var __defProp$
|
|
3092
|
-
var __getOwnPropSymbols$
|
|
3093
|
-
var __hasOwnProp$
|
|
3094
|
-
var __propIsEnum$
|
|
3095
|
-
var __defNormalProp$
|
|
3096
|
-
var __spreadValues$
|
|
3212
|
+
var __defProp$j = Object.defineProperty;
|
|
3213
|
+
var __getOwnPropSymbols$j = Object.getOwnPropertySymbols;
|
|
3214
|
+
var __hasOwnProp$j = Object.prototype.hasOwnProperty;
|
|
3215
|
+
var __propIsEnum$j = Object.prototype.propertyIsEnumerable;
|
|
3216
|
+
var __defNormalProp$j = (obj, key, value) => key in obj ? __defProp$j(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3217
|
+
var __spreadValues$j = (a, b) => {
|
|
3097
3218
|
for (var prop in b || (b = {}))
|
|
3098
|
-
if (__hasOwnProp$
|
|
3099
|
-
__defNormalProp$
|
|
3100
|
-
if (__getOwnPropSymbols$
|
|
3101
|
-
for (var prop of __getOwnPropSymbols$
|
|
3102
|
-
if (__propIsEnum$
|
|
3103
|
-
__defNormalProp$
|
|
3219
|
+
if (__hasOwnProp$j.call(b, prop))
|
|
3220
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
3221
|
+
if (__getOwnPropSymbols$j)
|
|
3222
|
+
for (var prop of __getOwnPropSymbols$j(b)) {
|
|
3223
|
+
if (__propIsEnum$j.call(b, prop))
|
|
3224
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
3104
3225
|
}
|
|
3105
3226
|
return a;
|
|
3106
3227
|
};
|
|
3107
|
-
const Progress = (props) => /* @__PURE__ */ React__default.createElement(Progress$1, __spreadValues$
|
|
3228
|
+
const Progress = (props) => /* @__PURE__ */ React__default.createElement(Progress$1, __spreadValues$j({}, props));
|
|
3108
3229
|
|
|
3109
|
-
var __defProp$
|
|
3110
|
-
var __getOwnPropSymbols$
|
|
3111
|
-
var __hasOwnProp$
|
|
3112
|
-
var __propIsEnum$
|
|
3113
|
-
var __defNormalProp$
|
|
3230
|
+
var __defProp$i = Object.defineProperty;
|
|
3231
|
+
var __getOwnPropSymbols$i = Object.getOwnPropertySymbols;
|
|
3232
|
+
var __hasOwnProp$i = Object.prototype.hasOwnProperty;
|
|
3233
|
+
var __propIsEnum$i = Object.prototype.propertyIsEnumerable;
|
|
3234
|
+
var __defNormalProp$i = (obj, key, value) => key in obj ? __defProp$i(obj, key, {
|
|
3114
3235
|
enumerable: true,
|
|
3115
3236
|
configurable: true,
|
|
3116
3237
|
writable: true,
|
|
3117
3238
|
value
|
|
3118
3239
|
}) : obj[key] = value;
|
|
3119
|
-
var __spreadValues$
|
|
3120
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3121
|
-
if (__getOwnPropSymbols$
|
|
3122
|
-
if (__propIsEnum$
|
|
3240
|
+
var __spreadValues$i = (a, b) => {
|
|
3241
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$i.call(b, prop)) __defNormalProp$i(a, prop, b[prop]);
|
|
3242
|
+
if (__getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(b)) {
|
|
3243
|
+
if (__propIsEnum$i.call(b, prop)) __defNormalProp$i(a, prop, b[prop]);
|
|
3123
3244
|
}
|
|
3124
3245
|
return a;
|
|
3125
3246
|
};
|
|
3126
|
-
var __objRest$
|
|
3247
|
+
var __objRest$7 = (source, exclude) => {
|
|
3127
3248
|
var target = {};
|
|
3128
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3129
|
-
if (source != null && __getOwnPropSymbols$
|
|
3130
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3249
|
+
for (var prop in source) if (__hasOwnProp$i.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3250
|
+
if (source != null && __getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(source)) {
|
|
3251
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$i.call(source, prop)) target[prop] = source[prop];
|
|
3131
3252
|
}
|
|
3132
3253
|
return target;
|
|
3133
3254
|
};
|
|
@@ -3143,7 +3264,7 @@ const Radio = _a => {
|
|
|
3143
3264
|
checked,
|
|
3144
3265
|
compact = false
|
|
3145
3266
|
} = _b,
|
|
3146
|
-
props = __objRest$
|
|
3267
|
+
props = __objRest$7(_b, ["children", "className", "checked", "compact"]);
|
|
3147
3268
|
const {
|
|
3148
3269
|
description
|
|
3149
3270
|
} = props;
|
|
@@ -3153,7 +3274,7 @@ const Radio = _a => {
|
|
|
3153
3274
|
className: cx("radio-description", Typo.Label.l4_regular)
|
|
3154
3275
|
}, description));
|
|
3155
3276
|
}
|
|
3156
|
-
return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Radio$1, __spreadValues$
|
|
3277
|
+
return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Radio$1, __spreadValues$i({
|
|
3157
3278
|
className: cx(className, RadioStyle, compact && "compact"),
|
|
3158
3279
|
checked: checked || false,
|
|
3159
3280
|
"data-test": context.name ? `${context.name}-${String(props.value)}` : String(props.value)
|
|
@@ -3165,13 +3286,13 @@ const RadioGroup = _c => {
|
|
|
3165
3286
|
children,
|
|
3166
3287
|
className
|
|
3167
3288
|
} = _d,
|
|
3168
|
-
props = __objRest$
|
|
3289
|
+
props = __objRest$7(_d, ["children", "className"]);
|
|
3169
3290
|
return /* @__PURE__ */React__default.createElement(KitRadioGroupContext.Provider, {
|
|
3170
3291
|
value: {
|
|
3171
3292
|
disabled: props.disabled,
|
|
3172
3293
|
name: props.name
|
|
3173
3294
|
}
|
|
3174
|
-
}, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$
|
|
3295
|
+
}, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$i({
|
|
3175
3296
|
className: cx(className, RadioGroupStyle)
|
|
3176
3297
|
}, props), children ? children : null));
|
|
3177
3298
|
};
|
|
@@ -3181,7 +3302,7 @@ const RadioButton = _e => {
|
|
|
3181
3302
|
children,
|
|
3182
3303
|
className
|
|
3183
3304
|
} = _f,
|
|
3184
|
-
props = __objRest$
|
|
3305
|
+
props = __objRest$7(_f, ["children", "className"]);
|
|
3185
3306
|
const {
|
|
3186
3307
|
type,
|
|
3187
3308
|
placeholder = "Label",
|
|
@@ -3227,46 +3348,46 @@ const RadioButton = _e => {
|
|
|
3227
3348
|
className: "ant-radio-button-input-label"
|
|
3228
3349
|
}, typeof children === "string" ? children : ""));
|
|
3229
3350
|
};
|
|
3230
|
-
return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$
|
|
3351
|
+
return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$i({
|
|
3231
3352
|
className: cx(className, RadioButtonStyle),
|
|
3232
3353
|
value: radioButtonValue
|
|
3233
3354
|
}, props), renderChildren());
|
|
3234
3355
|
};
|
|
3235
3356
|
|
|
3236
|
-
var __defProp$
|
|
3237
|
-
var __getOwnPropSymbols$
|
|
3238
|
-
var __hasOwnProp$
|
|
3239
|
-
var __propIsEnum$
|
|
3240
|
-
var __defNormalProp$
|
|
3241
|
-
var __spreadValues$
|
|
3357
|
+
var __defProp$h = Object.defineProperty;
|
|
3358
|
+
var __getOwnPropSymbols$h = Object.getOwnPropertySymbols;
|
|
3359
|
+
var __hasOwnProp$h = Object.prototype.hasOwnProperty;
|
|
3360
|
+
var __propIsEnum$h = Object.prototype.propertyIsEnumerable;
|
|
3361
|
+
var __defNormalProp$h = (obj, key, value) => key in obj ? __defProp$h(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3362
|
+
var __spreadValues$h = (a, b) => {
|
|
3242
3363
|
for (var prop in b || (b = {}))
|
|
3243
|
-
if (__hasOwnProp$
|
|
3244
|
-
__defNormalProp$
|
|
3245
|
-
if (__getOwnPropSymbols$
|
|
3246
|
-
for (var prop of __getOwnPropSymbols$
|
|
3247
|
-
if (__propIsEnum$
|
|
3248
|
-
__defNormalProp$
|
|
3364
|
+
if (__hasOwnProp$h.call(b, prop))
|
|
3365
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
3366
|
+
if (__getOwnPropSymbols$h)
|
|
3367
|
+
for (var prop of __getOwnPropSymbols$h(b)) {
|
|
3368
|
+
if (__propIsEnum$h.call(b, prop))
|
|
3369
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
3249
3370
|
}
|
|
3250
3371
|
return a;
|
|
3251
3372
|
};
|
|
3252
|
-
var __objRest$
|
|
3373
|
+
var __objRest$6 = (source, exclude) => {
|
|
3253
3374
|
var target = {};
|
|
3254
3375
|
for (var prop in source)
|
|
3255
|
-
if (__hasOwnProp$
|
|
3376
|
+
if (__hasOwnProp$h.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3256
3377
|
target[prop] = source[prop];
|
|
3257
|
-
if (source != null && __getOwnPropSymbols$
|
|
3258
|
-
for (var prop of __getOwnPropSymbols$
|
|
3259
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3378
|
+
if (source != null && __getOwnPropSymbols$h)
|
|
3379
|
+
for (var prop of __getOwnPropSymbols$h(source)) {
|
|
3380
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$h.call(source, prop))
|
|
3260
3381
|
target[prop] = source[prop];
|
|
3261
3382
|
}
|
|
3262
3383
|
return target;
|
|
3263
3384
|
};
|
|
3264
3385
|
const SearchInput = (props) => {
|
|
3265
|
-
const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$
|
|
3386
|
+
const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$6(_a, ["onChange", "debounceWait"]);
|
|
3266
3387
|
const onSearch = _.debounce(onChange, debounceWait);
|
|
3267
3388
|
return /* @__PURE__ */ React__default.createElement(
|
|
3268
3389
|
Input,
|
|
3269
|
-
__spreadValues$
|
|
3390
|
+
__spreadValues$h({
|
|
3270
3391
|
style: { width: 276 },
|
|
3271
3392
|
prefix: /* @__PURE__ */ React__default.createElement(SearchOutlined, null),
|
|
3272
3393
|
onChange: (e) => onSearch(e.target.value)
|
|
@@ -3274,19 +3395,19 @@ const SearchInput = (props) => {
|
|
|
3274
3395
|
);
|
|
3275
3396
|
};
|
|
3276
3397
|
|
|
3277
|
-
var __defProp$
|
|
3278
|
-
var __getOwnPropSymbols$
|
|
3279
|
-
var __hasOwnProp$
|
|
3280
|
-
var __propIsEnum$
|
|
3281
|
-
var __defNormalProp$
|
|
3282
|
-
var __spreadValues$
|
|
3398
|
+
var __defProp$g = Object.defineProperty;
|
|
3399
|
+
var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
|
|
3400
|
+
var __hasOwnProp$g = Object.prototype.hasOwnProperty;
|
|
3401
|
+
var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
|
|
3402
|
+
var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3403
|
+
var __spreadValues$g = (a, b) => {
|
|
3283
3404
|
for (var prop in b || (b = {}))
|
|
3284
|
-
if (__hasOwnProp$
|
|
3285
|
-
__defNormalProp$
|
|
3286
|
-
if (__getOwnPropSymbols$
|
|
3287
|
-
for (var prop of __getOwnPropSymbols$
|
|
3288
|
-
if (__propIsEnum$
|
|
3289
|
-
__defNormalProp$
|
|
3405
|
+
if (__hasOwnProp$g.call(b, prop))
|
|
3406
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
3407
|
+
if (__getOwnPropSymbols$g)
|
|
3408
|
+
for (var prop of __getOwnPropSymbols$g(b)) {
|
|
3409
|
+
if (__propIsEnum$g.call(b, prop))
|
|
3410
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
3290
3411
|
}
|
|
3291
3412
|
return a;
|
|
3292
3413
|
};
|
|
@@ -3300,7 +3421,7 @@ const Second = ({
|
|
|
3300
3421
|
}) => {
|
|
3301
3422
|
const { t } = useParrotTranslation();
|
|
3302
3423
|
if (isEmpty(rawValue)) {
|
|
3303
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
3424
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$g({}, emptyProps));
|
|
3304
3425
|
}
|
|
3305
3426
|
const { value, unit } = formatSeconds(rawValue, decimals);
|
|
3306
3427
|
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}`)));
|
|
@@ -3382,19 +3503,19 @@ const SimplePagination = props => {
|
|
|
3382
3503
|
})));
|
|
3383
3504
|
};
|
|
3384
3505
|
|
|
3385
|
-
var __defProp$
|
|
3386
|
-
var __getOwnPropSymbols$
|
|
3387
|
-
var __hasOwnProp$
|
|
3388
|
-
var __propIsEnum$
|
|
3389
|
-
var __defNormalProp$
|
|
3390
|
-
var __spreadValues$
|
|
3506
|
+
var __defProp$f = Object.defineProperty;
|
|
3507
|
+
var __getOwnPropSymbols$f = Object.getOwnPropertySymbols;
|
|
3508
|
+
var __hasOwnProp$f = Object.prototype.hasOwnProperty;
|
|
3509
|
+
var __propIsEnum$f = Object.prototype.propertyIsEnumerable;
|
|
3510
|
+
var __defNormalProp$f = (obj, key, value) => key in obj ? __defProp$f(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3511
|
+
var __spreadValues$f = (a, b) => {
|
|
3391
3512
|
for (var prop in b || (b = {}))
|
|
3392
|
-
if (__hasOwnProp$
|
|
3393
|
-
__defNormalProp$
|
|
3394
|
-
if (__getOwnPropSymbols$
|
|
3395
|
-
for (var prop of __getOwnPropSymbols$
|
|
3396
|
-
if (__propIsEnum$
|
|
3397
|
-
__defNormalProp$
|
|
3513
|
+
if (__hasOwnProp$f.call(b, prop))
|
|
3514
|
+
__defNormalProp$f(a, prop, b[prop]);
|
|
3515
|
+
if (__getOwnPropSymbols$f)
|
|
3516
|
+
for (var prop of __getOwnPropSymbols$f(b)) {
|
|
3517
|
+
if (__propIsEnum$f.call(b, prop))
|
|
3518
|
+
__defNormalProp$f(a, prop, b[prop]);
|
|
3398
3519
|
}
|
|
3399
3520
|
return a;
|
|
3400
3521
|
};
|
|
@@ -3406,37 +3527,37 @@ const Speed = ({
|
|
|
3406
3527
|
emptyProps
|
|
3407
3528
|
}) => {
|
|
3408
3529
|
if (isEmpty(rawValue)) {
|
|
3409
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
3530
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$f({}, emptyProps));
|
|
3410
3531
|
}
|
|
3411
3532
|
const { value, unit } = formatSpeed(rawValue, decimals);
|
|
3412
3533
|
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}`));
|
|
3413
3534
|
};
|
|
3414
3535
|
|
|
3415
|
-
var __defProp$
|
|
3416
|
-
var __defProps$
|
|
3417
|
-
var __getOwnPropDescs$
|
|
3418
|
-
var __getOwnPropSymbols$
|
|
3419
|
-
var __hasOwnProp$
|
|
3420
|
-
var __propIsEnum$
|
|
3421
|
-
var __defNormalProp$
|
|
3536
|
+
var __defProp$e = Object.defineProperty;
|
|
3537
|
+
var __defProps$e = Object.defineProperties;
|
|
3538
|
+
var __getOwnPropDescs$e = Object.getOwnPropertyDescriptors;
|
|
3539
|
+
var __getOwnPropSymbols$e = Object.getOwnPropertySymbols;
|
|
3540
|
+
var __hasOwnProp$e = Object.prototype.hasOwnProperty;
|
|
3541
|
+
var __propIsEnum$e = Object.prototype.propertyIsEnumerable;
|
|
3542
|
+
var __defNormalProp$e = (obj, key, value) => key in obj ? __defProp$e(obj, key, {
|
|
3422
3543
|
enumerable: true,
|
|
3423
3544
|
configurable: true,
|
|
3424
3545
|
writable: true,
|
|
3425
3546
|
value
|
|
3426
3547
|
}) : obj[key] = value;
|
|
3427
|
-
var __spreadValues$
|
|
3428
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3429
|
-
if (__getOwnPropSymbols$
|
|
3430
|
-
if (__propIsEnum$
|
|
3548
|
+
var __spreadValues$e = (a, b) => {
|
|
3549
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$e.call(b, prop)) __defNormalProp$e(a, prop, b[prop]);
|
|
3550
|
+
if (__getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(b)) {
|
|
3551
|
+
if (__propIsEnum$e.call(b, prop)) __defNormalProp$e(a, prop, b[prop]);
|
|
3431
3552
|
}
|
|
3432
3553
|
return a;
|
|
3433
3554
|
};
|
|
3434
|
-
var __spreadProps$
|
|
3435
|
-
var __objRest$
|
|
3555
|
+
var __spreadProps$e = (a, b) => __defProps$e(a, __getOwnPropDescs$e(b));
|
|
3556
|
+
var __objRest$5 = (source, exclude) => {
|
|
3436
3557
|
var target = {};
|
|
3437
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3438
|
-
if (source != null && __getOwnPropSymbols$
|
|
3439
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3558
|
+
for (var prop in source) if (__hasOwnProp$e.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3559
|
+
if (source != null && __getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(source)) {
|
|
3560
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$e.call(source, prop)) target[prop] = source[prop];
|
|
3440
3561
|
}
|
|
3441
3562
|
return target;
|
|
3442
3563
|
};
|
|
@@ -3452,46 +3573,46 @@ const Steps = props => {
|
|
|
3452
3573
|
containerClassname,
|
|
3453
3574
|
showStepCount
|
|
3454
3575
|
} = _a,
|
|
3455
|
-
stepsProps = __objRest$
|
|
3576
|
+
stepsProps = __objRest$5(_a, ["stepsConfig", "containerClassname", "showStepCount"]);
|
|
3456
3577
|
const titleWithCount = (_step, count) => /* @__PURE__ */React__default.createElement(React__default.Fragment, null, showStepCount ? /* @__PURE__ */React__default.createElement("span", {
|
|
3457
3578
|
className: "step-count"
|
|
3458
3579
|
}, count) : null, _step.title);
|
|
3459
3580
|
return /* @__PURE__ */React__default.createElement(StepsContainer, {
|
|
3460
3581
|
className: containerClassname
|
|
3461
|
-
}, /* @__PURE__ */React__default.createElement(Steps$1, __spreadProps$
|
|
3582
|
+
}, /* @__PURE__ */React__default.createElement(Steps$1, __spreadProps$e(__spreadValues$e({}, stepsProps), {
|
|
3462
3583
|
type: "default"
|
|
3463
|
-
}), (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */React__default.createElement(Steps$1.Step, __spreadProps$
|
|
3584
|
+
}), (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */React__default.createElement(Steps$1.Step, __spreadProps$e(__spreadValues$e({
|
|
3464
3585
|
key: index
|
|
3465
3586
|
}, step), {
|
|
3466
3587
|
title: titleWithCount(step, index + 1)
|
|
3467
3588
|
}))) : props.children));
|
|
3468
3589
|
};
|
|
3469
3590
|
|
|
3470
|
-
var __defProp$
|
|
3471
|
-
var __defProps$
|
|
3472
|
-
var __getOwnPropDescs$
|
|
3473
|
-
var __getOwnPropSymbols$
|
|
3474
|
-
var __hasOwnProp$
|
|
3475
|
-
var __propIsEnum$
|
|
3476
|
-
var __defNormalProp$
|
|
3591
|
+
var __defProp$d = Object.defineProperty;
|
|
3592
|
+
var __defProps$d = Object.defineProperties;
|
|
3593
|
+
var __getOwnPropDescs$d = Object.getOwnPropertyDescriptors;
|
|
3594
|
+
var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
|
|
3595
|
+
var __hasOwnProp$d = Object.prototype.hasOwnProperty;
|
|
3596
|
+
var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
|
|
3597
|
+
var __defNormalProp$d = (obj, key, value) => key in obj ? __defProp$d(obj, key, {
|
|
3477
3598
|
enumerable: true,
|
|
3478
3599
|
configurable: true,
|
|
3479
3600
|
writable: true,
|
|
3480
3601
|
value
|
|
3481
3602
|
}) : obj[key] = value;
|
|
3482
|
-
var __spreadValues$
|
|
3483
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3484
|
-
if (__getOwnPropSymbols$
|
|
3485
|
-
if (__propIsEnum$
|
|
3603
|
+
var __spreadValues$d = (a, b) => {
|
|
3604
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
|
|
3605
|
+
if (__getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(b)) {
|
|
3606
|
+
if (__propIsEnum$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
|
|
3486
3607
|
}
|
|
3487
3608
|
return a;
|
|
3488
3609
|
};
|
|
3489
|
-
var __spreadProps$
|
|
3490
|
-
var __objRest$
|
|
3610
|
+
var __spreadProps$d = (a, b) => __defProps$d(a, __getOwnPropDescs$d(b));
|
|
3611
|
+
var __objRest$4 = (source, exclude) => {
|
|
3491
3612
|
var target = {};
|
|
3492
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3493
|
-
if (source != null && __getOwnPropSymbols$
|
|
3494
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3613
|
+
for (var prop in source) if (__hasOwnProp$d.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3614
|
+
if (source != null && __getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(source)) {
|
|
3615
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$d.call(source, prop)) target[prop] = source[prop];
|
|
3495
3616
|
}
|
|
3496
3617
|
return target;
|
|
3497
3618
|
};
|
|
@@ -3503,7 +3624,7 @@ const Switch = _a => {
|
|
|
3503
3624
|
className,
|
|
3504
3625
|
checked
|
|
3505
3626
|
} = _b,
|
|
3506
|
-
props = __objRest$
|
|
3627
|
+
props = __objRest$4(_b, ["children", "className", "checked"]);
|
|
3507
3628
|
const Content = /*#__PURE__*/styled('span')({
|
|
3508
3629
|
name: "Content",
|
|
3509
3630
|
class: "c1to9vb9",
|
|
@@ -3511,7 +3632,7 @@ const Switch = _a => {
|
|
|
3511
3632
|
});
|
|
3512
3633
|
const classNames = [className, SwitchStyle, "switch"];
|
|
3513
3634
|
if (props.size === "large") classNames.push("ant-switch-large");
|
|
3514
|
-
return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Switch$1, __spreadProps$
|
|
3635
|
+
return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Switch$1, __spreadProps$d(__spreadValues$d({
|
|
3515
3636
|
className: cx(...classNames),
|
|
3516
3637
|
checked: checked || false
|
|
3517
3638
|
}, props), {
|
|
@@ -3597,26 +3718,26 @@ const ColumnTitle = props => {
|
|
|
3597
3718
|
}));
|
|
3598
3719
|
};
|
|
3599
3720
|
|
|
3600
|
-
var __defProp$
|
|
3601
|
-
var __defProps$
|
|
3602
|
-
var __getOwnPropDescs$
|
|
3603
|
-
var __getOwnPropSymbols$
|
|
3604
|
-
var __hasOwnProp$
|
|
3605
|
-
var __propIsEnum$
|
|
3606
|
-
var __defNormalProp$
|
|
3721
|
+
var __defProp$c = Object.defineProperty;
|
|
3722
|
+
var __defProps$c = Object.defineProperties;
|
|
3723
|
+
var __getOwnPropDescs$c = Object.getOwnPropertyDescriptors;
|
|
3724
|
+
var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
|
|
3725
|
+
var __hasOwnProp$c = Object.prototype.hasOwnProperty;
|
|
3726
|
+
var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
|
|
3727
|
+
var __defNormalProp$c = (obj, key, value) => key in obj ? __defProp$c(obj, key, {
|
|
3607
3728
|
enumerable: true,
|
|
3608
3729
|
configurable: true,
|
|
3609
3730
|
writable: true,
|
|
3610
3731
|
value
|
|
3611
3732
|
}) : obj[key] = value;
|
|
3612
|
-
var __spreadValues$
|
|
3613
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3614
|
-
if (__getOwnPropSymbols$
|
|
3615
|
-
if (__propIsEnum$
|
|
3733
|
+
var __spreadValues$c = (a, b) => {
|
|
3734
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
|
|
3735
|
+
if (__getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(b)) {
|
|
3736
|
+
if (__propIsEnum$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
|
|
3616
3737
|
}
|
|
3617
3738
|
return a;
|
|
3618
3739
|
};
|
|
3619
|
-
var __spreadProps$
|
|
3740
|
+
var __spreadProps$c = (a, b) => __defProps$c(a, __getOwnPropDescs$c(b));
|
|
3620
3741
|
const TableContainerStyle = "t1upn1sz";
|
|
3621
3742
|
const tableStyleCover = "tta5kd2";
|
|
3622
3743
|
const Table = props => {
|
|
@@ -3643,7 +3764,7 @@ const Table = props => {
|
|
|
3643
3764
|
const orderRef = useRef(null);
|
|
3644
3765
|
const hasScrollBard = useTableBodyHasScrollBar(wrapper, dataSource);
|
|
3645
3766
|
const _columns = useMemo(() => columns.map(column => {
|
|
3646
|
-
const _column = __spreadValues$
|
|
3767
|
+
const _column = __spreadValues$c({}, column);
|
|
3647
3768
|
if (_column.sorter && typeof _column.title !== "function") {
|
|
3648
3769
|
_column.title = /* @__PURE__ */React__default.createElement(ColumnTitle, {
|
|
3649
3770
|
title: column.title,
|
|
@@ -3680,12 +3801,12 @@ const Table = props => {
|
|
|
3680
3801
|
onSorterChange == null ? void 0 : onSorterChange(orderRef.current, sorter.columnKey);
|
|
3681
3802
|
}
|
|
3682
3803
|
},
|
|
3683
|
-
onRow: (record, index) => __spreadValues$
|
|
3804
|
+
onRow: (record, index) => __spreadValues$c({
|
|
3684
3805
|
onClick: evt => onRowClick == null ? void 0 : onRowClick(record, index, evt)
|
|
3685
3806
|
}, onRow == null ? void 0 : onRow(record, index)),
|
|
3686
3807
|
rowClassName,
|
|
3687
3808
|
scroll,
|
|
3688
|
-
rowSelection: rowSelection && __spreadProps$
|
|
3809
|
+
rowSelection: rowSelection && __spreadProps$c(__spreadValues$c({}, rowSelection), {
|
|
3689
3810
|
columnWidth: 32
|
|
3690
3811
|
}),
|
|
3691
3812
|
showSorterTooltip: false
|
|
@@ -3747,33 +3868,33 @@ const moveItemInArray = (array, fromIndex, toIndex) => {
|
|
|
3747
3868
|
return sortArr;
|
|
3748
3869
|
};
|
|
3749
3870
|
|
|
3750
|
-
var __defProp$
|
|
3751
|
-
var __defProps$
|
|
3752
|
-
var __getOwnPropDescs$
|
|
3753
|
-
var __getOwnPropSymbols$
|
|
3754
|
-
var __hasOwnProp$
|
|
3755
|
-
var __propIsEnum$
|
|
3756
|
-
var __defNormalProp$
|
|
3757
|
-
var __spreadValues$
|
|
3871
|
+
var __defProp$b = Object.defineProperty;
|
|
3872
|
+
var __defProps$b = Object.defineProperties;
|
|
3873
|
+
var __getOwnPropDescs$b = Object.getOwnPropertyDescriptors;
|
|
3874
|
+
var __getOwnPropSymbols$b = Object.getOwnPropertySymbols;
|
|
3875
|
+
var __hasOwnProp$b = Object.prototype.hasOwnProperty;
|
|
3876
|
+
var __propIsEnum$b = Object.prototype.propertyIsEnumerable;
|
|
3877
|
+
var __defNormalProp$b = (obj, key, value) => key in obj ? __defProp$b(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3878
|
+
var __spreadValues$b = (a, b) => {
|
|
3758
3879
|
for (var prop in b || (b = {}))
|
|
3759
|
-
if (__hasOwnProp$
|
|
3760
|
-
__defNormalProp$
|
|
3761
|
-
if (__getOwnPropSymbols$
|
|
3762
|
-
for (var prop of __getOwnPropSymbols$
|
|
3763
|
-
if (__propIsEnum$
|
|
3764
|
-
__defNormalProp$
|
|
3880
|
+
if (__hasOwnProp$b.call(b, prop))
|
|
3881
|
+
__defNormalProp$b(a, prop, b[prop]);
|
|
3882
|
+
if (__getOwnPropSymbols$b)
|
|
3883
|
+
for (var prop of __getOwnPropSymbols$b(b)) {
|
|
3884
|
+
if (__propIsEnum$b.call(b, prop))
|
|
3885
|
+
__defNormalProp$b(a, prop, b[prop]);
|
|
3765
3886
|
}
|
|
3766
3887
|
return a;
|
|
3767
3888
|
};
|
|
3768
|
-
var __spreadProps$
|
|
3769
|
-
var __objRest$
|
|
3889
|
+
var __spreadProps$b = (a, b) => __defProps$b(a, __getOwnPropDescs$b(b));
|
|
3890
|
+
var __objRest$3 = (source, exclude) => {
|
|
3770
3891
|
var target = {};
|
|
3771
3892
|
for (var prop in source)
|
|
3772
|
-
if (__hasOwnProp$
|
|
3893
|
+
if (__hasOwnProp$b.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3773
3894
|
target[prop] = source[prop];
|
|
3774
|
-
if (source != null && __getOwnPropSymbols$
|
|
3775
|
-
for (var prop of __getOwnPropSymbols$
|
|
3776
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3895
|
+
if (source != null && __getOwnPropSymbols$b)
|
|
3896
|
+
for (var prop of __getOwnPropSymbols$b(source)) {
|
|
3897
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$b.call(source, prop))
|
|
3777
3898
|
target[prop] = source[prop];
|
|
3778
3899
|
}
|
|
3779
3900
|
return target;
|
|
@@ -3789,7 +3910,7 @@ const AddRowButton = (props) => {
|
|
|
3789
3910
|
const _a = buttonProps || {}, {
|
|
3790
3911
|
disabled: disabledFromProp,
|
|
3791
3912
|
onClick
|
|
3792
|
-
} = _a, restButtonProps = __objRest$
|
|
3913
|
+
} = _a, restButtonProps = __objRest$3(_a, [
|
|
3793
3914
|
"disabled",
|
|
3794
3915
|
"onClick"
|
|
3795
3916
|
]);
|
|
@@ -3814,9 +3935,9 @@ const AddRowButton = (props) => {
|
|
|
3814
3935
|
if (!columns.length) {
|
|
3815
3936
|
return null;
|
|
3816
3937
|
}
|
|
3817
|
-
return CustomizedButton ? /* @__PURE__ */ React__default.createElement(CustomizedButton, __spreadValues$
|
|
3938
|
+
return CustomizedButton ? /* @__PURE__ */ React__default.createElement(CustomizedButton, __spreadValues$b({}, props)) : /* @__PURE__ */ React__default.createElement(AddRowButtonWrapper, { className }, /* @__PURE__ */ React__default.createElement(
|
|
3818
3939
|
Button,
|
|
3819
|
-
__spreadProps$
|
|
3940
|
+
__spreadProps$b(__spreadValues$b({}, restButtonProps), {
|
|
3820
3941
|
type: restButtonProps.type || "ordinary",
|
|
3821
3942
|
size: restButtonProps.size || "small",
|
|
3822
3943
|
icon: restButtonProps.icon || /* @__PURE__ */ React__default.createElement(PlusOutlined, null),
|
|
@@ -3890,7 +4011,7 @@ const CheckboxColumnHeaderCell = ({ onChange }) => {
|
|
|
3890
4011
|
},
|
|
3891
4012
|
[onChange]
|
|
3892
4013
|
);
|
|
3893
|
-
return /* @__PURE__ */ React__default.createElement(Checkbox
|
|
4014
|
+
return /* @__PURE__ */ React__default.createElement(Checkbox, { onChange: _onChange });
|
|
3894
4015
|
};
|
|
3895
4016
|
const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
|
|
3896
4017
|
const value = data[index][column.key] === void 0 ? column.defaultValue : data[index][column.key];
|
|
@@ -3902,7 +4023,7 @@ const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
|
|
|
3902
4023
|
);
|
|
3903
4024
|
const defaultChecked = column.defaultValue;
|
|
3904
4025
|
return /* @__PURE__ */ React__default.createElement(
|
|
3905
|
-
Checkbox
|
|
4026
|
+
Checkbox,
|
|
3906
4027
|
{
|
|
3907
4028
|
checked: value,
|
|
3908
4029
|
onChange: _onChange,
|
|
@@ -3911,25 +4032,25 @@ const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
|
|
|
3911
4032
|
);
|
|
3912
4033
|
};
|
|
3913
4034
|
|
|
3914
|
-
var __defProp$
|
|
3915
|
-
var __defProps$
|
|
3916
|
-
var __getOwnPropDescs$
|
|
3917
|
-
var __getOwnPropSymbols$
|
|
3918
|
-
var __hasOwnProp$
|
|
3919
|
-
var __propIsEnum$
|
|
3920
|
-
var __defNormalProp$
|
|
3921
|
-
var __spreadValues$
|
|
4035
|
+
var __defProp$a = Object.defineProperty;
|
|
4036
|
+
var __defProps$a = Object.defineProperties;
|
|
4037
|
+
var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
|
|
4038
|
+
var __getOwnPropSymbols$a = Object.getOwnPropertySymbols;
|
|
4039
|
+
var __hasOwnProp$a = Object.prototype.hasOwnProperty;
|
|
4040
|
+
var __propIsEnum$a = Object.prototype.propertyIsEnumerable;
|
|
4041
|
+
var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4042
|
+
var __spreadValues$a = (a, b) => {
|
|
3922
4043
|
for (var prop in b || (b = {}))
|
|
3923
|
-
if (__hasOwnProp$
|
|
3924
|
-
__defNormalProp$
|
|
3925
|
-
if (__getOwnPropSymbols$
|
|
3926
|
-
for (var prop of __getOwnPropSymbols$
|
|
3927
|
-
if (__propIsEnum$
|
|
3928
|
-
__defNormalProp$
|
|
4044
|
+
if (__hasOwnProp$a.call(b, prop))
|
|
4045
|
+
__defNormalProp$a(a, prop, b[prop]);
|
|
4046
|
+
if (__getOwnPropSymbols$a)
|
|
4047
|
+
for (var prop of __getOwnPropSymbols$a(b)) {
|
|
4048
|
+
if (__propIsEnum$a.call(b, prop))
|
|
4049
|
+
__defNormalProp$a(a, prop, b[prop]);
|
|
3929
4050
|
}
|
|
3930
4051
|
return a;
|
|
3931
4052
|
};
|
|
3932
|
-
var __spreadProps$
|
|
4053
|
+
var __spreadProps$a = (a, b) => __defProps$a(a, __getOwnPropDescs$a(b));
|
|
3933
4054
|
const InputPassword = (props) => {
|
|
3934
4055
|
const [showPassword, setShowPassword] = useState(false);
|
|
3935
4056
|
useEffect(() => {
|
|
@@ -3944,8 +4065,8 @@ const InputPassword = (props) => {
|
|
|
3944
4065
|
};
|
|
3945
4066
|
const inputType = showPassword ? "text" : "password";
|
|
3946
4067
|
return /* @__PURE__ */ React__default.createElement(
|
|
3947
|
-
Input
|
|
3948
|
-
__spreadProps$
|
|
4068
|
+
Input,
|
|
4069
|
+
__spreadProps$a(__spreadValues$a({}, props), {
|
|
3949
4070
|
type: inputType,
|
|
3950
4071
|
suffix: showPassword ? /* @__PURE__ */ React__default.createElement(
|
|
3951
4072
|
EyeOutlined,
|
|
@@ -3965,9 +4086,9 @@ const InputPassword = (props) => {
|
|
|
3965
4086
|
};
|
|
3966
4087
|
const CustomInput = (props) => {
|
|
3967
4088
|
if (props.type === "password") {
|
|
3968
|
-
return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$
|
|
4089
|
+
return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$a({}, props));
|
|
3969
4090
|
}
|
|
3970
|
-
return /* @__PURE__ */ React__default.createElement(Input
|
|
4091
|
+
return /* @__PURE__ */ React__default.createElement(Input, __spreadValues$a({}, props));
|
|
3971
4092
|
};
|
|
3972
4093
|
const InputColumnHeaderCell = ({ disabled, column, onChange, onBlur, onVisibleChange }) => {
|
|
3973
4094
|
const _onChange = (e) => {
|
|
@@ -3995,7 +4116,8 @@ const InputColumnBodyCell = ({
|
|
|
3995
4116
|
disabled,
|
|
3996
4117
|
onChange,
|
|
3997
4118
|
onBlur,
|
|
3998
|
-
visible
|
|
4119
|
+
visible,
|
|
4120
|
+
error
|
|
3999
4121
|
}) => {
|
|
4000
4122
|
const placeHolderValue = column.type === "password" ? "" : latestData[index][column.key];
|
|
4001
4123
|
const _onChange = (e) => {
|
|
@@ -4013,7 +4135,8 @@ const InputColumnBodyCell = ({
|
|
|
4013
4135
|
placeholder: placeHolderValue || column.placeholder,
|
|
4014
4136
|
onChange: _onChange,
|
|
4015
4137
|
onBlur,
|
|
4016
|
-
visible
|
|
4138
|
+
visible,
|
|
4139
|
+
error
|
|
4017
4140
|
}
|
|
4018
4141
|
);
|
|
4019
4142
|
};
|
|
@@ -4089,25 +4212,25 @@ var ValidateTriggerType = /* @__PURE__ */ ((ValidateTriggerType2) => {
|
|
|
4089
4212
|
return ValidateTriggerType2;
|
|
4090
4213
|
})(ValidateTriggerType || {});
|
|
4091
4214
|
|
|
4092
|
-
var __defProp$
|
|
4093
|
-
var __defProps$
|
|
4094
|
-
var __getOwnPropDescs$
|
|
4095
|
-
var __getOwnPropSymbols$
|
|
4096
|
-
var __hasOwnProp$
|
|
4097
|
-
var __propIsEnum$
|
|
4098
|
-
var __defNormalProp$
|
|
4099
|
-
var __spreadValues$
|
|
4215
|
+
var __defProp$9 = Object.defineProperty;
|
|
4216
|
+
var __defProps$9 = Object.defineProperties;
|
|
4217
|
+
var __getOwnPropDescs$9 = Object.getOwnPropertyDescriptors;
|
|
4218
|
+
var __getOwnPropSymbols$9 = Object.getOwnPropertySymbols;
|
|
4219
|
+
var __hasOwnProp$9 = Object.prototype.hasOwnProperty;
|
|
4220
|
+
var __propIsEnum$9 = Object.prototype.propertyIsEnumerable;
|
|
4221
|
+
var __defNormalProp$9 = (obj, key, value) => key in obj ? __defProp$9(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4222
|
+
var __spreadValues$9 = (a, b) => {
|
|
4100
4223
|
for (var prop in b || (b = {}))
|
|
4101
|
-
if (__hasOwnProp$
|
|
4102
|
-
__defNormalProp$
|
|
4103
|
-
if (__getOwnPropSymbols$
|
|
4104
|
-
for (var prop of __getOwnPropSymbols$
|
|
4105
|
-
if (__propIsEnum$
|
|
4106
|
-
__defNormalProp$
|
|
4224
|
+
if (__hasOwnProp$9.call(b, prop))
|
|
4225
|
+
__defNormalProp$9(a, prop, b[prop]);
|
|
4226
|
+
if (__getOwnPropSymbols$9)
|
|
4227
|
+
for (var prop of __getOwnPropSymbols$9(b)) {
|
|
4228
|
+
if (__propIsEnum$9.call(b, prop))
|
|
4229
|
+
__defNormalProp$9(a, prop, b[prop]);
|
|
4107
4230
|
}
|
|
4108
4231
|
return a;
|
|
4109
4232
|
};
|
|
4110
|
-
var __spreadProps$
|
|
4233
|
+
var __spreadProps$9 = (a, b) => __defProps$9(a, __getOwnPropDescs$9(b));
|
|
4111
4234
|
const TableFormBodyCell = (props) => {
|
|
4112
4235
|
const {
|
|
4113
4236
|
column,
|
|
@@ -4120,16 +4243,26 @@ const TableFormBodyCell = (props) => {
|
|
|
4120
4243
|
disabled,
|
|
4121
4244
|
onChange,
|
|
4122
4245
|
onBlur,
|
|
4123
|
-
validateAll
|
|
4246
|
+
validateAll,
|
|
4247
|
+
error
|
|
4124
4248
|
} = props;
|
|
4125
4249
|
const [validateResult, setValidateResult] = useState();
|
|
4126
4250
|
const isTouched = useRef(false);
|
|
4127
4251
|
const width = typeof column.width === "number" ? column.width + "px" : column.width;
|
|
4252
|
+
const isCellErrorStyle = Boolean((validateResult == null ? void 0 : validateResult.isError) || isRowError);
|
|
4253
|
+
useEffect(() => {
|
|
4254
|
+
setValidateResult(
|
|
4255
|
+
error ? {
|
|
4256
|
+
msg: error,
|
|
4257
|
+
isError: true
|
|
4258
|
+
} : void 0
|
|
4259
|
+
);
|
|
4260
|
+
}, [error]);
|
|
4128
4261
|
const triggerValidate = useCallback(
|
|
4129
4262
|
(currentValue) => {
|
|
4130
4263
|
var _a;
|
|
4131
4264
|
const value = currentValue || data[rowIndex][column.key];
|
|
4132
|
-
const rowData = __spreadProps$
|
|
4265
|
+
const rowData = __spreadProps$9(__spreadValues$9({}, data[rowIndex]), { [column.key]: value });
|
|
4133
4266
|
const rowValidateRes = getRowValidateResult(rowData);
|
|
4134
4267
|
if (rowValidateRes) {
|
|
4135
4268
|
return;
|
|
@@ -4152,7 +4285,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4152
4285
|
}, [validateAll, triggerValidate]);
|
|
4153
4286
|
const _onChange = (value, data2) => {
|
|
4154
4287
|
const newData = data2.map(
|
|
4155
|
-
(row, i) => i === rowIndex ? __spreadProps$
|
|
4288
|
+
(row, i) => i === rowIndex ? __spreadProps$9(__spreadValues$9({}, row), { [column.key]: value }) : row
|
|
4156
4289
|
);
|
|
4157
4290
|
onChange == null ? void 0 : onChange(newData, rowIndex, column.key);
|
|
4158
4291
|
if (validateTriggerType === ValidateTriggerType.Normal && isTouched.current || validateTriggerType === ValidateTriggerType.Aggressive) {
|
|
@@ -4177,6 +4310,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4177
4310
|
latestData,
|
|
4178
4311
|
column,
|
|
4179
4312
|
visible: props.visible,
|
|
4313
|
+
error: isCellErrorStyle,
|
|
4180
4314
|
onChange: (val) => {
|
|
4181
4315
|
_onChange(val, data);
|
|
4182
4316
|
},
|
|
@@ -4194,7 +4328,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4194
4328
|
},
|
|
4195
4329
|
onBlur: _onBlur,
|
|
4196
4330
|
rowIndex,
|
|
4197
|
-
error:
|
|
4331
|
+
error: isCellErrorStyle
|
|
4198
4332
|
}) : renderDefaultComponent();
|
|
4199
4333
|
const CellDescription = useMemo(() => {
|
|
4200
4334
|
var _a;
|
|
@@ -4220,7 +4354,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4220
4354
|
/* @__PURE__ */ React__default.createElement(
|
|
4221
4355
|
FormItem,
|
|
4222
4356
|
{
|
|
4223
|
-
validateStatus:
|
|
4357
|
+
validateStatus: isCellErrorStyle ? "error" : "",
|
|
4224
4358
|
message: isRowError ? "" : validateResult == null ? void 0 : validateResult.msg
|
|
4225
4359
|
},
|
|
4226
4360
|
Cell
|
|
@@ -4229,26 +4363,55 @@ const TableFormBodyCell = (props) => {
|
|
|
4229
4363
|
);
|
|
4230
4364
|
};
|
|
4231
4365
|
|
|
4232
|
-
var __defProp$
|
|
4233
|
-
var __defProps$
|
|
4234
|
-
var __getOwnPropDescs$
|
|
4235
|
-
var __getOwnPropSymbols$
|
|
4236
|
-
var __hasOwnProp$
|
|
4237
|
-
var __propIsEnum$
|
|
4238
|
-
var __defNormalProp$
|
|
4239
|
-
var __spreadValues$
|
|
4366
|
+
var __defProp$8 = Object.defineProperty;
|
|
4367
|
+
var __defProps$8 = Object.defineProperties;
|
|
4368
|
+
var __getOwnPropDescs$8 = Object.getOwnPropertyDescriptors;
|
|
4369
|
+
var __getOwnPropSymbols$8 = Object.getOwnPropertySymbols;
|
|
4370
|
+
var __hasOwnProp$8 = Object.prototype.hasOwnProperty;
|
|
4371
|
+
var __propIsEnum$8 = Object.prototype.propertyIsEnumerable;
|
|
4372
|
+
var __defNormalProp$8 = (obj, key, value) => key in obj ? __defProp$8(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4373
|
+
var __spreadValues$8 = (a, b) => {
|
|
4240
4374
|
for (var prop in b || (b = {}))
|
|
4241
|
-
if (__hasOwnProp$
|
|
4242
|
-
__defNormalProp$
|
|
4243
|
-
if (__getOwnPropSymbols$
|
|
4244
|
-
for (var prop of __getOwnPropSymbols$
|
|
4245
|
-
if (__propIsEnum$
|
|
4246
|
-
__defNormalProp$
|
|
4375
|
+
if (__hasOwnProp$8.call(b, prop))
|
|
4376
|
+
__defNormalProp$8(a, prop, b[prop]);
|
|
4377
|
+
if (__getOwnPropSymbols$8)
|
|
4378
|
+
for (var prop of __getOwnPropSymbols$8(b)) {
|
|
4379
|
+
if (__propIsEnum$8.call(b, prop))
|
|
4380
|
+
__defNormalProp$8(a, prop, b[prop]);
|
|
4247
4381
|
}
|
|
4248
4382
|
return a;
|
|
4249
4383
|
};
|
|
4250
|
-
var __spreadProps$
|
|
4384
|
+
var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
|
|
4385
|
+
const TableFormRowDeleteAction = (props) => {
|
|
4386
|
+
var _a, _b, _c, _d;
|
|
4387
|
+
const { deleteConfig, row, updateData, rowIndex, data } = props;
|
|
4388
|
+
const { t } = useParrotTranslation();
|
|
4389
|
+
if (typeof (row == null ? void 0 : row.deletable) === "function" && !row.deletable(rowIndex, data)) {
|
|
4390
|
+
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null);
|
|
4391
|
+
}
|
|
4392
|
+
const disableActionsFromRowConfig = typeof (row == null ? void 0 : row.disableActions) === "object" ? row.disableActions : (_b = (_a = row == null ? void 0 : row.disableActions) == null ? void 0 : _a.call(row, rowIndex, data)) != null ? _b : [];
|
|
4393
|
+
const isRowDeleteDisabled = (_d = disableActionsFromRowConfig.includes("delete") || ((_c = deleteConfig == null ? void 0 : deleteConfig.specifyRowDeleteDisabled) == null ? void 0 : _c.call(deleteConfig, rowIndex, data))) != null ? _d : false;
|
|
4394
|
+
const DeleteIcon = /* @__PURE__ */ React__default.createElement(
|
|
4395
|
+
Icon,
|
|
4396
|
+
{
|
|
4397
|
+
"data-testid": "eagle-table-form-row-action",
|
|
4398
|
+
className: cx("delete-row-icon", isRowDeleteDisabled && "disabled"),
|
|
4399
|
+
src: XmarkRemove16SecondaryIcon,
|
|
4400
|
+
hoverSrc: isRowDeleteDisabled ? void 0 : XmarkRemove16RegularRedIcon,
|
|
4401
|
+
onClick: () => {
|
|
4402
|
+
if (isRowDeleteDisabled)
|
|
4403
|
+
return;
|
|
4404
|
+
const newData = [...data];
|
|
4405
|
+
newData.splice(rowIndex, 1);
|
|
4406
|
+
updateData(newData);
|
|
4407
|
+
}
|
|
4408
|
+
}
|
|
4409
|
+
);
|
|
4410
|
+
const DeleteAction = isRowDeleteDisabled ? DeleteIcon : /* @__PURE__ */ React__default.createElement(Tooltip, { title: t("components.remove") }, DeleteIcon);
|
|
4411
|
+
return DeleteAction;
|
|
4412
|
+
};
|
|
4251
4413
|
const TableFormRow = (props) => {
|
|
4414
|
+
var _a;
|
|
4252
4415
|
const {
|
|
4253
4416
|
data,
|
|
4254
4417
|
columns,
|
|
@@ -4261,55 +4424,35 @@ const TableFormRow = (props) => {
|
|
|
4261
4424
|
provided,
|
|
4262
4425
|
snapshot,
|
|
4263
4426
|
validateTriggerType = ValidateTriggerType.Normal,
|
|
4427
|
+
row,
|
|
4428
|
+
errors = [],
|
|
4264
4429
|
updateData,
|
|
4265
4430
|
onBodyBlur,
|
|
4266
4431
|
renderRowDescription,
|
|
4267
|
-
rowValidator,
|
|
4268
4432
|
validateAll
|
|
4269
4433
|
} = props;
|
|
4270
|
-
const { t } = useParrotTranslation();
|
|
4271
4434
|
const rowData = data[rowIndex];
|
|
4272
|
-
const
|
|
4273
|
-
const
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
);
|
|
4281
|
-
const RowActions = useMemo(() => {
|
|
4282
|
-
var _a;
|
|
4283
|
-
const isRowDeleteDisabled = (_a = deleteConfig == null ? void 0 : deleteConfig.specifyRowDeleteDisabled) == null ? void 0 : _a.call(
|
|
4284
|
-
deleteConfig,
|
|
4285
|
-
rowIndex,
|
|
4286
|
-
data
|
|
4287
|
-
);
|
|
4288
|
-
const DeleteIcon = /* @__PURE__ */ React__default.createElement(
|
|
4289
|
-
Icon,
|
|
4290
|
-
{
|
|
4291
|
-
className: cx("delete-row-icon", isRowDeleteDisabled && "disabled"),
|
|
4292
|
-
src: XmarkRemove16SecondaryIcon,
|
|
4293
|
-
hoverSrc: isRowDeleteDisabled ? void 0 : XmarkRemove16RegularRedIcon,
|
|
4294
|
-
onClick: () => {
|
|
4295
|
-
if (isRowDeleteDisabled)
|
|
4296
|
-
return;
|
|
4297
|
-
deleteRow(rowIndex, data);
|
|
4298
|
-
}
|
|
4299
|
-
}
|
|
4300
|
-
);
|
|
4301
|
-
const FinalRenderIcon = isRowDeleteDisabled ? DeleteIcon : /* @__PURE__ */ React__default.createElement(Tooltip, { title: t("components.remove") }, DeleteIcon);
|
|
4302
|
-
return (deleteConfig == null ? void 0 : deleteConfig.deletable) ? [FinalRenderIcon] : void 0;
|
|
4303
|
-
}, [deleteConfig, rowIndex, data, t, deleteRow]);
|
|
4435
|
+
const errorFromProps = errors[rowIndex];
|
|
4436
|
+
const rowLevelError = typeof errorFromProps === "string" ? errorFromProps : void 0;
|
|
4437
|
+
const [rowError, setRowError] = useState(rowLevelError);
|
|
4438
|
+
const rowValidator = (row == null ? void 0 : row.validator) || props.rowValidator;
|
|
4439
|
+
const cellsLevelError = errorFromProps && typeof errorFromProps === "object" ? errorFromProps : null;
|
|
4440
|
+
useEffect(() => {
|
|
4441
|
+
setRowError(rowLevelError);
|
|
4442
|
+
}, [rowLevelError]);
|
|
4443
|
+
const rowDeletable = typeof (row == null ? void 0 : row.deletable) === "boolean" ? row.deletable : (_a = typeof (row == null ? void 0 : row.deletable) === "function" || (deleteConfig == null ? void 0 : deleteConfig.deletable)) != null ? _a : false;
|
|
4304
4444
|
const getRowValidateResult = useCallback(
|
|
4305
4445
|
(rowData2) => {
|
|
4306
|
-
|
|
4446
|
+
if (!rowValidator)
|
|
4447
|
+
return rowLevelError;
|
|
4448
|
+
const result = rowValidator(rowIndex, rowData2);
|
|
4307
4449
|
setRowError(result);
|
|
4308
4450
|
return result;
|
|
4309
4451
|
},
|
|
4310
|
-
[rowValidator, rowIndex]
|
|
4452
|
+
[rowValidator, rowIndex, rowLevelError]
|
|
4311
4453
|
);
|
|
4312
4454
|
const Cells = columns.map((col) => {
|
|
4455
|
+
const cellError = cellsLevelError == null ? void 0 : cellsLevelError[col.key];
|
|
4313
4456
|
return /* @__PURE__ */ React__default.createElement(
|
|
4314
4457
|
TableFormBodyCell,
|
|
4315
4458
|
{
|
|
@@ -4325,12 +4468,13 @@ const TableFormRow = (props) => {
|
|
|
4325
4468
|
validateTriggerType,
|
|
4326
4469
|
isRowError: !!rowError,
|
|
4327
4470
|
getRowValidateResult,
|
|
4328
|
-
validateAll
|
|
4471
|
+
validateAll,
|
|
4472
|
+
error: cellError
|
|
4329
4473
|
}
|
|
4330
4474
|
);
|
|
4331
4475
|
});
|
|
4332
4476
|
const DraggableHandle = useMemo(
|
|
4333
|
-
() => draggable && provided ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, __spreadValues$
|
|
4477
|
+
() => draggable && provided ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, __spreadValues$8({}, provided.dragHandleProps), /* @__PURE__ */ React__default.createElement(
|
|
4334
4478
|
Icon,
|
|
4335
4479
|
{
|
|
4336
4480
|
src: HandlePoint816SecondaryIcon,
|
|
@@ -4340,22 +4484,35 @@ const TableFormRow = (props) => {
|
|
|
4340
4484
|
[draggable, provided]
|
|
4341
4485
|
);
|
|
4342
4486
|
const RowDescription = useMemo(() => {
|
|
4343
|
-
const
|
|
4487
|
+
const rowDescFuncParams = {
|
|
4344
4488
|
rowIndex,
|
|
4345
4489
|
rowData,
|
|
4346
4490
|
latestData
|
|
4347
|
-
}
|
|
4348
|
-
|
|
4349
|
-
|
|
4491
|
+
};
|
|
4492
|
+
const DescriptionResult = typeof (row == null ? void 0 : row.descriptions) == "object" ? row.descriptions[rowIndex] : typeof (row == null ? void 0 : row.customizedDescription) === "function" ? row.customizedDescription(rowDescFuncParams) : (renderRowDescription == null ? void 0 : renderRowDescription(rowDescFuncParams)) || null;
|
|
4493
|
+
return typeof DescriptionResult === "string" ? /* @__PURE__ */ React__default.createElement("p", { className: cx(Typo.Label.l4_regular, "row-description") }, DescriptionResult) : DescriptionResult;
|
|
4494
|
+
}, [rowIndex, rowData, latestData, renderRowDescription, row]);
|
|
4350
4495
|
return /* @__PURE__ */ React__default.createElement(
|
|
4351
4496
|
List.Item,
|
|
4352
4497
|
{
|
|
4353
4498
|
key: rowIndex,
|
|
4499
|
+
"data-testid": "eagle-table-form-row-for-test",
|
|
4354
4500
|
className: cx(
|
|
4355
4501
|
"eagle-table-form-row",
|
|
4356
4502
|
(snapshot == null ? void 0 : snapshot.isDragging) && "isDragging"
|
|
4357
4503
|
),
|
|
4358
|
-
actions:
|
|
4504
|
+
actions: rowDeletable ? [
|
|
4505
|
+
/* @__PURE__ */ React__default.createElement(
|
|
4506
|
+
TableFormRowDeleteAction,
|
|
4507
|
+
{
|
|
4508
|
+
data,
|
|
4509
|
+
rowIndex,
|
|
4510
|
+
deleteConfig,
|
|
4511
|
+
row,
|
|
4512
|
+
updateData
|
|
4513
|
+
}
|
|
4514
|
+
)
|
|
4515
|
+
] : void 0
|
|
4359
4516
|
},
|
|
4360
4517
|
DraggableHandle,
|
|
4361
4518
|
Cells,
|
|
@@ -4379,7 +4536,7 @@ const TableFormBodyRows = memo((props) => {
|
|
|
4379
4536
|
);
|
|
4380
4537
|
return draggable ? /* @__PURE__ */ React__default.createElement(DragDropContext, { onDragEnd }, /* @__PURE__ */ React__default.createElement(Droppable, { droppableId: "droppable" }, (provided) => /* @__PURE__ */ React__default.createElement(
|
|
4381
4538
|
"div",
|
|
4382
|
-
__spreadValues$
|
|
4539
|
+
__spreadValues$8({
|
|
4383
4540
|
className: "draggable-container",
|
|
4384
4541
|
ref: provided.innerRef
|
|
4385
4542
|
}, provided.droppableProps),
|
|
@@ -4390,9 +4547,9 @@ const TableFormBodyRows = memo((props) => {
|
|
|
4390
4547
|
key: `draggable-id-${i}`,
|
|
4391
4548
|
index: i
|
|
4392
4549
|
},
|
|
4393
|
-
(provided2, snapshot) => /* @__PURE__ */ React__default.createElement("div", __spreadValues$
|
|
4550
|
+
(provided2, snapshot) => /* @__PURE__ */ React__default.createElement("div", __spreadValues$8({ ref: provided2.innerRef }, provided2.draggableProps), /* @__PURE__ */ React__default.createElement(
|
|
4394
4551
|
TableFormRow,
|
|
4395
|
-
__spreadProps$
|
|
4552
|
+
__spreadProps$8(__spreadValues$8({}, props), {
|
|
4396
4553
|
rowIndex: i,
|
|
4397
4554
|
provided: provided2,
|
|
4398
4555
|
snapshot
|
|
@@ -4400,28 +4557,28 @@ const TableFormBodyRows = memo((props) => {
|
|
|
4400
4557
|
))
|
|
4401
4558
|
)),
|
|
4402
4559
|
provided.placeholder
|
|
4403
|
-
))) : /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, data.map((_d, i) => /* @__PURE__ */ React__default.createElement(TableFormRow, __spreadProps$
|
|
4560
|
+
))) : /* @__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}` }))));
|
|
4404
4561
|
});
|
|
4405
4562
|
|
|
4406
|
-
var __defProp$
|
|
4407
|
-
var __defProps$
|
|
4408
|
-
var __getOwnPropDescs$
|
|
4409
|
-
var __getOwnPropSymbols$
|
|
4410
|
-
var __hasOwnProp$
|
|
4411
|
-
var __propIsEnum$
|
|
4412
|
-
var __defNormalProp$
|
|
4413
|
-
var __spreadValues$
|
|
4563
|
+
var __defProp$7 = Object.defineProperty;
|
|
4564
|
+
var __defProps$7 = Object.defineProperties;
|
|
4565
|
+
var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
|
|
4566
|
+
var __getOwnPropSymbols$7 = Object.getOwnPropertySymbols;
|
|
4567
|
+
var __hasOwnProp$7 = Object.prototype.hasOwnProperty;
|
|
4568
|
+
var __propIsEnum$7 = Object.prototype.propertyIsEnumerable;
|
|
4569
|
+
var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4570
|
+
var __spreadValues$7 = (a, b) => {
|
|
4414
4571
|
for (var prop in b || (b = {}))
|
|
4415
|
-
if (__hasOwnProp$
|
|
4416
|
-
__defNormalProp$
|
|
4417
|
-
if (__getOwnPropSymbols$
|
|
4418
|
-
for (var prop of __getOwnPropSymbols$
|
|
4419
|
-
if (__propIsEnum$
|
|
4420
|
-
__defNormalProp$
|
|
4572
|
+
if (__hasOwnProp$7.call(b, prop))
|
|
4573
|
+
__defNormalProp$7(a, prop, b[prop]);
|
|
4574
|
+
if (__getOwnPropSymbols$7)
|
|
4575
|
+
for (var prop of __getOwnPropSymbols$7(b)) {
|
|
4576
|
+
if (__propIsEnum$7.call(b, prop))
|
|
4577
|
+
__defNormalProp$7(a, prop, b[prop]);
|
|
4421
4578
|
}
|
|
4422
4579
|
return a;
|
|
4423
4580
|
};
|
|
4424
|
-
var __spreadProps$
|
|
4581
|
+
var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
|
|
4425
4582
|
const BatchInputListHeaderCell = (props) => {
|
|
4426
4583
|
const { column, disabled, data, disableBatchFilling, onBlur, onChange } = props;
|
|
4427
4584
|
const [errMsg, setErrMsg] = useState();
|
|
@@ -4433,7 +4590,7 @@ const BatchInputListHeaderCell = (props) => {
|
|
|
4433
4590
|
setErrMsg(err || void 0);
|
|
4434
4591
|
const shouldAutoIncrease = column.type !== "password" && column.autoIncrease;
|
|
4435
4592
|
const newData = data.map((cell, rowIndex) => {
|
|
4436
|
-
return __spreadProps$
|
|
4593
|
+
return __spreadProps$7(__spreadValues$7({}, cell), {
|
|
4437
4594
|
[column.key]: shouldAutoIncrease && typeof value === "string" ? increaseLastNumber(value, rowIndex) : value
|
|
4438
4595
|
});
|
|
4439
4596
|
});
|
|
@@ -4450,7 +4607,7 @@ const BatchInputListHeaderCell = (props) => {
|
|
|
4450
4607
|
const CellComponent = ColumnHeaderImpls[column.type];
|
|
4451
4608
|
return /* @__PURE__ */ React__default.createElement(
|
|
4452
4609
|
CellComponent,
|
|
4453
|
-
__spreadProps$
|
|
4610
|
+
__spreadProps$7(__spreadValues$7({}, props), {
|
|
4454
4611
|
column,
|
|
4455
4612
|
onChange: headerOnChange,
|
|
4456
4613
|
onBlur: _onBlur
|
|
@@ -4485,51 +4642,56 @@ const BatchInputListHeaderCell = (props) => {
|
|
|
4485
4642
|
);
|
|
4486
4643
|
};
|
|
4487
4644
|
|
|
4488
|
-
var __defProp$
|
|
4489
|
-
var __defProps$
|
|
4490
|
-
var __getOwnPropDescs$
|
|
4491
|
-
var __getOwnPropSymbols$
|
|
4492
|
-
var __hasOwnProp$
|
|
4493
|
-
var __propIsEnum$
|
|
4494
|
-
var __defNormalProp$
|
|
4495
|
-
var __spreadValues$
|
|
4645
|
+
var __defProp$6 = Object.defineProperty;
|
|
4646
|
+
var __defProps$6 = Object.defineProperties;
|
|
4647
|
+
var __getOwnPropDescs$6 = Object.getOwnPropertyDescriptors;
|
|
4648
|
+
var __getOwnPropSymbols$6 = Object.getOwnPropertySymbols;
|
|
4649
|
+
var __hasOwnProp$6 = Object.prototype.hasOwnProperty;
|
|
4650
|
+
var __propIsEnum$6 = Object.prototype.propertyIsEnumerable;
|
|
4651
|
+
var __defNormalProp$6 = (obj, key, value) => key in obj ? __defProp$6(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4652
|
+
var __spreadValues$6 = (a, b) => {
|
|
4496
4653
|
for (var prop in b || (b = {}))
|
|
4497
|
-
if (__hasOwnProp$
|
|
4498
|
-
__defNormalProp$
|
|
4499
|
-
if (__getOwnPropSymbols$
|
|
4500
|
-
for (var prop of __getOwnPropSymbols$
|
|
4501
|
-
if (__propIsEnum$
|
|
4502
|
-
__defNormalProp$
|
|
4654
|
+
if (__hasOwnProp$6.call(b, prop))
|
|
4655
|
+
__defNormalProp$6(a, prop, b[prop]);
|
|
4656
|
+
if (__getOwnPropSymbols$6)
|
|
4657
|
+
for (var prop of __getOwnPropSymbols$6(b)) {
|
|
4658
|
+
if (__propIsEnum$6.call(b, prop))
|
|
4659
|
+
__defNormalProp$6(a, prop, b[prop]);
|
|
4503
4660
|
}
|
|
4504
4661
|
return a;
|
|
4505
4662
|
};
|
|
4506
|
-
var __spreadProps$
|
|
4663
|
+
var __spreadProps$6 = (a, b) => __defProps$6(a, __getOwnPropDescs$6(b));
|
|
4507
4664
|
const DEFAULT_ROW_COUNT = 3;
|
|
4508
4665
|
const TableForm = React__default.forwardRef(
|
|
4509
|
-
({
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4666
|
+
(props, ref) => {
|
|
4667
|
+
var _a, _b;
|
|
4668
|
+
const {
|
|
4669
|
+
// The empty array is valid data so do not initialize "defaultData" with it
|
|
4670
|
+
defaultData,
|
|
4671
|
+
columns,
|
|
4672
|
+
disabled,
|
|
4673
|
+
rowAddConfig,
|
|
4674
|
+
deleteConfig,
|
|
4675
|
+
size = "default",
|
|
4676
|
+
className,
|
|
4677
|
+
disableBatchFilling = false,
|
|
4678
|
+
validateTriggerType,
|
|
4679
|
+
maxHeight,
|
|
4680
|
+
renderRowDescription,
|
|
4681
|
+
rowValidator,
|
|
4682
|
+
onHeaderChange,
|
|
4683
|
+
onHeaderBlur,
|
|
4684
|
+
onBodyChange,
|
|
4685
|
+
onBodyBlur,
|
|
4686
|
+
row,
|
|
4687
|
+
errors
|
|
4688
|
+
} = props;
|
|
4689
|
+
const [data, setData] = useState(defaultData || []);
|
|
4530
4690
|
const [passwordVisible, setPasswordVisible] = useState(false);
|
|
4531
|
-
const [latestData, setLatestData] = useState(defaultData);
|
|
4691
|
+
const [latestData, setLatestData] = useState(defaultData || []);
|
|
4532
4692
|
const [validateAll, setValidateAll] = useState(false);
|
|
4693
|
+
const rowSplitType = (row == null ? void 0 : row.splitType) || props.rowSplitType || "border";
|
|
4694
|
+
const draggable = (_b = (_a = row == null ? void 0 : row.draggable) != null ? _a : props.draggable) != null ? _b : false;
|
|
4533
4695
|
const updateData = useCallback(
|
|
4534
4696
|
(value, rowIndex, columnKey) => {
|
|
4535
4697
|
setLatestData(value);
|
|
@@ -4539,7 +4701,7 @@ const TableForm = React__default.forwardRef(
|
|
|
4539
4701
|
[onBodyChange]
|
|
4540
4702
|
);
|
|
4541
4703
|
useLayoutEffect(() => {
|
|
4542
|
-
if (defaultData
|
|
4704
|
+
if (!defaultData) {
|
|
4543
4705
|
updateData(
|
|
4544
4706
|
[...Array(DEFAULT_ROW_COUNT)].map(() => genEmptyRow(columns))
|
|
4545
4707
|
);
|
|
@@ -4560,7 +4722,7 @@ const TableForm = React__default.forwardRef(
|
|
|
4560
4722
|
(key, error) => {
|
|
4561
4723
|
if (error) {
|
|
4562
4724
|
const newData = latestData.map((cell) => {
|
|
4563
|
-
return __spreadProps$
|
|
4725
|
+
return __spreadProps$6(__spreadValues$6({}, cell), {
|
|
4564
4726
|
[key]: ""
|
|
4565
4727
|
});
|
|
4566
4728
|
});
|
|
@@ -4618,7 +4780,7 @@ const TableForm = React__default.forwardRef(
|
|
|
4618
4780
|
List.Item,
|
|
4619
4781
|
{
|
|
4620
4782
|
className: "eagle-table-form-header",
|
|
4621
|
-
actions: (deleteConfig == null ? void 0 : deleteConfig.deletable) ? [/* @__PURE__ */ React__default.createElement(React__default.Fragment, null)] : void 0
|
|
4783
|
+
actions: (deleteConfig == null ? void 0 : deleteConfig.deletable) || (row == null ? void 0 : row.deletable) ? [/* @__PURE__ */ React__default.createElement(React__default.Fragment, null)] : void 0
|
|
4622
4784
|
},
|
|
4623
4785
|
draggable ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, null) : null,
|
|
4624
4786
|
headerCells
|
|
@@ -4634,11 +4796,13 @@ const TableForm = React__default.forwardRef(
|
|
|
4634
4796
|
draggable,
|
|
4635
4797
|
rowSplitType,
|
|
4636
4798
|
validateTriggerType,
|
|
4799
|
+
row,
|
|
4637
4800
|
onBodyBlur,
|
|
4638
4801
|
updateData,
|
|
4639
4802
|
renderRowDescription,
|
|
4640
4803
|
rowValidator,
|
|
4641
|
-
validateAll
|
|
4804
|
+
validateAll,
|
|
4805
|
+
errors
|
|
4642
4806
|
}
|
|
4643
4807
|
))
|
|
4644
4808
|
), (rowAddConfig == null ? void 0 : rowAddConfig.addible) ? /* @__PURE__ */ React__default.createElement(
|
|
@@ -4653,6 +4817,139 @@ const TableForm = React__default.forwardRef(
|
|
|
4653
4817
|
}
|
|
4654
4818
|
);
|
|
4655
4819
|
|
|
4820
|
+
const PresetColors$2 = [
|
|
4821
|
+
"blue",
|
|
4822
|
+
"red",
|
|
4823
|
+
"yellow",
|
|
4824
|
+
"green",
|
|
4825
|
+
"gray",
|
|
4826
|
+
"purple"
|
|
4827
|
+
];
|
|
4828
|
+
|
|
4829
|
+
const Size$1 = {
|
|
4830
|
+
small: "sut42l0",
|
|
4831
|
+
medium: "mfsz1jz"
|
|
4832
|
+
};
|
|
4833
|
+
const TagStyle$1 = "tnd6h4m";
|
|
4834
|
+
const IconStyle = "i1qw4clm";
|
|
4835
|
+
|
|
4836
|
+
var __defProp$5 = Object.defineProperty;
|
|
4837
|
+
var __defProps$5 = Object.defineProperties;
|
|
4838
|
+
var __getOwnPropDescs$5 = Object.getOwnPropertyDescriptors;
|
|
4839
|
+
var __getOwnPropSymbols$5 = Object.getOwnPropertySymbols;
|
|
4840
|
+
var __hasOwnProp$5 = Object.prototype.hasOwnProperty;
|
|
4841
|
+
var __propIsEnum$5 = Object.prototype.propertyIsEnumerable;
|
|
4842
|
+
var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, {
|
|
4843
|
+
enumerable: true,
|
|
4844
|
+
configurable: true,
|
|
4845
|
+
writable: true,
|
|
4846
|
+
value
|
|
4847
|
+
}) : obj[key] = value;
|
|
4848
|
+
var __spreadValues$5 = (a, b) => {
|
|
4849
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
|
|
4850
|
+
if (__getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(b)) {
|
|
4851
|
+
if (__propIsEnum$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
|
|
4852
|
+
}
|
|
4853
|
+
return a;
|
|
4854
|
+
};
|
|
4855
|
+
var __spreadProps$5 = (a, b) => __defProps$5(a, __getOwnPropDescs$5(b));
|
|
4856
|
+
var __objRest$2 = (source, exclude) => {
|
|
4857
|
+
var target = {};
|
|
4858
|
+
for (var prop in source) if (__hasOwnProp$5.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
4859
|
+
if (source != null && __getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(source)) {
|
|
4860
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$5.call(source, prop)) target[prop] = source[prop];
|
|
4861
|
+
}
|
|
4862
|
+
return target;
|
|
4863
|
+
};
|
|
4864
|
+
const WrapperStyle = "w1xcixj5";
|
|
4865
|
+
const SplitTag = _a => {
|
|
4866
|
+
var _b = _a,
|
|
4867
|
+
{
|
|
4868
|
+
size = "small",
|
|
4869
|
+
color = "gray",
|
|
4870
|
+
className,
|
|
4871
|
+
primaryContent,
|
|
4872
|
+
secondaryContent,
|
|
4873
|
+
icon
|
|
4874
|
+
} = _b,
|
|
4875
|
+
props = __objRest$2(_b, ["size", "color", "className", "primaryContent", "secondaryContent", "icon"]);
|
|
4876
|
+
return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$5(__spreadValues$5({}, props), {
|
|
4877
|
+
className: cs(className, TagStyle$1, Size$1[size], WrapperStyle, Typo.Label.l4_regular, {
|
|
4878
|
+
[`ant-tag-${color}`]: PresetColors$2.includes(color)
|
|
4879
|
+
}, "outside-tag")
|
|
4880
|
+
}), /* @__PURE__ */React__default.createElement(Tag$1, {
|
|
4881
|
+
className: cs(Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
|
|
4882
|
+
[`ant-tag-${color}`]: PresetColors$2.includes(color)
|
|
4883
|
+
}, "inside-tag")
|
|
4884
|
+
}, icon && /* @__PURE__ */React__default.createElement("span", {
|
|
4885
|
+
className: cs("ui-kit-tag-icon", IconStyle)
|
|
4886
|
+
}, icon), primaryContent), secondaryContent);
|
|
4887
|
+
};
|
|
4888
|
+
|
|
4889
|
+
var __defProp$4 = Object.defineProperty;
|
|
4890
|
+
var __defProps$4 = Object.defineProperties;
|
|
4891
|
+
var __getOwnPropDescs$4 = Object.getOwnPropertyDescriptors;
|
|
4892
|
+
var __getOwnPropSymbols$4 = Object.getOwnPropertySymbols;
|
|
4893
|
+
var __hasOwnProp$4 = Object.prototype.hasOwnProperty;
|
|
4894
|
+
var __propIsEnum$4 = Object.prototype.propertyIsEnumerable;
|
|
4895
|
+
var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4896
|
+
var __spreadValues$4 = (a, b) => {
|
|
4897
|
+
for (var prop in b || (b = {}))
|
|
4898
|
+
if (__hasOwnProp$4.call(b, prop))
|
|
4899
|
+
__defNormalProp$4(a, prop, b[prop]);
|
|
4900
|
+
if (__getOwnPropSymbols$4)
|
|
4901
|
+
for (var prop of __getOwnPropSymbols$4(b)) {
|
|
4902
|
+
if (__propIsEnum$4.call(b, prop))
|
|
4903
|
+
__defNormalProp$4(a, prop, b[prop]);
|
|
4904
|
+
}
|
|
4905
|
+
return a;
|
|
4906
|
+
};
|
|
4907
|
+
var __spreadProps$4 = (a, b) => __defProps$4(a, __getOwnPropDescs$4(b));
|
|
4908
|
+
var __objRest$1 = (source, exclude) => {
|
|
4909
|
+
var target = {};
|
|
4910
|
+
for (var prop in source)
|
|
4911
|
+
if (__hasOwnProp$4.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
4912
|
+
target[prop] = source[prop];
|
|
4913
|
+
if (source != null && __getOwnPropSymbols$4)
|
|
4914
|
+
for (var prop of __getOwnPropSymbols$4(source)) {
|
|
4915
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$4.call(source, prop))
|
|
4916
|
+
target[prop] = source[prop];
|
|
4917
|
+
}
|
|
4918
|
+
return target;
|
|
4919
|
+
};
|
|
4920
|
+
const PresetColors$1 = [...PresetColors$2, "red-ontint", "green-ontint"];
|
|
4921
|
+
const Tag = (_a) => {
|
|
4922
|
+
var _b = _a, {
|
|
4923
|
+
size = "small",
|
|
4924
|
+
color = "gray",
|
|
4925
|
+
className,
|
|
4926
|
+
hoverable = false,
|
|
4927
|
+
icon,
|
|
4928
|
+
children
|
|
4929
|
+
} = _b, props = __objRest$1(_b, [
|
|
4930
|
+
"size",
|
|
4931
|
+
"color",
|
|
4932
|
+
"className",
|
|
4933
|
+
"hoverable",
|
|
4934
|
+
"icon",
|
|
4935
|
+
"children"
|
|
4936
|
+
]);
|
|
4937
|
+
return /* @__PURE__ */ React__default.createElement(
|
|
4938
|
+
Tag$1,
|
|
4939
|
+
__spreadProps$4(__spreadValues$4({}, props), {
|
|
4940
|
+
className: cs(className, Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
|
|
4941
|
+
[`ant-tag-${color}`]: PresetColors$1.includes(color),
|
|
4942
|
+
"tag-hover": hoverable
|
|
4943
|
+
}),
|
|
4944
|
+
closable: false,
|
|
4945
|
+
color: color === "gray" ? void 0 : color
|
|
4946
|
+
}),
|
|
4947
|
+
icon && /* @__PURE__ */ React__default.createElement("span", { className: cs("ui-kit-tag-icon", IconStyle) }, icon),
|
|
4948
|
+
children
|
|
4949
|
+
);
|
|
4950
|
+
};
|
|
4951
|
+
Tag.SplitTag = SplitTag;
|
|
4952
|
+
|
|
4656
4953
|
const allTimeZones = uniqBy(TimeZones.reduce((sum, zone) => {
|
|
4657
4954
|
const utcZones = zone.utc.map(utc => {
|
|
4658
4955
|
return {
|
|
@@ -4791,7 +5088,7 @@ const TimeZoneOption = ({
|
|
|
4791
5088
|
className: OptionFirstLineStyle
|
|
4792
5089
|
}, /* @__PURE__ */React__default.createElement("span", {
|
|
4793
5090
|
className: "timezone-title"
|
|
4794
|
-
}, customLabel || timeZone.value), /* @__PURE__ */React__default.createElement(Tag, {
|
|
5091
|
+
}, customLabel || timeZone.value), /* @__PURE__ */React__default.createElement(Tag$1, {
|
|
4795
5092
|
className: cx("timezone-tag", TagStyle)
|
|
4796
5093
|
}, tagText)), /* @__PURE__ */React__default.createElement("div", {
|
|
4797
5094
|
className: OptionSecondLineStyle
|
|
@@ -4847,7 +5144,7 @@ const Token = _a => {
|
|
|
4847
5144
|
checked
|
|
4848
5145
|
} = _b,
|
|
4849
5146
|
props = __objRest(_b, ["size", "color", "className", "checked"]);
|
|
4850
|
-
return /* @__PURE__ */React__default.createElement(Tag, __spreadProps$3(__spreadValues$3({}, props), {
|
|
5147
|
+
return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$3(__spreadValues$3({}, props), {
|
|
4851
5148
|
className: cs(className, Size[size], TokenStyle, {
|
|
4852
5149
|
[Typo.Label.l4_regular]: size === "small" || size === "medium",
|
|
4853
5150
|
[Typo.Label.l3_regular]: size === "large",
|
|
@@ -4952,7 +5249,8 @@ function getAntdKit() {
|
|
|
4952
5249
|
antdCollapse: Collapse,
|
|
4953
5250
|
antdTreeSelect: TreeSelect,
|
|
4954
5251
|
antdDrawer: Drawer,
|
|
4955
|
-
antdSteps: Steps$1
|
|
5252
|
+
antdSteps: Steps$1,
|
|
5253
|
+
card: Card
|
|
4956
5254
|
};
|
|
4957
5255
|
kit.option.isSelectOption = true;
|
|
4958
5256
|
kit.button.__ANT_BUTTON = true;
|