@cloudtower/eagle 0.26.8 → 0.26.10
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 +726 -615
- package/dist/esm/index.js +1300 -1001
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +17 -4
- package/dist/style.css +1127 -1016
- package/dist/umd/index.js +1300 -1001
- 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,
|
|
@@ -1371,6 +1489,7 @@ const Select = _a => {
|
|
|
1371
1489
|
},
|
|
1372
1490
|
mode: multiple ? "multiple" : void 0,
|
|
1373
1491
|
className: cs(SelectStyle$1, "select", className, limitExceeded && "select-event-none", _danger ? "select-error" : "", typo),
|
|
1492
|
+
"data-size": size,
|
|
1374
1493
|
dropdownClassName: cs(dropdownClassName, limitExceeded && "display-none"),
|
|
1375
1494
|
showSearch: multiple ? void 0 : typeof showSearch === "undefined" ? Boolean(onSearch) : showSearch,
|
|
1376
1495
|
filterOption: onSearch === void 0 ? filterOption === void 0 ? (input2, option) => {
|
|
@@ -1393,38 +1512,38 @@ const Select = _a => {
|
|
|
1393
1512
|
loading,
|
|
1394
1513
|
placeholder
|
|
1395
1514
|
}), restProps), React__default.Children.map(children, child => {
|
|
1396
|
-
return isElement(child) ? __spreadProps$
|
|
1397
|
-
props: __spreadProps$
|
|
1515
|
+
return isElement(child) ? __spreadProps$v(__spreadValues$D({}, child), {
|
|
1516
|
+
props: __spreadProps$v(__spreadValues$D({}, child.props), {
|
|
1398
1517
|
"data-test": child.props.value
|
|
1399
1518
|
})
|
|
1400
1519
|
}) : child;
|
|
1401
1520
|
}));
|
|
1402
1521
|
};
|
|
1403
1522
|
|
|
1404
|
-
var __defProp$
|
|
1405
|
-
var __getOwnPropSymbols$
|
|
1406
|
-
var __hasOwnProp$
|
|
1407
|
-
var __propIsEnum$
|
|
1408
|
-
var __defNormalProp$
|
|
1409
|
-
var __spreadValues$
|
|
1523
|
+
var __defProp$C = Object.defineProperty;
|
|
1524
|
+
var __getOwnPropSymbols$C = Object.getOwnPropertySymbols;
|
|
1525
|
+
var __hasOwnProp$C = Object.prototype.hasOwnProperty;
|
|
1526
|
+
var __propIsEnum$C = Object.prototype.propertyIsEnumerable;
|
|
1527
|
+
var __defNormalProp$C = (obj, key, value) => key in obj ? __defProp$C(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1528
|
+
var __spreadValues$C = (a, b) => {
|
|
1410
1529
|
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$
|
|
1530
|
+
if (__hasOwnProp$C.call(b, prop))
|
|
1531
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
1532
|
+
if (__getOwnPropSymbols$C)
|
|
1533
|
+
for (var prop of __getOwnPropSymbols$C(b)) {
|
|
1534
|
+
if (__propIsEnum$C.call(b, prop))
|
|
1535
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
1417
1536
|
}
|
|
1418
1537
|
return a;
|
|
1419
1538
|
};
|
|
1420
|
-
var __objRest$
|
|
1539
|
+
var __objRest$k = (source, exclude) => {
|
|
1421
1540
|
var target = {};
|
|
1422
1541
|
for (var prop in source)
|
|
1423
|
-
if (__hasOwnProp$
|
|
1542
|
+
if (__hasOwnProp$C.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1424
1543
|
target[prop] = source[prop];
|
|
1425
|
-
if (source != null && __getOwnPropSymbols$
|
|
1426
|
-
for (var prop of __getOwnPropSymbols$
|
|
1427
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1544
|
+
if (source != null && __getOwnPropSymbols$C)
|
|
1545
|
+
for (var prop of __getOwnPropSymbols$C(source)) {
|
|
1546
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$C.call(source, prop))
|
|
1428
1547
|
target[prop] = source[prop];
|
|
1429
1548
|
}
|
|
1430
1549
|
return target;
|
|
@@ -1434,12 +1553,12 @@ const FieldsEnum = (_a) => {
|
|
|
1434
1553
|
meta: __,
|
|
1435
1554
|
enumValues,
|
|
1436
1555
|
emptyLabel
|
|
1437
|
-
} = _b, restProps = __objRest$
|
|
1556
|
+
} = _b, restProps = __objRest$k(_b, [
|
|
1438
1557
|
"meta",
|
|
1439
1558
|
"enumValues",
|
|
1440
1559
|
"emptyLabel"
|
|
1441
1560
|
]);
|
|
1442
|
-
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(Select, __spreadValues$
|
|
1561
|
+
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
1562
|
const item = typeof v === "string" ? { value: v, text: v } : v;
|
|
1444
1563
|
return /* @__PURE__ */ React__default.createElement(
|
|
1445
1564
|
Select$1.Option,
|
|
@@ -1453,31 +1572,31 @@ const FieldsEnum = (_a) => {
|
|
|
1453
1572
|
})));
|
|
1454
1573
|
};
|
|
1455
1574
|
|
|
1456
|
-
var __defProp$
|
|
1457
|
-
var __defProps$
|
|
1458
|
-
var __getOwnPropDescs$
|
|
1459
|
-
var __getOwnPropSymbols$
|
|
1460
|
-
var __hasOwnProp$
|
|
1461
|
-
var __propIsEnum$
|
|
1462
|
-
var __defNormalProp$
|
|
1575
|
+
var __defProp$B = Object.defineProperty;
|
|
1576
|
+
var __defProps$u = Object.defineProperties;
|
|
1577
|
+
var __getOwnPropDescs$u = Object.getOwnPropertyDescriptors;
|
|
1578
|
+
var __getOwnPropSymbols$B = Object.getOwnPropertySymbols;
|
|
1579
|
+
var __hasOwnProp$B = Object.prototype.hasOwnProperty;
|
|
1580
|
+
var __propIsEnum$B = Object.prototype.propertyIsEnumerable;
|
|
1581
|
+
var __defNormalProp$B = (obj, key, value) => key in obj ? __defProp$B(obj, key, {
|
|
1463
1582
|
enumerable: true,
|
|
1464
1583
|
configurable: true,
|
|
1465
1584
|
writable: true,
|
|
1466
1585
|
value
|
|
1467
1586
|
}) : obj[key] = value;
|
|
1468
|
-
var __spreadValues$
|
|
1469
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1470
|
-
if (__getOwnPropSymbols$
|
|
1471
|
-
if (__propIsEnum$
|
|
1587
|
+
var __spreadValues$B = (a, b) => {
|
|
1588
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$B.call(b, prop)) __defNormalProp$B(a, prop, b[prop]);
|
|
1589
|
+
if (__getOwnPropSymbols$B) for (var prop of __getOwnPropSymbols$B(b)) {
|
|
1590
|
+
if (__propIsEnum$B.call(b, prop)) __defNormalProp$B(a, prop, b[prop]);
|
|
1472
1591
|
}
|
|
1473
1592
|
return a;
|
|
1474
1593
|
};
|
|
1475
|
-
var __spreadProps$
|
|
1476
|
-
var __objRest$
|
|
1594
|
+
var __spreadProps$u = (a, b) => __defProps$u(a, __getOwnPropDescs$u(b));
|
|
1595
|
+
var __objRest$j = (source, exclude) => {
|
|
1477
1596
|
var target = {};
|
|
1478
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1479
|
-
if (source != null && __getOwnPropSymbols$
|
|
1480
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1597
|
+
for (var prop in source) if (__hasOwnProp$B.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1598
|
+
if (source != null && __getOwnPropSymbols$B) for (var prop of __getOwnPropSymbols$B(source)) {
|
|
1599
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$B.call(source, prop)) target[prop] = source[prop];
|
|
1481
1600
|
}
|
|
1482
1601
|
return target;
|
|
1483
1602
|
};
|
|
@@ -1513,13 +1632,13 @@ const InputNumber = _a => {
|
|
|
1513
1632
|
prefix,
|
|
1514
1633
|
controls = true
|
|
1515
1634
|
} = _b,
|
|
1516
|
-
props = __objRest$
|
|
1635
|
+
props = __objRest$j(_b, ["className", "error", "size", "suffix", "prefix", "controls"]);
|
|
1517
1636
|
const typo = {
|
|
1518
1637
|
large: Typo.Label.l2_regular,
|
|
1519
1638
|
middle: Typo.Label.l3_regular,
|
|
1520
1639
|
small: Typo.Label.l4_regular
|
|
1521
1640
|
}[size];
|
|
1522
|
-
return /* @__PURE__ */React__default.createElement(AntdInputNumberStyled, __spreadProps$
|
|
1641
|
+
return /* @__PURE__ */React__default.createElement(AntdInputNumberStyled, __spreadProps$u(__spreadValues$B({}, props), {
|
|
1523
1642
|
size,
|
|
1524
1643
|
controls,
|
|
1525
1644
|
"data-test": props.name,
|
|
@@ -1529,33 +1648,33 @@ const InputNumber = _a => {
|
|
|
1529
1648
|
}));
|
|
1530
1649
|
};
|
|
1531
1650
|
|
|
1532
|
-
var __defProp$
|
|
1533
|
-
var __defProps$
|
|
1534
|
-
var __getOwnPropDescs$
|
|
1535
|
-
var __getOwnPropSymbols$
|
|
1536
|
-
var __hasOwnProp$
|
|
1537
|
-
var __propIsEnum$
|
|
1538
|
-
var __defNormalProp$
|
|
1539
|
-
var __spreadValues$
|
|
1651
|
+
var __defProp$A = Object.defineProperty;
|
|
1652
|
+
var __defProps$t = Object.defineProperties;
|
|
1653
|
+
var __getOwnPropDescs$t = Object.getOwnPropertyDescriptors;
|
|
1654
|
+
var __getOwnPropSymbols$A = Object.getOwnPropertySymbols;
|
|
1655
|
+
var __hasOwnProp$A = Object.prototype.hasOwnProperty;
|
|
1656
|
+
var __propIsEnum$A = Object.prototype.propertyIsEnumerable;
|
|
1657
|
+
var __defNormalProp$A = (obj, key, value) => key in obj ? __defProp$A(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1658
|
+
var __spreadValues$A = (a, b) => {
|
|
1540
1659
|
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$
|
|
1660
|
+
if (__hasOwnProp$A.call(b, prop))
|
|
1661
|
+
__defNormalProp$A(a, prop, b[prop]);
|
|
1662
|
+
if (__getOwnPropSymbols$A)
|
|
1663
|
+
for (var prop of __getOwnPropSymbols$A(b)) {
|
|
1664
|
+
if (__propIsEnum$A.call(b, prop))
|
|
1665
|
+
__defNormalProp$A(a, prop, b[prop]);
|
|
1547
1666
|
}
|
|
1548
1667
|
return a;
|
|
1549
1668
|
};
|
|
1550
|
-
var __spreadProps$
|
|
1551
|
-
var __objRest$
|
|
1669
|
+
var __spreadProps$t = (a, b) => __defProps$t(a, __getOwnPropDescs$t(b));
|
|
1670
|
+
var __objRest$i = (source, exclude) => {
|
|
1552
1671
|
var target = {};
|
|
1553
1672
|
for (var prop in source)
|
|
1554
|
-
if (__hasOwnProp$
|
|
1673
|
+
if (__hasOwnProp$A.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1555
1674
|
target[prop] = source[prop];
|
|
1556
|
-
if (source != null && __getOwnPropSymbols$
|
|
1557
|
-
for (var prop of __getOwnPropSymbols$
|
|
1558
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1675
|
+
if (source != null && __getOwnPropSymbols$A)
|
|
1676
|
+
for (var prop of __getOwnPropSymbols$A(source)) {
|
|
1677
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$A.call(source, prop))
|
|
1559
1678
|
target[prop] = source[prop];
|
|
1560
1679
|
}
|
|
1561
1680
|
return target;
|
|
@@ -1566,7 +1685,7 @@ const FieldsFloat = (_a) => {
|
|
|
1566
1685
|
meta,
|
|
1567
1686
|
onBlur,
|
|
1568
1687
|
autoComplete = "off"
|
|
1569
|
-
} = _b, props = __objRest$
|
|
1688
|
+
} = _b, props = __objRest$i(_b, [
|
|
1570
1689
|
"input",
|
|
1571
1690
|
"meta",
|
|
1572
1691
|
"onBlur",
|
|
@@ -1574,7 +1693,7 @@ const FieldsFloat = (_a) => {
|
|
|
1574
1693
|
]);
|
|
1575
1694
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
1576
1695
|
InputNumber,
|
|
1577
|
-
__spreadValues$
|
|
1696
|
+
__spreadValues$A(__spreadProps$t(__spreadValues$A({}, input), {
|
|
1578
1697
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1579
1698
|
autoComplete,
|
|
1580
1699
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
@@ -1582,33 +1701,33 @@ const FieldsFloat = (_a) => {
|
|
|
1582
1701
|
));
|
|
1583
1702
|
};
|
|
1584
1703
|
|
|
1585
|
-
var __defProp$
|
|
1586
|
-
var __defProps$
|
|
1587
|
-
var __getOwnPropDescs$
|
|
1588
|
-
var __getOwnPropSymbols$
|
|
1589
|
-
var __hasOwnProp$
|
|
1590
|
-
var __propIsEnum$
|
|
1591
|
-
var __defNormalProp$
|
|
1592
|
-
var __spreadValues$
|
|
1704
|
+
var __defProp$z = Object.defineProperty;
|
|
1705
|
+
var __defProps$s = Object.defineProperties;
|
|
1706
|
+
var __getOwnPropDescs$s = Object.getOwnPropertyDescriptors;
|
|
1707
|
+
var __getOwnPropSymbols$z = Object.getOwnPropertySymbols;
|
|
1708
|
+
var __hasOwnProp$z = Object.prototype.hasOwnProperty;
|
|
1709
|
+
var __propIsEnum$z = Object.prototype.propertyIsEnumerable;
|
|
1710
|
+
var __defNormalProp$z = (obj, key, value) => key in obj ? __defProp$z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1711
|
+
var __spreadValues$z = (a, b) => {
|
|
1593
1712
|
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$
|
|
1713
|
+
if (__hasOwnProp$z.call(b, prop))
|
|
1714
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
1715
|
+
if (__getOwnPropSymbols$z)
|
|
1716
|
+
for (var prop of __getOwnPropSymbols$z(b)) {
|
|
1717
|
+
if (__propIsEnum$z.call(b, prop))
|
|
1718
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
1600
1719
|
}
|
|
1601
1720
|
return a;
|
|
1602
1721
|
};
|
|
1603
|
-
var __spreadProps$
|
|
1604
|
-
var __objRest$
|
|
1722
|
+
var __spreadProps$s = (a, b) => __defProps$s(a, __getOwnPropDescs$s(b));
|
|
1723
|
+
var __objRest$h = (source, exclude) => {
|
|
1605
1724
|
var target = {};
|
|
1606
1725
|
for (var prop in source)
|
|
1607
|
-
if (__hasOwnProp$
|
|
1726
|
+
if (__hasOwnProp$z.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1608
1727
|
target[prop] = source[prop];
|
|
1609
|
-
if (source != null && __getOwnPropSymbols$
|
|
1610
|
-
for (var prop of __getOwnPropSymbols$
|
|
1611
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1728
|
+
if (source != null && __getOwnPropSymbols$z)
|
|
1729
|
+
for (var prop of __getOwnPropSymbols$z(source)) {
|
|
1730
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$z.call(source, prop))
|
|
1612
1731
|
target[prop] = source[prop];
|
|
1613
1732
|
}
|
|
1614
1733
|
return target;
|
|
@@ -1618,7 +1737,7 @@ const Input = (_a) => {
|
|
|
1618
1737
|
className,
|
|
1619
1738
|
error,
|
|
1620
1739
|
size = "middle"
|
|
1621
|
-
} = _b, props = __objRest$
|
|
1740
|
+
} = _b, props = __objRest$h(_b, [
|
|
1622
1741
|
"className",
|
|
1623
1742
|
"error",
|
|
1624
1743
|
"size"
|
|
@@ -1630,7 +1749,7 @@ const Input = (_a) => {
|
|
|
1630
1749
|
}[size];
|
|
1631
1750
|
return /* @__PURE__ */ React__default.createElement(
|
|
1632
1751
|
Input$1,
|
|
1633
|
-
__spreadProps$
|
|
1752
|
+
__spreadProps$s(__spreadValues$z({}, props), {
|
|
1634
1753
|
size,
|
|
1635
1754
|
"data-test": props.name,
|
|
1636
1755
|
className: cs(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -1638,33 +1757,33 @@ const Input = (_a) => {
|
|
|
1638
1757
|
);
|
|
1639
1758
|
};
|
|
1640
1759
|
|
|
1641
|
-
var __defProp$
|
|
1642
|
-
var __defProps$
|
|
1643
|
-
var __getOwnPropDescs$
|
|
1644
|
-
var __getOwnPropSymbols$
|
|
1645
|
-
var __hasOwnProp$
|
|
1646
|
-
var __propIsEnum$
|
|
1647
|
-
var __defNormalProp$
|
|
1648
|
-
var __spreadValues$
|
|
1760
|
+
var __defProp$y = Object.defineProperty;
|
|
1761
|
+
var __defProps$r = Object.defineProperties;
|
|
1762
|
+
var __getOwnPropDescs$r = Object.getOwnPropertyDescriptors;
|
|
1763
|
+
var __getOwnPropSymbols$y = Object.getOwnPropertySymbols;
|
|
1764
|
+
var __hasOwnProp$y = Object.prototype.hasOwnProperty;
|
|
1765
|
+
var __propIsEnum$y = Object.prototype.propertyIsEnumerable;
|
|
1766
|
+
var __defNormalProp$y = (obj, key, value) => key in obj ? __defProp$y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1767
|
+
var __spreadValues$y = (a, b) => {
|
|
1649
1768
|
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$
|
|
1769
|
+
if (__hasOwnProp$y.call(b, prop))
|
|
1770
|
+
__defNormalProp$y(a, prop, b[prop]);
|
|
1771
|
+
if (__getOwnPropSymbols$y)
|
|
1772
|
+
for (var prop of __getOwnPropSymbols$y(b)) {
|
|
1773
|
+
if (__propIsEnum$y.call(b, prop))
|
|
1774
|
+
__defNormalProp$y(a, prop, b[prop]);
|
|
1656
1775
|
}
|
|
1657
1776
|
return a;
|
|
1658
1777
|
};
|
|
1659
|
-
var __spreadProps$
|
|
1660
|
-
var __objRest$
|
|
1778
|
+
var __spreadProps$r = (a, b) => __defProps$r(a, __getOwnPropDescs$r(b));
|
|
1779
|
+
var __objRest$g = (source, exclude) => {
|
|
1661
1780
|
var target = {};
|
|
1662
1781
|
for (var prop in source)
|
|
1663
|
-
if (__hasOwnProp$
|
|
1782
|
+
if (__hasOwnProp$y.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1664
1783
|
target[prop] = source[prop];
|
|
1665
|
-
if (source != null && __getOwnPropSymbols$
|
|
1666
|
-
for (var prop of __getOwnPropSymbols$
|
|
1667
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1784
|
+
if (source != null && __getOwnPropSymbols$y)
|
|
1785
|
+
for (var prop of __getOwnPropSymbols$y(source)) {
|
|
1786
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$y.call(source, prop))
|
|
1668
1787
|
target[prop] = source[prop];
|
|
1669
1788
|
}
|
|
1670
1789
|
return target;
|
|
@@ -1676,7 +1795,7 @@ const FieldsInt = (_a) => {
|
|
|
1676
1795
|
onBlur,
|
|
1677
1796
|
autoComplete = "off",
|
|
1678
1797
|
supportNegativeValue = false
|
|
1679
|
-
} = _b, props = __objRest$
|
|
1798
|
+
} = _b, props = __objRest$g(_b, [
|
|
1680
1799
|
"input",
|
|
1681
1800
|
"meta",
|
|
1682
1801
|
"onBlur",
|
|
@@ -1685,7 +1804,7 @@ const FieldsInt = (_a) => {
|
|
|
1685
1804
|
]);
|
|
1686
1805
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
1687
1806
|
Input,
|
|
1688
|
-
__spreadValues$
|
|
1807
|
+
__spreadValues$y(__spreadProps$r(__spreadValues$y({}, input), {
|
|
1689
1808
|
onChange: (e) => {
|
|
1690
1809
|
const value = e.currentTarget.value;
|
|
1691
1810
|
if (supportNegativeValue) {
|
|
@@ -1720,31 +1839,31 @@ const formatterInteger = (value) => {
|
|
|
1720
1839
|
}
|
|
1721
1840
|
};
|
|
1722
1841
|
|
|
1723
|
-
var __defProp$
|
|
1724
|
-
var __defProps$
|
|
1725
|
-
var __getOwnPropDescs$
|
|
1726
|
-
var __getOwnPropSymbols$
|
|
1727
|
-
var __hasOwnProp$
|
|
1728
|
-
var __propIsEnum$
|
|
1729
|
-
var __defNormalProp$
|
|
1842
|
+
var __defProp$x = Object.defineProperty;
|
|
1843
|
+
var __defProps$q = Object.defineProperties;
|
|
1844
|
+
var __getOwnPropDescs$q = Object.getOwnPropertyDescriptors;
|
|
1845
|
+
var __getOwnPropSymbols$x = Object.getOwnPropertySymbols;
|
|
1846
|
+
var __hasOwnProp$x = Object.prototype.hasOwnProperty;
|
|
1847
|
+
var __propIsEnum$x = Object.prototype.propertyIsEnumerable;
|
|
1848
|
+
var __defNormalProp$x = (obj, key, value) => key in obj ? __defProp$x(obj, key, {
|
|
1730
1849
|
enumerable: true,
|
|
1731
1850
|
configurable: true,
|
|
1732
1851
|
writable: true,
|
|
1733
1852
|
value
|
|
1734
1853
|
}) : obj[key] = value;
|
|
1735
|
-
var __spreadValues$
|
|
1736
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1737
|
-
if (__getOwnPropSymbols$
|
|
1738
|
-
if (__propIsEnum$
|
|
1854
|
+
var __spreadValues$x = (a, b) => {
|
|
1855
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$x.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
1856
|
+
if (__getOwnPropSymbols$x) for (var prop of __getOwnPropSymbols$x(b)) {
|
|
1857
|
+
if (__propIsEnum$x.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
1739
1858
|
}
|
|
1740
1859
|
return a;
|
|
1741
1860
|
};
|
|
1742
|
-
var __spreadProps$
|
|
1743
|
-
var __objRest$
|
|
1861
|
+
var __spreadProps$q = (a, b) => __defProps$q(a, __getOwnPropDescs$q(b));
|
|
1862
|
+
var __objRest$f = (source, exclude) => {
|
|
1744
1863
|
var target = {};
|
|
1745
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1746
|
-
if (source != null && __getOwnPropSymbols$
|
|
1747
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1864
|
+
for (var prop in source) if (__hasOwnProp$x.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1865
|
+
if (source != null && __getOwnPropSymbols$x) for (var prop of __getOwnPropSymbols$x(source)) {
|
|
1866
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$x.call(source, prop)) target[prop] = source[prop];
|
|
1748
1867
|
}
|
|
1749
1868
|
return target;
|
|
1750
1869
|
};
|
|
@@ -1782,13 +1901,13 @@ const InputInteger = _a => {
|
|
|
1782
1901
|
min,
|
|
1783
1902
|
controls = false
|
|
1784
1903
|
} = _b,
|
|
1785
|
-
props = __objRest$
|
|
1904
|
+
props = __objRest$f(_b, ["className", "error", "size", "suffix", "prefix", "max", "min", "controls"]);
|
|
1786
1905
|
const typo = {
|
|
1787
1906
|
large: Typo.Label.l2_regular,
|
|
1788
1907
|
middle: Typo.Label.l3_regular,
|
|
1789
1908
|
small: Typo.Label.l4_regular
|
|
1790
1909
|
}[size];
|
|
1791
|
-
return /* @__PURE__ */React__default.createElement(AntdIntStyled, __spreadProps$
|
|
1910
|
+
return /* @__PURE__ */React__default.createElement(AntdIntStyled, __spreadProps$q(__spreadValues$x({}, props), {
|
|
1792
1911
|
size,
|
|
1793
1912
|
formatter: formatterInteger,
|
|
1794
1913
|
parser: formatterInteger,
|
|
@@ -1802,33 +1921,33 @@ const InputInteger = _a => {
|
|
|
1802
1921
|
}));
|
|
1803
1922
|
};
|
|
1804
1923
|
|
|
1805
|
-
var __defProp$
|
|
1806
|
-
var __defProps$
|
|
1807
|
-
var __getOwnPropDescs$
|
|
1808
|
-
var __getOwnPropSymbols$
|
|
1809
|
-
var __hasOwnProp$
|
|
1810
|
-
var __propIsEnum$
|
|
1811
|
-
var __defNormalProp$
|
|
1812
|
-
var __spreadValues$
|
|
1924
|
+
var __defProp$w = Object.defineProperty;
|
|
1925
|
+
var __defProps$p = Object.defineProperties;
|
|
1926
|
+
var __getOwnPropDescs$p = Object.getOwnPropertyDescriptors;
|
|
1927
|
+
var __getOwnPropSymbols$w = Object.getOwnPropertySymbols;
|
|
1928
|
+
var __hasOwnProp$w = Object.prototype.hasOwnProperty;
|
|
1929
|
+
var __propIsEnum$w = Object.prototype.propertyIsEnumerable;
|
|
1930
|
+
var __defNormalProp$w = (obj, key, value) => key in obj ? __defProp$w(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1931
|
+
var __spreadValues$w = (a, b) => {
|
|
1813
1932
|
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$
|
|
1933
|
+
if (__hasOwnProp$w.call(b, prop))
|
|
1934
|
+
__defNormalProp$w(a, prop, b[prop]);
|
|
1935
|
+
if (__getOwnPropSymbols$w)
|
|
1936
|
+
for (var prop of __getOwnPropSymbols$w(b)) {
|
|
1937
|
+
if (__propIsEnum$w.call(b, prop))
|
|
1938
|
+
__defNormalProp$w(a, prop, b[prop]);
|
|
1820
1939
|
}
|
|
1821
1940
|
return a;
|
|
1822
1941
|
};
|
|
1823
|
-
var __spreadProps$
|
|
1824
|
-
var __objRest$
|
|
1942
|
+
var __spreadProps$p = (a, b) => __defProps$p(a, __getOwnPropDescs$p(b));
|
|
1943
|
+
var __objRest$e = (source, exclude) => {
|
|
1825
1944
|
var target = {};
|
|
1826
1945
|
for (var prop in source)
|
|
1827
|
-
if (__hasOwnProp$
|
|
1946
|
+
if (__hasOwnProp$w.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1828
1947
|
target[prop] = source[prop];
|
|
1829
|
-
if (source != null && __getOwnPropSymbols$
|
|
1830
|
-
for (var prop of __getOwnPropSymbols$
|
|
1831
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1948
|
+
if (source != null && __getOwnPropSymbols$w)
|
|
1949
|
+
for (var prop of __getOwnPropSymbols$w(source)) {
|
|
1950
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$w.call(source, prop))
|
|
1832
1951
|
target[prop] = source[prop];
|
|
1833
1952
|
}
|
|
1834
1953
|
return target;
|
|
@@ -1838,14 +1957,14 @@ const FieldsInteger = (_a) => {
|
|
|
1838
1957
|
meta,
|
|
1839
1958
|
input,
|
|
1840
1959
|
onBlur
|
|
1841
|
-
} = _b, props = __objRest$
|
|
1960
|
+
} = _b, props = __objRest$e(_b, [
|
|
1842
1961
|
"meta",
|
|
1843
1962
|
"input",
|
|
1844
1963
|
"onBlur"
|
|
1845
1964
|
]);
|
|
1846
1965
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
1847
1966
|
InputInteger,
|
|
1848
|
-
__spreadProps$
|
|
1967
|
+
__spreadProps$p(__spreadValues$w(__spreadValues$w({}, props), input), {
|
|
1849
1968
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1850
1969
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
1851
1970
|
})
|
|
@@ -2010,33 +2129,33 @@ const Overflow = props => {
|
|
|
2010
2129
|
}, children), showOverflow && /* @__PURE__ */React__default.createElement("span", null, overflow));
|
|
2011
2130
|
};
|
|
2012
2131
|
|
|
2013
|
-
var __defProp$
|
|
2014
|
-
var __defProps$
|
|
2015
|
-
var __getOwnPropDescs$
|
|
2016
|
-
var __getOwnPropSymbols$
|
|
2017
|
-
var __hasOwnProp$
|
|
2018
|
-
var __propIsEnum$
|
|
2019
|
-
var __defNormalProp$
|
|
2020
|
-
var __spreadValues$
|
|
2132
|
+
var __defProp$v = Object.defineProperty;
|
|
2133
|
+
var __defProps$o = Object.defineProperties;
|
|
2134
|
+
var __getOwnPropDescs$o = Object.getOwnPropertyDescriptors;
|
|
2135
|
+
var __getOwnPropSymbols$v = Object.getOwnPropertySymbols;
|
|
2136
|
+
var __hasOwnProp$v = Object.prototype.hasOwnProperty;
|
|
2137
|
+
var __propIsEnum$v = Object.prototype.propertyIsEnumerable;
|
|
2138
|
+
var __defNormalProp$v = (obj, key, value) => key in obj ? __defProp$v(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2139
|
+
var __spreadValues$v = (a, b) => {
|
|
2021
2140
|
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$
|
|
2141
|
+
if (__hasOwnProp$v.call(b, prop))
|
|
2142
|
+
__defNormalProp$v(a, prop, b[prop]);
|
|
2143
|
+
if (__getOwnPropSymbols$v)
|
|
2144
|
+
for (var prop of __getOwnPropSymbols$v(b)) {
|
|
2145
|
+
if (__propIsEnum$v.call(b, prop))
|
|
2146
|
+
__defNormalProp$v(a, prop, b[prop]);
|
|
2028
2147
|
}
|
|
2029
2148
|
return a;
|
|
2030
2149
|
};
|
|
2031
|
-
var __spreadProps$
|
|
2032
|
-
var __objRest$
|
|
2150
|
+
var __spreadProps$o = (a, b) => __defProps$o(a, __getOwnPropDescs$o(b));
|
|
2151
|
+
var __objRest$d = (source, exclude) => {
|
|
2033
2152
|
var target = {};
|
|
2034
2153
|
for (var prop in source)
|
|
2035
|
-
if (__hasOwnProp$
|
|
2154
|
+
if (__hasOwnProp$v.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2036
2155
|
target[prop] = source[prop];
|
|
2037
|
-
if (source != null && __getOwnPropSymbols$
|
|
2038
|
-
for (var prop of __getOwnPropSymbols$
|
|
2039
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2156
|
+
if (source != null && __getOwnPropSymbols$v)
|
|
2157
|
+
for (var prop of __getOwnPropSymbols$v(source)) {
|
|
2158
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$v.call(source, prop))
|
|
2040
2159
|
target[prop] = source[prop];
|
|
2041
2160
|
}
|
|
2042
2161
|
return target;
|
|
@@ -2055,7 +2174,7 @@ const FieldsString = (_a) => {
|
|
|
2055
2174
|
onClick,
|
|
2056
2175
|
maxLength,
|
|
2057
2176
|
focusIndicator
|
|
2058
|
-
} = _b, props = __objRest$
|
|
2177
|
+
} = _b, props = __objRest$d(_b, [
|
|
2059
2178
|
"input",
|
|
2060
2179
|
"meta",
|
|
2061
2180
|
"autoComplete",
|
|
@@ -2087,7 +2206,7 @@ const FieldsString = (_a) => {
|
|
|
2087
2206
|
}
|
|
2088
2207
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
2089
2208
|
Input,
|
|
2090
|
-
__spreadProps$
|
|
2209
|
+
__spreadProps$o(__spreadValues$v(__spreadProps$o(__spreadValues$v({
|
|
2091
2210
|
className: cs(
|
|
2092
2211
|
className,
|
|
2093
2212
|
KitInputStyle,
|
|
@@ -2112,33 +2231,33 @@ const FieldsString = (_a) => {
|
|
|
2112
2231
|
));
|
|
2113
2232
|
};
|
|
2114
2233
|
|
|
2115
|
-
var __defProp$
|
|
2116
|
-
var __defProps$
|
|
2117
|
-
var __getOwnPropDescs$
|
|
2118
|
-
var __getOwnPropSymbols$
|
|
2119
|
-
var __hasOwnProp$
|
|
2120
|
-
var __propIsEnum$
|
|
2121
|
-
var __defNormalProp$
|
|
2122
|
-
var __spreadValues$
|
|
2234
|
+
var __defProp$u = Object.defineProperty;
|
|
2235
|
+
var __defProps$n = Object.defineProperties;
|
|
2236
|
+
var __getOwnPropDescs$n = Object.getOwnPropertyDescriptors;
|
|
2237
|
+
var __getOwnPropSymbols$u = Object.getOwnPropertySymbols;
|
|
2238
|
+
var __hasOwnProp$u = Object.prototype.hasOwnProperty;
|
|
2239
|
+
var __propIsEnum$u = Object.prototype.propertyIsEnumerable;
|
|
2240
|
+
var __defNormalProp$u = (obj, key, value) => key in obj ? __defProp$u(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2241
|
+
var __spreadValues$u = (a, b) => {
|
|
2123
2242
|
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$
|
|
2243
|
+
if (__hasOwnProp$u.call(b, prop))
|
|
2244
|
+
__defNormalProp$u(a, prop, b[prop]);
|
|
2245
|
+
if (__getOwnPropSymbols$u)
|
|
2246
|
+
for (var prop of __getOwnPropSymbols$u(b)) {
|
|
2247
|
+
if (__propIsEnum$u.call(b, prop))
|
|
2248
|
+
__defNormalProp$u(a, prop, b[prop]);
|
|
2130
2249
|
}
|
|
2131
2250
|
return a;
|
|
2132
2251
|
};
|
|
2133
|
-
var __spreadProps$
|
|
2134
|
-
var __objRest$
|
|
2252
|
+
var __spreadProps$n = (a, b) => __defProps$n(a, __getOwnPropDescs$n(b));
|
|
2253
|
+
var __objRest$c = (source, exclude) => {
|
|
2135
2254
|
var target = {};
|
|
2136
2255
|
for (var prop in source)
|
|
2137
|
-
if (__hasOwnProp$
|
|
2256
|
+
if (__hasOwnProp$u.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2138
2257
|
target[prop] = source[prop];
|
|
2139
|
-
if (source != null && __getOwnPropSymbols$
|
|
2140
|
-
for (var prop of __getOwnPropSymbols$
|
|
2141
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2258
|
+
if (source != null && __getOwnPropSymbols$u)
|
|
2259
|
+
for (var prop of __getOwnPropSymbols$u(source)) {
|
|
2260
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$u.call(source, prop))
|
|
2142
2261
|
target[prop] = source[prop];
|
|
2143
2262
|
}
|
|
2144
2263
|
return target;
|
|
@@ -2148,7 +2267,7 @@ const TextArea = (_a) => {
|
|
|
2148
2267
|
className,
|
|
2149
2268
|
error,
|
|
2150
2269
|
size = "middle"
|
|
2151
|
-
} = _b, props = __objRest$
|
|
2270
|
+
} = _b, props = __objRest$c(_b, [
|
|
2152
2271
|
"className",
|
|
2153
2272
|
"error",
|
|
2154
2273
|
"size"
|
|
@@ -2160,7 +2279,7 @@ const TextArea = (_a) => {
|
|
|
2160
2279
|
}[size];
|
|
2161
2280
|
return /* @__PURE__ */ React__default.createElement(
|
|
2162
2281
|
Input$1.TextArea,
|
|
2163
|
-
__spreadProps$
|
|
2282
|
+
__spreadProps$n(__spreadValues$u({}, props), {
|
|
2164
2283
|
className: cs(
|
|
2165
2284
|
className,
|
|
2166
2285
|
InputStyle,
|
|
@@ -2174,33 +2293,33 @@ const TextArea = (_a) => {
|
|
|
2174
2293
|
);
|
|
2175
2294
|
};
|
|
2176
2295
|
|
|
2177
|
-
var __defProp$
|
|
2178
|
-
var __defProps$
|
|
2179
|
-
var __getOwnPropDescs$
|
|
2180
|
-
var __getOwnPropSymbols$
|
|
2181
|
-
var __hasOwnProp$
|
|
2182
|
-
var __propIsEnum$
|
|
2183
|
-
var __defNormalProp$
|
|
2184
|
-
var __spreadValues$
|
|
2296
|
+
var __defProp$t = Object.defineProperty;
|
|
2297
|
+
var __defProps$m = Object.defineProperties;
|
|
2298
|
+
var __getOwnPropDescs$m = Object.getOwnPropertyDescriptors;
|
|
2299
|
+
var __getOwnPropSymbols$t = Object.getOwnPropertySymbols;
|
|
2300
|
+
var __hasOwnProp$t = Object.prototype.hasOwnProperty;
|
|
2301
|
+
var __propIsEnum$t = Object.prototype.propertyIsEnumerable;
|
|
2302
|
+
var __defNormalProp$t = (obj, key, value) => key in obj ? __defProp$t(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2303
|
+
var __spreadValues$t = (a, b) => {
|
|
2185
2304
|
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$
|
|
2305
|
+
if (__hasOwnProp$t.call(b, prop))
|
|
2306
|
+
__defNormalProp$t(a, prop, b[prop]);
|
|
2307
|
+
if (__getOwnPropSymbols$t)
|
|
2308
|
+
for (var prop of __getOwnPropSymbols$t(b)) {
|
|
2309
|
+
if (__propIsEnum$t.call(b, prop))
|
|
2310
|
+
__defNormalProp$t(a, prop, b[prop]);
|
|
2192
2311
|
}
|
|
2193
2312
|
return a;
|
|
2194
2313
|
};
|
|
2195
|
-
var __spreadProps$
|
|
2196
|
-
var __objRest$
|
|
2314
|
+
var __spreadProps$m = (a, b) => __defProps$m(a, __getOwnPropDescs$m(b));
|
|
2315
|
+
var __objRest$b = (source, exclude) => {
|
|
2197
2316
|
var target = {};
|
|
2198
2317
|
for (var prop in source)
|
|
2199
|
-
if (__hasOwnProp$
|
|
2318
|
+
if (__hasOwnProp$t.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2200
2319
|
target[prop] = source[prop];
|
|
2201
|
-
if (source != null && __getOwnPropSymbols$
|
|
2202
|
-
for (var prop of __getOwnPropSymbols$
|
|
2203
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2320
|
+
if (source != null && __getOwnPropSymbols$t)
|
|
2321
|
+
for (var prop of __getOwnPropSymbols$t(source)) {
|
|
2322
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$t.call(source, prop))
|
|
2204
2323
|
target[prop] = source[prop];
|
|
2205
2324
|
}
|
|
2206
2325
|
return target;
|
|
@@ -2210,14 +2329,14 @@ const FieldsTextArea = (_a) => {
|
|
|
2210
2329
|
input,
|
|
2211
2330
|
meta,
|
|
2212
2331
|
onFocusChangeHeight
|
|
2213
|
-
} = _b, props = __objRest$
|
|
2332
|
+
} = _b, props = __objRest$b(_b, [
|
|
2214
2333
|
"input",
|
|
2215
2334
|
"meta",
|
|
2216
2335
|
"onFocusChangeHeight"
|
|
2217
2336
|
]);
|
|
2218
2337
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
2219
2338
|
TextArea,
|
|
2220
|
-
__spreadProps$
|
|
2339
|
+
__spreadProps$m(__spreadValues$t(__spreadValues$t({}, input), props), {
|
|
2221
2340
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError),
|
|
2222
2341
|
onFocus: (e) => {
|
|
2223
2342
|
input.onFocus(e);
|
|
@@ -2231,33 +2350,33 @@ const FieldsTextArea = (_a) => {
|
|
|
2231
2350
|
));
|
|
2232
2351
|
};
|
|
2233
2352
|
|
|
2234
|
-
var __defProp$
|
|
2235
|
-
var __defProps$
|
|
2236
|
-
var __getOwnPropDescs$
|
|
2237
|
-
var __getOwnPropSymbols$
|
|
2238
|
-
var __hasOwnProp$
|
|
2239
|
-
var __propIsEnum$
|
|
2240
|
-
var __defNormalProp$
|
|
2241
|
-
var __spreadValues$
|
|
2353
|
+
var __defProp$s = Object.defineProperty;
|
|
2354
|
+
var __defProps$l = Object.defineProperties;
|
|
2355
|
+
var __getOwnPropDescs$l = Object.getOwnPropertyDescriptors;
|
|
2356
|
+
var __getOwnPropSymbols$s = Object.getOwnPropertySymbols;
|
|
2357
|
+
var __hasOwnProp$s = Object.prototype.hasOwnProperty;
|
|
2358
|
+
var __propIsEnum$s = Object.prototype.propertyIsEnumerable;
|
|
2359
|
+
var __defNormalProp$s = (obj, key, value) => key in obj ? __defProp$s(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2360
|
+
var __spreadValues$s = (a, b) => {
|
|
2242
2361
|
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$
|
|
2362
|
+
if (__hasOwnProp$s.call(b, prop))
|
|
2363
|
+
__defNormalProp$s(a, prop, b[prop]);
|
|
2364
|
+
if (__getOwnPropSymbols$s)
|
|
2365
|
+
for (var prop of __getOwnPropSymbols$s(b)) {
|
|
2366
|
+
if (__propIsEnum$s.call(b, prop))
|
|
2367
|
+
__defNormalProp$s(a, prop, b[prop]);
|
|
2249
2368
|
}
|
|
2250
2369
|
return a;
|
|
2251
2370
|
};
|
|
2252
|
-
var __spreadProps$
|
|
2253
|
-
var __objRest$
|
|
2371
|
+
var __spreadProps$l = (a, b) => __defProps$l(a, __getOwnPropDescs$l(b));
|
|
2372
|
+
var __objRest$a = (source, exclude) => {
|
|
2254
2373
|
var target = {};
|
|
2255
2374
|
for (var prop in source)
|
|
2256
|
-
if (__hasOwnProp$
|
|
2375
|
+
if (__hasOwnProp$s.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2257
2376
|
target[prop] = source[prop];
|
|
2258
|
-
if (source != null && __getOwnPropSymbols$
|
|
2259
|
-
for (var prop of __getOwnPropSymbols$
|
|
2260
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2377
|
+
if (source != null && __getOwnPropSymbols$s)
|
|
2378
|
+
for (var prop of __getOwnPropSymbols$s(source)) {
|
|
2379
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$s.call(source, prop))
|
|
2261
2380
|
target[prop] = source[prop];
|
|
2262
2381
|
}
|
|
2263
2382
|
return target;
|
|
@@ -2267,7 +2386,7 @@ const TimePicker = (_a) => {
|
|
|
2267
2386
|
className,
|
|
2268
2387
|
error,
|
|
2269
2388
|
size = "middle"
|
|
2270
|
-
} = _b, props = __objRest$
|
|
2389
|
+
} = _b, props = __objRest$a(_b, [
|
|
2271
2390
|
"className",
|
|
2272
2391
|
"error",
|
|
2273
2392
|
"size"
|
|
@@ -2279,7 +2398,7 @@ const TimePicker = (_a) => {
|
|
|
2279
2398
|
}[size];
|
|
2280
2399
|
return /* @__PURE__ */ React__default.createElement(
|
|
2281
2400
|
TimePicker$1,
|
|
2282
|
-
__spreadProps$
|
|
2401
|
+
__spreadProps$l(__spreadValues$s({}, props), {
|
|
2283
2402
|
size,
|
|
2284
2403
|
"data-test": props.name,
|
|
2285
2404
|
className: cs(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -2287,33 +2406,33 @@ const TimePicker = (_a) => {
|
|
|
2287
2406
|
);
|
|
2288
2407
|
};
|
|
2289
2408
|
|
|
2290
|
-
var __defProp$
|
|
2291
|
-
var __defProps$
|
|
2292
|
-
var __getOwnPropDescs$
|
|
2293
|
-
var __getOwnPropSymbols$
|
|
2294
|
-
var __hasOwnProp$
|
|
2295
|
-
var __propIsEnum$
|
|
2296
|
-
var __defNormalProp$
|
|
2297
|
-
var __spreadValues$
|
|
2409
|
+
var __defProp$r = Object.defineProperty;
|
|
2410
|
+
var __defProps$k = Object.defineProperties;
|
|
2411
|
+
var __getOwnPropDescs$k = Object.getOwnPropertyDescriptors;
|
|
2412
|
+
var __getOwnPropSymbols$r = Object.getOwnPropertySymbols;
|
|
2413
|
+
var __hasOwnProp$r = Object.prototype.hasOwnProperty;
|
|
2414
|
+
var __propIsEnum$r = Object.prototype.propertyIsEnumerable;
|
|
2415
|
+
var __defNormalProp$r = (obj, key, value) => key in obj ? __defProp$r(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2416
|
+
var __spreadValues$r = (a, b) => {
|
|
2298
2417
|
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$
|
|
2418
|
+
if (__hasOwnProp$r.call(b, prop))
|
|
2419
|
+
__defNormalProp$r(a, prop, b[prop]);
|
|
2420
|
+
if (__getOwnPropSymbols$r)
|
|
2421
|
+
for (var prop of __getOwnPropSymbols$r(b)) {
|
|
2422
|
+
if (__propIsEnum$r.call(b, prop))
|
|
2423
|
+
__defNormalProp$r(a, prop, b[prop]);
|
|
2305
2424
|
}
|
|
2306
2425
|
return a;
|
|
2307
2426
|
};
|
|
2308
|
-
var __spreadProps$
|
|
2309
|
-
var __objRest$
|
|
2427
|
+
var __spreadProps$k = (a, b) => __defProps$k(a, __getOwnPropDescs$k(b));
|
|
2428
|
+
var __objRest$9 = (source, exclude) => {
|
|
2310
2429
|
var target = {};
|
|
2311
2430
|
for (var prop in source)
|
|
2312
|
-
if (__hasOwnProp$
|
|
2431
|
+
if (__hasOwnProp$r.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2313
2432
|
target[prop] = source[prop];
|
|
2314
|
-
if (source != null && __getOwnPropSymbols$
|
|
2315
|
-
for (var prop of __getOwnPropSymbols$
|
|
2316
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2433
|
+
if (source != null && __getOwnPropSymbols$r)
|
|
2434
|
+
for (var prop of __getOwnPropSymbols$r(source)) {
|
|
2435
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$r.call(source, prop))
|
|
2317
2436
|
target[prop] = source[prop];
|
|
2318
2437
|
}
|
|
2319
2438
|
return target;
|
|
@@ -2322,13 +2441,13 @@ const FieldsTimePicker = (_a) => {
|
|
|
2322
2441
|
var _b = _a, {
|
|
2323
2442
|
input,
|
|
2324
2443
|
meta
|
|
2325
|
-
} = _b, props = __objRest$
|
|
2444
|
+
} = _b, props = __objRest$9(_b, [
|
|
2326
2445
|
"input",
|
|
2327
2446
|
"meta"
|
|
2328
2447
|
]);
|
|
2329
2448
|
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(
|
|
2330
2449
|
TimePicker,
|
|
2331
|
-
__spreadValues$
|
|
2450
|
+
__spreadValues$r(__spreadProps$k(__spreadValues$r({}, input), {
|
|
2332
2451
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
2333
2452
|
}), props)
|
|
2334
2453
|
));
|
|
@@ -2347,29 +2466,32 @@ const fields = {
|
|
|
2347
2466
|
DateTimeRange: FieldsDateTimeRange
|
|
2348
2467
|
};
|
|
2349
2468
|
|
|
2350
|
-
var __defProp$
|
|
2351
|
-
var __defProps$
|
|
2352
|
-
var __getOwnPropDescs$
|
|
2353
|
-
var __getOwnPropSymbols$
|
|
2354
|
-
var __hasOwnProp$
|
|
2355
|
-
var __propIsEnum$
|
|
2356
|
-
var __defNormalProp$
|
|
2469
|
+
var __defProp$q = Object.defineProperty;
|
|
2470
|
+
var __defProps$j = Object.defineProperties;
|
|
2471
|
+
var __getOwnPropDescs$j = Object.getOwnPropertyDescriptors;
|
|
2472
|
+
var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
|
|
2473
|
+
var __hasOwnProp$q = Object.prototype.hasOwnProperty;
|
|
2474
|
+
var __propIsEnum$q = Object.prototype.propertyIsEnumerable;
|
|
2475
|
+
var __defNormalProp$q = (obj, key, value) => key in obj ? __defProp$q(obj, key, {
|
|
2357
2476
|
enumerable: true,
|
|
2358
2477
|
configurable: true,
|
|
2359
2478
|
writable: true,
|
|
2360
2479
|
value
|
|
2361
2480
|
}) : obj[key] = value;
|
|
2362
|
-
var __spreadValues$
|
|
2363
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
2364
|
-
if (__getOwnPropSymbols$
|
|
2365
|
-
if (__propIsEnum$
|
|
2481
|
+
var __spreadValues$q = (a, b) => {
|
|
2482
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$q.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
|
|
2483
|
+
if (__getOwnPropSymbols$q) for (var prop of __getOwnPropSymbols$q(b)) {
|
|
2484
|
+
if (__propIsEnum$q.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
|
|
2366
2485
|
}
|
|
2367
2486
|
return a;
|
|
2368
2487
|
};
|
|
2369
|
-
var __spreadProps$
|
|
2488
|
+
var __spreadProps$j = (a, b) => __defProps$j(a, __getOwnPropDescs$j(b));
|
|
2489
|
+
const {
|
|
2490
|
+
Item: AntdFormItem
|
|
2491
|
+
} = Form$1;
|
|
2370
2492
|
const FormItemStyle$1 = "f1p9ti6d";
|
|
2371
2493
|
const FormItem$1 = props => {
|
|
2372
|
-
return /* @__PURE__ */React__default.createElement(AntdFormItem, __spreadProps$
|
|
2494
|
+
return /* @__PURE__ */React__default.createElement(AntdFormItem, __spreadProps$j(__spreadValues$q({}, props), {
|
|
2373
2495
|
className: cs(FormItemStyle$1, props.className)
|
|
2374
2496
|
}));
|
|
2375
2497
|
};
|
|
@@ -2377,19 +2499,19 @@ const FormItem$1 = props => {
|
|
|
2377
2499
|
const Form = Form$1;
|
|
2378
2500
|
Form.Item = FormItem$1;
|
|
2379
2501
|
|
|
2380
|
-
var __defProp$
|
|
2381
|
-
var __getOwnPropSymbols$
|
|
2382
|
-
var __hasOwnProp$
|
|
2383
|
-
var __propIsEnum$
|
|
2384
|
-
var __defNormalProp$
|
|
2385
|
-
var __spreadValues$
|
|
2502
|
+
var __defProp$p = Object.defineProperty;
|
|
2503
|
+
var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
|
|
2504
|
+
var __hasOwnProp$p = Object.prototype.hasOwnProperty;
|
|
2505
|
+
var __propIsEnum$p = Object.prototype.propertyIsEnumerable;
|
|
2506
|
+
var __defNormalProp$p = (obj, key, value) => key in obj ? __defProp$p(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2507
|
+
var __spreadValues$p = (a, b) => {
|
|
2386
2508
|
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$
|
|
2509
|
+
if (__hasOwnProp$p.call(b, prop))
|
|
2510
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
2511
|
+
if (__getOwnPropSymbols$p)
|
|
2512
|
+
for (var prop of __getOwnPropSymbols$p(b)) {
|
|
2513
|
+
if (__propIsEnum$p.call(b, prop))
|
|
2514
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
2393
2515
|
}
|
|
2394
2516
|
return a;
|
|
2395
2517
|
};
|
|
@@ -2401,7 +2523,7 @@ const Frequency = ({
|
|
|
2401
2523
|
emptyProps
|
|
2402
2524
|
}) => {
|
|
2403
2525
|
if (isEmpty(rawValue)) {
|
|
2404
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
2526
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$p({}, emptyProps));
|
|
2405
2527
|
}
|
|
2406
2528
|
const { value, unit } = formatFrequency(rawValue, decimals);
|
|
2407
2529
|
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 +2536,25 @@ const InputGroup = /*#__PURE__*/styled(_exp())({
|
|
|
2414
2536
|
propsAsIs: true
|
|
2415
2537
|
});
|
|
2416
2538
|
|
|
2417
|
-
var __defProp$
|
|
2418
|
-
var __defProps$
|
|
2419
|
-
var __getOwnPropDescs$
|
|
2420
|
-
var __getOwnPropSymbols$
|
|
2421
|
-
var __hasOwnProp$
|
|
2422
|
-
var __propIsEnum$
|
|
2423
|
-
var __defNormalProp$
|
|
2424
|
-
var __spreadValues$
|
|
2539
|
+
var __defProp$o = Object.defineProperty;
|
|
2540
|
+
var __defProps$i = Object.defineProperties;
|
|
2541
|
+
var __getOwnPropDescs$i = Object.getOwnPropertyDescriptors;
|
|
2542
|
+
var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
|
|
2543
|
+
var __hasOwnProp$o = Object.prototype.hasOwnProperty;
|
|
2544
|
+
var __propIsEnum$o = Object.prototype.propertyIsEnumerable;
|
|
2545
|
+
var __defNormalProp$o = (obj, key2, value) => key2 in obj ? __defProp$o(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
|
|
2546
|
+
var __spreadValues$o = (a, b) => {
|
|
2425
2547
|
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$
|
|
2548
|
+
if (__hasOwnProp$o.call(b, prop))
|
|
2549
|
+
__defNormalProp$o(a, prop, b[prop]);
|
|
2550
|
+
if (__getOwnPropSymbols$o)
|
|
2551
|
+
for (var prop of __getOwnPropSymbols$o(b)) {
|
|
2552
|
+
if (__propIsEnum$o.call(b, prop))
|
|
2553
|
+
__defNormalProp$o(a, prop, b[prop]);
|
|
2432
2554
|
}
|
|
2433
2555
|
return a;
|
|
2434
2556
|
};
|
|
2435
|
-
var __spreadProps$
|
|
2557
|
+
var __spreadProps$i = (a, b) => __defProps$i(a, __getOwnPropDescs$i(b));
|
|
2436
2558
|
let messageInstance;
|
|
2437
2559
|
let defaultDuration = 3;
|
|
2438
2560
|
let defaultTop;
|
|
@@ -2539,7 +2661,7 @@ function notice(args) {
|
|
|
2539
2661
|
}
|
|
2540
2662
|
getRCNotificationInstance(args, ({ prefixCls, instance }) => {
|
|
2541
2663
|
instance.notice(
|
|
2542
|
-
getRCNoticeProps(__spreadProps$
|
|
2664
|
+
getRCNoticeProps(__spreadProps$i(__spreadValues$o({}, args), { key: target, onClose: callback }), prefixCls)
|
|
2543
2665
|
);
|
|
2544
2666
|
});
|
|
2545
2667
|
});
|
|
@@ -2568,7 +2690,7 @@ const api = {
|
|
|
2568
2690
|
function attachTypeApi(originalApi, type) {
|
|
2569
2691
|
originalApi[type] = (content, duration, onClose) => {
|
|
2570
2692
|
if (isArgsProps(content)) {
|
|
2571
|
-
return originalApi.open(__spreadProps$
|
|
2693
|
+
return originalApi.open(__spreadProps$i(__spreadValues$o({}, content), { type }));
|
|
2572
2694
|
}
|
|
2573
2695
|
if (typeof duration === "function") {
|
|
2574
2696
|
onClose = duration;
|
|
@@ -2582,25 +2704,25 @@ function attachTypeApi(originalApi, type) {
|
|
|
2582
2704
|
);
|
|
2583
2705
|
api.warn = api.warning;
|
|
2584
2706
|
|
|
2585
|
-
var __defProp$
|
|
2586
|
-
var __defProps$
|
|
2587
|
-
var __getOwnPropDescs$
|
|
2588
|
-
var __getOwnPropSymbols$
|
|
2589
|
-
var __hasOwnProp$
|
|
2590
|
-
var __propIsEnum$
|
|
2591
|
-
var __defNormalProp$
|
|
2592
|
-
var __spreadValues$
|
|
2707
|
+
var __defProp$n = Object.defineProperty;
|
|
2708
|
+
var __defProps$h = Object.defineProperties;
|
|
2709
|
+
var __getOwnPropDescs$h = Object.getOwnPropertyDescriptors;
|
|
2710
|
+
var __getOwnPropSymbols$n = Object.getOwnPropertySymbols;
|
|
2711
|
+
var __hasOwnProp$n = Object.prototype.hasOwnProperty;
|
|
2712
|
+
var __propIsEnum$n = Object.prototype.propertyIsEnumerable;
|
|
2713
|
+
var __defNormalProp$n = (obj, key, value) => key in obj ? __defProp$n(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2714
|
+
var __spreadValues$n = (a, b) => {
|
|
2593
2715
|
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$
|
|
2716
|
+
if (__hasOwnProp$n.call(b, prop))
|
|
2717
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
2718
|
+
if (__getOwnPropSymbols$n)
|
|
2719
|
+
for (var prop of __getOwnPropSymbols$n(b)) {
|
|
2720
|
+
if (__propIsEnum$n.call(b, prop))
|
|
2721
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
2600
2722
|
}
|
|
2601
2723
|
return a;
|
|
2602
2724
|
};
|
|
2603
|
-
var __spreadProps$
|
|
2725
|
+
var __spreadProps$h = (a, b) => __defProps$h(a, __getOwnPropDescs$h(b));
|
|
2604
2726
|
const initialChartState = {
|
|
2605
2727
|
pointers: {},
|
|
2606
2728
|
resourceData: {},
|
|
@@ -2610,8 +2732,8 @@ const chartReducer = (state = initialChartState, action) => {
|
|
|
2610
2732
|
switch (action.type) {
|
|
2611
2733
|
case "SET_POINTER" /* SET_POINTER */: {
|
|
2612
2734
|
const { uuid, left, text, visible, value } = action.payload;
|
|
2613
|
-
return __spreadProps$
|
|
2614
|
-
pointers: __spreadProps$
|
|
2735
|
+
return __spreadProps$h(__spreadValues$n({}, state), {
|
|
2736
|
+
pointers: __spreadProps$h(__spreadValues$n({}, state.pointers), {
|
|
2615
2737
|
[uuid]: {
|
|
2616
2738
|
left,
|
|
2617
2739
|
text,
|
|
@@ -2623,16 +2745,16 @@ const chartReducer = (state = initialChartState, action) => {
|
|
|
2623
2745
|
}
|
|
2624
2746
|
case "SET_RESOURCE_DATA" /* SET_RESOURCE_DATA */: {
|
|
2625
2747
|
const { uuid, data } = action.payload;
|
|
2626
|
-
return __spreadProps$
|
|
2627
|
-
resourceData: __spreadProps$
|
|
2748
|
+
return __spreadProps$h(__spreadValues$n({}, state), {
|
|
2749
|
+
resourceData: __spreadProps$h(__spreadValues$n({}, state.resourceData), {
|
|
2628
2750
|
[uuid]: data
|
|
2629
2751
|
})
|
|
2630
2752
|
});
|
|
2631
2753
|
}
|
|
2632
2754
|
case "SET_AVERAGE_DATA" /* SET_AVERAGE_DATA */: {
|
|
2633
2755
|
const { uuid, average } = action.payload;
|
|
2634
|
-
return __spreadProps$
|
|
2635
|
-
averageData: __spreadProps$
|
|
2756
|
+
return __spreadProps$h(__spreadValues$n({}, state), {
|
|
2757
|
+
averageData: __spreadProps$h(__spreadValues$n({}, state.averageData), {
|
|
2636
2758
|
[uuid]: average
|
|
2637
2759
|
})
|
|
2638
2760
|
});
|
|
@@ -2643,25 +2765,25 @@ const chartReducer = (state = initialChartState, action) => {
|
|
|
2643
2765
|
}
|
|
2644
2766
|
};
|
|
2645
2767
|
|
|
2646
|
-
var __defProp$
|
|
2647
|
-
var __defProps$
|
|
2648
|
-
var __getOwnPropDescs$
|
|
2649
|
-
var __getOwnPropSymbols$
|
|
2650
|
-
var __hasOwnProp$
|
|
2651
|
-
var __propIsEnum$
|
|
2652
|
-
var __defNormalProp$
|
|
2653
|
-
var __spreadValues$
|
|
2768
|
+
var __defProp$m = Object.defineProperty;
|
|
2769
|
+
var __defProps$g = Object.defineProperties;
|
|
2770
|
+
var __getOwnPropDescs$g = Object.getOwnPropertyDescriptors;
|
|
2771
|
+
var __getOwnPropSymbols$m = Object.getOwnPropertySymbols;
|
|
2772
|
+
var __hasOwnProp$m = Object.prototype.hasOwnProperty;
|
|
2773
|
+
var __propIsEnum$m = Object.prototype.propertyIsEnumerable;
|
|
2774
|
+
var __defNormalProp$m = (obj, key, value) => key in obj ? __defProp$m(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2775
|
+
var __spreadValues$m = (a, b) => {
|
|
2654
2776
|
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$
|
|
2777
|
+
if (__hasOwnProp$m.call(b, prop))
|
|
2778
|
+
__defNormalProp$m(a, prop, b[prop]);
|
|
2779
|
+
if (__getOwnPropSymbols$m)
|
|
2780
|
+
for (var prop of __getOwnPropSymbols$m(b)) {
|
|
2781
|
+
if (__propIsEnum$m.call(b, prop))
|
|
2782
|
+
__defNormalProp$m(a, prop, b[prop]);
|
|
2661
2783
|
}
|
|
2662
2784
|
return a;
|
|
2663
2785
|
};
|
|
2664
|
-
var __spreadProps$
|
|
2786
|
+
var __spreadProps$g = (a, b) => __defProps$g(a, __getOwnPropDescs$g(b));
|
|
2665
2787
|
var ModalActions = /* @__PURE__ */ ((ModalActions2) => {
|
|
2666
2788
|
ModalActions2["PUSH_MODAL"] = "PUSH_MODAL";
|
|
2667
2789
|
ModalActions2["POP_MODAL"] = "POP_MODAL";
|
|
@@ -2682,22 +2804,22 @@ const modalReducer = (state = initialModalState, action) => {
|
|
|
2682
2804
|
)) {
|
|
2683
2805
|
return state;
|
|
2684
2806
|
}
|
|
2685
|
-
return __spreadProps$
|
|
2686
|
-
stack: state.stack.concat(__spreadProps$
|
|
2807
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2808
|
+
stack: state.stack.concat(__spreadProps$g(__spreadValues$m({}, action.payload), {
|
|
2687
2809
|
id: MODAL_ID++
|
|
2688
2810
|
}))
|
|
2689
2811
|
});
|
|
2690
2812
|
case "POP_MODAL" /* POP_MODAL */:
|
|
2691
|
-
return __spreadProps$
|
|
2813
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2692
2814
|
stack: state.stack.slice(0, -1)
|
|
2693
2815
|
});
|
|
2694
2816
|
case "REMOVE_MODAL" /* REMOVE_MODAL */:
|
|
2695
|
-
return __spreadProps$
|
|
2817
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2696
2818
|
closeId: 0,
|
|
2697
2819
|
stack: state.stack.filter((m) => m.id !== action.id)
|
|
2698
2820
|
});
|
|
2699
2821
|
case "CLOSE_MODAL" /* CLOSE_MODAL */:
|
|
2700
|
-
return __spreadProps$
|
|
2822
|
+
return __spreadProps$g(__spreadValues$m({}, state), {
|
|
2701
2823
|
closeId: action.id
|
|
2702
2824
|
});
|
|
2703
2825
|
default:
|
|
@@ -2748,33 +2870,33 @@ const KitStoreProvider = (props) => {
|
|
|
2748
2870
|
const useKitDispatch = createDispatchHook(ctx);
|
|
2749
2871
|
const useKitSelector = createSelectorHook(ctx);
|
|
2750
2872
|
|
|
2751
|
-
var __defProp$
|
|
2752
|
-
var __defProps$
|
|
2753
|
-
var __getOwnPropDescs$
|
|
2754
|
-
var __getOwnPropSymbols$
|
|
2755
|
-
var __hasOwnProp$
|
|
2756
|
-
var __propIsEnum$
|
|
2757
|
-
var __defNormalProp$
|
|
2758
|
-
var __spreadValues$
|
|
2873
|
+
var __defProp$l = Object.defineProperty;
|
|
2874
|
+
var __defProps$f = Object.defineProperties;
|
|
2875
|
+
var __getOwnPropDescs$f = Object.getOwnPropertyDescriptors;
|
|
2876
|
+
var __getOwnPropSymbols$l = Object.getOwnPropertySymbols;
|
|
2877
|
+
var __hasOwnProp$l = Object.prototype.hasOwnProperty;
|
|
2878
|
+
var __propIsEnum$l = Object.prototype.propertyIsEnumerable;
|
|
2879
|
+
var __defNormalProp$l = (obj, key, value) => key in obj ? __defProp$l(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2880
|
+
var __spreadValues$l = (a, b) => {
|
|
2759
2881
|
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$
|
|
2882
|
+
if (__hasOwnProp$l.call(b, prop))
|
|
2883
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
2884
|
+
if (__getOwnPropSymbols$l)
|
|
2885
|
+
for (var prop of __getOwnPropSymbols$l(b)) {
|
|
2886
|
+
if (__propIsEnum$l.call(b, prop))
|
|
2887
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
2766
2888
|
}
|
|
2767
2889
|
return a;
|
|
2768
2890
|
};
|
|
2769
|
-
var __spreadProps$
|
|
2770
|
-
var __objRest$
|
|
2891
|
+
var __spreadProps$f = (a, b) => __defProps$f(a, __getOwnPropDescs$f(b));
|
|
2892
|
+
var __objRest$8 = (source, exclude) => {
|
|
2771
2893
|
var target = {};
|
|
2772
2894
|
for (var prop in source)
|
|
2773
|
-
if (__hasOwnProp$
|
|
2895
|
+
if (__hasOwnProp$l.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2774
2896
|
target[prop] = source[prop];
|
|
2775
|
-
if (source != null && __getOwnPropSymbols$
|
|
2776
|
-
for (var prop of __getOwnPropSymbols$
|
|
2777
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2897
|
+
if (source != null && __getOwnPropSymbols$l)
|
|
2898
|
+
for (var prop of __getOwnPropSymbols$l(source)) {
|
|
2899
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$l.call(source, prop))
|
|
2778
2900
|
target[prop] = source[prop];
|
|
2779
2901
|
}
|
|
2780
2902
|
return target;
|
|
@@ -2801,7 +2923,7 @@ const Modal = (props) => {
|
|
|
2801
2923
|
showCancel = true,
|
|
2802
2924
|
showOk = true,
|
|
2803
2925
|
afterClose
|
|
2804
|
-
} = _a, restProps = __objRest$
|
|
2926
|
+
} = _a, restProps = __objRest$8(_a, [
|
|
2805
2927
|
"error",
|
|
2806
2928
|
"okText",
|
|
2807
2929
|
"cancelText",
|
|
@@ -2856,7 +2978,7 @@ const Modal = (props) => {
|
|
|
2856
2978
|
}
|
|
2857
2979
|
return /* @__PURE__ */ React__default.createElement(
|
|
2858
2980
|
Modal$1,
|
|
2859
|
-
__spreadProps$
|
|
2981
|
+
__spreadProps$f(__spreadValues$l({
|
|
2860
2982
|
maskClosable,
|
|
2861
2983
|
className: cs(
|
|
2862
2984
|
className,
|
|
@@ -2891,7 +3013,7 @@ const Modal = (props) => {
|
|
|
2891
3013
|
prevText
|
|
2892
3014
|
), 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
3015
|
Button,
|
|
2894
|
-
__spreadValues$
|
|
3016
|
+
__spreadValues$l({
|
|
2895
3017
|
type: "quiet",
|
|
2896
3018
|
onMouseDown: (e) => {
|
|
2897
3019
|
e.preventDefault();
|
|
@@ -2905,7 +3027,7 @@ const Modal = (props) => {
|
|
|
2905
3027
|
cancelText
|
|
2906
3028
|
), showOk && /* @__PURE__ */ React__default.createElement(
|
|
2907
3029
|
Button,
|
|
2908
|
-
__spreadValues$
|
|
3030
|
+
__spreadValues$l({
|
|
2909
3031
|
onClick: (e) => {
|
|
2910
3032
|
var _a2, _b2;
|
|
2911
3033
|
onOk == null ? void 0 : onOk(e);
|
|
@@ -3057,19 +3179,19 @@ const Pagination = props => {
|
|
|
3057
3179
|
}))));
|
|
3058
3180
|
};
|
|
3059
3181
|
|
|
3060
|
-
var __defProp$
|
|
3061
|
-
var __getOwnPropSymbols$
|
|
3062
|
-
var __hasOwnProp$
|
|
3063
|
-
var __propIsEnum$
|
|
3064
|
-
var __defNormalProp$
|
|
3065
|
-
var __spreadValues$
|
|
3182
|
+
var __defProp$k = Object.defineProperty;
|
|
3183
|
+
var __getOwnPropSymbols$k = Object.getOwnPropertySymbols;
|
|
3184
|
+
var __hasOwnProp$k = Object.prototype.hasOwnProperty;
|
|
3185
|
+
var __propIsEnum$k = Object.prototype.propertyIsEnumerable;
|
|
3186
|
+
var __defNormalProp$k = (obj, key, value) => key in obj ? __defProp$k(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3187
|
+
var __spreadValues$k = (a, b) => {
|
|
3066
3188
|
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$
|
|
3189
|
+
if (__hasOwnProp$k.call(b, prop))
|
|
3190
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
3191
|
+
if (__getOwnPropSymbols$k)
|
|
3192
|
+
for (var prop of __getOwnPropSymbols$k(b)) {
|
|
3193
|
+
if (__propIsEnum$k.call(b, prop))
|
|
3194
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
3073
3195
|
}
|
|
3074
3196
|
return a;
|
|
3075
3197
|
};
|
|
@@ -3082,52 +3204,52 @@ const Percent = ({
|
|
|
3082
3204
|
emptyProps
|
|
3083
3205
|
}) => {
|
|
3084
3206
|
if (isEmpty(rawValue)) {
|
|
3085
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
3207
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$k({}, emptyProps));
|
|
3086
3208
|
}
|
|
3087
3209
|
const { value, unit } = formatPercent(rawValue, decimals, saturated);
|
|
3088
3210
|
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
3211
|
};
|
|
3090
3212
|
|
|
3091
|
-
var __defProp$
|
|
3092
|
-
var __getOwnPropSymbols$
|
|
3093
|
-
var __hasOwnProp$
|
|
3094
|
-
var __propIsEnum$
|
|
3095
|
-
var __defNormalProp$
|
|
3096
|
-
var __spreadValues$
|
|
3213
|
+
var __defProp$j = Object.defineProperty;
|
|
3214
|
+
var __getOwnPropSymbols$j = Object.getOwnPropertySymbols;
|
|
3215
|
+
var __hasOwnProp$j = Object.prototype.hasOwnProperty;
|
|
3216
|
+
var __propIsEnum$j = Object.prototype.propertyIsEnumerable;
|
|
3217
|
+
var __defNormalProp$j = (obj, key, value) => key in obj ? __defProp$j(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3218
|
+
var __spreadValues$j = (a, b) => {
|
|
3097
3219
|
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$
|
|
3220
|
+
if (__hasOwnProp$j.call(b, prop))
|
|
3221
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
3222
|
+
if (__getOwnPropSymbols$j)
|
|
3223
|
+
for (var prop of __getOwnPropSymbols$j(b)) {
|
|
3224
|
+
if (__propIsEnum$j.call(b, prop))
|
|
3225
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
3104
3226
|
}
|
|
3105
3227
|
return a;
|
|
3106
3228
|
};
|
|
3107
|
-
const Progress = (props) => /* @__PURE__ */ React__default.createElement(Progress$1, __spreadValues$
|
|
3229
|
+
const Progress = (props) => /* @__PURE__ */ React__default.createElement(Progress$1, __spreadValues$j({}, props));
|
|
3108
3230
|
|
|
3109
|
-
var __defProp$
|
|
3110
|
-
var __getOwnPropSymbols$
|
|
3111
|
-
var __hasOwnProp$
|
|
3112
|
-
var __propIsEnum$
|
|
3113
|
-
var __defNormalProp$
|
|
3231
|
+
var __defProp$i = Object.defineProperty;
|
|
3232
|
+
var __getOwnPropSymbols$i = Object.getOwnPropertySymbols;
|
|
3233
|
+
var __hasOwnProp$i = Object.prototype.hasOwnProperty;
|
|
3234
|
+
var __propIsEnum$i = Object.prototype.propertyIsEnumerable;
|
|
3235
|
+
var __defNormalProp$i = (obj, key, value) => key in obj ? __defProp$i(obj, key, {
|
|
3114
3236
|
enumerable: true,
|
|
3115
3237
|
configurable: true,
|
|
3116
3238
|
writable: true,
|
|
3117
3239
|
value
|
|
3118
3240
|
}) : obj[key] = value;
|
|
3119
|
-
var __spreadValues$
|
|
3120
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3121
|
-
if (__getOwnPropSymbols$
|
|
3122
|
-
if (__propIsEnum$
|
|
3241
|
+
var __spreadValues$i = (a, b) => {
|
|
3242
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$i.call(b, prop)) __defNormalProp$i(a, prop, b[prop]);
|
|
3243
|
+
if (__getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(b)) {
|
|
3244
|
+
if (__propIsEnum$i.call(b, prop)) __defNormalProp$i(a, prop, b[prop]);
|
|
3123
3245
|
}
|
|
3124
3246
|
return a;
|
|
3125
3247
|
};
|
|
3126
|
-
var __objRest$
|
|
3248
|
+
var __objRest$7 = (source, exclude) => {
|
|
3127
3249
|
var target = {};
|
|
3128
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3129
|
-
if (source != null && __getOwnPropSymbols$
|
|
3130
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3250
|
+
for (var prop in source) if (__hasOwnProp$i.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3251
|
+
if (source != null && __getOwnPropSymbols$i) for (var prop of __getOwnPropSymbols$i(source)) {
|
|
3252
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$i.call(source, prop)) target[prop] = source[prop];
|
|
3131
3253
|
}
|
|
3132
3254
|
return target;
|
|
3133
3255
|
};
|
|
@@ -3143,7 +3265,7 @@ const Radio = _a => {
|
|
|
3143
3265
|
checked,
|
|
3144
3266
|
compact = false
|
|
3145
3267
|
} = _b,
|
|
3146
|
-
props = __objRest$
|
|
3268
|
+
props = __objRest$7(_b, ["children", "className", "checked", "compact"]);
|
|
3147
3269
|
const {
|
|
3148
3270
|
description
|
|
3149
3271
|
} = props;
|
|
@@ -3153,7 +3275,7 @@ const Radio = _a => {
|
|
|
3153
3275
|
className: cx("radio-description", Typo.Label.l4_regular)
|
|
3154
3276
|
}, description));
|
|
3155
3277
|
}
|
|
3156
|
-
return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Radio$1, __spreadValues$
|
|
3278
|
+
return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Radio$1, __spreadValues$i({
|
|
3157
3279
|
className: cx(className, RadioStyle, compact && "compact"),
|
|
3158
3280
|
checked: checked || false,
|
|
3159
3281
|
"data-test": context.name ? `${context.name}-${String(props.value)}` : String(props.value)
|
|
@@ -3165,13 +3287,13 @@ const RadioGroup = _c => {
|
|
|
3165
3287
|
children,
|
|
3166
3288
|
className
|
|
3167
3289
|
} = _d,
|
|
3168
|
-
props = __objRest$
|
|
3290
|
+
props = __objRest$7(_d, ["children", "className"]);
|
|
3169
3291
|
return /* @__PURE__ */React__default.createElement(KitRadioGroupContext.Provider, {
|
|
3170
3292
|
value: {
|
|
3171
3293
|
disabled: props.disabled,
|
|
3172
3294
|
name: props.name
|
|
3173
3295
|
}
|
|
3174
|
-
}, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$
|
|
3296
|
+
}, /* @__PURE__ */React__default.createElement(Radio$1.Group, __spreadValues$i({
|
|
3175
3297
|
className: cx(className, RadioGroupStyle)
|
|
3176
3298
|
}, props), children ? children : null));
|
|
3177
3299
|
};
|
|
@@ -3181,7 +3303,7 @@ const RadioButton = _e => {
|
|
|
3181
3303
|
children,
|
|
3182
3304
|
className
|
|
3183
3305
|
} = _f,
|
|
3184
|
-
props = __objRest$
|
|
3306
|
+
props = __objRest$7(_f, ["children", "className"]);
|
|
3185
3307
|
const {
|
|
3186
3308
|
type,
|
|
3187
3309
|
placeholder = "Label",
|
|
@@ -3227,46 +3349,46 @@ const RadioButton = _e => {
|
|
|
3227
3349
|
className: "ant-radio-button-input-label"
|
|
3228
3350
|
}, typeof children === "string" ? children : ""));
|
|
3229
3351
|
};
|
|
3230
|
-
return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$
|
|
3352
|
+
return /* @__PURE__ */React__default.createElement(Radio$1.Button, __spreadValues$i({
|
|
3231
3353
|
className: cx(className, RadioButtonStyle),
|
|
3232
3354
|
value: radioButtonValue
|
|
3233
3355
|
}, props), renderChildren());
|
|
3234
3356
|
};
|
|
3235
3357
|
|
|
3236
|
-
var __defProp$
|
|
3237
|
-
var __getOwnPropSymbols$
|
|
3238
|
-
var __hasOwnProp$
|
|
3239
|
-
var __propIsEnum$
|
|
3240
|
-
var __defNormalProp$
|
|
3241
|
-
var __spreadValues$
|
|
3358
|
+
var __defProp$h = Object.defineProperty;
|
|
3359
|
+
var __getOwnPropSymbols$h = Object.getOwnPropertySymbols;
|
|
3360
|
+
var __hasOwnProp$h = Object.prototype.hasOwnProperty;
|
|
3361
|
+
var __propIsEnum$h = Object.prototype.propertyIsEnumerable;
|
|
3362
|
+
var __defNormalProp$h = (obj, key, value) => key in obj ? __defProp$h(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3363
|
+
var __spreadValues$h = (a, b) => {
|
|
3242
3364
|
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$
|
|
3365
|
+
if (__hasOwnProp$h.call(b, prop))
|
|
3366
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
3367
|
+
if (__getOwnPropSymbols$h)
|
|
3368
|
+
for (var prop of __getOwnPropSymbols$h(b)) {
|
|
3369
|
+
if (__propIsEnum$h.call(b, prop))
|
|
3370
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
3249
3371
|
}
|
|
3250
3372
|
return a;
|
|
3251
3373
|
};
|
|
3252
|
-
var __objRest$
|
|
3374
|
+
var __objRest$6 = (source, exclude) => {
|
|
3253
3375
|
var target = {};
|
|
3254
3376
|
for (var prop in source)
|
|
3255
|
-
if (__hasOwnProp$
|
|
3377
|
+
if (__hasOwnProp$h.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3256
3378
|
target[prop] = source[prop];
|
|
3257
|
-
if (source != null && __getOwnPropSymbols$
|
|
3258
|
-
for (var prop of __getOwnPropSymbols$
|
|
3259
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3379
|
+
if (source != null && __getOwnPropSymbols$h)
|
|
3380
|
+
for (var prop of __getOwnPropSymbols$h(source)) {
|
|
3381
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$h.call(source, prop))
|
|
3260
3382
|
target[prop] = source[prop];
|
|
3261
3383
|
}
|
|
3262
3384
|
return target;
|
|
3263
3385
|
};
|
|
3264
3386
|
const SearchInput = (props) => {
|
|
3265
|
-
const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$
|
|
3387
|
+
const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$6(_a, ["onChange", "debounceWait"]);
|
|
3266
3388
|
const onSearch = _.debounce(onChange, debounceWait);
|
|
3267
3389
|
return /* @__PURE__ */ React__default.createElement(
|
|
3268
3390
|
Input,
|
|
3269
|
-
__spreadValues$
|
|
3391
|
+
__spreadValues$h({
|
|
3270
3392
|
style: { width: 276 },
|
|
3271
3393
|
prefix: /* @__PURE__ */ React__default.createElement(SearchOutlined, null),
|
|
3272
3394
|
onChange: (e) => onSearch(e.target.value)
|
|
@@ -3274,19 +3396,19 @@ const SearchInput = (props) => {
|
|
|
3274
3396
|
);
|
|
3275
3397
|
};
|
|
3276
3398
|
|
|
3277
|
-
var __defProp$
|
|
3278
|
-
var __getOwnPropSymbols$
|
|
3279
|
-
var __hasOwnProp$
|
|
3280
|
-
var __propIsEnum$
|
|
3281
|
-
var __defNormalProp$
|
|
3282
|
-
var __spreadValues$
|
|
3399
|
+
var __defProp$g = Object.defineProperty;
|
|
3400
|
+
var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
|
|
3401
|
+
var __hasOwnProp$g = Object.prototype.hasOwnProperty;
|
|
3402
|
+
var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
|
|
3403
|
+
var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3404
|
+
var __spreadValues$g = (a, b) => {
|
|
3283
3405
|
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$
|
|
3406
|
+
if (__hasOwnProp$g.call(b, prop))
|
|
3407
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
3408
|
+
if (__getOwnPropSymbols$g)
|
|
3409
|
+
for (var prop of __getOwnPropSymbols$g(b)) {
|
|
3410
|
+
if (__propIsEnum$g.call(b, prop))
|
|
3411
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
3290
3412
|
}
|
|
3291
3413
|
return a;
|
|
3292
3414
|
};
|
|
@@ -3300,7 +3422,7 @@ const Second = ({
|
|
|
3300
3422
|
}) => {
|
|
3301
3423
|
const { t } = useParrotTranslation();
|
|
3302
3424
|
if (isEmpty(rawValue)) {
|
|
3303
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
3425
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$g({}, emptyProps));
|
|
3304
3426
|
}
|
|
3305
3427
|
const { value, unit } = formatSeconds(rawValue, decimals);
|
|
3306
3428
|
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}`)));
|
|
@@ -3318,7 +3440,7 @@ const SimplePagination = props => {
|
|
|
3318
3440
|
const {
|
|
3319
3441
|
t
|
|
3320
3442
|
} = useParrotTranslation();
|
|
3321
|
-
const pageLength = Math.ceil(count / size);
|
|
3443
|
+
const pageLength = count === 0 ? 1 : Math.ceil(count / size);
|
|
3322
3444
|
const showPrev = current > 1;
|
|
3323
3445
|
const showNext = current * size < count;
|
|
3324
3446
|
const changeValue = useCallback(value => {
|
|
@@ -3382,19 +3504,19 @@ const SimplePagination = props => {
|
|
|
3382
3504
|
})));
|
|
3383
3505
|
};
|
|
3384
3506
|
|
|
3385
|
-
var __defProp$
|
|
3386
|
-
var __getOwnPropSymbols$
|
|
3387
|
-
var __hasOwnProp$
|
|
3388
|
-
var __propIsEnum$
|
|
3389
|
-
var __defNormalProp$
|
|
3390
|
-
var __spreadValues$
|
|
3507
|
+
var __defProp$f = Object.defineProperty;
|
|
3508
|
+
var __getOwnPropSymbols$f = Object.getOwnPropertySymbols;
|
|
3509
|
+
var __hasOwnProp$f = Object.prototype.hasOwnProperty;
|
|
3510
|
+
var __propIsEnum$f = Object.prototype.propertyIsEnumerable;
|
|
3511
|
+
var __defNormalProp$f = (obj, key, value) => key in obj ? __defProp$f(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3512
|
+
var __spreadValues$f = (a, b) => {
|
|
3391
3513
|
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$
|
|
3514
|
+
if (__hasOwnProp$f.call(b, prop))
|
|
3515
|
+
__defNormalProp$f(a, prop, b[prop]);
|
|
3516
|
+
if (__getOwnPropSymbols$f)
|
|
3517
|
+
for (var prop of __getOwnPropSymbols$f(b)) {
|
|
3518
|
+
if (__propIsEnum$f.call(b, prop))
|
|
3519
|
+
__defNormalProp$f(a, prop, b[prop]);
|
|
3398
3520
|
}
|
|
3399
3521
|
return a;
|
|
3400
3522
|
};
|
|
@@ -3406,37 +3528,37 @@ const Speed = ({
|
|
|
3406
3528
|
emptyProps
|
|
3407
3529
|
}) => {
|
|
3408
3530
|
if (isEmpty(rawValue)) {
|
|
3409
|
-
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$
|
|
3531
|
+
return /* @__PURE__ */ React__default.createElement(Empty, __spreadValues$f({}, emptyProps));
|
|
3410
3532
|
}
|
|
3411
3533
|
const { value, unit } = formatSpeed(rawValue, decimals);
|
|
3412
3534
|
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
3535
|
};
|
|
3414
3536
|
|
|
3415
|
-
var __defProp$
|
|
3416
|
-
var __defProps$
|
|
3417
|
-
var __getOwnPropDescs$
|
|
3418
|
-
var __getOwnPropSymbols$
|
|
3419
|
-
var __hasOwnProp$
|
|
3420
|
-
var __propIsEnum$
|
|
3421
|
-
var __defNormalProp$
|
|
3537
|
+
var __defProp$e = Object.defineProperty;
|
|
3538
|
+
var __defProps$e = Object.defineProperties;
|
|
3539
|
+
var __getOwnPropDescs$e = Object.getOwnPropertyDescriptors;
|
|
3540
|
+
var __getOwnPropSymbols$e = Object.getOwnPropertySymbols;
|
|
3541
|
+
var __hasOwnProp$e = Object.prototype.hasOwnProperty;
|
|
3542
|
+
var __propIsEnum$e = Object.prototype.propertyIsEnumerable;
|
|
3543
|
+
var __defNormalProp$e = (obj, key, value) => key in obj ? __defProp$e(obj, key, {
|
|
3422
3544
|
enumerable: true,
|
|
3423
3545
|
configurable: true,
|
|
3424
3546
|
writable: true,
|
|
3425
3547
|
value
|
|
3426
3548
|
}) : obj[key] = value;
|
|
3427
|
-
var __spreadValues$
|
|
3428
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3429
|
-
if (__getOwnPropSymbols$
|
|
3430
|
-
if (__propIsEnum$
|
|
3549
|
+
var __spreadValues$e = (a, b) => {
|
|
3550
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$e.call(b, prop)) __defNormalProp$e(a, prop, b[prop]);
|
|
3551
|
+
if (__getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(b)) {
|
|
3552
|
+
if (__propIsEnum$e.call(b, prop)) __defNormalProp$e(a, prop, b[prop]);
|
|
3431
3553
|
}
|
|
3432
3554
|
return a;
|
|
3433
3555
|
};
|
|
3434
|
-
var __spreadProps$
|
|
3435
|
-
var __objRest$
|
|
3556
|
+
var __spreadProps$e = (a, b) => __defProps$e(a, __getOwnPropDescs$e(b));
|
|
3557
|
+
var __objRest$5 = (source, exclude) => {
|
|
3436
3558
|
var target = {};
|
|
3437
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3438
|
-
if (source != null && __getOwnPropSymbols$
|
|
3439
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3559
|
+
for (var prop in source) if (__hasOwnProp$e.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3560
|
+
if (source != null && __getOwnPropSymbols$e) for (var prop of __getOwnPropSymbols$e(source)) {
|
|
3561
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$e.call(source, prop)) target[prop] = source[prop];
|
|
3440
3562
|
}
|
|
3441
3563
|
return target;
|
|
3442
3564
|
};
|
|
@@ -3452,46 +3574,46 @@ const Steps = props => {
|
|
|
3452
3574
|
containerClassname,
|
|
3453
3575
|
showStepCount
|
|
3454
3576
|
} = _a,
|
|
3455
|
-
stepsProps = __objRest$
|
|
3577
|
+
stepsProps = __objRest$5(_a, ["stepsConfig", "containerClassname", "showStepCount"]);
|
|
3456
3578
|
const titleWithCount = (_step, count) => /* @__PURE__ */React__default.createElement(React__default.Fragment, null, showStepCount ? /* @__PURE__ */React__default.createElement("span", {
|
|
3457
3579
|
className: "step-count"
|
|
3458
3580
|
}, count) : null, _step.title);
|
|
3459
3581
|
return /* @__PURE__ */React__default.createElement(StepsContainer, {
|
|
3460
3582
|
className: containerClassname
|
|
3461
|
-
}, /* @__PURE__ */React__default.createElement(Steps$1, __spreadProps$
|
|
3583
|
+
}, /* @__PURE__ */React__default.createElement(Steps$1, __spreadProps$e(__spreadValues$e({}, stepsProps), {
|
|
3462
3584
|
type: "default"
|
|
3463
|
-
}), (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */React__default.createElement(Steps$1.Step, __spreadProps$
|
|
3585
|
+
}), (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */React__default.createElement(Steps$1.Step, __spreadProps$e(__spreadValues$e({
|
|
3464
3586
|
key: index
|
|
3465
3587
|
}, step), {
|
|
3466
3588
|
title: titleWithCount(step, index + 1)
|
|
3467
3589
|
}))) : props.children));
|
|
3468
3590
|
};
|
|
3469
3591
|
|
|
3470
|
-
var __defProp$
|
|
3471
|
-
var __defProps$
|
|
3472
|
-
var __getOwnPropDescs$
|
|
3473
|
-
var __getOwnPropSymbols$
|
|
3474
|
-
var __hasOwnProp$
|
|
3475
|
-
var __propIsEnum$
|
|
3476
|
-
var __defNormalProp$
|
|
3592
|
+
var __defProp$d = Object.defineProperty;
|
|
3593
|
+
var __defProps$d = Object.defineProperties;
|
|
3594
|
+
var __getOwnPropDescs$d = Object.getOwnPropertyDescriptors;
|
|
3595
|
+
var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
|
|
3596
|
+
var __hasOwnProp$d = Object.prototype.hasOwnProperty;
|
|
3597
|
+
var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
|
|
3598
|
+
var __defNormalProp$d = (obj, key, value) => key in obj ? __defProp$d(obj, key, {
|
|
3477
3599
|
enumerable: true,
|
|
3478
3600
|
configurable: true,
|
|
3479
3601
|
writable: true,
|
|
3480
3602
|
value
|
|
3481
3603
|
}) : obj[key] = value;
|
|
3482
|
-
var __spreadValues$
|
|
3483
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3484
|
-
if (__getOwnPropSymbols$
|
|
3485
|
-
if (__propIsEnum$
|
|
3604
|
+
var __spreadValues$d = (a, b) => {
|
|
3605
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
|
|
3606
|
+
if (__getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(b)) {
|
|
3607
|
+
if (__propIsEnum$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
|
|
3486
3608
|
}
|
|
3487
3609
|
return a;
|
|
3488
3610
|
};
|
|
3489
|
-
var __spreadProps$
|
|
3490
|
-
var __objRest$
|
|
3611
|
+
var __spreadProps$d = (a, b) => __defProps$d(a, __getOwnPropDescs$d(b));
|
|
3612
|
+
var __objRest$4 = (source, exclude) => {
|
|
3491
3613
|
var target = {};
|
|
3492
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3493
|
-
if (source != null && __getOwnPropSymbols$
|
|
3494
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3614
|
+
for (var prop in source) if (__hasOwnProp$d.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3615
|
+
if (source != null && __getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(source)) {
|
|
3616
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$d.call(source, prop)) target[prop] = source[prop];
|
|
3495
3617
|
}
|
|
3496
3618
|
return target;
|
|
3497
3619
|
};
|
|
@@ -3503,7 +3625,7 @@ const Switch = _a => {
|
|
|
3503
3625
|
className,
|
|
3504
3626
|
checked
|
|
3505
3627
|
} = _b,
|
|
3506
|
-
props = __objRest$
|
|
3628
|
+
props = __objRest$4(_b, ["children", "className", "checked"]);
|
|
3507
3629
|
const Content = /*#__PURE__*/styled('span')({
|
|
3508
3630
|
name: "Content",
|
|
3509
3631
|
class: "c1to9vb9",
|
|
@@ -3511,7 +3633,7 @@ const Switch = _a => {
|
|
|
3511
3633
|
});
|
|
3512
3634
|
const classNames = [className, SwitchStyle, "switch"];
|
|
3513
3635
|
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$
|
|
3636
|
+
return /* @__PURE__ */React__default.createElement(React__default.Fragment, null, /* @__PURE__ */React__default.createElement(Switch$1, __spreadProps$d(__spreadValues$d({
|
|
3515
3637
|
className: cx(...classNames),
|
|
3516
3638
|
checked: checked || false
|
|
3517
3639
|
}, props), {
|
|
@@ -3597,26 +3719,26 @@ const ColumnTitle = props => {
|
|
|
3597
3719
|
}));
|
|
3598
3720
|
};
|
|
3599
3721
|
|
|
3600
|
-
var __defProp$
|
|
3601
|
-
var __defProps$
|
|
3602
|
-
var __getOwnPropDescs$
|
|
3603
|
-
var __getOwnPropSymbols$
|
|
3604
|
-
var __hasOwnProp$
|
|
3605
|
-
var __propIsEnum$
|
|
3606
|
-
var __defNormalProp$
|
|
3722
|
+
var __defProp$c = Object.defineProperty;
|
|
3723
|
+
var __defProps$c = Object.defineProperties;
|
|
3724
|
+
var __getOwnPropDescs$c = Object.getOwnPropertyDescriptors;
|
|
3725
|
+
var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
|
|
3726
|
+
var __hasOwnProp$c = Object.prototype.hasOwnProperty;
|
|
3727
|
+
var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
|
|
3728
|
+
var __defNormalProp$c = (obj, key, value) => key in obj ? __defProp$c(obj, key, {
|
|
3607
3729
|
enumerable: true,
|
|
3608
3730
|
configurable: true,
|
|
3609
3731
|
writable: true,
|
|
3610
3732
|
value
|
|
3611
3733
|
}) : obj[key] = value;
|
|
3612
|
-
var __spreadValues$
|
|
3613
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3614
|
-
if (__getOwnPropSymbols$
|
|
3615
|
-
if (__propIsEnum$
|
|
3734
|
+
var __spreadValues$c = (a, b) => {
|
|
3735
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
|
|
3736
|
+
if (__getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(b)) {
|
|
3737
|
+
if (__propIsEnum$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
|
|
3616
3738
|
}
|
|
3617
3739
|
return a;
|
|
3618
3740
|
};
|
|
3619
|
-
var __spreadProps$
|
|
3741
|
+
var __spreadProps$c = (a, b) => __defProps$c(a, __getOwnPropDescs$c(b));
|
|
3620
3742
|
const TableContainerStyle = "t1upn1sz";
|
|
3621
3743
|
const tableStyleCover = "tta5kd2";
|
|
3622
3744
|
const Table = props => {
|
|
@@ -3643,7 +3765,7 @@ const Table = props => {
|
|
|
3643
3765
|
const orderRef = useRef(null);
|
|
3644
3766
|
const hasScrollBard = useTableBodyHasScrollBar(wrapper, dataSource);
|
|
3645
3767
|
const _columns = useMemo(() => columns.map(column => {
|
|
3646
|
-
const _column = __spreadValues$
|
|
3768
|
+
const _column = __spreadValues$c({}, column);
|
|
3647
3769
|
if (_column.sorter && typeof _column.title !== "function") {
|
|
3648
3770
|
_column.title = /* @__PURE__ */React__default.createElement(ColumnTitle, {
|
|
3649
3771
|
title: column.title,
|
|
@@ -3680,12 +3802,12 @@ const Table = props => {
|
|
|
3680
3802
|
onSorterChange == null ? void 0 : onSorterChange(orderRef.current, sorter.columnKey);
|
|
3681
3803
|
}
|
|
3682
3804
|
},
|
|
3683
|
-
onRow: (record, index) => __spreadValues$
|
|
3805
|
+
onRow: (record, index) => __spreadValues$c({
|
|
3684
3806
|
onClick: evt => onRowClick == null ? void 0 : onRowClick(record, index, evt)
|
|
3685
3807
|
}, onRow == null ? void 0 : onRow(record, index)),
|
|
3686
3808
|
rowClassName,
|
|
3687
3809
|
scroll,
|
|
3688
|
-
rowSelection: rowSelection && __spreadProps$
|
|
3810
|
+
rowSelection: rowSelection && __spreadProps$c(__spreadValues$c({}, rowSelection), {
|
|
3689
3811
|
columnWidth: 32
|
|
3690
3812
|
}),
|
|
3691
3813
|
showSorterTooltip: false
|
|
@@ -3747,33 +3869,33 @@ const moveItemInArray = (array, fromIndex, toIndex) => {
|
|
|
3747
3869
|
return sortArr;
|
|
3748
3870
|
};
|
|
3749
3871
|
|
|
3750
|
-
var __defProp$
|
|
3751
|
-
var __defProps$
|
|
3752
|
-
var __getOwnPropDescs$
|
|
3753
|
-
var __getOwnPropSymbols$
|
|
3754
|
-
var __hasOwnProp$
|
|
3755
|
-
var __propIsEnum$
|
|
3756
|
-
var __defNormalProp$
|
|
3757
|
-
var __spreadValues$
|
|
3872
|
+
var __defProp$b = Object.defineProperty;
|
|
3873
|
+
var __defProps$b = Object.defineProperties;
|
|
3874
|
+
var __getOwnPropDescs$b = Object.getOwnPropertyDescriptors;
|
|
3875
|
+
var __getOwnPropSymbols$b = Object.getOwnPropertySymbols;
|
|
3876
|
+
var __hasOwnProp$b = Object.prototype.hasOwnProperty;
|
|
3877
|
+
var __propIsEnum$b = Object.prototype.propertyIsEnumerable;
|
|
3878
|
+
var __defNormalProp$b = (obj, key, value) => key in obj ? __defProp$b(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3879
|
+
var __spreadValues$b = (a, b) => {
|
|
3758
3880
|
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$
|
|
3881
|
+
if (__hasOwnProp$b.call(b, prop))
|
|
3882
|
+
__defNormalProp$b(a, prop, b[prop]);
|
|
3883
|
+
if (__getOwnPropSymbols$b)
|
|
3884
|
+
for (var prop of __getOwnPropSymbols$b(b)) {
|
|
3885
|
+
if (__propIsEnum$b.call(b, prop))
|
|
3886
|
+
__defNormalProp$b(a, prop, b[prop]);
|
|
3765
3887
|
}
|
|
3766
3888
|
return a;
|
|
3767
3889
|
};
|
|
3768
|
-
var __spreadProps$
|
|
3769
|
-
var __objRest$
|
|
3890
|
+
var __spreadProps$b = (a, b) => __defProps$b(a, __getOwnPropDescs$b(b));
|
|
3891
|
+
var __objRest$3 = (source, exclude) => {
|
|
3770
3892
|
var target = {};
|
|
3771
3893
|
for (var prop in source)
|
|
3772
|
-
if (__hasOwnProp$
|
|
3894
|
+
if (__hasOwnProp$b.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3773
3895
|
target[prop] = source[prop];
|
|
3774
|
-
if (source != null && __getOwnPropSymbols$
|
|
3775
|
-
for (var prop of __getOwnPropSymbols$
|
|
3776
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3896
|
+
if (source != null && __getOwnPropSymbols$b)
|
|
3897
|
+
for (var prop of __getOwnPropSymbols$b(source)) {
|
|
3898
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$b.call(source, prop))
|
|
3777
3899
|
target[prop] = source[prop];
|
|
3778
3900
|
}
|
|
3779
3901
|
return target;
|
|
@@ -3789,7 +3911,7 @@ const AddRowButton = (props) => {
|
|
|
3789
3911
|
const _a = buttonProps || {}, {
|
|
3790
3912
|
disabled: disabledFromProp,
|
|
3791
3913
|
onClick
|
|
3792
|
-
} = _a, restButtonProps = __objRest$
|
|
3914
|
+
} = _a, restButtonProps = __objRest$3(_a, [
|
|
3793
3915
|
"disabled",
|
|
3794
3916
|
"onClick"
|
|
3795
3917
|
]);
|
|
@@ -3814,9 +3936,9 @@ const AddRowButton = (props) => {
|
|
|
3814
3936
|
if (!columns.length) {
|
|
3815
3937
|
return null;
|
|
3816
3938
|
}
|
|
3817
|
-
return CustomizedButton ? /* @__PURE__ */ React__default.createElement(CustomizedButton, __spreadValues$
|
|
3939
|
+
return CustomizedButton ? /* @__PURE__ */ React__default.createElement(CustomizedButton, __spreadValues$b({}, props)) : /* @__PURE__ */ React__default.createElement(AddRowButtonWrapper, { className }, /* @__PURE__ */ React__default.createElement(
|
|
3818
3940
|
Button,
|
|
3819
|
-
__spreadProps$
|
|
3941
|
+
__spreadProps$b(__spreadValues$b({}, restButtonProps), {
|
|
3820
3942
|
type: restButtonProps.type || "ordinary",
|
|
3821
3943
|
size: restButtonProps.size || "small",
|
|
3822
3944
|
icon: restButtonProps.icon || /* @__PURE__ */ React__default.createElement(PlusOutlined, null),
|
|
@@ -3890,7 +4012,7 @@ const CheckboxColumnHeaderCell = ({ onChange }) => {
|
|
|
3890
4012
|
},
|
|
3891
4013
|
[onChange]
|
|
3892
4014
|
);
|
|
3893
|
-
return /* @__PURE__ */ React__default.createElement(Checkbox
|
|
4015
|
+
return /* @__PURE__ */ React__default.createElement(Checkbox, { onChange: _onChange });
|
|
3894
4016
|
};
|
|
3895
4017
|
const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
|
|
3896
4018
|
const value = data[index][column.key] === void 0 ? column.defaultValue : data[index][column.key];
|
|
@@ -3902,7 +4024,7 @@ const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
|
|
|
3902
4024
|
);
|
|
3903
4025
|
const defaultChecked = column.defaultValue;
|
|
3904
4026
|
return /* @__PURE__ */ React__default.createElement(
|
|
3905
|
-
Checkbox
|
|
4027
|
+
Checkbox,
|
|
3906
4028
|
{
|
|
3907
4029
|
checked: value,
|
|
3908
4030
|
onChange: _onChange,
|
|
@@ -3911,25 +4033,25 @@ const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
|
|
|
3911
4033
|
);
|
|
3912
4034
|
};
|
|
3913
4035
|
|
|
3914
|
-
var __defProp$
|
|
3915
|
-
var __defProps$
|
|
3916
|
-
var __getOwnPropDescs$
|
|
3917
|
-
var __getOwnPropSymbols$
|
|
3918
|
-
var __hasOwnProp$
|
|
3919
|
-
var __propIsEnum$
|
|
3920
|
-
var __defNormalProp$
|
|
3921
|
-
var __spreadValues$
|
|
4036
|
+
var __defProp$a = Object.defineProperty;
|
|
4037
|
+
var __defProps$a = Object.defineProperties;
|
|
4038
|
+
var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
|
|
4039
|
+
var __getOwnPropSymbols$a = Object.getOwnPropertySymbols;
|
|
4040
|
+
var __hasOwnProp$a = Object.prototype.hasOwnProperty;
|
|
4041
|
+
var __propIsEnum$a = Object.prototype.propertyIsEnumerable;
|
|
4042
|
+
var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4043
|
+
var __spreadValues$a = (a, b) => {
|
|
3922
4044
|
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$
|
|
4045
|
+
if (__hasOwnProp$a.call(b, prop))
|
|
4046
|
+
__defNormalProp$a(a, prop, b[prop]);
|
|
4047
|
+
if (__getOwnPropSymbols$a)
|
|
4048
|
+
for (var prop of __getOwnPropSymbols$a(b)) {
|
|
4049
|
+
if (__propIsEnum$a.call(b, prop))
|
|
4050
|
+
__defNormalProp$a(a, prop, b[prop]);
|
|
3929
4051
|
}
|
|
3930
4052
|
return a;
|
|
3931
4053
|
};
|
|
3932
|
-
var __spreadProps$
|
|
4054
|
+
var __spreadProps$a = (a, b) => __defProps$a(a, __getOwnPropDescs$a(b));
|
|
3933
4055
|
const InputPassword = (props) => {
|
|
3934
4056
|
const [showPassword, setShowPassword] = useState(false);
|
|
3935
4057
|
useEffect(() => {
|
|
@@ -3944,8 +4066,8 @@ const InputPassword = (props) => {
|
|
|
3944
4066
|
};
|
|
3945
4067
|
const inputType = showPassword ? "text" : "password";
|
|
3946
4068
|
return /* @__PURE__ */ React__default.createElement(
|
|
3947
|
-
Input
|
|
3948
|
-
__spreadProps$
|
|
4069
|
+
Input,
|
|
4070
|
+
__spreadProps$a(__spreadValues$a({}, props), {
|
|
3949
4071
|
type: inputType,
|
|
3950
4072
|
suffix: showPassword ? /* @__PURE__ */ React__default.createElement(
|
|
3951
4073
|
EyeOutlined,
|
|
@@ -3965,9 +4087,9 @@ const InputPassword = (props) => {
|
|
|
3965
4087
|
};
|
|
3966
4088
|
const CustomInput = (props) => {
|
|
3967
4089
|
if (props.type === "password") {
|
|
3968
|
-
return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$
|
|
4090
|
+
return /* @__PURE__ */ React__default.createElement(InputPassword, __spreadValues$a({}, props));
|
|
3969
4091
|
}
|
|
3970
|
-
return /* @__PURE__ */ React__default.createElement(Input
|
|
4092
|
+
return /* @__PURE__ */ React__default.createElement(Input, __spreadValues$a({}, props));
|
|
3971
4093
|
};
|
|
3972
4094
|
const InputColumnHeaderCell = ({ disabled, column, onChange, onBlur, onVisibleChange }) => {
|
|
3973
4095
|
const _onChange = (e) => {
|
|
@@ -3995,7 +4117,8 @@ const InputColumnBodyCell = ({
|
|
|
3995
4117
|
disabled,
|
|
3996
4118
|
onChange,
|
|
3997
4119
|
onBlur,
|
|
3998
|
-
visible
|
|
4120
|
+
visible,
|
|
4121
|
+
error
|
|
3999
4122
|
}) => {
|
|
4000
4123
|
const placeHolderValue = column.type === "password" ? "" : latestData[index][column.key];
|
|
4001
4124
|
const _onChange = (e) => {
|
|
@@ -4013,7 +4136,8 @@ const InputColumnBodyCell = ({
|
|
|
4013
4136
|
placeholder: placeHolderValue || column.placeholder,
|
|
4014
4137
|
onChange: _onChange,
|
|
4015
4138
|
onBlur,
|
|
4016
|
-
visible
|
|
4139
|
+
visible,
|
|
4140
|
+
error
|
|
4017
4141
|
}
|
|
4018
4142
|
);
|
|
4019
4143
|
};
|
|
@@ -4089,25 +4213,25 @@ var ValidateTriggerType = /* @__PURE__ */ ((ValidateTriggerType2) => {
|
|
|
4089
4213
|
return ValidateTriggerType2;
|
|
4090
4214
|
})(ValidateTriggerType || {});
|
|
4091
4215
|
|
|
4092
|
-
var __defProp$
|
|
4093
|
-
var __defProps$
|
|
4094
|
-
var __getOwnPropDescs$
|
|
4095
|
-
var __getOwnPropSymbols$
|
|
4096
|
-
var __hasOwnProp$
|
|
4097
|
-
var __propIsEnum$
|
|
4098
|
-
var __defNormalProp$
|
|
4099
|
-
var __spreadValues$
|
|
4216
|
+
var __defProp$9 = Object.defineProperty;
|
|
4217
|
+
var __defProps$9 = Object.defineProperties;
|
|
4218
|
+
var __getOwnPropDescs$9 = Object.getOwnPropertyDescriptors;
|
|
4219
|
+
var __getOwnPropSymbols$9 = Object.getOwnPropertySymbols;
|
|
4220
|
+
var __hasOwnProp$9 = Object.prototype.hasOwnProperty;
|
|
4221
|
+
var __propIsEnum$9 = Object.prototype.propertyIsEnumerable;
|
|
4222
|
+
var __defNormalProp$9 = (obj, key, value) => key in obj ? __defProp$9(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4223
|
+
var __spreadValues$9 = (a, b) => {
|
|
4100
4224
|
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$
|
|
4225
|
+
if (__hasOwnProp$9.call(b, prop))
|
|
4226
|
+
__defNormalProp$9(a, prop, b[prop]);
|
|
4227
|
+
if (__getOwnPropSymbols$9)
|
|
4228
|
+
for (var prop of __getOwnPropSymbols$9(b)) {
|
|
4229
|
+
if (__propIsEnum$9.call(b, prop))
|
|
4230
|
+
__defNormalProp$9(a, prop, b[prop]);
|
|
4107
4231
|
}
|
|
4108
4232
|
return a;
|
|
4109
4233
|
};
|
|
4110
|
-
var __spreadProps$
|
|
4234
|
+
var __spreadProps$9 = (a, b) => __defProps$9(a, __getOwnPropDescs$9(b));
|
|
4111
4235
|
const TableFormBodyCell = (props) => {
|
|
4112
4236
|
const {
|
|
4113
4237
|
column,
|
|
@@ -4120,16 +4244,26 @@ const TableFormBodyCell = (props) => {
|
|
|
4120
4244
|
disabled,
|
|
4121
4245
|
onChange,
|
|
4122
4246
|
onBlur,
|
|
4123
|
-
validateAll
|
|
4247
|
+
validateAll,
|
|
4248
|
+
error
|
|
4124
4249
|
} = props;
|
|
4125
4250
|
const [validateResult, setValidateResult] = useState();
|
|
4126
4251
|
const isTouched = useRef(false);
|
|
4127
4252
|
const width = typeof column.width === "number" ? column.width + "px" : column.width;
|
|
4253
|
+
const isCellErrorStyle = Boolean((validateResult == null ? void 0 : validateResult.isError) || isRowError);
|
|
4254
|
+
useEffect(() => {
|
|
4255
|
+
setValidateResult(
|
|
4256
|
+
error ? {
|
|
4257
|
+
msg: error,
|
|
4258
|
+
isError: true
|
|
4259
|
+
} : void 0
|
|
4260
|
+
);
|
|
4261
|
+
}, [error]);
|
|
4128
4262
|
const triggerValidate = useCallback(
|
|
4129
4263
|
(currentValue) => {
|
|
4130
4264
|
var _a;
|
|
4131
4265
|
const value = currentValue || data[rowIndex][column.key];
|
|
4132
|
-
const rowData = __spreadProps$
|
|
4266
|
+
const rowData = __spreadProps$9(__spreadValues$9({}, data[rowIndex]), { [column.key]: value });
|
|
4133
4267
|
const rowValidateRes = getRowValidateResult(rowData);
|
|
4134
4268
|
if (rowValidateRes) {
|
|
4135
4269
|
return;
|
|
@@ -4152,7 +4286,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4152
4286
|
}, [validateAll, triggerValidate]);
|
|
4153
4287
|
const _onChange = (value, data2) => {
|
|
4154
4288
|
const newData = data2.map(
|
|
4155
|
-
(row, i) => i === rowIndex ? __spreadProps$
|
|
4289
|
+
(row, i) => i === rowIndex ? __spreadProps$9(__spreadValues$9({}, row), { [column.key]: value }) : row
|
|
4156
4290
|
);
|
|
4157
4291
|
onChange == null ? void 0 : onChange(newData, rowIndex, column.key);
|
|
4158
4292
|
if (validateTriggerType === ValidateTriggerType.Normal && isTouched.current || validateTriggerType === ValidateTriggerType.Aggressive) {
|
|
@@ -4177,6 +4311,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4177
4311
|
latestData,
|
|
4178
4312
|
column,
|
|
4179
4313
|
visible: props.visible,
|
|
4314
|
+
error: isCellErrorStyle,
|
|
4180
4315
|
onChange: (val) => {
|
|
4181
4316
|
_onChange(val, data);
|
|
4182
4317
|
},
|
|
@@ -4194,7 +4329,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4194
4329
|
},
|
|
4195
4330
|
onBlur: _onBlur,
|
|
4196
4331
|
rowIndex,
|
|
4197
|
-
error:
|
|
4332
|
+
error: isCellErrorStyle
|
|
4198
4333
|
}) : renderDefaultComponent();
|
|
4199
4334
|
const CellDescription = useMemo(() => {
|
|
4200
4335
|
var _a;
|
|
@@ -4220,7 +4355,7 @@ const TableFormBodyCell = (props) => {
|
|
|
4220
4355
|
/* @__PURE__ */ React__default.createElement(
|
|
4221
4356
|
FormItem,
|
|
4222
4357
|
{
|
|
4223
|
-
validateStatus:
|
|
4358
|
+
validateStatus: isCellErrorStyle ? "error" : "",
|
|
4224
4359
|
message: isRowError ? "" : validateResult == null ? void 0 : validateResult.msg
|
|
4225
4360
|
},
|
|
4226
4361
|
Cell
|
|
@@ -4229,26 +4364,55 @@ const TableFormBodyCell = (props) => {
|
|
|
4229
4364
|
);
|
|
4230
4365
|
};
|
|
4231
4366
|
|
|
4232
|
-
var __defProp$
|
|
4233
|
-
var __defProps$
|
|
4234
|
-
var __getOwnPropDescs$
|
|
4235
|
-
var __getOwnPropSymbols$
|
|
4236
|
-
var __hasOwnProp$
|
|
4237
|
-
var __propIsEnum$
|
|
4238
|
-
var __defNormalProp$
|
|
4239
|
-
var __spreadValues$
|
|
4367
|
+
var __defProp$8 = Object.defineProperty;
|
|
4368
|
+
var __defProps$8 = Object.defineProperties;
|
|
4369
|
+
var __getOwnPropDescs$8 = Object.getOwnPropertyDescriptors;
|
|
4370
|
+
var __getOwnPropSymbols$8 = Object.getOwnPropertySymbols;
|
|
4371
|
+
var __hasOwnProp$8 = Object.prototype.hasOwnProperty;
|
|
4372
|
+
var __propIsEnum$8 = Object.prototype.propertyIsEnumerable;
|
|
4373
|
+
var __defNormalProp$8 = (obj, key, value) => key in obj ? __defProp$8(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4374
|
+
var __spreadValues$8 = (a, b) => {
|
|
4240
4375
|
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$
|
|
4376
|
+
if (__hasOwnProp$8.call(b, prop))
|
|
4377
|
+
__defNormalProp$8(a, prop, b[prop]);
|
|
4378
|
+
if (__getOwnPropSymbols$8)
|
|
4379
|
+
for (var prop of __getOwnPropSymbols$8(b)) {
|
|
4380
|
+
if (__propIsEnum$8.call(b, prop))
|
|
4381
|
+
__defNormalProp$8(a, prop, b[prop]);
|
|
4247
4382
|
}
|
|
4248
4383
|
return a;
|
|
4249
4384
|
};
|
|
4250
|
-
var __spreadProps$
|
|
4385
|
+
var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
|
|
4386
|
+
const TableFormRowDeleteAction = (props) => {
|
|
4387
|
+
var _a, _b, _c, _d;
|
|
4388
|
+
const { deleteConfig, row, updateData, rowIndex, data } = props;
|
|
4389
|
+
const { t } = useParrotTranslation();
|
|
4390
|
+
if (typeof (row == null ? void 0 : row.deletable) === "function" && !row.deletable(rowIndex, data)) {
|
|
4391
|
+
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null);
|
|
4392
|
+
}
|
|
4393
|
+
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 : [];
|
|
4394
|
+
const isRowDeleteDisabled = (_d = disableActionsFromRowConfig.includes("delete") || ((_c = deleteConfig == null ? void 0 : deleteConfig.specifyRowDeleteDisabled) == null ? void 0 : _c.call(deleteConfig, rowIndex, data))) != null ? _d : false;
|
|
4395
|
+
const DeleteIcon = /* @__PURE__ */ React__default.createElement(
|
|
4396
|
+
Icon,
|
|
4397
|
+
{
|
|
4398
|
+
"data-testid": "eagle-table-form-row-action",
|
|
4399
|
+
className: cx("delete-row-icon", isRowDeleteDisabled && "disabled"),
|
|
4400
|
+
src: XmarkRemove16SecondaryIcon,
|
|
4401
|
+
hoverSrc: isRowDeleteDisabled ? void 0 : XmarkRemove16RegularRedIcon,
|
|
4402
|
+
onClick: () => {
|
|
4403
|
+
if (isRowDeleteDisabled)
|
|
4404
|
+
return;
|
|
4405
|
+
const newData = [...data];
|
|
4406
|
+
newData.splice(rowIndex, 1);
|
|
4407
|
+
updateData(newData);
|
|
4408
|
+
}
|
|
4409
|
+
}
|
|
4410
|
+
);
|
|
4411
|
+
const DeleteAction = isRowDeleteDisabled ? DeleteIcon : /* @__PURE__ */ React__default.createElement(Tooltip, { title: t("components.remove") }, DeleteIcon);
|
|
4412
|
+
return DeleteAction;
|
|
4413
|
+
};
|
|
4251
4414
|
const TableFormRow = (props) => {
|
|
4415
|
+
var _a;
|
|
4252
4416
|
const {
|
|
4253
4417
|
data,
|
|
4254
4418
|
columns,
|
|
@@ -4261,55 +4425,35 @@ const TableFormRow = (props) => {
|
|
|
4261
4425
|
provided,
|
|
4262
4426
|
snapshot,
|
|
4263
4427
|
validateTriggerType = ValidateTriggerType.Normal,
|
|
4428
|
+
row,
|
|
4429
|
+
errors = [],
|
|
4264
4430
|
updateData,
|
|
4265
4431
|
onBodyBlur,
|
|
4266
4432
|
renderRowDescription,
|
|
4267
|
-
rowValidator,
|
|
4268
4433
|
validateAll
|
|
4269
4434
|
} = props;
|
|
4270
|
-
const { t } = useParrotTranslation();
|
|
4271
4435
|
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]);
|
|
4436
|
+
const errorFromProps = errors[rowIndex];
|
|
4437
|
+
const rowLevelError = typeof errorFromProps === "string" ? errorFromProps : void 0;
|
|
4438
|
+
const [rowError, setRowError] = useState(rowLevelError);
|
|
4439
|
+
const rowValidator = (row == null ? void 0 : row.validator) || props.rowValidator;
|
|
4440
|
+
const cellsLevelError = errorFromProps && typeof errorFromProps === "object" ? errorFromProps : null;
|
|
4441
|
+
useEffect(() => {
|
|
4442
|
+
setRowError(rowLevelError);
|
|
4443
|
+
}, [rowLevelError]);
|
|
4444
|
+
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
4445
|
const getRowValidateResult = useCallback(
|
|
4305
4446
|
(rowData2) => {
|
|
4306
|
-
|
|
4447
|
+
if (!rowValidator)
|
|
4448
|
+
return rowLevelError;
|
|
4449
|
+
const result = rowValidator(rowIndex, rowData2);
|
|
4307
4450
|
setRowError(result);
|
|
4308
4451
|
return result;
|
|
4309
4452
|
},
|
|
4310
|
-
[rowValidator, rowIndex]
|
|
4453
|
+
[rowValidator, rowIndex, rowLevelError]
|
|
4311
4454
|
);
|
|
4312
4455
|
const Cells = columns.map((col) => {
|
|
4456
|
+
const cellError = cellsLevelError == null ? void 0 : cellsLevelError[col.key];
|
|
4313
4457
|
return /* @__PURE__ */ React__default.createElement(
|
|
4314
4458
|
TableFormBodyCell,
|
|
4315
4459
|
{
|
|
@@ -4325,12 +4469,13 @@ const TableFormRow = (props) => {
|
|
|
4325
4469
|
validateTriggerType,
|
|
4326
4470
|
isRowError: !!rowError,
|
|
4327
4471
|
getRowValidateResult,
|
|
4328
|
-
validateAll
|
|
4472
|
+
validateAll,
|
|
4473
|
+
error: cellError
|
|
4329
4474
|
}
|
|
4330
4475
|
);
|
|
4331
4476
|
});
|
|
4332
4477
|
const DraggableHandle = useMemo(
|
|
4333
|
-
() => draggable && provided ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, __spreadValues$
|
|
4478
|
+
() => draggable && provided ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, __spreadValues$8({}, provided.dragHandleProps), /* @__PURE__ */ React__default.createElement(
|
|
4334
4479
|
Icon,
|
|
4335
4480
|
{
|
|
4336
4481
|
src: HandlePoint816SecondaryIcon,
|
|
@@ -4340,22 +4485,35 @@ const TableFormRow = (props) => {
|
|
|
4340
4485
|
[draggable, provided]
|
|
4341
4486
|
);
|
|
4342
4487
|
const RowDescription = useMemo(() => {
|
|
4343
|
-
const
|
|
4488
|
+
const rowDescFuncParams = {
|
|
4344
4489
|
rowIndex,
|
|
4345
4490
|
rowData,
|
|
4346
4491
|
latestData
|
|
4347
|
-
}
|
|
4348
|
-
|
|
4349
|
-
|
|
4492
|
+
};
|
|
4493
|
+
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;
|
|
4494
|
+
return typeof DescriptionResult === "string" ? /* @__PURE__ */ React__default.createElement("p", { className: cx(Typo.Label.l4_regular, "row-description") }, DescriptionResult) : DescriptionResult;
|
|
4495
|
+
}, [rowIndex, rowData, latestData, renderRowDescription, row]);
|
|
4350
4496
|
return /* @__PURE__ */ React__default.createElement(
|
|
4351
4497
|
List.Item,
|
|
4352
4498
|
{
|
|
4353
4499
|
key: rowIndex,
|
|
4500
|
+
"data-testid": "eagle-table-form-row-for-test",
|
|
4354
4501
|
className: cx(
|
|
4355
4502
|
"eagle-table-form-row",
|
|
4356
4503
|
(snapshot == null ? void 0 : snapshot.isDragging) && "isDragging"
|
|
4357
4504
|
),
|
|
4358
|
-
actions:
|
|
4505
|
+
actions: rowDeletable ? [
|
|
4506
|
+
/* @__PURE__ */ React__default.createElement(
|
|
4507
|
+
TableFormRowDeleteAction,
|
|
4508
|
+
{
|
|
4509
|
+
data,
|
|
4510
|
+
rowIndex,
|
|
4511
|
+
deleteConfig,
|
|
4512
|
+
row,
|
|
4513
|
+
updateData
|
|
4514
|
+
}
|
|
4515
|
+
)
|
|
4516
|
+
] : void 0
|
|
4359
4517
|
},
|
|
4360
4518
|
DraggableHandle,
|
|
4361
4519
|
Cells,
|
|
@@ -4379,7 +4537,7 @@ const TableFormBodyRows = memo((props) => {
|
|
|
4379
4537
|
);
|
|
4380
4538
|
return draggable ? /* @__PURE__ */ React__default.createElement(DragDropContext, { onDragEnd }, /* @__PURE__ */ React__default.createElement(Droppable, { droppableId: "droppable" }, (provided) => /* @__PURE__ */ React__default.createElement(
|
|
4381
4539
|
"div",
|
|
4382
|
-
__spreadValues$
|
|
4540
|
+
__spreadValues$8({
|
|
4383
4541
|
className: "draggable-container",
|
|
4384
4542
|
ref: provided.innerRef
|
|
4385
4543
|
}, provided.droppableProps),
|
|
@@ -4390,9 +4548,9 @@ const TableFormBodyRows = memo((props) => {
|
|
|
4390
4548
|
key: `draggable-id-${i}`,
|
|
4391
4549
|
index: i
|
|
4392
4550
|
},
|
|
4393
|
-
(provided2, snapshot) => /* @__PURE__ */ React__default.createElement("div", __spreadValues$
|
|
4551
|
+
(provided2, snapshot) => /* @__PURE__ */ React__default.createElement("div", __spreadValues$8({ ref: provided2.innerRef }, provided2.draggableProps), /* @__PURE__ */ React__default.createElement(
|
|
4394
4552
|
TableFormRow,
|
|
4395
|
-
__spreadProps$
|
|
4553
|
+
__spreadProps$8(__spreadValues$8({}, props), {
|
|
4396
4554
|
rowIndex: i,
|
|
4397
4555
|
provided: provided2,
|
|
4398
4556
|
snapshot
|
|
@@ -4400,28 +4558,28 @@ const TableFormBodyRows = memo((props) => {
|
|
|
4400
4558
|
))
|
|
4401
4559
|
)),
|
|
4402
4560
|
provided.placeholder
|
|
4403
|
-
))) : /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, data.map((_d, i) => /* @__PURE__ */ React__default.createElement(TableFormRow, __spreadProps$
|
|
4561
|
+
))) : /* @__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
4562
|
});
|
|
4405
4563
|
|
|
4406
|
-
var __defProp$
|
|
4407
|
-
var __defProps$
|
|
4408
|
-
var __getOwnPropDescs$
|
|
4409
|
-
var __getOwnPropSymbols$
|
|
4410
|
-
var __hasOwnProp$
|
|
4411
|
-
var __propIsEnum$
|
|
4412
|
-
var __defNormalProp$
|
|
4413
|
-
var __spreadValues$
|
|
4564
|
+
var __defProp$7 = Object.defineProperty;
|
|
4565
|
+
var __defProps$7 = Object.defineProperties;
|
|
4566
|
+
var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
|
|
4567
|
+
var __getOwnPropSymbols$7 = Object.getOwnPropertySymbols;
|
|
4568
|
+
var __hasOwnProp$7 = Object.prototype.hasOwnProperty;
|
|
4569
|
+
var __propIsEnum$7 = Object.prototype.propertyIsEnumerable;
|
|
4570
|
+
var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4571
|
+
var __spreadValues$7 = (a, b) => {
|
|
4414
4572
|
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$
|
|
4573
|
+
if (__hasOwnProp$7.call(b, prop))
|
|
4574
|
+
__defNormalProp$7(a, prop, b[prop]);
|
|
4575
|
+
if (__getOwnPropSymbols$7)
|
|
4576
|
+
for (var prop of __getOwnPropSymbols$7(b)) {
|
|
4577
|
+
if (__propIsEnum$7.call(b, prop))
|
|
4578
|
+
__defNormalProp$7(a, prop, b[prop]);
|
|
4421
4579
|
}
|
|
4422
4580
|
return a;
|
|
4423
4581
|
};
|
|
4424
|
-
var __spreadProps$
|
|
4582
|
+
var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
|
|
4425
4583
|
const BatchInputListHeaderCell = (props) => {
|
|
4426
4584
|
const { column, disabled, data, disableBatchFilling, onBlur, onChange } = props;
|
|
4427
4585
|
const [errMsg, setErrMsg] = useState();
|
|
@@ -4433,7 +4591,7 @@ const BatchInputListHeaderCell = (props) => {
|
|
|
4433
4591
|
setErrMsg(err || void 0);
|
|
4434
4592
|
const shouldAutoIncrease = column.type !== "password" && column.autoIncrease;
|
|
4435
4593
|
const newData = data.map((cell, rowIndex) => {
|
|
4436
|
-
return __spreadProps$
|
|
4594
|
+
return __spreadProps$7(__spreadValues$7({}, cell), {
|
|
4437
4595
|
[column.key]: shouldAutoIncrease && typeof value === "string" ? increaseLastNumber(value, rowIndex) : value
|
|
4438
4596
|
});
|
|
4439
4597
|
});
|
|
@@ -4450,7 +4608,7 @@ const BatchInputListHeaderCell = (props) => {
|
|
|
4450
4608
|
const CellComponent = ColumnHeaderImpls[column.type];
|
|
4451
4609
|
return /* @__PURE__ */ React__default.createElement(
|
|
4452
4610
|
CellComponent,
|
|
4453
|
-
__spreadProps$
|
|
4611
|
+
__spreadProps$7(__spreadValues$7({}, props), {
|
|
4454
4612
|
column,
|
|
4455
4613
|
onChange: headerOnChange,
|
|
4456
4614
|
onBlur: _onBlur
|
|
@@ -4485,51 +4643,56 @@ const BatchInputListHeaderCell = (props) => {
|
|
|
4485
4643
|
);
|
|
4486
4644
|
};
|
|
4487
4645
|
|
|
4488
|
-
var __defProp$
|
|
4489
|
-
var __defProps$
|
|
4490
|
-
var __getOwnPropDescs$
|
|
4491
|
-
var __getOwnPropSymbols$
|
|
4492
|
-
var __hasOwnProp$
|
|
4493
|
-
var __propIsEnum$
|
|
4494
|
-
var __defNormalProp$
|
|
4495
|
-
var __spreadValues$
|
|
4646
|
+
var __defProp$6 = Object.defineProperty;
|
|
4647
|
+
var __defProps$6 = Object.defineProperties;
|
|
4648
|
+
var __getOwnPropDescs$6 = Object.getOwnPropertyDescriptors;
|
|
4649
|
+
var __getOwnPropSymbols$6 = Object.getOwnPropertySymbols;
|
|
4650
|
+
var __hasOwnProp$6 = Object.prototype.hasOwnProperty;
|
|
4651
|
+
var __propIsEnum$6 = Object.prototype.propertyIsEnumerable;
|
|
4652
|
+
var __defNormalProp$6 = (obj, key, value) => key in obj ? __defProp$6(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4653
|
+
var __spreadValues$6 = (a, b) => {
|
|
4496
4654
|
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$
|
|
4655
|
+
if (__hasOwnProp$6.call(b, prop))
|
|
4656
|
+
__defNormalProp$6(a, prop, b[prop]);
|
|
4657
|
+
if (__getOwnPropSymbols$6)
|
|
4658
|
+
for (var prop of __getOwnPropSymbols$6(b)) {
|
|
4659
|
+
if (__propIsEnum$6.call(b, prop))
|
|
4660
|
+
__defNormalProp$6(a, prop, b[prop]);
|
|
4503
4661
|
}
|
|
4504
4662
|
return a;
|
|
4505
4663
|
};
|
|
4506
|
-
var __spreadProps$
|
|
4664
|
+
var __spreadProps$6 = (a, b) => __defProps$6(a, __getOwnPropDescs$6(b));
|
|
4507
4665
|
const DEFAULT_ROW_COUNT = 3;
|
|
4508
4666
|
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
|
-
|
|
4667
|
+
(props, ref) => {
|
|
4668
|
+
var _a, _b;
|
|
4669
|
+
const {
|
|
4670
|
+
// The empty array is valid data so do not initialize "defaultData" with it
|
|
4671
|
+
defaultData,
|
|
4672
|
+
columns,
|
|
4673
|
+
disabled,
|
|
4674
|
+
rowAddConfig,
|
|
4675
|
+
deleteConfig,
|
|
4676
|
+
size = "default",
|
|
4677
|
+
className,
|
|
4678
|
+
disableBatchFilling = false,
|
|
4679
|
+
validateTriggerType,
|
|
4680
|
+
maxHeight,
|
|
4681
|
+
renderRowDescription,
|
|
4682
|
+
rowValidator,
|
|
4683
|
+
onHeaderChange,
|
|
4684
|
+
onHeaderBlur,
|
|
4685
|
+
onBodyChange,
|
|
4686
|
+
onBodyBlur,
|
|
4687
|
+
row,
|
|
4688
|
+
errors
|
|
4689
|
+
} = props;
|
|
4690
|
+
const [data, setData] = useState(defaultData || []);
|
|
4530
4691
|
const [passwordVisible, setPasswordVisible] = useState(false);
|
|
4531
|
-
const [latestData, setLatestData] = useState(defaultData);
|
|
4692
|
+
const [latestData, setLatestData] = useState(defaultData || []);
|
|
4532
4693
|
const [validateAll, setValidateAll] = useState(false);
|
|
4694
|
+
const rowSplitType = (row == null ? void 0 : row.splitType) || props.rowSplitType || "border";
|
|
4695
|
+
const draggable = (_b = (_a = row == null ? void 0 : row.draggable) != null ? _a : props.draggable) != null ? _b : false;
|
|
4533
4696
|
const updateData = useCallback(
|
|
4534
4697
|
(value, rowIndex, columnKey) => {
|
|
4535
4698
|
setLatestData(value);
|
|
@@ -4539,7 +4702,7 @@ const TableForm = React__default.forwardRef(
|
|
|
4539
4702
|
[onBodyChange]
|
|
4540
4703
|
);
|
|
4541
4704
|
useLayoutEffect(() => {
|
|
4542
|
-
if (defaultData
|
|
4705
|
+
if (!defaultData) {
|
|
4543
4706
|
updateData(
|
|
4544
4707
|
[...Array(DEFAULT_ROW_COUNT)].map(() => genEmptyRow(columns))
|
|
4545
4708
|
);
|
|
@@ -4560,7 +4723,7 @@ const TableForm = React__default.forwardRef(
|
|
|
4560
4723
|
(key, error) => {
|
|
4561
4724
|
if (error) {
|
|
4562
4725
|
const newData = latestData.map((cell) => {
|
|
4563
|
-
return __spreadProps$
|
|
4726
|
+
return __spreadProps$6(__spreadValues$6({}, cell), {
|
|
4564
4727
|
[key]: ""
|
|
4565
4728
|
});
|
|
4566
4729
|
});
|
|
@@ -4618,7 +4781,7 @@ const TableForm = React__default.forwardRef(
|
|
|
4618
4781
|
List.Item,
|
|
4619
4782
|
{
|
|
4620
4783
|
className: "eagle-table-form-header",
|
|
4621
|
-
actions: (deleteConfig == null ? void 0 : deleteConfig.deletable) ? [/* @__PURE__ */ React__default.createElement(React__default.Fragment, null)] : void 0
|
|
4784
|
+
actions: (deleteConfig == null ? void 0 : deleteConfig.deletable) || (row == null ? void 0 : row.deletable) ? [/* @__PURE__ */ React__default.createElement(React__default.Fragment, null)] : void 0
|
|
4622
4785
|
},
|
|
4623
4786
|
draggable ? /* @__PURE__ */ React__default.createElement(DraggableHandleWrapper, null) : null,
|
|
4624
4787
|
headerCells
|
|
@@ -4634,11 +4797,13 @@ const TableForm = React__default.forwardRef(
|
|
|
4634
4797
|
draggable,
|
|
4635
4798
|
rowSplitType,
|
|
4636
4799
|
validateTriggerType,
|
|
4800
|
+
row,
|
|
4637
4801
|
onBodyBlur,
|
|
4638
4802
|
updateData,
|
|
4639
4803
|
renderRowDescription,
|
|
4640
4804
|
rowValidator,
|
|
4641
|
-
validateAll
|
|
4805
|
+
validateAll,
|
|
4806
|
+
errors
|
|
4642
4807
|
}
|
|
4643
4808
|
))
|
|
4644
4809
|
), (rowAddConfig == null ? void 0 : rowAddConfig.addible) ? /* @__PURE__ */ React__default.createElement(
|
|
@@ -4653,6 +4818,139 @@ const TableForm = React__default.forwardRef(
|
|
|
4653
4818
|
}
|
|
4654
4819
|
);
|
|
4655
4820
|
|
|
4821
|
+
const PresetColors$2 = [
|
|
4822
|
+
"blue",
|
|
4823
|
+
"red",
|
|
4824
|
+
"yellow",
|
|
4825
|
+
"green",
|
|
4826
|
+
"gray",
|
|
4827
|
+
"purple"
|
|
4828
|
+
];
|
|
4829
|
+
|
|
4830
|
+
const Size$1 = {
|
|
4831
|
+
small: "sut42l0",
|
|
4832
|
+
medium: "mfsz1jz"
|
|
4833
|
+
};
|
|
4834
|
+
const TagStyle$1 = "tnd6h4m";
|
|
4835
|
+
const IconStyle = "i1qw4clm";
|
|
4836
|
+
|
|
4837
|
+
var __defProp$5 = Object.defineProperty;
|
|
4838
|
+
var __defProps$5 = Object.defineProperties;
|
|
4839
|
+
var __getOwnPropDescs$5 = Object.getOwnPropertyDescriptors;
|
|
4840
|
+
var __getOwnPropSymbols$5 = Object.getOwnPropertySymbols;
|
|
4841
|
+
var __hasOwnProp$5 = Object.prototype.hasOwnProperty;
|
|
4842
|
+
var __propIsEnum$5 = Object.prototype.propertyIsEnumerable;
|
|
4843
|
+
var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, {
|
|
4844
|
+
enumerable: true,
|
|
4845
|
+
configurable: true,
|
|
4846
|
+
writable: true,
|
|
4847
|
+
value
|
|
4848
|
+
}) : obj[key] = value;
|
|
4849
|
+
var __spreadValues$5 = (a, b) => {
|
|
4850
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
|
|
4851
|
+
if (__getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(b)) {
|
|
4852
|
+
if (__propIsEnum$5.call(b, prop)) __defNormalProp$5(a, prop, b[prop]);
|
|
4853
|
+
}
|
|
4854
|
+
return a;
|
|
4855
|
+
};
|
|
4856
|
+
var __spreadProps$5 = (a, b) => __defProps$5(a, __getOwnPropDescs$5(b));
|
|
4857
|
+
var __objRest$2 = (source, exclude) => {
|
|
4858
|
+
var target = {};
|
|
4859
|
+
for (var prop in source) if (__hasOwnProp$5.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
4860
|
+
if (source != null && __getOwnPropSymbols$5) for (var prop of __getOwnPropSymbols$5(source)) {
|
|
4861
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$5.call(source, prop)) target[prop] = source[prop];
|
|
4862
|
+
}
|
|
4863
|
+
return target;
|
|
4864
|
+
};
|
|
4865
|
+
const WrapperStyle = "w1xcixj5";
|
|
4866
|
+
const SplitTag = _a => {
|
|
4867
|
+
var _b = _a,
|
|
4868
|
+
{
|
|
4869
|
+
size = "small",
|
|
4870
|
+
color = "gray",
|
|
4871
|
+
className,
|
|
4872
|
+
primaryContent,
|
|
4873
|
+
secondaryContent,
|
|
4874
|
+
icon
|
|
4875
|
+
} = _b,
|
|
4876
|
+
props = __objRest$2(_b, ["size", "color", "className", "primaryContent", "secondaryContent", "icon"]);
|
|
4877
|
+
return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$5(__spreadValues$5({}, props), {
|
|
4878
|
+
className: cs(className, TagStyle$1, Size$1[size], WrapperStyle, Typo.Label.l4_regular, {
|
|
4879
|
+
[`ant-tag-${color}`]: PresetColors$2.includes(color)
|
|
4880
|
+
}, "outside-tag")
|
|
4881
|
+
}), /* @__PURE__ */React__default.createElement(Tag$1, {
|
|
4882
|
+
className: cs(Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
|
|
4883
|
+
[`ant-tag-${color}`]: PresetColors$2.includes(color)
|
|
4884
|
+
}, "inside-tag")
|
|
4885
|
+
}, icon && /* @__PURE__ */React__default.createElement("span", {
|
|
4886
|
+
className: cs("ui-kit-tag-icon", IconStyle)
|
|
4887
|
+
}, icon), primaryContent), secondaryContent);
|
|
4888
|
+
};
|
|
4889
|
+
|
|
4890
|
+
var __defProp$4 = Object.defineProperty;
|
|
4891
|
+
var __defProps$4 = Object.defineProperties;
|
|
4892
|
+
var __getOwnPropDescs$4 = Object.getOwnPropertyDescriptors;
|
|
4893
|
+
var __getOwnPropSymbols$4 = Object.getOwnPropertySymbols;
|
|
4894
|
+
var __hasOwnProp$4 = Object.prototype.hasOwnProperty;
|
|
4895
|
+
var __propIsEnum$4 = Object.prototype.propertyIsEnumerable;
|
|
4896
|
+
var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4897
|
+
var __spreadValues$4 = (a, b) => {
|
|
4898
|
+
for (var prop in b || (b = {}))
|
|
4899
|
+
if (__hasOwnProp$4.call(b, prop))
|
|
4900
|
+
__defNormalProp$4(a, prop, b[prop]);
|
|
4901
|
+
if (__getOwnPropSymbols$4)
|
|
4902
|
+
for (var prop of __getOwnPropSymbols$4(b)) {
|
|
4903
|
+
if (__propIsEnum$4.call(b, prop))
|
|
4904
|
+
__defNormalProp$4(a, prop, b[prop]);
|
|
4905
|
+
}
|
|
4906
|
+
return a;
|
|
4907
|
+
};
|
|
4908
|
+
var __spreadProps$4 = (a, b) => __defProps$4(a, __getOwnPropDescs$4(b));
|
|
4909
|
+
var __objRest$1 = (source, exclude) => {
|
|
4910
|
+
var target = {};
|
|
4911
|
+
for (var prop in source)
|
|
4912
|
+
if (__hasOwnProp$4.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
4913
|
+
target[prop] = source[prop];
|
|
4914
|
+
if (source != null && __getOwnPropSymbols$4)
|
|
4915
|
+
for (var prop of __getOwnPropSymbols$4(source)) {
|
|
4916
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$4.call(source, prop))
|
|
4917
|
+
target[prop] = source[prop];
|
|
4918
|
+
}
|
|
4919
|
+
return target;
|
|
4920
|
+
};
|
|
4921
|
+
const PresetColors$1 = [...PresetColors$2, "red-ontint", "green-ontint"];
|
|
4922
|
+
const Tag = (_a) => {
|
|
4923
|
+
var _b = _a, {
|
|
4924
|
+
size = "small",
|
|
4925
|
+
color = "gray",
|
|
4926
|
+
className,
|
|
4927
|
+
hoverable = false,
|
|
4928
|
+
icon,
|
|
4929
|
+
children
|
|
4930
|
+
} = _b, props = __objRest$1(_b, [
|
|
4931
|
+
"size",
|
|
4932
|
+
"color",
|
|
4933
|
+
"className",
|
|
4934
|
+
"hoverable",
|
|
4935
|
+
"icon",
|
|
4936
|
+
"children"
|
|
4937
|
+
]);
|
|
4938
|
+
return /* @__PURE__ */ React__default.createElement(
|
|
4939
|
+
Tag$1,
|
|
4940
|
+
__spreadProps$4(__spreadValues$4({}, props), {
|
|
4941
|
+
className: cs(className, Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
|
|
4942
|
+
[`ant-tag-${color}`]: PresetColors$1.includes(color),
|
|
4943
|
+
"tag-hover": hoverable
|
|
4944
|
+
}),
|
|
4945
|
+
closable: false,
|
|
4946
|
+
color: color === "gray" ? void 0 : color
|
|
4947
|
+
}),
|
|
4948
|
+
icon && /* @__PURE__ */ React__default.createElement("span", { className: cs("ui-kit-tag-icon", IconStyle) }, icon),
|
|
4949
|
+
children
|
|
4950
|
+
);
|
|
4951
|
+
};
|
|
4952
|
+
Tag.SplitTag = SplitTag;
|
|
4953
|
+
|
|
4656
4954
|
const allTimeZones = uniqBy(TimeZones.reduce((sum, zone) => {
|
|
4657
4955
|
const utcZones = zone.utc.map(utc => {
|
|
4658
4956
|
return {
|
|
@@ -4791,7 +5089,7 @@ const TimeZoneOption = ({
|
|
|
4791
5089
|
className: OptionFirstLineStyle
|
|
4792
5090
|
}, /* @__PURE__ */React__default.createElement("span", {
|
|
4793
5091
|
className: "timezone-title"
|
|
4794
|
-
}, customLabel || timeZone.value), /* @__PURE__ */React__default.createElement(Tag, {
|
|
5092
|
+
}, customLabel || timeZone.value), /* @__PURE__ */React__default.createElement(Tag$1, {
|
|
4795
5093
|
className: cx("timezone-tag", TagStyle)
|
|
4796
5094
|
}, tagText)), /* @__PURE__ */React__default.createElement("div", {
|
|
4797
5095
|
className: OptionSecondLineStyle
|
|
@@ -4847,7 +5145,7 @@ const Token = _a => {
|
|
|
4847
5145
|
checked
|
|
4848
5146
|
} = _b,
|
|
4849
5147
|
props = __objRest(_b, ["size", "color", "className", "checked"]);
|
|
4850
|
-
return /* @__PURE__ */React__default.createElement(Tag, __spreadProps$3(__spreadValues$3({}, props), {
|
|
5148
|
+
return /* @__PURE__ */React__default.createElement(Tag$1, __spreadProps$3(__spreadValues$3({}, props), {
|
|
4851
5149
|
className: cs(className, Size[size], TokenStyle, {
|
|
4852
5150
|
[Typo.Label.l4_regular]: size === "small" || size === "medium",
|
|
4853
5151
|
[Typo.Label.l3_regular]: size === "large",
|
|
@@ -4952,7 +5250,8 @@ function getAntdKit() {
|
|
|
4952
5250
|
antdCollapse: Collapse,
|
|
4953
5251
|
antdTreeSelect: TreeSelect,
|
|
4954
5252
|
antdDrawer: Drawer,
|
|
4955
|
-
antdSteps: Steps$1
|
|
5253
|
+
antdSteps: Steps$1,
|
|
5254
|
+
card: Card
|
|
4956
5255
|
};
|
|
4957
5256
|
kit.option.isSelectOption = true;
|
|
4958
5257
|
kit.button.__ANT_BUTTON = true;
|