@cloudtower/eagle 0.22.34 → 0.22.37
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/UIKitProvider/index.d.ts +4 -0
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/TableForm/AddRowButton.d.ts +4 -0
- package/dist/components/TableForm/Columns/AffixColumn.d.ts +4 -1
- package/dist/components/TableForm/Columns/CheckboxColumn.d.ts +3 -1
- package/dist/components/TableForm/Columns/InputColumn.d.ts +8 -2
- package/dist/components/TableForm/Columns/index.d.ts +27 -7
- package/dist/components/TableForm/TableFormBodyRows.d.ts +4 -0
- package/dist/components/TableForm/__test__/utils.spec.d.ts +1 -0
- package/dist/components/TableForm/index.d.ts +1 -15
- package/dist/components/TableForm/style.d.ts +13 -5
- package/dist/components/TableForm/types.d.ts +80 -13
- package/dist/components/TableForm/utils.d.ts +3 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/message-group/__test__/message-group.test.d.ts +1 -0
- package/dist/components/message-group/index.d.ts +23 -0
- package/dist/esm/index.js +1714 -663
- package/dist/esm/stats1.html +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/spec/base.d.ts +8 -1
- package/dist/style.css +1537 -1342
- package/dist/umd/index.js +1713 -662
- package/dist/umd/stats1.html +1 -1
- package/package.json +7 -5
package/dist/umd/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('antd'), require('
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', 'antd', '
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.index = {}, global.antd, global.
|
|
5
|
-
})(this, (function (exports, antd,
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('antd'), require('react'), require('classnames'), require('lodash'), require('@cloudtower/parrot'), require('@linaria/core'), require('@linaria/react'), require('moment'), require('react-dom'), require('react-is'), require('@ant-design/icons'), require('redux'), require('react-redux'), require('@cloudtower/icons-react'), require('react-beautiful-dnd'), require('timezones.json'), require('react-i18next'), require('dayjs'), require('recharts')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', 'antd', 'react', 'classnames', 'lodash', '@cloudtower/parrot', '@linaria/core', '@linaria/react', 'moment', 'react-dom', 'react-is', '@ant-design/icons', 'redux', 'react-redux', '@cloudtower/icons-react', 'react-beautiful-dnd', 'timezones.json', 'react-i18next', 'dayjs', 'recharts'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.index = {}, global.antd, global.React, global.cs, global._, global.parrot, global.core, global.react, global.moment, global.reactDom, global.reactIs, global.icons, global.redux, global.reactRedux, global.iconsReact, global.reactBeautifulDnd, global.TimeZones, global.reactI18next, global.dayjs));
|
|
5
|
+
})(this, (function (exports, antd, React, cs, _, parrot, core, react, moment, reactDom, reactIs, icons, redux, reactRedux, iconsReact, reactBeautifulDnd, TimeZones, reactI18next, dayjs) { 'use strict';
|
|
6
6
|
|
|
7
7
|
const MAGIC_METRIC_NULL = -2;
|
|
8
8
|
function formatBits(bits, decimals = 2) {
|
|
@@ -221,30 +221,30 @@
|
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
var __defProp$
|
|
225
|
-
var __getOwnPropSymbols$
|
|
226
|
-
var __hasOwnProp$
|
|
227
|
-
var __propIsEnum$
|
|
228
|
-
var __defNormalProp$
|
|
229
|
-
var __spreadValues$
|
|
224
|
+
var __defProp$E = Object.defineProperty;
|
|
225
|
+
var __getOwnPropSymbols$F = Object.getOwnPropertySymbols;
|
|
226
|
+
var __hasOwnProp$F = Object.prototype.hasOwnProperty;
|
|
227
|
+
var __propIsEnum$F = Object.prototype.propertyIsEnumerable;
|
|
228
|
+
var __defNormalProp$E = (obj, key, value) => key in obj ? __defProp$E(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
229
|
+
var __spreadValues$E = (a, b) => {
|
|
230
230
|
for (var prop in b || (b = {}))
|
|
231
|
-
if (__hasOwnProp$
|
|
232
|
-
__defNormalProp$
|
|
233
|
-
if (__getOwnPropSymbols$
|
|
234
|
-
for (var prop of __getOwnPropSymbols$
|
|
235
|
-
if (__propIsEnum$
|
|
236
|
-
__defNormalProp$
|
|
231
|
+
if (__hasOwnProp$F.call(b, prop))
|
|
232
|
+
__defNormalProp$E(a, prop, b[prop]);
|
|
233
|
+
if (__getOwnPropSymbols$F)
|
|
234
|
+
for (var prop of __getOwnPropSymbols$F(b)) {
|
|
235
|
+
if (__propIsEnum$F.call(b, prop))
|
|
236
|
+
__defNormalProp$E(a, prop, b[prop]);
|
|
237
237
|
}
|
|
238
238
|
return a;
|
|
239
239
|
};
|
|
240
|
-
var __objRest$
|
|
240
|
+
var __objRest$s = (source, exclude) => {
|
|
241
241
|
var target = {};
|
|
242
242
|
for (var prop in source)
|
|
243
|
-
if (__hasOwnProp$
|
|
243
|
+
if (__hasOwnProp$F.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
244
244
|
target[prop] = source[prop];
|
|
245
|
-
if (source != null && __getOwnPropSymbols$
|
|
246
|
-
for (var prop of __getOwnPropSymbols$
|
|
247
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
245
|
+
if (source != null && __getOwnPropSymbols$F)
|
|
246
|
+
for (var prop of __getOwnPropSymbols$F(source)) {
|
|
247
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$F.call(source, prop))
|
|
248
248
|
target[prop] = source[prop];
|
|
249
249
|
}
|
|
250
250
|
return target;
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
prefixNode,
|
|
263
263
|
suffixIconSrc: SuffixSrc,
|
|
264
264
|
src: Src
|
|
265
|
-
} = _a, HTMLSpanElementProps = __objRest$
|
|
265
|
+
} = _a, HTMLSpanElementProps = __objRest$s(_a, [
|
|
266
266
|
"alt",
|
|
267
267
|
"className",
|
|
268
268
|
"width",
|
|
@@ -276,10 +276,10 @@
|
|
|
276
276
|
]);
|
|
277
277
|
return /* @__PURE__ */ React.createElement(
|
|
278
278
|
"span",
|
|
279
|
-
__spreadValues$
|
|
279
|
+
__spreadValues$E({
|
|
280
280
|
ref,
|
|
281
281
|
className,
|
|
282
|
-
style: _.pickBy(__spreadValues$
|
|
282
|
+
style: _.pickBy(__spreadValues$E({ cursor }, style))
|
|
283
283
|
}, HTMLSpanElementProps),
|
|
284
284
|
prefixNode,
|
|
285
285
|
/* @__PURE__ */ React.createElement("span", { className: "icon-inner" }, typeof Src === "string" ? /* @__PURE__ */ React.createElement("img", { alt, src: Src, width, height }) : /* @__PURE__ */ React.createElement(Src, { width, height })),
|
|
@@ -289,31 +289,31 @@
|
|
|
289
289
|
}
|
|
290
290
|
);
|
|
291
291
|
|
|
292
|
-
var __defProp$
|
|
293
|
-
var __defProps$
|
|
294
|
-
var __getOwnPropDescs$
|
|
295
|
-
var __getOwnPropSymbols$
|
|
296
|
-
var __hasOwnProp$
|
|
297
|
-
var __propIsEnum$
|
|
298
|
-
var __defNormalProp$
|
|
292
|
+
var __defProp$D = Object.defineProperty;
|
|
293
|
+
var __defProps$v = Object.defineProperties;
|
|
294
|
+
var __getOwnPropDescs$v = Object.getOwnPropertyDescriptors;
|
|
295
|
+
var __getOwnPropSymbols$E = Object.getOwnPropertySymbols;
|
|
296
|
+
var __hasOwnProp$E = Object.prototype.hasOwnProperty;
|
|
297
|
+
var __propIsEnum$E = Object.prototype.propertyIsEnumerable;
|
|
298
|
+
var __defNormalProp$D = (obj, key, value) => key in obj ? __defProp$D(obj, key, {
|
|
299
299
|
enumerable: true,
|
|
300
300
|
configurable: true,
|
|
301
301
|
writable: true,
|
|
302
302
|
value
|
|
303
303
|
}) : obj[key] = value;
|
|
304
|
-
var __spreadValues$
|
|
305
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
306
|
-
if (__getOwnPropSymbols$
|
|
307
|
-
if (__propIsEnum$
|
|
304
|
+
var __spreadValues$D = (a, b) => {
|
|
305
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$E.call(b, prop)) __defNormalProp$D(a, prop, b[prop]);
|
|
306
|
+
if (__getOwnPropSymbols$E) for (var prop of __getOwnPropSymbols$E(b)) {
|
|
307
|
+
if (__propIsEnum$E.call(b, prop)) __defNormalProp$D(a, prop, b[prop]);
|
|
308
308
|
}
|
|
309
309
|
return a;
|
|
310
310
|
};
|
|
311
|
-
var __spreadProps$
|
|
312
|
-
var __objRest$
|
|
311
|
+
var __spreadProps$v = (a, b) => __defProps$v(a, __getOwnPropDescs$v(b));
|
|
312
|
+
var __objRest$r = (source, exclude) => {
|
|
313
313
|
var target = {};
|
|
314
|
-
for (var prop in source) if (__hasOwnProp$
|
|
315
|
-
if (source != null && __getOwnPropSymbols$
|
|
316
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
314
|
+
for (var prop in source) if (__hasOwnProp$E.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
315
|
+
if (source != null && __getOwnPropSymbols$E) for (var prop of __getOwnPropSymbols$E(source)) {
|
|
316
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$E.call(source, prop)) target[prop] = source[prop];
|
|
317
317
|
}
|
|
318
318
|
return target;
|
|
319
319
|
};
|
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
prefix,
|
|
338
338
|
suffix
|
|
339
339
|
} = _a,
|
|
340
|
-
restProps = __objRest$
|
|
340
|
+
restProps = __objRest$r(_a, ["src", "hoverSrc", "active", "activeSrc", "onMouseEnter", "onMouseLeave", "onMouseMove", "className", "iconWidth", "iconHeight", "cursor", "style", "isRotate", "prefix", "suffix"]);
|
|
341
341
|
const [hover, setHover] = React.useState(false);
|
|
342
342
|
const _src = React.useMemo(() => {
|
|
343
343
|
if (active && activeSrc) {
|
|
@@ -365,14 +365,14 @@
|
|
|
365
365
|
}
|
|
366
366
|
return src2;
|
|
367
367
|
}, [active, hover, suffix]);
|
|
368
|
-
return /* @__PURE__ */React.createElement(BaseIcon, __spreadProps$
|
|
368
|
+
return /* @__PURE__ */React.createElement(BaseIcon, __spreadProps$v(__spreadValues$D({
|
|
369
369
|
src: _src,
|
|
370
370
|
className: cs(IconWrapper, "icon-wrapper", className, isRotate && "is-rotate"),
|
|
371
371
|
suffixIconSrc,
|
|
372
372
|
height: iconHeight,
|
|
373
373
|
width: iconWidth,
|
|
374
374
|
prefixNode: prefix,
|
|
375
|
-
style: _.pickBy(__spreadValues$
|
|
375
|
+
style: _.pickBy(__spreadValues$D({
|
|
376
376
|
cursor
|
|
377
377
|
}, style))
|
|
378
378
|
}, restProps), {
|
|
@@ -397,33 +397,33 @@
|
|
|
397
397
|
}));
|
|
398
398
|
});
|
|
399
399
|
|
|
400
|
-
var __defProp$
|
|
401
|
-
var __defProps$
|
|
402
|
-
var __getOwnPropDescs$
|
|
403
|
-
var __getOwnPropSymbols$
|
|
404
|
-
var __hasOwnProp$
|
|
405
|
-
var __propIsEnum$
|
|
406
|
-
var __defNormalProp$
|
|
407
|
-
var __spreadValues$
|
|
400
|
+
var __defProp$C = Object.defineProperty;
|
|
401
|
+
var __defProps$u = Object.defineProperties;
|
|
402
|
+
var __getOwnPropDescs$u = Object.getOwnPropertyDescriptors;
|
|
403
|
+
var __getOwnPropSymbols$D = Object.getOwnPropertySymbols;
|
|
404
|
+
var __hasOwnProp$D = Object.prototype.hasOwnProperty;
|
|
405
|
+
var __propIsEnum$D = Object.prototype.propertyIsEnumerable;
|
|
406
|
+
var __defNormalProp$C = (obj, key, value) => key in obj ? __defProp$C(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
407
|
+
var __spreadValues$C = (a, b) => {
|
|
408
408
|
for (var prop in b || (b = {}))
|
|
409
|
-
if (__hasOwnProp$
|
|
410
|
-
__defNormalProp$
|
|
411
|
-
if (__getOwnPropSymbols$
|
|
412
|
-
for (var prop of __getOwnPropSymbols$
|
|
413
|
-
if (__propIsEnum$
|
|
414
|
-
__defNormalProp$
|
|
409
|
+
if (__hasOwnProp$D.call(b, prop))
|
|
410
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
411
|
+
if (__getOwnPropSymbols$D)
|
|
412
|
+
for (var prop of __getOwnPropSymbols$D(b)) {
|
|
413
|
+
if (__propIsEnum$D.call(b, prop))
|
|
414
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
415
415
|
}
|
|
416
416
|
return a;
|
|
417
417
|
};
|
|
418
|
-
var __spreadProps$
|
|
419
|
-
var __objRest$
|
|
418
|
+
var __spreadProps$u = (a, b) => __defProps$u(a, __getOwnPropDescs$u(b));
|
|
419
|
+
var __objRest$q = (source, exclude) => {
|
|
420
420
|
var target = {};
|
|
421
421
|
for (var prop in source)
|
|
422
|
-
if (__hasOwnProp$
|
|
422
|
+
if (__hasOwnProp$D.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
423
423
|
target[prop] = source[prop];
|
|
424
|
-
if (source != null && __getOwnPropSymbols$
|
|
425
|
-
for (var prop of __getOwnPropSymbols$
|
|
426
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
424
|
+
if (source != null && __getOwnPropSymbols$D)
|
|
425
|
+
for (var prop of __getOwnPropSymbols$D(source)) {
|
|
426
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$D.call(source, prop))
|
|
427
427
|
target[prop] = source[prop];
|
|
428
428
|
}
|
|
429
429
|
return target;
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
className,
|
|
437
437
|
onClose,
|
|
438
438
|
closeText
|
|
439
|
-
} = _b, props = __objRest$
|
|
439
|
+
} = _b, props = __objRest$q(_b, [
|
|
440
440
|
"type",
|
|
441
441
|
"icon",
|
|
442
442
|
"showIcon",
|
|
@@ -448,7 +448,7 @@
|
|
|
448
448
|
const _type = type === "normal" ? "info" : type;
|
|
449
449
|
return /* @__PURE__ */ React.createElement(
|
|
450
450
|
antd.Alert,
|
|
451
|
-
__spreadProps$
|
|
451
|
+
__spreadProps$u(__spreadValues$C({}, props), {
|
|
452
452
|
className: cs(type ? `alert-${type}` : "", className),
|
|
453
453
|
type: _type,
|
|
454
454
|
icon: icon || _icon,
|
|
@@ -469,42 +469,42 @@
|
|
|
469
469
|
return /* @__PURE__ */ React.createElement("span", null, text);
|
|
470
470
|
};
|
|
471
471
|
|
|
472
|
-
var __defProp$
|
|
473
|
-
var __defProps$
|
|
474
|
-
var __getOwnPropDescs$
|
|
475
|
-
var __getOwnPropSymbols$
|
|
476
|
-
var __hasOwnProp$
|
|
477
|
-
var __propIsEnum$
|
|
478
|
-
var __defNormalProp$
|
|
479
|
-
var __spreadValues$
|
|
472
|
+
var __defProp$B = Object.defineProperty;
|
|
473
|
+
var __defProps$t = Object.defineProperties;
|
|
474
|
+
var __getOwnPropDescs$t = Object.getOwnPropertyDescriptors;
|
|
475
|
+
var __getOwnPropSymbols$C = Object.getOwnPropertySymbols;
|
|
476
|
+
var __hasOwnProp$C = Object.prototype.hasOwnProperty;
|
|
477
|
+
var __propIsEnum$C = Object.prototype.propertyIsEnumerable;
|
|
478
|
+
var __defNormalProp$B = (obj, key, value) => key in obj ? __defProp$B(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
479
|
+
var __spreadValues$B = (a, b) => {
|
|
480
480
|
for (var prop in b || (b = {}))
|
|
481
|
-
if (__hasOwnProp$
|
|
482
|
-
__defNormalProp$
|
|
483
|
-
if (__getOwnPropSymbols$
|
|
484
|
-
for (var prop of __getOwnPropSymbols$
|
|
485
|
-
if (__propIsEnum$
|
|
486
|
-
__defNormalProp$
|
|
481
|
+
if (__hasOwnProp$C.call(b, prop))
|
|
482
|
+
__defNormalProp$B(a, prop, b[prop]);
|
|
483
|
+
if (__getOwnPropSymbols$C)
|
|
484
|
+
for (var prop of __getOwnPropSymbols$C(b)) {
|
|
485
|
+
if (__propIsEnum$C.call(b, prop))
|
|
486
|
+
__defNormalProp$B(a, prop, b[prop]);
|
|
487
487
|
}
|
|
488
488
|
return a;
|
|
489
489
|
};
|
|
490
|
-
var __spreadProps$
|
|
491
|
-
var __objRest$
|
|
490
|
+
var __spreadProps$t = (a, b) => __defProps$t(a, __getOwnPropDescs$t(b));
|
|
491
|
+
var __objRest$p = (source, exclude) => {
|
|
492
492
|
var target = {};
|
|
493
493
|
for (var prop in source)
|
|
494
|
-
if (__hasOwnProp$
|
|
494
|
+
if (__hasOwnProp$C.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
495
495
|
target[prop] = source[prop];
|
|
496
|
-
if (source != null && __getOwnPropSymbols$
|
|
497
|
-
for (var prop of __getOwnPropSymbols$
|
|
498
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
496
|
+
if (source != null && __getOwnPropSymbols$C)
|
|
497
|
+
for (var prop of __getOwnPropSymbols$C(source)) {
|
|
498
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$C.call(source, prop))
|
|
499
499
|
target[prop] = source[prop];
|
|
500
500
|
}
|
|
501
501
|
return target;
|
|
502
502
|
};
|
|
503
503
|
const Badge = (_a) => {
|
|
504
|
-
var _b = _a, { type = "error", className } = _b, props = __objRest$
|
|
504
|
+
var _b = _a, { type = "error", className } = _b, props = __objRest$p(_b, ["type", "className"]);
|
|
505
505
|
return /* @__PURE__ */ React.createElement(
|
|
506
506
|
antd.Badge,
|
|
507
|
-
__spreadProps$
|
|
507
|
+
__spreadProps$t(__spreadValues$B({
|
|
508
508
|
className: core.cx(`badge-${type}`, className)
|
|
509
509
|
}, props), {
|
|
510
510
|
showZero: false
|
|
@@ -685,28 +685,28 @@
|
|
|
685
685
|
return icon != null ? React.cloneElement(icon, { className }) : null;
|
|
686
686
|
};
|
|
687
687
|
|
|
688
|
-
var __defProp$
|
|
689
|
-
var __getOwnPropSymbols$
|
|
690
|
-
var __hasOwnProp$
|
|
691
|
-
var __propIsEnum$
|
|
692
|
-
var __defNormalProp$
|
|
688
|
+
var __defProp$A = Object.defineProperty;
|
|
689
|
+
var __getOwnPropSymbols$B = Object.getOwnPropertySymbols;
|
|
690
|
+
var __hasOwnProp$B = Object.prototype.hasOwnProperty;
|
|
691
|
+
var __propIsEnum$B = Object.prototype.propertyIsEnumerable;
|
|
692
|
+
var __defNormalProp$A = (obj, key, value) => key in obj ? __defProp$A(obj, key, {
|
|
693
693
|
enumerable: true,
|
|
694
694
|
configurable: true,
|
|
695
695
|
writable: true,
|
|
696
696
|
value
|
|
697
697
|
}) : obj[key] = value;
|
|
698
|
-
var __spreadValues$
|
|
699
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
700
|
-
if (__getOwnPropSymbols$
|
|
701
|
-
if (__propIsEnum$
|
|
698
|
+
var __spreadValues$A = (a, b) => {
|
|
699
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$B.call(b, prop)) __defNormalProp$A(a, prop, b[prop]);
|
|
700
|
+
if (__getOwnPropSymbols$B) for (var prop of __getOwnPropSymbols$B(b)) {
|
|
701
|
+
if (__propIsEnum$B.call(b, prop)) __defNormalProp$A(a, prop, b[prop]);
|
|
702
702
|
}
|
|
703
703
|
return a;
|
|
704
704
|
};
|
|
705
|
-
var __objRest$
|
|
705
|
+
var __objRest$o = (source, exclude) => {
|
|
706
706
|
var target = {};
|
|
707
|
-
for (var prop in source) if (__hasOwnProp$
|
|
708
|
-
if (source != null && __getOwnPropSymbols$
|
|
709
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
707
|
+
for (var prop in source) if (__hasOwnProp$B.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
708
|
+
if (source != null && __getOwnPropSymbols$B) for (var prop of __getOwnPropSymbols$B(source)) {
|
|
709
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$B.call(source, prop)) target[prop] = source[prop];
|
|
710
710
|
}
|
|
711
711
|
return target;
|
|
712
712
|
};
|
|
@@ -729,11 +729,11 @@
|
|
|
729
729
|
onMouseLeave,
|
|
730
730
|
size = "middle"
|
|
731
731
|
} = _a,
|
|
732
|
-
restProps = __objRest$
|
|
732
|
+
restProps = __objRest$o(_a, ["type", "className", "children", "prefixIcon", "hoverPrefixIcon", "suffixIcon", "hoverSuffixIcon", "onMouseEnter", "onMouseLeave", "size"]);
|
|
733
733
|
const [status, setStatus] = React.useState("normal");
|
|
734
734
|
const hasIcon = prefixIcon || suffixIcon;
|
|
735
735
|
const hasHoverIcon = hoverPrefixIcon || hoverSuffixIcon;
|
|
736
|
-
return /* @__PURE__ */React.createElement(antd.Button, __spreadValues$
|
|
736
|
+
return /* @__PURE__ */React.createElement(antd.Button, __spreadValues$A({
|
|
737
737
|
ref,
|
|
738
738
|
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"),
|
|
739
739
|
type: isAntdButtonTypes(type) ? type : void 0,
|
|
@@ -763,33 +763,33 @@
|
|
|
763
763
|
}));
|
|
764
764
|
});
|
|
765
765
|
|
|
766
|
-
var __defProp$
|
|
767
|
-
var __defProps$
|
|
768
|
-
var __getOwnPropDescs$
|
|
769
|
-
var __getOwnPropSymbols$
|
|
770
|
-
var __hasOwnProp$
|
|
771
|
-
var __propIsEnum$
|
|
772
|
-
var __defNormalProp$
|
|
773
|
-
var __spreadValues$
|
|
766
|
+
var __defProp$z = Object.defineProperty;
|
|
767
|
+
var __defProps$s = Object.defineProperties;
|
|
768
|
+
var __getOwnPropDescs$s = Object.getOwnPropertyDescriptors;
|
|
769
|
+
var __getOwnPropSymbols$A = Object.getOwnPropertySymbols;
|
|
770
|
+
var __hasOwnProp$A = Object.prototype.hasOwnProperty;
|
|
771
|
+
var __propIsEnum$A = Object.prototype.propertyIsEnumerable;
|
|
772
|
+
var __defNormalProp$z = (obj, key, value) => key in obj ? __defProp$z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
773
|
+
var __spreadValues$z = (a, b) => {
|
|
774
774
|
for (var prop in b || (b = {}))
|
|
775
|
-
if (__hasOwnProp$
|
|
776
|
-
__defNormalProp$
|
|
777
|
-
if (__getOwnPropSymbols$
|
|
778
|
-
for (var prop of __getOwnPropSymbols$
|
|
779
|
-
if (__propIsEnum$
|
|
780
|
-
__defNormalProp$
|
|
775
|
+
if (__hasOwnProp$A.call(b, prop))
|
|
776
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
777
|
+
if (__getOwnPropSymbols$A)
|
|
778
|
+
for (var prop of __getOwnPropSymbols$A(b)) {
|
|
779
|
+
if (__propIsEnum$A.call(b, prop))
|
|
780
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
781
781
|
}
|
|
782
782
|
return a;
|
|
783
783
|
};
|
|
784
|
-
var __spreadProps$
|
|
785
|
-
var __objRest$
|
|
784
|
+
var __spreadProps$s = (a, b) => __defProps$s(a, __getOwnPropDescs$s(b));
|
|
785
|
+
var __objRest$n = (source, exclude) => {
|
|
786
786
|
var target = {};
|
|
787
787
|
for (var prop in source)
|
|
788
|
-
if (__hasOwnProp$
|
|
788
|
+
if (__hasOwnProp$A.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
789
789
|
target[prop] = source[prop];
|
|
790
|
-
if (source != null && __getOwnPropSymbols$
|
|
791
|
-
for (var prop of __getOwnPropSymbols$
|
|
792
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
790
|
+
if (source != null && __getOwnPropSymbols$A)
|
|
791
|
+
for (var prop of __getOwnPropSymbols$A(source)) {
|
|
792
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$A.call(source, prop))
|
|
793
793
|
target[prop] = source[prop];
|
|
794
794
|
}
|
|
795
795
|
return target;
|
|
@@ -801,7 +801,7 @@
|
|
|
801
801
|
overlayClassName,
|
|
802
802
|
overlayStyle,
|
|
803
803
|
children
|
|
804
|
-
} = _a, restProps = __objRest$
|
|
804
|
+
} = _a, restProps = __objRest$n(_a, [
|
|
805
805
|
"followMouse",
|
|
806
806
|
"overlayClassName",
|
|
807
807
|
"overlayStyle",
|
|
@@ -843,10 +843,10 @@
|
|
|
843
843
|
}, [followMouse, onmousemove, uniqueContainerClass]);
|
|
844
844
|
return /* @__PURE__ */ React.createElement(
|
|
845
845
|
antd.Tooltip,
|
|
846
|
-
__spreadProps$
|
|
846
|
+
__spreadProps$s(__spreadValues$z({}, restProps), {
|
|
847
847
|
overlayClassName: followMouse ? cs(overlayClassName, uniquePopupClass) : overlayClassName,
|
|
848
848
|
children: _children,
|
|
849
|
-
overlayStyle: followMouse ? __spreadValues$
|
|
849
|
+
overlayStyle: followMouse ? __spreadValues$z({
|
|
850
850
|
transform: "translate(-50%, -100%)",
|
|
851
851
|
pointerEvents: "none"
|
|
852
852
|
}, overlayStyle) : overlayStyle
|
|
@@ -854,28 +854,28 @@
|
|
|
854
854
|
);
|
|
855
855
|
};
|
|
856
856
|
|
|
857
|
-
var __defProp$
|
|
858
|
-
var __getOwnPropSymbols$
|
|
859
|
-
var __hasOwnProp$
|
|
860
|
-
var __propIsEnum$
|
|
861
|
-
var __defNormalProp$
|
|
857
|
+
var __defProp$y = Object.defineProperty;
|
|
858
|
+
var __getOwnPropSymbols$z = Object.getOwnPropertySymbols;
|
|
859
|
+
var __hasOwnProp$z = Object.prototype.hasOwnProperty;
|
|
860
|
+
var __propIsEnum$z = Object.prototype.propertyIsEnumerable;
|
|
861
|
+
var __defNormalProp$y = (obj, key, value) => key in obj ? __defProp$y(obj, key, {
|
|
862
862
|
enumerable: true,
|
|
863
863
|
configurable: true,
|
|
864
864
|
writable: true,
|
|
865
865
|
value
|
|
866
866
|
}) : obj[key] = value;
|
|
867
|
-
var __spreadValues$
|
|
868
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
869
|
-
if (__getOwnPropSymbols$
|
|
870
|
-
if (__propIsEnum$
|
|
867
|
+
var __spreadValues$y = (a, b) => {
|
|
868
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$z.call(b, prop)) __defNormalProp$y(a, prop, b[prop]);
|
|
869
|
+
if (__getOwnPropSymbols$z) for (var prop of __getOwnPropSymbols$z(b)) {
|
|
870
|
+
if (__propIsEnum$z.call(b, prop)) __defNormalProp$y(a, prop, b[prop]);
|
|
871
871
|
}
|
|
872
872
|
return a;
|
|
873
873
|
};
|
|
874
|
-
var __objRest$
|
|
874
|
+
var __objRest$m = (source, exclude) => {
|
|
875
875
|
var target = {};
|
|
876
|
-
for (var prop in source) if (__hasOwnProp$
|
|
877
|
-
if (source != null && __getOwnPropSymbols$
|
|
878
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
876
|
+
for (var prop in source) if (__hasOwnProp$z.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
877
|
+
if (source != null && __getOwnPropSymbols$z) for (var prop of __getOwnPropSymbols$z(source)) {
|
|
878
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$z.call(source, prop)) target[prop] = source[prop];
|
|
879
879
|
}
|
|
880
880
|
return target;
|
|
881
881
|
};
|
|
@@ -910,7 +910,7 @@
|
|
|
910
910
|
hideTitle,
|
|
911
911
|
title
|
|
912
912
|
} = _a,
|
|
913
|
-
buttonPropArgs = __objRest$
|
|
913
|
+
buttonPropArgs = __objRest$m(_a, ["key", "icon", "type", "children", "danger", "ghost", "className", "hideTitle", "title"]);
|
|
914
914
|
if (hideTitle) {
|
|
915
915
|
return /* @__PURE__ */React.createElement(Tooltip, {
|
|
916
916
|
key: key || index,
|
|
@@ -919,7 +919,7 @@
|
|
|
919
919
|
style: {
|
|
920
920
|
cursor: "not-allowed"
|
|
921
921
|
}
|
|
922
|
-
}, /* @__PURE__ */React.createElement(Button, __spreadValues$
|
|
922
|
+
}, /* @__PURE__ */React.createElement(Button, __spreadValues$y({
|
|
923
923
|
style: {
|
|
924
924
|
pointerEvents: "none"
|
|
925
925
|
},
|
|
@@ -929,7 +929,7 @@
|
|
|
929
929
|
ghost,
|
|
930
930
|
className: core.cx(ButtonStyle, className2),
|
|
931
931
|
prefixIcon: icon
|
|
932
|
-
}, buttonPropArgs))) : /* @__PURE__ */React.createElement(Button, __spreadValues$
|
|
932
|
+
}, buttonPropArgs))) : /* @__PURE__ */React.createElement(Button, __spreadValues$y({
|
|
933
933
|
type,
|
|
934
934
|
size,
|
|
935
935
|
danger,
|
|
@@ -938,7 +938,7 @@
|
|
|
938
938
|
prefixIcon: icon
|
|
939
939
|
}, buttonPropArgs)));
|
|
940
940
|
}
|
|
941
|
-
return /* @__PURE__ */React.createElement(Button, __spreadValues$
|
|
941
|
+
return /* @__PURE__ */React.createElement(Button, __spreadValues$y({
|
|
942
942
|
key: key || index,
|
|
943
943
|
type,
|
|
944
944
|
size,
|
|
@@ -972,31 +972,31 @@
|
|
|
972
972
|
return /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
973
973
|
};
|
|
974
974
|
|
|
975
|
-
var __defProp$
|
|
976
|
-
var __defProps$
|
|
977
|
-
var __getOwnPropDescs$
|
|
978
|
-
var __getOwnPropSymbols$
|
|
979
|
-
var __hasOwnProp$
|
|
980
|
-
var __propIsEnum$
|
|
981
|
-
var __defNormalProp$
|
|
975
|
+
var __defProp$x = Object.defineProperty;
|
|
976
|
+
var __defProps$r = Object.defineProperties;
|
|
977
|
+
var __getOwnPropDescs$r = Object.getOwnPropertyDescriptors;
|
|
978
|
+
var __getOwnPropSymbols$y = Object.getOwnPropertySymbols;
|
|
979
|
+
var __hasOwnProp$y = Object.prototype.hasOwnProperty;
|
|
980
|
+
var __propIsEnum$y = Object.prototype.propertyIsEnumerable;
|
|
981
|
+
var __defNormalProp$x = (obj, key, value) => key in obj ? __defProp$x(obj, key, {
|
|
982
982
|
enumerable: true,
|
|
983
983
|
configurable: true,
|
|
984
984
|
writable: true,
|
|
985
985
|
value
|
|
986
986
|
}) : obj[key] = value;
|
|
987
|
-
var __spreadValues$
|
|
988
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
989
|
-
if (__getOwnPropSymbols$
|
|
990
|
-
if (__propIsEnum$
|
|
987
|
+
var __spreadValues$x = (a, b) => {
|
|
988
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$y.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
989
|
+
if (__getOwnPropSymbols$y) for (var prop of __getOwnPropSymbols$y(b)) {
|
|
990
|
+
if (__propIsEnum$y.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
991
991
|
}
|
|
992
992
|
return a;
|
|
993
993
|
};
|
|
994
|
-
var __spreadProps$
|
|
995
|
-
var __objRest$
|
|
994
|
+
var __spreadProps$r = (a, b) => __defProps$r(a, __getOwnPropDescs$r(b));
|
|
995
|
+
var __objRest$l = (source, exclude) => {
|
|
996
996
|
var target = {};
|
|
997
|
-
for (var prop in source) if (__hasOwnProp$
|
|
998
|
-
if (source != null && __getOwnPropSymbols$
|
|
999
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
997
|
+
for (var prop in source) if (__hasOwnProp$y.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
998
|
+
if (source != null && __getOwnPropSymbols$y) for (var prop of __getOwnPropSymbols$y(source)) {
|
|
999
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$y.call(source, prop)) target[prop] = source[prop];
|
|
1000
1000
|
}
|
|
1001
1001
|
return target;
|
|
1002
1002
|
};
|
|
@@ -1009,8 +1009,8 @@
|
|
|
1009
1009
|
description,
|
|
1010
1010
|
compact
|
|
1011
1011
|
} = _b,
|
|
1012
|
-
props = __objRest$
|
|
1013
|
-
return /* @__PURE__ */React.createElement(antd.Checkbox, __spreadProps$
|
|
1012
|
+
props = __objRest$l(_b, ["className", "children", "description", "compact"]);
|
|
1013
|
+
return /* @__PURE__ */React.createElement(antd.Checkbox, __spreadProps$r(__spreadValues$x({}, props), {
|
|
1014
1014
|
"data-test": props["data-test"] || props.value,
|
|
1015
1015
|
className: cs(className, CheckboxStyle, compact && "compact")
|
|
1016
1016
|
}), children ? /* @__PURE__ */React.createElement(React.Fragment, null, /* @__PURE__ */React.createElement("div", {
|
|
@@ -1020,39 +1020,39 @@
|
|
|
1020
1020
|
}, description) : null) : null);
|
|
1021
1021
|
};
|
|
1022
1022
|
|
|
1023
|
-
var __defProp$
|
|
1024
|
-
var __getOwnPropSymbols$
|
|
1025
|
-
var __hasOwnProp$
|
|
1026
|
-
var __propIsEnum$
|
|
1027
|
-
var __defNormalProp$
|
|
1028
|
-
var __spreadValues$
|
|
1023
|
+
var __defProp$w = Object.defineProperty;
|
|
1024
|
+
var __getOwnPropSymbols$x = Object.getOwnPropertySymbols;
|
|
1025
|
+
var __hasOwnProp$x = Object.prototype.hasOwnProperty;
|
|
1026
|
+
var __propIsEnum$x = Object.prototype.propertyIsEnumerable;
|
|
1027
|
+
var __defNormalProp$w = (obj, key, value) => key in obj ? __defProp$w(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1028
|
+
var __spreadValues$w = (a, b) => {
|
|
1029
1029
|
for (var prop in b || (b = {}))
|
|
1030
|
-
if (__hasOwnProp$
|
|
1031
|
-
__defNormalProp$
|
|
1032
|
-
if (__getOwnPropSymbols$
|
|
1033
|
-
for (var prop of __getOwnPropSymbols$
|
|
1034
|
-
if (__propIsEnum$
|
|
1035
|
-
__defNormalProp$
|
|
1030
|
+
if (__hasOwnProp$x.call(b, prop))
|
|
1031
|
+
__defNormalProp$w(a, prop, b[prop]);
|
|
1032
|
+
if (__getOwnPropSymbols$x)
|
|
1033
|
+
for (var prop of __getOwnPropSymbols$x(b)) {
|
|
1034
|
+
if (__propIsEnum$x.call(b, prop))
|
|
1035
|
+
__defNormalProp$w(a, prop, b[prop]);
|
|
1036
1036
|
}
|
|
1037
1037
|
return a;
|
|
1038
1038
|
};
|
|
1039
|
-
var __objRest$
|
|
1039
|
+
var __objRest$k = (source, exclude) => {
|
|
1040
1040
|
var target = {};
|
|
1041
1041
|
for (var prop in source)
|
|
1042
|
-
if (__hasOwnProp$
|
|
1042
|
+
if (__hasOwnProp$x.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1043
1043
|
target[prop] = source[prop];
|
|
1044
|
-
if (source != null && __getOwnPropSymbols$
|
|
1045
|
-
for (var prop of __getOwnPropSymbols$
|
|
1046
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1044
|
+
if (source != null && __getOwnPropSymbols$x)
|
|
1045
|
+
for (var prop of __getOwnPropSymbols$x(source)) {
|
|
1046
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$x.call(source, prop))
|
|
1047
1047
|
target[prop] = source[prop];
|
|
1048
1048
|
}
|
|
1049
1049
|
return target;
|
|
1050
1050
|
};
|
|
1051
1051
|
const FieldsBoolean = (_a) => {
|
|
1052
|
-
var _b = _a, { input, children } = _b, props = __objRest$
|
|
1052
|
+
var _b = _a, { input, children } = _b, props = __objRest$k(_b, ["input", "children"]);
|
|
1053
1053
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
1054
1054
|
Checkbox,
|
|
1055
|
-
__spreadValues$
|
|
1055
|
+
__spreadValues$w({
|
|
1056
1056
|
checked: Boolean(input.value),
|
|
1057
1057
|
onChange: (e) => input.onChange(e.target.checked)
|
|
1058
1058
|
}, props),
|
|
@@ -1077,17 +1077,17 @@
|
|
|
1077
1077
|
}
|
|
1078
1078
|
));
|
|
1079
1079
|
|
|
1080
|
-
var __getOwnPropSymbols$
|
|
1081
|
-
var __hasOwnProp$
|
|
1082
|
-
var __propIsEnum$
|
|
1083
|
-
var __objRest$
|
|
1080
|
+
var __getOwnPropSymbols$w = Object.getOwnPropertySymbols;
|
|
1081
|
+
var __hasOwnProp$w = Object.prototype.hasOwnProperty;
|
|
1082
|
+
var __propIsEnum$w = Object.prototype.propertyIsEnumerable;
|
|
1083
|
+
var __objRest$j = (source, exclude) => {
|
|
1084
1084
|
var target = {};
|
|
1085
1085
|
for (var prop in source)
|
|
1086
|
-
if (__hasOwnProp$
|
|
1086
|
+
if (__hasOwnProp$w.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1087
1087
|
target[prop] = source[prop];
|
|
1088
|
-
if (source != null && __getOwnPropSymbols$
|
|
1089
|
-
for (var prop of __getOwnPropSymbols$
|
|
1090
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1088
|
+
if (source != null && __getOwnPropSymbols$w)
|
|
1089
|
+
for (var prop of __getOwnPropSymbols$w(source)) {
|
|
1090
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$w.call(source, prop))
|
|
1091
1091
|
target[prop] = source[prop];
|
|
1092
1092
|
}
|
|
1093
1093
|
return target;
|
|
@@ -1095,7 +1095,7 @@
|
|
|
1095
1095
|
const FieldsDateTimeRange = (_a) => {
|
|
1096
1096
|
var _b = _a, {
|
|
1097
1097
|
input
|
|
1098
|
-
} = _b, props = __objRest$
|
|
1098
|
+
} = _b, props = __objRest$j(_b, [
|
|
1099
1099
|
"input"
|
|
1100
1100
|
]);
|
|
1101
1101
|
var _a2, _b2;
|
|
@@ -1132,53 +1132,53 @@
|
|
|
1132
1132
|
const InputStyle = "ipd9bk";
|
|
1133
1133
|
const KitInputStyle = "kypn5o5";
|
|
1134
1134
|
|
|
1135
|
-
var __defProp$
|
|
1136
|
-
var __getOwnPropSymbols$
|
|
1137
|
-
var __hasOwnProp$
|
|
1138
|
-
var __propIsEnum$
|
|
1139
|
-
var __defNormalProp$
|
|
1140
|
-
var __spreadValues$
|
|
1135
|
+
var __defProp$v = Object.defineProperty;
|
|
1136
|
+
var __getOwnPropSymbols$v = Object.getOwnPropertySymbols;
|
|
1137
|
+
var __hasOwnProp$v = Object.prototype.hasOwnProperty;
|
|
1138
|
+
var __propIsEnum$v = Object.prototype.propertyIsEnumerable;
|
|
1139
|
+
var __defNormalProp$v = (obj, key, value) => key in obj ? __defProp$v(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1140
|
+
var __spreadValues$v = (a, b) => {
|
|
1141
1141
|
for (var prop in b || (b = {}))
|
|
1142
|
-
if (__hasOwnProp$
|
|
1143
|
-
__defNormalProp$
|
|
1144
|
-
if (__getOwnPropSymbols$
|
|
1145
|
-
for (var prop of __getOwnPropSymbols$
|
|
1146
|
-
if (__propIsEnum$
|
|
1147
|
-
__defNormalProp$
|
|
1142
|
+
if (__hasOwnProp$v.call(b, prop))
|
|
1143
|
+
__defNormalProp$v(a, prop, b[prop]);
|
|
1144
|
+
if (__getOwnPropSymbols$v)
|
|
1145
|
+
for (var prop of __getOwnPropSymbols$v(b)) {
|
|
1146
|
+
if (__propIsEnum$v.call(b, prop))
|
|
1147
|
+
__defNormalProp$v(a, prop, b[prop]);
|
|
1148
1148
|
}
|
|
1149
1149
|
return a;
|
|
1150
1150
|
};
|
|
1151
1151
|
const Loading = ({ fullView = true }) => {
|
|
1152
1152
|
const Wrapper = fullView ? FullView : React.Fragment;
|
|
1153
1153
|
const props = fullView ? { className: "loading-full-view" } : {};
|
|
1154
|
-
return /* @__PURE__ */ React.createElement(Wrapper, __spreadValues$
|
|
1154
|
+
return /* @__PURE__ */ React.createElement(Wrapper, __spreadValues$v({}, props), /* @__PURE__ */ React.createElement("div", { className: "loading" }, /* @__PURE__ */ React.createElement("div", { className: "loading__sugar" }), /* @__PURE__ */ React.createElement("div", { className: "loading__sugar" }), /* @__PURE__ */ React.createElement("div", { className: "loading__sugar" }), /* @__PURE__ */ React.createElement("div", { className: "loading__sugar" }), /* @__PURE__ */ React.createElement("div", { className: "loading__sugar" }), /* @__PURE__ */ React.createElement("div", { className: "loading__sugar" }), /* @__PURE__ */ React.createElement("div", { className: "loading__sugar" })));
|
|
1155
1155
|
};
|
|
1156
1156
|
|
|
1157
|
-
var __defProp$
|
|
1158
|
-
var __defProps$
|
|
1159
|
-
var __getOwnPropDescs$
|
|
1160
|
-
var __getOwnPropSymbols$
|
|
1161
|
-
var __hasOwnProp$
|
|
1162
|
-
var __propIsEnum$
|
|
1163
|
-
var __defNormalProp$
|
|
1157
|
+
var __defProp$u = Object.defineProperty;
|
|
1158
|
+
var __defProps$q = Object.defineProperties;
|
|
1159
|
+
var __getOwnPropDescs$q = Object.getOwnPropertyDescriptors;
|
|
1160
|
+
var __getOwnPropSymbols$u = Object.getOwnPropertySymbols;
|
|
1161
|
+
var __hasOwnProp$u = Object.prototype.hasOwnProperty;
|
|
1162
|
+
var __propIsEnum$u = Object.prototype.propertyIsEnumerable;
|
|
1163
|
+
var __defNormalProp$u = (obj, key, value) => key in obj ? __defProp$u(obj, key, {
|
|
1164
1164
|
enumerable: true,
|
|
1165
1165
|
configurable: true,
|
|
1166
1166
|
writable: true,
|
|
1167
1167
|
value
|
|
1168
1168
|
}) : obj[key] = value;
|
|
1169
|
-
var __spreadValues$
|
|
1170
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1171
|
-
if (__getOwnPropSymbols$
|
|
1172
|
-
if (__propIsEnum$
|
|
1169
|
+
var __spreadValues$u = (a, b) => {
|
|
1170
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$u.call(b, prop)) __defNormalProp$u(a, prop, b[prop]);
|
|
1171
|
+
if (__getOwnPropSymbols$u) for (var prop of __getOwnPropSymbols$u(b)) {
|
|
1172
|
+
if (__propIsEnum$u.call(b, prop)) __defNormalProp$u(a, prop, b[prop]);
|
|
1173
1173
|
}
|
|
1174
1174
|
return a;
|
|
1175
1175
|
};
|
|
1176
|
-
var __spreadProps$
|
|
1177
|
-
var __objRest$
|
|
1176
|
+
var __spreadProps$q = (a, b) => __defProps$q(a, __getOwnPropDescs$q(b));
|
|
1177
|
+
var __objRest$i = (source, exclude) => {
|
|
1178
1178
|
var target = {};
|
|
1179
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1180
|
-
if (source != null && __getOwnPropSymbols$
|
|
1181
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1179
|
+
for (var prop in source) if (__hasOwnProp$u.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1180
|
+
if (source != null && __getOwnPropSymbols$u) for (var prop of __getOwnPropSymbols$u(source)) {
|
|
1181
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$u.call(source, prop)) target[prop] = source[prop];
|
|
1182
1182
|
}
|
|
1183
1183
|
return target;
|
|
1184
1184
|
};
|
|
@@ -1206,7 +1206,7 @@
|
|
|
1206
1206
|
meta,
|
|
1207
1207
|
placeholder
|
|
1208
1208
|
} = _b,
|
|
1209
|
-
restProps = __objRest$
|
|
1209
|
+
restProps = __objRest$i(_b, ["input", "multiple", "className", "scrollBottomBuffer", "onScrollBottom", "onPopupScroll", "onSearch", "showSearch", "filterOption", "loading", "notFoundContent", "children", "error", "selectLimit", "dropdownClassName", "danger", "size", "meta", "placeholder"]);
|
|
1210
1210
|
var _a2;
|
|
1211
1211
|
const limitExceeded = multiple && selectLimit && selectLimit <= (((_a2 = input.value) == null ? void 0 : _a2.length) || 0);
|
|
1212
1212
|
const typo = {
|
|
@@ -1232,7 +1232,7 @@
|
|
|
1232
1232
|
inputDom && (placeholder || item) && inputDom.setAttribute("data-test", String(placeholder || item.textContent));
|
|
1233
1233
|
}
|
|
1234
1234
|
}, [selectRef, placeholder]);
|
|
1235
|
-
return /* @__PURE__ */React.createElement(antd.Select, __spreadValues$
|
|
1235
|
+
return /* @__PURE__ */React.createElement(antd.Select, __spreadValues$u(__spreadProps$q(__spreadValues$u({}, input), {
|
|
1236
1236
|
ref: selectRef,
|
|
1237
1237
|
size,
|
|
1238
1238
|
value: multiple ? input.value || [] : input.value || void 0,
|
|
@@ -1272,38 +1272,38 @@
|
|
|
1272
1272
|
loading,
|
|
1273
1273
|
placeholder
|
|
1274
1274
|
}), restProps), React.Children.map(children, child => {
|
|
1275
|
-
return reactIs.isElement(child) ? __spreadProps$
|
|
1276
|
-
props: __spreadProps$
|
|
1275
|
+
return reactIs.isElement(child) ? __spreadProps$q(__spreadValues$u({}, child), {
|
|
1276
|
+
props: __spreadProps$q(__spreadValues$u({}, child.props), {
|
|
1277
1277
|
"data-test": child.props.value
|
|
1278
1278
|
})
|
|
1279
1279
|
}) : child;
|
|
1280
1280
|
}));
|
|
1281
1281
|
};
|
|
1282
1282
|
|
|
1283
|
-
var __defProp$
|
|
1284
|
-
var __getOwnPropSymbols$
|
|
1285
|
-
var __hasOwnProp$
|
|
1286
|
-
var __propIsEnum$
|
|
1287
|
-
var __defNormalProp$
|
|
1288
|
-
var __spreadValues$
|
|
1283
|
+
var __defProp$t = Object.defineProperty;
|
|
1284
|
+
var __getOwnPropSymbols$t = Object.getOwnPropertySymbols;
|
|
1285
|
+
var __hasOwnProp$t = Object.prototype.hasOwnProperty;
|
|
1286
|
+
var __propIsEnum$t = Object.prototype.propertyIsEnumerable;
|
|
1287
|
+
var __defNormalProp$t = (obj, key, value) => key in obj ? __defProp$t(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1288
|
+
var __spreadValues$t = (a, b) => {
|
|
1289
1289
|
for (var prop in b || (b = {}))
|
|
1290
|
-
if (__hasOwnProp$
|
|
1291
|
-
__defNormalProp$
|
|
1292
|
-
if (__getOwnPropSymbols$
|
|
1293
|
-
for (var prop of __getOwnPropSymbols$
|
|
1294
|
-
if (__propIsEnum$
|
|
1295
|
-
__defNormalProp$
|
|
1290
|
+
if (__hasOwnProp$t.call(b, prop))
|
|
1291
|
+
__defNormalProp$t(a, prop, b[prop]);
|
|
1292
|
+
if (__getOwnPropSymbols$t)
|
|
1293
|
+
for (var prop of __getOwnPropSymbols$t(b)) {
|
|
1294
|
+
if (__propIsEnum$t.call(b, prop))
|
|
1295
|
+
__defNormalProp$t(a, prop, b[prop]);
|
|
1296
1296
|
}
|
|
1297
1297
|
return a;
|
|
1298
1298
|
};
|
|
1299
|
-
var __objRest$
|
|
1299
|
+
var __objRest$h = (source, exclude) => {
|
|
1300
1300
|
var target = {};
|
|
1301
1301
|
for (var prop in source)
|
|
1302
|
-
if (__hasOwnProp$
|
|
1302
|
+
if (__hasOwnProp$t.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1303
1303
|
target[prop] = source[prop];
|
|
1304
|
-
if (source != null && __getOwnPropSymbols$
|
|
1305
|
-
for (var prop of __getOwnPropSymbols$
|
|
1306
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1304
|
+
if (source != null && __getOwnPropSymbols$t)
|
|
1305
|
+
for (var prop of __getOwnPropSymbols$t(source)) {
|
|
1306
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$t.call(source, prop))
|
|
1307
1307
|
target[prop] = source[prop];
|
|
1308
1308
|
}
|
|
1309
1309
|
return target;
|
|
@@ -1313,12 +1313,12 @@
|
|
|
1313
1313
|
meta: __,
|
|
1314
1314
|
enumValues,
|
|
1315
1315
|
emptyLabel
|
|
1316
|
-
} = _b, restProps = __objRest$
|
|
1316
|
+
} = _b, restProps = __objRest$h(_b, [
|
|
1317
1317
|
"meta",
|
|
1318
1318
|
"enumValues",
|
|
1319
1319
|
"emptyLabel"
|
|
1320
1320
|
]);
|
|
1321
|
-
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(Select, __spreadValues$
|
|
1321
|
+
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(Select, __spreadValues$t({}, restProps), emptyLabel && /* @__PURE__ */ React.createElement(antd.Select.Option, { value: "" }, emptyLabel), enumValues.map((v) => {
|
|
1322
1322
|
const item = typeof v === "string" ? { value: v, text: v } : v;
|
|
1323
1323
|
return /* @__PURE__ */ React.createElement(
|
|
1324
1324
|
antd.Select.Option,
|
|
@@ -1332,31 +1332,31 @@
|
|
|
1332
1332
|
})));
|
|
1333
1333
|
};
|
|
1334
1334
|
|
|
1335
|
-
var __defProp$
|
|
1336
|
-
var __defProps$
|
|
1337
|
-
var __getOwnPropDescs$
|
|
1338
|
-
var __getOwnPropSymbols$
|
|
1339
|
-
var __hasOwnProp$
|
|
1340
|
-
var __propIsEnum$
|
|
1341
|
-
var __defNormalProp$
|
|
1335
|
+
var __defProp$s = Object.defineProperty;
|
|
1336
|
+
var __defProps$p = Object.defineProperties;
|
|
1337
|
+
var __getOwnPropDescs$p = Object.getOwnPropertyDescriptors;
|
|
1338
|
+
var __getOwnPropSymbols$s = Object.getOwnPropertySymbols;
|
|
1339
|
+
var __hasOwnProp$s = Object.prototype.hasOwnProperty;
|
|
1340
|
+
var __propIsEnum$s = Object.prototype.propertyIsEnumerable;
|
|
1341
|
+
var __defNormalProp$s = (obj, key, value) => key in obj ? __defProp$s(obj, key, {
|
|
1342
1342
|
enumerable: true,
|
|
1343
1343
|
configurable: true,
|
|
1344
1344
|
writable: true,
|
|
1345
1345
|
value
|
|
1346
1346
|
}) : obj[key] = value;
|
|
1347
|
-
var __spreadValues$
|
|
1348
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1349
|
-
if (__getOwnPropSymbols$
|
|
1350
|
-
if (__propIsEnum$
|
|
1347
|
+
var __spreadValues$s = (a, b) => {
|
|
1348
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$s.call(b, prop)) __defNormalProp$s(a, prop, b[prop]);
|
|
1349
|
+
if (__getOwnPropSymbols$s) for (var prop of __getOwnPropSymbols$s(b)) {
|
|
1350
|
+
if (__propIsEnum$s.call(b, prop)) __defNormalProp$s(a, prop, b[prop]);
|
|
1351
1351
|
}
|
|
1352
1352
|
return a;
|
|
1353
1353
|
};
|
|
1354
|
-
var __spreadProps$
|
|
1355
|
-
var __objRest$
|
|
1354
|
+
var __spreadProps$p = (a, b) => __defProps$p(a, __getOwnPropDescs$p(b));
|
|
1355
|
+
var __objRest$g = (source, exclude) => {
|
|
1356
1356
|
var target = {};
|
|
1357
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1358
|
-
if (source != null && __getOwnPropSymbols$
|
|
1359
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1357
|
+
for (var prop in source) if (__hasOwnProp$s.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1358
|
+
if (source != null && __getOwnPropSymbols$s) for (var prop of __getOwnPropSymbols$s(source)) {
|
|
1359
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$s.call(source, prop)) target[prop] = source[prop];
|
|
1360
1360
|
}
|
|
1361
1361
|
return target;
|
|
1362
1362
|
};
|
|
@@ -1392,13 +1392,13 @@
|
|
|
1392
1392
|
prefix,
|
|
1393
1393
|
controls = true
|
|
1394
1394
|
} = _b,
|
|
1395
|
-
props = __objRest$
|
|
1395
|
+
props = __objRest$g(_b, ["className", "error", "size", "suffix", "prefix", "controls"]);
|
|
1396
1396
|
const typo = {
|
|
1397
1397
|
large: Typo.Label.l2_regular,
|
|
1398
1398
|
middle: Typo.Label.l3_regular,
|
|
1399
1399
|
small: Typo.Label.l4_regular
|
|
1400
1400
|
}[size];
|
|
1401
|
-
return /* @__PURE__ */React.createElement(AntdInputNumberStyled, __spreadProps$
|
|
1401
|
+
return /* @__PURE__ */React.createElement(AntdInputNumberStyled, __spreadProps$p(__spreadValues$s({}, props), {
|
|
1402
1402
|
size,
|
|
1403
1403
|
controls,
|
|
1404
1404
|
"data-test": props.name,
|
|
@@ -1408,33 +1408,33 @@
|
|
|
1408
1408
|
}));
|
|
1409
1409
|
};
|
|
1410
1410
|
|
|
1411
|
-
var __defProp$
|
|
1412
|
-
var __defProps$
|
|
1413
|
-
var __getOwnPropDescs$
|
|
1414
|
-
var __getOwnPropSymbols$
|
|
1415
|
-
var __hasOwnProp$
|
|
1416
|
-
var __propIsEnum$
|
|
1417
|
-
var __defNormalProp$
|
|
1418
|
-
var __spreadValues$
|
|
1411
|
+
var __defProp$r = Object.defineProperty;
|
|
1412
|
+
var __defProps$o = Object.defineProperties;
|
|
1413
|
+
var __getOwnPropDescs$o = Object.getOwnPropertyDescriptors;
|
|
1414
|
+
var __getOwnPropSymbols$r = Object.getOwnPropertySymbols;
|
|
1415
|
+
var __hasOwnProp$r = Object.prototype.hasOwnProperty;
|
|
1416
|
+
var __propIsEnum$r = Object.prototype.propertyIsEnumerable;
|
|
1417
|
+
var __defNormalProp$r = (obj, key, value) => key in obj ? __defProp$r(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1418
|
+
var __spreadValues$r = (a, b) => {
|
|
1419
1419
|
for (var prop in b || (b = {}))
|
|
1420
|
-
if (__hasOwnProp$
|
|
1421
|
-
__defNormalProp$
|
|
1422
|
-
if (__getOwnPropSymbols$
|
|
1423
|
-
for (var prop of __getOwnPropSymbols$
|
|
1424
|
-
if (__propIsEnum$
|
|
1425
|
-
__defNormalProp$
|
|
1420
|
+
if (__hasOwnProp$r.call(b, prop))
|
|
1421
|
+
__defNormalProp$r(a, prop, b[prop]);
|
|
1422
|
+
if (__getOwnPropSymbols$r)
|
|
1423
|
+
for (var prop of __getOwnPropSymbols$r(b)) {
|
|
1424
|
+
if (__propIsEnum$r.call(b, prop))
|
|
1425
|
+
__defNormalProp$r(a, prop, b[prop]);
|
|
1426
1426
|
}
|
|
1427
1427
|
return a;
|
|
1428
1428
|
};
|
|
1429
|
-
var __spreadProps$
|
|
1430
|
-
var __objRest$
|
|
1429
|
+
var __spreadProps$o = (a, b) => __defProps$o(a, __getOwnPropDescs$o(b));
|
|
1430
|
+
var __objRest$f = (source, exclude) => {
|
|
1431
1431
|
var target = {};
|
|
1432
1432
|
for (var prop in source)
|
|
1433
|
-
if (__hasOwnProp$
|
|
1433
|
+
if (__hasOwnProp$r.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1434
1434
|
target[prop] = source[prop];
|
|
1435
|
-
if (source != null && __getOwnPropSymbols$
|
|
1436
|
-
for (var prop of __getOwnPropSymbols$
|
|
1437
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1435
|
+
if (source != null && __getOwnPropSymbols$r)
|
|
1436
|
+
for (var prop of __getOwnPropSymbols$r(source)) {
|
|
1437
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$r.call(source, prop))
|
|
1438
1438
|
target[prop] = source[prop];
|
|
1439
1439
|
}
|
|
1440
1440
|
return target;
|
|
@@ -1445,7 +1445,7 @@
|
|
|
1445
1445
|
meta,
|
|
1446
1446
|
onBlur,
|
|
1447
1447
|
autoComplete = "off"
|
|
1448
|
-
} = _b, props = __objRest$
|
|
1448
|
+
} = _b, props = __objRest$f(_b, [
|
|
1449
1449
|
"input",
|
|
1450
1450
|
"meta",
|
|
1451
1451
|
"onBlur",
|
|
@@ -1453,7 +1453,7 @@
|
|
|
1453
1453
|
]);
|
|
1454
1454
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
1455
1455
|
InputNumber,
|
|
1456
|
-
__spreadValues$
|
|
1456
|
+
__spreadValues$r(__spreadProps$o(__spreadValues$r({}, input), {
|
|
1457
1457
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1458
1458
|
autoComplete,
|
|
1459
1459
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
@@ -1461,33 +1461,33 @@
|
|
|
1461
1461
|
));
|
|
1462
1462
|
};
|
|
1463
1463
|
|
|
1464
|
-
var __defProp$
|
|
1465
|
-
var __defProps$
|
|
1466
|
-
var __getOwnPropDescs$
|
|
1467
|
-
var __getOwnPropSymbols$
|
|
1468
|
-
var __hasOwnProp$
|
|
1469
|
-
var __propIsEnum$
|
|
1470
|
-
var __defNormalProp$
|
|
1471
|
-
var __spreadValues$
|
|
1464
|
+
var __defProp$q = Object.defineProperty;
|
|
1465
|
+
var __defProps$n = Object.defineProperties;
|
|
1466
|
+
var __getOwnPropDescs$n = Object.getOwnPropertyDescriptors;
|
|
1467
|
+
var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
|
|
1468
|
+
var __hasOwnProp$q = Object.prototype.hasOwnProperty;
|
|
1469
|
+
var __propIsEnum$q = Object.prototype.propertyIsEnumerable;
|
|
1470
|
+
var __defNormalProp$q = (obj, key, value) => key in obj ? __defProp$q(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1471
|
+
var __spreadValues$q = (a, b) => {
|
|
1472
1472
|
for (var prop in b || (b = {}))
|
|
1473
|
-
if (__hasOwnProp$
|
|
1474
|
-
__defNormalProp$
|
|
1475
|
-
if (__getOwnPropSymbols$
|
|
1476
|
-
for (var prop of __getOwnPropSymbols$
|
|
1477
|
-
if (__propIsEnum$
|
|
1478
|
-
__defNormalProp$
|
|
1473
|
+
if (__hasOwnProp$q.call(b, prop))
|
|
1474
|
+
__defNormalProp$q(a, prop, b[prop]);
|
|
1475
|
+
if (__getOwnPropSymbols$q)
|
|
1476
|
+
for (var prop of __getOwnPropSymbols$q(b)) {
|
|
1477
|
+
if (__propIsEnum$q.call(b, prop))
|
|
1478
|
+
__defNormalProp$q(a, prop, b[prop]);
|
|
1479
1479
|
}
|
|
1480
1480
|
return a;
|
|
1481
1481
|
};
|
|
1482
|
-
var __spreadProps$
|
|
1483
|
-
var __objRest$
|
|
1482
|
+
var __spreadProps$n = (a, b) => __defProps$n(a, __getOwnPropDescs$n(b));
|
|
1483
|
+
var __objRest$e = (source, exclude) => {
|
|
1484
1484
|
var target = {};
|
|
1485
1485
|
for (var prop in source)
|
|
1486
|
-
if (__hasOwnProp$
|
|
1486
|
+
if (__hasOwnProp$q.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1487
1487
|
target[prop] = source[prop];
|
|
1488
|
-
if (source != null && __getOwnPropSymbols$
|
|
1489
|
-
for (var prop of __getOwnPropSymbols$
|
|
1490
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1488
|
+
if (source != null && __getOwnPropSymbols$q)
|
|
1489
|
+
for (var prop of __getOwnPropSymbols$q(source)) {
|
|
1490
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$q.call(source, prop))
|
|
1491
1491
|
target[prop] = source[prop];
|
|
1492
1492
|
}
|
|
1493
1493
|
return target;
|
|
@@ -1497,7 +1497,7 @@
|
|
|
1497
1497
|
className,
|
|
1498
1498
|
error,
|
|
1499
1499
|
size = "middle"
|
|
1500
|
-
} = _b, props = __objRest$
|
|
1500
|
+
} = _b, props = __objRest$e(_b, [
|
|
1501
1501
|
"className",
|
|
1502
1502
|
"error",
|
|
1503
1503
|
"size"
|
|
@@ -1509,7 +1509,7 @@
|
|
|
1509
1509
|
}[size];
|
|
1510
1510
|
return /* @__PURE__ */ React.createElement(
|
|
1511
1511
|
antd.Input,
|
|
1512
|
-
__spreadProps$
|
|
1512
|
+
__spreadProps$n(__spreadValues$q({}, props), {
|
|
1513
1513
|
size,
|
|
1514
1514
|
"data-test": props.name,
|
|
1515
1515
|
className: cs(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -1517,33 +1517,33 @@
|
|
|
1517
1517
|
);
|
|
1518
1518
|
};
|
|
1519
1519
|
|
|
1520
|
-
var __defProp$
|
|
1521
|
-
var __defProps$
|
|
1522
|
-
var __getOwnPropDescs$
|
|
1523
|
-
var __getOwnPropSymbols$
|
|
1524
|
-
var __hasOwnProp$
|
|
1525
|
-
var __propIsEnum$
|
|
1526
|
-
var __defNormalProp$
|
|
1527
|
-
var __spreadValues$
|
|
1520
|
+
var __defProp$p = Object.defineProperty;
|
|
1521
|
+
var __defProps$m = Object.defineProperties;
|
|
1522
|
+
var __getOwnPropDescs$m = Object.getOwnPropertyDescriptors;
|
|
1523
|
+
var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
|
|
1524
|
+
var __hasOwnProp$p = Object.prototype.hasOwnProperty;
|
|
1525
|
+
var __propIsEnum$p = Object.prototype.propertyIsEnumerable;
|
|
1526
|
+
var __defNormalProp$p = (obj, key, value) => key in obj ? __defProp$p(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1527
|
+
var __spreadValues$p = (a, b) => {
|
|
1528
1528
|
for (var prop in b || (b = {}))
|
|
1529
|
-
if (__hasOwnProp$
|
|
1530
|
-
__defNormalProp$
|
|
1531
|
-
if (__getOwnPropSymbols$
|
|
1532
|
-
for (var prop of __getOwnPropSymbols$
|
|
1533
|
-
if (__propIsEnum$
|
|
1534
|
-
__defNormalProp$
|
|
1529
|
+
if (__hasOwnProp$p.call(b, prop))
|
|
1530
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
1531
|
+
if (__getOwnPropSymbols$p)
|
|
1532
|
+
for (var prop of __getOwnPropSymbols$p(b)) {
|
|
1533
|
+
if (__propIsEnum$p.call(b, prop))
|
|
1534
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
1535
1535
|
}
|
|
1536
1536
|
return a;
|
|
1537
1537
|
};
|
|
1538
|
-
var __spreadProps$
|
|
1539
|
-
var __objRest$
|
|
1538
|
+
var __spreadProps$m = (a, b) => __defProps$m(a, __getOwnPropDescs$m(b));
|
|
1539
|
+
var __objRest$d = (source, exclude) => {
|
|
1540
1540
|
var target = {};
|
|
1541
1541
|
for (var prop in source)
|
|
1542
|
-
if (__hasOwnProp$
|
|
1542
|
+
if (__hasOwnProp$p.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1543
1543
|
target[prop] = source[prop];
|
|
1544
|
-
if (source != null && __getOwnPropSymbols$
|
|
1545
|
-
for (var prop of __getOwnPropSymbols$
|
|
1546
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1544
|
+
if (source != null && __getOwnPropSymbols$p)
|
|
1545
|
+
for (var prop of __getOwnPropSymbols$p(source)) {
|
|
1546
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$p.call(source, prop))
|
|
1547
1547
|
target[prop] = source[prop];
|
|
1548
1548
|
}
|
|
1549
1549
|
return target;
|
|
@@ -1555,7 +1555,7 @@
|
|
|
1555
1555
|
onBlur,
|
|
1556
1556
|
autoComplete = "off",
|
|
1557
1557
|
supportNegativeValue = false
|
|
1558
|
-
} = _b, props = __objRest$
|
|
1558
|
+
} = _b, props = __objRest$d(_b, [
|
|
1559
1559
|
"input",
|
|
1560
1560
|
"meta",
|
|
1561
1561
|
"onBlur",
|
|
@@ -1564,7 +1564,7 @@
|
|
|
1564
1564
|
]);
|
|
1565
1565
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
1566
1566
|
Input,
|
|
1567
|
-
__spreadValues$
|
|
1567
|
+
__spreadValues$p(__spreadProps$m(__spreadValues$p({}, input), {
|
|
1568
1568
|
onChange: (e) => {
|
|
1569
1569
|
const value = e.currentTarget.value;
|
|
1570
1570
|
if (supportNegativeValue) {
|
|
@@ -1599,31 +1599,31 @@
|
|
|
1599
1599
|
}
|
|
1600
1600
|
};
|
|
1601
1601
|
|
|
1602
|
-
var __defProp$
|
|
1603
|
-
var __defProps$
|
|
1604
|
-
var __getOwnPropDescs$
|
|
1605
|
-
var __getOwnPropSymbols$
|
|
1606
|
-
var __hasOwnProp$
|
|
1607
|
-
var __propIsEnum$
|
|
1608
|
-
var __defNormalProp$
|
|
1602
|
+
var __defProp$o = Object.defineProperty;
|
|
1603
|
+
var __defProps$l = Object.defineProperties;
|
|
1604
|
+
var __getOwnPropDescs$l = Object.getOwnPropertyDescriptors;
|
|
1605
|
+
var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
|
|
1606
|
+
var __hasOwnProp$o = Object.prototype.hasOwnProperty;
|
|
1607
|
+
var __propIsEnum$o = Object.prototype.propertyIsEnumerable;
|
|
1608
|
+
var __defNormalProp$o = (obj, key, value) => key in obj ? __defProp$o(obj, key, {
|
|
1609
1609
|
enumerable: true,
|
|
1610
1610
|
configurable: true,
|
|
1611
1611
|
writable: true,
|
|
1612
1612
|
value
|
|
1613
1613
|
}) : obj[key] = value;
|
|
1614
|
-
var __spreadValues$
|
|
1615
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1616
|
-
if (__getOwnPropSymbols$
|
|
1617
|
-
if (__propIsEnum$
|
|
1614
|
+
var __spreadValues$o = (a, b) => {
|
|
1615
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$o.call(b, prop)) __defNormalProp$o(a, prop, b[prop]);
|
|
1616
|
+
if (__getOwnPropSymbols$o) for (var prop of __getOwnPropSymbols$o(b)) {
|
|
1617
|
+
if (__propIsEnum$o.call(b, prop)) __defNormalProp$o(a, prop, b[prop]);
|
|
1618
1618
|
}
|
|
1619
1619
|
return a;
|
|
1620
1620
|
};
|
|
1621
|
-
var __spreadProps$
|
|
1622
|
-
var __objRest$
|
|
1621
|
+
var __spreadProps$l = (a, b) => __defProps$l(a, __getOwnPropDescs$l(b));
|
|
1622
|
+
var __objRest$c = (source, exclude) => {
|
|
1623
1623
|
var target = {};
|
|
1624
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1625
|
-
if (source != null && __getOwnPropSymbols$
|
|
1626
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1624
|
+
for (var prop in source) if (__hasOwnProp$o.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1625
|
+
if (source != null && __getOwnPropSymbols$o) for (var prop of __getOwnPropSymbols$o(source)) {
|
|
1626
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$o.call(source, prop)) target[prop] = source[prop];
|
|
1627
1627
|
}
|
|
1628
1628
|
return target;
|
|
1629
1629
|
};
|
|
@@ -1661,13 +1661,13 @@
|
|
|
1661
1661
|
min,
|
|
1662
1662
|
controls = false
|
|
1663
1663
|
} = _b,
|
|
1664
|
-
props = __objRest$
|
|
1664
|
+
props = __objRest$c(_b, ["className", "error", "size", "suffix", "prefix", "max", "min", "controls"]);
|
|
1665
1665
|
const typo = {
|
|
1666
1666
|
large: Typo.Label.l2_regular,
|
|
1667
1667
|
middle: Typo.Label.l3_regular,
|
|
1668
1668
|
small: Typo.Label.l4_regular
|
|
1669
1669
|
}[size];
|
|
1670
|
-
return /* @__PURE__ */React.createElement(AntdIntStyled, __spreadProps$
|
|
1670
|
+
return /* @__PURE__ */React.createElement(AntdIntStyled, __spreadProps$l(__spreadValues$o({}, props), {
|
|
1671
1671
|
size,
|
|
1672
1672
|
formatter: formatterInteger,
|
|
1673
1673
|
parser: formatterInteger,
|
|
@@ -1681,33 +1681,33 @@
|
|
|
1681
1681
|
}));
|
|
1682
1682
|
};
|
|
1683
1683
|
|
|
1684
|
-
var __defProp$
|
|
1685
|
-
var __defProps$
|
|
1686
|
-
var __getOwnPropDescs$
|
|
1687
|
-
var __getOwnPropSymbols$
|
|
1688
|
-
var __hasOwnProp$
|
|
1689
|
-
var __propIsEnum$
|
|
1690
|
-
var __defNormalProp$
|
|
1691
|
-
var __spreadValues$
|
|
1684
|
+
var __defProp$n = Object.defineProperty;
|
|
1685
|
+
var __defProps$k = Object.defineProperties;
|
|
1686
|
+
var __getOwnPropDescs$k = Object.getOwnPropertyDescriptors;
|
|
1687
|
+
var __getOwnPropSymbols$n = Object.getOwnPropertySymbols;
|
|
1688
|
+
var __hasOwnProp$n = Object.prototype.hasOwnProperty;
|
|
1689
|
+
var __propIsEnum$n = Object.prototype.propertyIsEnumerable;
|
|
1690
|
+
var __defNormalProp$n = (obj, key, value) => key in obj ? __defProp$n(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1691
|
+
var __spreadValues$n = (a, b) => {
|
|
1692
1692
|
for (var prop in b || (b = {}))
|
|
1693
|
-
if (__hasOwnProp$
|
|
1694
|
-
__defNormalProp$
|
|
1695
|
-
if (__getOwnPropSymbols$
|
|
1696
|
-
for (var prop of __getOwnPropSymbols$
|
|
1697
|
-
if (__propIsEnum$
|
|
1698
|
-
__defNormalProp$
|
|
1693
|
+
if (__hasOwnProp$n.call(b, prop))
|
|
1694
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
1695
|
+
if (__getOwnPropSymbols$n)
|
|
1696
|
+
for (var prop of __getOwnPropSymbols$n(b)) {
|
|
1697
|
+
if (__propIsEnum$n.call(b, prop))
|
|
1698
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
1699
1699
|
}
|
|
1700
1700
|
return a;
|
|
1701
1701
|
};
|
|
1702
|
-
var __spreadProps$
|
|
1703
|
-
var __objRest$
|
|
1702
|
+
var __spreadProps$k = (a, b) => __defProps$k(a, __getOwnPropDescs$k(b));
|
|
1703
|
+
var __objRest$b = (source, exclude) => {
|
|
1704
1704
|
var target = {};
|
|
1705
1705
|
for (var prop in source)
|
|
1706
|
-
if (__hasOwnProp$
|
|
1706
|
+
if (__hasOwnProp$n.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1707
1707
|
target[prop] = source[prop];
|
|
1708
|
-
if (source != null && __getOwnPropSymbols$
|
|
1709
|
-
for (var prop of __getOwnPropSymbols$
|
|
1710
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1708
|
+
if (source != null && __getOwnPropSymbols$n)
|
|
1709
|
+
for (var prop of __getOwnPropSymbols$n(source)) {
|
|
1710
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$n.call(source, prop))
|
|
1711
1711
|
target[prop] = source[prop];
|
|
1712
1712
|
}
|
|
1713
1713
|
return target;
|
|
@@ -1717,14 +1717,14 @@
|
|
|
1717
1717
|
meta,
|
|
1718
1718
|
input,
|
|
1719
1719
|
onBlur
|
|
1720
|
-
} = _b, props = __objRest$
|
|
1720
|
+
} = _b, props = __objRest$b(_b, [
|
|
1721
1721
|
"meta",
|
|
1722
1722
|
"input",
|
|
1723
1723
|
"onBlur"
|
|
1724
1724
|
]);
|
|
1725
1725
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
1726
1726
|
InputInteger,
|
|
1727
|
-
__spreadProps$
|
|
1727
|
+
__spreadProps$k(__spreadValues$n(__spreadValues$n({}, props), input), {
|
|
1728
1728
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1729
1729
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
1730
1730
|
})
|
|
@@ -1888,33 +1888,33 @@
|
|
|
1888
1888
|
}, children), showOverflow && /* @__PURE__ */React.createElement("span", null, overflow));
|
|
1889
1889
|
};
|
|
1890
1890
|
|
|
1891
|
-
var __defProp$
|
|
1892
|
-
var __defProps$
|
|
1893
|
-
var __getOwnPropDescs$
|
|
1894
|
-
var __getOwnPropSymbols$
|
|
1895
|
-
var __hasOwnProp$
|
|
1896
|
-
var __propIsEnum$
|
|
1897
|
-
var __defNormalProp$
|
|
1898
|
-
var __spreadValues$
|
|
1891
|
+
var __defProp$m = Object.defineProperty;
|
|
1892
|
+
var __defProps$j = Object.defineProperties;
|
|
1893
|
+
var __getOwnPropDescs$j = Object.getOwnPropertyDescriptors;
|
|
1894
|
+
var __getOwnPropSymbols$m = Object.getOwnPropertySymbols;
|
|
1895
|
+
var __hasOwnProp$m = Object.prototype.hasOwnProperty;
|
|
1896
|
+
var __propIsEnum$m = Object.prototype.propertyIsEnumerable;
|
|
1897
|
+
var __defNormalProp$m = (obj, key, value) => key in obj ? __defProp$m(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1898
|
+
var __spreadValues$m = (a, b) => {
|
|
1899
1899
|
for (var prop in b || (b = {}))
|
|
1900
|
-
if (__hasOwnProp$
|
|
1901
|
-
__defNormalProp$
|
|
1902
|
-
if (__getOwnPropSymbols$
|
|
1903
|
-
for (var prop of __getOwnPropSymbols$
|
|
1904
|
-
if (__propIsEnum$
|
|
1905
|
-
__defNormalProp$
|
|
1900
|
+
if (__hasOwnProp$m.call(b, prop))
|
|
1901
|
+
__defNormalProp$m(a, prop, b[prop]);
|
|
1902
|
+
if (__getOwnPropSymbols$m)
|
|
1903
|
+
for (var prop of __getOwnPropSymbols$m(b)) {
|
|
1904
|
+
if (__propIsEnum$m.call(b, prop))
|
|
1905
|
+
__defNormalProp$m(a, prop, b[prop]);
|
|
1906
1906
|
}
|
|
1907
1907
|
return a;
|
|
1908
1908
|
};
|
|
1909
|
-
var __spreadProps$
|
|
1910
|
-
var __objRest$
|
|
1909
|
+
var __spreadProps$j = (a, b) => __defProps$j(a, __getOwnPropDescs$j(b));
|
|
1910
|
+
var __objRest$a = (source, exclude) => {
|
|
1911
1911
|
var target = {};
|
|
1912
1912
|
for (var prop in source)
|
|
1913
|
-
if (__hasOwnProp$
|
|
1913
|
+
if (__hasOwnProp$m.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1914
1914
|
target[prop] = source[prop];
|
|
1915
|
-
if (source != null && __getOwnPropSymbols$
|
|
1916
|
-
for (var prop of __getOwnPropSymbols$
|
|
1917
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1915
|
+
if (source != null && __getOwnPropSymbols$m)
|
|
1916
|
+
for (var prop of __getOwnPropSymbols$m(source)) {
|
|
1917
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$m.call(source, prop))
|
|
1918
1918
|
target[prop] = source[prop];
|
|
1919
1919
|
}
|
|
1920
1920
|
return target;
|
|
@@ -1933,7 +1933,7 @@
|
|
|
1933
1933
|
onClick,
|
|
1934
1934
|
maxLength,
|
|
1935
1935
|
focusIndicator
|
|
1936
|
-
} = _b, props = __objRest$
|
|
1936
|
+
} = _b, props = __objRest$a(_b, [
|
|
1937
1937
|
"input",
|
|
1938
1938
|
"meta",
|
|
1939
1939
|
"autoComplete",
|
|
@@ -1965,7 +1965,7 @@
|
|
|
1965
1965
|
}
|
|
1966
1966
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
1967
1967
|
Input,
|
|
1968
|
-
__spreadProps$
|
|
1968
|
+
__spreadProps$j(__spreadValues$m(__spreadProps$j(__spreadValues$m({
|
|
1969
1969
|
className: cs(
|
|
1970
1970
|
className,
|
|
1971
1971
|
KitInputStyle,
|
|
@@ -1990,33 +1990,33 @@
|
|
|
1990
1990
|
));
|
|
1991
1991
|
};
|
|
1992
1992
|
|
|
1993
|
-
var __defProp$
|
|
1994
|
-
var __defProps$
|
|
1995
|
-
var __getOwnPropDescs$
|
|
1996
|
-
var __getOwnPropSymbols$
|
|
1997
|
-
var __hasOwnProp$
|
|
1998
|
-
var __propIsEnum$
|
|
1999
|
-
var __defNormalProp$
|
|
2000
|
-
var __spreadValues$
|
|
1993
|
+
var __defProp$l = Object.defineProperty;
|
|
1994
|
+
var __defProps$i = Object.defineProperties;
|
|
1995
|
+
var __getOwnPropDescs$i = Object.getOwnPropertyDescriptors;
|
|
1996
|
+
var __getOwnPropSymbols$l = Object.getOwnPropertySymbols;
|
|
1997
|
+
var __hasOwnProp$l = Object.prototype.hasOwnProperty;
|
|
1998
|
+
var __propIsEnum$l = Object.prototype.propertyIsEnumerable;
|
|
1999
|
+
var __defNormalProp$l = (obj, key, value) => key in obj ? __defProp$l(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2000
|
+
var __spreadValues$l = (a, b) => {
|
|
2001
2001
|
for (var prop in b || (b = {}))
|
|
2002
|
-
if (__hasOwnProp$
|
|
2003
|
-
__defNormalProp$
|
|
2004
|
-
if (__getOwnPropSymbols$
|
|
2005
|
-
for (var prop of __getOwnPropSymbols$
|
|
2006
|
-
if (__propIsEnum$
|
|
2007
|
-
__defNormalProp$
|
|
2002
|
+
if (__hasOwnProp$l.call(b, prop))
|
|
2003
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
2004
|
+
if (__getOwnPropSymbols$l)
|
|
2005
|
+
for (var prop of __getOwnPropSymbols$l(b)) {
|
|
2006
|
+
if (__propIsEnum$l.call(b, prop))
|
|
2007
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
2008
2008
|
}
|
|
2009
2009
|
return a;
|
|
2010
2010
|
};
|
|
2011
|
-
var __spreadProps$
|
|
2012
|
-
var __objRest$
|
|
2011
|
+
var __spreadProps$i = (a, b) => __defProps$i(a, __getOwnPropDescs$i(b));
|
|
2012
|
+
var __objRest$9 = (source, exclude) => {
|
|
2013
2013
|
var target = {};
|
|
2014
2014
|
for (var prop in source)
|
|
2015
|
-
if (__hasOwnProp$
|
|
2015
|
+
if (__hasOwnProp$l.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2016
2016
|
target[prop] = source[prop];
|
|
2017
|
-
if (source != null && __getOwnPropSymbols$
|
|
2018
|
-
for (var prop of __getOwnPropSymbols$
|
|
2019
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2017
|
+
if (source != null && __getOwnPropSymbols$l)
|
|
2018
|
+
for (var prop of __getOwnPropSymbols$l(source)) {
|
|
2019
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$l.call(source, prop))
|
|
2020
2020
|
target[prop] = source[prop];
|
|
2021
2021
|
}
|
|
2022
2022
|
return target;
|
|
@@ -2026,7 +2026,7 @@
|
|
|
2026
2026
|
className,
|
|
2027
2027
|
error,
|
|
2028
2028
|
size = "middle"
|
|
2029
|
-
} = _b, props = __objRest$
|
|
2029
|
+
} = _b, props = __objRest$9(_b, [
|
|
2030
2030
|
"className",
|
|
2031
2031
|
"error",
|
|
2032
2032
|
"size"
|
|
@@ -2038,7 +2038,7 @@
|
|
|
2038
2038
|
}[size];
|
|
2039
2039
|
return /* @__PURE__ */ React.createElement(
|
|
2040
2040
|
antd.Input.TextArea,
|
|
2041
|
-
__spreadProps$
|
|
2041
|
+
__spreadProps$i(__spreadValues$l({}, props), {
|
|
2042
2042
|
className: cs(
|
|
2043
2043
|
className,
|
|
2044
2044
|
InputStyle,
|
|
@@ -2052,33 +2052,33 @@
|
|
|
2052
2052
|
);
|
|
2053
2053
|
};
|
|
2054
2054
|
|
|
2055
|
-
var __defProp$
|
|
2056
|
-
var __defProps$
|
|
2057
|
-
var __getOwnPropDescs$
|
|
2058
|
-
var __getOwnPropSymbols$
|
|
2059
|
-
var __hasOwnProp$
|
|
2060
|
-
var __propIsEnum$
|
|
2061
|
-
var __defNormalProp$
|
|
2062
|
-
var __spreadValues$
|
|
2055
|
+
var __defProp$k = Object.defineProperty;
|
|
2056
|
+
var __defProps$h = Object.defineProperties;
|
|
2057
|
+
var __getOwnPropDescs$h = Object.getOwnPropertyDescriptors;
|
|
2058
|
+
var __getOwnPropSymbols$k = Object.getOwnPropertySymbols;
|
|
2059
|
+
var __hasOwnProp$k = Object.prototype.hasOwnProperty;
|
|
2060
|
+
var __propIsEnum$k = Object.prototype.propertyIsEnumerable;
|
|
2061
|
+
var __defNormalProp$k = (obj, key, value) => key in obj ? __defProp$k(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2062
|
+
var __spreadValues$k = (a, b) => {
|
|
2063
2063
|
for (var prop in b || (b = {}))
|
|
2064
|
-
if (__hasOwnProp$
|
|
2065
|
-
__defNormalProp$
|
|
2066
|
-
if (__getOwnPropSymbols$
|
|
2067
|
-
for (var prop of __getOwnPropSymbols$
|
|
2068
|
-
if (__propIsEnum$
|
|
2069
|
-
__defNormalProp$
|
|
2064
|
+
if (__hasOwnProp$k.call(b, prop))
|
|
2065
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
2066
|
+
if (__getOwnPropSymbols$k)
|
|
2067
|
+
for (var prop of __getOwnPropSymbols$k(b)) {
|
|
2068
|
+
if (__propIsEnum$k.call(b, prop))
|
|
2069
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
2070
2070
|
}
|
|
2071
2071
|
return a;
|
|
2072
2072
|
};
|
|
2073
|
-
var __spreadProps$
|
|
2074
|
-
var __objRest$
|
|
2073
|
+
var __spreadProps$h = (a, b) => __defProps$h(a, __getOwnPropDescs$h(b));
|
|
2074
|
+
var __objRest$8 = (source, exclude) => {
|
|
2075
2075
|
var target = {};
|
|
2076
2076
|
for (var prop in source)
|
|
2077
|
-
if (__hasOwnProp$
|
|
2077
|
+
if (__hasOwnProp$k.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2078
2078
|
target[prop] = source[prop];
|
|
2079
|
-
if (source != null && __getOwnPropSymbols$
|
|
2080
|
-
for (var prop of __getOwnPropSymbols$
|
|
2081
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2079
|
+
if (source != null && __getOwnPropSymbols$k)
|
|
2080
|
+
for (var prop of __getOwnPropSymbols$k(source)) {
|
|
2081
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$k.call(source, prop))
|
|
2082
2082
|
target[prop] = source[prop];
|
|
2083
2083
|
}
|
|
2084
2084
|
return target;
|
|
@@ -2088,14 +2088,14 @@
|
|
|
2088
2088
|
input,
|
|
2089
2089
|
meta,
|
|
2090
2090
|
onFocusChangeHeight
|
|
2091
|
-
} = _b, props = __objRest$
|
|
2091
|
+
} = _b, props = __objRest$8(_b, [
|
|
2092
2092
|
"input",
|
|
2093
2093
|
"meta",
|
|
2094
2094
|
"onFocusChangeHeight"
|
|
2095
2095
|
]);
|
|
2096
2096
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
2097
2097
|
TextArea,
|
|
2098
|
-
__spreadProps$
|
|
2098
|
+
__spreadProps$h(__spreadValues$k(__spreadValues$k({}, input), props), {
|
|
2099
2099
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError),
|
|
2100
2100
|
onFocus: (e) => {
|
|
2101
2101
|
input.onFocus(e);
|
|
@@ -2109,33 +2109,33 @@
|
|
|
2109
2109
|
));
|
|
2110
2110
|
};
|
|
2111
2111
|
|
|
2112
|
-
var __defProp$
|
|
2113
|
-
var __defProps$
|
|
2114
|
-
var __getOwnPropDescs$
|
|
2115
|
-
var __getOwnPropSymbols$
|
|
2116
|
-
var __hasOwnProp$
|
|
2117
|
-
var __propIsEnum$
|
|
2118
|
-
var __defNormalProp$
|
|
2119
|
-
var __spreadValues$
|
|
2112
|
+
var __defProp$j = Object.defineProperty;
|
|
2113
|
+
var __defProps$g = Object.defineProperties;
|
|
2114
|
+
var __getOwnPropDescs$g = Object.getOwnPropertyDescriptors;
|
|
2115
|
+
var __getOwnPropSymbols$j = Object.getOwnPropertySymbols;
|
|
2116
|
+
var __hasOwnProp$j = Object.prototype.hasOwnProperty;
|
|
2117
|
+
var __propIsEnum$j = Object.prototype.propertyIsEnumerable;
|
|
2118
|
+
var __defNormalProp$j = (obj, key, value) => key in obj ? __defProp$j(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2119
|
+
var __spreadValues$j = (a, b) => {
|
|
2120
2120
|
for (var prop in b || (b = {}))
|
|
2121
|
-
if (__hasOwnProp$
|
|
2122
|
-
__defNormalProp$
|
|
2123
|
-
if (__getOwnPropSymbols$
|
|
2124
|
-
for (var prop of __getOwnPropSymbols$
|
|
2125
|
-
if (__propIsEnum$
|
|
2126
|
-
__defNormalProp$
|
|
2121
|
+
if (__hasOwnProp$j.call(b, prop))
|
|
2122
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
2123
|
+
if (__getOwnPropSymbols$j)
|
|
2124
|
+
for (var prop of __getOwnPropSymbols$j(b)) {
|
|
2125
|
+
if (__propIsEnum$j.call(b, prop))
|
|
2126
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
2127
2127
|
}
|
|
2128
2128
|
return a;
|
|
2129
2129
|
};
|
|
2130
|
-
var __spreadProps$
|
|
2131
|
-
var __objRest$
|
|
2130
|
+
var __spreadProps$g = (a, b) => __defProps$g(a, __getOwnPropDescs$g(b));
|
|
2131
|
+
var __objRest$7 = (source, exclude) => {
|
|
2132
2132
|
var target = {};
|
|
2133
2133
|
for (var prop in source)
|
|
2134
|
-
if (__hasOwnProp$
|
|
2134
|
+
if (__hasOwnProp$j.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2135
2135
|
target[prop] = source[prop];
|
|
2136
|
-
if (source != null && __getOwnPropSymbols$
|
|
2137
|
-
for (var prop of __getOwnPropSymbols$
|
|
2138
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2136
|
+
if (source != null && __getOwnPropSymbols$j)
|
|
2137
|
+
for (var prop of __getOwnPropSymbols$j(source)) {
|
|
2138
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$j.call(source, prop))
|
|
2139
2139
|
target[prop] = source[prop];
|
|
2140
2140
|
}
|
|
2141
2141
|
return target;
|
|
@@ -2145,7 +2145,7 @@
|
|
|
2145
2145
|
className,
|
|
2146
2146
|
error,
|
|
2147
2147
|
size = "middle"
|
|
2148
|
-
} = _b, props = __objRest$
|
|
2148
|
+
} = _b, props = __objRest$7(_b, [
|
|
2149
2149
|
"className",
|
|
2150
2150
|
"error",
|
|
2151
2151
|
"size"
|
|
@@ -2157,7 +2157,7 @@
|
|
|
2157
2157
|
}[size];
|
|
2158
2158
|
return /* @__PURE__ */ React.createElement(
|
|
2159
2159
|
antd.TimePicker,
|
|
2160
|
-
__spreadProps$
|
|
2160
|
+
__spreadProps$g(__spreadValues$j({}, props), {
|
|
2161
2161
|
size,
|
|
2162
2162
|
"data-test": props.name,
|
|
2163
2163
|
className: cs(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -2165,33 +2165,33 @@
|
|
|
2165
2165
|
);
|
|
2166
2166
|
};
|
|
2167
2167
|
|
|
2168
|
-
var __defProp$
|
|
2169
|
-
var __defProps$
|
|
2170
|
-
var __getOwnPropDescs$
|
|
2171
|
-
var __getOwnPropSymbols$
|
|
2172
|
-
var __hasOwnProp$
|
|
2173
|
-
var __propIsEnum$
|
|
2174
|
-
var __defNormalProp$
|
|
2175
|
-
var __spreadValues$
|
|
2168
|
+
var __defProp$i = Object.defineProperty;
|
|
2169
|
+
var __defProps$f = Object.defineProperties;
|
|
2170
|
+
var __getOwnPropDescs$f = Object.getOwnPropertyDescriptors;
|
|
2171
|
+
var __getOwnPropSymbols$i = Object.getOwnPropertySymbols;
|
|
2172
|
+
var __hasOwnProp$i = Object.prototype.hasOwnProperty;
|
|
2173
|
+
var __propIsEnum$i = Object.prototype.propertyIsEnumerable;
|
|
2174
|
+
var __defNormalProp$i = (obj, key, value) => key in obj ? __defProp$i(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2175
|
+
var __spreadValues$i = (a, b) => {
|
|
2176
2176
|
for (var prop in b || (b = {}))
|
|
2177
|
-
if (__hasOwnProp$
|
|
2178
|
-
__defNormalProp$
|
|
2179
|
-
if (__getOwnPropSymbols$
|
|
2180
|
-
for (var prop of __getOwnPropSymbols$
|
|
2181
|
-
if (__propIsEnum$
|
|
2182
|
-
__defNormalProp$
|
|
2177
|
+
if (__hasOwnProp$i.call(b, prop))
|
|
2178
|
+
__defNormalProp$i(a, prop, b[prop]);
|
|
2179
|
+
if (__getOwnPropSymbols$i)
|
|
2180
|
+
for (var prop of __getOwnPropSymbols$i(b)) {
|
|
2181
|
+
if (__propIsEnum$i.call(b, prop))
|
|
2182
|
+
__defNormalProp$i(a, prop, b[prop]);
|
|
2183
2183
|
}
|
|
2184
2184
|
return a;
|
|
2185
2185
|
};
|
|
2186
|
-
var __spreadProps$
|
|
2187
|
-
var __objRest$
|
|
2186
|
+
var __spreadProps$f = (a, b) => __defProps$f(a, __getOwnPropDescs$f(b));
|
|
2187
|
+
var __objRest$6 = (source, exclude) => {
|
|
2188
2188
|
var target = {};
|
|
2189
2189
|
for (var prop in source)
|
|
2190
|
-
if (__hasOwnProp$
|
|
2190
|
+
if (__hasOwnProp$i.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2191
2191
|
target[prop] = source[prop];
|
|
2192
|
-
if (source != null && __getOwnPropSymbols$
|
|
2193
|
-
for (var prop of __getOwnPropSymbols$
|
|
2194
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2192
|
+
if (source != null && __getOwnPropSymbols$i)
|
|
2193
|
+
for (var prop of __getOwnPropSymbols$i(source)) {
|
|
2194
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$i.call(source, prop))
|
|
2195
2195
|
target[prop] = source[prop];
|
|
2196
2196
|
}
|
|
2197
2197
|
return target;
|
|
@@ -2200,13 +2200,13 @@
|
|
|
2200
2200
|
var _b = _a, {
|
|
2201
2201
|
input,
|
|
2202
2202
|
meta
|
|
2203
|
-
} = _b, props = __objRest$
|
|
2203
|
+
} = _b, props = __objRest$6(_b, [
|
|
2204
2204
|
"input",
|
|
2205
2205
|
"meta"
|
|
2206
2206
|
]);
|
|
2207
2207
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
2208
2208
|
TimePicker,
|
|
2209
|
-
__spreadValues$
|
|
2209
|
+
__spreadValues$i(__spreadProps$f(__spreadValues$i({}, input), {
|
|
2210
2210
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
2211
2211
|
}), props)
|
|
2212
2212
|
));
|
|
@@ -2245,25 +2245,162 @@
|
|
|
2245
2245
|
propsAsIs: true
|
|
2246
2246
|
});
|
|
2247
2247
|
|
|
2248
|
-
var __defProp$
|
|
2249
|
-
var __defProps$
|
|
2250
|
-
var __getOwnPropDescs$
|
|
2251
|
-
var __getOwnPropSymbols$
|
|
2252
|
-
var __hasOwnProp$
|
|
2253
|
-
var __propIsEnum$
|
|
2254
|
-
var __defNormalProp$
|
|
2255
|
-
var __spreadValues$
|
|
2248
|
+
var __defProp$h = Object.defineProperty;
|
|
2249
|
+
var __defProps$e = Object.defineProperties;
|
|
2250
|
+
var __getOwnPropDescs$e = Object.getOwnPropertyDescriptors;
|
|
2251
|
+
var __getOwnPropSymbols$h = Object.getOwnPropertySymbols;
|
|
2252
|
+
var __hasOwnProp$h = Object.prototype.hasOwnProperty;
|
|
2253
|
+
var __propIsEnum$h = Object.prototype.propertyIsEnumerable;
|
|
2254
|
+
var __defNormalProp$h = (obj, key, value) => key in obj ? __defProp$h(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2255
|
+
var __spreadValues$h = (a, b) => {
|
|
2256
2256
|
for (var prop in b || (b = {}))
|
|
2257
|
-
if (__hasOwnProp$
|
|
2258
|
-
__defNormalProp$
|
|
2259
|
-
if (__getOwnPropSymbols$
|
|
2260
|
-
for (var prop of __getOwnPropSymbols$
|
|
2261
|
-
if (__propIsEnum$
|
|
2262
|
-
__defNormalProp$
|
|
2257
|
+
if (__hasOwnProp$h.call(b, prop))
|
|
2258
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
2259
|
+
if (__getOwnPropSymbols$h)
|
|
2260
|
+
for (var prop of __getOwnPropSymbols$h(b)) {
|
|
2261
|
+
if (__propIsEnum$h.call(b, prop))
|
|
2262
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
2263
2263
|
}
|
|
2264
2264
|
return a;
|
|
2265
2265
|
};
|
|
2266
|
-
var __spreadProps$
|
|
2266
|
+
var __spreadProps$e = (a, b) => __defProps$e(a, __getOwnPropDescs$e(b));
|
|
2267
|
+
function makeUUID(length = 25) {
|
|
2268
|
+
let result = "";
|
|
2269
|
+
const characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
2270
|
+
const charactersLength = characters.length;
|
|
2271
|
+
for (let i = 0; i < length; i++) {
|
|
2272
|
+
result += characters.charAt(Math.floor(Math.random() * charactersLength));
|
|
2273
|
+
}
|
|
2274
|
+
return result;
|
|
2275
|
+
}
|
|
2276
|
+
class Batcher {
|
|
2277
|
+
constructor(originalMethod, batchHelper) {
|
|
2278
|
+
this.batchSize = 2;
|
|
2279
|
+
this.batchTime = 200;
|
|
2280
|
+
this.scheduler = {};
|
|
2281
|
+
this.originalMethod = originalMethod;
|
|
2282
|
+
this.batchHelper = batchHelper;
|
|
2283
|
+
}
|
|
2284
|
+
addMessage(originContent) {
|
|
2285
|
+
const batchKey = this.batchHelper.getBatchKey(originContent.content);
|
|
2286
|
+
if (batchKey == null) {
|
|
2287
|
+
this.originalMethod(originContent);
|
|
2288
|
+
return;
|
|
2289
|
+
}
|
|
2290
|
+
if (!this.scheduler[batchKey]) {
|
|
2291
|
+
this.scheduler[batchKey] = {
|
|
2292
|
+
firedHandlers: {},
|
|
2293
|
+
pendingMessages: {}
|
|
2294
|
+
};
|
|
2295
|
+
}
|
|
2296
|
+
const messageStore = this.scheduler[batchKey];
|
|
2297
|
+
const { firedHandlers, pendingMessages, groupedCtx } = messageStore;
|
|
2298
|
+
if (groupedCtx) {
|
|
2299
|
+
groupedCtx.count++;
|
|
2300
|
+
this.applyContent(batchKey, originContent, messageStore);
|
|
2301
|
+
return;
|
|
2302
|
+
}
|
|
2303
|
+
const messageCount = Object.keys(firedHandlers).length + Object.keys(pendingMessages).length;
|
|
2304
|
+
if (messageCount + 1 > this.batchSize) {
|
|
2305
|
+
for (const k in firedHandlers) {
|
|
2306
|
+
try {
|
|
2307
|
+
firedHandlers[k]();
|
|
2308
|
+
} catch (e) {
|
|
2309
|
+
}
|
|
2310
|
+
delete firedHandlers[k];
|
|
2311
|
+
}
|
|
2312
|
+
for (const k in pendingMessages) {
|
|
2313
|
+
delete pendingMessages[k];
|
|
2314
|
+
}
|
|
2315
|
+
messageStore.groupedCtx = {
|
|
2316
|
+
key: originContent.key,
|
|
2317
|
+
count: messageCount + 1
|
|
2318
|
+
};
|
|
2319
|
+
this.applyContent(batchKey, originContent, messageStore);
|
|
2320
|
+
return;
|
|
2321
|
+
}
|
|
2322
|
+
pendingMessages[originContent.key] = originContent;
|
|
2323
|
+
setTimeout(() => {
|
|
2324
|
+
if (originContent.key in pendingMessages) {
|
|
2325
|
+
delete pendingMessages[originContent.key];
|
|
2326
|
+
originContent.onClose = () => {
|
|
2327
|
+
delete firedHandlers[originContent.key];
|
|
2328
|
+
delete messageStore.groupedCtx;
|
|
2329
|
+
};
|
|
2330
|
+
const handler = this.originalMethod(originContent);
|
|
2331
|
+
firedHandlers[originContent.key] = handler;
|
|
2332
|
+
}
|
|
2333
|
+
}, this.batchTime);
|
|
2334
|
+
}
|
|
2335
|
+
applyContent(batchKey, content, store) {
|
|
2336
|
+
content.content = this.batchHelper.getBatchContent(
|
|
2337
|
+
batchKey,
|
|
2338
|
+
store.groupedCtx.count
|
|
2339
|
+
);
|
|
2340
|
+
content.key = store.groupedCtx.key;
|
|
2341
|
+
content.onClose = () => {
|
|
2342
|
+
delete store.groupedCtx;
|
|
2343
|
+
};
|
|
2344
|
+
this.originalMethod(content);
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
function createBatchMessageMethods(batchHelper) {
|
|
2348
|
+
if (batchHelper == null) {
|
|
2349
|
+
return antd.message;
|
|
2350
|
+
}
|
|
2351
|
+
let _message = antd.message;
|
|
2352
|
+
const methods = [
|
|
2353
|
+
"success",
|
|
2354
|
+
"error",
|
|
2355
|
+
"info",
|
|
2356
|
+
"warning",
|
|
2357
|
+
"warn",
|
|
2358
|
+
"loading"
|
|
2359
|
+
];
|
|
2360
|
+
for (const method of methods) {
|
|
2361
|
+
const originalMethod = _message[method];
|
|
2362
|
+
const batcher = new Batcher(originalMethod, batchHelper);
|
|
2363
|
+
_message[method] = function(...args) {
|
|
2364
|
+
const key = makeUUID();
|
|
2365
|
+
const content = normalizeContent(args, method);
|
|
2366
|
+
batcher.addMessage(__spreadProps$e(__spreadValues$h({}, content), { key }));
|
|
2367
|
+
return () => {
|
|
2368
|
+
};
|
|
2369
|
+
};
|
|
2370
|
+
}
|
|
2371
|
+
return _message;
|
|
2372
|
+
}
|
|
2373
|
+
function normalizeContent(args, type) {
|
|
2374
|
+
const c = args[0];
|
|
2375
|
+
if (c && typeof c === "object" && "content" in c) {
|
|
2376
|
+
return c;
|
|
2377
|
+
}
|
|
2378
|
+
return {
|
|
2379
|
+
content: c,
|
|
2380
|
+
duration: typeof args[1] === "number" ? args[1] : 6,
|
|
2381
|
+
type: type === "warn" ? "warning" : type
|
|
2382
|
+
};
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
var __defProp$g = Object.defineProperty;
|
|
2386
|
+
var __defProps$d = Object.defineProperties;
|
|
2387
|
+
var __getOwnPropDescs$d = Object.getOwnPropertyDescriptors;
|
|
2388
|
+
var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
|
|
2389
|
+
var __hasOwnProp$g = Object.prototype.hasOwnProperty;
|
|
2390
|
+
var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
|
|
2391
|
+
var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2392
|
+
var __spreadValues$g = (a, b) => {
|
|
2393
|
+
for (var prop in b || (b = {}))
|
|
2394
|
+
if (__hasOwnProp$g.call(b, prop))
|
|
2395
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
2396
|
+
if (__getOwnPropSymbols$g)
|
|
2397
|
+
for (var prop of __getOwnPropSymbols$g(b)) {
|
|
2398
|
+
if (__propIsEnum$g.call(b, prop))
|
|
2399
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
2400
|
+
}
|
|
2401
|
+
return a;
|
|
2402
|
+
};
|
|
2403
|
+
var __spreadProps$d = (a, b) => __defProps$d(a, __getOwnPropDescs$d(b));
|
|
2267
2404
|
const initialChartState = {
|
|
2268
2405
|
pointers: {},
|
|
2269
2406
|
resourceData: {},
|
|
@@ -2273,8 +2410,8 @@
|
|
|
2273
2410
|
switch (action.type) {
|
|
2274
2411
|
case "SET_POINTER" /* SET_POINTER */: {
|
|
2275
2412
|
const { uuid, left, text, visible, value } = action.payload;
|
|
2276
|
-
return __spreadProps$
|
|
2277
|
-
pointers: __spreadProps$
|
|
2413
|
+
return __spreadProps$d(__spreadValues$g({}, state), {
|
|
2414
|
+
pointers: __spreadProps$d(__spreadValues$g({}, state.pointers), {
|
|
2278
2415
|
[uuid]: {
|
|
2279
2416
|
left,
|
|
2280
2417
|
text,
|
|
@@ -2286,16 +2423,16 @@
|
|
|
2286
2423
|
}
|
|
2287
2424
|
case "SET_RESOURCE_DATA" /* SET_RESOURCE_DATA */: {
|
|
2288
2425
|
const { uuid, data } = action.payload;
|
|
2289
|
-
return __spreadProps$
|
|
2290
|
-
resourceData: __spreadProps$
|
|
2426
|
+
return __spreadProps$d(__spreadValues$g({}, state), {
|
|
2427
|
+
resourceData: __spreadProps$d(__spreadValues$g({}, state.resourceData), {
|
|
2291
2428
|
[uuid]: data
|
|
2292
2429
|
})
|
|
2293
2430
|
});
|
|
2294
2431
|
}
|
|
2295
2432
|
case "SET_AVERAGE_DATA" /* SET_AVERAGE_DATA */: {
|
|
2296
2433
|
const { uuid, average } = action.payload;
|
|
2297
|
-
return __spreadProps$
|
|
2298
|
-
averageData: __spreadProps$
|
|
2434
|
+
return __spreadProps$d(__spreadValues$g({}, state), {
|
|
2435
|
+
averageData: __spreadProps$d(__spreadValues$g({}, state.averageData), {
|
|
2299
2436
|
[uuid]: average
|
|
2300
2437
|
})
|
|
2301
2438
|
});
|
|
@@ -2306,25 +2443,25 @@
|
|
|
2306
2443
|
}
|
|
2307
2444
|
};
|
|
2308
2445
|
|
|
2309
|
-
var __defProp$
|
|
2310
|
-
var __defProps$
|
|
2311
|
-
var __getOwnPropDescs$
|
|
2312
|
-
var __getOwnPropSymbols$
|
|
2313
|
-
var __hasOwnProp$
|
|
2314
|
-
var __propIsEnum$
|
|
2315
|
-
var __defNormalProp$
|
|
2316
|
-
var __spreadValues$
|
|
2446
|
+
var __defProp$f = Object.defineProperty;
|
|
2447
|
+
var __defProps$c = Object.defineProperties;
|
|
2448
|
+
var __getOwnPropDescs$c = Object.getOwnPropertyDescriptors;
|
|
2449
|
+
var __getOwnPropSymbols$f = Object.getOwnPropertySymbols;
|
|
2450
|
+
var __hasOwnProp$f = Object.prototype.hasOwnProperty;
|
|
2451
|
+
var __propIsEnum$f = Object.prototype.propertyIsEnumerable;
|
|
2452
|
+
var __defNormalProp$f = (obj, key, value) => key in obj ? __defProp$f(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2453
|
+
var __spreadValues$f = (a, b) => {
|
|
2317
2454
|
for (var prop in b || (b = {}))
|
|
2318
|
-
if (__hasOwnProp$
|
|
2319
|
-
__defNormalProp$
|
|
2320
|
-
if (__getOwnPropSymbols$
|
|
2321
|
-
for (var prop of __getOwnPropSymbols$
|
|
2322
|
-
if (__propIsEnum$
|
|
2323
|
-
__defNormalProp$
|
|
2455
|
+
if (__hasOwnProp$f.call(b, prop))
|
|
2456
|
+
__defNormalProp$f(a, prop, b[prop]);
|
|
2457
|
+
if (__getOwnPropSymbols$f)
|
|
2458
|
+
for (var prop of __getOwnPropSymbols$f(b)) {
|
|
2459
|
+
if (__propIsEnum$f.call(b, prop))
|
|
2460
|
+
__defNormalProp$f(a, prop, b[prop]);
|
|
2324
2461
|
}
|
|
2325
2462
|
return a;
|
|
2326
2463
|
};
|
|
2327
|
-
var __spreadProps$
|
|
2464
|
+
var __spreadProps$c = (a, b) => __defProps$c(a, __getOwnPropDescs$c(b));
|
|
2328
2465
|
var ModalActions = /* @__PURE__ */ ((ModalActions2) => {
|
|
2329
2466
|
ModalActions2["PUSH_MODAL"] = "PUSH_MODAL";
|
|
2330
2467
|
ModalActions2["POP_MODAL"] = "POP_MODAL";
|
|
@@ -2345,22 +2482,22 @@
|
|
|
2345
2482
|
)) {
|
|
2346
2483
|
return state;
|
|
2347
2484
|
}
|
|
2348
|
-
return __spreadProps$
|
|
2349
|
-
stack: state.stack.concat(__spreadProps$
|
|
2485
|
+
return __spreadProps$c(__spreadValues$f({}, state), {
|
|
2486
|
+
stack: state.stack.concat(__spreadProps$c(__spreadValues$f({}, action.payload), {
|
|
2350
2487
|
id: MODAL_ID++
|
|
2351
2488
|
}))
|
|
2352
2489
|
});
|
|
2353
2490
|
case "POP_MODAL" /* POP_MODAL */:
|
|
2354
|
-
return __spreadProps$
|
|
2491
|
+
return __spreadProps$c(__spreadValues$f({}, state), {
|
|
2355
2492
|
stack: state.stack.slice(0, -1)
|
|
2356
2493
|
});
|
|
2357
2494
|
case "REMOVE_MODAL" /* REMOVE_MODAL */:
|
|
2358
|
-
return __spreadProps$
|
|
2495
|
+
return __spreadProps$c(__spreadValues$f({}, state), {
|
|
2359
2496
|
closeId: 0,
|
|
2360
2497
|
stack: state.stack.filter((m) => m.id !== action.id)
|
|
2361
2498
|
});
|
|
2362
2499
|
case "CLOSE_MODAL" /* CLOSE_MODAL */:
|
|
2363
|
-
return __spreadProps$
|
|
2500
|
+
return __spreadProps$c(__spreadValues$f({}, state), {
|
|
2364
2501
|
closeId: action.id
|
|
2365
2502
|
});
|
|
2366
2503
|
default:
|
|
@@ -2411,33 +2548,33 @@
|
|
|
2411
2548
|
const useKitDispatch = reactRedux.createDispatchHook(ctx);
|
|
2412
2549
|
const useKitSelector = reactRedux.createSelectorHook(ctx);
|
|
2413
2550
|
|
|
2414
|
-
var __defProp$
|
|
2415
|
-
var __defProps$
|
|
2416
|
-
var __getOwnPropDescs$
|
|
2417
|
-
var __getOwnPropSymbols$
|
|
2418
|
-
var __hasOwnProp$
|
|
2419
|
-
var __propIsEnum$
|
|
2420
|
-
var __defNormalProp$
|
|
2421
|
-
var __spreadValues$
|
|
2551
|
+
var __defProp$e = Object.defineProperty;
|
|
2552
|
+
var __defProps$b = Object.defineProperties;
|
|
2553
|
+
var __getOwnPropDescs$b = Object.getOwnPropertyDescriptors;
|
|
2554
|
+
var __getOwnPropSymbols$e = Object.getOwnPropertySymbols;
|
|
2555
|
+
var __hasOwnProp$e = Object.prototype.hasOwnProperty;
|
|
2556
|
+
var __propIsEnum$e = Object.prototype.propertyIsEnumerable;
|
|
2557
|
+
var __defNormalProp$e = (obj, key, value) => key in obj ? __defProp$e(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2558
|
+
var __spreadValues$e = (a, b) => {
|
|
2422
2559
|
for (var prop in b || (b = {}))
|
|
2423
|
-
if (__hasOwnProp$
|
|
2424
|
-
__defNormalProp$
|
|
2425
|
-
if (__getOwnPropSymbols$
|
|
2426
|
-
for (var prop of __getOwnPropSymbols$
|
|
2427
|
-
if (__propIsEnum$
|
|
2428
|
-
__defNormalProp$
|
|
2560
|
+
if (__hasOwnProp$e.call(b, prop))
|
|
2561
|
+
__defNormalProp$e(a, prop, b[prop]);
|
|
2562
|
+
if (__getOwnPropSymbols$e)
|
|
2563
|
+
for (var prop of __getOwnPropSymbols$e(b)) {
|
|
2564
|
+
if (__propIsEnum$e.call(b, prop))
|
|
2565
|
+
__defNormalProp$e(a, prop, b[prop]);
|
|
2429
2566
|
}
|
|
2430
2567
|
return a;
|
|
2431
2568
|
};
|
|
2432
|
-
var __spreadProps$
|
|
2433
|
-
var __objRest$
|
|
2569
|
+
var __spreadProps$b = (a, b) => __defProps$b(a, __getOwnPropDescs$b(b));
|
|
2570
|
+
var __objRest$5 = (source, exclude) => {
|
|
2434
2571
|
var target = {};
|
|
2435
2572
|
for (var prop in source)
|
|
2436
|
-
if (__hasOwnProp$
|
|
2573
|
+
if (__hasOwnProp$e.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2437
2574
|
target[prop] = source[prop];
|
|
2438
|
-
if (source != null && __getOwnPropSymbols$
|
|
2439
|
-
for (var prop of __getOwnPropSymbols$
|
|
2440
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2575
|
+
if (source != null && __getOwnPropSymbols$e)
|
|
2576
|
+
for (var prop of __getOwnPropSymbols$e(source)) {
|
|
2577
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$e.call(source, prop))
|
|
2441
2578
|
target[prop] = source[prop];
|
|
2442
2579
|
}
|
|
2443
2580
|
return target;
|
|
@@ -2463,7 +2600,7 @@
|
|
|
2463
2600
|
showCancel = true,
|
|
2464
2601
|
showOk = true,
|
|
2465
2602
|
afterClose
|
|
2466
|
-
} = _a, restProps = __objRest$
|
|
2603
|
+
} = _a, restProps = __objRest$5(_a, [
|
|
2467
2604
|
"error",
|
|
2468
2605
|
"okText",
|
|
2469
2606
|
"cancelText",
|
|
@@ -2518,7 +2655,7 @@
|
|
|
2518
2655
|
}
|
|
2519
2656
|
return /* @__PURE__ */ React.createElement(
|
|
2520
2657
|
antd.Modal,
|
|
2521
|
-
__spreadProps$
|
|
2658
|
+
__spreadProps$b(__spreadValues$e({
|
|
2522
2659
|
maskClosable,
|
|
2523
2660
|
className: cs(
|
|
2524
2661
|
className,
|
|
@@ -2553,7 +2690,7 @@
|
|
|
2553
2690
|
prevText
|
|
2554
2691
|
), error && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("span", { className: "modal-error" }, error))), /* @__PURE__ */ React.createElement("div", { className: "modal-footer-btn-group" }, showCancel && /* @__PURE__ */ React.createElement(
|
|
2555
2692
|
Button,
|
|
2556
|
-
__spreadValues$
|
|
2693
|
+
__spreadValues$e({
|
|
2557
2694
|
type: "quiet",
|
|
2558
2695
|
onMouseDown: (e) => {
|
|
2559
2696
|
e.preventDefault();
|
|
@@ -2567,7 +2704,7 @@
|
|
|
2567
2704
|
cancelText
|
|
2568
2705
|
), showOk && /* @__PURE__ */ React.createElement(
|
|
2569
2706
|
Button,
|
|
2570
|
-
__spreadValues$
|
|
2707
|
+
__spreadValues$e({
|
|
2571
2708
|
onClick: (e) => {
|
|
2572
2709
|
var _a2, _b2;
|
|
2573
2710
|
onOk == null ? void 0 : onOk(e);
|
|
@@ -2729,46 +2866,46 @@
|
|
|
2729
2866
|
return /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React.createElement("span", { className: core.cx("unit", unitClassName) }, unit));
|
|
2730
2867
|
};
|
|
2731
2868
|
|
|
2732
|
-
var __defProp$
|
|
2733
|
-
var __getOwnPropSymbols$
|
|
2734
|
-
var __hasOwnProp$
|
|
2735
|
-
var __propIsEnum$
|
|
2736
|
-
var __defNormalProp$
|
|
2737
|
-
var __spreadValues$
|
|
2869
|
+
var __defProp$d = Object.defineProperty;
|
|
2870
|
+
var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
|
|
2871
|
+
var __hasOwnProp$d = Object.prototype.hasOwnProperty;
|
|
2872
|
+
var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
|
|
2873
|
+
var __defNormalProp$d = (obj, key, value) => key in obj ? __defProp$d(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2874
|
+
var __spreadValues$d = (a, b) => {
|
|
2738
2875
|
for (var prop in b || (b = {}))
|
|
2739
|
-
if (__hasOwnProp$
|
|
2740
|
-
__defNormalProp$
|
|
2741
|
-
if (__getOwnPropSymbols$
|
|
2742
|
-
for (var prop of __getOwnPropSymbols$
|
|
2743
|
-
if (__propIsEnum$
|
|
2744
|
-
__defNormalProp$
|
|
2876
|
+
if (__hasOwnProp$d.call(b, prop))
|
|
2877
|
+
__defNormalProp$d(a, prop, b[prop]);
|
|
2878
|
+
if (__getOwnPropSymbols$d)
|
|
2879
|
+
for (var prop of __getOwnPropSymbols$d(b)) {
|
|
2880
|
+
if (__propIsEnum$d.call(b, prop))
|
|
2881
|
+
__defNormalProp$d(a, prop, b[prop]);
|
|
2745
2882
|
}
|
|
2746
2883
|
return a;
|
|
2747
2884
|
};
|
|
2748
|
-
const Progress = (props) => /* @__PURE__ */ React.createElement(antd.Progress, __spreadValues$
|
|
2885
|
+
const Progress = (props) => /* @__PURE__ */ React.createElement(antd.Progress, __spreadValues$d({}, props));
|
|
2749
2886
|
|
|
2750
|
-
var __defProp$
|
|
2751
|
-
var __getOwnPropSymbols$
|
|
2752
|
-
var __hasOwnProp$
|
|
2753
|
-
var __propIsEnum$
|
|
2754
|
-
var __defNormalProp$
|
|
2887
|
+
var __defProp$c = Object.defineProperty;
|
|
2888
|
+
var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
|
|
2889
|
+
var __hasOwnProp$c = Object.prototype.hasOwnProperty;
|
|
2890
|
+
var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
|
|
2891
|
+
var __defNormalProp$c = (obj, key, value) => key in obj ? __defProp$c(obj, key, {
|
|
2755
2892
|
enumerable: true,
|
|
2756
2893
|
configurable: true,
|
|
2757
2894
|
writable: true,
|
|
2758
2895
|
value
|
|
2759
2896
|
}) : obj[key] = value;
|
|
2760
|
-
var __spreadValues$
|
|
2761
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
2762
|
-
if (__getOwnPropSymbols$
|
|
2763
|
-
if (__propIsEnum$
|
|
2897
|
+
var __spreadValues$c = (a, b) => {
|
|
2898
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
|
|
2899
|
+
if (__getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(b)) {
|
|
2900
|
+
if (__propIsEnum$c.call(b, prop)) __defNormalProp$c(a, prop, b[prop]);
|
|
2764
2901
|
}
|
|
2765
2902
|
return a;
|
|
2766
2903
|
};
|
|
2767
|
-
var __objRest$
|
|
2904
|
+
var __objRest$4 = (source, exclude) => {
|
|
2768
2905
|
var target = {};
|
|
2769
|
-
for (var prop in source) if (__hasOwnProp$
|
|
2770
|
-
if (source != null && __getOwnPropSymbols$
|
|
2771
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2906
|
+
for (var prop in source) if (__hasOwnProp$c.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
2907
|
+
if (source != null && __getOwnPropSymbols$c) for (var prop of __getOwnPropSymbols$c(source)) {
|
|
2908
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$c.call(source, prop)) target[prop] = source[prop];
|
|
2772
2909
|
}
|
|
2773
2910
|
return target;
|
|
2774
2911
|
};
|
|
@@ -2784,7 +2921,7 @@
|
|
|
2784
2921
|
checked,
|
|
2785
2922
|
compact = false
|
|
2786
2923
|
} = _b,
|
|
2787
|
-
props = __objRest$
|
|
2924
|
+
props = __objRest$4(_b, ["children", "className", "checked", "compact"]);
|
|
2788
2925
|
const {
|
|
2789
2926
|
description
|
|
2790
2927
|
} = props;
|
|
@@ -2794,7 +2931,7 @@
|
|
|
2794
2931
|
className: core.cx("radio-description", Typo.Label.l4_regular)
|
|
2795
2932
|
}, description));
|
|
2796
2933
|
}
|
|
2797
|
-
return /* @__PURE__ */React.createElement(React.Fragment, null, /* @__PURE__ */React.createElement(antd.Radio, __spreadValues$
|
|
2934
|
+
return /* @__PURE__ */React.createElement(React.Fragment, null, /* @__PURE__ */React.createElement(antd.Radio, __spreadValues$c({
|
|
2798
2935
|
className: core.cx(className, RadioStyle, compact && "compact"),
|
|
2799
2936
|
checked: checked || false,
|
|
2800
2937
|
"data-test": context.name ? `${context.name}-${String(props.value)}` : String(props.value)
|
|
@@ -2806,13 +2943,13 @@
|
|
|
2806
2943
|
children,
|
|
2807
2944
|
className
|
|
2808
2945
|
} = _d,
|
|
2809
|
-
props = __objRest$
|
|
2946
|
+
props = __objRest$4(_d, ["children", "className"]);
|
|
2810
2947
|
return /* @__PURE__ */React.createElement(KitRadioGroupContext.Provider, {
|
|
2811
2948
|
value: {
|
|
2812
2949
|
disabled: props.disabled,
|
|
2813
2950
|
name: props.name
|
|
2814
2951
|
}
|
|
2815
|
-
}, /* @__PURE__ */React.createElement(antd.Radio.Group, __spreadValues$
|
|
2952
|
+
}, /* @__PURE__ */React.createElement(antd.Radio.Group, __spreadValues$c({
|
|
2816
2953
|
className: core.cx(className, RadioGroupStyle)
|
|
2817
2954
|
}, props), children ? children : null));
|
|
2818
2955
|
};
|
|
@@ -2822,7 +2959,7 @@
|
|
|
2822
2959
|
children,
|
|
2823
2960
|
className
|
|
2824
2961
|
} = _f,
|
|
2825
|
-
props = __objRest$
|
|
2962
|
+
props = __objRest$4(_f, ["children", "className"]);
|
|
2826
2963
|
const {
|
|
2827
2964
|
type,
|
|
2828
2965
|
placeholder = "Label",
|
|
@@ -2868,46 +3005,46 @@
|
|
|
2868
3005
|
className: "ant-radio-button-input-label"
|
|
2869
3006
|
}, typeof children === "string" ? children : ""));
|
|
2870
3007
|
};
|
|
2871
|
-
return /* @__PURE__ */React.createElement(antd.Radio.Button, __spreadValues$
|
|
3008
|
+
return /* @__PURE__ */React.createElement(antd.Radio.Button, __spreadValues$c({
|
|
2872
3009
|
className: core.cx(className, RadioButtonStyle),
|
|
2873
3010
|
value: radioButtonValue
|
|
2874
3011
|
}, props), renderChildren());
|
|
2875
3012
|
};
|
|
2876
3013
|
|
|
2877
|
-
var __defProp$
|
|
2878
|
-
var __getOwnPropSymbols$
|
|
2879
|
-
var __hasOwnProp$
|
|
2880
|
-
var __propIsEnum$
|
|
2881
|
-
var __defNormalProp$
|
|
2882
|
-
var __spreadValues$
|
|
3014
|
+
var __defProp$b = Object.defineProperty;
|
|
3015
|
+
var __getOwnPropSymbols$b = Object.getOwnPropertySymbols;
|
|
3016
|
+
var __hasOwnProp$b = Object.prototype.hasOwnProperty;
|
|
3017
|
+
var __propIsEnum$b = Object.prototype.propertyIsEnumerable;
|
|
3018
|
+
var __defNormalProp$b = (obj, key, value) => key in obj ? __defProp$b(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3019
|
+
var __spreadValues$b = (a, b) => {
|
|
2883
3020
|
for (var prop in b || (b = {}))
|
|
2884
|
-
if (__hasOwnProp$
|
|
2885
|
-
__defNormalProp$
|
|
2886
|
-
if (__getOwnPropSymbols$
|
|
2887
|
-
for (var prop of __getOwnPropSymbols$
|
|
2888
|
-
if (__propIsEnum$
|
|
2889
|
-
__defNormalProp$
|
|
3021
|
+
if (__hasOwnProp$b.call(b, prop))
|
|
3022
|
+
__defNormalProp$b(a, prop, b[prop]);
|
|
3023
|
+
if (__getOwnPropSymbols$b)
|
|
3024
|
+
for (var prop of __getOwnPropSymbols$b(b)) {
|
|
3025
|
+
if (__propIsEnum$b.call(b, prop))
|
|
3026
|
+
__defNormalProp$b(a, prop, b[prop]);
|
|
2890
3027
|
}
|
|
2891
3028
|
return a;
|
|
2892
3029
|
};
|
|
2893
|
-
var __objRest$
|
|
3030
|
+
var __objRest$3 = (source, exclude) => {
|
|
2894
3031
|
var target = {};
|
|
2895
3032
|
for (var prop in source)
|
|
2896
|
-
if (__hasOwnProp$
|
|
3033
|
+
if (__hasOwnProp$b.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2897
3034
|
target[prop] = source[prop];
|
|
2898
|
-
if (source != null && __getOwnPropSymbols$
|
|
2899
|
-
for (var prop of __getOwnPropSymbols$
|
|
2900
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3035
|
+
if (source != null && __getOwnPropSymbols$b)
|
|
3036
|
+
for (var prop of __getOwnPropSymbols$b(source)) {
|
|
3037
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$b.call(source, prop))
|
|
2901
3038
|
target[prop] = source[prop];
|
|
2902
3039
|
}
|
|
2903
3040
|
return target;
|
|
2904
3041
|
};
|
|
2905
3042
|
const SearchInput = (props) => {
|
|
2906
|
-
const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$
|
|
3043
|
+
const _a = props, { onChange, debounceWait = 300 } = _a, restProps = __objRest$3(_a, ["onChange", "debounceWait"]);
|
|
2907
3044
|
const onSearch = _.debounce(onChange, debounceWait);
|
|
2908
3045
|
return /* @__PURE__ */ React.createElement(
|
|
2909
3046
|
Input,
|
|
2910
|
-
__spreadValues$
|
|
3047
|
+
__spreadValues$b({
|
|
2911
3048
|
style: { width: 276 },
|
|
2912
3049
|
prefix: /* @__PURE__ */ React.createElement(icons.SearchOutlined, null),
|
|
2913
3050
|
onChange: (e) => onSearch(e.target.value)
|
|
@@ -3015,31 +3152,31 @@
|
|
|
3015
3152
|
return /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
3016
3153
|
};
|
|
3017
3154
|
|
|
3018
|
-
var __defProp$
|
|
3019
|
-
var __defProps$
|
|
3020
|
-
var __getOwnPropDescs$
|
|
3021
|
-
var __getOwnPropSymbols$
|
|
3022
|
-
var __hasOwnProp$
|
|
3023
|
-
var __propIsEnum$
|
|
3024
|
-
var __defNormalProp$
|
|
3155
|
+
var __defProp$a = Object.defineProperty;
|
|
3156
|
+
var __defProps$a = Object.defineProperties;
|
|
3157
|
+
var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
|
|
3158
|
+
var __getOwnPropSymbols$a = Object.getOwnPropertySymbols;
|
|
3159
|
+
var __hasOwnProp$a = Object.prototype.hasOwnProperty;
|
|
3160
|
+
var __propIsEnum$a = Object.prototype.propertyIsEnumerable;
|
|
3161
|
+
var __defNormalProp$a = (obj, key, value) => key in obj ? __defProp$a(obj, key, {
|
|
3025
3162
|
enumerable: true,
|
|
3026
3163
|
configurable: true,
|
|
3027
3164
|
writable: true,
|
|
3028
3165
|
value
|
|
3029
3166
|
}) : obj[key] = value;
|
|
3030
|
-
var __spreadValues$
|
|
3031
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3032
|
-
if (__getOwnPropSymbols$
|
|
3033
|
-
if (__propIsEnum$
|
|
3167
|
+
var __spreadValues$a = (a, b) => {
|
|
3168
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$a.call(b, prop)) __defNormalProp$a(a, prop, b[prop]);
|
|
3169
|
+
if (__getOwnPropSymbols$a) for (var prop of __getOwnPropSymbols$a(b)) {
|
|
3170
|
+
if (__propIsEnum$a.call(b, prop)) __defNormalProp$a(a, prop, b[prop]);
|
|
3034
3171
|
}
|
|
3035
3172
|
return a;
|
|
3036
3173
|
};
|
|
3037
|
-
var __spreadProps$
|
|
3038
|
-
var __objRest$
|
|
3174
|
+
var __spreadProps$a = (a, b) => __defProps$a(a, __getOwnPropDescs$a(b));
|
|
3175
|
+
var __objRest$2 = (source, exclude) => {
|
|
3039
3176
|
var target = {};
|
|
3040
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3041
|
-
if (source != null && __getOwnPropSymbols$
|
|
3042
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3177
|
+
for (var prop in source) if (__hasOwnProp$a.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3178
|
+
if (source != null && __getOwnPropSymbols$a) for (var prop of __getOwnPropSymbols$a(source)) {
|
|
3179
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$a.call(source, prop)) target[prop] = source[prop];
|
|
3043
3180
|
}
|
|
3044
3181
|
return target;
|
|
3045
3182
|
};
|
|
@@ -3055,46 +3192,46 @@
|
|
|
3055
3192
|
containerClassname,
|
|
3056
3193
|
showStepCount
|
|
3057
3194
|
} = _a,
|
|
3058
|
-
stepsProps = __objRest$
|
|
3195
|
+
stepsProps = __objRest$2(_a, ["stepsConfig", "containerClassname", "showStepCount"]);
|
|
3059
3196
|
const titleWithCount = (_step, count) => /* @__PURE__ */React.createElement(React.Fragment, null, showStepCount ? /* @__PURE__ */React.createElement("span", {
|
|
3060
3197
|
className: "step-count"
|
|
3061
3198
|
}, count) : null, _step.title);
|
|
3062
3199
|
return /* @__PURE__ */React.createElement(StepsContainer, {
|
|
3063
3200
|
className: containerClassname
|
|
3064
|
-
}, /* @__PURE__ */React.createElement(antd.Steps, __spreadProps$
|
|
3201
|
+
}, /* @__PURE__ */React.createElement(antd.Steps, __spreadProps$a(__spreadValues$a({}, stepsProps), {
|
|
3065
3202
|
type: "default"
|
|
3066
|
-
}), (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */React.createElement(antd.Steps.Step, __spreadProps$
|
|
3203
|
+
}), (stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */React.createElement(antd.Steps.Step, __spreadProps$a(__spreadValues$a({
|
|
3067
3204
|
key: index
|
|
3068
3205
|
}, step), {
|
|
3069
3206
|
title: titleWithCount(step, index + 1)
|
|
3070
3207
|
}))) : props.children));
|
|
3071
3208
|
};
|
|
3072
3209
|
|
|
3073
|
-
var __defProp$
|
|
3074
|
-
var __defProps$
|
|
3075
|
-
var __getOwnPropDescs$
|
|
3076
|
-
var __getOwnPropSymbols$
|
|
3077
|
-
var __hasOwnProp$
|
|
3078
|
-
var __propIsEnum$
|
|
3079
|
-
var __defNormalProp$
|
|
3210
|
+
var __defProp$9 = Object.defineProperty;
|
|
3211
|
+
var __defProps$9 = Object.defineProperties;
|
|
3212
|
+
var __getOwnPropDescs$9 = Object.getOwnPropertyDescriptors;
|
|
3213
|
+
var __getOwnPropSymbols$9 = Object.getOwnPropertySymbols;
|
|
3214
|
+
var __hasOwnProp$9 = Object.prototype.hasOwnProperty;
|
|
3215
|
+
var __propIsEnum$9 = Object.prototype.propertyIsEnumerable;
|
|
3216
|
+
var __defNormalProp$9 = (obj, key, value) => key in obj ? __defProp$9(obj, key, {
|
|
3080
3217
|
enumerable: true,
|
|
3081
3218
|
configurable: true,
|
|
3082
3219
|
writable: true,
|
|
3083
3220
|
value
|
|
3084
3221
|
}) : obj[key] = value;
|
|
3085
|
-
var __spreadValues$
|
|
3086
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3087
|
-
if (__getOwnPropSymbols$
|
|
3088
|
-
if (__propIsEnum$
|
|
3222
|
+
var __spreadValues$9 = (a, b) => {
|
|
3223
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$9.call(b, prop)) __defNormalProp$9(a, prop, b[prop]);
|
|
3224
|
+
if (__getOwnPropSymbols$9) for (var prop of __getOwnPropSymbols$9(b)) {
|
|
3225
|
+
if (__propIsEnum$9.call(b, prop)) __defNormalProp$9(a, prop, b[prop]);
|
|
3089
3226
|
}
|
|
3090
3227
|
return a;
|
|
3091
3228
|
};
|
|
3092
|
-
var __spreadProps$
|
|
3093
|
-
var __objRest = (source, exclude) => {
|
|
3229
|
+
var __spreadProps$9 = (a, b) => __defProps$9(a, __getOwnPropDescs$9(b));
|
|
3230
|
+
var __objRest$1 = (source, exclude) => {
|
|
3094
3231
|
var target = {};
|
|
3095
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3096
|
-
if (source != null && __getOwnPropSymbols$
|
|
3097
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3232
|
+
for (var prop in source) if (__hasOwnProp$9.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3233
|
+
if (source != null && __getOwnPropSymbols$9) for (var prop of __getOwnPropSymbols$9(source)) {
|
|
3234
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$9.call(source, prop)) target[prop] = source[prop];
|
|
3098
3235
|
}
|
|
3099
3236
|
return target;
|
|
3100
3237
|
};
|
|
@@ -3106,7 +3243,7 @@
|
|
|
3106
3243
|
className,
|
|
3107
3244
|
checked
|
|
3108
3245
|
} = _b,
|
|
3109
|
-
props = __objRest(_b, ["children", "className", "checked"]);
|
|
3246
|
+
props = __objRest$1(_b, ["children", "className", "checked"]);
|
|
3110
3247
|
const Content = /*#__PURE__*/react.styled('span')({
|
|
3111
3248
|
name: "Content",
|
|
3112
3249
|
class: "c1to9vb9",
|
|
@@ -3114,7 +3251,7 @@
|
|
|
3114
3251
|
});
|
|
3115
3252
|
const classNames = [className, SwitchStyle, "switch"];
|
|
3116
3253
|
if (props.size === "large") classNames.push("ant-switch-large");
|
|
3117
|
-
return /* @__PURE__ */React.createElement(React.Fragment, null, /* @__PURE__ */React.createElement(antd.Switch, __spreadProps$
|
|
3254
|
+
return /* @__PURE__ */React.createElement(React.Fragment, null, /* @__PURE__ */React.createElement(antd.Switch, __spreadProps$9(__spreadValues$9({
|
|
3118
3255
|
className: core.cx(...classNames),
|
|
3119
3256
|
checked: checked || false
|
|
3120
3257
|
}, props), {
|
|
@@ -3200,26 +3337,26 @@
|
|
|
3200
3337
|
}));
|
|
3201
3338
|
};
|
|
3202
3339
|
|
|
3203
|
-
var __defProp$
|
|
3204
|
-
var __defProps$
|
|
3205
|
-
var __getOwnPropDescs$
|
|
3206
|
-
var __getOwnPropSymbols$
|
|
3207
|
-
var __hasOwnProp$
|
|
3208
|
-
var __propIsEnum$
|
|
3209
|
-
var __defNormalProp$
|
|
3340
|
+
var __defProp$8 = Object.defineProperty;
|
|
3341
|
+
var __defProps$8 = Object.defineProperties;
|
|
3342
|
+
var __getOwnPropDescs$8 = Object.getOwnPropertyDescriptors;
|
|
3343
|
+
var __getOwnPropSymbols$8 = Object.getOwnPropertySymbols;
|
|
3344
|
+
var __hasOwnProp$8 = Object.prototype.hasOwnProperty;
|
|
3345
|
+
var __propIsEnum$8 = Object.prototype.propertyIsEnumerable;
|
|
3346
|
+
var __defNormalProp$8 = (obj, key, value) => key in obj ? __defProp$8(obj, key, {
|
|
3210
3347
|
enumerable: true,
|
|
3211
3348
|
configurable: true,
|
|
3212
3349
|
writable: true,
|
|
3213
3350
|
value
|
|
3214
3351
|
}) : obj[key] = value;
|
|
3215
|
-
var __spreadValues$
|
|
3216
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3217
|
-
if (__getOwnPropSymbols$
|
|
3218
|
-
if (__propIsEnum$
|
|
3352
|
+
var __spreadValues$8 = (a, b) => {
|
|
3353
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$8.call(b, prop)) __defNormalProp$8(a, prop, b[prop]);
|
|
3354
|
+
if (__getOwnPropSymbols$8) for (var prop of __getOwnPropSymbols$8(b)) {
|
|
3355
|
+
if (__propIsEnum$8.call(b, prop)) __defNormalProp$8(a, prop, b[prop]);
|
|
3219
3356
|
}
|
|
3220
3357
|
return a;
|
|
3221
3358
|
};
|
|
3222
|
-
var __spreadProps$
|
|
3359
|
+
var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
|
|
3223
3360
|
const TableContainerStyle = "t1upn1sz";
|
|
3224
3361
|
const tableStyleCover = "tta5kd2";
|
|
3225
3362
|
const Table = props => {
|
|
@@ -3245,7 +3382,7 @@
|
|
|
3245
3382
|
const orderRef = React.useRef(null);
|
|
3246
3383
|
const hasScrollBard = useTableBodyHasScrollBar(wrapper, dataSource);
|
|
3247
3384
|
const _columns = React.useMemo(() => columns.map(column => {
|
|
3248
|
-
const _column = __spreadValues$
|
|
3385
|
+
const _column = __spreadValues$8({}, column);
|
|
3249
3386
|
if (_column.sorter) {
|
|
3250
3387
|
_column.title = /* @__PURE__ */React.createElement(ColumnTitle, {
|
|
3251
3388
|
title: column.title,
|
|
@@ -3287,14 +3424,896 @@
|
|
|
3287
3424
|
}),
|
|
3288
3425
|
rowClassName,
|
|
3289
3426
|
scroll,
|
|
3290
|
-
rowSelection: rowSelection && __spreadProps$
|
|
3427
|
+
rowSelection: rowSelection && __spreadProps$8(__spreadValues$8({}, rowSelection), {
|
|
3291
3428
|
columnWidth: 32
|
|
3292
3429
|
}),
|
|
3293
3430
|
showSorterTooltip: false
|
|
3294
3431
|
}));
|
|
3295
3432
|
};
|
|
3296
3433
|
|
|
3297
|
-
const
|
|
3434
|
+
const TitleStyle = "tc40oxa";
|
|
3435
|
+
const SubtitleStyle = "sa410aw";
|
|
3436
|
+
const BodyCellTextStyle = "b1lc7yin";
|
|
3437
|
+
const BodyCellTextWrapper = /*#__PURE__*/react.styled('div')({
|
|
3438
|
+
name: "BodyCellTextWrapper",
|
|
3439
|
+
class: "b1jhbz3e",
|
|
3440
|
+
propsAsIs: false
|
|
3441
|
+
});
|
|
3442
|
+
const TableFormWrapper = /*#__PURE__*/react.styled('div')({
|
|
3443
|
+
name: "TableFormWrapper",
|
|
3444
|
+
class: "tyua489",
|
|
3445
|
+
propsAsIs: false
|
|
3446
|
+
});
|
|
3447
|
+
const AddRowButtonWrapper = /*#__PURE__*/react.styled('div')({
|
|
3448
|
+
name: "AddRowButtonWrapper",
|
|
3449
|
+
class: "a1ccrot9",
|
|
3450
|
+
propsAsIs: false
|
|
3451
|
+
});
|
|
3452
|
+
const DraggableHandleWrapper = /*#__PURE__*/react.styled('div')({
|
|
3453
|
+
name: "DraggableHandleWrapper",
|
|
3454
|
+
class: "d8c9v9g",
|
|
3455
|
+
propsAsIs: false
|
|
3456
|
+
});
|
|
3457
|
+
|
|
3458
|
+
function increaseLastNumber(str, num) {
|
|
3459
|
+
const lastNumberMatch = str.match(/(\d+)$/);
|
|
3460
|
+
if (!lastNumberMatch) {
|
|
3461
|
+
return str;
|
|
3462
|
+
}
|
|
3463
|
+
const prefix = str.slice(0, lastNumberMatch.index);
|
|
3464
|
+
const lastNumber = lastNumberMatch[1];
|
|
3465
|
+
let newLastNumber;
|
|
3466
|
+
if (Number.isSafeInteger(Number(str) + num)) {
|
|
3467
|
+
newLastNumber = Number(str) + num;
|
|
3468
|
+
}
|
|
3469
|
+
newLastNumber = (BigInt(lastNumber) + BigInt(num)).toString();
|
|
3470
|
+
return `${prefix}${newLastNumber}`;
|
|
3471
|
+
}
|
|
3472
|
+
const genEmptyRow = (columns) => {
|
|
3473
|
+
const row = {};
|
|
3474
|
+
columns.forEach((col) => {
|
|
3475
|
+
row[col.key] = col.defaultValue;
|
|
3476
|
+
});
|
|
3477
|
+
return row;
|
|
3478
|
+
};
|
|
3479
|
+
const moveItemInArray = (array, fromIndex, toIndex) => {
|
|
3480
|
+
const arrLength = array.length;
|
|
3481
|
+
const sortArr = [...array];
|
|
3482
|
+
if (fromIndex > -1 && fromIndex < arrLength) {
|
|
3483
|
+
const moveItem = sortArr.splice(fromIndex, 1)[0];
|
|
3484
|
+
sortArr.splice(toIndex, 0, moveItem);
|
|
3485
|
+
}
|
|
3486
|
+
return sortArr;
|
|
3487
|
+
};
|
|
3488
|
+
|
|
3489
|
+
var __defProp$7 = Object.defineProperty;
|
|
3490
|
+
var __defProps$7 = Object.defineProperties;
|
|
3491
|
+
var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
|
|
3492
|
+
var __getOwnPropSymbols$7 = Object.getOwnPropertySymbols;
|
|
3493
|
+
var __hasOwnProp$7 = Object.prototype.hasOwnProperty;
|
|
3494
|
+
var __propIsEnum$7 = Object.prototype.propertyIsEnumerable;
|
|
3495
|
+
var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3496
|
+
var __spreadValues$7 = (a, b) => {
|
|
3497
|
+
for (var prop in b || (b = {}))
|
|
3498
|
+
if (__hasOwnProp$7.call(b, prop))
|
|
3499
|
+
__defNormalProp$7(a, prop, b[prop]);
|
|
3500
|
+
if (__getOwnPropSymbols$7)
|
|
3501
|
+
for (var prop of __getOwnPropSymbols$7(b)) {
|
|
3502
|
+
if (__propIsEnum$7.call(b, prop))
|
|
3503
|
+
__defNormalProp$7(a, prop, b[prop]);
|
|
3504
|
+
}
|
|
3505
|
+
return a;
|
|
3506
|
+
};
|
|
3507
|
+
var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
|
|
3508
|
+
var __objRest = (source, exclude) => {
|
|
3509
|
+
var target = {};
|
|
3510
|
+
for (var prop in source)
|
|
3511
|
+
if (__hasOwnProp$7.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3512
|
+
target[prop] = source[prop];
|
|
3513
|
+
if (source != null && __getOwnPropSymbols$7)
|
|
3514
|
+
for (var prop of __getOwnPropSymbols$7(source)) {
|
|
3515
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$7.call(source, prop))
|
|
3516
|
+
target[prop] = source[prop];
|
|
3517
|
+
}
|
|
3518
|
+
return target;
|
|
3519
|
+
};
|
|
3520
|
+
const AddRowButton = (props) => {
|
|
3521
|
+
const {
|
|
3522
|
+
config: { maximum, className, CustomizedButton, buttonProps, text },
|
|
3523
|
+
columns,
|
|
3524
|
+
updateData,
|
|
3525
|
+
data
|
|
3526
|
+
} = props;
|
|
3527
|
+
const _a = buttonProps || {}, {
|
|
3528
|
+
disabled: disabledFromProp,
|
|
3529
|
+
onClick
|
|
3530
|
+
} = _a, restButtonProps = __objRest(_a, [
|
|
3531
|
+
"disabled",
|
|
3532
|
+
"onClick"
|
|
3533
|
+
]);
|
|
3534
|
+
const onAdd = (e, data2) => {
|
|
3535
|
+
const newData = [...data2];
|
|
3536
|
+
const newRow = genEmptyRow(columns);
|
|
3537
|
+
newData.push(newRow);
|
|
3538
|
+
updateData(newData);
|
|
3539
|
+
onClick == null ? void 0 : onClick(e);
|
|
3540
|
+
};
|
|
3541
|
+
const disabled = React.useMemo(
|
|
3542
|
+
() => disabledFromProp || typeof maximum === "number" && maximum <= data.length,
|
|
3543
|
+
[maximum, data.length, disabledFromProp]
|
|
3544
|
+
);
|
|
3545
|
+
const CustomizedButtonText = React.useMemo(() => {
|
|
3546
|
+
if (!text)
|
|
3547
|
+
return null;
|
|
3548
|
+
if (typeof text === "string")
|
|
3549
|
+
return text;
|
|
3550
|
+
return text();
|
|
3551
|
+
}, [text]);
|
|
3552
|
+
if (!columns.length) {
|
|
3553
|
+
return null;
|
|
3554
|
+
}
|
|
3555
|
+
return CustomizedButton ? /* @__PURE__ */ React.createElement(CustomizedButton, __spreadValues$7({}, props)) : /* @__PURE__ */ React.createElement(AddRowButtonWrapper, { className }, /* @__PURE__ */ React.createElement(
|
|
3556
|
+
Button,
|
|
3557
|
+
__spreadProps$7(__spreadValues$7({}, restButtonProps), {
|
|
3558
|
+
type: restButtonProps.type || "ordinary",
|
|
3559
|
+
size: restButtonProps.size || "small",
|
|
3560
|
+
icon: restButtonProps.icon || /* @__PURE__ */ React.createElement(icons.PlusOutlined, null),
|
|
3561
|
+
className: core.cx(Typo.Label.l3_regular, restButtonProps.className),
|
|
3562
|
+
onClick: (e) => {
|
|
3563
|
+
onAdd(e, data);
|
|
3564
|
+
},
|
|
3565
|
+
disabled
|
|
3566
|
+
}),
|
|
3567
|
+
CustomizedButtonText || parrot.parrotI18n.t("components.add")
|
|
3568
|
+
), typeof maximum === "number" ? /* @__PURE__ */ React.createElement(
|
|
3569
|
+
"span",
|
|
3570
|
+
{
|
|
3571
|
+
className: core.cx(
|
|
3572
|
+
Typo.Label.l4_regular,
|
|
3573
|
+
"maximum-desc",
|
|
3574
|
+
disabled && "disabled"
|
|
3575
|
+
)
|
|
3576
|
+
},
|
|
3577
|
+
parrot.parrotI18n.t("components.maximum_row_count_desc", {
|
|
3578
|
+
count: maximum
|
|
3579
|
+
})
|
|
3580
|
+
) : null);
|
|
3581
|
+
};
|
|
3582
|
+
|
|
3583
|
+
const AffixColumnHeaderCell = ({ data, column, onChange, onBlur }) => {
|
|
3584
|
+
const [suffix, setSuffix] = React.useState("");
|
|
3585
|
+
const [prefix, setPrefix] = React.useState("");
|
|
3586
|
+
const onPrefixChange = React.useCallback(
|
|
3587
|
+
(e) => {
|
|
3588
|
+
const newPrefix = e.target.value;
|
|
3589
|
+
setPrefix(newPrefix);
|
|
3590
|
+
onChange(newPrefix + suffix);
|
|
3591
|
+
},
|
|
3592
|
+
[suffix, onChange]
|
|
3593
|
+
);
|
|
3594
|
+
const onSuffixChange = React.useCallback(
|
|
3595
|
+
(e) => {
|
|
3596
|
+
const newSuffix = e.target.value;
|
|
3597
|
+
setSuffix(newSuffix);
|
|
3598
|
+
onChange(prefix + newSuffix);
|
|
3599
|
+
},
|
|
3600
|
+
[prefix, onChange]
|
|
3601
|
+
);
|
|
3602
|
+
return /* @__PURE__ */ React.createElement(antd.Space, null, !column.disablePrefix ? /* @__PURE__ */ React.createElement(
|
|
3603
|
+
antd.Input,
|
|
3604
|
+
{
|
|
3605
|
+
value: prefix,
|
|
3606
|
+
placeholder: parrot.parrotI18n.t("components.prefix"),
|
|
3607
|
+
size: "small",
|
|
3608
|
+
onChange: onPrefixChange,
|
|
3609
|
+
onBlur
|
|
3610
|
+
}
|
|
3611
|
+
) : void 0, !column.disableSuffix ? /* @__PURE__ */ React.createElement(
|
|
3612
|
+
antd.Input,
|
|
3613
|
+
{
|
|
3614
|
+
value: suffix,
|
|
3615
|
+
placeholder: parrot.parrotI18n.t("components.suffix"),
|
|
3616
|
+
size: "small",
|
|
3617
|
+
onChange: onSuffixChange,
|
|
3618
|
+
onBlur
|
|
3619
|
+
}
|
|
3620
|
+
) : void 0);
|
|
3621
|
+
};
|
|
3622
|
+
|
|
3623
|
+
const CheckboxColumnBodyCell = ({ data, column, index, onChange }) => {
|
|
3624
|
+
const value = data[index][column.key] === void 0 ? column.defaultValue : data[index][column.key];
|
|
3625
|
+
const _onChange = React.useCallback(
|
|
3626
|
+
(e) => {
|
|
3627
|
+
onChange(e.target.checked);
|
|
3628
|
+
},
|
|
3629
|
+
[onChange]
|
|
3630
|
+
);
|
|
3631
|
+
const defaultChecked = column.defaultValue;
|
|
3632
|
+
return /* @__PURE__ */ React.createElement(
|
|
3633
|
+
antd.Checkbox,
|
|
3634
|
+
{
|
|
3635
|
+
checked: value,
|
|
3636
|
+
onChange: _onChange,
|
|
3637
|
+
defaultChecked
|
|
3638
|
+
}
|
|
3639
|
+
);
|
|
3640
|
+
};
|
|
3641
|
+
|
|
3642
|
+
var __defProp$6 = Object.defineProperty;
|
|
3643
|
+
var __defProps$6 = Object.defineProperties;
|
|
3644
|
+
var __getOwnPropDescs$6 = Object.getOwnPropertyDescriptors;
|
|
3645
|
+
var __getOwnPropSymbols$6 = Object.getOwnPropertySymbols;
|
|
3646
|
+
var __hasOwnProp$6 = Object.prototype.hasOwnProperty;
|
|
3647
|
+
var __propIsEnum$6 = Object.prototype.propertyIsEnumerable;
|
|
3648
|
+
var __defNormalProp$6 = (obj, key, value) => key in obj ? __defProp$6(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3649
|
+
var __spreadValues$6 = (a, b) => {
|
|
3650
|
+
for (var prop in b || (b = {}))
|
|
3651
|
+
if (__hasOwnProp$6.call(b, prop))
|
|
3652
|
+
__defNormalProp$6(a, prop, b[prop]);
|
|
3653
|
+
if (__getOwnPropSymbols$6)
|
|
3654
|
+
for (var prop of __getOwnPropSymbols$6(b)) {
|
|
3655
|
+
if (__propIsEnum$6.call(b, prop))
|
|
3656
|
+
__defNormalProp$6(a, prop, b[prop]);
|
|
3657
|
+
}
|
|
3658
|
+
return a;
|
|
3659
|
+
};
|
|
3660
|
+
var __spreadProps$6 = (a, b) => __defProps$6(a, __getOwnPropDescs$6(b));
|
|
3661
|
+
const InputPassword = (props) => {
|
|
3662
|
+
const [showPassword, setShowPassword] = React.useState(false);
|
|
3663
|
+
React.useEffect(() => {
|
|
3664
|
+
if (props.visible !== void 0) {
|
|
3665
|
+
setShowPassword(props.visible);
|
|
3666
|
+
}
|
|
3667
|
+
}, [props.visible]);
|
|
3668
|
+
const toggleShowPassword = () => {
|
|
3669
|
+
var _a;
|
|
3670
|
+
setShowPassword(!showPassword);
|
|
3671
|
+
(_a = props == null ? void 0 : props.onVisibleChange) == null ? void 0 : _a.call(props, !showPassword);
|
|
3672
|
+
};
|
|
3673
|
+
const inputType = showPassword ? "text" : "password";
|
|
3674
|
+
return /* @__PURE__ */ React.createElement(
|
|
3675
|
+
antd.Input,
|
|
3676
|
+
__spreadProps$6(__spreadValues$6({}, props), {
|
|
3677
|
+
type: inputType,
|
|
3678
|
+
suffix: showPassword ? /* @__PURE__ */ React.createElement(
|
|
3679
|
+
icons.EyeOutlined,
|
|
3680
|
+
{
|
|
3681
|
+
className: "ant-input-password-icon",
|
|
3682
|
+
onClick: toggleShowPassword
|
|
3683
|
+
}
|
|
3684
|
+
) : /* @__PURE__ */ React.createElement(
|
|
3685
|
+
icons.EyeInvisibleOutlined,
|
|
3686
|
+
{
|
|
3687
|
+
className: "ant-input-password-icon",
|
|
3688
|
+
onClick: toggleShowPassword
|
|
3689
|
+
}
|
|
3690
|
+
)
|
|
3691
|
+
})
|
|
3692
|
+
);
|
|
3693
|
+
};
|
|
3694
|
+
const CustomInput = (props) => {
|
|
3695
|
+
if (props.type === "password") {
|
|
3696
|
+
return /* @__PURE__ */ React.createElement(InputPassword, __spreadValues$6({}, props));
|
|
3697
|
+
}
|
|
3698
|
+
return /* @__PURE__ */ React.createElement(antd.Input, __spreadValues$6({}, props));
|
|
3699
|
+
};
|
|
3700
|
+
const InputColumnHeaderCell = ({ disabled, column, onChange, onBlur, onVisibleChange }) => {
|
|
3701
|
+
const _onChange = (e) => {
|
|
3702
|
+
const newValue = e.target.value;
|
|
3703
|
+
onChange(newValue);
|
|
3704
|
+
};
|
|
3705
|
+
return /* @__PURE__ */ React.createElement(
|
|
3706
|
+
CustomInput,
|
|
3707
|
+
{
|
|
3708
|
+
type: column.type,
|
|
3709
|
+
placeholder: column.placeholder,
|
|
3710
|
+
disabled,
|
|
3711
|
+
size: "small",
|
|
3712
|
+
onChange: _onChange,
|
|
3713
|
+
onBlur,
|
|
3714
|
+
onVisibleChange
|
|
3715
|
+
}
|
|
3716
|
+
);
|
|
3717
|
+
};
|
|
3718
|
+
const InputColumnBodyCell = ({
|
|
3719
|
+
data,
|
|
3720
|
+
latestData,
|
|
3721
|
+
column,
|
|
3722
|
+
index,
|
|
3723
|
+
disabled,
|
|
3724
|
+
onChange,
|
|
3725
|
+
onBlur,
|
|
3726
|
+
visible
|
|
3727
|
+
}) => {
|
|
3728
|
+
const placeHolderValue = column.type === "password" ? "" : latestData[index][column.key];
|
|
3729
|
+
const _onChange = (e) => {
|
|
3730
|
+
const newValue = e.target.value;
|
|
3731
|
+
onChange(newValue);
|
|
3732
|
+
};
|
|
3733
|
+
return /* @__PURE__ */ React.createElement(
|
|
3734
|
+
CustomInput,
|
|
3735
|
+
{
|
|
3736
|
+
size: "small",
|
|
3737
|
+
value: data[index][column.key],
|
|
3738
|
+
type: column.type,
|
|
3739
|
+
defaultValue: column.defaultValue,
|
|
3740
|
+
disabled,
|
|
3741
|
+
placeholder: placeHolderValue || column.placeholder,
|
|
3742
|
+
onChange: _onChange,
|
|
3743
|
+
onBlur,
|
|
3744
|
+
visible
|
|
3745
|
+
}
|
|
3746
|
+
);
|
|
3747
|
+
};
|
|
3748
|
+
|
|
3749
|
+
const TextColumnHeaderCell = ({
|
|
3750
|
+
column
|
|
3751
|
+
}) => {
|
|
3752
|
+
return /* @__PURE__ */ React.createElement(
|
|
3753
|
+
"p",
|
|
3754
|
+
{
|
|
3755
|
+
className: core.cx(Typo.Label.l4_regular, SubtitleStyle, column.subTitleColor)
|
|
3756
|
+
},
|
|
3757
|
+
column.subTitle
|
|
3758
|
+
);
|
|
3759
|
+
};
|
|
3760
|
+
const TextColumnBodyCell = ({
|
|
3761
|
+
data,
|
|
3762
|
+
column,
|
|
3763
|
+
index
|
|
3764
|
+
}) => {
|
|
3765
|
+
const text = column.displayText || data[index][column.key];
|
|
3766
|
+
const CellDescription = React.useMemo(() => {
|
|
3767
|
+
var _a, _b;
|
|
3768
|
+
const Result = (_b = (_a = column.renderDescription) == null ? void 0 : _a.call(column, {
|
|
3769
|
+
rowIndex: index,
|
|
3770
|
+
rowData: data[index]
|
|
3771
|
+
})) != null ? _b : null;
|
|
3772
|
+
return typeof Result === "string" ? /* @__PURE__ */ React.createElement("p", { className: core.cx(Typo.Label.l4_regular, "cell-description") }, Result) : Result;
|
|
3773
|
+
}, [index, data, column]);
|
|
3774
|
+
const Text = React.useMemo(
|
|
3775
|
+
() => /* @__PURE__ */ React.createElement("p", { className: core.cx(Typo.Label.l3_regular, BodyCellTextStyle) }, text),
|
|
3776
|
+
[text]
|
|
3777
|
+
);
|
|
3778
|
+
return /* @__PURE__ */ React.createElement(
|
|
3779
|
+
BodyCellTextWrapper,
|
|
3780
|
+
{
|
|
3781
|
+
className: !!CellDescription ? "with-description" : void 0
|
|
3782
|
+
},
|
|
3783
|
+
Text,
|
|
3784
|
+
CellDescription
|
|
3785
|
+
);
|
|
3786
|
+
};
|
|
3787
|
+
|
|
3788
|
+
const ColumnHeaderImpls = {
|
|
3789
|
+
text: TextColumnHeaderCell,
|
|
3790
|
+
input: InputColumnHeaderCell,
|
|
3791
|
+
password: InputColumnHeaderCell,
|
|
3792
|
+
affix: AffixColumnHeaderCell,
|
|
3793
|
+
checkbox: TextColumnHeaderCell
|
|
3794
|
+
};
|
|
3795
|
+
const ColumnBodyImpls = {
|
|
3796
|
+
text: TextColumnBodyCell,
|
|
3797
|
+
input: InputColumnBodyCell,
|
|
3798
|
+
password: InputColumnBodyCell,
|
|
3799
|
+
affix: InputColumnBodyCell,
|
|
3800
|
+
checkbox: CheckboxColumnBodyCell
|
|
3801
|
+
};
|
|
3802
|
+
|
|
3803
|
+
const FormItemStyle = "feau332";
|
|
3804
|
+
const FormItem = props => {
|
|
3805
|
+
const {
|
|
3806
|
+
validateStatus,
|
|
3807
|
+
message,
|
|
3808
|
+
children
|
|
3809
|
+
} = props;
|
|
3810
|
+
return /* @__PURE__ */React.createElement(antd.Form.Item, {
|
|
3811
|
+
className: FormItemStyle,
|
|
3812
|
+
validateStatus,
|
|
3813
|
+
help: validateStatus ? message : ""
|
|
3814
|
+
}, children);
|
|
3815
|
+
};
|
|
3816
|
+
|
|
3817
|
+
var __defProp$5 = Object.defineProperty;
|
|
3818
|
+
var __defProps$5 = Object.defineProperties;
|
|
3819
|
+
var __getOwnPropDescs$5 = Object.getOwnPropertyDescriptors;
|
|
3820
|
+
var __getOwnPropSymbols$5 = Object.getOwnPropertySymbols;
|
|
3821
|
+
var __hasOwnProp$5 = Object.prototype.hasOwnProperty;
|
|
3822
|
+
var __propIsEnum$5 = Object.prototype.propertyIsEnumerable;
|
|
3823
|
+
var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3824
|
+
var __spreadValues$5 = (a, b) => {
|
|
3825
|
+
for (var prop in b || (b = {}))
|
|
3826
|
+
if (__hasOwnProp$5.call(b, prop))
|
|
3827
|
+
__defNormalProp$5(a, prop, b[prop]);
|
|
3828
|
+
if (__getOwnPropSymbols$5)
|
|
3829
|
+
for (var prop of __getOwnPropSymbols$5(b)) {
|
|
3830
|
+
if (__propIsEnum$5.call(b, prop))
|
|
3831
|
+
__defNormalProp$5(a, prop, b[prop]);
|
|
3832
|
+
}
|
|
3833
|
+
return a;
|
|
3834
|
+
};
|
|
3835
|
+
var __spreadProps$5 = (a, b) => __defProps$5(a, __getOwnPropDescs$5(b));
|
|
3836
|
+
const TableFormBodyCell = (props) => {
|
|
3837
|
+
const {
|
|
3838
|
+
column,
|
|
3839
|
+
disabled,
|
|
3840
|
+
index: rowIndex,
|
|
3841
|
+
data,
|
|
3842
|
+
onChange,
|
|
3843
|
+
latestData,
|
|
3844
|
+
isRowError,
|
|
3845
|
+
onBlur
|
|
3846
|
+
} = props;
|
|
3847
|
+
const width = typeof column.width === "number" ? column.width + "px" : column.width;
|
|
3848
|
+
const _onChange = React.useCallback(
|
|
3849
|
+
(value, data2) => {
|
|
3850
|
+
const newData = data2.map(
|
|
3851
|
+
(row, i) => i === rowIndex ? __spreadProps$5(__spreadValues$5({}, row), { [column.key]: value }) : row
|
|
3852
|
+
);
|
|
3853
|
+
onChange == null ? void 0 : onChange(newData, rowIndex, column.key);
|
|
3854
|
+
},
|
|
3855
|
+
[rowIndex, onChange, column]
|
|
3856
|
+
);
|
|
3857
|
+
const _onBlur = React.useCallback(() => {
|
|
3858
|
+
onBlur == null ? void 0 : onBlur(data, rowIndex, column.key);
|
|
3859
|
+
}, [rowIndex, column, onBlur, data]);
|
|
3860
|
+
const renderDefaultComponent = () => {
|
|
3861
|
+
if (!column.type)
|
|
3862
|
+
return null;
|
|
3863
|
+
const CellComponent = ColumnBodyImpls[column.type];
|
|
3864
|
+
return /* @__PURE__ */ React.createElement(
|
|
3865
|
+
CellComponent,
|
|
3866
|
+
__spreadProps$5(__spreadValues$5({}, props), {
|
|
3867
|
+
customData: column.customData,
|
|
3868
|
+
onChange: (val) => {
|
|
3869
|
+
_onChange(val, data);
|
|
3870
|
+
},
|
|
3871
|
+
onBlur: _onBlur
|
|
3872
|
+
})
|
|
3873
|
+
);
|
|
3874
|
+
};
|
|
3875
|
+
const Cell = column.render ? column.render({
|
|
3876
|
+
isHeader: false,
|
|
3877
|
+
disabled,
|
|
3878
|
+
placeholder: props.placeholderValue || latestData[rowIndex][column.key],
|
|
3879
|
+
value: data[rowIndex][column.key],
|
|
3880
|
+
onChange: (val) => {
|
|
3881
|
+
_onChange(val, data);
|
|
3882
|
+
},
|
|
3883
|
+
onBlur: _onBlur,
|
|
3884
|
+
rowIndex
|
|
3885
|
+
}) : renderDefaultComponent();
|
|
3886
|
+
const CellDescription = React.useMemo(() => {
|
|
3887
|
+
var _a;
|
|
3888
|
+
if (column.type === "text")
|
|
3889
|
+
return null;
|
|
3890
|
+
const Result = ((_a = column.renderDescription) == null ? void 0 : _a.call(column, {
|
|
3891
|
+
rowIndex,
|
|
3892
|
+
rowData: data[rowIndex],
|
|
3893
|
+
latestData
|
|
3894
|
+
})) || null;
|
|
3895
|
+
return typeof Result === "string" ? /* @__PURE__ */ React.createElement("p", { className: core.cx(Typo.Label.l4_regular, "cell-description") }, Result) : Result;
|
|
3896
|
+
}, [rowIndex, data, latestData, column]);
|
|
3897
|
+
const validateResult = React.useMemo(() => {
|
|
3898
|
+
var _a;
|
|
3899
|
+
if (isRowError) {
|
|
3900
|
+
return {
|
|
3901
|
+
msg: "",
|
|
3902
|
+
isError: true
|
|
3903
|
+
};
|
|
3904
|
+
}
|
|
3905
|
+
const value = data[rowIndex][column.key];
|
|
3906
|
+
const result = (_a = column.validator) == null ? void 0 : _a.call(column, {
|
|
3907
|
+
value,
|
|
3908
|
+
rowIndex,
|
|
3909
|
+
rowData: data[rowIndex]
|
|
3910
|
+
});
|
|
3911
|
+
if (typeof result === "string" && result) {
|
|
3912
|
+
return { msg: result, isError: true };
|
|
3913
|
+
}
|
|
3914
|
+
}, [data, column, rowIndex, isRowError]);
|
|
3915
|
+
return /* @__PURE__ */ React.createElement(
|
|
3916
|
+
"div",
|
|
3917
|
+
{
|
|
3918
|
+
className: core.cx("eagle-table-form-cell", `align-${column.align || "left"}`),
|
|
3919
|
+
style: {
|
|
3920
|
+
maxWidth: column.width ? width : "",
|
|
3921
|
+
minWidth: column.width ? width : "",
|
|
3922
|
+
visibility: column.hidden ? "hidden" : "visible"
|
|
3923
|
+
}
|
|
3924
|
+
},
|
|
3925
|
+
/* @__PURE__ */ React.createElement(
|
|
3926
|
+
FormItem,
|
|
3927
|
+
{
|
|
3928
|
+
validateStatus: (validateResult == null ? void 0 : validateResult.isError) ? "error" : "",
|
|
3929
|
+
message: (validateResult == null ? void 0 : validateResult.isError) && validateResult.msg ? validateResult.msg : void 0
|
|
3930
|
+
},
|
|
3931
|
+
Cell
|
|
3932
|
+
),
|
|
3933
|
+
CellDescription
|
|
3934
|
+
);
|
|
3935
|
+
};
|
|
3936
|
+
|
|
3937
|
+
var __defProp$4 = Object.defineProperty;
|
|
3938
|
+
var __defProps$4 = Object.defineProperties;
|
|
3939
|
+
var __getOwnPropDescs$4 = Object.getOwnPropertyDescriptors;
|
|
3940
|
+
var __getOwnPropSymbols$4 = Object.getOwnPropertySymbols;
|
|
3941
|
+
var __hasOwnProp$4 = Object.prototype.hasOwnProperty;
|
|
3942
|
+
var __propIsEnum$4 = Object.prototype.propertyIsEnumerable;
|
|
3943
|
+
var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3944
|
+
var __spreadValues$4 = (a, b) => {
|
|
3945
|
+
for (var prop in b || (b = {}))
|
|
3946
|
+
if (__hasOwnProp$4.call(b, prop))
|
|
3947
|
+
__defNormalProp$4(a, prop, b[prop]);
|
|
3948
|
+
if (__getOwnPropSymbols$4)
|
|
3949
|
+
for (var prop of __getOwnPropSymbols$4(b)) {
|
|
3950
|
+
if (__propIsEnum$4.call(b, prop))
|
|
3951
|
+
__defNormalProp$4(a, prop, b[prop]);
|
|
3952
|
+
}
|
|
3953
|
+
return a;
|
|
3954
|
+
};
|
|
3955
|
+
var __spreadProps$4 = (a, b) => __defProps$4(a, __getOwnPropDescs$4(b));
|
|
3956
|
+
const TableFormRow = (props) => {
|
|
3957
|
+
const {
|
|
3958
|
+
data,
|
|
3959
|
+
columns,
|
|
3960
|
+
latestData,
|
|
3961
|
+
disabled,
|
|
3962
|
+
passwordVisible,
|
|
3963
|
+
deletable,
|
|
3964
|
+
draggable,
|
|
3965
|
+
rowIndex,
|
|
3966
|
+
provided,
|
|
3967
|
+
snapshot,
|
|
3968
|
+
updateData,
|
|
3969
|
+
onBodyBlur,
|
|
3970
|
+
renderRowDescription,
|
|
3971
|
+
rowValidator
|
|
3972
|
+
} = props;
|
|
3973
|
+
const rowData = data[rowIndex];
|
|
3974
|
+
const deleteRow = (index, data2) => {
|
|
3975
|
+
const newData = [...data2];
|
|
3976
|
+
newData.splice(index, 1);
|
|
3977
|
+
updateData(newData);
|
|
3978
|
+
};
|
|
3979
|
+
const getRowActions = (index, rowDeletable) => {
|
|
3980
|
+
const isRowDeleteDisabled = rowDeletable === false;
|
|
3981
|
+
const DeleteIcon = /* @__PURE__ */ React.createElement(
|
|
3982
|
+
Icon,
|
|
3983
|
+
{
|
|
3984
|
+
className: core.cx("delete-row-icon", isRowDeleteDisabled && "disabled"),
|
|
3985
|
+
src: iconsReact.XmarkRemove16SecondaryIcon,
|
|
3986
|
+
hoverSrc: isRowDeleteDisabled ? void 0 : iconsReact.XmarkRemove16RegularRedIcon,
|
|
3987
|
+
onClick: () => {
|
|
3988
|
+
if (isRowDeleteDisabled)
|
|
3989
|
+
return;
|
|
3990
|
+
deleteRow(index, data);
|
|
3991
|
+
}
|
|
3992
|
+
}
|
|
3993
|
+
);
|
|
3994
|
+
const FinalRenderIcon = isRowDeleteDisabled ? DeleteIcon : /* @__PURE__ */ React.createElement(Tooltip, { title: parrot.parrotI18n.t("components.remove") }, DeleteIcon);
|
|
3995
|
+
return deletable ? [FinalRenderIcon] : void 0;
|
|
3996
|
+
};
|
|
3997
|
+
const RowValidateResult = React.useMemo(() => {
|
|
3998
|
+
const result = rowValidator == null ? void 0 : rowValidator(rowIndex, data[rowIndex]);
|
|
3999
|
+
if (typeof result === "string" && result) {
|
|
4000
|
+
return /* @__PURE__ */ React.createElement("p", { className: core.cx(Typo.Label.l4_regular, "row-error-message") }, result);
|
|
4001
|
+
}
|
|
4002
|
+
return null;
|
|
4003
|
+
}, [rowValidator, rowIndex, data]);
|
|
4004
|
+
const Cells = columns.map((col) => {
|
|
4005
|
+
return /* @__PURE__ */ React.createElement(
|
|
4006
|
+
TableFormBodyCell,
|
|
4007
|
+
{
|
|
4008
|
+
key: col.key,
|
|
4009
|
+
column: col,
|
|
4010
|
+
data,
|
|
4011
|
+
latestData,
|
|
4012
|
+
disabled,
|
|
4013
|
+
index: rowIndex,
|
|
4014
|
+
onChange: updateData,
|
|
4015
|
+
onBlur: onBodyBlur,
|
|
4016
|
+
visible: passwordVisible,
|
|
4017
|
+
isRowError: !!RowValidateResult
|
|
4018
|
+
}
|
|
4019
|
+
);
|
|
4020
|
+
});
|
|
4021
|
+
const DraggableHandle = React.useMemo(
|
|
4022
|
+
() => draggable && provided ? /* @__PURE__ */ React.createElement(DraggableHandleWrapper, __spreadValues$4({}, provided.dragHandleProps), /* @__PURE__ */ React.createElement(
|
|
4023
|
+
Icon,
|
|
4024
|
+
{
|
|
4025
|
+
src: iconsReact.HandlePoint816SecondaryIcon,
|
|
4026
|
+
hoverSrc: iconsReact.HandlePoint816BlueIcon
|
|
4027
|
+
}
|
|
4028
|
+
)) : null,
|
|
4029
|
+
[draggable, provided]
|
|
4030
|
+
);
|
|
4031
|
+
const RowDescription = React.useMemo(() => {
|
|
4032
|
+
const RenderResult = (renderRowDescription == null ? void 0 : renderRowDescription({
|
|
4033
|
+
rowIndex,
|
|
4034
|
+
rowData,
|
|
4035
|
+
latestData
|
|
4036
|
+
})) || null;
|
|
4037
|
+
return typeof RenderResult === "string" ? /* @__PURE__ */ React.createElement("p", { className: core.cx(Typo.Label.l4_regular, "row-description") }, RenderResult) : RenderResult;
|
|
4038
|
+
}, [rowIndex, rowData, latestData, renderRowDescription]);
|
|
4039
|
+
return /* @__PURE__ */ React.createElement(
|
|
4040
|
+
antd.List.Item,
|
|
4041
|
+
{
|
|
4042
|
+
key: rowIndex,
|
|
4043
|
+
className: core.cx(
|
|
4044
|
+
"eagle-table-form-row",
|
|
4045
|
+
(snapshot == null ? void 0 : snapshot.isDragging) && "isDragging"
|
|
4046
|
+
),
|
|
4047
|
+
actions: getRowActions(rowIndex, rowData.deletable)
|
|
4048
|
+
},
|
|
4049
|
+
DraggableHandle,
|
|
4050
|
+
Cells,
|
|
4051
|
+
RowValidateResult,
|
|
4052
|
+
RowDescription
|
|
4053
|
+
);
|
|
4054
|
+
};
|
|
4055
|
+
const TableFormBodyRows = React.memo((props) => {
|
|
4056
|
+
const { data, draggable, updateData } = props;
|
|
4057
|
+
const onDragEnd = React.useCallback(
|
|
4058
|
+
(result) => {
|
|
4059
|
+
var _a;
|
|
4060
|
+
const fromIndex = result.source.index;
|
|
4061
|
+
const toIndex = (_a = result.destination) == null ? void 0 : _a.index;
|
|
4062
|
+
if (typeof toIndex !== "number" || toIndex === fromIndex)
|
|
4063
|
+
return;
|
|
4064
|
+
const newData = moveItemInArray(data, fromIndex, toIndex);
|
|
4065
|
+
updateData(newData);
|
|
4066
|
+
},
|
|
4067
|
+
[data, updateData]
|
|
4068
|
+
);
|
|
4069
|
+
return draggable ? /* @__PURE__ */ React.createElement(reactBeautifulDnd.DragDropContext, { onDragEnd }, /* @__PURE__ */ React.createElement(reactBeautifulDnd.Droppable, { droppableId: "droppable" }, (provided) => /* @__PURE__ */ React.createElement(
|
|
4070
|
+
"div",
|
|
4071
|
+
__spreadValues$4({
|
|
4072
|
+
className: "draggable-container",
|
|
4073
|
+
ref: provided.innerRef
|
|
4074
|
+
}, provided.droppableProps),
|
|
4075
|
+
data.map((_d, i) => /* @__PURE__ */ React.createElement(
|
|
4076
|
+
reactBeautifulDnd.Draggable,
|
|
4077
|
+
{
|
|
4078
|
+
draggableId: `draggable-id-${i}`,
|
|
4079
|
+
key: `draggable-id-${i}`,
|
|
4080
|
+
index: i
|
|
4081
|
+
},
|
|
4082
|
+
(provided2, snapshot) => /* @__PURE__ */ React.createElement("div", __spreadValues$4({ ref: provided2.innerRef }, provided2.draggableProps), /* @__PURE__ */ React.createElement(
|
|
4083
|
+
TableFormRow,
|
|
4084
|
+
__spreadProps$4(__spreadValues$4({}, props), {
|
|
4085
|
+
rowIndex: i,
|
|
4086
|
+
provided: provided2,
|
|
4087
|
+
snapshot
|
|
4088
|
+
})
|
|
4089
|
+
))
|
|
4090
|
+
)),
|
|
4091
|
+
provided.placeholder
|
|
4092
|
+
))) : /* @__PURE__ */ React.createElement(React.Fragment, null, data.map((_d, i) => /* @__PURE__ */ React.createElement(TableFormRow, __spreadProps$4(__spreadValues$4({}, props), { rowIndex: i, key: `table-row-${i}` }))));
|
|
4093
|
+
});
|
|
4094
|
+
|
|
4095
|
+
var __defProp$3 = Object.defineProperty;
|
|
4096
|
+
var __defProps$3 = Object.defineProperties;
|
|
4097
|
+
var __getOwnPropDescs$3 = Object.getOwnPropertyDescriptors;
|
|
4098
|
+
var __getOwnPropSymbols$3 = Object.getOwnPropertySymbols;
|
|
4099
|
+
var __hasOwnProp$3 = Object.prototype.hasOwnProperty;
|
|
4100
|
+
var __propIsEnum$3 = Object.prototype.propertyIsEnumerable;
|
|
4101
|
+
var __defNormalProp$3 = (obj, key, value) => key in obj ? __defProp$3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4102
|
+
var __spreadValues$3 = (a, b) => {
|
|
4103
|
+
for (var prop in b || (b = {}))
|
|
4104
|
+
if (__hasOwnProp$3.call(b, prop))
|
|
4105
|
+
__defNormalProp$3(a, prop, b[prop]);
|
|
4106
|
+
if (__getOwnPropSymbols$3)
|
|
4107
|
+
for (var prop of __getOwnPropSymbols$3(b)) {
|
|
4108
|
+
if (__propIsEnum$3.call(b, prop))
|
|
4109
|
+
__defNormalProp$3(a, prop, b[prop]);
|
|
4110
|
+
}
|
|
4111
|
+
return a;
|
|
4112
|
+
};
|
|
4113
|
+
var __spreadProps$3 = (a, b) => __defProps$3(a, __getOwnPropDescs$3(b));
|
|
4114
|
+
const BatchInputListHeaderCell = (props) => {
|
|
4115
|
+
const { column, disabled, data, disableBatchFilling, onBlur, onChange } = props;
|
|
4116
|
+
const [errMsg, setErrMsg] = React.useState();
|
|
4117
|
+
const width = Number.isNaN(Number(column.width)) ? column.width : column.width + "px";
|
|
4118
|
+
const headerOnChange = React.useCallback(
|
|
4119
|
+
(value) => {
|
|
4120
|
+
var _a;
|
|
4121
|
+
const err = (_a = column.validator) == null ? void 0 : _a.call(column, { value, isHeader: true });
|
|
4122
|
+
setErrMsg(err || void 0);
|
|
4123
|
+
const shouldAutoIncrease = column.type !== "password" && column.autoIncrease;
|
|
4124
|
+
const newData = data.map((cell, rowIndex) => {
|
|
4125
|
+
return __spreadProps$3(__spreadValues$3({}, cell), {
|
|
4126
|
+
[column.key]: shouldAutoIncrease && typeof value === "string" ? increaseLastNumber(value, rowIndex) : value
|
|
4127
|
+
});
|
|
4128
|
+
});
|
|
4129
|
+
onChange == null ? void 0 : onChange(newData, column.key);
|
|
4130
|
+
},
|
|
4131
|
+
[onChange, data, column]
|
|
4132
|
+
);
|
|
4133
|
+
const _onBlur = React.useCallback(() => {
|
|
4134
|
+
onBlur == null ? void 0 : onBlur(column.key, errMsg);
|
|
4135
|
+
}, [column.key, onBlur, errMsg]);
|
|
4136
|
+
const renderDefaultComponent = () => {
|
|
4137
|
+
if (!column.type)
|
|
4138
|
+
return null;
|
|
4139
|
+
const CellComponent = ColumnHeaderImpls[column.type];
|
|
4140
|
+
return /* @__PURE__ */ React.createElement(
|
|
4141
|
+
CellComponent,
|
|
4142
|
+
__spreadProps$3(__spreadValues$3({}, props), {
|
|
4143
|
+
column,
|
|
4144
|
+
onChange: headerOnChange,
|
|
4145
|
+
onBlur: _onBlur
|
|
4146
|
+
})
|
|
4147
|
+
);
|
|
4148
|
+
};
|
|
4149
|
+
const renderCell = () => column.render ? column.render({
|
|
4150
|
+
isHeader: true,
|
|
4151
|
+
disabled,
|
|
4152
|
+
onChange: headerOnChange,
|
|
4153
|
+
onBlur: _onBlur
|
|
4154
|
+
}) : renderDefaultComponent();
|
|
4155
|
+
return /* @__PURE__ */ React.createElement(
|
|
4156
|
+
"div",
|
|
4157
|
+
{
|
|
4158
|
+
className: core.cx("eagle-table-form-cell", `align-${column.align || "left"}`),
|
|
4159
|
+
style: {
|
|
4160
|
+
maxWidth: column.width ? width : "",
|
|
4161
|
+
minWidth: column.width ? width : "",
|
|
4162
|
+
visibility: column.hidden ? "hidden" : "visible"
|
|
4163
|
+
}
|
|
4164
|
+
},
|
|
4165
|
+
/* @__PURE__ */ React.createElement(
|
|
4166
|
+
FormItem,
|
|
4167
|
+
{
|
|
4168
|
+
validateStatus: typeof errMsg === "string" && errMsg ? "error" : "",
|
|
4169
|
+
message: errMsg || void 0
|
|
4170
|
+
},
|
|
4171
|
+
/* @__PURE__ */ React.createElement("p", { className: core.cx(Typo.Label.l3_bold_title, TitleStyle) }, column.title),
|
|
4172
|
+
disableBatchFilling ? null : renderCell()
|
|
4173
|
+
)
|
|
4174
|
+
);
|
|
4175
|
+
};
|
|
4176
|
+
|
|
4177
|
+
var __defProp$2 = Object.defineProperty;
|
|
4178
|
+
var __defProps$2 = Object.defineProperties;
|
|
4179
|
+
var __getOwnPropDescs$2 = Object.getOwnPropertyDescriptors;
|
|
4180
|
+
var __getOwnPropSymbols$2 = Object.getOwnPropertySymbols;
|
|
4181
|
+
var __hasOwnProp$2 = Object.prototype.hasOwnProperty;
|
|
4182
|
+
var __propIsEnum$2 = Object.prototype.propertyIsEnumerable;
|
|
4183
|
+
var __defNormalProp$2 = (obj, key, value) => key in obj ? __defProp$2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4184
|
+
var __spreadValues$2 = (a, b) => {
|
|
4185
|
+
for (var prop in b || (b = {}))
|
|
4186
|
+
if (__hasOwnProp$2.call(b, prop))
|
|
4187
|
+
__defNormalProp$2(a, prop, b[prop]);
|
|
4188
|
+
if (__getOwnPropSymbols$2)
|
|
4189
|
+
for (var prop of __getOwnPropSymbols$2(b)) {
|
|
4190
|
+
if (__propIsEnum$2.call(b, prop))
|
|
4191
|
+
__defNormalProp$2(a, prop, b[prop]);
|
|
4192
|
+
}
|
|
4193
|
+
return a;
|
|
4194
|
+
};
|
|
4195
|
+
var __spreadProps$2 = (a, b) => __defProps$2(a, __getOwnPropDescs$2(b));
|
|
4196
|
+
const DEFAULT_ROW_COUNT = 3;
|
|
4197
|
+
const TableForm = React.forwardRef(
|
|
4198
|
+
({
|
|
4199
|
+
defaultData,
|
|
4200
|
+
columns,
|
|
4201
|
+
disabled,
|
|
4202
|
+
rowAddConfig,
|
|
4203
|
+
deletable,
|
|
4204
|
+
size = "default",
|
|
4205
|
+
className,
|
|
4206
|
+
draggable,
|
|
4207
|
+
disableBatchFilling = false,
|
|
4208
|
+
rowSplitType = "border",
|
|
4209
|
+
renderRowDescription,
|
|
4210
|
+
rowValidator,
|
|
4211
|
+
onHeaderChange,
|
|
4212
|
+
onHeaderBlur,
|
|
4213
|
+
onBodyChange,
|
|
4214
|
+
onBodyBlur
|
|
4215
|
+
}, ref) => {
|
|
4216
|
+
const treatedDefaultData = React.useMemo(() => {
|
|
4217
|
+
return defaultData || [...Array(DEFAULT_ROW_COUNT)].map(() => genEmptyRow(columns));
|
|
4218
|
+
}, [defaultData, columns]);
|
|
4219
|
+
const [data, setData] = React.useState(treatedDefaultData);
|
|
4220
|
+
const [passwordVisible, setPasswordVisible] = React.useState(false);
|
|
4221
|
+
const [latestData, setLatestData] = React.useState(treatedDefaultData);
|
|
4222
|
+
const updateData = React.useCallback(
|
|
4223
|
+
(value, rowIndex, columnKey) => {
|
|
4224
|
+
setLatestData(value);
|
|
4225
|
+
setData(value);
|
|
4226
|
+
onBodyChange == null ? void 0 : onBodyChange(value, rowIndex, columnKey);
|
|
4227
|
+
},
|
|
4228
|
+
[onBodyChange]
|
|
4229
|
+
);
|
|
4230
|
+
const handleBatchChange = React.useCallback(
|
|
4231
|
+
(newData, columnKey) => {
|
|
4232
|
+
setLatestData(newData);
|
|
4233
|
+
onHeaderChange == null ? void 0 : onHeaderChange(newData, columnKey);
|
|
4234
|
+
},
|
|
4235
|
+
[onHeaderChange]
|
|
4236
|
+
);
|
|
4237
|
+
const handleBatchBlur = React.useCallback(
|
|
4238
|
+
(key, error) => {
|
|
4239
|
+
if (error) {
|
|
4240
|
+
const newData = latestData.map((cell) => {
|
|
4241
|
+
return __spreadProps$2(__spreadValues$2({}, cell), {
|
|
4242
|
+
[key]: ""
|
|
4243
|
+
});
|
|
4244
|
+
});
|
|
4245
|
+
setLatestData(newData);
|
|
4246
|
+
onHeaderBlur == null ? void 0 : onHeaderBlur(newData);
|
|
4247
|
+
} else {
|
|
4248
|
+
setData(latestData);
|
|
4249
|
+
onBodyChange == null ? void 0 : onBodyChange(latestData, void 0, key);
|
|
4250
|
+
onHeaderBlur == null ? void 0 : onHeaderBlur(latestData);
|
|
4251
|
+
}
|
|
4252
|
+
},
|
|
4253
|
+
[latestData, onHeaderBlur, onBodyChange]
|
|
4254
|
+
);
|
|
4255
|
+
React.useImperativeHandle(
|
|
4256
|
+
ref,
|
|
4257
|
+
() => ({
|
|
4258
|
+
setData: (data2) => {
|
|
4259
|
+
updateData(data2);
|
|
4260
|
+
}
|
|
4261
|
+
}),
|
|
4262
|
+
[updateData]
|
|
4263
|
+
);
|
|
4264
|
+
const headerCells = columns.map((col) => {
|
|
4265
|
+
return /* @__PURE__ */ React.createElement(
|
|
4266
|
+
BatchInputListHeaderCell,
|
|
4267
|
+
{
|
|
4268
|
+
key: col.key,
|
|
4269
|
+
data,
|
|
4270
|
+
latestData,
|
|
4271
|
+
disabled,
|
|
4272
|
+
column: col,
|
|
4273
|
+
disableBatchFilling,
|
|
4274
|
+
onChange: handleBatchChange,
|
|
4275
|
+
onBlur: handleBatchBlur,
|
|
4276
|
+
onVisibleChange: setPasswordVisible
|
|
4277
|
+
}
|
|
4278
|
+
);
|
|
4279
|
+
});
|
|
4280
|
+
return /* @__PURE__ */ React.createElement("div", { className }, /* @__PURE__ */ React.createElement(TableFormWrapper, { className: `table-form row-split-by-${rowSplitType}` }, /* @__PURE__ */ React.createElement(antd.List, { size, className: `size-${size}` }, /* @__PURE__ */ React.createElement(
|
|
4281
|
+
antd.List.Item,
|
|
4282
|
+
{
|
|
4283
|
+
className: "eagle-table-form-header",
|
|
4284
|
+
actions: deletable ? [/* @__PURE__ */ React.createElement(React.Fragment, null)] : void 0
|
|
4285
|
+
},
|
|
4286
|
+
draggable ? /* @__PURE__ */ React.createElement(DraggableHandleWrapper, null) : null,
|
|
4287
|
+
headerCells
|
|
4288
|
+
), /* @__PURE__ */ React.createElement(
|
|
4289
|
+
TableFormBodyRows,
|
|
4290
|
+
{
|
|
4291
|
+
data,
|
|
4292
|
+
latestData,
|
|
4293
|
+
columns,
|
|
4294
|
+
passwordVisible,
|
|
4295
|
+
deletable,
|
|
4296
|
+
disabled,
|
|
4297
|
+
draggable,
|
|
4298
|
+
rowSplitType,
|
|
4299
|
+
onBodyBlur,
|
|
4300
|
+
updateData,
|
|
4301
|
+
renderRowDescription,
|
|
4302
|
+
rowValidator
|
|
4303
|
+
}
|
|
4304
|
+
))), (rowAddConfig == null ? void 0 : rowAddConfig.addible) ? /* @__PURE__ */ React.createElement(
|
|
4305
|
+
AddRowButton,
|
|
4306
|
+
{
|
|
4307
|
+
config: rowAddConfig,
|
|
4308
|
+
updateData,
|
|
4309
|
+
columns,
|
|
4310
|
+
data
|
|
4311
|
+
}
|
|
4312
|
+
) : null);
|
|
4313
|
+
}
|
|
4314
|
+
);
|
|
4315
|
+
|
|
4316
|
+
const flatTimeZones = _.sortBy(_.uniqBy(TimeZones.reduce((sum, zone) => {
|
|
3298
4317
|
const utcZones = zone.utc.map(utc => {
|
|
3299
4318
|
return {
|
|
3300
4319
|
abbr: zone.abbr,
|
|
@@ -3450,13 +4469,14 @@
|
|
|
3450
4469
|
menuItemGroup: antd.Menu.ItemGroup,
|
|
3451
4470
|
layout: antd.Layout,
|
|
3452
4471
|
autoComplete: antd.AutoComplete,
|
|
3453
|
-
message,
|
|
4472
|
+
message: createBatchMessageMethods(),
|
|
3454
4473
|
tag: antd.Tag,
|
|
3455
4474
|
popover: antd.Popover,
|
|
3456
4475
|
arch: Arch,
|
|
3457
4476
|
buttonGroup: ButtonGroup,
|
|
3458
4477
|
steps: Steps,
|
|
3459
4478
|
form: antd.Form,
|
|
4479
|
+
formItem: antd.Form.Item,
|
|
3460
4480
|
simplePagination: SimplePagination,
|
|
3461
4481
|
space: antd.Space,
|
|
3462
4482
|
timeZoneSelect: TimeZoneSelect,
|
|
@@ -3464,7 +4484,10 @@
|
|
|
3464
4484
|
timelineItem: antd.Timeline.Item,
|
|
3465
4485
|
checkboxGroup: antd.Checkbox.Group,
|
|
3466
4486
|
typographyText: antd.Typography.Text,
|
|
3467
|
-
cascader: antd.Cascader
|
|
4487
|
+
cascader: antd.Cascader,
|
|
4488
|
+
upload: antd.Upload,
|
|
4489
|
+
datePickerRangePicker: antd.DatePicker.RangePicker,
|
|
4490
|
+
tableForm: TableForm
|
|
3468
4491
|
};
|
|
3469
4492
|
kit.option.isSelectOption = true;
|
|
3470
4493
|
kit.button.__ANT_BUTTON = true;
|
|
@@ -3524,32 +4547,32 @@
|
|
|
3524
4547
|
return dayjs(tick).format("MM/DD");
|
|
3525
4548
|
};
|
|
3526
4549
|
|
|
3527
|
-
var __defProp = Object.defineProperty;
|
|
3528
|
-
var __defProps = Object.defineProperties;
|
|
3529
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
3530
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
3531
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
3532
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
3533
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3534
|
-
var __spreadValues = (a, b) => {
|
|
4550
|
+
var __defProp$1 = Object.defineProperty;
|
|
4551
|
+
var __defProps$1 = Object.defineProperties;
|
|
4552
|
+
var __getOwnPropDescs$1 = Object.getOwnPropertyDescriptors;
|
|
4553
|
+
var __getOwnPropSymbols$1 = Object.getOwnPropertySymbols;
|
|
4554
|
+
var __hasOwnProp$1 = Object.prototype.hasOwnProperty;
|
|
4555
|
+
var __propIsEnum$1 = Object.prototype.propertyIsEnumerable;
|
|
4556
|
+
var __defNormalProp$1 = (obj, key, value) => key in obj ? __defProp$1(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4557
|
+
var __spreadValues$1 = (a, b) => {
|
|
3535
4558
|
for (var prop in b || (b = {}))
|
|
3536
|
-
if (__hasOwnProp.call(b, prop))
|
|
3537
|
-
__defNormalProp(a, prop, b[prop]);
|
|
3538
|
-
if (__getOwnPropSymbols)
|
|
3539
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
3540
|
-
if (__propIsEnum.call(b, prop))
|
|
3541
|
-
__defNormalProp(a, prop, b[prop]);
|
|
4559
|
+
if (__hasOwnProp$1.call(b, prop))
|
|
4560
|
+
__defNormalProp$1(a, prop, b[prop]);
|
|
4561
|
+
if (__getOwnPropSymbols$1)
|
|
4562
|
+
for (var prop of __getOwnPropSymbols$1(b)) {
|
|
4563
|
+
if (__propIsEnum$1.call(b, prop))
|
|
4564
|
+
__defNormalProp$1(a, prop, b[prop]);
|
|
3542
4565
|
}
|
|
3543
4566
|
return a;
|
|
3544
4567
|
};
|
|
3545
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
4568
|
+
var __spreadProps$1 = (a, b) => __defProps$1(a, __getOwnPropDescs$1(b));
|
|
3546
4569
|
const ModalStack = () => {
|
|
3547
4570
|
const stack = useKitSelector(
|
|
3548
4571
|
(state) => state.modal.stack
|
|
3549
4572
|
);
|
|
3550
4573
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, stack.map((modal) => /* @__PURE__ */ React.createElement(
|
|
3551
4574
|
modal.component,
|
|
3552
|
-
__spreadProps(__spreadValues({}, modal.props), {
|
|
4575
|
+
__spreadProps$1(__spreadValues$1({}, modal.props), {
|
|
3553
4576
|
modalId: modal.id,
|
|
3554
4577
|
onClose: () => {
|
|
3555
4578
|
var _a;
|
|
@@ -3588,10 +4611,37 @@
|
|
|
3588
4611
|
return TaskStatus2;
|
|
3589
4612
|
})(TaskStatus || {});
|
|
3590
4613
|
|
|
4614
|
+
var __defProp = Object.defineProperty;
|
|
4615
|
+
var __defProps = Object.defineProperties;
|
|
4616
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4617
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
4618
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
4619
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
4620
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4621
|
+
var __spreadValues = (a, b) => {
|
|
4622
|
+
for (var prop in b || (b = {}))
|
|
4623
|
+
if (__hasOwnProp.call(b, prop))
|
|
4624
|
+
__defNormalProp(a, prop, b[prop]);
|
|
4625
|
+
if (__getOwnPropSymbols)
|
|
4626
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
4627
|
+
if (__propIsEnum.call(b, prop))
|
|
4628
|
+
__defNormalProp(a, prop, b[prop]);
|
|
4629
|
+
}
|
|
4630
|
+
return a;
|
|
4631
|
+
};
|
|
4632
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
3591
4633
|
const kitContext = React.createContext(antdKit);
|
|
3592
4634
|
const UIKitProvider = (props) => {
|
|
3593
|
-
const { children, kit = antdKit } = props;
|
|
3594
|
-
|
|
4635
|
+
const { children, kit = antdKit, message } = props;
|
|
4636
|
+
const _kit = React.useMemo(() => {
|
|
4637
|
+
if ((message == null ? void 0 : message.batch) != null) {
|
|
4638
|
+
return __spreadProps(__spreadValues({}, kit), {
|
|
4639
|
+
message: createBatchMessageMethods(message.batch)
|
|
4640
|
+
});
|
|
4641
|
+
}
|
|
4642
|
+
return kit;
|
|
4643
|
+
}, [kit, message == null ? void 0 : message.batch]);
|
|
4644
|
+
return /* @__PURE__ */ React.createElement(kitContext.Provider, { value: _kit }, children);
|
|
3595
4645
|
};
|
|
3596
4646
|
const useUIKit = () => {
|
|
3597
4647
|
return React.useContext(kitContext);
|
|
@@ -3622,6 +4672,7 @@
|
|
|
3622
4672
|
exports.UserSource = UserSource;
|
|
3623
4673
|
exports.antdKit = antdKit;
|
|
3624
4674
|
exports.closeModal = closeModal;
|
|
4675
|
+
exports.createBatchMessageMethods = createBatchMessageMethods;
|
|
3625
4676
|
exports.kitContext = kitContext;
|
|
3626
4677
|
exports.popModal = popModal;
|
|
3627
4678
|
exports.pushModal = pushModal;
|