@cloudtower/eagle 0.27.3 → 0.27.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/index.d.ts +10 -0
- package/dist/components.css +1244 -1161
- package/dist/coreX/BarChart/BarChart.stories.d.ts +6 -0
- package/dist/coreX/BarChart/index.d.ts +10 -0
- package/dist/coreX/ChartWithTooltip/ChartWithTooltip.stories.d.ts +7 -0
- package/dist/coreX/ChartWithTooltip/index.d.ts +40 -0
- package/dist/coreX/DonutChart/DonutChart.stories.d.ts +6 -0
- package/dist/coreX/DonutChart/index.d.ts +12 -0
- package/dist/coreX/UnitWithChart/UnitWithChart.stories.d.ts +7 -0
- package/dist/coreX/UnitWithChart/index.d.ts +30 -0
- package/dist/esm/index.js +1600 -1299
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +7 -0
- package/dist/style.css +890 -807
- package/dist/umd/index.js +1590 -1289
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/tower.d.ts +1 -0
- package/package.json +5 -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('
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', '
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.index = {}, global.
|
|
5
|
-
})(this, (function (exports,
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react'), require('@linaria/core'), require('@cloudtower/parrot'), require('react-i18next'), require('antd'), require('@cloudtower/icons-react'), require('classnames'), require('linaria/react'), require('lodash'), require('react-svg-unique-id'), require('react-transition-group'), require('@linaria/react'), require('recharts'), require('dayjs'), require('linaria'), require('moment'), require('react-dom'), require('react-is'), require('@ant-design/icons'), require('dayjs/plugin/utc'), require('dayjs/plugin/customParseFormat'), require('@ant-design/icons/CheckCircleFilled'), require('@ant-design/icons/CloseCircleFilled'), require('@ant-design/icons/ExclamationCircleFilled'), require('@ant-design/icons/InfoCircleFilled'), require('@ant-design/icons/LoadingOutlined'), require('@cloudtower/rc-notification'), require('redux'), require('react-redux'), require('react-beautiful-dnd'), require('timezones.json'), require('antd/lib/locale/en_US'), require('antd/lib/locale/zh_CN')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', 'react', '@linaria/core', '@cloudtower/parrot', 'react-i18next', 'antd', '@cloudtower/icons-react', 'classnames', 'linaria/react', 'lodash', 'react-svg-unique-id', 'react-transition-group', '@linaria/react', 'recharts', 'dayjs', 'linaria', 'moment', 'react-dom', 'react-is', '@ant-design/icons', 'dayjs/plugin/utc', 'dayjs/plugin/customParseFormat', '@ant-design/icons/CheckCircleFilled', '@ant-design/icons/CloseCircleFilled', '@ant-design/icons/ExclamationCircleFilled', '@ant-design/icons/InfoCircleFilled', '@ant-design/icons/LoadingOutlined', '@cloudtower/rc-notification', 'redux', 'react-redux', 'react-beautiful-dnd', 'timezones.json', 'antd/lib/locale/en_US', 'antd/lib/locale/zh_CN'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.index = {}, global.React, global.core, global.parrot, global.reactI18next, global.antd, global.iconsReact, global.cs, global.react, global._, global.reactSvgUniqueId, global.reactTransitionGroup, global.react$1, global.recharts, global.dayjs, global.linaria, global.moment, global.reactDom, global.reactIs, global.icons, global.UTC, global.customParseFormat, global.CheckCircleFilled, global.CloseCircleFilled, global.ExclamationCircleFilled, global.InfoCircleFilled, global.LoadingOutlined, global.RCNotification, global.redux, global.reactRedux, global.reactBeautifulDnd, global.TimeZones, global.enUS, global.zhCN));
|
|
5
|
+
})(this, (function (exports, React, core, parrot, reactI18next, antd, iconsReact, cs, react, _, reactSvgUniqueId, reactTransitionGroup, react$1, recharts, dayjs, linaria, moment, reactDom, reactIs, icons, UTC, customParseFormat, CheckCircleFilled, CloseCircleFilled, ExclamationCircleFilled, InfoCircleFilled, LoadingOutlined, RCNotification, redux, reactRedux, reactBeautifulDnd, TimeZones, enUS, zhCN) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
8
8
|
|
|
@@ -41,6 +41,220 @@
|
|
|
41
41
|
var enUS__default = /*#__PURE__*/_interopDefault(enUS);
|
|
42
42
|
var zhCN__default = /*#__PURE__*/_interopDefault(zhCN);
|
|
43
43
|
|
|
44
|
+
const MAGIC_METRIC_NULL = -2;
|
|
45
|
+
function formatBits(bits, decimals = 2) {
|
|
46
|
+
if (bits <= 0 || bits === MAGIC_METRIC_NULL) {
|
|
47
|
+
return {
|
|
48
|
+
value: 0,
|
|
49
|
+
unit: "b"
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
const k = 1e3;
|
|
53
|
+
const units = ["b", "Kb", "Mb", "Gb", "Tb", "Pb"];
|
|
54
|
+
let i = Math.floor(Math.log(bits) / Math.log(k));
|
|
55
|
+
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
56
|
+
return {
|
|
57
|
+
value: parseFloat((bits / Math.pow(k, i)).toFixed(decimals)),
|
|
58
|
+
unit: units[i]
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
function formatFrequency(frequency, decimals = 2) {
|
|
62
|
+
if (frequency <= 0 || frequency === MAGIC_METRIC_NULL) {
|
|
63
|
+
return {
|
|
64
|
+
value: 0,
|
|
65
|
+
unit: "Hz"
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
const k = 1e3;
|
|
69
|
+
const units = ["Hz", "KHz", "MHz", "GHz", "THz"];
|
|
70
|
+
let i = Math.floor(Math.log(frequency) / Math.log(k));
|
|
71
|
+
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
72
|
+
return {
|
|
73
|
+
value: parseFloat((frequency / Math.pow(k, i)).toFixed(decimals)),
|
|
74
|
+
unit: units[i]
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
const SECOND = 1;
|
|
78
|
+
const MINUTE = 60 * SECOND;
|
|
79
|
+
const HOUR = 60 * MINUTE;
|
|
80
|
+
const DAY = 24 * HOUR;
|
|
81
|
+
const WEEK = 7 * DAY;
|
|
82
|
+
function formatSeconds(seconds, decimals = 0) {
|
|
83
|
+
if (seconds <= MAGIC_METRIC_NULL) {
|
|
84
|
+
seconds = 0;
|
|
85
|
+
}
|
|
86
|
+
const units = [
|
|
87
|
+
{
|
|
88
|
+
value: WEEK,
|
|
89
|
+
unit: "week"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
value: DAY,
|
|
93
|
+
unit: "day"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
value: HOUR,
|
|
97
|
+
unit: "hour"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
value: MINUTE,
|
|
101
|
+
unit: "minute"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
value: SECOND,
|
|
105
|
+
unit: "second"
|
|
106
|
+
}
|
|
107
|
+
];
|
|
108
|
+
for (const unit of units) {
|
|
109
|
+
if (seconds > unit.value) {
|
|
110
|
+
return {
|
|
111
|
+
value: parseFloat((seconds / unit.value).toFixed(decimals)),
|
|
112
|
+
unit: unit.unit
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
return {
|
|
117
|
+
value: parseFloat((seconds / SECOND).toFixed(decimals)),
|
|
118
|
+
unit: "second"
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
function formatBitPerSecond(input, decimals = 1) {
|
|
122
|
+
if (input <= 0 || input === MAGIC_METRIC_NULL) {
|
|
123
|
+
return {
|
|
124
|
+
value: 0,
|
|
125
|
+
unit: "bps"
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
const k = 1e3;
|
|
129
|
+
const units = ["bps", "Kbps", "Mbps", "Gbps", "Tbps"];
|
|
130
|
+
let i = Math.floor(Math.log(input) / Math.log(k));
|
|
131
|
+
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
132
|
+
return {
|
|
133
|
+
value: parseFloat((input / Math.pow(k, i)).toFixed(decimals)),
|
|
134
|
+
unit: units[i]
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
function formatBps(input, decimals = 1) {
|
|
138
|
+
if (input <= 0 || input === MAGIC_METRIC_NULL) {
|
|
139
|
+
return {
|
|
140
|
+
value: 0,
|
|
141
|
+
unit: "Bps"
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
const k = 1e3;
|
|
145
|
+
const units = ["Bps", "KBps", "MBps", "GBps", "TBps"];
|
|
146
|
+
let i = Math.floor(Math.log(input) / Math.log(k));
|
|
147
|
+
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
148
|
+
return {
|
|
149
|
+
value: parseFloat((input / Math.pow(k, i)).toFixed(decimals)),
|
|
150
|
+
unit: units[i]
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
function formatBytes(bytes, decimals = 2) {
|
|
154
|
+
if (bytes <= 0 || bytes === MAGIC_METRIC_NULL) {
|
|
155
|
+
return {
|
|
156
|
+
value: 0,
|
|
157
|
+
unit: "B"
|
|
158
|
+
};
|
|
159
|
+
}
|
|
160
|
+
const k = 1024;
|
|
161
|
+
const units = ["B", "KiB", "MiB", "GiB", "TiB", "PiB"];
|
|
162
|
+
let i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
163
|
+
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
164
|
+
return {
|
|
165
|
+
value: parseFloat((bytes / Math.pow(k, i)).toFixed(decimals)),
|
|
166
|
+
unit: units[i]
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
function formatPercent(input, decimals = 2, saturated = true) {
|
|
170
|
+
if (input === MAGIC_METRIC_NULL) {
|
|
171
|
+
input = 0;
|
|
172
|
+
}
|
|
173
|
+
if (saturated) {
|
|
174
|
+
if (input <= 0) {
|
|
175
|
+
input = 0;
|
|
176
|
+
}
|
|
177
|
+
if (input > 100) {
|
|
178
|
+
input = 100;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
const value = input.toFixed(decimals);
|
|
182
|
+
if (parseFloat(value) === 0 && input > 0) {
|
|
183
|
+
if (decimals >= 1) {
|
|
184
|
+
return {
|
|
185
|
+
value: `0.${"0".repeat(decimals - 1)}1`,
|
|
186
|
+
numberValue: parseFloat(`0.${"0".repeat(decimals - 1)}1`),
|
|
187
|
+
unit: "%"
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
return {
|
|
191
|
+
value: "1",
|
|
192
|
+
numberValue: 1,
|
|
193
|
+
unit: "%"
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
return {
|
|
197
|
+
value,
|
|
198
|
+
numberValue: parseFloat(input.toFixed(decimals)),
|
|
199
|
+
unit: "%"
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
function formatSpeed(input, decimals = 0) {
|
|
203
|
+
input /= 1e3;
|
|
204
|
+
if (input < 1)
|
|
205
|
+
return { value: "-", unit: "" };
|
|
206
|
+
const units = ["KbE", "MbE", "GbE", "TbE"];
|
|
207
|
+
const k = 1e3;
|
|
208
|
+
let i = Math.floor(Math.log(input) / Math.log(k));
|
|
209
|
+
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
210
|
+
return {
|
|
211
|
+
value: parseFloat((input / Math.pow(k, i)).toFixed(decimals)),
|
|
212
|
+
unit: units[i]
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
function isEmpty(rawValue) {
|
|
217
|
+
if (rawValue === null || rawValue === void 0 || rawValue === MAGIC_METRIC_NULL || Number.isNaN(rawValue) || !Number.isFinite(rawValue)) {
|
|
218
|
+
return true;
|
|
219
|
+
}
|
|
220
|
+
return false;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
const Empty = (props) => {
|
|
224
|
+
const { className, style } = props;
|
|
225
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", { className, style }, "-");
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
var __defProp$10 = Object.defineProperty;
|
|
229
|
+
var __getOwnPropSymbols$11 = Object.getOwnPropertySymbols;
|
|
230
|
+
var __hasOwnProp$11 = Object.prototype.hasOwnProperty;
|
|
231
|
+
var __propIsEnum$11 = Object.prototype.propertyIsEnumerable;
|
|
232
|
+
var __defNormalProp$10 = (obj, key, value) => key in obj ? __defProp$10(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
233
|
+
var __spreadValues$$ = (a, b) => {
|
|
234
|
+
for (var prop in b || (b = {}))
|
|
235
|
+
if (__hasOwnProp$11.call(b, prop))
|
|
236
|
+
__defNormalProp$10(a, prop, b[prop]);
|
|
237
|
+
if (__getOwnPropSymbols$11)
|
|
238
|
+
for (var prop of __getOwnPropSymbols$11(b)) {
|
|
239
|
+
if (__propIsEnum$11.call(b, prop))
|
|
240
|
+
__defNormalProp$10(a, prop, b[prop]);
|
|
241
|
+
}
|
|
242
|
+
return a;
|
|
243
|
+
};
|
|
244
|
+
const Bit = ({
|
|
245
|
+
rawValue,
|
|
246
|
+
decimals,
|
|
247
|
+
unitClassName,
|
|
248
|
+
valueClassName,
|
|
249
|
+
emptyProps
|
|
250
|
+
}) => {
|
|
251
|
+
if (isEmpty(rawValue)) {
|
|
252
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$$({}, emptyProps));
|
|
253
|
+
}
|
|
254
|
+
const { value, unit } = formatBits(rawValue, decimals);
|
|
255
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
256
|
+
};
|
|
257
|
+
|
|
44
258
|
var __defProp$$ = Object.defineProperty;
|
|
45
259
|
var __getOwnPropSymbols$10 = Object.getOwnPropertySymbols;
|
|
46
260
|
var __hasOwnProp$10 = Object.prototype.hasOwnProperty;
|
|
@@ -48,23 +262,250 @@
|
|
|
48
262
|
var __defNormalProp$$ = (obj, key, value) => key in obj ? __defProp$$(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
49
263
|
var __spreadValues$_ = (a, b) => {
|
|
50
264
|
for (var prop in b || (b = {}))
|
|
51
|
-
if (__hasOwnProp$10.call(b, prop))
|
|
52
|
-
__defNormalProp$$(a, prop, b[prop]);
|
|
53
|
-
if (__getOwnPropSymbols$10)
|
|
54
|
-
for (var prop of __getOwnPropSymbols$10(b)) {
|
|
55
|
-
if (__propIsEnum$10.call(b, prop))
|
|
56
|
-
__defNormalProp$$(a, prop, b[prop]);
|
|
265
|
+
if (__hasOwnProp$10.call(b, prop))
|
|
266
|
+
__defNormalProp$$(a, prop, b[prop]);
|
|
267
|
+
if (__getOwnPropSymbols$10)
|
|
268
|
+
for (var prop of __getOwnPropSymbols$10(b)) {
|
|
269
|
+
if (__propIsEnum$10.call(b, prop))
|
|
270
|
+
__defNormalProp$$(a, prop, b[prop]);
|
|
271
|
+
}
|
|
272
|
+
return a;
|
|
273
|
+
};
|
|
274
|
+
const BitPerSeconds = ({
|
|
275
|
+
rawValue,
|
|
276
|
+
decimals,
|
|
277
|
+
valueClassName,
|
|
278
|
+
unitClassName,
|
|
279
|
+
emptyProps
|
|
280
|
+
}) => {
|
|
281
|
+
if (isEmpty(rawValue)) {
|
|
282
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$_({}, emptyProps));
|
|
283
|
+
}
|
|
284
|
+
const { value, unit } = formatBitPerSecond(rawValue, decimals);
|
|
285
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
var __defProp$_ = Object.defineProperty;
|
|
289
|
+
var __getOwnPropSymbols$$ = Object.getOwnPropertySymbols;
|
|
290
|
+
var __hasOwnProp$$ = Object.prototype.hasOwnProperty;
|
|
291
|
+
var __propIsEnum$$ = Object.prototype.propertyIsEnumerable;
|
|
292
|
+
var __defNormalProp$_ = (obj, key, value) => key in obj ? __defProp$_(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
293
|
+
var __spreadValues$Z = (a, b) => {
|
|
294
|
+
for (var prop in b || (b = {}))
|
|
295
|
+
if (__hasOwnProp$$.call(b, prop))
|
|
296
|
+
__defNormalProp$_(a, prop, b[prop]);
|
|
297
|
+
if (__getOwnPropSymbols$$)
|
|
298
|
+
for (var prop of __getOwnPropSymbols$$(b)) {
|
|
299
|
+
if (__propIsEnum$$.call(b, prop))
|
|
300
|
+
__defNormalProp$_(a, prop, b[prop]);
|
|
301
|
+
}
|
|
302
|
+
return a;
|
|
303
|
+
};
|
|
304
|
+
const Bps = ({
|
|
305
|
+
rawValue,
|
|
306
|
+
decimals,
|
|
307
|
+
valueClassName,
|
|
308
|
+
unitClassName,
|
|
309
|
+
emptyProps
|
|
310
|
+
}) => {
|
|
311
|
+
if (isEmpty(rawValue)) {
|
|
312
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$Z({}, emptyProps));
|
|
313
|
+
}
|
|
314
|
+
const { value, unit } = formatBps(rawValue, decimals);
|
|
315
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
const useParrotTranslation = () => {
|
|
319
|
+
return reactI18next.useTranslation(void 0, {
|
|
320
|
+
i18n: parrot.parrotI18n
|
|
321
|
+
});
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
var __defProp$Z = Object.defineProperty;
|
|
325
|
+
var __getOwnPropSymbols$_ = Object.getOwnPropertySymbols;
|
|
326
|
+
var __hasOwnProp$_ = Object.prototype.hasOwnProperty;
|
|
327
|
+
var __propIsEnum$_ = Object.prototype.propertyIsEnumerable;
|
|
328
|
+
var __defNormalProp$Z = (obj, key, value) => key in obj ? __defProp$Z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
329
|
+
var __spreadValues$Y = (a, b) => {
|
|
330
|
+
for (var prop in b || (b = {}))
|
|
331
|
+
if (__hasOwnProp$_.call(b, prop))
|
|
332
|
+
__defNormalProp$Z(a, prop, b[prop]);
|
|
333
|
+
if (__getOwnPropSymbols$_)
|
|
334
|
+
for (var prop of __getOwnPropSymbols$_(b)) {
|
|
335
|
+
if (__propIsEnum$_.call(b, prop))
|
|
336
|
+
__defNormalProp$Z(a, prop, b[prop]);
|
|
337
|
+
}
|
|
338
|
+
return a;
|
|
339
|
+
};
|
|
340
|
+
const Byte = ({
|
|
341
|
+
rawValue,
|
|
342
|
+
noUnitOnZero,
|
|
343
|
+
decimals,
|
|
344
|
+
valueClassName,
|
|
345
|
+
unitClassName,
|
|
346
|
+
emptyProps
|
|
347
|
+
}) => {
|
|
348
|
+
const { t } = useParrotTranslation();
|
|
349
|
+
if (isEmpty(rawValue)) {
|
|
350
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$Y({}, emptyProps));
|
|
351
|
+
}
|
|
352
|
+
if (rawValue === -1) {
|
|
353
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, t("common.calculation"));
|
|
354
|
+
}
|
|
355
|
+
const { value, unit } = formatBytes(rawValue, decimals);
|
|
356
|
+
if (noUnitOnZero && value === 0) {
|
|
357
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", { className: "value" }, value);
|
|
358
|
+
}
|
|
359
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
360
|
+
};
|
|
361
|
+
|
|
362
|
+
var __defProp$Y = Object.defineProperty;
|
|
363
|
+
var __getOwnPropSymbols$Z = Object.getOwnPropertySymbols;
|
|
364
|
+
var __hasOwnProp$Z = Object.prototype.hasOwnProperty;
|
|
365
|
+
var __propIsEnum$Z = Object.prototype.propertyIsEnumerable;
|
|
366
|
+
var __defNormalProp$Y = (obj, key, value) => key in obj ? __defProp$Y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
367
|
+
var __spreadValues$X = (a, b) => {
|
|
368
|
+
for (var prop in b || (b = {}))
|
|
369
|
+
if (__hasOwnProp$Z.call(b, prop))
|
|
370
|
+
__defNormalProp$Y(a, prop, b[prop]);
|
|
371
|
+
if (__getOwnPropSymbols$Z)
|
|
372
|
+
for (var prop of __getOwnPropSymbols$Z(b)) {
|
|
373
|
+
if (__propIsEnum$Z.call(b, prop))
|
|
374
|
+
__defNormalProp$Y(a, prop, b[prop]);
|
|
375
|
+
}
|
|
376
|
+
return a;
|
|
377
|
+
};
|
|
378
|
+
const Frequency = ({
|
|
379
|
+
rawValue,
|
|
380
|
+
decimals,
|
|
381
|
+
valueClassName,
|
|
382
|
+
unitClassName,
|
|
383
|
+
emptyProps
|
|
384
|
+
}) => {
|
|
385
|
+
if (isEmpty(rawValue)) {
|
|
386
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$X({}, emptyProps));
|
|
387
|
+
}
|
|
388
|
+
const { value, unit } = formatFrequency(rawValue, decimals);
|
|
389
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
var __defProp$X = Object.defineProperty;
|
|
393
|
+
var __getOwnPropSymbols$Y = Object.getOwnPropertySymbols;
|
|
394
|
+
var __hasOwnProp$Y = Object.prototype.hasOwnProperty;
|
|
395
|
+
var __propIsEnum$Y = Object.prototype.propertyIsEnumerable;
|
|
396
|
+
var __defNormalProp$X = (obj, key, value) => key in obj ? __defProp$X(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
397
|
+
var __spreadValues$W = (a, b) => {
|
|
398
|
+
for (var prop in b || (b = {}))
|
|
399
|
+
if (__hasOwnProp$Y.call(b, prop))
|
|
400
|
+
__defNormalProp$X(a, prop, b[prop]);
|
|
401
|
+
if (__getOwnPropSymbols$Y)
|
|
402
|
+
for (var prop of __getOwnPropSymbols$Y(b)) {
|
|
403
|
+
if (__propIsEnum$Y.call(b, prop))
|
|
404
|
+
__defNormalProp$X(a, prop, b[prop]);
|
|
405
|
+
}
|
|
406
|
+
return a;
|
|
407
|
+
};
|
|
408
|
+
const Percent = ({
|
|
409
|
+
rawValue,
|
|
410
|
+
decimals,
|
|
411
|
+
saturated,
|
|
412
|
+
valueClassName,
|
|
413
|
+
unitClassName,
|
|
414
|
+
emptyProps
|
|
415
|
+
}) => {
|
|
416
|
+
if (isEmpty(rawValue)) {
|
|
417
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$W({}, emptyProps));
|
|
418
|
+
}
|
|
419
|
+
const { value, unit } = formatPercent(rawValue, decimals, saturated);
|
|
420
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, unit));
|
|
421
|
+
};
|
|
422
|
+
|
|
423
|
+
var __defProp$W = Object.defineProperty;
|
|
424
|
+
var __getOwnPropSymbols$X = Object.getOwnPropertySymbols;
|
|
425
|
+
var __hasOwnProp$X = Object.prototype.hasOwnProperty;
|
|
426
|
+
var __propIsEnum$X = Object.prototype.propertyIsEnumerable;
|
|
427
|
+
var __defNormalProp$W = (obj, key, value) => key in obj ? __defProp$W(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
428
|
+
var __spreadValues$V = (a, b) => {
|
|
429
|
+
for (var prop in b || (b = {}))
|
|
430
|
+
if (__hasOwnProp$X.call(b, prop))
|
|
431
|
+
__defNormalProp$W(a, prop, b[prop]);
|
|
432
|
+
if (__getOwnPropSymbols$X)
|
|
433
|
+
for (var prop of __getOwnPropSymbols$X(b)) {
|
|
434
|
+
if (__propIsEnum$X.call(b, prop))
|
|
435
|
+
__defNormalProp$W(a, prop, b[prop]);
|
|
436
|
+
}
|
|
437
|
+
return a;
|
|
438
|
+
};
|
|
439
|
+
const Second = ({
|
|
440
|
+
rawValue,
|
|
441
|
+
decimals,
|
|
442
|
+
valueClassName,
|
|
443
|
+
unitClassName,
|
|
444
|
+
abbreviate,
|
|
445
|
+
emptyProps
|
|
446
|
+
}) => {
|
|
447
|
+
const { t } = useParrotTranslation();
|
|
448
|
+
if (isEmpty(rawValue)) {
|
|
449
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$V({}, emptyProps));
|
|
450
|
+
}
|
|
451
|
+
const { value, unit } = formatSeconds(rawValue, decimals);
|
|
452
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value, " "), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, t(`common.${abbreviate ? `${unit}_abbreviation` : unit}`)));
|
|
453
|
+
};
|
|
454
|
+
|
|
455
|
+
var __defProp$V = Object.defineProperty;
|
|
456
|
+
var __getOwnPropSymbols$W = Object.getOwnPropertySymbols;
|
|
457
|
+
var __hasOwnProp$W = Object.prototype.hasOwnProperty;
|
|
458
|
+
var __propIsEnum$W = Object.prototype.propertyIsEnumerable;
|
|
459
|
+
var __defNormalProp$V = (obj, key, value) => key in obj ? __defProp$V(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
460
|
+
var __spreadValues$U = (a, b) => {
|
|
461
|
+
for (var prop in b || (b = {}))
|
|
462
|
+
if (__hasOwnProp$W.call(b, prop))
|
|
463
|
+
__defNormalProp$V(a, prop, b[prop]);
|
|
464
|
+
if (__getOwnPropSymbols$W)
|
|
465
|
+
for (var prop of __getOwnPropSymbols$W(b)) {
|
|
466
|
+
if (__propIsEnum$W.call(b, prop))
|
|
467
|
+
__defNormalProp$V(a, prop, b[prop]);
|
|
468
|
+
}
|
|
469
|
+
return a;
|
|
470
|
+
};
|
|
471
|
+
const Speed = ({
|
|
472
|
+
rawValue,
|
|
473
|
+
decimals,
|
|
474
|
+
valueClassName,
|
|
475
|
+
unitClassName,
|
|
476
|
+
emptyProps
|
|
477
|
+
}) => {
|
|
478
|
+
if (isEmpty(rawValue)) {
|
|
479
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$U({}, emptyProps));
|
|
480
|
+
}
|
|
481
|
+
const { value, unit } = formatSpeed(rawValue, decimals);
|
|
482
|
+
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
483
|
+
};
|
|
484
|
+
|
|
485
|
+
var __defProp$U = Object.defineProperty;
|
|
486
|
+
var __getOwnPropSymbols$V = Object.getOwnPropertySymbols;
|
|
487
|
+
var __hasOwnProp$V = Object.prototype.hasOwnProperty;
|
|
488
|
+
var __propIsEnum$V = Object.prototype.propertyIsEnumerable;
|
|
489
|
+
var __defNormalProp$U = (obj, key, value) => key in obj ? __defProp$U(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
490
|
+
var __spreadValues$T = (a, b) => {
|
|
491
|
+
for (var prop in b || (b = {}))
|
|
492
|
+
if (__hasOwnProp$V.call(b, prop))
|
|
493
|
+
__defNormalProp$U(a, prop, b[prop]);
|
|
494
|
+
if (__getOwnPropSymbols$V)
|
|
495
|
+
for (var prop of __getOwnPropSymbols$V(b)) {
|
|
496
|
+
if (__propIsEnum$V.call(b, prop))
|
|
497
|
+
__defNormalProp$U(a, prop, b[prop]);
|
|
57
498
|
}
|
|
58
499
|
return a;
|
|
59
500
|
};
|
|
60
501
|
var __objRest$C = (source, exclude) => {
|
|
61
502
|
var target = {};
|
|
62
503
|
for (var prop in source)
|
|
63
|
-
if (__hasOwnProp$
|
|
504
|
+
if (__hasOwnProp$V.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
64
505
|
target[prop] = source[prop];
|
|
65
|
-
if (source != null && __getOwnPropSymbols$
|
|
66
|
-
for (var prop of __getOwnPropSymbols$
|
|
67
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
506
|
+
if (source != null && __getOwnPropSymbols$V)
|
|
507
|
+
for (var prop of __getOwnPropSymbols$V(source)) {
|
|
508
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$V.call(source, prop))
|
|
68
509
|
target[prop] = source[prop];
|
|
69
510
|
}
|
|
70
511
|
return target;
|
|
@@ -96,10 +537,10 @@
|
|
|
96
537
|
]);
|
|
97
538
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
98
539
|
"span",
|
|
99
|
-
__spreadValues$
|
|
540
|
+
__spreadValues$T({
|
|
100
541
|
ref,
|
|
101
542
|
className,
|
|
102
|
-
style: ___default.default.pickBy(__spreadValues$
|
|
543
|
+
style: ___default.default.pickBy(__spreadValues$T({ cursor }, style))
|
|
103
544
|
}, HTMLSpanElementProps),
|
|
104
545
|
prefixNode,
|
|
105
546
|
/* @__PURE__ */ React__namespace.default.createElement("span", { className: "icon-inner" }, typeof Src === "string" ? /* @__PURE__ */ React__namespace.default.createElement("img", { alt, src: Src, width, height }) : /* @__PURE__ */ React__namespace.default.createElement(reactSvgUniqueId.SVGUniqueID, null, Src({ width, height }))),
|
|
@@ -109,31 +550,31 @@
|
|
|
109
550
|
}
|
|
110
551
|
);
|
|
111
552
|
|
|
112
|
-
var __defProp$
|
|
553
|
+
var __defProp$T = Object.defineProperty;
|
|
113
554
|
var __defProps$G = Object.defineProperties;
|
|
114
555
|
var __getOwnPropDescs$G = Object.getOwnPropertyDescriptors;
|
|
115
|
-
var __getOwnPropSymbols
|
|
116
|
-
var __hasOwnProp
|
|
117
|
-
var __propIsEnum
|
|
118
|
-
var __defNormalProp$
|
|
556
|
+
var __getOwnPropSymbols$U = Object.getOwnPropertySymbols;
|
|
557
|
+
var __hasOwnProp$U = Object.prototype.hasOwnProperty;
|
|
558
|
+
var __propIsEnum$U = Object.prototype.propertyIsEnumerable;
|
|
559
|
+
var __defNormalProp$T = (obj, key, value) => key in obj ? __defProp$T(obj, key, {
|
|
119
560
|
enumerable: true,
|
|
120
561
|
configurable: true,
|
|
121
562
|
writable: true,
|
|
122
563
|
value
|
|
123
564
|
}) : obj[key] = value;
|
|
124
|
-
var __spreadValues$
|
|
125
|
-
for (var prop in b || (b = {})) if (__hasOwnProp
|
|
126
|
-
if (__getOwnPropSymbols
|
|
127
|
-
if (__propIsEnum
|
|
565
|
+
var __spreadValues$S = (a, b) => {
|
|
566
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$U.call(b, prop)) __defNormalProp$T(a, prop, b[prop]);
|
|
567
|
+
if (__getOwnPropSymbols$U) for (var prop of __getOwnPropSymbols$U(b)) {
|
|
568
|
+
if (__propIsEnum$U.call(b, prop)) __defNormalProp$T(a, prop, b[prop]);
|
|
128
569
|
}
|
|
129
570
|
return a;
|
|
130
571
|
};
|
|
131
572
|
var __spreadProps$G = (a, b) => __defProps$G(a, __getOwnPropDescs$G(b));
|
|
132
573
|
var __objRest$B = (source, exclude) => {
|
|
133
574
|
var target = {};
|
|
134
|
-
for (var prop in source) if (__hasOwnProp
|
|
135
|
-
if (source != null && __getOwnPropSymbols
|
|
136
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum
|
|
575
|
+
for (var prop in source) if (__hasOwnProp$U.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
576
|
+
if (source != null && __getOwnPropSymbols$U) for (var prop of __getOwnPropSymbols$U(source)) {
|
|
577
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$U.call(source, prop)) target[prop] = source[prop];
|
|
137
578
|
}
|
|
138
579
|
return target;
|
|
139
580
|
};
|
|
@@ -185,14 +626,14 @@
|
|
|
185
626
|
}
|
|
186
627
|
return src2;
|
|
187
628
|
}, [active, hover, suffix]);
|
|
188
|
-
return /* @__PURE__ */React__namespace.default.createElement(BaseIcon, __spreadProps$G(__spreadValues$
|
|
629
|
+
return /* @__PURE__ */React__namespace.default.createElement(BaseIcon, __spreadProps$G(__spreadValues$S({
|
|
189
630
|
src: _src,
|
|
190
631
|
className: cs__default.default(IconWrapper, "icon-wrapper", className, isRotate && "is-rotate"),
|
|
191
632
|
suffixIconSrc,
|
|
192
633
|
height: iconHeight,
|
|
193
634
|
width: iconWidth,
|
|
194
635
|
prefixNode: prefix,
|
|
195
|
-
style: ___default.default.pickBy(__spreadValues$
|
|
636
|
+
style: ___default.default.pickBy(__spreadValues$S({
|
|
196
637
|
cursor
|
|
197
638
|
}, style))
|
|
198
639
|
}, restProps), {
|
|
@@ -217,30 +658,30 @@
|
|
|
217
658
|
}));
|
|
218
659
|
});
|
|
219
660
|
|
|
220
|
-
var __defProp$
|
|
221
|
-
var __getOwnPropSymbols$
|
|
222
|
-
var __hasOwnProp$
|
|
223
|
-
var __propIsEnum$
|
|
224
|
-
var __defNormalProp$
|
|
225
|
-
var __spreadValues$
|
|
661
|
+
var __defProp$S = Object.defineProperty;
|
|
662
|
+
var __getOwnPropSymbols$T = Object.getOwnPropertySymbols;
|
|
663
|
+
var __hasOwnProp$T = Object.prototype.hasOwnProperty;
|
|
664
|
+
var __propIsEnum$T = Object.prototype.propertyIsEnumerable;
|
|
665
|
+
var __defNormalProp$S = (obj, key, value) => key in obj ? __defProp$S(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
666
|
+
var __spreadValues$R = (a, b) => {
|
|
226
667
|
for (var prop in b || (b = {}))
|
|
227
|
-
if (__hasOwnProp$
|
|
228
|
-
__defNormalProp$
|
|
229
|
-
if (__getOwnPropSymbols$
|
|
230
|
-
for (var prop of __getOwnPropSymbols$
|
|
231
|
-
if (__propIsEnum$
|
|
232
|
-
__defNormalProp$
|
|
668
|
+
if (__hasOwnProp$T.call(b, prop))
|
|
669
|
+
__defNormalProp$S(a, prop, b[prop]);
|
|
670
|
+
if (__getOwnPropSymbols$T)
|
|
671
|
+
for (var prop of __getOwnPropSymbols$T(b)) {
|
|
672
|
+
if (__propIsEnum$T.call(b, prop))
|
|
673
|
+
__defNormalProp$S(a, prop, b[prop]);
|
|
233
674
|
}
|
|
234
675
|
return a;
|
|
235
676
|
};
|
|
236
677
|
var __objRest$A = (source, exclude) => {
|
|
237
678
|
var target = {};
|
|
238
679
|
for (var prop in source)
|
|
239
|
-
if (__hasOwnProp$
|
|
680
|
+
if (__hasOwnProp$T.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
240
681
|
target[prop] = source[prop];
|
|
241
|
-
if (source != null && __getOwnPropSymbols$
|
|
242
|
-
for (var prop of __getOwnPropSymbols$
|
|
243
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
682
|
+
if (source != null && __getOwnPropSymbols$T)
|
|
683
|
+
for (var prop of __getOwnPropSymbols$T(source)) {
|
|
684
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$T.call(source, prop))
|
|
244
685
|
target[prop] = source[prop];
|
|
245
686
|
}
|
|
246
687
|
return target;
|
|
@@ -261,7 +702,7 @@
|
|
|
261
702
|
]);
|
|
262
703
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
263
704
|
reactTransitionGroup.CSSTransition,
|
|
264
|
-
__spreadValues$
|
|
705
|
+
__spreadValues$R({
|
|
265
706
|
in: visible,
|
|
266
707
|
timeout: timeout || 200,
|
|
267
708
|
mountOnEnter,
|
|
@@ -559,6 +1000,404 @@
|
|
|
559
1000
|
})));
|
|
560
1001
|
};
|
|
561
1002
|
|
|
1003
|
+
const WizardBody = /*#__PURE__*/react$1.styled('div')({
|
|
1004
|
+
name: "WizardBody",
|
|
1005
|
+
class: "w1vvwdlp",
|
|
1006
|
+
propsAsIs: false
|
|
1007
|
+
});
|
|
1008
|
+
const FullView = /*#__PURE__*/react$1.styled('div')({
|
|
1009
|
+
name: "FullView",
|
|
1010
|
+
class: "f1rest1f",
|
|
1011
|
+
propsAsIs: false
|
|
1012
|
+
});
|
|
1013
|
+
const TertiaryText = /*#__PURE__*/react$1.styled('div')({
|
|
1014
|
+
name: "TertiaryText",
|
|
1015
|
+
class: "t79k8o2",
|
|
1016
|
+
propsAsIs: false
|
|
1017
|
+
});
|
|
1018
|
+
const InputStyle = "ipd9bk";
|
|
1019
|
+
const KitInputStyle = "kypn5o5";
|
|
1020
|
+
|
|
1021
|
+
var __defProp$R = Object.defineProperty;
|
|
1022
|
+
var __defProps$F = Object.defineProperties;
|
|
1023
|
+
var __getOwnPropDescs$F = Object.getOwnPropertyDescriptors;
|
|
1024
|
+
var __getOwnPropSymbols$S = Object.getOwnPropertySymbols;
|
|
1025
|
+
var __hasOwnProp$S = Object.prototype.hasOwnProperty;
|
|
1026
|
+
var __propIsEnum$S = Object.prototype.propertyIsEnumerable;
|
|
1027
|
+
var __defNormalProp$R = (obj, key, value) => key in obj ? __defProp$R(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1028
|
+
var __spreadValues$Q = (a, b) => {
|
|
1029
|
+
for (var prop in b || (b = {}))
|
|
1030
|
+
if (__hasOwnProp$S.call(b, prop))
|
|
1031
|
+
__defNormalProp$R(a, prop, b[prop]);
|
|
1032
|
+
if (__getOwnPropSymbols$S)
|
|
1033
|
+
for (var prop of __getOwnPropSymbols$S(b)) {
|
|
1034
|
+
if (__propIsEnum$S.call(b, prop))
|
|
1035
|
+
__defNormalProp$R(a, prop, b[prop]);
|
|
1036
|
+
}
|
|
1037
|
+
return a;
|
|
1038
|
+
};
|
|
1039
|
+
var __spreadProps$F = (a, b) => __defProps$F(a, __getOwnPropDescs$F(b));
|
|
1040
|
+
var __objRest$z = (source, exclude) => {
|
|
1041
|
+
var target = {};
|
|
1042
|
+
for (var prop in source)
|
|
1043
|
+
if (__hasOwnProp$S.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1044
|
+
target[prop] = source[prop];
|
|
1045
|
+
if (source != null && __getOwnPropSymbols$S)
|
|
1046
|
+
for (var prop of __getOwnPropSymbols$S(source)) {
|
|
1047
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$S.call(source, prop))
|
|
1048
|
+
target[prop] = source[prop];
|
|
1049
|
+
}
|
|
1050
|
+
return target;
|
|
1051
|
+
};
|
|
1052
|
+
let componentId = 0;
|
|
1053
|
+
const Tooltip = (props) => {
|
|
1054
|
+
const _a = props, {
|
|
1055
|
+
followMouse,
|
|
1056
|
+
overlayClassName,
|
|
1057
|
+
overlayStyle,
|
|
1058
|
+
children
|
|
1059
|
+
} = _a, restProps = __objRest$z(_a, [
|
|
1060
|
+
"followMouse",
|
|
1061
|
+
"overlayClassName",
|
|
1062
|
+
"overlayStyle",
|
|
1063
|
+
"children"
|
|
1064
|
+
]);
|
|
1065
|
+
const id = React.useRef(++componentId);
|
|
1066
|
+
const uniquePopupClass = `kit-popup-${id.current}`;
|
|
1067
|
+
const uniqueContainerClass = `kit-tooltip-${id.current}`;
|
|
1068
|
+
const _children = React.useMemo(() => {
|
|
1069
|
+
if (followMouse) {
|
|
1070
|
+
const child = React__namespace.default.isValidElement(children) ? children : /* @__PURE__ */ React__namespace.default.createElement("span", null, children);
|
|
1071
|
+
return React__namespace.default.cloneElement(child, {
|
|
1072
|
+
className: cs__default.default(child.props.className, uniqueContainerClass)
|
|
1073
|
+
});
|
|
1074
|
+
} else {
|
|
1075
|
+
return children;
|
|
1076
|
+
}
|
|
1077
|
+
}, [children, followMouse, uniqueContainerClass]);
|
|
1078
|
+
const onmousemove = React.useCallback(
|
|
1079
|
+
(event) => {
|
|
1080
|
+
const popup = document.querySelector(`.${uniquePopupClass}`);
|
|
1081
|
+
if (!popup)
|
|
1082
|
+
return;
|
|
1083
|
+
popup.style.left = event.pageX + "px";
|
|
1084
|
+
popup.style.top = event.pageY + "px";
|
|
1085
|
+
},
|
|
1086
|
+
[uniquePopupClass]
|
|
1087
|
+
);
|
|
1088
|
+
React.useEffect(() => {
|
|
1089
|
+
if (followMouse) {
|
|
1090
|
+
const container = document.querySelector(
|
|
1091
|
+
`.${uniqueContainerClass}`
|
|
1092
|
+
);
|
|
1093
|
+
container == null ? void 0 : container.addEventListener("mousemove", onmousemove);
|
|
1094
|
+
return () => {
|
|
1095
|
+
container == null ? void 0 : container.removeEventListener("mousemove", onmousemove);
|
|
1096
|
+
};
|
|
1097
|
+
}
|
|
1098
|
+
}, [followMouse, onmousemove, uniqueContainerClass]);
|
|
1099
|
+
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
1100
|
+
antd.Tooltip,
|
|
1101
|
+
__spreadProps$F(__spreadValues$Q({}, restProps), {
|
|
1102
|
+
overlayClassName: followMouse ? cs__default.default(overlayClassName, uniquePopupClass) : overlayClassName,
|
|
1103
|
+
children: _children,
|
|
1104
|
+
overlayStyle: followMouse ? __spreadValues$Q({
|
|
1105
|
+
transform: "translate(-50%, -100%)",
|
|
1106
|
+
pointerEvents: "none"
|
|
1107
|
+
}, overlayStyle) : overlayStyle
|
|
1108
|
+
})
|
|
1109
|
+
);
|
|
1110
|
+
};
|
|
1111
|
+
|
|
1112
|
+
const StackBar = "skwah65";
|
|
1113
|
+
function getWidth(input) {
|
|
1114
|
+
const {
|
|
1115
|
+
value,
|
|
1116
|
+
unit
|
|
1117
|
+
} = formatPercent(input);
|
|
1118
|
+
return value + unit;
|
|
1119
|
+
}
|
|
1120
|
+
const BarChart = ({
|
|
1121
|
+
data,
|
|
1122
|
+
total
|
|
1123
|
+
}) => /* @__PURE__ */React__namespace.default.createElement("div", {
|
|
1124
|
+
className: StackBar
|
|
1125
|
+
}, (data || []).map(item => {
|
|
1126
|
+
const {
|
|
1127
|
+
value,
|
|
1128
|
+
color
|
|
1129
|
+
} = item;
|
|
1130
|
+
const width = total === 0 ? 0 : getWidth(100 * value / total);
|
|
1131
|
+
return /* @__PURE__ */React__namespace.default.createElement("div", {
|
|
1132
|
+
className: "stack-bar-item",
|
|
1133
|
+
style: {
|
|
1134
|
+
width,
|
|
1135
|
+
background: color,
|
|
1136
|
+
display: width === 0 || width === "0%" ? "none" : "inline-block"
|
|
1137
|
+
}
|
|
1138
|
+
});
|
|
1139
|
+
}));
|
|
1140
|
+
|
|
1141
|
+
const DonutChart = ({
|
|
1142
|
+
data,
|
|
1143
|
+
dataKey,
|
|
1144
|
+
width,
|
|
1145
|
+
height,
|
|
1146
|
+
barSize,
|
|
1147
|
+
innerRadius,
|
|
1148
|
+
outerRadius
|
|
1149
|
+
}) => /* @__PURE__ */ React__namespace.default.createElement(
|
|
1150
|
+
recharts.RadialBarChart,
|
|
1151
|
+
{
|
|
1152
|
+
data,
|
|
1153
|
+
width,
|
|
1154
|
+
height,
|
|
1155
|
+
innerRadius,
|
|
1156
|
+
outerRadius,
|
|
1157
|
+
barSize,
|
|
1158
|
+
startAngle: 90,
|
|
1159
|
+
endAngle: -270
|
|
1160
|
+
},
|
|
1161
|
+
/* @__PURE__ */ React__namespace.default.createElement(recharts.PolarAngleAxis, { type: "number", domain: [0, 1], radiusAxisId: 0 }),
|
|
1162
|
+
/* @__PURE__ */ React__namespace.default.createElement(
|
|
1163
|
+
recharts.RadialBar,
|
|
1164
|
+
{
|
|
1165
|
+
isAnimationActive: false,
|
|
1166
|
+
background: true,
|
|
1167
|
+
dataKey,
|
|
1168
|
+
radiusAxisId: 0
|
|
1169
|
+
}
|
|
1170
|
+
)
|
|
1171
|
+
);
|
|
1172
|
+
|
|
1173
|
+
var __defProp$Q = Object.defineProperty;
|
|
1174
|
+
var __getOwnPropSymbols$R = Object.getOwnPropertySymbols;
|
|
1175
|
+
var __hasOwnProp$R = Object.prototype.hasOwnProperty;
|
|
1176
|
+
var __propIsEnum$R = Object.prototype.propertyIsEnumerable;
|
|
1177
|
+
var __defNormalProp$Q = (obj, key, value) => key in obj ? __defProp$Q(obj, key, {
|
|
1178
|
+
enumerable: true,
|
|
1179
|
+
configurable: true,
|
|
1180
|
+
writable: true,
|
|
1181
|
+
value
|
|
1182
|
+
}) : obj[key] = value;
|
|
1183
|
+
var __spreadValues$P = (a, b) => {
|
|
1184
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$R.call(b, prop)) __defNormalProp$Q(a, prop, b[prop]);
|
|
1185
|
+
if (__getOwnPropSymbols$R) for (var prop of __getOwnPropSymbols$R(b)) {
|
|
1186
|
+
if (__propIsEnum$R.call(b, prop)) __defNormalProp$Q(a, prop, b[prop]);
|
|
1187
|
+
}
|
|
1188
|
+
return a;
|
|
1189
|
+
};
|
|
1190
|
+
const units$1 = {
|
|
1191
|
+
Percent,
|
|
1192
|
+
Byte,
|
|
1193
|
+
Frequency,
|
|
1194
|
+
Speed,
|
|
1195
|
+
Bps,
|
|
1196
|
+
BitPerSecond: BitPerSeconds,
|
|
1197
|
+
Bit,
|
|
1198
|
+
Second
|
|
1199
|
+
};
|
|
1200
|
+
const Wrapper$2 = /*#__PURE__*/react$1.styled('div')({
|
|
1201
|
+
name: "Wrapper",
|
|
1202
|
+
class: "wg1tsps",
|
|
1203
|
+
propsAsIs: false
|
|
1204
|
+
});
|
|
1205
|
+
const BarChartWrapper = "b1ctd5xy";
|
|
1206
|
+
const UnitWrapper = "u1p8acpn";
|
|
1207
|
+
const Sizes = {
|
|
1208
|
+
small: {
|
|
1209
|
+
width: 22,
|
|
1210
|
+
height: 22,
|
|
1211
|
+
barSize: 4,
|
|
1212
|
+
innerRadius: 8,
|
|
1213
|
+
outerRadius: 16
|
|
1214
|
+
},
|
|
1215
|
+
medium: {
|
|
1216
|
+
width: 50,
|
|
1217
|
+
height: 50,
|
|
1218
|
+
barSize: 8,
|
|
1219
|
+
innerRadius: 18,
|
|
1220
|
+
outerRadius: 34
|
|
1221
|
+
},
|
|
1222
|
+
large: {
|
|
1223
|
+
width: 100,
|
|
1224
|
+
height: 100,
|
|
1225
|
+
barSize: 15,
|
|
1226
|
+
innerRadius: 40,
|
|
1227
|
+
outerRadius: 70
|
|
1228
|
+
}
|
|
1229
|
+
};
|
|
1230
|
+
const UnitWithChart = ({
|
|
1231
|
+
rawValue,
|
|
1232
|
+
total,
|
|
1233
|
+
unit,
|
|
1234
|
+
color = "#0080FF",
|
|
1235
|
+
size = "small",
|
|
1236
|
+
chartType = "donutChart",
|
|
1237
|
+
data,
|
|
1238
|
+
saturated
|
|
1239
|
+
}) => {
|
|
1240
|
+
if (typeof rawValue !== "number" || typeof total !== "number") {
|
|
1241
|
+
return /* @__PURE__ */React__namespace.default.createElement(Empty, null);
|
|
1242
|
+
}
|
|
1243
|
+
const Unit = units$1[unit];
|
|
1244
|
+
return /* @__PURE__ */React__namespace.default.createElement(Wrapper$2, {
|
|
1245
|
+
className: "unit-chart"
|
|
1246
|
+
}, chartType === "barChart" && /* @__PURE__ */React__namespace.default.createElement("span", {
|
|
1247
|
+
className: BarChartWrapper
|
|
1248
|
+
}, /* @__PURE__ */React__namespace.default.createElement("span", {
|
|
1249
|
+
className: "chart"
|
|
1250
|
+
}, /* @__PURE__ */React__namespace.default.createElement(BarChart, {
|
|
1251
|
+
data: data || [],
|
|
1252
|
+
total
|
|
1253
|
+
}))), /* @__PURE__ */React__namespace.default.createElement("span", {
|
|
1254
|
+
className: UnitWrapper
|
|
1255
|
+
}, unit === "Percent" ? /* @__PURE__ */React__namespace.default.createElement(Percent, {
|
|
1256
|
+
rawValue,
|
|
1257
|
+
decimals: 1,
|
|
1258
|
+
saturated
|
|
1259
|
+
}) : /* @__PURE__ */React__namespace.default.createElement(Unit, {
|
|
1260
|
+
rawValue
|
|
1261
|
+
})), chartType === "donutChart" && /* @__PURE__ */React__namespace.default.createElement(DonutChart, __spreadValues$P({
|
|
1262
|
+
data: [{
|
|
1263
|
+
used: rawValue / total,
|
|
1264
|
+
fill: color
|
|
1265
|
+
}],
|
|
1266
|
+
dataKey: "used"
|
|
1267
|
+
}, Sizes[size])));
|
|
1268
|
+
};
|
|
1269
|
+
|
|
1270
|
+
const units = {
|
|
1271
|
+
Percent,
|
|
1272
|
+
Byte,
|
|
1273
|
+
Frequency,
|
|
1274
|
+
Speed,
|
|
1275
|
+
Bps,
|
|
1276
|
+
BitPerSecond: BitPerSeconds,
|
|
1277
|
+
Bit,
|
|
1278
|
+
Second
|
|
1279
|
+
};
|
|
1280
|
+
const ChartContent = /*#__PURE__*/react$1.styled('div')({
|
|
1281
|
+
name: "ChartContent",
|
|
1282
|
+
class: "c18bcrac",
|
|
1283
|
+
propsAsIs: false
|
|
1284
|
+
});
|
|
1285
|
+
const ChartTooltipContainer = /*#__PURE__*/react$1.styled('div')({
|
|
1286
|
+
name: "ChartTooltipContainer",
|
|
1287
|
+
class: "cro7kg2",
|
|
1288
|
+
propsAsIs: false
|
|
1289
|
+
});
|
|
1290
|
+
const ChartTooltipRow = /*#__PURE__*/react$1.styled('div')({
|
|
1291
|
+
name: "ChartTooltipRow",
|
|
1292
|
+
class: "c14wcxf0",
|
|
1293
|
+
propsAsIs: false
|
|
1294
|
+
});
|
|
1295
|
+
const _exp$4 = () => ChartTooltipRow;
|
|
1296
|
+
const ChartTooltipTitle = /*#__PURE__*/react$1.styled(_exp$4())({
|
|
1297
|
+
name: "ChartTooltipTitle",
|
|
1298
|
+
class: "coy29mj",
|
|
1299
|
+
propsAsIs: true
|
|
1300
|
+
});
|
|
1301
|
+
const _exp2$2 = () => props => props.color;
|
|
1302
|
+
const SpaceStatus = /*#__PURE__*/react$1.styled('i')({
|
|
1303
|
+
name: "SpaceStatus",
|
|
1304
|
+
class: "s11212zy",
|
|
1305
|
+
propsAsIs: false,
|
|
1306
|
+
vars: {
|
|
1307
|
+
"s11212zy-0": [_exp2$2()]
|
|
1308
|
+
}
|
|
1309
|
+
});
|
|
1310
|
+
const PrimaryUnit = /*#__PURE__*/react$1.styled('div')({
|
|
1311
|
+
name: "PrimaryUnit",
|
|
1312
|
+
class: "p1lyky6c",
|
|
1313
|
+
propsAsIs: false
|
|
1314
|
+
});
|
|
1315
|
+
const ChartWithUnit = props => {
|
|
1316
|
+
const {
|
|
1317
|
+
items,
|
|
1318
|
+
rawValue,
|
|
1319
|
+
unit,
|
|
1320
|
+
chartType,
|
|
1321
|
+
tableUnit,
|
|
1322
|
+
total
|
|
1323
|
+
} = props;
|
|
1324
|
+
const finalTableUnit = tableUnit != null ? tableUnit : unit;
|
|
1325
|
+
const emptyDisplay = rawValue2 => {
|
|
1326
|
+
if (___default.default.isNil(rawValue2)) {
|
|
1327
|
+
return /* @__PURE__ */React__namespace.default.createElement(TertiaryText, null, "-");
|
|
1328
|
+
}
|
|
1329
|
+
return finalTableUnit === "Percent" ?
|
|
1330
|
+
// process 0.0%
|
|
1331
|
+
/* @__PURE__ */
|
|
1332
|
+
React__namespace.default.createElement("span", {
|
|
1333
|
+
className: UnitWrapper
|
|
1334
|
+
}, /* @__PURE__ */React__namespace.default.createElement(Percent, {
|
|
1335
|
+
rawValue: rawValue2,
|
|
1336
|
+
decimals: 1
|
|
1337
|
+
})) : rawValue2;
|
|
1338
|
+
};
|
|
1339
|
+
return /* @__PURE__ */React__namespace.default.createElement(ChartContent, null, rawValue || rawValue === 0 ? /* @__PURE__ */React__namespace.default.createElement(UnitWithChart, {
|
|
1340
|
+
unit: finalTableUnit,
|
|
1341
|
+
rawValue: chartType === "barChart" ? formatPercent(rawValue / total * 100, 1).numberValue : rawValue,
|
|
1342
|
+
total,
|
|
1343
|
+
chartType,
|
|
1344
|
+
data: items
|
|
1345
|
+
}) : emptyDisplay(rawValue));
|
|
1346
|
+
};
|
|
1347
|
+
const ChartWithTooltip = props => {
|
|
1348
|
+
const {
|
|
1349
|
+
title,
|
|
1350
|
+
items,
|
|
1351
|
+
rawValue,
|
|
1352
|
+
unit,
|
|
1353
|
+
chartType,
|
|
1354
|
+
tableUnit,
|
|
1355
|
+
saturated
|
|
1356
|
+
} = props;
|
|
1357
|
+
const KitUnit = units[unit];
|
|
1358
|
+
const total = title.value || 0;
|
|
1359
|
+
const finalTableUnit = tableUnit != null ? tableUnit : unit;
|
|
1360
|
+
const emptyDisplay = rawValue2 => {
|
|
1361
|
+
if (___default.default.isNil(rawValue2)) {
|
|
1362
|
+
return /* @__PURE__ */React__namespace.default.createElement(TertiaryText, null, "-");
|
|
1363
|
+
}
|
|
1364
|
+
return finalTableUnit === "Percent" ?
|
|
1365
|
+
// process 0.0%
|
|
1366
|
+
/* @__PURE__ */
|
|
1367
|
+
React__namespace.default.createElement(Percent, {
|
|
1368
|
+
rawValue: rawValue2,
|
|
1369
|
+
decimals: 1
|
|
1370
|
+
}) : rawValue2;
|
|
1371
|
+
};
|
|
1372
|
+
return /* @__PURE__ */React__namespace.default.createElement(Tooltip, {
|
|
1373
|
+
title: /* @__PURE__ */React__namespace.default.createElement(ChartTooltipContainer, null, /* @__PURE__ */React__namespace.default.createElement(ChartTooltipTitle, null, /* @__PURE__ */React__namespace.default.createElement("label", null, title.label), /* @__PURE__ */React__namespace.default.createElement(KitUnit, {
|
|
1374
|
+
rawValue: total
|
|
1375
|
+
})), items.map(item => {
|
|
1376
|
+
var _a;
|
|
1377
|
+
return /* @__PURE__ */React__namespace.default.createElement(ChartTooltipRow, {
|
|
1378
|
+
key: item.label
|
|
1379
|
+
}, /* @__PURE__ */React__namespace.default.createElement("label", null, /* @__PURE__ */React__namespace.default.createElement(SpaceStatus, {
|
|
1380
|
+
color: item.color
|
|
1381
|
+
}), /* @__PURE__ */React__namespace.default.createElement("span", null, item.label)), /* @__PURE__ */React__namespace.default.createElement(PrimaryUnit, {
|
|
1382
|
+
className: "value"
|
|
1383
|
+
}, /* @__PURE__ */React__namespace.default.createElement(KitUnit, {
|
|
1384
|
+
rawValue: item.value || 0
|
|
1385
|
+
}), /* @__PURE__ */React__namespace.default.createElement("span", null, "(", total ? (item.value ? formatPercent((item.value || 0) / total * 100, 1, (_a = item.saturated) != null ? _a : true).value : 0) + "%" : "-", ")")));
|
|
1386
|
+
})),
|
|
1387
|
+
overlayStyle: {
|
|
1388
|
+
maxWidth: 500,
|
|
1389
|
+
minWidth: 246
|
|
1390
|
+
}
|
|
1391
|
+
}, /* @__PURE__ */React__namespace.default.createElement(ChartContent, null, total ? rawValue ? /* @__PURE__ */React__namespace.default.createElement(UnitWithChart, {
|
|
1392
|
+
unit: finalTableUnit,
|
|
1393
|
+
rawValue: chartType === "barChart" ? formatPercent(rawValue / total * 100, 1, saturated != null ? saturated : true).numberValue : rawValue,
|
|
1394
|
+
total,
|
|
1395
|
+
chartType,
|
|
1396
|
+
data: items,
|
|
1397
|
+
saturated
|
|
1398
|
+
}) : emptyDisplay(rawValue) : emptyDisplay(null)));
|
|
1399
|
+
};
|
|
1400
|
+
|
|
562
1401
|
const Counting = (props) => {
|
|
563
1402
|
const { stop, interval = 1e3, render } = props;
|
|
564
1403
|
const [, setState] = React.useState(true);
|
|
@@ -583,28 +1422,28 @@
|
|
|
583
1422
|
return icon != null ? React__namespace.default.cloneElement(icon, { className }) : null;
|
|
584
1423
|
};
|
|
585
1424
|
|
|
586
|
-
var __defProp$
|
|
587
|
-
var __getOwnPropSymbols$
|
|
588
|
-
var __hasOwnProp$
|
|
589
|
-
var __propIsEnum$
|
|
590
|
-
var __defNormalProp$
|
|
1425
|
+
var __defProp$P = Object.defineProperty;
|
|
1426
|
+
var __getOwnPropSymbols$Q = Object.getOwnPropertySymbols;
|
|
1427
|
+
var __hasOwnProp$Q = Object.prototype.hasOwnProperty;
|
|
1428
|
+
var __propIsEnum$Q = Object.prototype.propertyIsEnumerable;
|
|
1429
|
+
var __defNormalProp$P = (obj, key, value) => key in obj ? __defProp$P(obj, key, {
|
|
591
1430
|
enumerable: true,
|
|
592
1431
|
configurable: true,
|
|
593
1432
|
writable: true,
|
|
594
1433
|
value
|
|
595
1434
|
}) : obj[key] = value;
|
|
596
|
-
var __spreadValues$
|
|
597
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
598
|
-
if (__getOwnPropSymbols$
|
|
599
|
-
if (__propIsEnum$
|
|
1435
|
+
var __spreadValues$O = (a, b) => {
|
|
1436
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$Q.call(b, prop)) __defNormalProp$P(a, prop, b[prop]);
|
|
1437
|
+
if (__getOwnPropSymbols$Q) for (var prop of __getOwnPropSymbols$Q(b)) {
|
|
1438
|
+
if (__propIsEnum$Q.call(b, prop)) __defNormalProp$P(a, prop, b[prop]);
|
|
600
1439
|
}
|
|
601
1440
|
return a;
|
|
602
1441
|
};
|
|
603
|
-
var __objRest$
|
|
1442
|
+
var __objRest$y = (source, exclude) => {
|
|
604
1443
|
var target = {};
|
|
605
|
-
for (var prop in source) if (__hasOwnProp$
|
|
606
|
-
if (source != null && __getOwnPropSymbols$
|
|
607
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1444
|
+
for (var prop in source) if (__hasOwnProp$Q.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1445
|
+
if (source != null && __getOwnPropSymbols$Q) for (var prop of __getOwnPropSymbols$Q(source)) {
|
|
1446
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$Q.call(source, prop)) target[prop] = source[prop];
|
|
608
1447
|
}
|
|
609
1448
|
return target;
|
|
610
1449
|
};
|
|
@@ -627,12 +1466,12 @@
|
|
|
627
1466
|
onMouseLeave,
|
|
628
1467
|
size = "middle"
|
|
629
1468
|
} = _a,
|
|
630
|
-
restProps = __objRest$
|
|
1469
|
+
restProps = __objRest$y(_a, ["type", "className", "children", "prefixIcon", "hoverPrefixIcon", "suffixIcon", "hoverSuffixIcon", "onMouseEnter", "onMouseLeave", "size"]);
|
|
631
1470
|
const [status, setStatus] = React.useState("normal");
|
|
632
1471
|
const hasIcon = prefixIcon || suffixIcon;
|
|
633
1472
|
const hasHoverIcon = hoverPrefixIcon || hoverSuffixIcon;
|
|
634
1473
|
const onlyIcon = !children && (prefixIcon || suffixIcon);
|
|
635
|
-
return /* @__PURE__ */React__namespace.default.createElement(antd.Button, __spreadValues$
|
|
1474
|
+
return /* @__PURE__ */React__namespace.default.createElement(antd.Button, __spreadValues$O({
|
|
636
1475
|
ref,
|
|
637
1476
|
className: cs__default.default(className, ButtonStyle$1, type === "link" && NoPadding, 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}`, onlyIcon && "ant-btn-icon-only"),
|
|
638
1477
|
type: isAntdButtonTypes(type) ? type : void 0,
|
|
@@ -662,31 +1501,31 @@
|
|
|
662
1501
|
}));
|
|
663
1502
|
});
|
|
664
1503
|
|
|
665
|
-
var __defProp$
|
|
666
|
-
var __defProps$
|
|
667
|
-
var __getOwnPropDescs$
|
|
668
|
-
var __getOwnPropSymbols$
|
|
669
|
-
var __hasOwnProp$
|
|
670
|
-
var __propIsEnum$
|
|
671
|
-
var __defNormalProp$
|
|
1504
|
+
var __defProp$O = Object.defineProperty;
|
|
1505
|
+
var __defProps$E = Object.defineProperties;
|
|
1506
|
+
var __getOwnPropDescs$E = Object.getOwnPropertyDescriptors;
|
|
1507
|
+
var __getOwnPropSymbols$P = Object.getOwnPropertySymbols;
|
|
1508
|
+
var __hasOwnProp$P = Object.prototype.hasOwnProperty;
|
|
1509
|
+
var __propIsEnum$P = Object.prototype.propertyIsEnumerable;
|
|
1510
|
+
var __defNormalProp$O = (obj, key, value) => key in obj ? __defProp$O(obj, key, {
|
|
672
1511
|
enumerable: true,
|
|
673
1512
|
configurable: true,
|
|
674
1513
|
writable: true,
|
|
675
1514
|
value
|
|
676
1515
|
}) : obj[key] = value;
|
|
677
|
-
var __spreadValues$
|
|
678
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
679
|
-
if (__getOwnPropSymbols$
|
|
680
|
-
if (__propIsEnum$
|
|
1516
|
+
var __spreadValues$N = (a, b) => {
|
|
1517
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$P.call(b, prop)) __defNormalProp$O(a, prop, b[prop]);
|
|
1518
|
+
if (__getOwnPropSymbols$P) for (var prop of __getOwnPropSymbols$P(b)) {
|
|
1519
|
+
if (__propIsEnum$P.call(b, prop)) __defNormalProp$O(a, prop, b[prop]);
|
|
681
1520
|
}
|
|
682
1521
|
return a;
|
|
683
1522
|
};
|
|
684
|
-
var __spreadProps$
|
|
685
|
-
var __objRest$
|
|
1523
|
+
var __spreadProps$E = (a, b) => __defProps$E(a, __getOwnPropDescs$E(b));
|
|
1524
|
+
var __objRest$x = (source, exclude) => {
|
|
686
1525
|
var target = {};
|
|
687
|
-
for (var prop in source) if (__hasOwnProp$
|
|
688
|
-
if (source != null && __getOwnPropSymbols$
|
|
689
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1526
|
+
for (var prop in source) if (__hasOwnProp$P.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1527
|
+
if (source != null && __getOwnPropSymbols$P) for (var prop of __getOwnPropSymbols$P(source)) {
|
|
1528
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$P.call(source, prop)) target[prop] = source[prop];
|
|
690
1529
|
}
|
|
691
1530
|
return target;
|
|
692
1531
|
};
|
|
@@ -699,8 +1538,8 @@
|
|
|
699
1538
|
description,
|
|
700
1539
|
compact
|
|
701
1540
|
} = _b,
|
|
702
|
-
props = __objRest$
|
|
703
|
-
return /* @__PURE__ */React__namespace.default.createElement(antd.Checkbox, __spreadProps$
|
|
1541
|
+
props = __objRest$x(_b, ["className", "children", "description", "compact"]);
|
|
1542
|
+
return /* @__PURE__ */React__namespace.default.createElement(antd.Checkbox, __spreadProps$E(__spreadValues$N({}, props), {
|
|
704
1543
|
"data-test": props["data-test"] || props.value,
|
|
705
1544
|
className: cs__default.default(className, CheckboxStyle, compact && "compact")
|
|
706
1545
|
}), children ? /* @__PURE__ */React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */React__namespace.default.createElement("div", {
|
|
@@ -710,39 +1549,39 @@
|
|
|
710
1549
|
}, description) : null) : null);
|
|
711
1550
|
};
|
|
712
1551
|
|
|
713
|
-
var __defProp$
|
|
714
|
-
var __getOwnPropSymbols$
|
|
715
|
-
var __hasOwnProp$
|
|
716
|
-
var __propIsEnum$
|
|
717
|
-
var __defNormalProp$
|
|
718
|
-
var __spreadValues$
|
|
1552
|
+
var __defProp$N = Object.defineProperty;
|
|
1553
|
+
var __getOwnPropSymbols$O = Object.getOwnPropertySymbols;
|
|
1554
|
+
var __hasOwnProp$O = Object.prototype.hasOwnProperty;
|
|
1555
|
+
var __propIsEnum$O = Object.prototype.propertyIsEnumerable;
|
|
1556
|
+
var __defNormalProp$N = (obj, key, value) => key in obj ? __defProp$N(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1557
|
+
var __spreadValues$M = (a, b) => {
|
|
719
1558
|
for (var prop in b || (b = {}))
|
|
720
|
-
if (__hasOwnProp$
|
|
721
|
-
__defNormalProp$
|
|
722
|
-
if (__getOwnPropSymbols$
|
|
723
|
-
for (var prop of __getOwnPropSymbols$
|
|
724
|
-
if (__propIsEnum$
|
|
725
|
-
__defNormalProp$
|
|
1559
|
+
if (__hasOwnProp$O.call(b, prop))
|
|
1560
|
+
__defNormalProp$N(a, prop, b[prop]);
|
|
1561
|
+
if (__getOwnPropSymbols$O)
|
|
1562
|
+
for (var prop of __getOwnPropSymbols$O(b)) {
|
|
1563
|
+
if (__propIsEnum$O.call(b, prop))
|
|
1564
|
+
__defNormalProp$N(a, prop, b[prop]);
|
|
726
1565
|
}
|
|
727
1566
|
return a;
|
|
728
1567
|
};
|
|
729
|
-
var __objRest$
|
|
1568
|
+
var __objRest$w = (source, exclude) => {
|
|
730
1569
|
var target = {};
|
|
731
1570
|
for (var prop in source)
|
|
732
|
-
if (__hasOwnProp$
|
|
1571
|
+
if (__hasOwnProp$O.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
733
1572
|
target[prop] = source[prop];
|
|
734
|
-
if (source != null && __getOwnPropSymbols$
|
|
735
|
-
for (var prop of __getOwnPropSymbols$
|
|
736
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1573
|
+
if (source != null && __getOwnPropSymbols$O)
|
|
1574
|
+
for (var prop of __getOwnPropSymbols$O(source)) {
|
|
1575
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$O.call(source, prop))
|
|
737
1576
|
target[prop] = source[prop];
|
|
738
1577
|
}
|
|
739
1578
|
return target;
|
|
740
1579
|
};
|
|
741
1580
|
const FieldsBoolean = (_a) => {
|
|
742
|
-
var _b = _a, { input, children } = _b, props = __objRest$
|
|
1581
|
+
var _b = _a, { input, children } = _b, props = __objRest$w(_b, ["input", "children"]);
|
|
743
1582
|
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(
|
|
744
1583
|
Checkbox,
|
|
745
|
-
__spreadValues$
|
|
1584
|
+
__spreadValues$M({
|
|
746
1585
|
checked: Boolean(input.value),
|
|
747
1586
|
onChange: (e) => input.onChange(e.target.checked)
|
|
748
1587
|
}, props),
|
|
@@ -767,17 +1606,17 @@
|
|
|
767
1606
|
}
|
|
768
1607
|
));
|
|
769
1608
|
|
|
770
|
-
var __getOwnPropSymbols$
|
|
771
|
-
var __hasOwnProp$
|
|
772
|
-
var __propIsEnum$
|
|
773
|
-
var __objRest$
|
|
1609
|
+
var __getOwnPropSymbols$N = Object.getOwnPropertySymbols;
|
|
1610
|
+
var __hasOwnProp$N = Object.prototype.hasOwnProperty;
|
|
1611
|
+
var __propIsEnum$N = Object.prototype.propertyIsEnumerable;
|
|
1612
|
+
var __objRest$v = (source, exclude) => {
|
|
774
1613
|
var target = {};
|
|
775
1614
|
for (var prop in source)
|
|
776
|
-
if (__hasOwnProp$
|
|
1615
|
+
if (__hasOwnProp$N.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
777
1616
|
target[prop] = source[prop];
|
|
778
|
-
if (source != null && __getOwnPropSymbols$
|
|
779
|
-
for (var prop of __getOwnPropSymbols$
|
|
780
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1617
|
+
if (source != null && __getOwnPropSymbols$N)
|
|
1618
|
+
for (var prop of __getOwnPropSymbols$N(source)) {
|
|
1619
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$N.call(source, prop))
|
|
781
1620
|
target[prop] = source[prop];
|
|
782
1621
|
}
|
|
783
1622
|
return target;
|
|
@@ -785,7 +1624,7 @@
|
|
|
785
1624
|
const FieldsDateTimeRange = (_a) => {
|
|
786
1625
|
var _b = _a, {
|
|
787
1626
|
input
|
|
788
|
-
} = _b, props = __objRest$
|
|
1627
|
+
} = _b, props = __objRest$v(_b, [
|
|
789
1628
|
"input"
|
|
790
1629
|
]);
|
|
791
1630
|
var _a2, _b2;
|
|
@@ -809,74 +1648,61 @@
|
|
|
809
1648
|
));
|
|
810
1649
|
};
|
|
811
1650
|
|
|
812
|
-
const WizardBody = /*#__PURE__*/react$1.styled('div')({
|
|
813
|
-
name: "WizardBody",
|
|
814
|
-
class: "w1vvwdlp",
|
|
815
|
-
propsAsIs: false
|
|
816
|
-
});
|
|
817
|
-
const FullView = /*#__PURE__*/react$1.styled('div')({
|
|
818
|
-
name: "FullView",
|
|
819
|
-
class: "f1rest1f",
|
|
820
|
-
propsAsIs: false
|
|
821
|
-
});
|
|
822
|
-
const InputStyle = "ipd9bk";
|
|
823
|
-
const KitInputStyle = "kypn5o5";
|
|
824
|
-
|
|
825
1651
|
const LoadingWrapper = "l4bld33";
|
|
826
1652
|
const LoadingLine1 = "lgitjoj";
|
|
827
1653
|
const LoadingLine2 = "l13g0exg";
|
|
828
1654
|
const LoadingLine3 = "l1exo3h6";
|
|
829
1655
|
|
|
830
|
-
var __defProp$
|
|
831
|
-
var __defProps$
|
|
832
|
-
var __getOwnPropDescs$
|
|
833
|
-
var __getOwnPropSymbols$
|
|
834
|
-
var __hasOwnProp$
|
|
835
|
-
var __propIsEnum$
|
|
836
|
-
var __defNormalProp$
|
|
837
|
-
var __spreadValues$
|
|
1656
|
+
var __defProp$M = Object.defineProperty;
|
|
1657
|
+
var __defProps$D = Object.defineProperties;
|
|
1658
|
+
var __getOwnPropDescs$D = Object.getOwnPropertyDescriptors;
|
|
1659
|
+
var __getOwnPropSymbols$M = Object.getOwnPropertySymbols;
|
|
1660
|
+
var __hasOwnProp$M = Object.prototype.hasOwnProperty;
|
|
1661
|
+
var __propIsEnum$M = Object.prototype.propertyIsEnumerable;
|
|
1662
|
+
var __defNormalProp$M = (obj, key, value) => key in obj ? __defProp$M(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1663
|
+
var __spreadValues$L = (a, b) => {
|
|
838
1664
|
for (var prop in b || (b = {}))
|
|
839
|
-
if (__hasOwnProp$
|
|
840
|
-
__defNormalProp$
|
|
841
|
-
if (__getOwnPropSymbols$
|
|
842
|
-
for (var prop of __getOwnPropSymbols$
|
|
843
|
-
if (__propIsEnum$
|
|
844
|
-
__defNormalProp$
|
|
1665
|
+
if (__hasOwnProp$M.call(b, prop))
|
|
1666
|
+
__defNormalProp$M(a, prop, b[prop]);
|
|
1667
|
+
if (__getOwnPropSymbols$M)
|
|
1668
|
+
for (var prop of __getOwnPropSymbols$M(b)) {
|
|
1669
|
+
if (__propIsEnum$M.call(b, prop))
|
|
1670
|
+
__defNormalProp$M(a, prop, b[prop]);
|
|
845
1671
|
}
|
|
846
1672
|
return a;
|
|
847
1673
|
};
|
|
848
|
-
var __spreadProps$
|
|
1674
|
+
var __spreadProps$D = (a, b) => __defProps$D(a, __getOwnPropDescs$D(b));
|
|
849
1675
|
const Loading = ({ fullView = true }) => {
|
|
850
1676
|
const Wrapper = fullView ? FullView : React.Fragment;
|
|
851
1677
|
const props = fullView ? { className: "loading-full-view" } : {};
|
|
852
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Wrapper, __spreadProps$
|
|
1678
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Wrapper, __spreadProps$D(__spreadValues$L({}, props), { "data-testid": "loading" }), /* @__PURE__ */ React__namespace.default.createElement("div", { className: LoadingWrapper }, /* @__PURE__ */ React__namespace.default.createElement("div", { className: LoadingLine1 }), /* @__PURE__ */ React__namespace.default.createElement("div", { className: LoadingLine2 }), /* @__PURE__ */ React__namespace.default.createElement("div", { className: LoadingLine3 })));
|
|
853
1679
|
};
|
|
854
1680
|
|
|
855
|
-
var __defProp$
|
|
856
|
-
var __defProps$
|
|
857
|
-
var __getOwnPropDescs$
|
|
858
|
-
var __getOwnPropSymbols$
|
|
859
|
-
var __hasOwnProp$
|
|
860
|
-
var __propIsEnum$
|
|
861
|
-
var __defNormalProp$
|
|
1681
|
+
var __defProp$L = Object.defineProperty;
|
|
1682
|
+
var __defProps$C = Object.defineProperties;
|
|
1683
|
+
var __getOwnPropDescs$C = Object.getOwnPropertyDescriptors;
|
|
1684
|
+
var __getOwnPropSymbols$L = Object.getOwnPropertySymbols;
|
|
1685
|
+
var __hasOwnProp$L = Object.prototype.hasOwnProperty;
|
|
1686
|
+
var __propIsEnum$L = Object.prototype.propertyIsEnumerable;
|
|
1687
|
+
var __defNormalProp$L = (obj, key, value) => key in obj ? __defProp$L(obj, key, {
|
|
862
1688
|
enumerable: true,
|
|
863
1689
|
configurable: true,
|
|
864
1690
|
writable: true,
|
|
865
1691
|
value
|
|
866
1692
|
}) : obj[key] = value;
|
|
867
|
-
var __spreadValues$
|
|
868
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
869
|
-
if (__getOwnPropSymbols$
|
|
870
|
-
if (__propIsEnum$
|
|
1693
|
+
var __spreadValues$K = (a, b) => {
|
|
1694
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$L.call(b, prop)) __defNormalProp$L(a, prop, b[prop]);
|
|
1695
|
+
if (__getOwnPropSymbols$L) for (var prop of __getOwnPropSymbols$L(b)) {
|
|
1696
|
+
if (__propIsEnum$L.call(b, prop)) __defNormalProp$L(a, prop, b[prop]);
|
|
871
1697
|
}
|
|
872
1698
|
return a;
|
|
873
1699
|
};
|
|
874
|
-
var __spreadProps$
|
|
875
|
-
var __objRest$
|
|
1700
|
+
var __spreadProps$C = (a, b) => __defProps$C(a, __getOwnPropDescs$C(b));
|
|
1701
|
+
var __objRest$u = (source, exclude) => {
|
|
876
1702
|
var target = {};
|
|
877
|
-
for (var prop in source) if (__hasOwnProp$
|
|
878
|
-
if (source != null && __getOwnPropSymbols$
|
|
879
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1703
|
+
for (var prop in source) if (__hasOwnProp$L.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1704
|
+
if (source != null && __getOwnPropSymbols$L) for (var prop of __getOwnPropSymbols$L(source)) {
|
|
1705
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$L.call(source, prop)) target[prop] = source[prop];
|
|
880
1706
|
}
|
|
881
1707
|
return target;
|
|
882
1708
|
};
|
|
@@ -904,7 +1730,7 @@
|
|
|
904
1730
|
meta,
|
|
905
1731
|
placeholder
|
|
906
1732
|
} = _b,
|
|
907
|
-
restProps = __objRest$
|
|
1733
|
+
restProps = __objRest$u(_b, ["input", "multiple", "className", "scrollBottomBuffer", "onScrollBottom", "onPopupScroll", "onSearch", "showSearch", "filterOption", "loading", "notFoundContent", "children", "error", "selectLimit", "dropdownClassName", "danger", "size", "meta", "placeholder"]);
|
|
908
1734
|
var _a2;
|
|
909
1735
|
const limitExceeded = multiple && selectLimit && selectLimit <= (((_a2 = input.value) == null ? void 0 : _a2.length) || 0);
|
|
910
1736
|
const typo = {
|
|
@@ -930,7 +1756,7 @@
|
|
|
930
1756
|
inputDom && (placeholder || item) && inputDom.setAttribute("data-test", String(placeholder || item.textContent));
|
|
931
1757
|
}
|
|
932
1758
|
}, [selectRef, placeholder]);
|
|
933
|
-
return /* @__PURE__ */React__namespace.default.createElement(antd.Select, __spreadValues$
|
|
1759
|
+
return /* @__PURE__ */React__namespace.default.createElement(antd.Select, __spreadValues$K(__spreadProps$C(__spreadValues$K({}, input), {
|
|
934
1760
|
ref: selectRef,
|
|
935
1761
|
size,
|
|
936
1762
|
value: multiple ? input.value || [] : input.value || void 0,
|
|
@@ -971,38 +1797,38 @@
|
|
|
971
1797
|
loading,
|
|
972
1798
|
placeholder
|
|
973
1799
|
}), restProps), React__namespace.default.Children.map(children, child => {
|
|
974
|
-
return reactIs.isElement(child) ? __spreadProps$
|
|
975
|
-
props: __spreadProps$
|
|
1800
|
+
return reactIs.isElement(child) ? __spreadProps$C(__spreadValues$K({}, child), {
|
|
1801
|
+
props: __spreadProps$C(__spreadValues$K({}, child.props), {
|
|
976
1802
|
"data-test": child.props.value
|
|
977
1803
|
})
|
|
978
1804
|
}) : child;
|
|
979
1805
|
}));
|
|
980
1806
|
};
|
|
981
1807
|
|
|
982
|
-
var __defProp$
|
|
983
|
-
var __getOwnPropSymbols$
|
|
984
|
-
var __hasOwnProp$
|
|
985
|
-
var __propIsEnum$
|
|
986
|
-
var __defNormalProp$
|
|
987
|
-
var __spreadValues$
|
|
1808
|
+
var __defProp$K = Object.defineProperty;
|
|
1809
|
+
var __getOwnPropSymbols$K = Object.getOwnPropertySymbols;
|
|
1810
|
+
var __hasOwnProp$K = Object.prototype.hasOwnProperty;
|
|
1811
|
+
var __propIsEnum$K = Object.prototype.propertyIsEnumerable;
|
|
1812
|
+
var __defNormalProp$K = (obj, key, value) => key in obj ? __defProp$K(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1813
|
+
var __spreadValues$J = (a, b) => {
|
|
988
1814
|
for (var prop in b || (b = {}))
|
|
989
|
-
if (__hasOwnProp$
|
|
990
|
-
__defNormalProp$
|
|
991
|
-
if (__getOwnPropSymbols$
|
|
992
|
-
for (var prop of __getOwnPropSymbols$
|
|
993
|
-
if (__propIsEnum$
|
|
994
|
-
__defNormalProp$
|
|
1815
|
+
if (__hasOwnProp$K.call(b, prop))
|
|
1816
|
+
__defNormalProp$K(a, prop, b[prop]);
|
|
1817
|
+
if (__getOwnPropSymbols$K)
|
|
1818
|
+
for (var prop of __getOwnPropSymbols$K(b)) {
|
|
1819
|
+
if (__propIsEnum$K.call(b, prop))
|
|
1820
|
+
__defNormalProp$K(a, prop, b[prop]);
|
|
995
1821
|
}
|
|
996
1822
|
return a;
|
|
997
1823
|
};
|
|
998
|
-
var __objRest$
|
|
1824
|
+
var __objRest$t = (source, exclude) => {
|
|
999
1825
|
var target = {};
|
|
1000
1826
|
for (var prop in source)
|
|
1001
|
-
if (__hasOwnProp$
|
|
1827
|
+
if (__hasOwnProp$K.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1002
1828
|
target[prop] = source[prop];
|
|
1003
|
-
if (source != null && __getOwnPropSymbols$
|
|
1004
|
-
for (var prop of __getOwnPropSymbols$
|
|
1005
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1829
|
+
if (source != null && __getOwnPropSymbols$K)
|
|
1830
|
+
for (var prop of __getOwnPropSymbols$K(source)) {
|
|
1831
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$K.call(source, prop))
|
|
1006
1832
|
target[prop] = source[prop];
|
|
1007
1833
|
}
|
|
1008
1834
|
return target;
|
|
@@ -1012,12 +1838,12 @@
|
|
|
1012
1838
|
meta: __,
|
|
1013
1839
|
enumValues,
|
|
1014
1840
|
emptyLabel
|
|
1015
|
-
} = _b, restProps = __objRest$
|
|
1841
|
+
} = _b, restProps = __objRest$t(_b, [
|
|
1016
1842
|
"meta",
|
|
1017
1843
|
"enumValues",
|
|
1018
1844
|
"emptyLabel"
|
|
1019
1845
|
]);
|
|
1020
|
-
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(Select, __spreadValues$
|
|
1846
|
+
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(Select, __spreadValues$J({}, restProps), emptyLabel && /* @__PURE__ */ React__namespace.default.createElement(antd.Select.Option, { value: "" }, emptyLabel), enumValues.map((v) => {
|
|
1021
1847
|
const item = typeof v === "string" ? { value: v, text: v } : v;
|
|
1022
1848
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
1023
1849
|
antd.Select.Option,
|
|
@@ -1031,31 +1857,31 @@
|
|
|
1031
1857
|
})));
|
|
1032
1858
|
};
|
|
1033
1859
|
|
|
1034
|
-
var __defProp$
|
|
1035
|
-
var __defProps$
|
|
1036
|
-
var __getOwnPropDescs$
|
|
1037
|
-
var __getOwnPropSymbols$
|
|
1038
|
-
var __hasOwnProp$
|
|
1039
|
-
var __propIsEnum$
|
|
1040
|
-
var __defNormalProp$
|
|
1860
|
+
var __defProp$J = Object.defineProperty;
|
|
1861
|
+
var __defProps$B = Object.defineProperties;
|
|
1862
|
+
var __getOwnPropDescs$B = Object.getOwnPropertyDescriptors;
|
|
1863
|
+
var __getOwnPropSymbols$J = Object.getOwnPropertySymbols;
|
|
1864
|
+
var __hasOwnProp$J = Object.prototype.hasOwnProperty;
|
|
1865
|
+
var __propIsEnum$J = Object.prototype.propertyIsEnumerable;
|
|
1866
|
+
var __defNormalProp$J = (obj, key, value) => key in obj ? __defProp$J(obj, key, {
|
|
1041
1867
|
enumerable: true,
|
|
1042
1868
|
configurable: true,
|
|
1043
1869
|
writable: true,
|
|
1044
1870
|
value
|
|
1045
1871
|
}) : obj[key] = value;
|
|
1046
|
-
var __spreadValues$
|
|
1047
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1048
|
-
if (__getOwnPropSymbols$
|
|
1049
|
-
if (__propIsEnum$
|
|
1872
|
+
var __spreadValues$I = (a, b) => {
|
|
1873
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$J.call(b, prop)) __defNormalProp$J(a, prop, b[prop]);
|
|
1874
|
+
if (__getOwnPropSymbols$J) for (var prop of __getOwnPropSymbols$J(b)) {
|
|
1875
|
+
if (__propIsEnum$J.call(b, prop)) __defNormalProp$J(a, prop, b[prop]);
|
|
1050
1876
|
}
|
|
1051
1877
|
return a;
|
|
1052
1878
|
};
|
|
1053
|
-
var __spreadProps$
|
|
1054
|
-
var __objRest$
|
|
1879
|
+
var __spreadProps$B = (a, b) => __defProps$B(a, __getOwnPropDescs$B(b));
|
|
1880
|
+
var __objRest$s = (source, exclude) => {
|
|
1055
1881
|
var target = {};
|
|
1056
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1057
|
-
if (source != null && __getOwnPropSymbols$
|
|
1058
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1882
|
+
for (var prop in source) if (__hasOwnProp$J.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
1883
|
+
if (source != null && __getOwnPropSymbols$J) for (var prop of __getOwnPropSymbols$J(source)) {
|
|
1884
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$J.call(source, prop)) target[prop] = source[prop];
|
|
1059
1885
|
}
|
|
1060
1886
|
return target;
|
|
1061
1887
|
};
|
|
@@ -1091,13 +1917,13 @@
|
|
|
1091
1917
|
prefix,
|
|
1092
1918
|
controls = true
|
|
1093
1919
|
} = _b,
|
|
1094
|
-
props = __objRest$
|
|
1920
|
+
props = __objRest$s(_b, ["className", "error", "size", "suffix", "prefix", "controls"]);
|
|
1095
1921
|
const typo = {
|
|
1096
1922
|
large: Typo.Label.l2_regular,
|
|
1097
1923
|
middle: Typo.Label.l3_regular,
|
|
1098
1924
|
small: Typo.Label.l4_regular
|
|
1099
1925
|
}[size];
|
|
1100
|
-
return /* @__PURE__ */React__namespace.default.createElement(AntdInputNumberStyled, __spreadProps$
|
|
1926
|
+
return /* @__PURE__ */React__namespace.default.createElement(AntdInputNumberStyled, __spreadProps$B(__spreadValues$I({}, props), {
|
|
1101
1927
|
size,
|
|
1102
1928
|
controls,
|
|
1103
1929
|
"data-test": props.name,
|
|
@@ -1107,33 +1933,33 @@
|
|
|
1107
1933
|
}));
|
|
1108
1934
|
};
|
|
1109
1935
|
|
|
1110
|
-
var __defProp$
|
|
1111
|
-
var __defProps$
|
|
1112
|
-
var __getOwnPropDescs$
|
|
1113
|
-
var __getOwnPropSymbols$
|
|
1114
|
-
var __hasOwnProp$
|
|
1115
|
-
var __propIsEnum$
|
|
1116
|
-
var __defNormalProp$
|
|
1117
|
-
var __spreadValues$
|
|
1936
|
+
var __defProp$I = Object.defineProperty;
|
|
1937
|
+
var __defProps$A = Object.defineProperties;
|
|
1938
|
+
var __getOwnPropDescs$A = Object.getOwnPropertyDescriptors;
|
|
1939
|
+
var __getOwnPropSymbols$I = Object.getOwnPropertySymbols;
|
|
1940
|
+
var __hasOwnProp$I = Object.prototype.hasOwnProperty;
|
|
1941
|
+
var __propIsEnum$I = Object.prototype.propertyIsEnumerable;
|
|
1942
|
+
var __defNormalProp$I = (obj, key, value) => key in obj ? __defProp$I(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1943
|
+
var __spreadValues$H = (a, b) => {
|
|
1118
1944
|
for (var prop in b || (b = {}))
|
|
1119
|
-
if (__hasOwnProp$
|
|
1120
|
-
__defNormalProp$
|
|
1121
|
-
if (__getOwnPropSymbols$
|
|
1122
|
-
for (var prop of __getOwnPropSymbols$
|
|
1123
|
-
if (__propIsEnum$
|
|
1124
|
-
__defNormalProp$
|
|
1945
|
+
if (__hasOwnProp$I.call(b, prop))
|
|
1946
|
+
__defNormalProp$I(a, prop, b[prop]);
|
|
1947
|
+
if (__getOwnPropSymbols$I)
|
|
1948
|
+
for (var prop of __getOwnPropSymbols$I(b)) {
|
|
1949
|
+
if (__propIsEnum$I.call(b, prop))
|
|
1950
|
+
__defNormalProp$I(a, prop, b[prop]);
|
|
1125
1951
|
}
|
|
1126
1952
|
return a;
|
|
1127
1953
|
};
|
|
1128
|
-
var __spreadProps$
|
|
1129
|
-
var __objRest$
|
|
1954
|
+
var __spreadProps$A = (a, b) => __defProps$A(a, __getOwnPropDescs$A(b));
|
|
1955
|
+
var __objRest$r = (source, exclude) => {
|
|
1130
1956
|
var target = {};
|
|
1131
1957
|
for (var prop in source)
|
|
1132
|
-
if (__hasOwnProp$
|
|
1958
|
+
if (__hasOwnProp$I.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1133
1959
|
target[prop] = source[prop];
|
|
1134
|
-
if (source != null && __getOwnPropSymbols$
|
|
1135
|
-
for (var prop of __getOwnPropSymbols$
|
|
1136
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
1960
|
+
if (source != null && __getOwnPropSymbols$I)
|
|
1961
|
+
for (var prop of __getOwnPropSymbols$I(source)) {
|
|
1962
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$I.call(source, prop))
|
|
1137
1963
|
target[prop] = source[prop];
|
|
1138
1964
|
}
|
|
1139
1965
|
return target;
|
|
@@ -1144,7 +1970,7 @@
|
|
|
1144
1970
|
meta,
|
|
1145
1971
|
onBlur,
|
|
1146
1972
|
autoComplete = "off"
|
|
1147
|
-
} = _b, props = __objRest$
|
|
1973
|
+
} = _b, props = __objRest$r(_b, [
|
|
1148
1974
|
"input",
|
|
1149
1975
|
"meta",
|
|
1150
1976
|
"onBlur",
|
|
@@ -1152,7 +1978,7 @@
|
|
|
1152
1978
|
]);
|
|
1153
1979
|
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(
|
|
1154
1980
|
InputNumber,
|
|
1155
|
-
__spreadValues$
|
|
1981
|
+
__spreadValues$H(__spreadProps$A(__spreadValues$H({}, input), {
|
|
1156
1982
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1157
1983
|
autoComplete,
|
|
1158
1984
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
@@ -1160,33 +1986,33 @@
|
|
|
1160
1986
|
));
|
|
1161
1987
|
};
|
|
1162
1988
|
|
|
1163
|
-
var __defProp$
|
|
1164
|
-
var __defProps$
|
|
1165
|
-
var __getOwnPropDescs$
|
|
1166
|
-
var __getOwnPropSymbols$
|
|
1167
|
-
var __hasOwnProp$
|
|
1168
|
-
var __propIsEnum$
|
|
1169
|
-
var __defNormalProp$
|
|
1170
|
-
var __spreadValues$
|
|
1989
|
+
var __defProp$H = Object.defineProperty;
|
|
1990
|
+
var __defProps$z = Object.defineProperties;
|
|
1991
|
+
var __getOwnPropDescs$z = Object.getOwnPropertyDescriptors;
|
|
1992
|
+
var __getOwnPropSymbols$H = Object.getOwnPropertySymbols;
|
|
1993
|
+
var __hasOwnProp$H = Object.prototype.hasOwnProperty;
|
|
1994
|
+
var __propIsEnum$H = Object.prototype.propertyIsEnumerable;
|
|
1995
|
+
var __defNormalProp$H = (obj, key, value) => key in obj ? __defProp$H(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1996
|
+
var __spreadValues$G = (a, b) => {
|
|
1171
1997
|
for (var prop in b || (b = {}))
|
|
1172
|
-
if (__hasOwnProp$
|
|
1173
|
-
__defNormalProp$
|
|
1174
|
-
if (__getOwnPropSymbols$
|
|
1175
|
-
for (var prop of __getOwnPropSymbols$
|
|
1176
|
-
if (__propIsEnum$
|
|
1177
|
-
__defNormalProp$
|
|
1998
|
+
if (__hasOwnProp$H.call(b, prop))
|
|
1999
|
+
__defNormalProp$H(a, prop, b[prop]);
|
|
2000
|
+
if (__getOwnPropSymbols$H)
|
|
2001
|
+
for (var prop of __getOwnPropSymbols$H(b)) {
|
|
2002
|
+
if (__propIsEnum$H.call(b, prop))
|
|
2003
|
+
__defNormalProp$H(a, prop, b[prop]);
|
|
1178
2004
|
}
|
|
1179
2005
|
return a;
|
|
1180
2006
|
};
|
|
1181
|
-
var __spreadProps$
|
|
1182
|
-
var __objRest$
|
|
2007
|
+
var __spreadProps$z = (a, b) => __defProps$z(a, __getOwnPropDescs$z(b));
|
|
2008
|
+
var __objRest$q = (source, exclude) => {
|
|
1183
2009
|
var target = {};
|
|
1184
2010
|
for (var prop in source)
|
|
1185
|
-
if (__hasOwnProp$
|
|
2011
|
+
if (__hasOwnProp$H.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1186
2012
|
target[prop] = source[prop];
|
|
1187
|
-
if (source != null && __getOwnPropSymbols$
|
|
1188
|
-
for (var prop of __getOwnPropSymbols$
|
|
1189
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2013
|
+
if (source != null && __getOwnPropSymbols$H)
|
|
2014
|
+
for (var prop of __getOwnPropSymbols$H(source)) {
|
|
2015
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$H.call(source, prop))
|
|
1190
2016
|
target[prop] = source[prop];
|
|
1191
2017
|
}
|
|
1192
2018
|
return target;
|
|
@@ -1196,7 +2022,7 @@
|
|
|
1196
2022
|
className,
|
|
1197
2023
|
error,
|
|
1198
2024
|
size = "middle"
|
|
1199
|
-
} = _b, props = __objRest$
|
|
2025
|
+
} = _b, props = __objRest$q(_b, [
|
|
1200
2026
|
"className",
|
|
1201
2027
|
"error",
|
|
1202
2028
|
"size"
|
|
@@ -1208,7 +2034,7 @@
|
|
|
1208
2034
|
}[size];
|
|
1209
2035
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
1210
2036
|
antd.Input,
|
|
1211
|
-
__spreadProps$
|
|
2037
|
+
__spreadProps$z(__spreadValues$G({}, props), {
|
|
1212
2038
|
size,
|
|
1213
2039
|
"data-test": props.name,
|
|
1214
2040
|
className: cs__default.default(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -1216,33 +2042,33 @@
|
|
|
1216
2042
|
);
|
|
1217
2043
|
};
|
|
1218
2044
|
|
|
1219
|
-
var __defProp$
|
|
1220
|
-
var __defProps$
|
|
1221
|
-
var __getOwnPropDescs$
|
|
1222
|
-
var __getOwnPropSymbols$
|
|
1223
|
-
var __hasOwnProp$
|
|
1224
|
-
var __propIsEnum$
|
|
1225
|
-
var __defNormalProp$
|
|
1226
|
-
var __spreadValues$
|
|
2045
|
+
var __defProp$G = Object.defineProperty;
|
|
2046
|
+
var __defProps$y = Object.defineProperties;
|
|
2047
|
+
var __getOwnPropDescs$y = Object.getOwnPropertyDescriptors;
|
|
2048
|
+
var __getOwnPropSymbols$G = Object.getOwnPropertySymbols;
|
|
2049
|
+
var __hasOwnProp$G = Object.prototype.hasOwnProperty;
|
|
2050
|
+
var __propIsEnum$G = Object.prototype.propertyIsEnumerable;
|
|
2051
|
+
var __defNormalProp$G = (obj, key, value) => key in obj ? __defProp$G(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2052
|
+
var __spreadValues$F = (a, b) => {
|
|
1227
2053
|
for (var prop in b || (b = {}))
|
|
1228
|
-
if (__hasOwnProp$
|
|
1229
|
-
__defNormalProp$
|
|
1230
|
-
if (__getOwnPropSymbols$
|
|
1231
|
-
for (var prop of __getOwnPropSymbols$
|
|
1232
|
-
if (__propIsEnum$
|
|
1233
|
-
__defNormalProp$
|
|
2054
|
+
if (__hasOwnProp$G.call(b, prop))
|
|
2055
|
+
__defNormalProp$G(a, prop, b[prop]);
|
|
2056
|
+
if (__getOwnPropSymbols$G)
|
|
2057
|
+
for (var prop of __getOwnPropSymbols$G(b)) {
|
|
2058
|
+
if (__propIsEnum$G.call(b, prop))
|
|
2059
|
+
__defNormalProp$G(a, prop, b[prop]);
|
|
1234
2060
|
}
|
|
1235
2061
|
return a;
|
|
1236
2062
|
};
|
|
1237
|
-
var __spreadProps$
|
|
1238
|
-
var __objRest$
|
|
2063
|
+
var __spreadProps$y = (a, b) => __defProps$y(a, __getOwnPropDescs$y(b));
|
|
2064
|
+
var __objRest$p = (source, exclude) => {
|
|
1239
2065
|
var target = {};
|
|
1240
2066
|
for (var prop in source)
|
|
1241
|
-
if (__hasOwnProp$
|
|
2067
|
+
if (__hasOwnProp$G.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1242
2068
|
target[prop] = source[prop];
|
|
1243
|
-
if (source != null && __getOwnPropSymbols$
|
|
1244
|
-
for (var prop of __getOwnPropSymbols$
|
|
1245
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2069
|
+
if (source != null && __getOwnPropSymbols$G)
|
|
2070
|
+
for (var prop of __getOwnPropSymbols$G(source)) {
|
|
2071
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$G.call(source, prop))
|
|
1246
2072
|
target[prop] = source[prop];
|
|
1247
2073
|
}
|
|
1248
2074
|
return target;
|
|
@@ -1254,7 +2080,7 @@
|
|
|
1254
2080
|
onBlur,
|
|
1255
2081
|
autoComplete = "off",
|
|
1256
2082
|
supportNegativeValue = false
|
|
1257
|
-
} = _b, props = __objRest$
|
|
2083
|
+
} = _b, props = __objRest$p(_b, [
|
|
1258
2084
|
"input",
|
|
1259
2085
|
"meta",
|
|
1260
2086
|
"onBlur",
|
|
@@ -1263,7 +2089,7 @@
|
|
|
1263
2089
|
]);
|
|
1264
2090
|
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(
|
|
1265
2091
|
Input,
|
|
1266
|
-
__spreadValues$
|
|
2092
|
+
__spreadValues$F(__spreadProps$y(__spreadValues$F({}, input), {
|
|
1267
2093
|
onChange: (e) => {
|
|
1268
2094
|
const value = e.currentTarget.value;
|
|
1269
2095
|
if (supportNegativeValue) {
|
|
@@ -1298,31 +2124,31 @@
|
|
|
1298
2124
|
}
|
|
1299
2125
|
};
|
|
1300
2126
|
|
|
1301
|
-
var __defProp$
|
|
1302
|
-
var __defProps$
|
|
1303
|
-
var __getOwnPropDescs$
|
|
1304
|
-
var __getOwnPropSymbols$
|
|
1305
|
-
var __hasOwnProp$
|
|
1306
|
-
var __propIsEnum$
|
|
1307
|
-
var __defNormalProp$
|
|
2127
|
+
var __defProp$F = Object.defineProperty;
|
|
2128
|
+
var __defProps$x = Object.defineProperties;
|
|
2129
|
+
var __getOwnPropDescs$x = Object.getOwnPropertyDescriptors;
|
|
2130
|
+
var __getOwnPropSymbols$F = Object.getOwnPropertySymbols;
|
|
2131
|
+
var __hasOwnProp$F = Object.prototype.hasOwnProperty;
|
|
2132
|
+
var __propIsEnum$F = Object.prototype.propertyIsEnumerable;
|
|
2133
|
+
var __defNormalProp$F = (obj, key, value) => key in obj ? __defProp$F(obj, key, {
|
|
1308
2134
|
enumerable: true,
|
|
1309
2135
|
configurable: true,
|
|
1310
2136
|
writable: true,
|
|
1311
2137
|
value
|
|
1312
2138
|
}) : obj[key] = value;
|
|
1313
|
-
var __spreadValues$
|
|
1314
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
1315
|
-
if (__getOwnPropSymbols$
|
|
1316
|
-
if (__propIsEnum$
|
|
2139
|
+
var __spreadValues$E = (a, b) => {
|
|
2140
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$F.call(b, prop)) __defNormalProp$F(a, prop, b[prop]);
|
|
2141
|
+
if (__getOwnPropSymbols$F) for (var prop of __getOwnPropSymbols$F(b)) {
|
|
2142
|
+
if (__propIsEnum$F.call(b, prop)) __defNormalProp$F(a, prop, b[prop]);
|
|
1317
2143
|
}
|
|
1318
2144
|
return a;
|
|
1319
2145
|
};
|
|
1320
|
-
var __spreadProps$
|
|
1321
|
-
var __objRest$
|
|
2146
|
+
var __spreadProps$x = (a, b) => __defProps$x(a, __getOwnPropDescs$x(b));
|
|
2147
|
+
var __objRest$o = (source, exclude) => {
|
|
1322
2148
|
var target = {};
|
|
1323
|
-
for (var prop in source) if (__hasOwnProp$
|
|
1324
|
-
if (source != null && __getOwnPropSymbols$
|
|
1325
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2149
|
+
for (var prop in source) if (__hasOwnProp$F.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
2150
|
+
if (source != null && __getOwnPropSymbols$F) for (var prop of __getOwnPropSymbols$F(source)) {
|
|
2151
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$F.call(source, prop)) target[prop] = source[prop];
|
|
1326
2152
|
}
|
|
1327
2153
|
return target;
|
|
1328
2154
|
};
|
|
@@ -1360,13 +2186,13 @@
|
|
|
1360
2186
|
min,
|
|
1361
2187
|
controls = false
|
|
1362
2188
|
} = _b,
|
|
1363
|
-
props = __objRest$
|
|
2189
|
+
props = __objRest$o(_b, ["className", "error", "size", "suffix", "prefix", "max", "min", "controls"]);
|
|
1364
2190
|
const typo = {
|
|
1365
2191
|
large: Typo.Label.l2_regular,
|
|
1366
2192
|
middle: Typo.Label.l3_regular,
|
|
1367
2193
|
small: Typo.Label.l4_regular
|
|
1368
2194
|
}[size];
|
|
1369
|
-
return /* @__PURE__ */React__namespace.default.createElement(AntdIntStyled, __spreadProps$
|
|
2195
|
+
return /* @__PURE__ */React__namespace.default.createElement(AntdIntStyled, __spreadProps$x(__spreadValues$E({}, props), {
|
|
1370
2196
|
size,
|
|
1371
2197
|
formatter: formatterInteger,
|
|
1372
2198
|
parser: formatterInteger,
|
|
@@ -1380,33 +2206,33 @@
|
|
|
1380
2206
|
}));
|
|
1381
2207
|
};
|
|
1382
2208
|
|
|
1383
|
-
var __defProp$
|
|
1384
|
-
var __defProps$
|
|
1385
|
-
var __getOwnPropDescs$
|
|
1386
|
-
var __getOwnPropSymbols$
|
|
1387
|
-
var __hasOwnProp$
|
|
1388
|
-
var __propIsEnum$
|
|
1389
|
-
var __defNormalProp$
|
|
1390
|
-
var __spreadValues$
|
|
2209
|
+
var __defProp$E = Object.defineProperty;
|
|
2210
|
+
var __defProps$w = Object.defineProperties;
|
|
2211
|
+
var __getOwnPropDescs$w = Object.getOwnPropertyDescriptors;
|
|
2212
|
+
var __getOwnPropSymbols$E = Object.getOwnPropertySymbols;
|
|
2213
|
+
var __hasOwnProp$E = Object.prototype.hasOwnProperty;
|
|
2214
|
+
var __propIsEnum$E = Object.prototype.propertyIsEnumerable;
|
|
2215
|
+
var __defNormalProp$E = (obj, key, value) => key in obj ? __defProp$E(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2216
|
+
var __spreadValues$D = (a, b) => {
|
|
1391
2217
|
for (var prop in b || (b = {}))
|
|
1392
|
-
if (__hasOwnProp$
|
|
1393
|
-
__defNormalProp$
|
|
1394
|
-
if (__getOwnPropSymbols$
|
|
1395
|
-
for (var prop of __getOwnPropSymbols$
|
|
1396
|
-
if (__propIsEnum$
|
|
1397
|
-
__defNormalProp$
|
|
2218
|
+
if (__hasOwnProp$E.call(b, prop))
|
|
2219
|
+
__defNormalProp$E(a, prop, b[prop]);
|
|
2220
|
+
if (__getOwnPropSymbols$E)
|
|
2221
|
+
for (var prop of __getOwnPropSymbols$E(b)) {
|
|
2222
|
+
if (__propIsEnum$E.call(b, prop))
|
|
2223
|
+
__defNormalProp$E(a, prop, b[prop]);
|
|
1398
2224
|
}
|
|
1399
2225
|
return a;
|
|
1400
2226
|
};
|
|
1401
|
-
var __spreadProps$
|
|
1402
|
-
var __objRest$
|
|
2227
|
+
var __spreadProps$w = (a, b) => __defProps$w(a, __getOwnPropDescs$w(b));
|
|
2228
|
+
var __objRest$n = (source, exclude) => {
|
|
1403
2229
|
var target = {};
|
|
1404
2230
|
for (var prop in source)
|
|
1405
|
-
if (__hasOwnProp$
|
|
2231
|
+
if (__hasOwnProp$E.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
1406
2232
|
target[prop] = source[prop];
|
|
1407
|
-
if (source != null && __getOwnPropSymbols$
|
|
1408
|
-
for (var prop of __getOwnPropSymbols$
|
|
1409
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2233
|
+
if (source != null && __getOwnPropSymbols$E)
|
|
2234
|
+
for (var prop of __getOwnPropSymbols$E(source)) {
|
|
2235
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$E.call(source, prop))
|
|
1410
2236
|
target[prop] = source[prop];
|
|
1411
2237
|
}
|
|
1412
2238
|
return target;
|
|
@@ -1416,14 +2242,14 @@
|
|
|
1416
2242
|
meta,
|
|
1417
2243
|
input,
|
|
1418
2244
|
onBlur
|
|
1419
|
-
} = _b, props = __objRest$
|
|
2245
|
+
} = _b, props = __objRest$n(_b, [
|
|
1420
2246
|
"meta",
|
|
1421
2247
|
"input",
|
|
1422
2248
|
"onBlur"
|
|
1423
2249
|
]);
|
|
1424
2250
|
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(
|
|
1425
2251
|
InputInteger,
|
|
1426
|
-
__spreadProps$
|
|
2252
|
+
__spreadProps$w(__spreadValues$D(__spreadValues$D({}, props), input), {
|
|
1427
2253
|
onBlur: (e) => onBlur ? onBlur(input, e) : input.onBlur(e),
|
|
1428
2254
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
1429
2255
|
})
|
|
@@ -1501,10 +2327,10 @@
|
|
|
1501
2327
|
const EMPTY_FUNCTION = () => {
|
|
1502
2328
|
};
|
|
1503
2329
|
|
|
1504
|
-
var __defProp$
|
|
1505
|
-
var __defNormalProp$
|
|
2330
|
+
var __defProp$D = Object.defineProperty;
|
|
2331
|
+
var __defNormalProp$D = (obj, key, value) => key in obj ? __defProp$D(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1506
2332
|
var __publicField$1 = (obj, key, value) => {
|
|
1507
|
-
__defNormalProp$
|
|
2333
|
+
__defNormalProp$D(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
1508
2334
|
return value;
|
|
1509
2335
|
};
|
|
1510
2336
|
dayjs__default.default.extend(UTC__default.default);
|
|
@@ -1958,175 +2784,6 @@
|
|
|
1958
2784
|
};
|
|
1959
2785
|
}
|
|
1960
2786
|
|
|
1961
|
-
const MAGIC_METRIC_NULL = -2;
|
|
1962
|
-
function formatBits(bits, decimals = 2) {
|
|
1963
|
-
if (bits <= 0 || bits === MAGIC_METRIC_NULL) {
|
|
1964
|
-
return {
|
|
1965
|
-
value: 0,
|
|
1966
|
-
unit: "b"
|
|
1967
|
-
};
|
|
1968
|
-
}
|
|
1969
|
-
const k = 1e3;
|
|
1970
|
-
const units = ["b", "Kb", "Mb", "Gb", "Tb", "Pb"];
|
|
1971
|
-
let i = Math.floor(Math.log(bits) / Math.log(k));
|
|
1972
|
-
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
1973
|
-
return {
|
|
1974
|
-
value: parseFloat((bits / Math.pow(k, i)).toFixed(decimals)),
|
|
1975
|
-
unit: units[i]
|
|
1976
|
-
};
|
|
1977
|
-
}
|
|
1978
|
-
function formatFrequency(frequency, decimals = 2) {
|
|
1979
|
-
if (frequency <= 0 || frequency === MAGIC_METRIC_NULL) {
|
|
1980
|
-
return {
|
|
1981
|
-
value: 0,
|
|
1982
|
-
unit: "Hz"
|
|
1983
|
-
};
|
|
1984
|
-
}
|
|
1985
|
-
const k = 1e3;
|
|
1986
|
-
const units = ["Hz", "KHz", "MHz", "GHz", "THz"];
|
|
1987
|
-
let i = Math.floor(Math.log(frequency) / Math.log(k));
|
|
1988
|
-
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
1989
|
-
return {
|
|
1990
|
-
value: parseFloat((frequency / Math.pow(k, i)).toFixed(decimals)),
|
|
1991
|
-
unit: units[i]
|
|
1992
|
-
};
|
|
1993
|
-
}
|
|
1994
|
-
const SECOND = 1;
|
|
1995
|
-
const MINUTE = 60 * SECOND;
|
|
1996
|
-
const HOUR = 60 * MINUTE;
|
|
1997
|
-
const DAY = 24 * HOUR;
|
|
1998
|
-
const WEEK = 7 * DAY;
|
|
1999
|
-
function formatSeconds(seconds, decimals = 0) {
|
|
2000
|
-
if (seconds <= MAGIC_METRIC_NULL) {
|
|
2001
|
-
seconds = 0;
|
|
2002
|
-
}
|
|
2003
|
-
const units = [
|
|
2004
|
-
{
|
|
2005
|
-
value: WEEK,
|
|
2006
|
-
unit: "week"
|
|
2007
|
-
},
|
|
2008
|
-
{
|
|
2009
|
-
value: DAY,
|
|
2010
|
-
unit: "day"
|
|
2011
|
-
},
|
|
2012
|
-
{
|
|
2013
|
-
value: HOUR,
|
|
2014
|
-
unit: "hour"
|
|
2015
|
-
},
|
|
2016
|
-
{
|
|
2017
|
-
value: MINUTE,
|
|
2018
|
-
unit: "minute"
|
|
2019
|
-
},
|
|
2020
|
-
{
|
|
2021
|
-
value: SECOND,
|
|
2022
|
-
unit: "second"
|
|
2023
|
-
}
|
|
2024
|
-
];
|
|
2025
|
-
for (const unit of units) {
|
|
2026
|
-
if (seconds > unit.value) {
|
|
2027
|
-
return {
|
|
2028
|
-
value: parseFloat((seconds / unit.value).toFixed(decimals)),
|
|
2029
|
-
unit: unit.unit
|
|
2030
|
-
};
|
|
2031
|
-
}
|
|
2032
|
-
}
|
|
2033
|
-
return {
|
|
2034
|
-
value: parseFloat((seconds / SECOND).toFixed(decimals)),
|
|
2035
|
-
unit: "second"
|
|
2036
|
-
};
|
|
2037
|
-
}
|
|
2038
|
-
function formatBitPerSecond(input, decimals = 1) {
|
|
2039
|
-
if (input <= 0 || input === MAGIC_METRIC_NULL) {
|
|
2040
|
-
return {
|
|
2041
|
-
value: 0,
|
|
2042
|
-
unit: "bps"
|
|
2043
|
-
};
|
|
2044
|
-
}
|
|
2045
|
-
const k = 1e3;
|
|
2046
|
-
const units = ["bps", "Kbps", "Mbps", "Gbps", "Tbps"];
|
|
2047
|
-
let i = Math.floor(Math.log(input) / Math.log(k));
|
|
2048
|
-
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
2049
|
-
return {
|
|
2050
|
-
value: parseFloat((input / Math.pow(k, i)).toFixed(decimals)),
|
|
2051
|
-
unit: units[i]
|
|
2052
|
-
};
|
|
2053
|
-
}
|
|
2054
|
-
function formatBps(input, decimals = 1) {
|
|
2055
|
-
if (input <= 0 || input === MAGIC_METRIC_NULL) {
|
|
2056
|
-
return {
|
|
2057
|
-
value: 0,
|
|
2058
|
-
unit: "Bps"
|
|
2059
|
-
};
|
|
2060
|
-
}
|
|
2061
|
-
const k = 1e3;
|
|
2062
|
-
const units = ["Bps", "KBps", "MBps", "GBps", "TBps"];
|
|
2063
|
-
let i = Math.floor(Math.log(input) / Math.log(k));
|
|
2064
|
-
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
2065
|
-
return {
|
|
2066
|
-
value: parseFloat((input / Math.pow(k, i)).toFixed(decimals)),
|
|
2067
|
-
unit: units[i]
|
|
2068
|
-
};
|
|
2069
|
-
}
|
|
2070
|
-
function formatBytes(bytes, decimals = 2) {
|
|
2071
|
-
if (bytes <= 0 || bytes === MAGIC_METRIC_NULL) {
|
|
2072
|
-
return {
|
|
2073
|
-
value: 0,
|
|
2074
|
-
unit: "B"
|
|
2075
|
-
};
|
|
2076
|
-
}
|
|
2077
|
-
const k = 1024;
|
|
2078
|
-
const units = ["B", "KiB", "MiB", "GiB", "TiB", "PiB"];
|
|
2079
|
-
let i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
2080
|
-
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
2081
|
-
return {
|
|
2082
|
-
value: parseFloat((bytes / Math.pow(k, i)).toFixed(decimals)),
|
|
2083
|
-
unit: units[i]
|
|
2084
|
-
};
|
|
2085
|
-
}
|
|
2086
|
-
function formatPercent(input, decimals = 2, saturated = true) {
|
|
2087
|
-
if (input === MAGIC_METRIC_NULL) {
|
|
2088
|
-
input = 0;
|
|
2089
|
-
}
|
|
2090
|
-
if (saturated) {
|
|
2091
|
-
if (input <= 0) {
|
|
2092
|
-
input = 0;
|
|
2093
|
-
}
|
|
2094
|
-
if (input > 100) {
|
|
2095
|
-
input = 100;
|
|
2096
|
-
}
|
|
2097
|
-
}
|
|
2098
|
-
const value = input.toFixed(decimals);
|
|
2099
|
-
if (parseFloat(value) === 0 && input > 0) {
|
|
2100
|
-
if (decimals >= 1) {
|
|
2101
|
-
return {
|
|
2102
|
-
value: `0.${"0".repeat(decimals - 1)}1`,
|
|
2103
|
-
unit: "%"
|
|
2104
|
-
};
|
|
2105
|
-
}
|
|
2106
|
-
return {
|
|
2107
|
-
value: "1",
|
|
2108
|
-
unit: "%"
|
|
2109
|
-
};
|
|
2110
|
-
}
|
|
2111
|
-
return {
|
|
2112
|
-
value,
|
|
2113
|
-
unit: "%"
|
|
2114
|
-
};
|
|
2115
|
-
}
|
|
2116
|
-
function formatSpeed(input, decimals = 0) {
|
|
2117
|
-
input /= 1e3;
|
|
2118
|
-
if (input < 1)
|
|
2119
|
-
return { value: "-", unit: "" };
|
|
2120
|
-
const units = ["KbE", "MbE", "GbE", "TbE"];
|
|
2121
|
-
const k = 1e3;
|
|
2122
|
-
let i = Math.floor(Math.log(input) / Math.log(k));
|
|
2123
|
-
i = i < 0 ? 0 : i > units.length - 1 ? units.length - 1 : i;
|
|
2124
|
-
return {
|
|
2125
|
-
value: parseFloat((input / Math.pow(k, i)).toFixed(decimals)),
|
|
2126
|
-
unit: units[i]
|
|
2127
|
-
};
|
|
2128
|
-
}
|
|
2129
|
-
|
|
2130
2787
|
function getAlertIcon(type) {
|
|
2131
2788
|
switch (type) {
|
|
2132
2789
|
case "success":
|
|
@@ -2304,33 +2961,33 @@
|
|
|
2304
2961
|
}, children), showOverflow && /* @__PURE__ */React__namespace.default.createElement("span", null, overflow));
|
|
2305
2962
|
};
|
|
2306
2963
|
|
|
2307
|
-
var __defProp$
|
|
2308
|
-
var __defProps$
|
|
2309
|
-
var __getOwnPropDescs$
|
|
2310
|
-
var __getOwnPropSymbols$
|
|
2311
|
-
var __hasOwnProp$
|
|
2312
|
-
var __propIsEnum$
|
|
2313
|
-
var __defNormalProp$
|
|
2314
|
-
var __spreadValues$
|
|
2964
|
+
var __defProp$C = Object.defineProperty;
|
|
2965
|
+
var __defProps$v = Object.defineProperties;
|
|
2966
|
+
var __getOwnPropDescs$v = Object.getOwnPropertyDescriptors;
|
|
2967
|
+
var __getOwnPropSymbols$D = Object.getOwnPropertySymbols;
|
|
2968
|
+
var __hasOwnProp$D = Object.prototype.hasOwnProperty;
|
|
2969
|
+
var __propIsEnum$D = Object.prototype.propertyIsEnumerable;
|
|
2970
|
+
var __defNormalProp$C = (obj, key, value) => key in obj ? __defProp$C(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
2971
|
+
var __spreadValues$C = (a, b) => {
|
|
2315
2972
|
for (var prop in b || (b = {}))
|
|
2316
|
-
if (__hasOwnProp$
|
|
2317
|
-
__defNormalProp$
|
|
2318
|
-
if (__getOwnPropSymbols$
|
|
2319
|
-
for (var prop of __getOwnPropSymbols$
|
|
2320
|
-
if (__propIsEnum$
|
|
2321
|
-
__defNormalProp$
|
|
2973
|
+
if (__hasOwnProp$D.call(b, prop))
|
|
2974
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
2975
|
+
if (__getOwnPropSymbols$D)
|
|
2976
|
+
for (var prop of __getOwnPropSymbols$D(b)) {
|
|
2977
|
+
if (__propIsEnum$D.call(b, prop))
|
|
2978
|
+
__defNormalProp$C(a, prop, b[prop]);
|
|
2322
2979
|
}
|
|
2323
2980
|
return a;
|
|
2324
2981
|
};
|
|
2325
|
-
var __spreadProps$
|
|
2326
|
-
var __objRest$
|
|
2982
|
+
var __spreadProps$v = (a, b) => __defProps$v(a, __getOwnPropDescs$v(b));
|
|
2983
|
+
var __objRest$m = (source, exclude) => {
|
|
2327
2984
|
var target = {};
|
|
2328
2985
|
for (var prop in source)
|
|
2329
|
-
if (__hasOwnProp$
|
|
2986
|
+
if (__hasOwnProp$D.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2330
2987
|
target[prop] = source[prop];
|
|
2331
|
-
if (source != null && __getOwnPropSymbols$
|
|
2332
|
-
for (var prop of __getOwnPropSymbols$
|
|
2333
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
2988
|
+
if (source != null && __getOwnPropSymbols$D)
|
|
2989
|
+
for (var prop of __getOwnPropSymbols$D(source)) {
|
|
2990
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$D.call(source, prop))
|
|
2334
2991
|
target[prop] = source[prop];
|
|
2335
2992
|
}
|
|
2336
2993
|
return target;
|
|
@@ -2349,7 +3006,7 @@
|
|
|
2349
3006
|
onClick,
|
|
2350
3007
|
maxLength,
|
|
2351
3008
|
focusIndicator
|
|
2352
|
-
} = _b, props = __objRest$
|
|
3009
|
+
} = _b, props = __objRest$m(_b, [
|
|
2353
3010
|
"input",
|
|
2354
3011
|
"meta",
|
|
2355
3012
|
"autoComplete",
|
|
@@ -2381,7 +3038,7 @@
|
|
|
2381
3038
|
}
|
|
2382
3039
|
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(
|
|
2383
3040
|
Input,
|
|
2384
|
-
__spreadProps$
|
|
3041
|
+
__spreadProps$v(__spreadValues$C(__spreadProps$v(__spreadValues$C({
|
|
2385
3042
|
className: cs__default.default(
|
|
2386
3043
|
className,
|
|
2387
3044
|
KitInputStyle,
|
|
@@ -2406,33 +3063,33 @@
|
|
|
2406
3063
|
));
|
|
2407
3064
|
};
|
|
2408
3065
|
|
|
2409
|
-
var __defProp$
|
|
2410
|
-
var __defProps$
|
|
2411
|
-
var __getOwnPropDescs$
|
|
2412
|
-
var __getOwnPropSymbols$
|
|
2413
|
-
var __hasOwnProp$
|
|
2414
|
-
var __propIsEnum$
|
|
2415
|
-
var __defNormalProp$
|
|
2416
|
-
var __spreadValues$
|
|
3066
|
+
var __defProp$B = Object.defineProperty;
|
|
3067
|
+
var __defProps$u = Object.defineProperties;
|
|
3068
|
+
var __getOwnPropDescs$u = Object.getOwnPropertyDescriptors;
|
|
3069
|
+
var __getOwnPropSymbols$C = Object.getOwnPropertySymbols;
|
|
3070
|
+
var __hasOwnProp$C = Object.prototype.hasOwnProperty;
|
|
3071
|
+
var __propIsEnum$C = Object.prototype.propertyIsEnumerable;
|
|
3072
|
+
var __defNormalProp$B = (obj, key, value) => key in obj ? __defProp$B(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3073
|
+
var __spreadValues$B = (a, b) => {
|
|
2417
3074
|
for (var prop in b || (b = {}))
|
|
2418
|
-
if (__hasOwnProp$
|
|
2419
|
-
__defNormalProp$
|
|
2420
|
-
if (__getOwnPropSymbols$
|
|
2421
|
-
for (var prop of __getOwnPropSymbols$
|
|
2422
|
-
if (__propIsEnum$
|
|
2423
|
-
__defNormalProp$
|
|
3075
|
+
if (__hasOwnProp$C.call(b, prop))
|
|
3076
|
+
__defNormalProp$B(a, prop, b[prop]);
|
|
3077
|
+
if (__getOwnPropSymbols$C)
|
|
3078
|
+
for (var prop of __getOwnPropSymbols$C(b)) {
|
|
3079
|
+
if (__propIsEnum$C.call(b, prop))
|
|
3080
|
+
__defNormalProp$B(a, prop, b[prop]);
|
|
2424
3081
|
}
|
|
2425
3082
|
return a;
|
|
2426
3083
|
};
|
|
2427
|
-
var __spreadProps$
|
|
2428
|
-
var __objRest$
|
|
3084
|
+
var __spreadProps$u = (a, b) => __defProps$u(a, __getOwnPropDescs$u(b));
|
|
3085
|
+
var __objRest$l = (source, exclude) => {
|
|
2429
3086
|
var target = {};
|
|
2430
3087
|
for (var prop in source)
|
|
2431
|
-
if (__hasOwnProp$
|
|
3088
|
+
if (__hasOwnProp$C.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2432
3089
|
target[prop] = source[prop];
|
|
2433
|
-
if (source != null && __getOwnPropSymbols$
|
|
2434
|
-
for (var prop of __getOwnPropSymbols$
|
|
2435
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3090
|
+
if (source != null && __getOwnPropSymbols$C)
|
|
3091
|
+
for (var prop of __getOwnPropSymbols$C(source)) {
|
|
3092
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$C.call(source, prop))
|
|
2436
3093
|
target[prop] = source[prop];
|
|
2437
3094
|
}
|
|
2438
3095
|
return target;
|
|
@@ -2442,7 +3099,7 @@
|
|
|
2442
3099
|
className,
|
|
2443
3100
|
error,
|
|
2444
3101
|
size = "middle"
|
|
2445
|
-
} = _b, props = __objRest$
|
|
3102
|
+
} = _b, props = __objRest$l(_b, [
|
|
2446
3103
|
"className",
|
|
2447
3104
|
"error",
|
|
2448
3105
|
"size"
|
|
@@ -2454,7 +3111,7 @@
|
|
|
2454
3111
|
}[size];
|
|
2455
3112
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
2456
3113
|
antd.Input.TextArea,
|
|
2457
|
-
__spreadProps$
|
|
3114
|
+
__spreadProps$u(__spreadValues$B({}, props), {
|
|
2458
3115
|
className: cs__default.default(
|
|
2459
3116
|
className,
|
|
2460
3117
|
InputStyle,
|
|
@@ -2468,33 +3125,33 @@
|
|
|
2468
3125
|
);
|
|
2469
3126
|
};
|
|
2470
3127
|
|
|
2471
|
-
var __defProp$
|
|
2472
|
-
var __defProps$
|
|
2473
|
-
var __getOwnPropDescs$
|
|
2474
|
-
var __getOwnPropSymbols$
|
|
2475
|
-
var __hasOwnProp$
|
|
2476
|
-
var __propIsEnum$
|
|
2477
|
-
var __defNormalProp$
|
|
2478
|
-
var __spreadValues$
|
|
3128
|
+
var __defProp$A = Object.defineProperty;
|
|
3129
|
+
var __defProps$t = Object.defineProperties;
|
|
3130
|
+
var __getOwnPropDescs$t = Object.getOwnPropertyDescriptors;
|
|
3131
|
+
var __getOwnPropSymbols$B = Object.getOwnPropertySymbols;
|
|
3132
|
+
var __hasOwnProp$B = Object.prototype.hasOwnProperty;
|
|
3133
|
+
var __propIsEnum$B = Object.prototype.propertyIsEnumerable;
|
|
3134
|
+
var __defNormalProp$A = (obj, key, value) => key in obj ? __defProp$A(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3135
|
+
var __spreadValues$A = (a, b) => {
|
|
2479
3136
|
for (var prop in b || (b = {}))
|
|
2480
|
-
if (__hasOwnProp$
|
|
2481
|
-
__defNormalProp$
|
|
2482
|
-
if (__getOwnPropSymbols$
|
|
2483
|
-
for (var prop of __getOwnPropSymbols$
|
|
2484
|
-
if (__propIsEnum$
|
|
2485
|
-
__defNormalProp$
|
|
3137
|
+
if (__hasOwnProp$B.call(b, prop))
|
|
3138
|
+
__defNormalProp$A(a, prop, b[prop]);
|
|
3139
|
+
if (__getOwnPropSymbols$B)
|
|
3140
|
+
for (var prop of __getOwnPropSymbols$B(b)) {
|
|
3141
|
+
if (__propIsEnum$B.call(b, prop))
|
|
3142
|
+
__defNormalProp$A(a, prop, b[prop]);
|
|
2486
3143
|
}
|
|
2487
3144
|
return a;
|
|
2488
3145
|
};
|
|
2489
|
-
var __spreadProps$
|
|
2490
|
-
var __objRest$
|
|
3146
|
+
var __spreadProps$t = (a, b) => __defProps$t(a, __getOwnPropDescs$t(b));
|
|
3147
|
+
var __objRest$k = (source, exclude) => {
|
|
2491
3148
|
var target = {};
|
|
2492
3149
|
for (var prop in source)
|
|
2493
|
-
if (__hasOwnProp$
|
|
3150
|
+
if (__hasOwnProp$B.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2494
3151
|
target[prop] = source[prop];
|
|
2495
|
-
if (source != null && __getOwnPropSymbols$
|
|
2496
|
-
for (var prop of __getOwnPropSymbols$
|
|
2497
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3152
|
+
if (source != null && __getOwnPropSymbols$B)
|
|
3153
|
+
for (var prop of __getOwnPropSymbols$B(source)) {
|
|
3154
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$B.call(source, prop))
|
|
2498
3155
|
target[prop] = source[prop];
|
|
2499
3156
|
}
|
|
2500
3157
|
return target;
|
|
@@ -2504,14 +3161,14 @@
|
|
|
2504
3161
|
input,
|
|
2505
3162
|
meta,
|
|
2506
3163
|
onFocusChangeHeight
|
|
2507
|
-
} = _b, props = __objRest$
|
|
3164
|
+
} = _b, props = __objRest$k(_b, [
|
|
2508
3165
|
"input",
|
|
2509
3166
|
"meta",
|
|
2510
3167
|
"onFocusChangeHeight"
|
|
2511
3168
|
]);
|
|
2512
3169
|
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(
|
|
2513
3170
|
TextArea,
|
|
2514
|
-
__spreadProps$
|
|
3171
|
+
__spreadProps$t(__spreadValues$A(__spreadValues$A({}, input), props), {
|
|
2515
3172
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError),
|
|
2516
3173
|
onFocus: (e) => {
|
|
2517
3174
|
input.onFocus(e);
|
|
@@ -2525,33 +3182,33 @@
|
|
|
2525
3182
|
));
|
|
2526
3183
|
};
|
|
2527
3184
|
|
|
2528
|
-
var __defProp$
|
|
2529
|
-
var __defProps$
|
|
2530
|
-
var __getOwnPropDescs$
|
|
2531
|
-
var __getOwnPropSymbols$
|
|
2532
|
-
var __hasOwnProp$
|
|
2533
|
-
var __propIsEnum$
|
|
2534
|
-
var __defNormalProp$
|
|
2535
|
-
var __spreadValues$
|
|
3185
|
+
var __defProp$z = Object.defineProperty;
|
|
3186
|
+
var __defProps$s = Object.defineProperties;
|
|
3187
|
+
var __getOwnPropDescs$s = Object.getOwnPropertyDescriptors;
|
|
3188
|
+
var __getOwnPropSymbols$A = Object.getOwnPropertySymbols;
|
|
3189
|
+
var __hasOwnProp$A = Object.prototype.hasOwnProperty;
|
|
3190
|
+
var __propIsEnum$A = Object.prototype.propertyIsEnumerable;
|
|
3191
|
+
var __defNormalProp$z = (obj, key, value) => key in obj ? __defProp$z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3192
|
+
var __spreadValues$z = (a, b) => {
|
|
2536
3193
|
for (var prop in b || (b = {}))
|
|
2537
|
-
if (__hasOwnProp$
|
|
2538
|
-
__defNormalProp$
|
|
2539
|
-
if (__getOwnPropSymbols$
|
|
2540
|
-
for (var prop of __getOwnPropSymbols$
|
|
2541
|
-
if (__propIsEnum$
|
|
2542
|
-
__defNormalProp$
|
|
3194
|
+
if (__hasOwnProp$A.call(b, prop))
|
|
3195
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
3196
|
+
if (__getOwnPropSymbols$A)
|
|
3197
|
+
for (var prop of __getOwnPropSymbols$A(b)) {
|
|
3198
|
+
if (__propIsEnum$A.call(b, prop))
|
|
3199
|
+
__defNormalProp$z(a, prop, b[prop]);
|
|
2543
3200
|
}
|
|
2544
3201
|
return a;
|
|
2545
3202
|
};
|
|
2546
|
-
var __spreadProps$
|
|
2547
|
-
var __objRest$
|
|
3203
|
+
var __spreadProps$s = (a, b) => __defProps$s(a, __getOwnPropDescs$s(b));
|
|
3204
|
+
var __objRest$j = (source, exclude) => {
|
|
2548
3205
|
var target = {};
|
|
2549
3206
|
for (var prop in source)
|
|
2550
|
-
if (__hasOwnProp$
|
|
3207
|
+
if (__hasOwnProp$A.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2551
3208
|
target[prop] = source[prop];
|
|
2552
|
-
if (source != null && __getOwnPropSymbols$
|
|
2553
|
-
for (var prop of __getOwnPropSymbols$
|
|
2554
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3209
|
+
if (source != null && __getOwnPropSymbols$A)
|
|
3210
|
+
for (var prop of __getOwnPropSymbols$A(source)) {
|
|
3211
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$A.call(source, prop))
|
|
2555
3212
|
target[prop] = source[prop];
|
|
2556
3213
|
}
|
|
2557
3214
|
return target;
|
|
@@ -2561,7 +3218,7 @@
|
|
|
2561
3218
|
className,
|
|
2562
3219
|
error,
|
|
2563
3220
|
size = "middle"
|
|
2564
|
-
} = _b, props = __objRest$
|
|
3221
|
+
} = _b, props = __objRest$j(_b, [
|
|
2565
3222
|
"className",
|
|
2566
3223
|
"error",
|
|
2567
3224
|
"size"
|
|
@@ -2573,7 +3230,7 @@
|
|
|
2573
3230
|
}[size];
|
|
2574
3231
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
2575
3232
|
antd.TimePicker,
|
|
2576
|
-
__spreadProps$
|
|
3233
|
+
__spreadProps$s(__spreadValues$z({}, props), {
|
|
2577
3234
|
size,
|
|
2578
3235
|
"data-test": props.name,
|
|
2579
3236
|
className: cs__default.default(className, InputStyle, typo, error ? "error" : "")
|
|
@@ -2581,33 +3238,33 @@
|
|
|
2581
3238
|
);
|
|
2582
3239
|
};
|
|
2583
3240
|
|
|
2584
|
-
var __defProp$
|
|
2585
|
-
var __defProps$
|
|
2586
|
-
var __getOwnPropDescs$
|
|
2587
|
-
var __getOwnPropSymbols$
|
|
2588
|
-
var __hasOwnProp$
|
|
2589
|
-
var __propIsEnum$
|
|
2590
|
-
var __defNormalProp$
|
|
2591
|
-
var __spreadValues$
|
|
3241
|
+
var __defProp$y = Object.defineProperty;
|
|
3242
|
+
var __defProps$r = Object.defineProperties;
|
|
3243
|
+
var __getOwnPropDescs$r = Object.getOwnPropertyDescriptors;
|
|
3244
|
+
var __getOwnPropSymbols$z = Object.getOwnPropertySymbols;
|
|
3245
|
+
var __hasOwnProp$z = Object.prototype.hasOwnProperty;
|
|
3246
|
+
var __propIsEnum$z = Object.prototype.propertyIsEnumerable;
|
|
3247
|
+
var __defNormalProp$y = (obj, key, value) => key in obj ? __defProp$y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3248
|
+
var __spreadValues$y = (a, b) => {
|
|
2592
3249
|
for (var prop in b || (b = {}))
|
|
2593
|
-
if (__hasOwnProp$
|
|
2594
|
-
__defNormalProp$
|
|
2595
|
-
if (__getOwnPropSymbols$
|
|
2596
|
-
for (var prop of __getOwnPropSymbols$
|
|
2597
|
-
if (__propIsEnum$
|
|
2598
|
-
__defNormalProp$
|
|
3250
|
+
if (__hasOwnProp$z.call(b, prop))
|
|
3251
|
+
__defNormalProp$y(a, prop, b[prop]);
|
|
3252
|
+
if (__getOwnPropSymbols$z)
|
|
3253
|
+
for (var prop of __getOwnPropSymbols$z(b)) {
|
|
3254
|
+
if (__propIsEnum$z.call(b, prop))
|
|
3255
|
+
__defNormalProp$y(a, prop, b[prop]);
|
|
2599
3256
|
}
|
|
2600
3257
|
return a;
|
|
2601
3258
|
};
|
|
2602
|
-
var __spreadProps$
|
|
2603
|
-
var __objRest$
|
|
3259
|
+
var __spreadProps$r = (a, b) => __defProps$r(a, __getOwnPropDescs$r(b));
|
|
3260
|
+
var __objRest$i = (source, exclude) => {
|
|
2604
3261
|
var target = {};
|
|
2605
3262
|
for (var prop in source)
|
|
2606
|
-
if (__hasOwnProp$
|
|
3263
|
+
if (__hasOwnProp$z.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
2607
3264
|
target[prop] = source[prop];
|
|
2608
|
-
if (source != null && __getOwnPropSymbols$
|
|
2609
|
-
for (var prop of __getOwnPropSymbols$
|
|
2610
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3265
|
+
if (source != null && __getOwnPropSymbols$z)
|
|
3266
|
+
for (var prop of __getOwnPropSymbols$z(source)) {
|
|
3267
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$z.call(source, prop))
|
|
2611
3268
|
target[prop] = source[prop];
|
|
2612
3269
|
}
|
|
2613
3270
|
return target;
|
|
@@ -2616,13 +3273,13 @@
|
|
|
2616
3273
|
var _b = _a, {
|
|
2617
3274
|
input,
|
|
2618
3275
|
meta
|
|
2619
|
-
} = _b, props = __objRest$
|
|
3276
|
+
} = _b, props = __objRest$i(_b, [
|
|
2620
3277
|
"input",
|
|
2621
3278
|
"meta"
|
|
2622
3279
|
]);
|
|
2623
3280
|
return /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement(
|
|
2624
3281
|
TimePicker,
|
|
2625
|
-
__spreadValues$
|
|
3282
|
+
__spreadValues$y(__spreadProps$r(__spreadValues$y({}, input), {
|
|
2626
3283
|
error: meta.touched && (meta.error || !meta.dirtySinceLastSubmit && meta.submitError)
|
|
2627
3284
|
}), props)
|
|
2628
3285
|
));
|
|
@@ -2641,31 +3298,31 @@
|
|
|
2641
3298
|
DateTimeRange: FieldsDateTimeRange
|
|
2642
3299
|
};
|
|
2643
3300
|
|
|
2644
|
-
var __defProp$
|
|
2645
|
-
var __defProps$
|
|
2646
|
-
var __getOwnPropDescs$
|
|
2647
|
-
var __getOwnPropSymbols$
|
|
2648
|
-
var __hasOwnProp$
|
|
2649
|
-
var __propIsEnum$
|
|
2650
|
-
var __defNormalProp$
|
|
3301
|
+
var __defProp$x = Object.defineProperty;
|
|
3302
|
+
var __defProps$q = Object.defineProperties;
|
|
3303
|
+
var __getOwnPropDescs$q = Object.getOwnPropertyDescriptors;
|
|
3304
|
+
var __getOwnPropSymbols$y = Object.getOwnPropertySymbols;
|
|
3305
|
+
var __hasOwnProp$y = Object.prototype.hasOwnProperty;
|
|
3306
|
+
var __propIsEnum$y = Object.prototype.propertyIsEnumerable;
|
|
3307
|
+
var __defNormalProp$x = (obj, key, value) => key in obj ? __defProp$x(obj, key, {
|
|
2651
3308
|
enumerable: true,
|
|
2652
3309
|
configurable: true,
|
|
2653
3310
|
writable: true,
|
|
2654
3311
|
value
|
|
2655
3312
|
}) : obj[key] = value;
|
|
2656
|
-
var __spreadValues$
|
|
2657
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
2658
|
-
if (__getOwnPropSymbols$
|
|
2659
|
-
if (__propIsEnum$
|
|
3313
|
+
var __spreadValues$x = (a, b) => {
|
|
3314
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$y.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
3315
|
+
if (__getOwnPropSymbols$y) for (var prop of __getOwnPropSymbols$y(b)) {
|
|
3316
|
+
if (__propIsEnum$y.call(b, prop)) __defNormalProp$x(a, prop, b[prop]);
|
|
2660
3317
|
}
|
|
2661
3318
|
return a;
|
|
2662
3319
|
};
|
|
2663
|
-
var __spreadProps$
|
|
2664
|
-
var __objRest$
|
|
3320
|
+
var __spreadProps$q = (a, b) => __defProps$q(a, __getOwnPropDescs$q(b));
|
|
3321
|
+
var __objRest$h = (source, exclude) => {
|
|
2665
3322
|
var target = {};
|
|
2666
|
-
for (var prop in source) if (__hasOwnProp$
|
|
2667
|
-
if (source != null && __getOwnPropSymbols$
|
|
2668
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3323
|
+
for (var prop in source) if (__hasOwnProp$y.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3324
|
+
if (source != null && __getOwnPropSymbols$y) for (var prop of __getOwnPropSymbols$y(source)) {
|
|
3325
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$y.call(source, prop)) target[prop] = source[prop];
|
|
2669
3326
|
}
|
|
2670
3327
|
return target;
|
|
2671
3328
|
};
|
|
@@ -2677,7 +3334,7 @@
|
|
|
2677
3334
|
className,
|
|
2678
3335
|
checked
|
|
2679
3336
|
} = _b,
|
|
2680
|
-
props = __objRest$
|
|
3337
|
+
props = __objRest$h(_b, ["children", "className", "checked"]);
|
|
2681
3338
|
const Content = /*#__PURE__*/react$1.styled('span')({
|
|
2682
3339
|
name: "Content",
|
|
2683
3340
|
class: "c1to9vb9",
|
|
@@ -2685,7 +3342,7 @@
|
|
|
2685
3342
|
});
|
|
2686
3343
|
const classNames = [className, SwitchStyle, "switch"];
|
|
2687
3344
|
if (props.size === "large") classNames.push("ant-switch-large");
|
|
2688
|
-
return /* @__PURE__ */React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */React__namespace.default.createElement(antd.Switch, __spreadProps$
|
|
3345
|
+
return /* @__PURE__ */React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */React__namespace.default.createElement(antd.Switch, __spreadProps$q(__spreadValues$x({
|
|
2689
3346
|
className: core.cx(...classNames),
|
|
2690
3347
|
checked: checked || false
|
|
2691
3348
|
}, props), {
|
|
@@ -2693,32 +3350,26 @@
|
|
|
2693
3350
|
})), children ? /* @__PURE__ */React__namespace.default.createElement(Content, null, children) : null);
|
|
2694
3351
|
};
|
|
2695
3352
|
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
var
|
|
2703
|
-
var __defProps$q = Object.defineProperties;
|
|
2704
|
-
var __getOwnPropDescs$q = Object.getOwnPropertyDescriptors;
|
|
2705
|
-
var __getOwnPropSymbols$G = Object.getOwnPropertySymbols;
|
|
2706
|
-
var __hasOwnProp$G = Object.prototype.hasOwnProperty;
|
|
2707
|
-
var __propIsEnum$G = Object.prototype.propertyIsEnumerable;
|
|
2708
|
-
var __defNormalProp$F = (obj, key, value) => key in obj ? __defProp$F(obj, key, {
|
|
3353
|
+
var __defProp$w = Object.defineProperty;
|
|
3354
|
+
var __defProps$p = Object.defineProperties;
|
|
3355
|
+
var __getOwnPropDescs$p = Object.getOwnPropertyDescriptors;
|
|
3356
|
+
var __getOwnPropSymbols$x = Object.getOwnPropertySymbols;
|
|
3357
|
+
var __hasOwnProp$x = Object.prototype.hasOwnProperty;
|
|
3358
|
+
var __propIsEnum$x = Object.prototype.propertyIsEnumerable;
|
|
3359
|
+
var __defNormalProp$w = (obj, key, value) => key in obj ? __defProp$w(obj, key, {
|
|
2709
3360
|
enumerable: true,
|
|
2710
3361
|
configurable: true,
|
|
2711
3362
|
writable: true,
|
|
2712
3363
|
value
|
|
2713
3364
|
}) : obj[key] = value;
|
|
2714
|
-
var __spreadValues$
|
|
2715
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
2716
|
-
if (__getOwnPropSymbols$
|
|
2717
|
-
if (__propIsEnum$
|
|
3365
|
+
var __spreadValues$w = (a, b) => {
|
|
3366
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$x.call(b, prop)) __defNormalProp$w(a, prop, b[prop]);
|
|
3367
|
+
if (__getOwnPropSymbols$x) for (var prop of __getOwnPropSymbols$x(b)) {
|
|
3368
|
+
if (__propIsEnum$x.call(b, prop)) __defNormalProp$w(a, prop, b[prop]);
|
|
2718
3369
|
}
|
|
2719
3370
|
return a;
|
|
2720
3371
|
};
|
|
2721
|
-
var __spreadProps$
|
|
3372
|
+
var __spreadProps$p = (a, b) => __defProps$p(a, __getOwnPropDescs$p(b));
|
|
2722
3373
|
const CronPlanWrapper = "c1up1pdz";
|
|
2723
3374
|
const CronPlanHeader = "c156wh19";
|
|
2724
3375
|
const ModeTabs = "m126spxy";
|
|
@@ -2813,7 +3464,7 @@
|
|
|
2813
3464
|
input: {
|
|
2814
3465
|
value: daily.step,
|
|
2815
3466
|
onChange: value => {
|
|
2816
|
-
setDaily(__spreadProps$
|
|
3467
|
+
setDaily(__spreadProps$p(__spreadValues$w({}, daily), {
|
|
2817
3468
|
step: value
|
|
2818
3469
|
}));
|
|
2819
3470
|
},
|
|
@@ -2827,7 +3478,7 @@
|
|
|
2827
3478
|
value: daily.time,
|
|
2828
3479
|
onChange: value => {
|
|
2829
3480
|
if (value) {
|
|
2830
|
-
setDaily(__spreadProps$
|
|
3481
|
+
setDaily(__spreadProps$p(__spreadValues$w({}, daily), {
|
|
2831
3482
|
time: value
|
|
2832
3483
|
}));
|
|
2833
3484
|
}
|
|
@@ -2882,7 +3533,7 @@
|
|
|
2882
3533
|
input: {
|
|
2883
3534
|
value: weekly.step,
|
|
2884
3535
|
onChange: value => {
|
|
2885
|
-
setWeekly(__spreadProps$
|
|
3536
|
+
setWeekly(__spreadProps$p(__spreadValues$w({}, weekly), {
|
|
2886
3537
|
step: value
|
|
2887
3538
|
}));
|
|
2888
3539
|
},
|
|
@@ -2899,7 +3550,7 @@
|
|
|
2899
3550
|
className: linaria.cx("week-day-option", active && "active", i18n.language === parrot.ParrotLngs.en && "en-text"),
|
|
2900
3551
|
type: "default",
|
|
2901
3552
|
key: d.value,
|
|
2902
|
-
onClick: () => setWeekly(__spreadProps$
|
|
3553
|
+
onClick: () => setWeekly(__spreadProps$p(__spreadValues$w({}, weekly), {
|
|
2903
3554
|
days: active ? weekly.days.filter(day => day !== d.value) : weekly.days.concat(d.value).sort((a, b) => a - b)
|
|
2904
3555
|
}))
|
|
2905
3556
|
}, d.text);
|
|
@@ -2911,7 +3562,7 @@
|
|
|
2911
3562
|
value: weekly.time,
|
|
2912
3563
|
onChange: value => {
|
|
2913
3564
|
if (value) {
|
|
2914
|
-
setWeekly(__spreadProps$
|
|
3565
|
+
setWeekly(__spreadProps$p(__spreadValues$w({}, weekly), {
|
|
2915
3566
|
time: value
|
|
2916
3567
|
}));
|
|
2917
3568
|
}
|
|
@@ -2938,7 +3589,7 @@
|
|
|
2938
3589
|
input: {
|
|
2939
3590
|
value: monthly.step,
|
|
2940
3591
|
onChange: value => {
|
|
2941
|
-
setMonthly(__spreadProps$
|
|
3592
|
+
setMonthly(__spreadProps$p(__spreadValues$w({}, monthly), {
|
|
2942
3593
|
step: value
|
|
2943
3594
|
}));
|
|
2944
3595
|
},
|
|
@@ -2955,7 +3606,7 @@
|
|
|
2955
3606
|
className: linaria.cx("month-day-option", active && "active"),
|
|
2956
3607
|
type: "default",
|
|
2957
3608
|
key: d,
|
|
2958
|
-
onClick: () => setMonthly(__spreadProps$
|
|
3609
|
+
onClick: () => setMonthly(__spreadProps$p(__spreadValues$w({}, monthly), {
|
|
2959
3610
|
days: active ? monthly.days.filter(day => day !== d) : monthly.days.concat(d).sort((a, b) => a - b)
|
|
2960
3611
|
}))
|
|
2961
3612
|
}, d);
|
|
@@ -2971,7 +3622,7 @@
|
|
|
2971
3622
|
value: monthly.time,
|
|
2972
3623
|
onChange: value => {
|
|
2973
3624
|
if (value) {
|
|
2974
|
-
setMonthly(__spreadProps$
|
|
3625
|
+
setMonthly(__spreadProps$p(__spreadValues$w({}, monthly), {
|
|
2975
3626
|
time: value
|
|
2976
3627
|
}));
|
|
2977
3628
|
}
|
|
@@ -2995,7 +3646,7 @@
|
|
|
2995
3646
|
}, [value]);
|
|
2996
3647
|
const sendAtDate = React.useMemo(() => cronTime.sendAt(), [cronTime]);
|
|
2997
3648
|
const changeValue = newValue => {
|
|
2998
|
-
onChange(__spreadValues$
|
|
3649
|
+
onChange(__spreadValues$w(__spreadValues$w({}, value), newValue));
|
|
2999
3650
|
};
|
|
3000
3651
|
const [mode, setMode] = React.useState(getMode(cronTime["source"]));
|
|
3001
3652
|
const source = cronTime["source"];
|
|
@@ -3003,19 +3654,19 @@
|
|
|
3003
3654
|
const time = getTime(cronTime);
|
|
3004
3655
|
const [daily, setDaily] = React.useState(() => {
|
|
3005
3656
|
const rawDaily = getDaily(mode, source, time);
|
|
3006
|
-
return __spreadProps$
|
|
3657
|
+
return __spreadProps$p(__spreadValues$w({}, rawDaily), {
|
|
3007
3658
|
time: moment__default.default(rawDaily.time.format())
|
|
3008
3659
|
});
|
|
3009
3660
|
});
|
|
3010
3661
|
const [weekly, setWeekly] = React.useState(() => {
|
|
3011
3662
|
const rawWeekly = getWeekly(mode, source, time);
|
|
3012
|
-
return __spreadProps$
|
|
3663
|
+
return __spreadProps$p(__spreadValues$w({}, rawWeekly), {
|
|
3013
3664
|
time: moment__default.default(rawWeekly.time.format())
|
|
3014
3665
|
});
|
|
3015
3666
|
});
|
|
3016
3667
|
const [monthly, setMonthly] = React.useState(() => {
|
|
3017
3668
|
const rawMonthly = getMonthly(mode, month, day, time);
|
|
3018
|
-
return __spreadProps$
|
|
3669
|
+
return __spreadProps$p(__spreadValues$w({}, rawMonthly), {
|
|
3019
3670
|
time: moment__default.default(rawMonthly.time.format())
|
|
3020
3671
|
});
|
|
3021
3672
|
});
|
|
@@ -3137,97 +3788,6 @@
|
|
|
3137
3788
|
});
|
|
3138
3789
|
};
|
|
3139
3790
|
|
|
3140
|
-
var __defProp$E = Object.defineProperty;
|
|
3141
|
-
var __defProps$p = Object.defineProperties;
|
|
3142
|
-
var __getOwnPropDescs$p = Object.getOwnPropertyDescriptors;
|
|
3143
|
-
var __getOwnPropSymbols$F = Object.getOwnPropertySymbols;
|
|
3144
|
-
var __hasOwnProp$F = Object.prototype.hasOwnProperty;
|
|
3145
|
-
var __propIsEnum$F = Object.prototype.propertyIsEnumerable;
|
|
3146
|
-
var __defNormalProp$E = (obj, key, value) => key in obj ? __defProp$E(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3147
|
-
var __spreadValues$E = (a, b) => {
|
|
3148
|
-
for (var prop in b || (b = {}))
|
|
3149
|
-
if (__hasOwnProp$F.call(b, prop))
|
|
3150
|
-
__defNormalProp$E(a, prop, b[prop]);
|
|
3151
|
-
if (__getOwnPropSymbols$F)
|
|
3152
|
-
for (var prop of __getOwnPropSymbols$F(b)) {
|
|
3153
|
-
if (__propIsEnum$F.call(b, prop))
|
|
3154
|
-
__defNormalProp$E(a, prop, b[prop]);
|
|
3155
|
-
}
|
|
3156
|
-
return a;
|
|
3157
|
-
};
|
|
3158
|
-
var __spreadProps$p = (a, b) => __defProps$p(a, __getOwnPropDescs$p(b));
|
|
3159
|
-
var __objRest$h = (source, exclude) => {
|
|
3160
|
-
var target = {};
|
|
3161
|
-
for (var prop in source)
|
|
3162
|
-
if (__hasOwnProp$F.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3163
|
-
target[prop] = source[prop];
|
|
3164
|
-
if (source != null && __getOwnPropSymbols$F)
|
|
3165
|
-
for (var prop of __getOwnPropSymbols$F(source)) {
|
|
3166
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$F.call(source, prop))
|
|
3167
|
-
target[prop] = source[prop];
|
|
3168
|
-
}
|
|
3169
|
-
return target;
|
|
3170
|
-
};
|
|
3171
|
-
let componentId = 0;
|
|
3172
|
-
const Tooltip = (props) => {
|
|
3173
|
-
const _a = props, {
|
|
3174
|
-
followMouse,
|
|
3175
|
-
overlayClassName,
|
|
3176
|
-
overlayStyle,
|
|
3177
|
-
children
|
|
3178
|
-
} = _a, restProps = __objRest$h(_a, [
|
|
3179
|
-
"followMouse",
|
|
3180
|
-
"overlayClassName",
|
|
3181
|
-
"overlayStyle",
|
|
3182
|
-
"children"
|
|
3183
|
-
]);
|
|
3184
|
-
const id = React.useRef(++componentId);
|
|
3185
|
-
const uniquePopupClass = `kit-popup-${id.current}`;
|
|
3186
|
-
const uniqueContainerClass = `kit-tooltip-${id.current}`;
|
|
3187
|
-
const _children = React.useMemo(() => {
|
|
3188
|
-
if (followMouse) {
|
|
3189
|
-
const child = React__namespace.default.isValidElement(children) ? children : /* @__PURE__ */ React__namespace.default.createElement("span", null, children);
|
|
3190
|
-
return React__namespace.default.cloneElement(child, {
|
|
3191
|
-
className: cs__default.default(child.props.className, uniqueContainerClass)
|
|
3192
|
-
});
|
|
3193
|
-
} else {
|
|
3194
|
-
return children;
|
|
3195
|
-
}
|
|
3196
|
-
}, [children, followMouse, uniqueContainerClass]);
|
|
3197
|
-
const onmousemove = React.useCallback(
|
|
3198
|
-
(event) => {
|
|
3199
|
-
const popup = document.querySelector(`.${uniquePopupClass}`);
|
|
3200
|
-
if (!popup)
|
|
3201
|
-
return;
|
|
3202
|
-
popup.style.left = event.pageX + "px";
|
|
3203
|
-
popup.style.top = event.pageY + "px";
|
|
3204
|
-
},
|
|
3205
|
-
[uniquePopupClass]
|
|
3206
|
-
);
|
|
3207
|
-
React.useEffect(() => {
|
|
3208
|
-
if (followMouse) {
|
|
3209
|
-
const container = document.querySelector(
|
|
3210
|
-
`.${uniqueContainerClass}`
|
|
3211
|
-
);
|
|
3212
|
-
container == null ? void 0 : container.addEventListener("mousemove", onmousemove);
|
|
3213
|
-
return () => {
|
|
3214
|
-
container == null ? void 0 : container.removeEventListener("mousemove", onmousemove);
|
|
3215
|
-
};
|
|
3216
|
-
}
|
|
3217
|
-
}, [followMouse, onmousemove, uniqueContainerClass]);
|
|
3218
|
-
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
3219
|
-
antd.Tooltip,
|
|
3220
|
-
__spreadProps$p(__spreadValues$E({}, restProps), {
|
|
3221
|
-
overlayClassName: followMouse ? cs__default.default(overlayClassName, uniquePopupClass) : overlayClassName,
|
|
3222
|
-
children: _children,
|
|
3223
|
-
overlayStyle: followMouse ? __spreadValues$E({
|
|
3224
|
-
transform: "translate(-50%, -100%)",
|
|
3225
|
-
pointerEvents: "none"
|
|
3226
|
-
}, overlayStyle) : overlayStyle
|
|
3227
|
-
})
|
|
3228
|
-
);
|
|
3229
|
-
};
|
|
3230
|
-
|
|
3231
3791
|
const NameItem = /*#__PURE__*/react.styled('div')({
|
|
3232
3792
|
name: "NameItem",
|
|
3233
3793
|
class: "n12mqh7z",
|
|
@@ -3254,28 +3814,28 @@
|
|
|
3254
3814
|
}, children));
|
|
3255
3815
|
};
|
|
3256
3816
|
|
|
3257
|
-
var __defProp$
|
|
3258
|
-
var __getOwnPropSymbols$
|
|
3259
|
-
var __hasOwnProp$
|
|
3260
|
-
var __propIsEnum$
|
|
3261
|
-
var __defNormalProp$
|
|
3817
|
+
var __defProp$v = Object.defineProperty;
|
|
3818
|
+
var __getOwnPropSymbols$w = Object.getOwnPropertySymbols;
|
|
3819
|
+
var __hasOwnProp$w = Object.prototype.hasOwnProperty;
|
|
3820
|
+
var __propIsEnum$w = Object.prototype.propertyIsEnumerable;
|
|
3821
|
+
var __defNormalProp$v = (obj, key, value) => key in obj ? __defProp$v(obj, key, {
|
|
3262
3822
|
enumerable: true,
|
|
3263
3823
|
configurable: true,
|
|
3264
3824
|
writable: true,
|
|
3265
3825
|
value
|
|
3266
3826
|
}) : obj[key] = value;
|
|
3267
|
-
var __spreadValues$
|
|
3268
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3269
|
-
if (__getOwnPropSymbols$
|
|
3270
|
-
if (__propIsEnum$
|
|
3827
|
+
var __spreadValues$v = (a, b) => {
|
|
3828
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$w.call(b, prop)) __defNormalProp$v(a, prop, b[prop]);
|
|
3829
|
+
if (__getOwnPropSymbols$w) for (var prop of __getOwnPropSymbols$w(b)) {
|
|
3830
|
+
if (__propIsEnum$w.call(b, prop)) __defNormalProp$v(a, prop, b[prop]);
|
|
3271
3831
|
}
|
|
3272
3832
|
return a;
|
|
3273
3833
|
};
|
|
3274
3834
|
var __objRest$g = (source, exclude) => {
|
|
3275
3835
|
var target = {};
|
|
3276
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3277
|
-
if (source != null && __getOwnPropSymbols$
|
|
3278
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3836
|
+
for (var prop in source) if (__hasOwnProp$w.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3837
|
+
if (source != null && __getOwnPropSymbols$w) for (var prop of __getOwnPropSymbols$w(source)) {
|
|
3838
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$w.call(source, prop)) target[prop] = source[prop];
|
|
3279
3839
|
}
|
|
3280
3840
|
return target;
|
|
3281
3841
|
};
|
|
@@ -3301,34 +3861,34 @@
|
|
|
3301
3861
|
onClick: e => e.stopPropagation()
|
|
3302
3862
|
}, /* @__PURE__ */React__namespace.default.createElement("span", {
|
|
3303
3863
|
className: "enabled-text"
|
|
3304
|
-
}, _props.checked ? text.checked : text.unchecked), /* @__PURE__ */React__namespace.default.createElement(Switch, __spreadValues$
|
|
3864
|
+
}, _props.checked ? text.checked : text.unchecked), /* @__PURE__ */React__namespace.default.createElement(Switch, __spreadValues$v({}, _props)));
|
|
3305
3865
|
};
|
|
3306
3866
|
|
|
3307
|
-
var __defProp$
|
|
3867
|
+
var __defProp$u = Object.defineProperty;
|
|
3308
3868
|
var __defProps$o = Object.defineProperties;
|
|
3309
3869
|
var __getOwnPropDescs$o = Object.getOwnPropertyDescriptors;
|
|
3310
|
-
var __getOwnPropSymbols$
|
|
3311
|
-
var __hasOwnProp$
|
|
3312
|
-
var __propIsEnum$
|
|
3313
|
-
var __defNormalProp$
|
|
3870
|
+
var __getOwnPropSymbols$v = Object.getOwnPropertySymbols;
|
|
3871
|
+
var __hasOwnProp$v = Object.prototype.hasOwnProperty;
|
|
3872
|
+
var __propIsEnum$v = Object.prototype.propertyIsEnumerable;
|
|
3873
|
+
var __defNormalProp$u = (obj, key, value) => key in obj ? __defProp$u(obj, key, {
|
|
3314
3874
|
enumerable: true,
|
|
3315
3875
|
configurable: true,
|
|
3316
3876
|
writable: true,
|
|
3317
3877
|
value
|
|
3318
3878
|
}) : obj[key] = value;
|
|
3319
|
-
var __spreadValues$
|
|
3320
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3321
|
-
if (__getOwnPropSymbols$
|
|
3322
|
-
if (__propIsEnum$
|
|
3879
|
+
var __spreadValues$u = (a, b) => {
|
|
3880
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$v.call(b, prop)) __defNormalProp$u(a, prop, b[prop]);
|
|
3881
|
+
if (__getOwnPropSymbols$v) for (var prop of __getOwnPropSymbols$v(b)) {
|
|
3882
|
+
if (__propIsEnum$v.call(b, prop)) __defNormalProp$u(a, prop, b[prop]);
|
|
3323
3883
|
}
|
|
3324
3884
|
return a;
|
|
3325
3885
|
};
|
|
3326
3886
|
var __spreadProps$o = (a, b) => __defProps$o(a, __getOwnPropDescs$o(b));
|
|
3327
3887
|
var __objRest$f = (source, exclude) => {
|
|
3328
3888
|
var target = {};
|
|
3329
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3330
|
-
if (source != null && __getOwnPropSymbols$
|
|
3331
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3889
|
+
for (var prop in source) if (__hasOwnProp$v.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3890
|
+
if (source != null && __getOwnPropSymbols$v) for (var prop of __getOwnPropSymbols$v(source)) {
|
|
3891
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$v.call(source, prop)) target[prop] = source[prop];
|
|
3332
3892
|
}
|
|
3333
3893
|
return target;
|
|
3334
3894
|
};
|
|
@@ -3359,37 +3919,37 @@
|
|
|
3359
3919
|
ref: textWrapper,
|
|
3360
3920
|
className: textWrapperCls
|
|
3361
3921
|
}, text);
|
|
3362
|
-
return isTextTruncated ? /* @__PURE__ */React__namespace.default.createElement(Tooltip, __spreadProps$o(__spreadValues$
|
|
3922
|
+
return isTextTruncated ? /* @__PURE__ */React__namespace.default.createElement(Tooltip, __spreadProps$o(__spreadValues$u({}, restProps), {
|
|
3363
3923
|
title: text,
|
|
3364
3924
|
"data-testid": "text-tooltip"
|
|
3365
3925
|
}), /* @__PURE__ */React__namespace.default.createElement(TruncatedTextWrapper, null, renderName())) : renderName();
|
|
3366
3926
|
};
|
|
3367
3927
|
|
|
3368
|
-
var __defProp$
|
|
3928
|
+
var __defProp$t = Object.defineProperty;
|
|
3369
3929
|
var __defProps$n = Object.defineProperties;
|
|
3370
3930
|
var __getOwnPropDescs$n = Object.getOwnPropertyDescriptors;
|
|
3371
|
-
var __getOwnPropSymbols$
|
|
3372
|
-
var __hasOwnProp$
|
|
3373
|
-
var __propIsEnum$
|
|
3374
|
-
var __defNormalProp$
|
|
3931
|
+
var __getOwnPropSymbols$u = Object.getOwnPropertySymbols;
|
|
3932
|
+
var __hasOwnProp$u = Object.prototype.hasOwnProperty;
|
|
3933
|
+
var __propIsEnum$u = Object.prototype.propertyIsEnumerable;
|
|
3934
|
+
var __defNormalProp$t = (obj, key, value) => key in obj ? __defProp$t(obj, key, {
|
|
3375
3935
|
enumerable: true,
|
|
3376
3936
|
configurable: true,
|
|
3377
3937
|
writable: true,
|
|
3378
3938
|
value
|
|
3379
3939
|
}) : obj[key] = value;
|
|
3380
|
-
var __spreadValues$
|
|
3381
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3382
|
-
if (__getOwnPropSymbols$
|
|
3383
|
-
if (__propIsEnum$
|
|
3940
|
+
var __spreadValues$t = (a, b) => {
|
|
3941
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$u.call(b, prop)) __defNormalProp$t(a, prop, b[prop]);
|
|
3942
|
+
if (__getOwnPropSymbols$u) for (var prop of __getOwnPropSymbols$u(b)) {
|
|
3943
|
+
if (__propIsEnum$u.call(b, prop)) __defNormalProp$t(a, prop, b[prop]);
|
|
3384
3944
|
}
|
|
3385
3945
|
return a;
|
|
3386
3946
|
};
|
|
3387
3947
|
var __spreadProps$n = (a, b) => __defProps$n(a, __getOwnPropDescs$n(b));
|
|
3388
3948
|
var __objRest$e = (source, exclude) => {
|
|
3389
3949
|
var target = {};
|
|
3390
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3391
|
-
if (source != null && __getOwnPropSymbols$
|
|
3392
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
3950
|
+
for (var prop in source) if (__hasOwnProp$u.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
3951
|
+
if (source != null && __getOwnPropSymbols$u) for (var prop of __getOwnPropSymbols$u(source)) {
|
|
3952
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$u.call(source, prop)) target[prop] = source[prop];
|
|
3393
3953
|
}
|
|
3394
3954
|
return target;
|
|
3395
3955
|
};
|
|
@@ -3413,7 +3973,7 @@
|
|
|
3413
3973
|
src: getAlertIcon(type)
|
|
3414
3974
|
});
|
|
3415
3975
|
const _type = type === "normal" ? "info" : type;
|
|
3416
|
-
return /* @__PURE__ */React__namespace.default.createElement(antd.Alert, __spreadProps$n(__spreadValues$
|
|
3976
|
+
return /* @__PURE__ */React__namespace.default.createElement(antd.Alert, __spreadProps$n(__spreadValues$t({}, props), {
|
|
3417
3977
|
className: cs__default.default(AlertStyle, type ? `alert-${type}` : "", className, {
|
|
3418
3978
|
action
|
|
3419
3979
|
}),
|
|
@@ -3445,21 +4005,21 @@
|
|
|
3445
4005
|
return /* @__PURE__ */ React__namespace.default.createElement("span", null, text);
|
|
3446
4006
|
};
|
|
3447
4007
|
|
|
3448
|
-
var __defProp$
|
|
4008
|
+
var __defProp$s = Object.defineProperty;
|
|
3449
4009
|
var __defProps$m = Object.defineProperties;
|
|
3450
4010
|
var __getOwnPropDescs$m = Object.getOwnPropertyDescriptors;
|
|
3451
|
-
var __getOwnPropSymbols$
|
|
3452
|
-
var __hasOwnProp$
|
|
3453
|
-
var __propIsEnum$
|
|
3454
|
-
var __defNormalProp$
|
|
3455
|
-
var __spreadValues$
|
|
4011
|
+
var __getOwnPropSymbols$t = Object.getOwnPropertySymbols;
|
|
4012
|
+
var __hasOwnProp$t = Object.prototype.hasOwnProperty;
|
|
4013
|
+
var __propIsEnum$t = Object.prototype.propertyIsEnumerable;
|
|
4014
|
+
var __defNormalProp$s = (obj, key, value) => key in obj ? __defProp$s(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4015
|
+
var __spreadValues$s = (a, b) => {
|
|
3456
4016
|
for (var prop in b || (b = {}))
|
|
3457
|
-
if (__hasOwnProp$
|
|
3458
|
-
__defNormalProp$
|
|
3459
|
-
if (__getOwnPropSymbols$
|
|
3460
|
-
for (var prop of __getOwnPropSymbols$
|
|
3461
|
-
if (__propIsEnum$
|
|
3462
|
-
__defNormalProp$
|
|
4017
|
+
if (__hasOwnProp$t.call(b, prop))
|
|
4018
|
+
__defNormalProp$s(a, prop, b[prop]);
|
|
4019
|
+
if (__getOwnPropSymbols$t)
|
|
4020
|
+
for (var prop of __getOwnPropSymbols$t(b)) {
|
|
4021
|
+
if (__propIsEnum$t.call(b, prop))
|
|
4022
|
+
__defNormalProp$s(a, prop, b[prop]);
|
|
3463
4023
|
}
|
|
3464
4024
|
return a;
|
|
3465
4025
|
};
|
|
@@ -3467,11 +4027,11 @@
|
|
|
3467
4027
|
var __objRest$d = (source, exclude) => {
|
|
3468
4028
|
var target = {};
|
|
3469
4029
|
for (var prop in source)
|
|
3470
|
-
if (__hasOwnProp$
|
|
4030
|
+
if (__hasOwnProp$t.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3471
4031
|
target[prop] = source[prop];
|
|
3472
|
-
if (source != null && __getOwnPropSymbols$
|
|
3473
|
-
for (var prop of __getOwnPropSymbols$
|
|
3474
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4032
|
+
if (source != null && __getOwnPropSymbols$t)
|
|
4033
|
+
for (var prop of __getOwnPropSymbols$t(source)) {
|
|
4034
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$t.call(source, prop))
|
|
3475
4035
|
target[prop] = source[prop];
|
|
3476
4036
|
}
|
|
3477
4037
|
return target;
|
|
@@ -3480,7 +4040,7 @@
|
|
|
3480
4040
|
var _b = _a, { type = "error", className } = _b, props = __objRest$d(_b, ["type", "className"]);
|
|
3481
4041
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
3482
4042
|
antd.Badge,
|
|
3483
|
-
__spreadProps$m(__spreadValues$
|
|
4043
|
+
__spreadProps$m(__spreadValues$s({
|
|
3484
4044
|
className: core.cx(`badge-${type}`, className)
|
|
3485
4045
|
}, props), {
|
|
3486
4046
|
showZero: false
|
|
@@ -3488,130 +4048,28 @@
|
|
|
3488
4048
|
);
|
|
3489
4049
|
};
|
|
3490
4050
|
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
}
|
|
3497
|
-
|
|
3498
|
-
const Empty = (props) => {
|
|
3499
|
-
const { className, style } = props;
|
|
3500
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", { className, style }, "-");
|
|
3501
|
-
};
|
|
3502
|
-
|
|
3503
|
-
var __defProp$z = Object.defineProperty;
|
|
3504
|
-
var __getOwnPropSymbols$A = Object.getOwnPropertySymbols;
|
|
3505
|
-
var __hasOwnProp$A = Object.prototype.hasOwnProperty;
|
|
3506
|
-
var __propIsEnum$A = Object.prototype.propertyIsEnumerable;
|
|
3507
|
-
var __defNormalProp$z = (obj, key, value) => key in obj ? __defProp$z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3508
|
-
var __spreadValues$z = (a, b) => {
|
|
3509
|
-
for (var prop in b || (b = {}))
|
|
3510
|
-
if (__hasOwnProp$A.call(b, prop))
|
|
3511
|
-
__defNormalProp$z(a, prop, b[prop]);
|
|
3512
|
-
if (__getOwnPropSymbols$A)
|
|
3513
|
-
for (var prop of __getOwnPropSymbols$A(b)) {
|
|
3514
|
-
if (__propIsEnum$A.call(b, prop))
|
|
3515
|
-
__defNormalProp$z(a, prop, b[prop]);
|
|
3516
|
-
}
|
|
3517
|
-
return a;
|
|
3518
|
-
};
|
|
3519
|
-
const Bit = ({
|
|
3520
|
-
rawValue,
|
|
3521
|
-
decimals,
|
|
3522
|
-
unitClassName,
|
|
3523
|
-
valueClassName,
|
|
3524
|
-
emptyProps
|
|
3525
|
-
}) => {
|
|
3526
|
-
if (isEmpty(rawValue)) {
|
|
3527
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$z({}, emptyProps));
|
|
3528
|
-
}
|
|
3529
|
-
const { value, unit } = formatBits(rawValue, decimals);
|
|
3530
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
3531
|
-
};
|
|
3532
|
-
|
|
3533
|
-
var __defProp$y = Object.defineProperty;
|
|
3534
|
-
var __getOwnPropSymbols$z = Object.getOwnPropertySymbols;
|
|
3535
|
-
var __hasOwnProp$z = Object.prototype.hasOwnProperty;
|
|
3536
|
-
var __propIsEnum$z = Object.prototype.propertyIsEnumerable;
|
|
3537
|
-
var __defNormalProp$y = (obj, key, value) => key in obj ? __defProp$y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3538
|
-
var __spreadValues$y = (a, b) => {
|
|
3539
|
-
for (var prop in b || (b = {}))
|
|
3540
|
-
if (__hasOwnProp$z.call(b, prop))
|
|
3541
|
-
__defNormalProp$y(a, prop, b[prop]);
|
|
3542
|
-
if (__getOwnPropSymbols$z)
|
|
3543
|
-
for (var prop of __getOwnPropSymbols$z(b)) {
|
|
3544
|
-
if (__propIsEnum$z.call(b, prop))
|
|
3545
|
-
__defNormalProp$y(a, prop, b[prop]);
|
|
3546
|
-
}
|
|
3547
|
-
return a;
|
|
3548
|
-
};
|
|
3549
|
-
const BitPerSeconds = ({
|
|
3550
|
-
rawValue,
|
|
3551
|
-
decimals,
|
|
3552
|
-
valueClassName,
|
|
3553
|
-
unitClassName,
|
|
3554
|
-
emptyProps
|
|
3555
|
-
}) => {
|
|
3556
|
-
if (isEmpty(rawValue)) {
|
|
3557
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$y({}, emptyProps));
|
|
3558
|
-
}
|
|
3559
|
-
const { value, unit } = formatBitPerSecond(rawValue, decimals);
|
|
3560
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
3561
|
-
};
|
|
3562
|
-
|
|
3563
|
-
var __defProp$x = Object.defineProperty;
|
|
3564
|
-
var __getOwnPropSymbols$y = Object.getOwnPropertySymbols;
|
|
3565
|
-
var __hasOwnProp$y = Object.prototype.hasOwnProperty;
|
|
3566
|
-
var __propIsEnum$y = Object.prototype.propertyIsEnumerable;
|
|
3567
|
-
var __defNormalProp$x = (obj, key, value) => key in obj ? __defProp$x(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3568
|
-
var __spreadValues$x = (a, b) => {
|
|
3569
|
-
for (var prop in b || (b = {}))
|
|
3570
|
-
if (__hasOwnProp$y.call(b, prop))
|
|
3571
|
-
__defNormalProp$x(a, prop, b[prop]);
|
|
3572
|
-
if (__getOwnPropSymbols$y)
|
|
3573
|
-
for (var prop of __getOwnPropSymbols$y(b)) {
|
|
3574
|
-
if (__propIsEnum$y.call(b, prop))
|
|
3575
|
-
__defNormalProp$x(a, prop, b[prop]);
|
|
3576
|
-
}
|
|
3577
|
-
return a;
|
|
3578
|
-
};
|
|
3579
|
-
const Bps = ({
|
|
3580
|
-
rawValue,
|
|
3581
|
-
decimals,
|
|
3582
|
-
valueClassName,
|
|
3583
|
-
unitClassName,
|
|
3584
|
-
emptyProps
|
|
3585
|
-
}) => {
|
|
3586
|
-
if (isEmpty(rawValue)) {
|
|
3587
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$x({}, emptyProps));
|
|
3588
|
-
}
|
|
3589
|
-
const { value, unit } = formatBps(rawValue, decimals);
|
|
3590
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
3591
|
-
};
|
|
3592
|
-
|
|
3593
|
-
var __defProp$w = Object.defineProperty;
|
|
3594
|
-
var __getOwnPropSymbols$x = Object.getOwnPropertySymbols;
|
|
3595
|
-
var __hasOwnProp$x = Object.prototype.hasOwnProperty;
|
|
3596
|
-
var __propIsEnum$x = Object.prototype.propertyIsEnumerable;
|
|
3597
|
-
var __defNormalProp$w = (obj, key, value) => key in obj ? __defProp$w(obj, key, {
|
|
4051
|
+
var __defProp$r = Object.defineProperty;
|
|
4052
|
+
var __getOwnPropSymbols$s = Object.getOwnPropertySymbols;
|
|
4053
|
+
var __hasOwnProp$s = Object.prototype.hasOwnProperty;
|
|
4054
|
+
var __propIsEnum$s = Object.prototype.propertyIsEnumerable;
|
|
4055
|
+
var __defNormalProp$r = (obj, key, value) => key in obj ? __defProp$r(obj, key, {
|
|
3598
4056
|
enumerable: true,
|
|
3599
4057
|
configurable: true,
|
|
3600
4058
|
writable: true,
|
|
3601
4059
|
value
|
|
3602
4060
|
}) : obj[key] = value;
|
|
3603
|
-
var __spreadValues$
|
|
3604
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3605
|
-
if (__getOwnPropSymbols$
|
|
3606
|
-
if (__propIsEnum$
|
|
4061
|
+
var __spreadValues$r = (a, b) => {
|
|
4062
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$s.call(b, prop)) __defNormalProp$r(a, prop, b[prop]);
|
|
4063
|
+
if (__getOwnPropSymbols$s) for (var prop of __getOwnPropSymbols$s(b)) {
|
|
4064
|
+
if (__propIsEnum$s.call(b, prop)) __defNormalProp$r(a, prop, b[prop]);
|
|
3607
4065
|
}
|
|
3608
4066
|
return a;
|
|
3609
4067
|
};
|
|
3610
4068
|
var __objRest$c = (source, exclude) => {
|
|
3611
4069
|
var target = {};
|
|
3612
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3613
|
-
if (source != null && __getOwnPropSymbols$
|
|
3614
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4070
|
+
for (var prop in source) if (__hasOwnProp$s.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
4071
|
+
if (source != null && __getOwnPropSymbols$s) for (var prop of __getOwnPropSymbols$s(source)) {
|
|
4072
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$s.call(source, prop)) target[prop] = source[prop];
|
|
3615
4073
|
}
|
|
3616
4074
|
return target;
|
|
3617
4075
|
};
|
|
@@ -3655,7 +4113,7 @@
|
|
|
3655
4113
|
style: {
|
|
3656
4114
|
cursor: "not-allowed"
|
|
3657
4115
|
}
|
|
3658
|
-
}, /* @__PURE__ */React__namespace.default.createElement(Button, __spreadValues$
|
|
4116
|
+
}, /* @__PURE__ */React__namespace.default.createElement(Button, __spreadValues$r({
|
|
3659
4117
|
style: {
|
|
3660
4118
|
pointerEvents: "none"
|
|
3661
4119
|
},
|
|
@@ -3665,7 +4123,7 @@
|
|
|
3665
4123
|
ghost,
|
|
3666
4124
|
className: core.cx(ButtonStyle, className2),
|
|
3667
4125
|
prefixIcon: icon
|
|
3668
|
-
}, buttonPropArgs))) : /* @__PURE__ */React__namespace.default.createElement(Button, __spreadValues$
|
|
4126
|
+
}, buttonPropArgs))) : /* @__PURE__ */React__namespace.default.createElement(Button, __spreadValues$r({
|
|
3669
4127
|
type,
|
|
3670
4128
|
size,
|
|
3671
4129
|
danger,
|
|
@@ -3674,7 +4132,7 @@
|
|
|
3674
4132
|
prefixIcon: icon
|
|
3675
4133
|
}, buttonPropArgs)));
|
|
3676
4134
|
}
|
|
3677
|
-
return /* @__PURE__ */React__namespace.default.createElement(Button, __spreadValues$
|
|
4135
|
+
return /* @__PURE__ */React__namespace.default.createElement(Button, __spreadValues$r({
|
|
3678
4136
|
key: key || index,
|
|
3679
4137
|
type,
|
|
3680
4138
|
size,
|
|
@@ -3688,44 +4146,6 @@
|
|
|
3688
4146
|
}));
|
|
3689
4147
|
});
|
|
3690
4148
|
|
|
3691
|
-
var __defProp$v = Object.defineProperty;
|
|
3692
|
-
var __getOwnPropSymbols$w = Object.getOwnPropertySymbols;
|
|
3693
|
-
var __hasOwnProp$w = Object.prototype.hasOwnProperty;
|
|
3694
|
-
var __propIsEnum$w = Object.prototype.propertyIsEnumerable;
|
|
3695
|
-
var __defNormalProp$v = (obj, key, value) => key in obj ? __defProp$v(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3696
|
-
var __spreadValues$v = (a, b) => {
|
|
3697
|
-
for (var prop in b || (b = {}))
|
|
3698
|
-
if (__hasOwnProp$w.call(b, prop))
|
|
3699
|
-
__defNormalProp$v(a, prop, b[prop]);
|
|
3700
|
-
if (__getOwnPropSymbols$w)
|
|
3701
|
-
for (var prop of __getOwnPropSymbols$w(b)) {
|
|
3702
|
-
if (__propIsEnum$w.call(b, prop))
|
|
3703
|
-
__defNormalProp$v(a, prop, b[prop]);
|
|
3704
|
-
}
|
|
3705
|
-
return a;
|
|
3706
|
-
};
|
|
3707
|
-
const Byte = ({
|
|
3708
|
-
rawValue,
|
|
3709
|
-
noUnitOnZero,
|
|
3710
|
-
decimals,
|
|
3711
|
-
valueClassName,
|
|
3712
|
-
unitClassName,
|
|
3713
|
-
emptyProps
|
|
3714
|
-
}) => {
|
|
3715
|
-
const { t } = useParrotTranslation();
|
|
3716
|
-
if (isEmpty(rawValue)) {
|
|
3717
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$v({}, emptyProps));
|
|
3718
|
-
}
|
|
3719
|
-
if (rawValue === -1) {
|
|
3720
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, t("common.calculation"));
|
|
3721
|
-
}
|
|
3722
|
-
const { value, unit } = formatBytes(rawValue, decimals);
|
|
3723
|
-
if (noUnitOnZero && value === 0) {
|
|
3724
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", { className: "value" }, value);
|
|
3725
|
-
}
|
|
3726
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
3727
|
-
};
|
|
3728
|
-
|
|
3729
4149
|
const CardBody = /*#__PURE__*/react$1.styled('div')({
|
|
3730
4150
|
name: "CardBody",
|
|
3731
4151
|
class: "c1k4vanq",
|
|
@@ -3738,28 +4158,28 @@
|
|
|
3738
4158
|
propsAsIs: false
|
|
3739
4159
|
});
|
|
3740
4160
|
|
|
3741
|
-
var __defProp$
|
|
3742
|
-
var __getOwnPropSymbols$
|
|
3743
|
-
var __hasOwnProp$
|
|
3744
|
-
var __propIsEnum$
|
|
3745
|
-
var __defNormalProp$
|
|
4161
|
+
var __defProp$q = Object.defineProperty;
|
|
4162
|
+
var __getOwnPropSymbols$r = Object.getOwnPropertySymbols;
|
|
4163
|
+
var __hasOwnProp$r = Object.prototype.hasOwnProperty;
|
|
4164
|
+
var __propIsEnum$r = Object.prototype.propertyIsEnumerable;
|
|
4165
|
+
var __defNormalProp$q = (obj, key, value) => key in obj ? __defProp$q(obj, key, {
|
|
3746
4166
|
enumerable: true,
|
|
3747
4167
|
configurable: true,
|
|
3748
4168
|
writable: true,
|
|
3749
4169
|
value
|
|
3750
4170
|
}) : obj[key] = value;
|
|
3751
|
-
var __spreadValues$
|
|
3752
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3753
|
-
if (__getOwnPropSymbols$
|
|
3754
|
-
if (__propIsEnum$
|
|
4171
|
+
var __spreadValues$q = (a, b) => {
|
|
4172
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$r.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
|
|
4173
|
+
if (__getOwnPropSymbols$r) for (var prop of __getOwnPropSymbols$r(b)) {
|
|
4174
|
+
if (__propIsEnum$r.call(b, prop)) __defNormalProp$q(a, prop, b[prop]);
|
|
3755
4175
|
}
|
|
3756
4176
|
return a;
|
|
3757
4177
|
};
|
|
3758
4178
|
var __objRest$b = (source, exclude) => {
|
|
3759
4179
|
var target = {};
|
|
3760
|
-
for (var prop in source) if (__hasOwnProp$
|
|
3761
|
-
if (source != null && __getOwnPropSymbols$
|
|
3762
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4180
|
+
for (var prop in source) if (__hasOwnProp$r.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
4181
|
+
if (source != null && __getOwnPropSymbols$r) for (var prop of __getOwnPropSymbols$r(source)) {
|
|
4182
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$r.call(source, prop)) target[prop] = source[prop];
|
|
3763
4183
|
}
|
|
3764
4184
|
return target;
|
|
3765
4185
|
};
|
|
@@ -3772,7 +4192,7 @@
|
|
|
3772
4192
|
shadow
|
|
3773
4193
|
} = _a,
|
|
3774
4194
|
otherProps = __objRest$b(_a, ["children", "className", "shadow"]);
|
|
3775
|
-
return /* @__PURE__ */React__namespace.default.createElement("div", __spreadValues$
|
|
4195
|
+
return /* @__PURE__ */React__namespace.default.createElement("div", __spreadValues$q({
|
|
3776
4196
|
className: cs__default.default({
|
|
3777
4197
|
[boxShadow]: shadow
|
|
3778
4198
|
}, className)
|
|
@@ -3785,21 +4205,21 @@
|
|
|
3785
4205
|
propsAsIs: true
|
|
3786
4206
|
});
|
|
3787
4207
|
|
|
3788
|
-
var __defProp$
|
|
4208
|
+
var __defProp$p = Object.defineProperty;
|
|
3789
4209
|
var __defProps$l = Object.defineProperties;
|
|
3790
4210
|
var __getOwnPropDescs$l = Object.getOwnPropertyDescriptors;
|
|
3791
|
-
var __getOwnPropSymbols$
|
|
3792
|
-
var __hasOwnProp$
|
|
3793
|
-
var __propIsEnum$
|
|
3794
|
-
var __defNormalProp$
|
|
3795
|
-
var __spreadValues$
|
|
4211
|
+
var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
|
|
4212
|
+
var __hasOwnProp$q = Object.prototype.hasOwnProperty;
|
|
4213
|
+
var __propIsEnum$q = Object.prototype.propertyIsEnumerable;
|
|
4214
|
+
var __defNormalProp$p = (obj, key, value) => key in obj ? __defProp$p(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4215
|
+
var __spreadValues$p = (a, b) => {
|
|
3796
4216
|
for (var prop in b || (b = {}))
|
|
3797
|
-
if (__hasOwnProp$
|
|
3798
|
-
__defNormalProp$
|
|
3799
|
-
if (__getOwnPropSymbols$
|
|
3800
|
-
for (var prop of __getOwnPropSymbols$
|
|
3801
|
-
if (__propIsEnum$
|
|
3802
|
-
__defNormalProp$
|
|
4217
|
+
if (__hasOwnProp$q.call(b, prop))
|
|
4218
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
4219
|
+
if (__getOwnPropSymbols$q)
|
|
4220
|
+
for (var prop of __getOwnPropSymbols$q(b)) {
|
|
4221
|
+
if (__propIsEnum$q.call(b, prop))
|
|
4222
|
+
__defNormalProp$p(a, prop, b[prop]);
|
|
3803
4223
|
}
|
|
3804
4224
|
return a;
|
|
3805
4225
|
};
|
|
@@ -3807,11 +4227,11 @@
|
|
|
3807
4227
|
var __objRest$a = (source, exclude) => {
|
|
3808
4228
|
var target = {};
|
|
3809
4229
|
for (var prop in source)
|
|
3810
|
-
if (__hasOwnProp$
|
|
4230
|
+
if (__hasOwnProp$q.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
3811
4231
|
target[prop] = source[prop];
|
|
3812
|
-
if (source != null && __getOwnPropSymbols$
|
|
3813
|
-
for (var prop of __getOwnPropSymbols$
|
|
3814
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4232
|
+
if (source != null && __getOwnPropSymbols$q)
|
|
4233
|
+
for (var prop of __getOwnPropSymbols$q(source)) {
|
|
4234
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$q.call(source, prop))
|
|
3815
4235
|
target[prop] = source[prop];
|
|
3816
4236
|
}
|
|
3817
4237
|
return target;
|
|
@@ -3838,7 +4258,7 @@
|
|
|
3838
4258
|
const [open, setOpen] = React.useState(defaultOpen);
|
|
3839
4259
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
3840
4260
|
CardWrapper,
|
|
3841
|
-
__spreadProps$l(__spreadValues$
|
|
4261
|
+
__spreadProps$l(__spreadValues$p({
|
|
3842
4262
|
ref,
|
|
3843
4263
|
className: cs__default.default(["card-wrapper", className, hoverable && "hoverable"])
|
|
3844
4264
|
}, domProps), {
|
|
@@ -3935,22 +4355,22 @@
|
|
|
3935
4355
|
}, children));
|
|
3936
4356
|
};
|
|
3937
4357
|
|
|
3938
|
-
var __defProp$
|
|
4358
|
+
var __defProp$o = Object.defineProperty;
|
|
3939
4359
|
var __defProps$k = Object.defineProperties;
|
|
3940
4360
|
var __getOwnPropDescs$k = Object.getOwnPropertyDescriptors;
|
|
3941
|
-
var __getOwnPropSymbols$
|
|
3942
|
-
var __hasOwnProp$
|
|
3943
|
-
var __propIsEnum$
|
|
3944
|
-
var __defNormalProp$
|
|
4361
|
+
var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
|
|
4362
|
+
var __hasOwnProp$p = Object.prototype.hasOwnProperty;
|
|
4363
|
+
var __propIsEnum$p = Object.prototype.propertyIsEnumerable;
|
|
4364
|
+
var __defNormalProp$o = (obj, key, value) => key in obj ? __defProp$o(obj, key, {
|
|
3945
4365
|
enumerable: true,
|
|
3946
4366
|
configurable: true,
|
|
3947
4367
|
writable: true,
|
|
3948
4368
|
value
|
|
3949
4369
|
}) : obj[key] = value;
|
|
3950
|
-
var __spreadValues$
|
|
3951
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
3952
|
-
if (__getOwnPropSymbols$
|
|
3953
|
-
if (__propIsEnum$
|
|
4370
|
+
var __spreadValues$o = (a, b) => {
|
|
4371
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$p.call(b, prop)) __defNormalProp$o(a, prop, b[prop]);
|
|
4372
|
+
if (__getOwnPropSymbols$p) for (var prop of __getOwnPropSymbols$p(b)) {
|
|
4373
|
+
if (__propIsEnum$p.call(b, prop)) __defNormalProp$o(a, prop, b[prop]);
|
|
3954
4374
|
}
|
|
3955
4375
|
return a;
|
|
3956
4376
|
};
|
|
@@ -3960,7 +4380,7 @@
|
|
|
3960
4380
|
} = antd.Form;
|
|
3961
4381
|
const FormItemStyle$1 = "f1p9ti6d";
|
|
3962
4382
|
const FormItem$1 = props => {
|
|
3963
|
-
return /* @__PURE__ */React__namespace.default.createElement(AntdFormItem, __spreadProps$k(__spreadValues$
|
|
4383
|
+
return /* @__PURE__ */React__namespace.default.createElement(AntdFormItem, __spreadProps$k(__spreadValues$o({}, props), {
|
|
3964
4384
|
className: cs__default.default(FormItemStyle$1, props.className)
|
|
3965
4385
|
}));
|
|
3966
4386
|
};
|
|
@@ -3968,55 +4388,25 @@
|
|
|
3968
4388
|
const Form = antd.Form;
|
|
3969
4389
|
Form.Item = FormItem$1;
|
|
3970
4390
|
|
|
3971
|
-
var __defProp$
|
|
3972
|
-
var __getOwnPropSymbols$
|
|
3973
|
-
var __hasOwnProp$
|
|
3974
|
-
var __propIsEnum$
|
|
3975
|
-
var __defNormalProp$
|
|
3976
|
-
var __spreadValues$
|
|
3977
|
-
for (var prop in b || (b = {}))
|
|
3978
|
-
if (__hasOwnProp$s.call(b, prop))
|
|
3979
|
-
__defNormalProp$r(a, prop, b[prop]);
|
|
3980
|
-
if (__getOwnPropSymbols$s)
|
|
3981
|
-
for (var prop of __getOwnPropSymbols$s(b)) {
|
|
3982
|
-
if (__propIsEnum$s.call(b, prop))
|
|
3983
|
-
__defNormalProp$r(a, prop, b[prop]);
|
|
3984
|
-
}
|
|
3985
|
-
return a;
|
|
3986
|
-
};
|
|
3987
|
-
const Frequency = ({
|
|
3988
|
-
rawValue,
|
|
3989
|
-
decimals,
|
|
3990
|
-
valueClassName,
|
|
3991
|
-
unitClassName,
|
|
3992
|
-
emptyProps
|
|
3993
|
-
}) => {
|
|
3994
|
-
if (isEmpty(rawValue)) {
|
|
3995
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$r({}, emptyProps));
|
|
3996
|
-
}
|
|
3997
|
-
const { value, unit } = formatFrequency(rawValue, decimals);
|
|
3998
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
3999
|
-
};
|
|
4000
|
-
|
|
4001
|
-
var __defProp$q = Object.defineProperty;
|
|
4002
|
-
var __getOwnPropSymbols$r = Object.getOwnPropertySymbols;
|
|
4003
|
-
var __hasOwnProp$r = Object.prototype.hasOwnProperty;
|
|
4004
|
-
var __propIsEnum$r = Object.prototype.propertyIsEnumerable;
|
|
4005
|
-
var __defNormalProp$q = (obj, key, value) => key in obj ? __defProp$q(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4006
|
-
var __spreadValues$q = (a, b) => {
|
|
4391
|
+
var __defProp$n = Object.defineProperty;
|
|
4392
|
+
var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
|
|
4393
|
+
var __hasOwnProp$o = Object.prototype.hasOwnProperty;
|
|
4394
|
+
var __propIsEnum$o = Object.prototype.propertyIsEnumerable;
|
|
4395
|
+
var __defNormalProp$n = (obj, key, value) => key in obj ? __defProp$n(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4396
|
+
var __spreadValues$n = (a, b) => {
|
|
4007
4397
|
for (var prop in b || (b = {}))
|
|
4008
|
-
if (__hasOwnProp$
|
|
4009
|
-
__defNormalProp$
|
|
4010
|
-
if (__getOwnPropSymbols$
|
|
4011
|
-
for (var prop of __getOwnPropSymbols$
|
|
4012
|
-
if (__propIsEnum$
|
|
4013
|
-
__defNormalProp$
|
|
4398
|
+
if (__hasOwnProp$o.call(b, prop))
|
|
4399
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
4400
|
+
if (__getOwnPropSymbols$o)
|
|
4401
|
+
for (var prop of __getOwnPropSymbols$o(b)) {
|
|
4402
|
+
if (__propIsEnum$o.call(b, prop))
|
|
4403
|
+
__defNormalProp$n(a, prop, b[prop]);
|
|
4014
4404
|
}
|
|
4015
4405
|
return a;
|
|
4016
4406
|
};
|
|
4017
4407
|
const ParrotTrans = (props) => {
|
|
4018
4408
|
const { i18n } = useParrotTranslation();
|
|
4019
|
-
return /* @__PURE__ */ React__namespace.default.createElement(reactI18next.Trans, __spreadValues$
|
|
4409
|
+
return /* @__PURE__ */ React__namespace.default.createElement(reactI18next.Trans, __spreadValues$n({ i18n }, props));
|
|
4020
4410
|
};
|
|
4021
4411
|
|
|
4022
4412
|
const PresetColors$3 = [
|
|
@@ -4036,31 +4426,31 @@
|
|
|
4036
4426
|
const IconStyle$1 = "i1qw4clm";
|
|
4037
4427
|
const NameTagStyle = "n1r5ku5l";
|
|
4038
4428
|
|
|
4039
|
-
var __defProp$
|
|
4429
|
+
var __defProp$m = Object.defineProperty;
|
|
4040
4430
|
var __defProps$j = Object.defineProperties;
|
|
4041
4431
|
var __getOwnPropDescs$j = Object.getOwnPropertyDescriptors;
|
|
4042
|
-
var __getOwnPropSymbols$
|
|
4043
|
-
var __hasOwnProp$
|
|
4044
|
-
var __propIsEnum$
|
|
4045
|
-
var __defNormalProp$
|
|
4432
|
+
var __getOwnPropSymbols$n = Object.getOwnPropertySymbols;
|
|
4433
|
+
var __hasOwnProp$n = Object.prototype.hasOwnProperty;
|
|
4434
|
+
var __propIsEnum$n = Object.prototype.propertyIsEnumerable;
|
|
4435
|
+
var __defNormalProp$m = (obj, key, value) => key in obj ? __defProp$m(obj, key, {
|
|
4046
4436
|
enumerable: true,
|
|
4047
4437
|
configurable: true,
|
|
4048
4438
|
writable: true,
|
|
4049
4439
|
value
|
|
4050
4440
|
}) : obj[key] = value;
|
|
4051
|
-
var __spreadValues$
|
|
4052
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
4053
|
-
if (__getOwnPropSymbols$
|
|
4054
|
-
if (__propIsEnum$
|
|
4441
|
+
var __spreadValues$m = (a, b) => {
|
|
4442
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$n.call(b, prop)) __defNormalProp$m(a, prop, b[prop]);
|
|
4443
|
+
if (__getOwnPropSymbols$n) for (var prop of __getOwnPropSymbols$n(b)) {
|
|
4444
|
+
if (__propIsEnum$n.call(b, prop)) __defNormalProp$m(a, prop, b[prop]);
|
|
4055
4445
|
}
|
|
4056
4446
|
return a;
|
|
4057
4447
|
};
|
|
4058
4448
|
var __spreadProps$j = (a, b) => __defProps$j(a, __getOwnPropDescs$j(b));
|
|
4059
4449
|
var __objRest$9 = (source, exclude) => {
|
|
4060
4450
|
var target = {};
|
|
4061
|
-
for (var prop in source) if (__hasOwnProp$
|
|
4062
|
-
if (source != null && __getOwnPropSymbols$
|
|
4063
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4451
|
+
for (var prop in source) if (__hasOwnProp$n.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
4452
|
+
if (source != null && __getOwnPropSymbols$n) for (var prop of __getOwnPropSymbols$n(source)) {
|
|
4453
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$n.call(source, prop)) target[prop] = source[prop];
|
|
4064
4454
|
}
|
|
4065
4455
|
return target;
|
|
4066
4456
|
};
|
|
@@ -4076,7 +4466,7 @@
|
|
|
4076
4466
|
icon
|
|
4077
4467
|
} = _b,
|
|
4078
4468
|
props = __objRest$9(_b, ["size", "color", "className", "primaryContent", "secondaryContent", "icon"]);
|
|
4079
|
-
return /* @__PURE__ */React__namespace.default.createElement(antd.Tag, __spreadProps$j(__spreadValues$
|
|
4469
|
+
return /* @__PURE__ */React__namespace.default.createElement(antd.Tag, __spreadProps$j(__spreadValues$m({}, props), {
|
|
4080
4470
|
className: cs__default.default(className, TagStyle$1, Size$1[size], WrapperStyle, Typo.Label.l4_regular, {
|
|
4081
4471
|
[`ant-tag-${color}`]: PresetColors$3.includes(color)
|
|
4082
4472
|
}, "outside-tag")
|
|
@@ -4089,21 +4479,21 @@
|
|
|
4089
4479
|
}, icon), primaryContent), secondaryContent);
|
|
4090
4480
|
};
|
|
4091
4481
|
|
|
4092
|
-
var __defProp$
|
|
4482
|
+
var __defProp$l = Object.defineProperty;
|
|
4093
4483
|
var __defProps$i = Object.defineProperties;
|
|
4094
4484
|
var __getOwnPropDescs$i = Object.getOwnPropertyDescriptors;
|
|
4095
|
-
var __getOwnPropSymbols$
|
|
4096
|
-
var __hasOwnProp$
|
|
4097
|
-
var __propIsEnum$
|
|
4098
|
-
var __defNormalProp$
|
|
4099
|
-
var __spreadValues$
|
|
4485
|
+
var __getOwnPropSymbols$m = Object.getOwnPropertySymbols;
|
|
4486
|
+
var __hasOwnProp$m = Object.prototype.hasOwnProperty;
|
|
4487
|
+
var __propIsEnum$m = Object.prototype.propertyIsEnumerable;
|
|
4488
|
+
var __defNormalProp$l = (obj, key, value) => key in obj ? __defProp$l(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4489
|
+
var __spreadValues$l = (a, b) => {
|
|
4100
4490
|
for (var prop in b || (b = {}))
|
|
4101
|
-
if (__hasOwnProp$
|
|
4102
|
-
__defNormalProp$
|
|
4103
|
-
if (__getOwnPropSymbols$
|
|
4104
|
-
for (var prop of __getOwnPropSymbols$
|
|
4105
|
-
if (__propIsEnum$
|
|
4106
|
-
__defNormalProp$
|
|
4491
|
+
if (__hasOwnProp$m.call(b, prop))
|
|
4492
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
4493
|
+
if (__getOwnPropSymbols$m)
|
|
4494
|
+
for (var prop of __getOwnPropSymbols$m(b)) {
|
|
4495
|
+
if (__propIsEnum$m.call(b, prop))
|
|
4496
|
+
__defNormalProp$l(a, prop, b[prop]);
|
|
4107
4497
|
}
|
|
4108
4498
|
return a;
|
|
4109
4499
|
};
|
|
@@ -4111,11 +4501,11 @@
|
|
|
4111
4501
|
var __objRest$8 = (source, exclude) => {
|
|
4112
4502
|
var target = {};
|
|
4113
4503
|
for (var prop in source)
|
|
4114
|
-
if (__hasOwnProp$
|
|
4504
|
+
if (__hasOwnProp$m.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
4115
4505
|
target[prop] = source[prop];
|
|
4116
|
-
if (source != null && __getOwnPropSymbols$
|
|
4117
|
-
for (var prop of __getOwnPropSymbols$
|
|
4118
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4506
|
+
if (source != null && __getOwnPropSymbols$m)
|
|
4507
|
+
for (var prop of __getOwnPropSymbols$m(source)) {
|
|
4508
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$m.call(source, prop))
|
|
4119
4509
|
target[prop] = source[prop];
|
|
4120
4510
|
}
|
|
4121
4511
|
return target;
|
|
@@ -4151,7 +4541,7 @@
|
|
|
4151
4541
|
const computedColor = AntdColorMap[color] || color;
|
|
4152
4542
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
4153
4543
|
antd.Tag,
|
|
4154
|
-
__spreadProps$i(__spreadValues$
|
|
4544
|
+
__spreadProps$i(__spreadValues$l({}, props), {
|
|
4155
4545
|
className: cs__default.default(className, Size$1[size], TagStyle$1, Typo.Label.l4_regular, {
|
|
4156
4546
|
[`ant-tag-${computedColor}`]: PresetColors$2.includes(computedColor),
|
|
4157
4547
|
"tag-hover": hoverable
|
|
@@ -4165,19 +4555,19 @@
|
|
|
4165
4555
|
};
|
|
4166
4556
|
const NameTag = (_c) => {
|
|
4167
4557
|
var _d = _c, { className } = _d, props = __objRest$8(_d, ["className"]);
|
|
4168
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Tag, __spreadValues$
|
|
4558
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Tag, __spreadValues$l({ className: cs__default.default(NameTagStyle, className) }, props));
|
|
4169
4559
|
};
|
|
4170
4560
|
Tag.SplitTag = SplitTag;
|
|
4171
4561
|
Tag.NameTag = NameTag;
|
|
4172
4562
|
|
|
4173
|
-
var __getOwnPropSymbols$
|
|
4174
|
-
var __hasOwnProp$
|
|
4175
|
-
var __propIsEnum$
|
|
4563
|
+
var __getOwnPropSymbols$l = Object.getOwnPropertySymbols;
|
|
4564
|
+
var __hasOwnProp$l = Object.prototype.hasOwnProperty;
|
|
4565
|
+
var __propIsEnum$l = Object.prototype.propertyIsEnumerable;
|
|
4176
4566
|
var __objRest$7 = (source, exclude) => {
|
|
4177
4567
|
var target = {};
|
|
4178
|
-
for (var prop in source) if (__hasOwnProp$
|
|
4179
|
-
if (source != null && __getOwnPropSymbols$
|
|
4180
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4568
|
+
for (var prop in source) if (__hasOwnProp$l.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
4569
|
+
if (source != null && __getOwnPropSymbols$l) for (var prop of __getOwnPropSymbols$l(source)) {
|
|
4570
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$l.call(source, prop)) target[prop] = source[prop];
|
|
4181
4571
|
}
|
|
4182
4572
|
return target;
|
|
4183
4573
|
};
|
|
@@ -4206,21 +4596,21 @@
|
|
|
4206
4596
|
propsAsIs: true
|
|
4207
4597
|
});
|
|
4208
4598
|
|
|
4209
|
-
var __defProp$
|
|
4599
|
+
var __defProp$k = Object.defineProperty;
|
|
4210
4600
|
var __defProps$h = Object.defineProperties;
|
|
4211
4601
|
var __getOwnPropDescs$h = Object.getOwnPropertyDescriptors;
|
|
4212
|
-
var __getOwnPropSymbols$
|
|
4213
|
-
var __hasOwnProp$
|
|
4214
|
-
var __propIsEnum$
|
|
4215
|
-
var __defNormalProp$
|
|
4216
|
-
var __spreadValues$
|
|
4602
|
+
var __getOwnPropSymbols$k = Object.getOwnPropertySymbols;
|
|
4603
|
+
var __hasOwnProp$k = Object.prototype.hasOwnProperty;
|
|
4604
|
+
var __propIsEnum$k = Object.prototype.propertyIsEnumerable;
|
|
4605
|
+
var __defNormalProp$k = (obj, key2, value) => key2 in obj ? __defProp$k(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
|
|
4606
|
+
var __spreadValues$k = (a, b) => {
|
|
4217
4607
|
for (var prop in b || (b = {}))
|
|
4218
|
-
if (__hasOwnProp$
|
|
4219
|
-
__defNormalProp$
|
|
4220
|
-
if (__getOwnPropSymbols$
|
|
4221
|
-
for (var prop of __getOwnPropSymbols$
|
|
4222
|
-
if (__propIsEnum$
|
|
4223
|
-
__defNormalProp$
|
|
4608
|
+
if (__hasOwnProp$k.call(b, prop))
|
|
4609
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
4610
|
+
if (__getOwnPropSymbols$k)
|
|
4611
|
+
for (var prop of __getOwnPropSymbols$k(b)) {
|
|
4612
|
+
if (__propIsEnum$k.call(b, prop))
|
|
4613
|
+
__defNormalProp$k(a, prop, b[prop]);
|
|
4224
4614
|
}
|
|
4225
4615
|
return a;
|
|
4226
4616
|
};
|
|
@@ -4331,7 +4721,7 @@
|
|
|
4331
4721
|
}
|
|
4332
4722
|
getRCNotificationInstance(args, ({ prefixCls, instance }) => {
|
|
4333
4723
|
instance.notice(
|
|
4334
|
-
getRCNoticeProps(__spreadProps$h(__spreadValues$
|
|
4724
|
+
getRCNoticeProps(__spreadProps$h(__spreadValues$k({}, args), { key: target, onClose: callback }), prefixCls)
|
|
4335
4725
|
);
|
|
4336
4726
|
});
|
|
4337
4727
|
});
|
|
@@ -4360,7 +4750,7 @@
|
|
|
4360
4750
|
function attachTypeApi(originalApi, type) {
|
|
4361
4751
|
originalApi[type] = (content, duration, onClose) => {
|
|
4362
4752
|
if (isArgsProps(content)) {
|
|
4363
|
-
return originalApi.open(__spreadProps$h(__spreadValues$
|
|
4753
|
+
return originalApi.open(__spreadProps$h(__spreadValues$k({}, content), { type }));
|
|
4364
4754
|
}
|
|
4365
4755
|
if (typeof duration === "function") {
|
|
4366
4756
|
onClose = duration;
|
|
@@ -4374,21 +4764,21 @@
|
|
|
4374
4764
|
);
|
|
4375
4765
|
api.warn = api.warning;
|
|
4376
4766
|
|
|
4377
|
-
var __defProp$
|
|
4767
|
+
var __defProp$j = Object.defineProperty;
|
|
4378
4768
|
var __defProps$g = Object.defineProperties;
|
|
4379
4769
|
var __getOwnPropDescs$g = Object.getOwnPropertyDescriptors;
|
|
4380
|
-
var __getOwnPropSymbols$
|
|
4381
|
-
var __hasOwnProp$
|
|
4382
|
-
var __propIsEnum$
|
|
4383
|
-
var __defNormalProp$
|
|
4384
|
-
var __spreadValues$
|
|
4770
|
+
var __getOwnPropSymbols$j = Object.getOwnPropertySymbols;
|
|
4771
|
+
var __hasOwnProp$j = Object.prototype.hasOwnProperty;
|
|
4772
|
+
var __propIsEnum$j = Object.prototype.propertyIsEnumerable;
|
|
4773
|
+
var __defNormalProp$j = (obj, key, value) => key in obj ? __defProp$j(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4774
|
+
var __spreadValues$j = (a, b) => {
|
|
4385
4775
|
for (var prop in b || (b = {}))
|
|
4386
|
-
if (__hasOwnProp$
|
|
4387
|
-
__defNormalProp$
|
|
4388
|
-
if (__getOwnPropSymbols$
|
|
4389
|
-
for (var prop of __getOwnPropSymbols$
|
|
4390
|
-
if (__propIsEnum$
|
|
4391
|
-
__defNormalProp$
|
|
4776
|
+
if (__hasOwnProp$j.call(b, prop))
|
|
4777
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
4778
|
+
if (__getOwnPropSymbols$j)
|
|
4779
|
+
for (var prop of __getOwnPropSymbols$j(b)) {
|
|
4780
|
+
if (__propIsEnum$j.call(b, prop))
|
|
4781
|
+
__defNormalProp$j(a, prop, b[prop]);
|
|
4392
4782
|
}
|
|
4393
4783
|
return a;
|
|
4394
4784
|
};
|
|
@@ -4402,8 +4792,8 @@
|
|
|
4402
4792
|
switch (action.type) {
|
|
4403
4793
|
case "SET_POINTER" /* SET_POINTER */: {
|
|
4404
4794
|
const { uuid, left, text, visible, value } = action.payload;
|
|
4405
|
-
return __spreadProps$g(__spreadValues$
|
|
4406
|
-
pointers: __spreadProps$g(__spreadValues$
|
|
4795
|
+
return __spreadProps$g(__spreadValues$j({}, state), {
|
|
4796
|
+
pointers: __spreadProps$g(__spreadValues$j({}, state.pointers), {
|
|
4407
4797
|
[uuid]: {
|
|
4408
4798
|
left,
|
|
4409
4799
|
text,
|
|
@@ -4415,16 +4805,16 @@
|
|
|
4415
4805
|
}
|
|
4416
4806
|
case "SET_RESOURCE_DATA" /* SET_RESOURCE_DATA */: {
|
|
4417
4807
|
const { uuid, data } = action.payload;
|
|
4418
|
-
return __spreadProps$g(__spreadValues$
|
|
4419
|
-
resourceData: __spreadProps$g(__spreadValues$
|
|
4808
|
+
return __spreadProps$g(__spreadValues$j({}, state), {
|
|
4809
|
+
resourceData: __spreadProps$g(__spreadValues$j({}, state.resourceData), {
|
|
4420
4810
|
[uuid]: data
|
|
4421
4811
|
})
|
|
4422
4812
|
});
|
|
4423
4813
|
}
|
|
4424
4814
|
case "SET_AVERAGE_DATA" /* SET_AVERAGE_DATA */: {
|
|
4425
4815
|
const { uuid, average } = action.payload;
|
|
4426
|
-
return __spreadProps$g(__spreadValues$
|
|
4427
|
-
averageData: __spreadProps$g(__spreadValues$
|
|
4816
|
+
return __spreadProps$g(__spreadValues$j({}, state), {
|
|
4817
|
+
averageData: __spreadProps$g(__spreadValues$j({}, state.averageData), {
|
|
4428
4818
|
[uuid]: average
|
|
4429
4819
|
})
|
|
4430
4820
|
});
|
|
@@ -4435,21 +4825,21 @@
|
|
|
4435
4825
|
}
|
|
4436
4826
|
};
|
|
4437
4827
|
|
|
4438
|
-
var __defProp$
|
|
4828
|
+
var __defProp$i = Object.defineProperty;
|
|
4439
4829
|
var __defProps$f = Object.defineProperties;
|
|
4440
4830
|
var __getOwnPropDescs$f = Object.getOwnPropertyDescriptors;
|
|
4441
|
-
var __getOwnPropSymbols$
|
|
4442
|
-
var __hasOwnProp$
|
|
4443
|
-
var __propIsEnum$
|
|
4444
|
-
var __defNormalProp$
|
|
4445
|
-
var __spreadValues$
|
|
4831
|
+
var __getOwnPropSymbols$i = Object.getOwnPropertySymbols;
|
|
4832
|
+
var __hasOwnProp$i = Object.prototype.hasOwnProperty;
|
|
4833
|
+
var __propIsEnum$i = Object.prototype.propertyIsEnumerable;
|
|
4834
|
+
var __defNormalProp$i = (obj, key, value) => key in obj ? __defProp$i(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4835
|
+
var __spreadValues$i = (a, b) => {
|
|
4446
4836
|
for (var prop in b || (b = {}))
|
|
4447
|
-
if (__hasOwnProp$
|
|
4448
|
-
__defNormalProp$
|
|
4449
|
-
if (__getOwnPropSymbols$
|
|
4450
|
-
for (var prop of __getOwnPropSymbols$
|
|
4451
|
-
if (__propIsEnum$
|
|
4452
|
-
__defNormalProp$
|
|
4837
|
+
if (__hasOwnProp$i.call(b, prop))
|
|
4838
|
+
__defNormalProp$i(a, prop, b[prop]);
|
|
4839
|
+
if (__getOwnPropSymbols$i)
|
|
4840
|
+
for (var prop of __getOwnPropSymbols$i(b)) {
|
|
4841
|
+
if (__propIsEnum$i.call(b, prop))
|
|
4842
|
+
__defNormalProp$i(a, prop, b[prop]);
|
|
4453
4843
|
}
|
|
4454
4844
|
return a;
|
|
4455
4845
|
};
|
|
@@ -4474,22 +4864,22 @@
|
|
|
4474
4864
|
)) {
|
|
4475
4865
|
return state;
|
|
4476
4866
|
}
|
|
4477
|
-
return __spreadProps$f(__spreadValues$
|
|
4478
|
-
stack: state.stack.concat(__spreadProps$f(__spreadValues$
|
|
4867
|
+
return __spreadProps$f(__spreadValues$i({}, state), {
|
|
4868
|
+
stack: state.stack.concat(__spreadProps$f(__spreadValues$i({}, action.payload), {
|
|
4479
4869
|
id: MODAL_ID++
|
|
4480
4870
|
}))
|
|
4481
4871
|
});
|
|
4482
4872
|
case "POP_MODAL" /* POP_MODAL */:
|
|
4483
|
-
return __spreadProps$f(__spreadValues$
|
|
4873
|
+
return __spreadProps$f(__spreadValues$i({}, state), {
|
|
4484
4874
|
stack: state.stack.slice(0, -1)
|
|
4485
4875
|
});
|
|
4486
4876
|
case "REMOVE_MODAL" /* REMOVE_MODAL */:
|
|
4487
|
-
return __spreadProps$f(__spreadValues$
|
|
4877
|
+
return __spreadProps$f(__spreadValues$i({}, state), {
|
|
4488
4878
|
closeId: 0,
|
|
4489
4879
|
stack: state.stack.filter((m) => m.id !== action.id)
|
|
4490
4880
|
});
|
|
4491
4881
|
case "CLOSE_MODAL" /* CLOSE_MODAL */:
|
|
4492
|
-
return __spreadProps$f(__spreadValues$
|
|
4882
|
+
return __spreadProps$f(__spreadValues$i({}, state), {
|
|
4493
4883
|
closeId: action.id
|
|
4494
4884
|
});
|
|
4495
4885
|
default:
|
|
@@ -4546,21 +4936,21 @@
|
|
|
4546
4936
|
const HorizontalStepContentStyle = "h1xo7yjb";
|
|
4547
4937
|
const VerticalStepContentStyle = "v1f2f7cy";
|
|
4548
4938
|
|
|
4549
|
-
var __defProp$
|
|
4939
|
+
var __defProp$h = Object.defineProperty;
|
|
4550
4940
|
var __defProps$e = Object.defineProperties;
|
|
4551
4941
|
var __getOwnPropDescs$e = Object.getOwnPropertyDescriptors;
|
|
4552
|
-
var __getOwnPropSymbols$
|
|
4553
|
-
var __hasOwnProp$
|
|
4554
|
-
var __propIsEnum$
|
|
4555
|
-
var __defNormalProp$
|
|
4556
|
-
var __spreadValues$
|
|
4942
|
+
var __getOwnPropSymbols$h = Object.getOwnPropertySymbols;
|
|
4943
|
+
var __hasOwnProp$h = Object.prototype.hasOwnProperty;
|
|
4944
|
+
var __propIsEnum$h = Object.prototype.propertyIsEnumerable;
|
|
4945
|
+
var __defNormalProp$h = (obj, key, value) => key in obj ? __defProp$h(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4946
|
+
var __spreadValues$h = (a, b) => {
|
|
4557
4947
|
for (var prop in b || (b = {}))
|
|
4558
|
-
if (__hasOwnProp$
|
|
4559
|
-
__defNormalProp$
|
|
4560
|
-
if (__getOwnPropSymbols$
|
|
4561
|
-
for (var prop of __getOwnPropSymbols$
|
|
4562
|
-
if (__propIsEnum$
|
|
4563
|
-
__defNormalProp$
|
|
4948
|
+
if (__hasOwnProp$h.call(b, prop))
|
|
4949
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
4950
|
+
if (__getOwnPropSymbols$h)
|
|
4951
|
+
for (var prop of __getOwnPropSymbols$h(b)) {
|
|
4952
|
+
if (__propIsEnum$h.call(b, prop))
|
|
4953
|
+
__defNormalProp$h(a, prop, b[prop]);
|
|
4564
4954
|
}
|
|
4565
4955
|
return a;
|
|
4566
4956
|
};
|
|
@@ -4568,11 +4958,11 @@
|
|
|
4568
4958
|
var __objRest$6 = (source, exclude) => {
|
|
4569
4959
|
var target = {};
|
|
4570
4960
|
for (var prop in source)
|
|
4571
|
-
if (__hasOwnProp$
|
|
4961
|
+
if (__hasOwnProp$h.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
4572
4962
|
target[prop] = source[prop];
|
|
4573
|
-
if (source != null && __getOwnPropSymbols$
|
|
4574
|
-
for (var prop of __getOwnPropSymbols$
|
|
4575
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
4963
|
+
if (source != null && __getOwnPropSymbols$h)
|
|
4964
|
+
for (var prop of __getOwnPropSymbols$h(source)) {
|
|
4965
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$h.call(source, prop))
|
|
4576
4966
|
target[prop] = source[prop];
|
|
4577
4967
|
}
|
|
4578
4968
|
return target;
|
|
@@ -4588,7 +4978,7 @@
|
|
|
4588
4978
|
setTooltipEnable({});
|
|
4589
4979
|
}
|
|
4590
4980
|
}, [textRef]);
|
|
4591
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Tooltip, __spreadProps$e(__spreadValues$
|
|
4981
|
+
return /* @__PURE__ */ React__namespace.default.createElement(Tooltip, __spreadProps$e(__spreadValues$h({}, tooltipEnable), { title: step.title }), /* @__PURE__ */ React__namespace.default.createElement(
|
|
4592
4982
|
"div",
|
|
4593
4983
|
{
|
|
4594
4984
|
className: isVerticalMode ? VerticalStepContentStyle : HorizontalStepContentStyle
|
|
@@ -4623,14 +5013,14 @@
|
|
|
4623
5013
|
},
|
|
4624
5014
|
/* @__PURE__ */ React__namespace.default.createElement(
|
|
4625
5015
|
antd.Steps,
|
|
4626
|
-
__spreadProps$e(__spreadValues$
|
|
5016
|
+
__spreadProps$e(__spreadValues$h({}, stepsProps), {
|
|
4627
5017
|
direction,
|
|
4628
5018
|
current,
|
|
4629
5019
|
type: "default"
|
|
4630
5020
|
}),
|
|
4631
5021
|
(stepsConfig == null ? void 0 : stepsConfig.length) ? stepsConfig.map((step, index) => /* @__PURE__ */ React__namespace.default.createElement(
|
|
4632
5022
|
antd.Steps.Step,
|
|
4633
|
-
__spreadProps$e(__spreadValues$
|
|
5023
|
+
__spreadProps$e(__spreadValues$h({
|
|
4634
5024
|
key: index
|
|
4635
5025
|
}, step), {
|
|
4636
5026
|
disabled: disabled || index > current,
|
|
@@ -4649,21 +5039,21 @@
|
|
|
4649
5039
|
);
|
|
4650
5040
|
};
|
|
4651
5041
|
|
|
4652
|
-
var __defProp$
|
|
5042
|
+
var __defProp$g = Object.defineProperty;
|
|
4653
5043
|
var __defProps$d = Object.defineProperties;
|
|
4654
5044
|
var __getOwnPropDescs$d = Object.getOwnPropertyDescriptors;
|
|
4655
|
-
var __getOwnPropSymbols$
|
|
4656
|
-
var __hasOwnProp$
|
|
4657
|
-
var __propIsEnum$
|
|
4658
|
-
var __defNormalProp$
|
|
4659
|
-
var __spreadValues$
|
|
5045
|
+
var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
|
|
5046
|
+
var __hasOwnProp$g = Object.prototype.hasOwnProperty;
|
|
5047
|
+
var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
|
|
5048
|
+
var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
5049
|
+
var __spreadValues$g = (a, b) => {
|
|
4660
5050
|
for (var prop in b || (b = {}))
|
|
4661
|
-
if (__hasOwnProp$
|
|
4662
|
-
__defNormalProp$
|
|
4663
|
-
if (__getOwnPropSymbols$
|
|
4664
|
-
for (var prop of __getOwnPropSymbols$
|
|
4665
|
-
if (__propIsEnum$
|
|
4666
|
-
__defNormalProp$
|
|
5051
|
+
if (__hasOwnProp$g.call(b, prop))
|
|
5052
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
5053
|
+
if (__getOwnPropSymbols$g)
|
|
5054
|
+
for (var prop of __getOwnPropSymbols$g(b)) {
|
|
5055
|
+
if (__propIsEnum$g.call(b, prop))
|
|
5056
|
+
__defNormalProp$g(a, prop, b[prop]);
|
|
4667
5057
|
}
|
|
4668
5058
|
return a;
|
|
4669
5059
|
};
|
|
@@ -4671,11 +5061,11 @@
|
|
|
4671
5061
|
var __objRest$5 = (source, exclude) => {
|
|
4672
5062
|
var target = {};
|
|
4673
5063
|
for (var prop in source)
|
|
4674
|
-
if (__hasOwnProp$
|
|
5064
|
+
if (__hasOwnProp$g.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
4675
5065
|
target[prop] = source[prop];
|
|
4676
|
-
if (source != null && __getOwnPropSymbols$
|
|
4677
|
-
for (var prop of __getOwnPropSymbols$
|
|
4678
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
5066
|
+
if (source != null && __getOwnPropSymbols$g)
|
|
5067
|
+
for (var prop of __getOwnPropSymbols$g(source)) {
|
|
5068
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$g.call(source, prop))
|
|
4679
5069
|
target[prop] = source[prop];
|
|
4680
5070
|
}
|
|
4681
5071
|
return target;
|
|
@@ -4757,7 +5147,7 @@
|
|
|
4757
5147
|
}
|
|
4758
5148
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
4759
5149
|
antd.Modal,
|
|
4760
|
-
__spreadProps$d(__spreadValues$
|
|
5150
|
+
__spreadProps$d(__spreadValues$g({
|
|
4761
5151
|
maskClosable,
|
|
4762
5152
|
className: cs__default.default(
|
|
4763
5153
|
className,
|
|
@@ -4792,7 +5182,7 @@
|
|
|
4792
5182
|
prevText
|
|
4793
5183
|
), error && /* @__PURE__ */ React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: "modal-error" }, error))), /* @__PURE__ */ React__namespace.default.createElement("div", { className: "modal-footer-btn-group" }, showCancel && /* @__PURE__ */ React__namespace.default.createElement(
|
|
4794
5184
|
Button,
|
|
4795
|
-
__spreadValues$
|
|
5185
|
+
__spreadValues$g({
|
|
4796
5186
|
type: "quiet",
|
|
4797
5187
|
onMouseDown: (e) => {
|
|
4798
5188
|
e.preventDefault();
|
|
@@ -4806,7 +5196,7 @@
|
|
|
4806
5196
|
cancelText
|
|
4807
5197
|
), showOk && /* @__PURE__ */ React__namespace.default.createElement(
|
|
4808
5198
|
Button,
|
|
4809
|
-
__spreadValues$
|
|
5199
|
+
__spreadValues$g({
|
|
4810
5200
|
onClick: (e) => {
|
|
4811
5201
|
var _a2, _b2;
|
|
4812
5202
|
onOk == null ? void 0 : onOk(e);
|
|
@@ -4848,22 +5238,22 @@
|
|
|
4848
5238
|
);
|
|
4849
5239
|
};
|
|
4850
5240
|
|
|
4851
|
-
var __defProp$
|
|
5241
|
+
var __defProp$f = Object.defineProperty;
|
|
4852
5242
|
var __defProps$c = Object.defineProperties;
|
|
4853
5243
|
var __getOwnPropDescs$c = Object.getOwnPropertyDescriptors;
|
|
4854
|
-
var __getOwnPropSymbols$
|
|
4855
|
-
var __hasOwnProp$
|
|
4856
|
-
var __propIsEnum$
|
|
4857
|
-
var __defNormalProp$
|
|
5244
|
+
var __getOwnPropSymbols$f = Object.getOwnPropertySymbols;
|
|
5245
|
+
var __hasOwnProp$f = Object.prototype.hasOwnProperty;
|
|
5246
|
+
var __propIsEnum$f = Object.prototype.propertyIsEnumerable;
|
|
5247
|
+
var __defNormalProp$f = (obj, key, value) => key in obj ? __defProp$f(obj, key, {
|
|
4858
5248
|
enumerable: true,
|
|
4859
5249
|
configurable: true,
|
|
4860
5250
|
writable: true,
|
|
4861
5251
|
value
|
|
4862
5252
|
}) : obj[key] = value;
|
|
4863
|
-
var __spreadValues$
|
|
4864
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
4865
|
-
if (__getOwnPropSymbols$
|
|
4866
|
-
if (__propIsEnum$
|
|
5253
|
+
var __spreadValues$f = (a, b) => {
|
|
5254
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$f.call(b, prop)) __defNormalProp$f(a, prop, b[prop]);
|
|
5255
|
+
if (__getOwnPropSymbols$f) for (var prop of __getOwnPropSymbols$f(b)) {
|
|
5256
|
+
if (__propIsEnum$f.call(b, prop)) __defNormalProp$f(a, prop, b[prop]);
|
|
4867
5257
|
}
|
|
4868
5258
|
return a;
|
|
4869
5259
|
};
|
|
@@ -4898,7 +5288,7 @@
|
|
|
4898
5288
|
observer == null ? void 0 : observer.disconnect();
|
|
4899
5289
|
};
|
|
4900
5290
|
});
|
|
4901
|
-
return /* @__PURE__ */React__namespace.default.createElement(Tooltip, __spreadProps$c(__spreadValues$
|
|
5291
|
+
return /* @__PURE__ */React__namespace.default.createElement(Tooltip, __spreadProps$c(__spreadValues$f({}, !ellipsis && {
|
|
4902
5292
|
visible: false
|
|
4903
5293
|
}), {
|
|
4904
5294
|
title: tooltip
|
|
@@ -5016,77 +5406,46 @@
|
|
|
5016
5406
|
}))));
|
|
5017
5407
|
};
|
|
5018
5408
|
|
|
5019
|
-
var __defProp$
|
|
5020
|
-
var __getOwnPropSymbols$
|
|
5021
|
-
var __hasOwnProp$
|
|
5022
|
-
var __propIsEnum$
|
|
5023
|
-
var __defNormalProp$
|
|
5024
|
-
var __spreadValues$
|
|
5025
|
-
for (var prop in b || (b = {}))
|
|
5026
|
-
if (__hasOwnProp$h.call(b, prop))
|
|
5027
|
-
__defNormalProp$h(a, prop, b[prop]);
|
|
5028
|
-
if (__getOwnPropSymbols$h)
|
|
5029
|
-
for (var prop of __getOwnPropSymbols$h(b)) {
|
|
5030
|
-
if (__propIsEnum$h.call(b, prop))
|
|
5031
|
-
__defNormalProp$h(a, prop, b[prop]);
|
|
5032
|
-
}
|
|
5033
|
-
return a;
|
|
5034
|
-
};
|
|
5035
|
-
const Percent = ({
|
|
5036
|
-
rawValue,
|
|
5037
|
-
decimals,
|
|
5038
|
-
saturated,
|
|
5039
|
-
valueClassName,
|
|
5040
|
-
unitClassName,
|
|
5041
|
-
emptyProps
|
|
5042
|
-
}) => {
|
|
5043
|
-
if (isEmpty(rawValue)) {
|
|
5044
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$h({}, emptyProps));
|
|
5045
|
-
}
|
|
5046
|
-
const { value, unit } = formatPercent(rawValue, decimals, saturated);
|
|
5047
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, unit));
|
|
5048
|
-
};
|
|
5049
|
-
|
|
5050
|
-
var __defProp$g = Object.defineProperty;
|
|
5051
|
-
var __getOwnPropSymbols$g = Object.getOwnPropertySymbols;
|
|
5052
|
-
var __hasOwnProp$g = Object.prototype.hasOwnProperty;
|
|
5053
|
-
var __propIsEnum$g = Object.prototype.propertyIsEnumerable;
|
|
5054
|
-
var __defNormalProp$g = (obj, key, value) => key in obj ? __defProp$g(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
5055
|
-
var __spreadValues$g = (a, b) => {
|
|
5409
|
+
var __defProp$e = Object.defineProperty;
|
|
5410
|
+
var __getOwnPropSymbols$e = Object.getOwnPropertySymbols;
|
|
5411
|
+
var __hasOwnProp$e = Object.prototype.hasOwnProperty;
|
|
5412
|
+
var __propIsEnum$e = Object.prototype.propertyIsEnumerable;
|
|
5413
|
+
var __defNormalProp$e = (obj, key, value) => key in obj ? __defProp$e(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
5414
|
+
var __spreadValues$e = (a, b) => {
|
|
5056
5415
|
for (var prop in b || (b = {}))
|
|
5057
|
-
if (__hasOwnProp$
|
|
5058
|
-
__defNormalProp$
|
|
5059
|
-
if (__getOwnPropSymbols$
|
|
5060
|
-
for (var prop of __getOwnPropSymbols$
|
|
5061
|
-
if (__propIsEnum$
|
|
5062
|
-
__defNormalProp$
|
|
5416
|
+
if (__hasOwnProp$e.call(b, prop))
|
|
5417
|
+
__defNormalProp$e(a, prop, b[prop]);
|
|
5418
|
+
if (__getOwnPropSymbols$e)
|
|
5419
|
+
for (var prop of __getOwnPropSymbols$e(b)) {
|
|
5420
|
+
if (__propIsEnum$e.call(b, prop))
|
|
5421
|
+
__defNormalProp$e(a, prop, b[prop]);
|
|
5063
5422
|
}
|
|
5064
5423
|
return a;
|
|
5065
5424
|
};
|
|
5066
|
-
const Progress = (props) => /* @__PURE__ */ React__namespace.default.createElement(antd.Progress, __spreadValues$
|
|
5425
|
+
const Progress = (props) => /* @__PURE__ */ React__namespace.default.createElement(antd.Progress, __spreadValues$e({}, props));
|
|
5067
5426
|
|
|
5068
|
-
var __defProp$
|
|
5069
|
-
var __getOwnPropSymbols$
|
|
5070
|
-
var __hasOwnProp$
|
|
5071
|
-
var __propIsEnum$
|
|
5072
|
-
var __defNormalProp$
|
|
5427
|
+
var __defProp$d = Object.defineProperty;
|
|
5428
|
+
var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
|
|
5429
|
+
var __hasOwnProp$d = Object.prototype.hasOwnProperty;
|
|
5430
|
+
var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
|
|
5431
|
+
var __defNormalProp$d = (obj, key, value) => key in obj ? __defProp$d(obj, key, {
|
|
5073
5432
|
enumerable: true,
|
|
5074
5433
|
configurable: true,
|
|
5075
5434
|
writable: true,
|
|
5076
5435
|
value
|
|
5077
5436
|
}) : obj[key] = value;
|
|
5078
|
-
var __spreadValues$
|
|
5079
|
-
for (var prop in b || (b = {})) if (__hasOwnProp$
|
|
5080
|
-
if (__getOwnPropSymbols$
|
|
5081
|
-
if (__propIsEnum$
|
|
5437
|
+
var __spreadValues$d = (a, b) => {
|
|
5438
|
+
for (var prop in b || (b = {})) if (__hasOwnProp$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
|
|
5439
|
+
if (__getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(b)) {
|
|
5440
|
+
if (__propIsEnum$d.call(b, prop)) __defNormalProp$d(a, prop, b[prop]);
|
|
5082
5441
|
}
|
|
5083
5442
|
return a;
|
|
5084
5443
|
};
|
|
5085
5444
|
var __objRest$4 = (source, exclude) => {
|
|
5086
5445
|
var target = {};
|
|
5087
|
-
for (var prop in source) if (__hasOwnProp$
|
|
5088
|
-
if (source != null && __getOwnPropSymbols$
|
|
5089
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
5446
|
+
for (var prop in source) if (__hasOwnProp$d.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop];
|
|
5447
|
+
if (source != null && __getOwnPropSymbols$d) for (var prop of __getOwnPropSymbols$d(source)) {
|
|
5448
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$d.call(source, prop)) target[prop] = source[prop];
|
|
5090
5449
|
}
|
|
5091
5450
|
return target;
|
|
5092
5451
|
};
|
|
@@ -5112,7 +5471,7 @@
|
|
|
5112
5471
|
className: core.cx("radio-description", Typo.Label.l4_regular)
|
|
5113
5472
|
}, description));
|
|
5114
5473
|
}
|
|
5115
|
-
return /* @__PURE__ */React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */React__namespace.default.createElement(antd.Radio, __spreadValues$
|
|
5474
|
+
return /* @__PURE__ */React__namespace.default.createElement(React__namespace.default.Fragment, null, /* @__PURE__ */React__namespace.default.createElement(antd.Radio, __spreadValues$d({
|
|
5116
5475
|
className: core.cx(className, RadioStyle, compact && "compact"),
|
|
5117
5476
|
checked: checked || false,
|
|
5118
5477
|
"data-test": context.name ? `${context.name}-${String(props.value)}` : String(props.value)
|
|
@@ -5130,7 +5489,7 @@
|
|
|
5130
5489
|
disabled: props.disabled,
|
|
5131
5490
|
name: props.name
|
|
5132
5491
|
}
|
|
5133
|
-
}, /* @__PURE__ */React__namespace.default.createElement(antd.Radio.Group, __spreadValues$
|
|
5492
|
+
}, /* @__PURE__ */React__namespace.default.createElement(antd.Radio.Group, __spreadValues$d({
|
|
5134
5493
|
className: core.cx(className, RadioGroupStyle)
|
|
5135
5494
|
}, props), children ? children : null));
|
|
5136
5495
|
};
|
|
@@ -5186,36 +5545,36 @@
|
|
|
5186
5545
|
className: "ant-radio-button-input-label"
|
|
5187
5546
|
}, typeof children === "string" ? children : ""));
|
|
5188
5547
|
};
|
|
5189
|
-
return /* @__PURE__ */React__namespace.default.createElement(antd.Radio.Button, __spreadValues$
|
|
5548
|
+
return /* @__PURE__ */React__namespace.default.createElement(antd.Radio.Button, __spreadValues$d({
|
|
5190
5549
|
className: core.cx(className, RadioButtonStyle),
|
|
5191
5550
|
value: radioButtonValue
|
|
5192
5551
|
}, props), renderChildren());
|
|
5193
5552
|
};
|
|
5194
5553
|
|
|
5195
|
-
var __defProp$
|
|
5196
|
-
var __getOwnPropSymbols$
|
|
5197
|
-
var __hasOwnProp$
|
|
5198
|
-
var __propIsEnum$
|
|
5199
|
-
var __defNormalProp$
|
|
5200
|
-
var __spreadValues$
|
|
5554
|
+
var __defProp$c = Object.defineProperty;
|
|
5555
|
+
var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
|
|
5556
|
+
var __hasOwnProp$c = Object.prototype.hasOwnProperty;
|
|
5557
|
+
var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
|
|
5558
|
+
var __defNormalProp$c = (obj, key, value) => key in obj ? __defProp$c(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
5559
|
+
var __spreadValues$c = (a, b) => {
|
|
5201
5560
|
for (var prop in b || (b = {}))
|
|
5202
|
-
if (__hasOwnProp$
|
|
5203
|
-
__defNormalProp$
|
|
5204
|
-
if (__getOwnPropSymbols$
|
|
5205
|
-
for (var prop of __getOwnPropSymbols$
|
|
5206
|
-
if (__propIsEnum$
|
|
5207
|
-
__defNormalProp$
|
|
5561
|
+
if (__hasOwnProp$c.call(b, prop))
|
|
5562
|
+
__defNormalProp$c(a, prop, b[prop]);
|
|
5563
|
+
if (__getOwnPropSymbols$c)
|
|
5564
|
+
for (var prop of __getOwnPropSymbols$c(b)) {
|
|
5565
|
+
if (__propIsEnum$c.call(b, prop))
|
|
5566
|
+
__defNormalProp$c(a, prop, b[prop]);
|
|
5208
5567
|
}
|
|
5209
5568
|
return a;
|
|
5210
5569
|
};
|
|
5211
5570
|
var __objRest$3 = (source, exclude) => {
|
|
5212
5571
|
var target = {};
|
|
5213
5572
|
for (var prop in source)
|
|
5214
|
-
if (__hasOwnProp$
|
|
5573
|
+
if (__hasOwnProp$c.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
5215
5574
|
target[prop] = source[prop];
|
|
5216
|
-
if (source != null && __getOwnPropSymbols$
|
|
5217
|
-
for (var prop of __getOwnPropSymbols$
|
|
5218
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
|
5575
|
+
if (source != null && __getOwnPropSymbols$c)
|
|
5576
|
+
for (var prop of __getOwnPropSymbols$c(source)) {
|
|
5577
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$c.call(source, prop))
|
|
5219
5578
|
target[prop] = source[prop];
|
|
5220
5579
|
}
|
|
5221
5580
|
return target;
|
|
@@ -5225,7 +5584,7 @@
|
|
|
5225
5584
|
const onSearch = ___default.default.debounce(onChange, debounceWait);
|
|
5226
5585
|
return /* @__PURE__ */ React__namespace.default.createElement(
|
|
5227
5586
|
Input,
|
|
5228
|
-
__spreadValues$
|
|
5587
|
+
__spreadValues$c({
|
|
5229
5588
|
style: { width: 276 },
|
|
5230
5589
|
prefix: /* @__PURE__ */ React__namespace.default.createElement(icons.SearchOutlined, null),
|
|
5231
5590
|
onChange: (e) => onSearch(e.target.value)
|
|
@@ -5233,38 +5592,6 @@
|
|
|
5233
5592
|
);
|
|
5234
5593
|
};
|
|
5235
5594
|
|
|
5236
|
-
var __defProp$d = Object.defineProperty;
|
|
5237
|
-
var __getOwnPropSymbols$d = Object.getOwnPropertySymbols;
|
|
5238
|
-
var __hasOwnProp$d = Object.prototype.hasOwnProperty;
|
|
5239
|
-
var __propIsEnum$d = Object.prototype.propertyIsEnumerable;
|
|
5240
|
-
var __defNormalProp$d = (obj, key, value) => key in obj ? __defProp$d(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
5241
|
-
var __spreadValues$d = (a, b) => {
|
|
5242
|
-
for (var prop in b || (b = {}))
|
|
5243
|
-
if (__hasOwnProp$d.call(b, prop))
|
|
5244
|
-
__defNormalProp$d(a, prop, b[prop]);
|
|
5245
|
-
if (__getOwnPropSymbols$d)
|
|
5246
|
-
for (var prop of __getOwnPropSymbols$d(b)) {
|
|
5247
|
-
if (__propIsEnum$d.call(b, prop))
|
|
5248
|
-
__defNormalProp$d(a, prop, b[prop]);
|
|
5249
|
-
}
|
|
5250
|
-
return a;
|
|
5251
|
-
};
|
|
5252
|
-
const Second = ({
|
|
5253
|
-
rawValue,
|
|
5254
|
-
decimals,
|
|
5255
|
-
valueClassName,
|
|
5256
|
-
unitClassName,
|
|
5257
|
-
abbreviate,
|
|
5258
|
-
emptyProps
|
|
5259
|
-
}) => {
|
|
5260
|
-
const { t } = useParrotTranslation();
|
|
5261
|
-
if (isEmpty(rawValue)) {
|
|
5262
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$d({}, emptyProps));
|
|
5263
|
-
}
|
|
5264
|
-
const { value, unit } = formatSeconds(rawValue, decimals);
|
|
5265
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value, " "), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, t(`common.${abbreviate ? `${unit}_abbreviation` : unit}`)));
|
|
5266
|
-
};
|
|
5267
|
-
|
|
5268
5595
|
const inputStyle = "igz4le8";
|
|
5269
5596
|
const SimplePagination = props => {
|
|
5270
5597
|
const {
|
|
@@ -5341,36 +5668,6 @@
|
|
|
5341
5668
|
})));
|
|
5342
5669
|
};
|
|
5343
5670
|
|
|
5344
|
-
var __defProp$c = Object.defineProperty;
|
|
5345
|
-
var __getOwnPropSymbols$c = Object.getOwnPropertySymbols;
|
|
5346
|
-
var __hasOwnProp$c = Object.prototype.hasOwnProperty;
|
|
5347
|
-
var __propIsEnum$c = Object.prototype.propertyIsEnumerable;
|
|
5348
|
-
var __defNormalProp$c = (obj, key, value) => key in obj ? __defProp$c(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
5349
|
-
var __spreadValues$c = (a, b) => {
|
|
5350
|
-
for (var prop in b || (b = {}))
|
|
5351
|
-
if (__hasOwnProp$c.call(b, prop))
|
|
5352
|
-
__defNormalProp$c(a, prop, b[prop]);
|
|
5353
|
-
if (__getOwnPropSymbols$c)
|
|
5354
|
-
for (var prop of __getOwnPropSymbols$c(b)) {
|
|
5355
|
-
if (__propIsEnum$c.call(b, prop))
|
|
5356
|
-
__defNormalProp$c(a, prop, b[prop]);
|
|
5357
|
-
}
|
|
5358
|
-
return a;
|
|
5359
|
-
};
|
|
5360
|
-
const Speed = ({
|
|
5361
|
-
rawValue,
|
|
5362
|
-
decimals,
|
|
5363
|
-
valueClassName,
|
|
5364
|
-
unitClassName,
|
|
5365
|
-
emptyProps
|
|
5366
|
-
}) => {
|
|
5367
|
-
if (isEmpty(rawValue)) {
|
|
5368
|
-
return /* @__PURE__ */ React__namespace.default.createElement(Empty, __spreadValues$c({}, emptyProps));
|
|
5369
|
-
}
|
|
5370
|
-
const { value, unit } = formatSpeed(rawValue, decimals);
|
|
5371
|
-
return /* @__PURE__ */ React__namespace.default.createElement("span", null, /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("value", valueClassName) }, value), /* @__PURE__ */ React__namespace.default.createElement("span", { className: core.cx("unit", unitClassName) }, ` ${unit}`));
|
|
5372
|
-
};
|
|
5373
|
-
|
|
5374
5671
|
var __defProp$b = Object.defineProperty;
|
|
5375
5672
|
var __defProps$b = Object.defineProperties;
|
|
5376
5673
|
var __getOwnPropDescs$b = Object.getOwnPropertyDescriptors;
|
|
@@ -6076,7 +6373,7 @@
|
|
|
6076
6373
|
const triggerValidate = React.useCallback(
|
|
6077
6374
|
(currentValue) => {
|
|
6078
6375
|
var _a;
|
|
6079
|
-
const value = currentValue
|
|
6376
|
+
const value = currentValue != null ? currentValue : data[rowIndex][column.key];
|
|
6080
6377
|
const rowData = __spreadProps$7(__spreadValues$7({}, data[rowIndex]), { [column.key]: value });
|
|
6081
6378
|
const rowValidateRes = getRowValidateResult(rowData);
|
|
6082
6379
|
if (rowValidateRes) {
|
|
@@ -7027,7 +7324,11 @@
|
|
|
7027
7324
|
TruncatedTextWithTooltip,
|
|
7028
7325
|
Counting,
|
|
7029
7326
|
Breadcrumb,
|
|
7030
|
-
CircleProgress
|
|
7327
|
+
CircleProgress,
|
|
7328
|
+
ChartWithTooltip,
|
|
7329
|
+
ChartWithUnit,
|
|
7330
|
+
DonutChart,
|
|
7331
|
+
UnitWithChart
|
|
7031
7332
|
};
|
|
7032
7333
|
kit.option.isSelectOption = true;
|
|
7033
7334
|
kit.button.__ANT_BUTTON = true;
|