@oliasoft-open-source/react-ui-library 6.0.0-beta-2 → 6.0.0-beta-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/check-box/check-box.d.ts +1 -2
- package/dist/components/check-box/check-box.d.ts.map +1 -1
- package/dist/components/select/custom-select/custom-select.interface.d.ts +2 -6
- package/dist/components/select/custom-select/custom-select.interface.d.ts.map +1 -1
- package/dist/components/select/custom-select/layer/heading.d.ts +2 -2
- package/dist/components/select/custom-select/layer/heading.d.ts.map +1 -1
- package/dist/components/select/custom-select/layer/layer.d.ts.map +1 -1
- package/dist/components/select/custom-select/layer/option.d.ts +1 -1
- package/dist/components/select/custom-select/layer/option.d.ts.map +1 -1
- package/dist/components/select/custom-select/layer/section.d.ts +3 -4
- package/dist/components/select/custom-select/layer/section.d.ts.map +1 -1
- package/dist/components/select/custom-select/reducer.interface.d.ts +1 -1
- package/dist/components/select/custom-select/reducer.interface.d.ts.map +1 -1
- package/dist/components/table/row/row.d.ts +1 -1
- package/dist/components/table/row/row.d.ts.map +1 -1
- package/dist/index.js +763 -762
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -537,15 +537,15 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
537
537
|
maxWidth: i,
|
|
538
538
|
children: /* @__PURE__ */ z(W, { icon: n })
|
|
539
539
|
})
|
|
540
|
-
}), li = ({ noMargin: e = !1, dataix: t = 0, isInTable: n = !1, tabIndex: r = 0, checked: i = !1, indeterminate: a = !1, name: o, label: l = "", disabled: u = !1, small: d = !1, onChange: f, testId: m,
|
|
541
|
-
let
|
|
540
|
+
}), li = ({ noMargin: e = !1, dataix: t = 0, isInTable: n = !1, tabIndex: r = 0, checked: i = !1, indeterminate: a = !1, name: o, label: l = "", disabled: u = !1, small: d = !1, onChange: f, testId: m, helpText: h, onClickHelp: _, textTransform: v = kr.CAPITALIZE }) => {
|
|
541
|
+
let y = s(U), b = h || _, x = u || y, S = p(null);
|
|
542
542
|
return c(() => {
|
|
543
|
-
|
|
543
|
+
S.current && (S.current.indeterminate = a);
|
|
544
544
|
}, [a]), /* @__PURE__ */ B("div", {
|
|
545
|
-
className: g(Yr.checkbox, e && Yr.noMargin, n && Yr.isInTable,
|
|
545
|
+
className: g(Yr.checkbox, e && Yr.noMargin, n && Yr.isInTable, x && Yr.disabled, d && Yr.small, !l && Yr.noLabel),
|
|
546
546
|
"data-ix": t,
|
|
547
547
|
onClick: (e) => {
|
|
548
|
-
if (!
|
|
548
|
+
if (!x) {
|
|
549
549
|
let t = e.target;
|
|
550
550
|
t.name = o, t.checked = !i, f({
|
|
551
551
|
...e,
|
|
@@ -559,27 +559,27 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
559
559
|
"data-testid": m,
|
|
560
560
|
children: [
|
|
561
561
|
/* @__PURE__ */ z("input", {
|
|
562
|
-
ref:
|
|
562
|
+
ref: S,
|
|
563
563
|
type: "checkbox",
|
|
564
564
|
tabIndex: r,
|
|
565
565
|
checked: i,
|
|
566
566
|
name: o,
|
|
567
567
|
onChange: () => {},
|
|
568
|
-
disabled:
|
|
568
|
+
disabled: x,
|
|
569
569
|
"data-indeterminate": a
|
|
570
570
|
}),
|
|
571
571
|
/* @__PURE__ */ B("label", {
|
|
572
572
|
htmlFor: o,
|
|
573
|
-
style: { textTransform:
|
|
573
|
+
style: { textTransform: v },
|
|
574
574
|
children: [/* @__PURE__ */ z("span", {
|
|
575
575
|
className: Yr.checkmark,
|
|
576
576
|
children: /* @__PURE__ */ z(W, { icon: H.CHECK })
|
|
577
577
|
}), l]
|
|
578
578
|
}),
|
|
579
|
-
|
|
579
|
+
b && /* @__PURE__ */ z("div", {
|
|
580
580
|
className: Yr.helpIconEnabled,
|
|
581
|
-
onClick:
|
|
582
|
-
children: /* @__PURE__ */ z(ci, { text:
|
|
581
|
+
onClick: _,
|
|
582
|
+
children: /* @__PURE__ */ z(ci, { text: h })
|
|
583
583
|
})
|
|
584
584
|
]
|
|
585
585
|
});
|
|
@@ -2429,7 +2429,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2429
2429
|
className: wo.optionContent,
|
|
2430
2430
|
children: /* @__PURE__ */ B("span", {
|
|
2431
2431
|
className: wo.label,
|
|
2432
|
-
title: t,
|
|
2432
|
+
title: typeof t == "string" ? t : void 0,
|
|
2433
2433
|
children: [t, n && /* @__PURE__ */ z("span", {
|
|
2434
2434
|
className: wo.icon,
|
|
2435
2435
|
children: n
|
|
@@ -2488,22 +2488,21 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2488
2488
|
onSelectOption: (t) => a(t, o[e])
|
|
2489
2489
|
})
|
|
2490
2490
|
});
|
|
2491
|
-
}, Ko =
|
|
2492
|
-
|
|
2493
|
-
l != null &&
|
|
2491
|
+
}, Ko = ({ listRef: e, isMulti: t, sections: n, selectedOptions: r, onSelectOption: i, focusedOptionIndex: a, width: s, small: c, firstSelectedOptionIndex: l, closeLayer: u, testId: d }) => {
|
|
2492
|
+
let f = o((t) => {
|
|
2493
|
+
e.current = t, l != null && t !== null && t.element !== null && t.scrollToRow({
|
|
2494
2494
|
index: l,
|
|
2495
2495
|
align: "start"
|
|
2496
2496
|
});
|
|
2497
|
-
}, [l, e]);
|
|
2498
|
-
let f = s ? 24 : 30, p = n.length < 10 ? f * n.length : f * 10;
|
|
2497
|
+
}, [l, e]), p = c ? 24 : 30, m = n.length < 10 ? p * n.length : p * 10;
|
|
2499
2498
|
return /* @__PURE__ */ z("div", {
|
|
2500
2499
|
"data-testid": d,
|
|
2501
|
-
className: g(wo.layer,
|
|
2502
|
-
children: n.length ? /* @__PURE__ */ z(
|
|
2503
|
-
listRef:
|
|
2500
|
+
className: g(wo.layer, c && wo.small),
|
|
2501
|
+
children: n.length ? /* @__PURE__ */ z(Yn, {
|
|
2502
|
+
listRef: f,
|
|
2504
2503
|
rowComponent: Go,
|
|
2505
2504
|
rowCount: n.length,
|
|
2506
|
-
rowHeight:
|
|
2505
|
+
rowHeight: p,
|
|
2507
2506
|
rowProps: {
|
|
2508
2507
|
closeLayer: u,
|
|
2509
2508
|
focusedOptionIndex: a,
|
|
@@ -2513,12 +2512,12 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2513
2512
|
selectedOptions: r
|
|
2514
2513
|
},
|
|
2515
2514
|
style: {
|
|
2516
|
-
height:
|
|
2517
|
-
width:
|
|
2515
|
+
height: m,
|
|
2516
|
+
width: s
|
|
2518
2517
|
}
|
|
2519
2518
|
}) : /* @__PURE__ */ z("ul", { children: /* @__PURE__ */ z("li", { children: /* @__PURE__ */ z("div", {
|
|
2520
2519
|
className: wo.message,
|
|
2521
|
-
style: { width:
|
|
2520
|
+
style: { width: s },
|
|
2522
2521
|
children: "No matches"
|
|
2523
2522
|
}) }) })
|
|
2524
2523
|
});
|
|
@@ -2552,7 +2551,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2552
2551
|
groupOrderMiddle: "_groupOrderMiddle_7uwhv_298",
|
|
2553
2552
|
groupOrderLast: "_groupOrderLast_7uwhv_302",
|
|
2554
2553
|
detailedLabel: "_detailedLabel_7uwhv_307"
|
|
2555
|
-
},
|
|
2554
|
+
}, qo = ({ selectedOptions: e, small: t, width: n, testId: r }) => {
|
|
2556
2555
|
let i = xo(), [a, o] = m([]), [s, l] = m([]);
|
|
2557
2556
|
return c(() => {
|
|
2558
2557
|
let r = [], a = [], s = 0;
|
|
@@ -2581,12 +2580,12 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2581
2580
|
})
|
|
2582
2581
|
})]
|
|
2583
2582
|
});
|
|
2584
|
-
},
|
|
2583
|
+
}, Jo = ({ selectedOptions: e, searchable: t = !1, searchValue: n, onChange: r = pn, inputRef: i, error: a, placeholder: o = "Select...", small: s, testId: c }) => {
|
|
2585
2584
|
let l = p(null), u = Array.isArray(e), d = u ? e.length > 0 : !!e, f = n ? n.length + 1 : 1;
|
|
2586
2585
|
return /* @__PURE__ */ B("div", {
|
|
2587
2586
|
className: Y.triggerInputContainer,
|
|
2588
2587
|
ref: l,
|
|
2589
|
-
children: [d ? u ? /* @__PURE__ */ z(
|
|
2588
|
+
children: [d ? u ? /* @__PURE__ */ z(qo, {
|
|
2590
2589
|
selectedOptions: e,
|
|
2591
2590
|
small: s,
|
|
2592
2591
|
width: (() => {
|
|
@@ -2612,7 +2611,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2612
2611
|
"data-testid": c && `${c}-input`
|
|
2613
2612
|
}) : null]
|
|
2614
2613
|
});
|
|
2615
|
-
},
|
|
2614
|
+
}, Yo = ({ selectedOptions: e, searchValue: t, searchable: n, clearable: r, onClickTrigger: i, element: a, error: o, warning: s, tooltip: c, small: l, isInTable: u, disabled: d, onChangeSearch: f, onClickClear: p, tabIndex: m, isOpen: h, triggerRef: _, clearAllIsFocused: v, onFocus: y, onBlur: b, groupOrder: x, maxTooltipWidth: S, placeholder: C, right: w, testId: T }) => {
|
|
2616
2615
|
var E;
|
|
2617
2616
|
let [D, O] = bo(), k = Array.isArray(e) ? e.length > 0 && ((E = e[0]) == null ? void 0 : E.value) : e == null ? void 0 : e.value, A = r && k, j = (() => {
|
|
2618
2617
|
if (x) switch (x) {
|
|
@@ -2644,7 +2643,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2644
2643
|
"data-error": o || null,
|
|
2645
2644
|
"data-warning": s || null,
|
|
2646
2645
|
"data-testid": T,
|
|
2647
|
-
children: [/* @__PURE__ */ z(
|
|
2646
|
+
children: [/* @__PURE__ */ z(Jo, {
|
|
2648
2647
|
selectedOptions: M,
|
|
2649
2648
|
placeholder: C,
|
|
2650
2649
|
searchable: n,
|
|
@@ -2677,28 +2676,28 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2677
2676
|
maxWidth: S,
|
|
2678
2677
|
children: N
|
|
2679
2678
|
}) });
|
|
2680
|
-
},
|
|
2679
|
+
}, Xo = /* @__PURE__ */ function(e) {
|
|
2681
2680
|
return e.SET_VISIBLE_OPTIONS = "SET_VISIBLE_OPTIONS", e.RESET_LAYER_FOCUS = "RESET_LAYER_FOCUS", e.CLEAR_SEARCH = "CLEAR_SEARCH", e.ON_CHANGE_SEARCH = "ON_CHANGE_SEARCH", e.FOCUS_TRIGGER_INPUTS = "FOCUS_TRIGGER_INPUTS", e.BLUR_TRIGGER_INPUTS = "BLUR_TRIGGER_INPUTS", e.FOCUS_LAYER_OPTIONS = "FOCUS_LAYER_OPTIONS", e.OPEN_LAYER = "OPEN_LAYER", e.CLOSE_LAYER = "CLOSE_LAYER", e;
|
|
2682
|
-
}({}),
|
|
2681
|
+
}({}), Zo = {
|
|
2683
2682
|
options: ["none", "clearAll"],
|
|
2684
2683
|
currentIndex: 0,
|
|
2685
2684
|
currentOption: !1,
|
|
2686
2685
|
clearAll: !1
|
|
2687
|
-
},
|
|
2688
|
-
let n = ["none", ...e.map((e, t) => e.type === Ci.HEADING ? null : t).filter((e) => e !== null)], r =
|
|
2686
|
+
}, Qo = (e) => e === null ? 0 : e + 1, $o = (e, t) => {
|
|
2687
|
+
let n = ["none", ...e.map((e, t) => e.type === Ci.HEADING ? null : t).filter((e) => e !== null)], r = Qo(t);
|
|
2689
2688
|
return {
|
|
2690
2689
|
options: n,
|
|
2691
2690
|
currentIndex: r,
|
|
2692
2691
|
current: n[r]
|
|
2693
2692
|
};
|
|
2694
|
-
},
|
|
2693
|
+
}, es = (e, t) => {
|
|
2695
2694
|
let n = e === "up" ? -1 : 1, r = t.currentIndex + n, i = (r < 0 ? t.options.length - 1 : r) % t.options.length, a = t.options[i];
|
|
2696
2695
|
return {
|
|
2697
2696
|
...t,
|
|
2698
2697
|
currentIndex: i,
|
|
2699
2698
|
current: a
|
|
2700
2699
|
};
|
|
2701
|
-
},
|
|
2700
|
+
}, ts = (e, t, n) => {
|
|
2702
2701
|
let r = e === "left" ? -1 : 1, i = t && t.length ? [
|
|
2703
2702
|
"none",
|
|
2704
2703
|
...Array.from({ length: t.length }, (e, t) => t),
|
|
@@ -2710,26 +2709,26 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2710
2709
|
currentOption: s,
|
|
2711
2710
|
clearAll: s === "clearAll"
|
|
2712
2711
|
};
|
|
2713
|
-
},
|
|
2712
|
+
}, ns = () => Zo, rs = (e) => ({
|
|
2714
2713
|
...e,
|
|
2715
2714
|
currentIndex: 0,
|
|
2716
2715
|
current: "none"
|
|
2717
|
-
}),
|
|
2716
|
+
}), is = (e, t) => {
|
|
2718
2717
|
switch (t.type) {
|
|
2719
|
-
case
|
|
2718
|
+
case Xo.SET_VISIBLE_OPTIONS: return {
|
|
2720
2719
|
...e,
|
|
2721
2720
|
visibleOptions: t.options || []
|
|
2722
2721
|
};
|
|
2723
|
-
case
|
|
2722
|
+
case Xo.RESET_LAYER_FOCUS: return {
|
|
2724
2723
|
...e,
|
|
2725
|
-
layerFocus:
|
|
2724
|
+
layerFocus: $o(t.options || [], t.firstSelectedOptionIndex || 0)
|
|
2726
2725
|
};
|
|
2727
|
-
case
|
|
2726
|
+
case Xo.CLEAR_SEARCH: return {
|
|
2728
2727
|
...e,
|
|
2729
2728
|
visibleOptions: t.options || [],
|
|
2730
2729
|
searchValue: ""
|
|
2731
2730
|
};
|
|
2732
|
-
case
|
|
2731
|
+
case Xo.ON_CHANGE_SEARCH: {
|
|
2733
2732
|
let n = [...(t.options || []).filter((e) => (String(e.label) + (e.details ? String(e.details) : "")).toLowerCase().includes(String(t.value || "").toLowerCase()))];
|
|
2734
2733
|
return t.createAble && t.value && t.value !== "" && n.push({
|
|
2735
2734
|
label: `Create "${t.value}"`,
|
|
@@ -2739,48 +2738,48 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2739
2738
|
...e,
|
|
2740
2739
|
searchValue: t.value,
|
|
2741
2740
|
visibleOptions: n,
|
|
2742
|
-
layerFocus:
|
|
2741
|
+
layerFocus: rs(e.layerFocus)
|
|
2743
2742
|
};
|
|
2744
2743
|
}
|
|
2745
|
-
case
|
|
2744
|
+
case Xo.FOCUS_TRIGGER_INPUTS: return {
|
|
2746
2745
|
...e,
|
|
2747
|
-
triggerFocus:
|
|
2748
|
-
layerFocus:
|
|
2746
|
+
triggerFocus: ts(t.direction || "right", t.selectedOptions || [], e.triggerFocus),
|
|
2747
|
+
layerFocus: rs(e.layerFocus)
|
|
2749
2748
|
};
|
|
2750
|
-
case
|
|
2749
|
+
case Xo.BLUR_TRIGGER_INPUTS: return {
|
|
2751
2750
|
...e,
|
|
2752
|
-
triggerFocus:
|
|
2751
|
+
triggerFocus: ns()
|
|
2753
2752
|
};
|
|
2754
|
-
case
|
|
2753
|
+
case Xo.FOCUS_LAYER_OPTIONS: return t.nextLayerFocus ? {
|
|
2755
2754
|
...e,
|
|
2756
2755
|
layerFocus: t.nextLayerFocus,
|
|
2757
|
-
triggerFocus:
|
|
2756
|
+
triggerFocus: ns()
|
|
2758
2757
|
} : e;
|
|
2759
|
-
case
|
|
2758
|
+
case Xo.OPEN_LAYER: return {
|
|
2760
2759
|
...e,
|
|
2761
2760
|
isLayerOpen: !0
|
|
2762
2761
|
};
|
|
2763
|
-
case
|
|
2762
|
+
case Xo.CLOSE_LAYER: return {
|
|
2764
2763
|
...e,
|
|
2765
2764
|
isLayerOpen: !1
|
|
2766
2765
|
};
|
|
2767
2766
|
default: return e;
|
|
2768
2767
|
}
|
|
2769
|
-
},
|
|
2768
|
+
}, as = {
|
|
2770
2769
|
possiblePlacements: ["bottom-start", "top-start"],
|
|
2771
2770
|
placement: "bottom-start"
|
|
2772
|
-
},
|
|
2771
|
+
}, os = /* @__PURE__ */ function(e) {
|
|
2773
2772
|
return e.CLOSE_LAYER = "CLOSE_LAYER", e.OPEN_LAYER = "OPEN_LAYER", e.SET_VISIBLE_OPTIONS = "SET_VISIBLE_OPTIONS", e.CLEAR_SEARCH = "CLEAR_SEARCH", e.RESET_LAYER_FOCUS = "RESET_LAYER_FOCUS", e.FOCUS_LAYER_OPTIONS = "FOCUS_LAYER_OPTIONS", e.BLUR_TRIGGER_INPUTS = "BLUR_TRIGGER_INPUTS", e.FOCUS_TRIGGER_INPUTS = "FOCUS_TRIGGER_INPUTS", e.ON_CHANGE_SEARCH = "ON_CHANGE_SEARCH", e;
|
|
2774
|
-
}({}),
|
|
2773
|
+
}({}), ss = /* @__PURE__ */ function(e) {
|
|
2775
2774
|
return e.RIGHT = "ArrowRight", e.LEFT = "ArrowLeft", e.UP = "ArrowUp", e.DOWN = "ArrowDown", e.ENTER = "Enter", e.ESC = "Escape", e.TAB = "Tab", e;
|
|
2776
|
-
}({}),
|
|
2775
|
+
}({}), cs = ({ state: e, dispatch: t, options: n, setTriggerFocus: r, disabled: i, disabledContext: a, onCreate: s, onChange: l, selectedOptions: u, width: d, small: f, isFontLoaded: m, placeholder: h, firstSelectedOptionIndex: g, createAble: _, listRef: v, autoLayerWidth: y }) => {
|
|
2777
2776
|
var b;
|
|
2778
2777
|
let x = () => {
|
|
2779
|
-
e.isLayerOpen && t({ type:
|
|
2780
|
-
}, S = () => t({ type:
|
|
2778
|
+
e.isLayerOpen && t({ type: os.CLOSE_LAYER }), r();
|
|
2779
|
+
}, S = () => t({ type: os.OPEN_LAYER }), C = p(!0);
|
|
2781
2780
|
c(() => {
|
|
2782
2781
|
C.current ? C.current = !1 : t({
|
|
2783
|
-
type:
|
|
2782
|
+
type: os.SET_VISIBLE_OPTIONS,
|
|
2784
2783
|
options: n
|
|
2785
2784
|
});
|
|
2786
2785
|
}, [n]);
|
|
@@ -2794,7 +2793,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2794
2793
|
} else l && l(e, o);
|
|
2795
2794
|
}
|
|
2796
2795
|
t({
|
|
2797
|
-
type:
|
|
2796
|
+
type: os.CLEAR_SEARCH,
|
|
2798
2797
|
options: n
|
|
2799
2798
|
}), r();
|
|
2800
2799
|
}
|
|
@@ -2802,7 +2801,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2802
2801
|
isOpen: (b = e == null ? void 0 : e.isLayerOpen) == null ? !1 : b,
|
|
2803
2802
|
matchReferenceWidth: !0,
|
|
2804
2803
|
overflowContainer: !0,
|
|
2805
|
-
...
|
|
2804
|
+
...as,
|
|
2806
2805
|
onOutsideClick: x
|
|
2807
2806
|
}), j = () => {
|
|
2808
2807
|
if (!(i || a)) {
|
|
@@ -2811,7 +2810,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2811
2810
|
return;
|
|
2812
2811
|
}
|
|
2813
2812
|
r(), t({
|
|
2814
|
-
type:
|
|
2813
|
+
type: os.RESET_LAYER_FOCUS,
|
|
2815
2814
|
options: n,
|
|
2816
2815
|
firstSelectedOptionIndex: g
|
|
2817
2816
|
}), S();
|
|
@@ -2819,7 +2818,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2819
2818
|
}, M = p(!0);
|
|
2820
2819
|
c(() => {
|
|
2821
2820
|
M.current ? M.current = !1 : e.isLayerOpen || t({
|
|
2822
|
-
type:
|
|
2821
|
+
type: os.CLEAR_SEARCH,
|
|
2823
2822
|
options: n
|
|
2824
2823
|
});
|
|
2825
2824
|
}, [e.isLayerOpen]);
|
|
@@ -2830,23 +2829,23 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2830
2829
|
let t = u instanceof Array ? [] : { value: null };
|
|
2831
2830
|
l && l(e, t);
|
|
2832
2831
|
}, F = (e) => t({
|
|
2833
|
-
type:
|
|
2832
|
+
type: os.ON_CHANGE_SEARCH,
|
|
2834
2833
|
options: n,
|
|
2835
2834
|
value: e,
|
|
2836
2835
|
createAble: _
|
|
2837
2836
|
}), ee = () => {
|
|
2838
|
-
S(), t({ type:
|
|
2837
|
+
S(), t({ type: os.BLUR_TRIGGER_INPUTS });
|
|
2839
2838
|
}, I = (e) => {
|
|
2840
2839
|
v.current && Number.isInteger(e) && v.current.scrollToRow({ index: e });
|
|
2841
2840
|
}, te = (n) => {
|
|
2842
|
-
let r =
|
|
2841
|
+
let r = es(n, e.layerFocus);
|
|
2843
2842
|
t({
|
|
2844
|
-
type:
|
|
2843
|
+
type: os.FOCUS_LAYER_OPTIONS,
|
|
2845
2844
|
nextLayerFocus: r
|
|
2846
2845
|
}), I(r.current);
|
|
2847
2846
|
}, ne = (e) => {
|
|
2848
2847
|
t({
|
|
2849
|
-
type:
|
|
2848
|
+
type: os.FOCUS_TRIGGER_INPUTS,
|
|
2850
2849
|
ICustomSelectDirection: e,
|
|
2851
2850
|
selectedOptions: u
|
|
2852
2851
|
});
|
|
@@ -2860,26 +2859,26 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2860
2859
|
getTriggerWidth: T,
|
|
2861
2860
|
onKeyEvent: (n, r) => {
|
|
2862
2861
|
switch (n) {
|
|
2863
|
-
case
|
|
2862
|
+
case ss.UP:
|
|
2864
2863
|
te("up");
|
|
2865
2864
|
break;
|
|
2866
|
-
case
|
|
2865
|
+
case ss.DOWN:
|
|
2867
2866
|
e.isLayerOpen ? te("down") : ee();
|
|
2868
2867
|
break;
|
|
2869
|
-
case
|
|
2868
|
+
case ss.LEFT:
|
|
2870
2869
|
ne("left");
|
|
2871
2870
|
break;
|
|
2872
|
-
case
|
|
2871
|
+
case ss.RIGHT:
|
|
2873
2872
|
ne("right");
|
|
2874
2873
|
break;
|
|
2875
|
-
case
|
|
2874
|
+
case ss.ENTER:
|
|
2876
2875
|
se ? re(r) : ie ? ae(r) : oe(r);
|
|
2877
2876
|
break;
|
|
2878
|
-
case
|
|
2877
|
+
case ss.ESC:
|
|
2879
2878
|
x();
|
|
2880
2879
|
break;
|
|
2881
|
-
case
|
|
2882
|
-
t({ type:
|
|
2880
|
+
case ss.TAB:
|
|
2881
|
+
t({ type: os.CLOSE_LAYER });
|
|
2883
2882
|
break;
|
|
2884
2883
|
default:
|
|
2885
2884
|
}
|
|
@@ -2897,17 +2896,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2897
2896
|
getLayerWidth: E,
|
|
2898
2897
|
triggerBounds: A
|
|
2899
2898
|
};
|
|
2900
|
-
},
|
|
2901
|
-
let { multi: t = !1, disabled: n = !1, error: r = null, warning: i = null, tooltip: a = null, options: o, selectedOptions: c, onCreate: l = null, placeholder: u = "", small: d = !1, tabIndex: m = 0, onFocus: h = () => {}, onBlur: g = () => {}, searchable: _ = !0, clearable: v = !1, maxTooltipWidth: y, closeOnOptionActionClick: b, isInTable: x = !1, groupOrder: S, firstSelectedOptionIndex: C = 0, right: w = !1, testId: T = void 0 } = e, E = s(U), D = l !== null, O = p(null), k = p(null), [A, j] = bo(), M = xo(), [N, P] = f(
|
|
2899
|
+
}, ls = (e) => {
|
|
2900
|
+
let { multi: t = !1, disabled: n = !1, error: r = null, warning: i = null, tooltip: a = null, options: o, selectedOptions: c, onCreate: l = null, placeholder: u = "", small: d = !1, tabIndex: m = 0, onFocus: h = () => {}, onBlur: g = () => {}, searchable: _ = !0, clearable: v = !1, maxTooltipWidth: y, closeOnOptionActionClick: b, isInTable: x = !1, groupOrder: S, firstSelectedOptionIndex: C = 0, right: w = !1, testId: T = void 0 } = e, E = s(U), D = l !== null, O = p(null), k = p(null), [A, j] = bo(), M = xo(), [N, P] = f(is, {
|
|
2902
2901
|
options: o,
|
|
2903
2902
|
firstSelectedOptionIndex: C
|
|
2904
2903
|
}, ({ options: e }) => ({
|
|
2905
2904
|
searchValue: "",
|
|
2906
2905
|
visibleOptions: e,
|
|
2907
|
-
layerFocus:
|
|
2908
|
-
triggerFocus:
|
|
2906
|
+
layerFocus: $o(e, C == null ? 0 : C),
|
|
2907
|
+
triggerFocus: Zo,
|
|
2909
2908
|
isLayerOpen: !1
|
|
2910
|
-
})), { getTriggerWidth: F, onKeyEvent: ee, clearAllIsFocused: I, triggerProps: te, onClickTrigger: ne, onChangeSearch: re, onClickDeselectOption: ie, onClickClearAll: ae, renderLayer: oe, layerProps: se, closeLayer: ce, onSelectOption: L, getLayerWidth: le, triggerBounds: ue } =
|
|
2909
|
+
})), { getTriggerWidth: F, onKeyEvent: ee, clearAllIsFocused: I, triggerProps: te, onClickTrigger: ne, onChangeSearch: re, onClickDeselectOption: ie, onClickClearAll: ae, renderLayer: oe, layerProps: se, closeLayer: ce, onSelectOption: L, getLayerWidth: le, triggerBounds: ue } = cs({
|
|
2911
2910
|
...e,
|
|
2912
2911
|
state: N,
|
|
2913
2912
|
dispatch: P,
|
|
@@ -2920,9 +2919,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2920
2919
|
return /* @__PURE__ */ B("div", {
|
|
2921
2920
|
style: { width: F() },
|
|
2922
2921
|
onKeyDown: (e) => {
|
|
2923
|
-
Object.values(
|
|
2922
|
+
Object.values(ss).includes(e.key) && ee(e.key, e);
|
|
2924
2923
|
},
|
|
2925
|
-
children: [/* @__PURE__ */ z(
|
|
2924
|
+
children: [/* @__PURE__ */ z(Yo, {
|
|
2926
2925
|
selectedOptions: c,
|
|
2927
2926
|
searchValue: N.searchValue,
|
|
2928
2927
|
isOpen: N.isLayerOpen,
|
|
@@ -2962,7 +2961,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2962
2961
|
...se,
|
|
2963
2962
|
ref: fe,
|
|
2964
2963
|
className: wo.layerContainer,
|
|
2965
|
-
children: /* @__PURE__ */ z(
|
|
2964
|
+
children: /* @__PURE__ */ z(Ko, {
|
|
2966
2965
|
listRef: O,
|
|
2967
2966
|
isMulti: t,
|
|
2968
2967
|
sections: N.visibleOptions,
|
|
@@ -2982,36 +2981,36 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
2982
2981
|
})) })
|
|
2983
2982
|
})]
|
|
2984
2983
|
});
|
|
2985
|
-
},
|
|
2984
|
+
}, us = (e) => /* @__PURE__ */ z(Xr, { children: /* @__PURE__ */ z(ls, { ...e }) }), ds = (e) => e == null || e === "", fs = (e) => /^-?\d+(\.\d+)?$/.test(e.trim()), ps = (e) => e instanceof Array, ms = (e, t) => t && Array.isArray(e) ? e.map((e) => typeof e == "string" || typeof e == "number" ? {
|
|
2986
2985
|
label: e,
|
|
2987
2986
|
value: e
|
|
2988
|
-
} : e) : e,
|
|
2987
|
+
} : e) : e, hs = (e, t) => {
|
|
2989
2988
|
if (typeof t == "object" && t && t.hasOwnProperty("label") && t.hasOwnProperty("value")) return t;
|
|
2990
2989
|
{
|
|
2991
2990
|
let n = typeof t == "object" && t && t.hasOwnProperty("value") ? t.value : t;
|
|
2992
|
-
return (Array.isArray(e) ? e.filter((e) => e.type !== Ci.HEADING).find((e) => e.value == n) : void 0) || (
|
|
2991
|
+
return (Array.isArray(e) ? e.filter((e) => e.type !== Ci.HEADING).find((e) => e.value == n) : void 0) || (ds(n) ? void 0 : {
|
|
2993
2992
|
value: n,
|
|
2994
2993
|
label: n
|
|
2995
2994
|
});
|
|
2996
2995
|
}
|
|
2997
|
-
},
|
|
2996
|
+
}, gs = (e, t) => ps(t) ? t.map((t) => hs(e, t)).filter((e) => e !== void 0) : t === null ? void 0 : hs(e, t), _s = (e) => Array.isArray(e) && e.some((e) => typeof e == "string" || typeof e == "number"), vs = (e, t) => {
|
|
2998
2997
|
let n = t instanceof Array ? t.length ? t[0] : null : t, r = n == null ? null : typeof n == "string" || typeof n == "number" || typeof n == "boolean" ? n : n.value, i = e.filter((e) => e.type !== Ci.HEADING).findIndex((e) => typeof e == "string" || typeof e == "number" ? e == r : e.value == r);
|
|
2999
2998
|
return i === -1 ? null : i;
|
|
3000
|
-
},
|
|
3001
|
-
let n =
|
|
2999
|
+
}, ys = (e, t) => {
|
|
3000
|
+
let n = ps(t) ? t : ds(t) ? [] : [t];
|
|
3002
3001
|
return !(n != null && n.every((t) => (e == null ? void 0 : e.find((e) => (e == null ? void 0 : e.value) === (t == null ? void 0 : t.value))) !== void 0));
|
|
3003
|
-
},
|
|
3004
|
-
let i = Array.isArray(e) ? e : [], a =
|
|
3002
|
+
}, bs = (e, t, n, r) => {
|
|
3003
|
+
let i = Array.isArray(e) ? e : [], a = ps(t), o = _s(i), s = ms(i, o), c = n ? vs(i, t) : null, l = gs(s, t);
|
|
3005
3004
|
return {
|
|
3006
3005
|
options: s,
|
|
3007
3006
|
selectedOptions: l,
|
|
3008
3007
|
multi: a,
|
|
3009
3008
|
simpleInputs: o,
|
|
3010
3009
|
firstSelectedOptionIndex: c,
|
|
3011
|
-
hasNonExistentValue: r && l !== void 0 ?
|
|
3010
|
+
hasNonExistentValue: r && l !== void 0 ? ys(s, l) : !1
|
|
3012
3011
|
};
|
|
3013
|
-
},
|
|
3014
|
-
let { name: t = "", options: n = [], value: r, native: i = !1, onChange: a = pn, deprecatedEventHandler: o = !1, autoScroll: s = !0, warning: c, error: l, checkNonExistentValues: u = !0, closeOnOptionActionClick: d = !0, testId: f, disabled: p } = e, { multi: m, simpleInputs: h, options: g, selectedOptions: _, firstSelectedOptionIndex: v, hasNonExistentValue: y } =
|
|
3012
|
+
}, xs = (e) => {
|
|
3013
|
+
let { name: t = "", options: n = [], value: r, native: i = !1, onChange: a = pn, deprecatedEventHandler: o = !1, autoScroll: s = !0, warning: c, error: l, checkNonExistentValues: u = !0, closeOnOptionActionClick: d = !0, testId: f, disabled: p } = e, { multi: m, simpleInputs: h, options: g, selectedOptions: _, firstSelectedOptionIndex: v, hasNonExistentValue: y } = bs(n, r, !i && s === !0, u), b = !m, x = i && b;
|
|
3015
3014
|
i && !b && console.warn("Native select does not support provided props (see stories)");
|
|
3016
3015
|
let S = "Value no longer available for re-selection", C = y && !p ? c ? /* @__PURE__ */ B("div", { children: [/* @__PURE__ */ z("div", { children: S }), /* @__PURE__ */ z("div", { children: c })] }) : S : c, w = y && l && !p ? /* @__PURE__ */ B("div", { children: [/* @__PURE__ */ z("div", { children: S }), /* @__PURE__ */ z("div", { children: l })] }) : l, T = (e, n) => {
|
|
3017
3016
|
if (o) {
|
|
@@ -3039,7 +3038,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3039
3038
|
warning: C,
|
|
3040
3039
|
error: w,
|
|
3041
3040
|
testId: f
|
|
3042
|
-
}) : /* @__PURE__ */ z(
|
|
3041
|
+
}) : /* @__PURE__ */ z(us, {
|
|
3043
3042
|
...e,
|
|
3044
3043
|
options: g,
|
|
3045
3044
|
selectedOptions: _,
|
|
@@ -3051,11 +3050,11 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3051
3050
|
testId: f,
|
|
3052
3051
|
closeOnOptionActionClick: d
|
|
3053
3052
|
});
|
|
3054
|
-
},
|
|
3053
|
+
}, Ss = (e, t) => t || e && e.reduce((e, t) => t != null && t.selected ? Number(t == null ? void 0 : t.value) : e, 10) || 10, Cs = (e, t) => {
|
|
3055
3054
|
if (!t || !e) return 10;
|
|
3056
3055
|
let { options: n, value: r } = t, i = Number(r);
|
|
3057
|
-
return i === 0 ? 1 : Math.ceil(e /
|
|
3058
|
-
},
|
|
3056
|
+
return i === 0 ? 1 : Math.ceil(e / Ss(n, i));
|
|
3057
|
+
}, ws = (e, t, n = "Selected page must be a positive whole number between 1 and") => {
|
|
3059
3058
|
let r = `${n} ${t}`, i = {
|
|
3060
3059
|
valid: !0,
|
|
3061
3060
|
error: null
|
|
@@ -3064,40 +3063,40 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3064
3063
|
valid: !1,
|
|
3065
3064
|
error: r
|
|
3066
3065
|
} : i;
|
|
3067
|
-
},
|
|
3066
|
+
}, Ts = { paginationContainer: "_paginationContainer_1tmz4_1" }, Es = {
|
|
3068
3067
|
addon: "_addon_b4w53_1",
|
|
3069
3068
|
small: "_small_b4w53_12",
|
|
3070
3069
|
groupOrderFirst: "_groupOrderFirst_b4w53_16",
|
|
3071
3070
|
groupOrderMiddle: "_groupOrderMiddle_b4w53_17",
|
|
3072
3071
|
groupOrderLast: "_groupOrderLast_b4w53_21"
|
|
3073
|
-
},
|
|
3072
|
+
}, Ds = ({ children: e, groupOrder: t, small: n = !1 }) => {
|
|
3074
3073
|
let r = (() => {
|
|
3075
3074
|
if (t) switch (t) {
|
|
3076
|
-
case V.FIRST: return
|
|
3077
|
-
case V.LAST: return
|
|
3078
|
-
default: return
|
|
3075
|
+
case V.FIRST: return Es.groupOrderFirst;
|
|
3076
|
+
case V.LAST: return Es.groupOrderLast;
|
|
3077
|
+
default: return Es.groupOrderMiddle;
|
|
3079
3078
|
}
|
|
3080
3079
|
return "";
|
|
3081
3080
|
})();
|
|
3082
3081
|
return /* @__PURE__ */ z("span", {
|
|
3083
|
-
className: g(
|
|
3082
|
+
className: g(Es.addon, r, n ? Es.small : ""),
|
|
3084
3083
|
children: e
|
|
3085
3084
|
});
|
|
3086
|
-
},
|
|
3087
|
-
let { rowCount: t, selectedPage: n, small: r, onSelectPage: i, rowsPerPage: a, errorMessageTemplate: o, testIds: s } = e, l = Number(a == null ? void 0 : a.value) === 0, u =
|
|
3085
|
+
}, Os = ({ pagination: e }) => {
|
|
3086
|
+
let { rowCount: t, selectedPage: n, small: r, onSelectPage: i, rowsPerPage: a, errorMessageTemplate: o, testIds: s } = e, l = Number(a == null ? void 0 : a.value) === 0, u = Cs(t, a), [d, f] = m(String(n));
|
|
3088
3087
|
c(() => {
|
|
3089
3088
|
f(String(n));
|
|
3090
3089
|
}, [n]);
|
|
3091
|
-
let { error: p } =
|
|
3092
|
-
let { valid: t } =
|
|
3090
|
+
let { error: p } = ws(d, u, o), h = (e) => {
|
|
3091
|
+
let { valid: t } = ws(e, u, o);
|
|
3093
3092
|
f(e), t && e !== "" && i && i(Number(e));
|
|
3094
3093
|
};
|
|
3095
3094
|
return /* @__PURE__ */ B("div", {
|
|
3096
|
-
className:
|
|
3095
|
+
className: Ts.paginationContainer,
|
|
3097
3096
|
children: [
|
|
3098
3097
|
a && /* @__PURE__ */ z("div", {
|
|
3099
3098
|
style: { flexShrink: 0 },
|
|
3100
|
-
children: /* @__PURE__ */ z(
|
|
3099
|
+
children: /* @__PURE__ */ z(xs, {
|
|
3101
3100
|
onChange: (e) => {
|
|
3102
3101
|
a.onChange && a.onChange(e), h("1");
|
|
3103
3102
|
},
|
|
@@ -3135,7 +3134,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3135
3134
|
width: "50px",
|
|
3136
3135
|
disabled: l || u <= 1,
|
|
3137
3136
|
error: p
|
|
3138
|
-
}), /* @__PURE__ */ B(
|
|
3137
|
+
}), /* @__PURE__ */ B(Ds, { children: ["of ", u] })]
|
|
3139
3138
|
}),
|
|
3140
3139
|
/* @__PURE__ */ z(K, {
|
|
3141
3140
|
small: r,
|
|
@@ -3156,7 +3155,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3156
3155
|
})
|
|
3157
3156
|
]
|
|
3158
3157
|
});
|
|
3159
|
-
},
|
|
3158
|
+
}, ks = ({ pagination: e, actions: t, content: n, testId: r }) => {
|
|
3160
3159
|
let i = t && t.length, a = n != null, o = () => {
|
|
3161
3160
|
if (e) {
|
|
3162
3161
|
var t;
|
|
@@ -3173,19 +3172,19 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3173
3172
|
children: /* @__PURE__ */ z("div", { children: n })
|
|
3174
3173
|
}) : null, i || o() ? /* @__PURE__ */ B("div", {
|
|
3175
3174
|
className: _o.section,
|
|
3176
|
-
children: [e && o() ? /* @__PURE__ */ z(
|
|
3175
|
+
children: [e && o() ? /* @__PURE__ */ z(Os, { pagination: e }) : /* @__PURE__ */ z("div", {}), i && /* @__PURE__ */ z("div", { children: /* @__PURE__ */ z(Xi, { actions: t }) })]
|
|
3177
3176
|
}) : null]
|
|
3178
3177
|
}) : null;
|
|
3179
|
-
},
|
|
3178
|
+
}, As = (e) => {
|
|
3180
3179
|
let t = Math.max(...e.reduce((e, t) => {
|
|
3181
3180
|
let n = t.cells.map((e) => e.colSpan ? e.colSpan : 1).reduce((e, t) => e + t, 0);
|
|
3182
3181
|
return e.concat(n);
|
|
3183
3182
|
}, []));
|
|
3184
3183
|
return isNaN(t) ? 0 : t;
|
|
3185
|
-
},
|
|
3186
|
-
let n = [
|
|
3184
|
+
}, js = (e, t) => {
|
|
3185
|
+
let n = [As(t), As(e)];
|
|
3187
3186
|
return Math.max(...n);
|
|
3188
|
-
},
|
|
3187
|
+
}, Ms = (e) => e.reduce((e, t) => t.actions && t.actions.length > 0 ? 1 : e, 0), Ns = (e, t) => Ms(t) > 0 || Ms(e) > 0, Ps = {
|
|
3189
3188
|
clickableRow: "_clickableRow_g8hv8_1",
|
|
3190
3189
|
hoverableRow: "_hoverableRow_g8hv8_4",
|
|
3191
3190
|
rowActive: "_rowActive_g8hv8_4",
|
|
@@ -3194,11 +3193,11 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3194
3193
|
dragIconCell: "_dragIconCell_g8hv8_34",
|
|
3195
3194
|
dragIcon: "_dragIcon_g8hv8_34",
|
|
3196
3195
|
dragIconDisabled: "_dragIconDisabled_g8hv8_55"
|
|
3197
|
-
},
|
|
3196
|
+
}, Fs = ({ colSpan: e, children: t, flush: n }) => /* @__PURE__ */ z("tr", { children: /* @__PURE__ */ z("td", {
|
|
3198
3197
|
colSpan: e,
|
|
3199
|
-
className: g(
|
|
3198
|
+
className: g(Ps.expandableRow, n ? Ps.flush : ""),
|
|
3200
3199
|
children: t
|
|
3201
|
-
}) }),
|
|
3200
|
+
}) }), Is = (e, t = {
|
|
3202
3201
|
leftAligned: "",
|
|
3203
3202
|
rightAligned: "",
|
|
3204
3203
|
centerAligned: ""
|
|
@@ -3211,7 +3210,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3211
3210
|
case Dr.CENTER: return n ? Dr.CENTER : t.centerAligned;
|
|
3212
3211
|
default: return n ? Dr.LEFT : t.leftAligned;
|
|
3213
3212
|
}
|
|
3214
|
-
},
|
|
3213
|
+
}, Ls = (e, t = !1, n = 0) => {
|
|
3215
3214
|
if (!e || e.length === 0) return [];
|
|
3216
3215
|
let r = e.every((e) => Array.isArray(e)), i = e.every((e) => typeof e == "string");
|
|
3217
3216
|
return r && t ? e[n] || [] : i ? e : (console.warn("getHeaderAlignment: alignments array contains a mix of strings and arrays, returning an empty array."), []);
|
|
@@ -3245,7 +3244,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3245
3244
|
popover: "_popover_1flvp_207",
|
|
3246
3245
|
disabledPointerEvents: "_disabledPointerEvents_1flvp_210",
|
|
3247
3246
|
standaloneCheckbox: "_standaloneCheckbox_1flvp_213"
|
|
3248
|
-
},
|
|
3247
|
+
}, Rs = ({ cell: e, columnAlignment: t, testId: n, type: r }) => /* @__PURE__ */ z(Pa, {
|
|
3249
3248
|
name: e.name,
|
|
3250
3249
|
value: e.value,
|
|
3251
3250
|
onChange: (t) => {
|
|
@@ -3270,9 +3269,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3270
3269
|
tabIndex: e.disabled ? -1 : 0,
|
|
3271
3270
|
tooltip: e.tooltip,
|
|
3272
3271
|
type: r
|
|
3273
|
-
}),
|
|
3272
|
+
}), zs = 14, Bs = (e) => String(Wn(e)), Vs = (e) => Nn(e) ? e : Bs(Bn(Un(e), zs)), Hs = (e) => e ? typeof e == "string" ? e : tn(e) ? e[0] : e.fieldName : "", Us = ({ name: e, placeholder: t = "", disabled: n = !1, error: r = !1, left: i = !1, small: a = !1, width: o = "100%", value: s = "", onChange: l = () => {}, onFocus: u = () => {}, onBlur: d = () => {}, selectOnFocus: f = !0, tabIndex: h = 0, testId: g, tooltip: _ = null, warning: v = !1, validationCallback: y = () => {}, allowEmpty: b = !1, isInTable: x, groupOrder: S, enableCosmeticRounding: C = !0, enableDisplayRounding: w = !1, roundDisplayValue: T, disableInternalErrorValidationMessages: E = !1, disableValidationOnFocus: D = !1 }) => {
|
|
3274
3273
|
let O = (e) => {
|
|
3275
|
-
let n = Kn(e), r = t &&
|
|
3274
|
+
let n = Kn(e), r = t && ds(e);
|
|
3276
3275
|
return [Infinity, -Infinity].includes(Number(e)) || r ? {
|
|
3277
3276
|
valid: !0,
|
|
3278
3277
|
errors: []
|
|
@@ -3284,10 +3283,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3284
3283
|
}, k = (e) => {
|
|
3285
3284
|
var t;
|
|
3286
3285
|
let n = !!(e != null && e.endsWith("0"));
|
|
3287
|
-
return
|
|
3288
|
-
}, A = p(null), [j, M] = m(k(
|
|
3286
|
+
return Bs(C && e && !n && (t = O(e)) != null && t.valid ? Vs(e) : e);
|
|
3287
|
+
}, A = p(null), [j, M] = m(k(Bs(s))), [N, P] = m(!1), F = Hs(e), { valid: ee, errors: I } = O(j), te = I && I.length && !E ? I[0] : null;
|
|
3289
3288
|
c(() => {
|
|
3290
|
-
let e = k(
|
|
3289
|
+
let e = k(Bs(s));
|
|
3291
3290
|
Un(j) !== Un(e) && M(e);
|
|
3292
3291
|
}, [
|
|
3293
3292
|
s,
|
|
@@ -3303,11 +3302,11 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3303
3302
|
let ne = (e) => {
|
|
3304
3303
|
var n, r;
|
|
3305
3304
|
let i = "key" in e ? j : e == null || (n = e.target) == null ? void 0 : n.value, a = Tn(i.replaceAll(" ", "").replaceAll("|", ""));
|
|
3306
|
-
M(a), ((r = O(a)) != null && r.valid || t &&
|
|
3305
|
+
M(a), ((r = O(a)) != null && r.valid || t && ds(i)) && l({
|
|
3307
3306
|
...e,
|
|
3308
3307
|
target: {
|
|
3309
3308
|
...e.target,
|
|
3310
|
-
value: Hn(
|
|
3309
|
+
value: Hn(Bs(a)),
|
|
3311
3310
|
name: F
|
|
3312
3311
|
}
|
|
3313
3312
|
});
|
|
@@ -3316,7 +3315,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3316
3315
|
if (A && A != null && A.current && w && N) {
|
|
3317
3316
|
let e = A.current;
|
|
3318
3317
|
e && !f && setTimeout(() => {
|
|
3319
|
-
let { length: t } =
|
|
3318
|
+
let { length: t } = Bs(j);
|
|
3320
3319
|
e.setSelectionRange(t, t);
|
|
3321
3320
|
}, 0);
|
|
3322
3321
|
}
|
|
@@ -3326,7 +3325,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3326
3325
|
testId: g,
|
|
3327
3326
|
disabled: n,
|
|
3328
3327
|
placeholder: t,
|
|
3329
|
-
value: w && !N && ee ? T ?
|
|
3328
|
+
value: w && !N && ee ? T ? Bs(T(j)) : ((e) => x ? zn(e, 2) : Ln(e, 4))(s) : j,
|
|
3330
3329
|
onChange: ne,
|
|
3331
3330
|
onFocus: (e) => {
|
|
3332
3331
|
P(!0), u(e);
|
|
@@ -3335,7 +3334,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3335
3334
|
P(!1), d(e);
|
|
3336
3335
|
},
|
|
3337
3336
|
onKeyDown: (e) => {
|
|
3338
|
-
e.key ===
|
|
3337
|
+
e.key === ss.ENTER && ne(e);
|
|
3339
3338
|
},
|
|
3340
3339
|
error: te || r,
|
|
3341
3340
|
warning: v,
|
|
@@ -3349,9 +3348,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3349
3348
|
tooltip: _,
|
|
3350
3349
|
ref: A
|
|
3351
3350
|
}, F);
|
|
3352
|
-
},
|
|
3351
|
+
}, Ws = ({ cell: e, columnAlignment: t, testId: n }) => {
|
|
3353
3352
|
var r;
|
|
3354
|
-
return /* @__PURE__ */ z(
|
|
3353
|
+
return /* @__PURE__ */ z(Us, {
|
|
3355
3354
|
name: e.name,
|
|
3356
3355
|
value: e.value,
|
|
3357
3356
|
onChange: (t) => {
|
|
@@ -3377,7 +3376,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3377
3376
|
roundDisplayValue: e.roundDisplayValue,
|
|
3378
3377
|
disableValidationOnFocus: e.disableValidationOnFocus
|
|
3379
3378
|
});
|
|
3380
|
-
},
|
|
3379
|
+
}, Gs = ({ cell: e, columnAlignment: t, testId: n }) => /* @__PURE__ */ z(xs, {
|
|
3381
3380
|
name: e.name,
|
|
3382
3381
|
borderRadius: 0,
|
|
3383
3382
|
options: e.options,
|
|
@@ -3403,26 +3402,26 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3403
3402
|
right: t === Dr.RIGHT,
|
|
3404
3403
|
testId: n,
|
|
3405
3404
|
tabIndex: e.disabled ? -1 : 0
|
|
3406
|
-
}),
|
|
3405
|
+
}), Ks = ({ cell: e, columnAlignment: t, testId: n }) => /* @__PURE__ */ z("div", {
|
|
3407
3406
|
className: g(X.inputWrapper, e.type === "NumberInput" ? X.numberInputWrapper : ""),
|
|
3408
|
-
children: e.type === "Input" ? /* @__PURE__ */ z(
|
|
3407
|
+
children: e.type === "Input" ? /* @__PURE__ */ z(Rs, {
|
|
3409
3408
|
cell: e,
|
|
3410
3409
|
columnAlignment: t,
|
|
3411
3410
|
testId: n
|
|
3412
|
-
}) : e.type === "NumberInput" ? /* @__PURE__ */ z(
|
|
3411
|
+
}) : e.type === "NumberInput" ? /* @__PURE__ */ z(Ws, {
|
|
3413
3412
|
cell: e,
|
|
3414
3413
|
columnAlignment: t,
|
|
3415
3414
|
testId: n
|
|
3416
|
-
}) : e.type === "DateInput" ? /* @__PURE__ */ z(
|
|
3415
|
+
}) : e.type === "DateInput" ? /* @__PURE__ */ z(Rs, {
|
|
3417
3416
|
cell: e,
|
|
3418
3417
|
testId: n,
|
|
3419
3418
|
type: "date"
|
|
3420
|
-
}) : e.type === "Select" ? /* @__PURE__ */ z(
|
|
3419
|
+
}) : e.type === "Select" ? /* @__PURE__ */ z(Gs, {
|
|
3421
3420
|
cell: e,
|
|
3422
3421
|
columnAlignment: t,
|
|
3423
3422
|
testId: n
|
|
3424
3423
|
}) : null
|
|
3425
|
-
}),
|
|
3424
|
+
}), qs = ({ cell: e, testId: t }) => {
|
|
3426
3425
|
let n = s(U), { error: r, warning: i, tooltip: a, maxTooltipWidth: o } = e, c = (e) => J(e);
|
|
3427
3426
|
return /* @__PURE__ */ z("div", {
|
|
3428
3427
|
className: X.inputWrapper,
|
|
@@ -3448,7 +3447,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3448
3447
|
})
|
|
3449
3448
|
})
|
|
3450
3449
|
});
|
|
3451
|
-
},
|
|
3450
|
+
}, Js = ({ cell: e, testId: t }) => /* @__PURE__ */ z("div", {
|
|
3452
3451
|
className: e.label ? "" : X.standaloneCheckbox,
|
|
3453
3452
|
children: /* @__PURE__ */ z(li, {
|
|
3454
3453
|
label: e.label,
|
|
@@ -3460,7 +3459,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3460
3459
|
tabIndex: e.disabled ? -1 : 0,
|
|
3461
3460
|
indeterminate: e.indeterminate
|
|
3462
3461
|
})
|
|
3463
|
-
}),
|
|
3462
|
+
}), Ys = {
|
|
3464
3463
|
container: "_container_1vgw8_1",
|
|
3465
3464
|
small: "_small_1vgw8_7",
|
|
3466
3465
|
vertical: "_vertical_1vgw8_10",
|
|
@@ -3468,26 +3467,26 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3468
3467
|
button: "_button_1vgw8_18",
|
|
3469
3468
|
label: "_label_1vgw8_21",
|
|
3470
3469
|
dot: "_dot_1vgw8_32"
|
|
3471
|
-
},
|
|
3470
|
+
}, Xs = tr((e) => e.reduce((e, { label: t, tooltip: n, value: r }) => (e[r] = /* @__PURE__ */ z(G, {
|
|
3472
3471
|
text: /* @__PURE__ */ B(R, { children: [
|
|
3473
3472
|
n,
|
|
3474
3473
|
n ? ": " : "",
|
|
3475
3474
|
t == null ? r : t
|
|
3476
3475
|
] }),
|
|
3477
|
-
children: /* @__PURE__ */ z("div", { className:
|
|
3478
|
-
}), e), {}), nr),
|
|
3476
|
+
children: /* @__PURE__ */ z("div", { className: Ys.dot })
|
|
3477
|
+
}), e), {}), nr), Zs = ({ name: e, label: t, width: n = "100%", labelWidth: r = "auto", value: i, min: a, max: o, step: c = 1, marks: l = [], showArrows: u = !1, showTooltip: d = !1, tooltipFormatter: f = (e) => e, disabled: p = !1, range: m = !1, small: h = !1, vertical: _ = {
|
|
3479
3478
|
enabled: !1,
|
|
3480
3479
|
width: "100px",
|
|
3481
3480
|
height: "400px"
|
|
3482
3481
|
}, onChange: v = pn }) => {
|
|
3483
|
-
let y = s(U), b =
|
|
3482
|
+
let y = s(U), b = Xs(l), x = (n) => {
|
|
3484
3483
|
v({ target: {
|
|
3485
3484
|
name: e == null ? "" : e,
|
|
3486
3485
|
value: n,
|
|
3487
3486
|
label: typeof t == "string" ? t : String(t)
|
|
3488
3487
|
} });
|
|
3489
3488
|
}, S = () => /* @__PURE__ */ z("div", {
|
|
3490
|
-
className:
|
|
3489
|
+
className: Ys.button,
|
|
3491
3490
|
children: /* @__PURE__ */ z(K, {
|
|
3492
3491
|
basic: !0,
|
|
3493
3492
|
small: !0,
|
|
@@ -3497,7 +3496,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3497
3496
|
icon: H.FAST_BACKWARD
|
|
3498
3497
|
})
|
|
3499
3498
|
}), C = () => /* @__PURE__ */ z("div", {
|
|
3500
|
-
className:
|
|
3499
|
+
className: Ys.button,
|
|
3501
3500
|
children: /* @__PURE__ */ z(K, {
|
|
3502
3501
|
basic: !0,
|
|
3503
3502
|
small: !0,
|
|
@@ -3508,7 +3507,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3508
3507
|
})
|
|
3509
3508
|
});
|
|
3510
3509
|
return /* @__PURE__ */ B("div", {
|
|
3511
|
-
className: g(
|
|
3510
|
+
className: g(Ys.container, h ? Ys.small : "", _.enabled ? Ys.vertical : ""),
|
|
3512
3511
|
style: _.enabled ? {
|
|
3513
3512
|
width: _.width,
|
|
3514
3513
|
height: _.height
|
|
@@ -3518,7 +3517,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3518
3517
|
/* @__PURE__ */ z(er, {
|
|
3519
3518
|
range: m,
|
|
3520
3519
|
allowCross: !1,
|
|
3521
|
-
className: g((p || y) &&
|
|
3520
|
+
className: g((p || y) && Ys.rcSliderDisabled, u && Ys.hasArrows),
|
|
3522
3521
|
value: i,
|
|
3523
3522
|
max: o,
|
|
3524
3523
|
min: a,
|
|
@@ -3542,15 +3541,15 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3542
3541
|
}),
|
|
3543
3542
|
u && (_.enabled ? /* @__PURE__ */ z(S, {}) : /* @__PURE__ */ z(C, {})),
|
|
3544
3543
|
t && /* @__PURE__ */ z("label", {
|
|
3545
|
-
className:
|
|
3544
|
+
className: Ys.label,
|
|
3546
3545
|
style: { width: r },
|
|
3547
3546
|
children: t
|
|
3548
3547
|
})
|
|
3549
3548
|
]
|
|
3550
3549
|
});
|
|
3551
|
-
},
|
|
3550
|
+
}, Qs = ({ cell: e }) => /* @__PURE__ */ z("div", {
|
|
3552
3551
|
className: X.inputWrapper,
|
|
3553
|
-
children: /* @__PURE__ */ z(
|
|
3552
|
+
children: /* @__PURE__ */ z(Zs, {
|
|
3554
3553
|
label: e.label,
|
|
3555
3554
|
value: e.value,
|
|
3556
3555
|
min: e.min,
|
|
@@ -3563,7 +3562,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3563
3562
|
tooltipFormatter: e.tooltipFormatter,
|
|
3564
3563
|
disabled: e.disabled
|
|
3565
3564
|
})
|
|
3566
|
-
}),
|
|
3565
|
+
}), $s = ({ cell: e }) => {
|
|
3567
3566
|
let { tooltip: t, icon: n } = e;
|
|
3568
3567
|
return /* @__PURE__ */ z("div", {
|
|
3569
3568
|
className: X.iconCellWrapper,
|
|
@@ -3575,7 +3574,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3575
3574
|
children: /* @__PURE__ */ z(W, { icon: n })
|
|
3576
3575
|
})
|
|
3577
3576
|
});
|
|
3578
|
-
},
|
|
3577
|
+
}, ec = ({ cell: e }) => /* @__PURE__ */ z(Xi, { actions: e.actions }), tc = ({ cell: e }) => {
|
|
3579
3578
|
let { helpIcon: t } = e;
|
|
3580
3579
|
return t ? /* @__PURE__ */ z("div", {
|
|
3581
3580
|
className: X.icon,
|
|
@@ -3584,7 +3583,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3584
3583
|
text: t.tooltip
|
|
3585
3584
|
})
|
|
3586
3585
|
}) : null;
|
|
3587
|
-
},
|
|
3586
|
+
}, nc = ({ cell: e }) => {
|
|
3588
3587
|
let { libraryIcon: t } = e;
|
|
3589
3588
|
return t ? /* @__PURE__ */ z("div", {
|
|
3590
3589
|
className: X.icon,
|
|
@@ -3594,7 +3593,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3594
3593
|
icon: H.LIBRARY
|
|
3595
3594
|
})
|
|
3596
3595
|
}) : null;
|
|
3597
|
-
},
|
|
3596
|
+
}, rc = ({ cell: e }) => {
|
|
3598
3597
|
let { hasSort: t, sort: n, sortPriority: r } = e;
|
|
3599
3598
|
return t ? /* @__PURE__ */ B("span", {
|
|
3600
3599
|
className: X.sortingCellIcon,
|
|
@@ -3609,7 +3608,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3609
3608
|
children: /* @__PURE__ */ z(W, { icon: H.SORT_DESCENDING })
|
|
3610
3609
|
}), r && n ? /* @__PURE__ */ z("sup", { children: r }) : null]
|
|
3611
3610
|
}) : null;
|
|
3612
|
-
},
|
|
3611
|
+
}, ic = ({ cell: e, isHeader: t, testId: n }) => {
|
|
3613
3612
|
let { error: r, warning: i, tooltip: a, maxTooltipWidth: o, hasSort: s, onSort: c, type: l } = e, u = /* @__PURE__ */ B("div", {
|
|
3614
3613
|
className: g(X.staticCellContent, l === "Unit" ? X.unit : ""),
|
|
3615
3614
|
onClick: s ? (e) => c && c(e) : () => {},
|
|
@@ -3617,9 +3616,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3617
3616
|
"data-warning": i || null,
|
|
3618
3617
|
"data-testid": n,
|
|
3619
3618
|
children: [e.value, t ? /* @__PURE__ */ B(R, { children: [
|
|
3619
|
+
/* @__PURE__ */ z(tc, { cell: e }),
|
|
3620
3620
|
/* @__PURE__ */ z(nc, { cell: e }),
|
|
3621
|
-
/* @__PURE__ */ z(rc, { cell: e })
|
|
3622
|
-
/* @__PURE__ */ z(ic, { cell: e })
|
|
3621
|
+
/* @__PURE__ */ z(rc, { cell: e })
|
|
3623
3622
|
] }) : null]
|
|
3624
3623
|
});
|
|
3625
3624
|
return /* @__PURE__ */ z("div", {
|
|
@@ -3634,7 +3633,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3634
3633
|
children: u
|
|
3635
3634
|
})
|
|
3636
3635
|
});
|
|
3637
|
-
},
|
|
3636
|
+
}, ac = ({ cell: e, testId: t }) => {
|
|
3638
3637
|
let { content: n, fullWidth: r, closeOnOutsideClick: i, disabled: a } = e;
|
|
3639
3638
|
return /* @__PURE__ */ z(sa, {
|
|
3640
3639
|
content: n,
|
|
@@ -3643,13 +3642,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3643
3642
|
disabled: a,
|
|
3644
3643
|
children: /* @__PURE__ */ z("div", {
|
|
3645
3644
|
className: X.popover,
|
|
3646
|
-
children: /* @__PURE__ */ z(
|
|
3645
|
+
children: /* @__PURE__ */ z(ic, {
|
|
3647
3646
|
cell: e,
|
|
3648
3647
|
testId: t
|
|
3649
3648
|
})
|
|
3650
3649
|
})
|
|
3651
3650
|
});
|
|
3652
|
-
},
|
|
3651
|
+
}, oc = {
|
|
3653
3652
|
wrapper: "_wrapper_1u1qo_1",
|
|
3654
3653
|
inline: "_inline_1u1qo_1",
|
|
3655
3654
|
radio: "_radio_1u1qo_5",
|
|
@@ -3660,10 +3659,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3660
3659
|
disabled: "_disabled_1u1qo_98",
|
|
3661
3660
|
isInTable: "_isInTable_1u1qo_114",
|
|
3662
3661
|
helpIconEnabled: "_helpIconEnabled_1u1qo_119"
|
|
3663
|
-
},
|
|
3662
|
+
}, sc = ({ name: e, label: t, value: n, selected: r, disabled: i = !1, small: a = !1, onChange: o, noMargin: s = !1, testId: c, helpText: l, onClickHelp: u, textTransform: d = kr.CAPITALIZE }) => {
|
|
3664
3663
|
let f = l || u;
|
|
3665
3664
|
return /* @__PURE__ */ B("div", {
|
|
3666
|
-
className: g(
|
|
3665
|
+
className: g(oc.radio, i ? oc.disabled : null, a ? oc.small : null, s ? oc.noMargin : null, t ? null : oc.noLabel),
|
|
3667
3666
|
onClick: o,
|
|
3668
3667
|
"data-testid": c,
|
|
3669
3668
|
children: [
|
|
@@ -3681,13 +3680,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3681
3680
|
children: t
|
|
3682
3681
|
}),
|
|
3683
3682
|
f && /* @__PURE__ */ z("div", {
|
|
3684
|
-
className:
|
|
3683
|
+
className: oc.helpIconEnabled,
|
|
3685
3684
|
onClick: u,
|
|
3686
3685
|
children: /* @__PURE__ */ z(ci, { text: l })
|
|
3687
3686
|
})
|
|
3688
3687
|
]
|
|
3689
3688
|
});
|
|
3690
|
-
},
|
|
3689
|
+
}, cc = ({ cell: e, testId: t }) => /* @__PURE__ */ z(sc, {
|
|
3691
3690
|
selected: e.selected,
|
|
3692
3691
|
name: e.name,
|
|
3693
3692
|
value: e.value,
|
|
@@ -3695,49 +3694,49 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3695
3694
|
disabled: e.disabled,
|
|
3696
3695
|
onChange: (t) => e.onChange(t),
|
|
3697
3696
|
testId: t
|
|
3698
|
-
}),
|
|
3697
|
+
}), lc = ({ cell: e, isHeader: t, columnAlignment: n, testId: r }) => {
|
|
3699
3698
|
if (!e) return null;
|
|
3700
3699
|
switch (e.type) {
|
|
3701
3700
|
case "Input":
|
|
3702
3701
|
case "NumberInput":
|
|
3703
3702
|
case "DateInput":
|
|
3704
|
-
case "Select": return /* @__PURE__ */ z(
|
|
3703
|
+
case "Select": return /* @__PURE__ */ z(Ks, {
|
|
3705
3704
|
cell: e,
|
|
3706
3705
|
columnAlignment: n,
|
|
3707
3706
|
testId: r
|
|
3708
3707
|
});
|
|
3709
|
-
case "Link": return /* @__PURE__ */ z(
|
|
3708
|
+
case "Link": return /* @__PURE__ */ z(qs, {
|
|
3710
3709
|
cell: e,
|
|
3711
3710
|
testId: r
|
|
3712
3711
|
});
|
|
3713
|
-
case "CheckBox": return /* @__PURE__ */ z(
|
|
3712
|
+
case "CheckBox": return /* @__PURE__ */ z(Js, {
|
|
3714
3713
|
cell: e,
|
|
3715
3714
|
testId: r
|
|
3716
3715
|
});
|
|
3717
|
-
case "Radio": return /* @__PURE__ */ z(
|
|
3716
|
+
case "Radio": return /* @__PURE__ */ z(cc, {
|
|
3718
3717
|
cell: e,
|
|
3719
3718
|
testId: r
|
|
3720
3719
|
});
|
|
3721
|
-
case "Slider": return /* @__PURE__ */ z(
|
|
3722
|
-
case "Icon": return /* @__PURE__ */ z(
|
|
3723
|
-
case "Actions": return /* @__PURE__ */ z(
|
|
3724
|
-
case "Popover": return /* @__PURE__ */ z(
|
|
3725
|
-
default: return /* @__PURE__ */ z(
|
|
3720
|
+
case "Slider": return /* @__PURE__ */ z(Qs, { cell: e });
|
|
3721
|
+
case "Icon": return /* @__PURE__ */ z($s, { cell: e });
|
|
3722
|
+
case "Actions": return /* @__PURE__ */ z(ec, { cell: e });
|
|
3723
|
+
case "Popover": return /* @__PURE__ */ z(ac, { cell: e });
|
|
3724
|
+
default: return /* @__PURE__ */ z(ic, {
|
|
3726
3725
|
cell: e,
|
|
3727
3726
|
isHeader: t,
|
|
3728
3727
|
testId: r
|
|
3729
3728
|
});
|
|
3730
3729
|
}
|
|
3731
|
-
},
|
|
3730
|
+
}, uc = /* @__PURE__ */ function(e) {
|
|
3732
3731
|
return e.INPUT = "Input", e.NUMBER_INPUT = "NumberInput", e.SELECT = "Select", e.POPOVER = "Popover", e.SLIDER = "Slider", e.CHECKBOX = "CheckBox", e.RADIO = "Radio", e.ACTIONS = "Actions", e.AUTO_UNIT = "AutoUnit", e.UNIT = "Unit", e.STATIC = "Static", e;
|
|
3733
|
-
}({}),
|
|
3732
|
+
}({}), dc = ({ cell: e, isHeader: t, columnHeaderAlignment: n, columnAlignment: r = Dr.LEFT, width: i, testId: a }) => {
|
|
3734
3733
|
var o;
|
|
3735
3734
|
if (!e) return null;
|
|
3736
3735
|
let { style: s, colSpan: c, rowSpan: l, width: u } = e, d = p(null), f = {
|
|
3737
3736
|
bodyAlignment: r,
|
|
3738
3737
|
headerAlignment: n,
|
|
3739
3738
|
isHeader: t
|
|
3740
|
-
}, m =
|
|
3739
|
+
}, m = Is(f, X), h = Is(f, X, !0), _ = e.type === uc.INPUT || e.type === uc.NUMBER_INPUT || e.type === uc.SELECT || e.type === uc.POPOVER ? X.inputCell : e.type === uc.SLIDER ? X.sliderCell : e.type === uc.CHECKBOX || e.type === uc.RADIO ? X.checkBoxCell : e.type === uc.ACTIONS ? X.actionsCell : X.staticCell, v = g(X.cell, _, e.hasSort ? X.sortingCell : null, m, e.breakWord ? X.breakWord : ""), y = (o = u == null ? i : u) == null ? void 0 : o, b = e.type === uc.STATIC || !e.type, x = {
|
|
3741
3740
|
width: y,
|
|
3742
3741
|
minWidth: y,
|
|
3743
3742
|
textTransform: t && b ? kr.CAPITALIZE : void 0,
|
|
@@ -3749,17 +3748,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3749
3748
|
style: x,
|
|
3750
3749
|
colSpan: c,
|
|
3751
3750
|
rowSpan: l,
|
|
3752
|
-
children: /* @__PURE__ */ z(
|
|
3751
|
+
children: /* @__PURE__ */ z(lc, {
|
|
3753
3752
|
cell: e,
|
|
3754
3753
|
columnAlignment: h == null ? Dr.RIGHT : h,
|
|
3755
3754
|
isHeader: t,
|
|
3756
3755
|
testId: a
|
|
3757
3756
|
})
|
|
3758
3757
|
});
|
|
3759
|
-
},
|
|
3760
|
-
let p =
|
|
3758
|
+
}, fc = ({ row: e, rowIndex: t, isHeader: n = !1, columnCount: r, colSpan: i, columnHeaderAlignments: a = [], columnAlignment: o = [], hasRowActions: s, draggableTable: c = !1, columnWidths: l, dropDisabled: u = !1, height: d, testId: f }) => {
|
|
3759
|
+
let p = Ls(a, n, t), { onRowClick: m, onRowFocus: h, onRowMouseEnter: _, onRowMouseLeave: v, expandedContent: y, error: b, warning: x, active: S } = e, C = e.cells.map((e, r) => {
|
|
3761
3760
|
let i = `${+!n}_${t}_${r}`;
|
|
3762
|
-
return /* @__PURE__ */ z(
|
|
3761
|
+
return /* @__PURE__ */ z(dc, {
|
|
3763
3762
|
cell: e,
|
|
3764
3763
|
isHeader: n,
|
|
3765
3764
|
columnAlignment: o[r],
|
|
@@ -3767,9 +3766,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3767
3766
|
width: l ? l[r] : void 0,
|
|
3768
3767
|
testId: e.testId
|
|
3769
3768
|
}, i);
|
|
3770
|
-
}), w = s && /* @__PURE__ */ z(
|
|
3769
|
+
}), w = s && /* @__PURE__ */ z(dc, {
|
|
3771
3770
|
cell: {
|
|
3772
|
-
type:
|
|
3771
|
+
type: uc.ACTIONS,
|
|
3773
3772
|
actions: e.actions
|
|
3774
3773
|
},
|
|
3775
3774
|
isHeader: n
|
|
@@ -3787,13 +3786,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3787
3786
|
onMouseEnter: _,
|
|
3788
3787
|
onMouseLeave: v,
|
|
3789
3788
|
onFocus: h,
|
|
3790
|
-
|
|
3789
|
+
"data-testid": f,
|
|
3790
|
+
className: g(m ? Ps.clickableRow : null, _ ? Ps.hoverableRow : null),
|
|
3791
3791
|
children: [
|
|
3792
3792
|
c ? /* @__PURE__ */ z("th", {}) : null,
|
|
3793
3793
|
C,
|
|
3794
3794
|
w
|
|
3795
3795
|
]
|
|
3796
|
-
}, t), y && y.content ? /* @__PURE__ */ z(
|
|
3796
|
+
}, t), y && y.content ? /* @__PURE__ */ z(Fs, {
|
|
3797
3797
|
colSpan: i,
|
|
3798
3798
|
flush: y.flush === !0,
|
|
3799
3799
|
children: y.content
|
|
@@ -3803,18 +3803,19 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3803
3803
|
onMouseEnter: _,
|
|
3804
3804
|
onMouseLeave: v,
|
|
3805
3805
|
onFocus: h,
|
|
3806
|
-
className: g(m && !m.noStyle ?
|
|
3806
|
+
className: g(m && !m.noStyle ? Ps.clickableRow : null, _ && !_.noStyle ? Ps.hoverableRow : null, S ? Ps.rowActive : null),
|
|
3807
3807
|
"data-active": S || null,
|
|
3808
3808
|
"data-error": b || null,
|
|
3809
3809
|
"data-warning": x || null,
|
|
3810
3810
|
"data-index": t,
|
|
3811
3811
|
"data-even": t % 2 == 0,
|
|
3812
|
+
"data-testid": f,
|
|
3812
3813
|
style: j,
|
|
3813
3814
|
children: [
|
|
3814
3815
|
c ? e.noDrag ? /* @__PURE__ */ z("td", { "aria-labelledby": "unique-label-id" }) : /* @__PURE__ */ z("td", {
|
|
3815
|
-
className:
|
|
3816
|
+
className: Ps.dragIconCell,
|
|
3816
3817
|
children: /* @__PURE__ */ z("div", {
|
|
3817
|
-
className: g(
|
|
3818
|
+
className: g(Ps.dragIcon, u ? Ps.dragIconDisabled : ""),
|
|
3818
3819
|
...T,
|
|
3819
3820
|
...E,
|
|
3820
3821
|
children: /* @__PURE__ */ z(W, { icon: H.DRAG })
|
|
@@ -3823,12 +3824,12 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3823
3824
|
C,
|
|
3824
3825
|
w
|
|
3825
3826
|
]
|
|
3826
|
-
}, t), y && y.content ? /* @__PURE__ */ z(
|
|
3827
|
+
}, t), y && y.content ? /* @__PURE__ */ z(Fs, {
|
|
3827
3828
|
colSpan: i,
|
|
3828
3829
|
flush: y.flush === !0,
|
|
3829
3830
|
children: y.content
|
|
3830
3831
|
}, `${t}_expanded_content`) : null] });
|
|
3831
|
-
},
|
|
3832
|
+
}, pc = (e) => {
|
|
3832
3833
|
let { children: t, colSpan: n, columnAlignment: r, columnCount: i, draggable: a, onListReorder: o = () => {}, canListReorder: s = () => !0, rowActions: c, rows: l = [], tbodyRef: u } = e, [f, p] = m(null), [h, _] = m(!1), v = d(() => l.map((e, t) => t.toString()), [l]);
|
|
3833
3834
|
return a ? /* @__PURE__ */ B(rr, {
|
|
3834
3835
|
collisionDetection: ar,
|
|
@@ -3863,7 +3864,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3863
3864
|
dropAnimation: null,
|
|
3864
3865
|
children: /* @__PURE__ */ z("table", {
|
|
3865
3866
|
className: g(mo.table, mo.dragOverlay),
|
|
3866
|
-
children: /* @__PURE__ */ z("tbody", { children: /* @__PURE__ */ z(
|
|
3867
|
+
children: /* @__PURE__ */ z("tbody", { children: /* @__PURE__ */ z(fc, {
|
|
3867
3868
|
rowIndex: Number(f),
|
|
3868
3869
|
row: l[Number(f)],
|
|
3869
3870
|
columnCount: i,
|
|
@@ -3883,7 +3884,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3883
3884
|
})
|
|
3884
3885
|
}), document.body)]
|
|
3885
3886
|
}) : t({});
|
|
3886
|
-
},
|
|
3887
|
+
}, mc = ({ table: e, children: t }) => {
|
|
3887
3888
|
var n, r, i;
|
|
3888
3889
|
let a = p(null), o = or({
|
|
3889
3890
|
count: (n = (r = e == null ? void 0 : e.rowCount) == null ? (i = e.rows) == null ? void 0 : i.length : r) == null ? 0 : n,
|
|
@@ -3906,7 +3907,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3906
3907
|
})()
|
|
3907
3908
|
})
|
|
3908
3909
|
});
|
|
3909
|
-
},
|
|
3910
|
+
}, hc = ({ activeIndex: e, triggerScrollToActiveRow: t, isVirtualized: n, virtualizer: r }) => (c(() => {
|
|
3910
3911
|
if (t && !(e == null || e < 0)) {
|
|
3911
3912
|
if (n && r) r.scrollToIndex(e, {
|
|
3912
3913
|
behavior: "auto",
|
|
@@ -3925,11 +3926,11 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3925
3926
|
t,
|
|
3926
3927
|
n,
|
|
3927
3928
|
r
|
|
3928
|
-
]), null),
|
|
3929
|
+
]), null), gc = ({ table: e, children: t }) => {
|
|
3929
3930
|
let { infiniteScroll: n = !1, triggerScrollToActiveRow: r = !1, rows: i } = e, a = d(() => typeof e.activeRowIndex == "number" ? e.activeRowIndex : Array.isArray(i) && i.length ? i.findIndex((e) => e && e.active) : -1, [i, e.activeRowIndex]);
|
|
3930
|
-
return n ? /* @__PURE__ */ z(
|
|
3931
|
+
return n ? /* @__PURE__ */ z(mc, {
|
|
3931
3932
|
table: e,
|
|
3932
|
-
children: ({ virtualizer: e, tableStyle: n }) => /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ z(
|
|
3933
|
+
children: ({ virtualizer: e, tableStyle: n }) => /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ z(hc, {
|
|
3933
3934
|
isVirtualized: !0,
|
|
3934
3935
|
virtualizer: e,
|
|
3935
3936
|
activeIndex: a,
|
|
@@ -3941,15 +3942,15 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3941
3942
|
}) : /* @__PURE__ */ B("div", {
|
|
3942
3943
|
id: "scrollWrapper",
|
|
3943
3944
|
className: mo.scroll,
|
|
3944
|
-
children: [/* @__PURE__ */ z(
|
|
3945
|
+
children: [/* @__PURE__ */ z(hc, {
|
|
3945
3946
|
isVirtualized: !1,
|
|
3946
3947
|
activeIndex: a,
|
|
3947
3948
|
triggerScrollToActiveRow: r
|
|
3948
3949
|
}), t({})]
|
|
3949
3950
|
});
|
|
3950
|
-
},
|
|
3951
|
+
}, _c = (e) => {
|
|
3951
3952
|
var t, n, r, i, a;
|
|
3952
|
-
let { onListReorder: o = () => {}, canListReorder: s = () => !0, beforeRenderRow: c, table: l } = e, { columnWidths: u, footer: d, name: f, rows: m = [], actions: h, actionsRight: _, columnHeaderAlignments: v, columnAlignment: y, striped: b = !0, testId: x, draggable: S, defaultEmptyRow: C = null, onAddRow: w = null, bordered: T = !0, maxHeight: E, fixedWidth: D } = l, O = p(null), k = en(e, "table.headers", []), A =
|
|
3953
|
+
let { onListReorder: o = () => {}, canListReorder: s = () => !0, beforeRenderRow: c, table: l } = e, { columnWidths: u, footer: d, name: f, rows: m = [], actions: h, actionsRight: _, columnHeaderAlignments: v, columnAlignment: y, striped: b = !0, testId: x, draggable: S, defaultEmptyRow: C = null, onAddRow: w = null, bordered: T = !0, maxHeight: E, fixedWidth: D } = l, O = p(null), k = en(e, "table.headers", []), A = js(m, k), j = Ns(m, k), M = A + +!!j, N = d ? (d == null || (t = d.pagination) == null || (t = t.rowsPerPage) == null ? void 0 : t.value) === 0 || Number(d == null || (n = d.pagination) == null ? void 0 : n.selectedPage) >= Number(d == null || (r = d.pagination) == null ? void 0 : r.rowCount) / Number(d == null || (i = d.pagination) == null || (i = i.rowsPerPage) == null ? void 0 : i.value) : !0, P = (C == null || (a = C.cells) == null ? void 0 : a.length) && w && N, F = {
|
|
3953
3954
|
cells: P ? C.cells.map((e, t) => (e == null ? void 0 : e.type) === "Input" ? {
|
|
3954
3955
|
...e,
|
|
3955
3956
|
onChange: (e) => {
|
|
@@ -3986,7 +3987,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3986
3987
|
name: f,
|
|
3987
3988
|
testId: x && `${x}-title`
|
|
3988
3989
|
}),
|
|
3989
|
-
/* @__PURE__ */ z(
|
|
3990
|
+
/* @__PURE__ */ z(pc, {
|
|
3990
3991
|
colSpan: M,
|
|
3991
3992
|
columnAlignment: y,
|
|
3992
3993
|
columnCount: A,
|
|
@@ -3996,13 +3997,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
3996
3997
|
rows: ee,
|
|
3997
3998
|
tbodyRef: O,
|
|
3998
3999
|
canListReorder: s,
|
|
3999
|
-
children: ({ dropDisabled: e }) => /* @__PURE__ */ z(
|
|
4000
|
+
children: ({ dropDisabled: e }) => /* @__PURE__ */ z(gc, {
|
|
4000
4001
|
table: I,
|
|
4001
4002
|
children: ({ virtualizer: t, tableStyle: n }) => /* @__PURE__ */ B("table", {
|
|
4002
4003
|
className: g(mo.table, b ? mo.striped : ""),
|
|
4003
4004
|
"data-testid": x,
|
|
4004
4005
|
style: n,
|
|
4005
|
-
children: [/* @__PURE__ */ z("thead", { children: k.map((e, t) => /* @__PURE__ */ z(
|
|
4006
|
+
children: [/* @__PURE__ */ z("thead", { children: k.map((e, t) => /* @__PURE__ */ z(fc, {
|
|
4006
4007
|
rowIndex: t,
|
|
4007
4008
|
isHeader: !0,
|
|
4008
4009
|
row: e,
|
|
@@ -4017,7 +4018,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4017
4018
|
ref: O,
|
|
4018
4019
|
children: t ? t.getVirtualItems().map((t) => {
|
|
4019
4020
|
let n = t.index, r = ee[n];
|
|
4020
|
-
return /* @__PURE__ */ z(
|
|
4021
|
+
return /* @__PURE__ */ z(fc, {
|
|
4021
4022
|
rowIndex: n,
|
|
4022
4023
|
row: c ? c({
|
|
4023
4024
|
row: r,
|
|
@@ -4032,7 +4033,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4032
4033
|
height: t.size,
|
|
4033
4034
|
dropDisabled: e
|
|
4034
4035
|
}, `1_${n}`);
|
|
4035
|
-
}) : ee.map((t, n) => /* @__PURE__ */ z(
|
|
4036
|
+
}) : ee.map((t, n) => /* @__PURE__ */ z(fc, {
|
|
4036
4037
|
rowIndex: n,
|
|
4037
4038
|
row: c ? c({
|
|
4038
4039
|
row: t,
|
|
@@ -4050,24 +4051,24 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4050
4051
|
})
|
|
4051
4052
|
})
|
|
4052
4053
|
}),
|
|
4053
|
-
d && /* @__PURE__ */ z(
|
|
4054
|
+
d && /* @__PURE__ */ z(ks, {
|
|
4054
4055
|
pagination: d.pagination,
|
|
4055
4056
|
actions: d.actions,
|
|
4056
4057
|
content: d.content
|
|
4057
4058
|
})
|
|
4058
4059
|
]
|
|
4059
4060
|
});
|
|
4060
|
-
},
|
|
4061
|
+
}, vc = "blank", yc = 1e4, bc = (e, t, n, r) => {
|
|
4061
4062
|
let i = `${t} → ${n}:`, a = e.filter((e) => !e.startsWith(i)), o = r ? [...a, `${i} ${r}`] : a;
|
|
4062
4063
|
return {
|
|
4063
4064
|
updatedErrors: o,
|
|
4064
4065
|
isValid: o.length === 0
|
|
4065
4066
|
};
|
|
4066
|
-
},
|
|
4067
|
-
let i = d(() => t.fields.map((e) => ({ value: e })), [t.fields]), [a, s] = m(
|
|
4067
|
+
}, xc = 20, Sc = 1, Cc = ({ validationRules: e, parsedResult: t, updateState: n, testId: r }) => {
|
|
4068
|
+
let i = d(() => t.fields.map((e) => ({ value: e })), [t.fields]), [a, s] = m(xc), [l, u] = m(Sc), f = p([]), h = (l - 1) * a, g = a === 0 ? t.rows.length : h + a, [_, v] = m([]), y = d(() => {
|
|
4068
4069
|
let n = e.filter((e) => !e.optionalColumn);
|
|
4069
4070
|
return t.fields.length === n.length ? n : e;
|
|
4070
|
-
}, [e, t.fields.length]), b = o((e, r) => (!f.current.length && t.rows.length && (f.current = t.rows[0].map((e) =>
|
|
4071
|
+
}, [e, t.fields.length]), b = o((e, r) => (!f.current.length && t.rows.length && (f.current = t.rows[0].map((e) => fs(e) ? "NumberInput" : "Input")), {
|
|
4071
4072
|
cells: e.map((e, a) => {
|
|
4072
4073
|
var o, s, c, l, u;
|
|
4073
4074
|
let { columnMessage: d = {}, validator: p = () => null } = (o = y == null ? void 0 : y[a]) == null ? {} : o, m = i == null || (s = i[a]) == null ? void 0 : s.value, h = `${`Row ${r + 1}`} → ${m}:`, g = p(e), _ = (c = t == null || (l = t.errors) == null ? void 0 : l.find((e) => e.startsWith(h))) == null ? null : c, x = g || _ || null;
|
|
@@ -4078,7 +4079,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4078
4079
|
disableValidationOnFocus: !0,
|
|
4079
4080
|
error: x,
|
|
4080
4081
|
validationCallback: (e, i) => {
|
|
4081
|
-
let a = `Row ${r + 1}`, { updatedErrors: o, isValid: s } =
|
|
4082
|
+
let a = `Row ${r + 1}`, { updatedErrors: o, isValid: s } = bc(t.errors, a, e, i);
|
|
4082
4083
|
n({ parsedResult: {
|
|
4083
4084
|
...t,
|
|
4084
4085
|
errors: o,
|
|
@@ -4087,7 +4088,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4087
4088
|
},
|
|
4088
4089
|
onChange: (e) => {
|
|
4089
4090
|
var i;
|
|
4090
|
-
let { value: o } = (i = e == null ? void 0 : e.target) == null ? {} : i, s = `Row ${r + 1}`, c = p(o), { updatedErrors: l, isValid: u } =
|
|
4091
|
+
let { value: o } = (i = e == null ? void 0 : e.target) == null ? {} : i, s = `Row ${r + 1}`, c = p(o), { updatedErrors: l, isValid: u } = bc(t.errors, s, m, c), d = t.rows.map((e, t) => t === r ? e.map((e, t) => t === a ? o : e) : e);
|
|
4091
4092
|
n({ parsedResult: {
|
|
4092
4093
|
...t,
|
|
4093
4094
|
rows: d,
|
|
@@ -4129,7 +4130,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4129
4130
|
]);
|
|
4130
4131
|
let x = d(() => t.fields.map((e, r) => {
|
|
4131
4132
|
var a, o, s;
|
|
4132
|
-
let c = y == null ? void 0 : y[r], l = Array.isArray(c == null ? void 0 : c.validUnits) ? c.validUnits : [], u = l == null ? void 0 : l.some((e) => hn(e) ===
|
|
4133
|
+
let c = y == null ? void 0 : y[r], l = Array.isArray(c == null ? void 0 : c.validUnits) ? c.validUnits : [], u = l == null ? void 0 : l.some((e) => hn(e) === vc);
|
|
4133
4134
|
if (!l.length || u) return {};
|
|
4134
4135
|
let d = t == null || (a = t.units) == null ? void 0 : a[r], f = hn(d), p = l != null && l.some((e) => hn(e) === f) ? d : (o = c == null ? void 0 : c.defaultUnit) == null ? "" : o;
|
|
4135
4136
|
return {
|
|
@@ -4167,7 +4168,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4167
4168
|
h,
|
|
4168
4169
|
g
|
|
4169
4170
|
]);
|
|
4170
|
-
return /* @__PURE__ */ z(
|
|
4171
|
+
return /* @__PURE__ */ z(_c, {
|
|
4171
4172
|
beforeRenderRow: o(({ rowIndex: e }) => {
|
|
4172
4173
|
let n = h + e, r = t.rows[n];
|
|
4173
4174
|
return r ? b(r, n) : {
|
|
@@ -4240,7 +4241,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4240
4241
|
} }
|
|
4241
4242
|
}
|
|
4242
4243
|
});
|
|
4243
|
-
},
|
|
4244
|
+
}, wc = { listStyle: "_listStyle_yjfjw_1" }, Tc = ({ errors: e, t }) => {
|
|
4244
4245
|
var n;
|
|
4245
4246
|
let r = (n = [...e]) == null ? void 0 : n.sort((e, t) => {
|
|
4246
4247
|
let n = (e) => {
|
|
@@ -4256,18 +4257,18 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4256
4257
|
content: t("unableToImportPleaseCorrectError", { rows: e == null ? void 0 : e.length }),
|
|
4257
4258
|
type: "Error",
|
|
4258
4259
|
details: /* @__PURE__ */ z("ul", {
|
|
4259
|
-
className:
|
|
4260
|
+
className: wc.listStyle,
|
|
4260
4261
|
children: r.map((e, t) => /* @__PURE__ */ z("li", { children: e }, t))
|
|
4261
4262
|
})
|
|
4262
4263
|
};
|
|
4263
|
-
},
|
|
4264
|
+
}, Ec = ({ errors: e, t }) => e.length ? /* @__PURE__ */ z(po, { message: Tc({
|
|
4264
4265
|
errors: e,
|
|
4265
4266
|
t
|
|
4266
|
-
}) }) : null,
|
|
4267
|
+
}) }) : null, Dc = {
|
|
4267
4268
|
empty: "_empty_fe425_1",
|
|
4268
4269
|
text: "_text_fe425_11"
|
|
4269
|
-
},
|
|
4270
|
-
className:
|
|
4270
|
+
}, Oc = ({ width: e = "auto", height: t = "auto", text: n = "No data", children: r, testId: i }) => /* @__PURE__ */ B("div", {
|
|
4271
|
+
className: Dc.empty,
|
|
4271
4272
|
style: {
|
|
4272
4273
|
width: e,
|
|
4273
4274
|
height: t
|
|
@@ -4303,7 +4304,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4303
4304
|
})
|
|
4304
4305
|
}),
|
|
4305
4306
|
n !== "" && /* @__PURE__ */ z("div", {
|
|
4306
|
-
className:
|
|
4307
|
+
className: Dc.text,
|
|
4307
4308
|
children: /* @__PURE__ */ z(ha, {
|
|
4308
4309
|
faint: !0,
|
|
4309
4310
|
children: n
|
|
@@ -4311,52 +4312,52 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4311
4312
|
}),
|
|
4312
4313
|
r
|
|
4313
4314
|
]
|
|
4314
|
-
}),
|
|
4315
|
+
}), kc = (e) => {
|
|
4315
4316
|
var t;
|
|
4316
4317
|
return e == null || (t = e.split(/;|\t|\n/)) == null ? void 0 : t.some((e) => {
|
|
4317
4318
|
let t = e == null ? void 0 : e.match(/[.,]/g);
|
|
4318
4319
|
return t && t.length > 1;
|
|
4319
4320
|
});
|
|
4320
|
-
},
|
|
4321
|
+
}, Ac = (e) => {
|
|
4321
4322
|
var t;
|
|
4322
4323
|
return e == null || (t = e.split(/;|\t|\n/)) == null ? void 0 : t.some((e) => {
|
|
4323
4324
|
var t;
|
|
4324
4325
|
return !(e != null && e.includes(".")) && (e == null || (t = e.match(/,/g)) == null ? void 0 : t.length) === 1;
|
|
4325
4326
|
});
|
|
4326
|
-
},
|
|
4327
|
+
}, jc = (e, t, n) => e >= t - n, Mc = (e) => !!e && e !== "blank" && e.trim() !== "", Nc = (e, t, n, r, i, a, o) => {
|
|
4327
4328
|
let s = [], c = r.filter((e) => e.optionalColumn).length, l = r.length, u = c ? `${l - c} or ${l}` : `${l}`, d = i && a ? 2 : i || a ? 1 : 0;
|
|
4328
|
-
if (i && !
|
|
4329
|
+
if (i && !jc(e.length, l, c) && s.push(o("incorrectNumberOfFieldNameHeaderColumns", { expectedLengthMessage: u })), a) {
|
|
4329
4330
|
var f, p;
|
|
4330
4331
|
let e = r.filter((e) => {
|
|
4331
4332
|
var t;
|
|
4332
|
-
return !e.optionalColumn && Array.isArray(e == null ? void 0 : e.validUnits) && (e == null || (t = e.validUnits) == null ? void 0 : t.some(
|
|
4333
|
+
return !e.optionalColumn && Array.isArray(e == null ? void 0 : e.validUnits) && (e == null || (t = e.validUnits) == null ? void 0 : t.some(Mc));
|
|
4333
4334
|
}).length;
|
|
4334
|
-
|
|
4335
|
+
jc(t == null || (f = t.filter(Mc)) == null ? void 0 : f.length, e, r == null || (p = r.filter((e) => (e == null ? void 0 : e.optionalColumn) || !Array.isArray(e == null ? void 0 : e.validUnits) || e.validUnits.includes("blank"))) == null ? void 0 : p.length) || s.push(o("incorrectNumberOfUnitHeaderColumns", { expectedLengthMessage: u }));
|
|
4335
4336
|
}
|
|
4336
4337
|
return n.length === 0 ? s.push(o("incorrectNumberOfDataColumns", {
|
|
4337
4338
|
expectedLengthMessage: u,
|
|
4338
4339
|
dataRowStartIndex: d
|
|
4339
4340
|
})) : n.forEach((e, t) => {
|
|
4340
|
-
|
|
4341
|
+
jc(e.length, l, c) || s.push(o("incorrectNumberOfDataColumns", {
|
|
4341
4342
|
expectedLengthMessage: u,
|
|
4342
4343
|
dataRowStartIndex: d + t
|
|
4343
4344
|
}));
|
|
4344
4345
|
}), s;
|
|
4345
|
-
},
|
|
4346
|
+
}, Pc = (e) => e.toUpperCase().replace(/\(.*?\)/g, "").replace(/[^A-Z0-9]/g, "").trim(), Fc = ({ value: e, defaultAllowedValues: t }) => {
|
|
4346
4347
|
var n;
|
|
4347
|
-
let r =
|
|
4348
|
-
return (n = t == null ? void 0 : t.some((e) =>
|
|
4349
|
-
},
|
|
4348
|
+
let r = Pc(e);
|
|
4349
|
+
return (n = t == null ? void 0 : t.some((e) => Pc(e).includes(r) || r.includes(Pc(e)))) == null ? !1 : n;
|
|
4350
|
+
}, Ic = ({ value: e, defaultAllowedValues: t }) => {
|
|
4350
4351
|
var n;
|
|
4351
4352
|
return (n = t == null ? void 0 : t.includes(e)) == null ? !1 : n;
|
|
4352
|
-
},
|
|
4353
|
+
}, Lc = (e, t, n, r, i, a) => {
|
|
4353
4354
|
let o = [];
|
|
4354
4355
|
if (r) {
|
|
4355
4356
|
let r = n.map((e) => e.fieldName).filter(Boolean);
|
|
4356
4357
|
e.forEach((i, s) => {
|
|
4357
4358
|
var c, l;
|
|
4358
4359
|
let u = n[s];
|
|
4359
|
-
if (!(!u || !(u != null && u.fieldName)) && !((c = (l = n[s]) == null ? void 0 : l.fieldNameValidator) == null ?
|
|
4360
|
+
if (!(!u || !(u != null && u.fieldName)) && !((c = (l = n[s]) == null ? void 0 : l.fieldNameValidator) == null ? Fc : c)({
|
|
4360
4361
|
value: i,
|
|
4361
4362
|
defaultAllowedValues: r,
|
|
4362
4363
|
columnIndex: s,
|
|
@@ -4378,7 +4379,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4378
4379
|
var l, u;
|
|
4379
4380
|
let d = n[c];
|
|
4380
4381
|
if (!d || d != null && d.optionalColumn) return;
|
|
4381
|
-
let f = (l = d.unitsValidator) == null ?
|
|
4382
|
+
let f = (l = d.unitsValidator) == null ? Ic : l, p = (u = i == null ? void 0 : i[c]) == null ? [] : u;
|
|
4382
4383
|
f({
|
|
4383
4384
|
value: r,
|
|
4384
4385
|
defaultAllowedValues: p,
|
|
@@ -4394,7 +4395,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4394
4395
|
});
|
|
4395
4396
|
}
|
|
4396
4397
|
return o;
|
|
4397
|
-
},
|
|
4398
|
+
}, Rc = (e, t, n) => {
|
|
4398
4399
|
let r = [];
|
|
4399
4400
|
return e.forEach((e, i) => {
|
|
4400
4401
|
e.forEach((e, a) => {
|
|
@@ -4407,91 +4408,91 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4407
4408
|
})}`);
|
|
4408
4409
|
});
|
|
4409
4410
|
}), r;
|
|
4410
|
-
},
|
|
4411
|
-
let s =
|
|
4412
|
-
return s.length === 0 && (s = s.concat(
|
|
4411
|
+
}, zc = (e, t, n, r, i, a, o) => {
|
|
4412
|
+
let s = Nc(e, t, n, r, i, a, o);
|
|
4413
|
+
return s.length === 0 && (s = s.concat(Lc(e, t, r, i, a, o), Rc(n, r, o))), {
|
|
4413
4414
|
isValid: s.length === 0,
|
|
4414
4415
|
errors: s
|
|
4415
4416
|
};
|
|
4416
|
-
},
|
|
4417
|
+
}, Bc = (e, t, n) => {
|
|
4417
4418
|
var r, i, a, o, s, c, l, u, d, f, p, m, h, g;
|
|
4418
4419
|
let _ = (e) => e.replace(/,/g, "."), v = (r = (i = e[0]) == null ? void 0 : i.some((e) => isNaN(Number(_(e))))) == null ? !1 : r, y = (a = (o = e[1]) == null ? void 0 : o.some((e) => isNaN(Number(_(e))))) == null ? !1 : a, b = (s = (c = e[0]) == null ? void 0 : c.some((e) => t.includes(e))) == null ? !1 : s, x = (l = (u = e[0]) == null ? void 0 : u.some((e) => n.includes(e))) == null ? !1 : l, S = (d = (f = e[1]) == null ? void 0 : f.some((e) => n.includes(e))) == null ? !1 : d, C = (p = (m = e[0]) == null ? void 0 : m.some((e) => !isNaN(Number(_(e))))) == null ? !1 : p, w = (h = (g = e[1]) == null ? void 0 : g.some((e) => !isNaN(Number(_(e))))) == null ? !1 : h;
|
|
4419
4420
|
return {
|
|
4420
4421
|
hasFieldNameHeader: b || v && !x && !C || v && y && !C,
|
|
4421
4422
|
hasUnitHeader: x || S || v && y && !x && !C && !w || v && y && !C && !w
|
|
4422
4423
|
};
|
|
4423
|
-
},
|
|
4424
|
+
}, Vc = (e, { validationRules: t }) => {
|
|
4424
4425
|
var n, r, i;
|
|
4425
4426
|
let a = (t == null ? void 0 : t.length) === ((n = e == null || (r = e[0]) == null ? void 0 : r.length) == null ? 0 : n) ? t : t == null ? void 0 : t.filter((e) => !(e != null && e.optionalColumn)), o = a == null ? void 0 : a.map((e) => e == null ? void 0 : e.fieldName), s = (e) => Array.isArray(e) && e.length ? e[0] : "", c = a == null ? void 0 : a.map((e) => {
|
|
4426
4427
|
var t;
|
|
4427
4428
|
return (t = e == null ? void 0 : e.defaultUnit) == null ? s(e == null ? void 0 : e.validUnits) : t;
|
|
4428
|
-
}), { hasFieldNameHeader: l, hasUnitHeader: u } =
|
|
4429
|
+
}), { hasFieldNameHeader: l, hasUnitHeader: u } = Bc(e, o, a == null || (i = a.map((e) => e == null ? void 0 : e.validUnits)) == null || (i = i.filter((e) => !!e)) == null ? void 0 : i.flat());
|
|
4429
4430
|
return l || e == null || e.unshift(o), u || e == null || e.splice(1, 0, c), {
|
|
4430
4431
|
hasFieldNameHeader: l,
|
|
4431
4432
|
hasUnitHeader: u
|
|
4432
4433
|
};
|
|
4433
|
-
},
|
|
4434
|
+
}, Hc = (e) => Math.round(e * 100) / 100, Uc = (e) => e.join(", ").replace(/,\s*$/, ""), Wc = {
|
|
4434
4435
|
skipEmptyLines: !0,
|
|
4435
4436
|
delimiter: (e) => {
|
|
4436
4437
|
var t, n;
|
|
4437
4438
|
let r = e.substring(0, 200), i = ((t = r.match(/\t/g)) == null ? [] : t).length, a = ((n = r.match(/;/g)) == null ? [] : n).length;
|
|
4438
4439
|
return i === 0 && a === 0 ? "," : i > a ? " " : ";";
|
|
4439
4440
|
}
|
|
4440
|
-
},
|
|
4441
|
+
}, Gc = [
|
|
4441
4442
|
"text/csv",
|
|
4442
4443
|
"text/plain",
|
|
4443
4444
|
"application/json",
|
|
4444
4445
|
"application/vnd.ms-excel"
|
|
4445
|
-
],
|
|
4446
|
+
], Kc = (e) => Gc.includes(e.type), qc = (e) => e instanceof File, Jc = (e) => e.trim().startsWith("["), Yc = (e) => {
|
|
4446
4447
|
try {
|
|
4447
4448
|
var t;
|
|
4448
4449
|
return !!((t = JSON.parse(e)) != null && t.path);
|
|
4449
4450
|
} catch {
|
|
4450
4451
|
return !1;
|
|
4451
4452
|
}
|
|
4452
|
-
},
|
|
4453
|
+
}, Xc = (e) => new Promise((t, n) => {
|
|
4453
4454
|
let r = new FileReader();
|
|
4454
4455
|
r.onload = () => t(String(r.result)), r.onerror = n, r.readAsText(e);
|
|
4455
|
-
}),
|
|
4456
|
+
}), Zc = async (e, t, n) => {
|
|
4456
4457
|
try {
|
|
4457
|
-
return
|
|
4458
|
+
return il({
|
|
4458
4459
|
data: JSON.parse(e),
|
|
4459
4460
|
errors: []
|
|
4460
4461
|
}, t, n);
|
|
4461
4462
|
} catch (e) {
|
|
4462
4463
|
throw Error(`${n("jsonParseFailed")} ${e.message}`);
|
|
4463
4464
|
}
|
|
4464
|
-
},
|
|
4465
|
+
}, Qc = async (e, t, n) => {
|
|
4465
4466
|
try {
|
|
4466
4467
|
let r = JSON.parse(e).path.map((e) => [
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4468
|
+
Hc(e.md),
|
|
4469
|
+
Hc(e.inclination),
|
|
4470
|
+
Hc(e.gridAzimuth)
|
|
4470
4471
|
]);
|
|
4471
4472
|
return r.unshift([
|
|
4472
4473
|
"m",
|
|
4473
4474
|
"deg",
|
|
4474
4475
|
"deg"
|
|
4475
|
-
]),
|
|
4476
|
+
]), il({
|
|
4476
4477
|
data: r,
|
|
4477
4478
|
errors: []
|
|
4478
4479
|
}, t, n);
|
|
4479
4480
|
} catch (e) {
|
|
4480
4481
|
throw Error(`${n("jsonParseFailed")} ${e.message}`);
|
|
4481
4482
|
}
|
|
4482
|
-
},
|
|
4483
|
+
}, $c = (e) => e.replace(",", "."), el = (e) => e.map((e) => e.map((e) => $c(e))), tl = (e, { importLimit: t, ...n }, r) => new Promise((i) => {
|
|
4483
4484
|
cr.parse(e, {
|
|
4484
|
-
...
|
|
4485
|
+
...Wc,
|
|
4485
4486
|
preview: t,
|
|
4486
4487
|
complete: (e) => {
|
|
4487
|
-
let a =
|
|
4488
|
+
let a = il(e, {
|
|
4488
4489
|
importLimit: t,
|
|
4489
4490
|
...n
|
|
4490
4491
|
}, r);
|
|
4491
|
-
a.rows =
|
|
4492
|
+
a.rows = el(a.rows), i(a);
|
|
4492
4493
|
}
|
|
4493
4494
|
});
|
|
4494
|
-
}),
|
|
4495
|
+
}), nl = async (e, t, n) => {
|
|
4495
4496
|
let r = {
|
|
4496
4497
|
isValid: !1,
|
|
4497
4498
|
fields: [],
|
|
@@ -4500,13 +4501,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4500
4501
|
errors: []
|
|
4501
4502
|
};
|
|
4502
4503
|
try {
|
|
4503
|
-
if (
|
|
4504
|
-
let i =
|
|
4505
|
-
return
|
|
4504
|
+
if (qc(e) && !Kc(e)) return r.errors.push(`${n("wrongFileFormatExpectedOneOf")} ${Uc(Array.from(Gc))}`), r;
|
|
4505
|
+
let i = qc(e) ? await Xc(e) : e;
|
|
4506
|
+
return Jc(i) ? await Zc(i, t, n) : Yc(i) ? await Qc(i, t, n) : await tl(e, t, n);
|
|
4506
4507
|
} catch (e) {
|
|
4507
4508
|
return r.errors.push(e.message), r;
|
|
4508
4509
|
}
|
|
4509
|
-
},
|
|
4510
|
+
}, rl = (e, t, n, r) => {
|
|
4510
4511
|
var i;
|
|
4511
4512
|
let a = (i = r == null ? void 0 : r.delimiter) == null ? "," : i, o = [
|
|
4512
4513
|
e,
|
|
@@ -4518,7 +4519,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4518
4519
|
header: !0,
|
|
4519
4520
|
delimiter: a
|
|
4520
4521
|
});
|
|
4521
|
-
},
|
|
4522
|
+
}, il = (e, t, n) => {
|
|
4522
4523
|
let { data: r, errors: i } = e, a = {
|
|
4523
4524
|
isValid: !1,
|
|
4524
4525
|
fields: [],
|
|
@@ -4527,15 +4528,15 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4527
4528
|
errors: i.map((e) => e.message)
|
|
4528
4529
|
};
|
|
4529
4530
|
if (i.length > 0) return a;
|
|
4530
|
-
let { hasFieldNameHeader: o, hasUnitHeader: s } =
|
|
4531
|
+
let { hasFieldNameHeader: o, hasUnitHeader: s } = Vc(r, t);
|
|
4531
4532
|
a.fields = r[0].map((e) => e.trim()), a.units = r[1].map((e) => e.trim()).filter(Boolean), a.rows = r.slice(2);
|
|
4532
4533
|
let { validationRules: c } = t;
|
|
4533
4534
|
if (c.length) {
|
|
4534
|
-
let { isValid: e, errors: t } =
|
|
4535
|
+
let { isValid: e, errors: t } = zc(a.fields, a.units, a.rows, c, o, s, n);
|
|
4535
4536
|
a.errors.push(...t), a.isValid = e && t.length === 0;
|
|
4536
4537
|
} else a.isValid = a.errors.length === 0;
|
|
4537
4538
|
return a;
|
|
4538
|
-
},
|
|
4539
|
+
}, al = ({ id: e, message: t = {
|
|
4539
4540
|
type: oo.INFO,
|
|
4540
4541
|
content: ""
|
|
4541
4542
|
}, autoClose: n = 6e3, onClose: r }) => {
|
|
@@ -4576,22 +4577,22 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4576
4577
|
transition: lr,
|
|
4577
4578
|
type: s
|
|
4578
4579
|
});
|
|
4579
|
-
},
|
|
4580
|
+
}, ol = (e) => {
|
|
4580
4581
|
dr.dismiss(e);
|
|
4581
|
-
},
|
|
4582
|
+
}, sl = (e, t) => {
|
|
4582
4583
|
t(() => {
|
|
4583
|
-
|
|
4584
|
+
al({ ...e });
|
|
4584
4585
|
});
|
|
4585
|
-
},
|
|
4586
|
+
}, cl = {
|
|
4586
4587
|
toggle: "_toggle_18fme_9",
|
|
4587
4588
|
small: "_small_18fme_25",
|
|
4588
4589
|
disabled: "_disabled_18fme_105",
|
|
4589
4590
|
noMargin: "_noMargin_18fme_113",
|
|
4590
4591
|
helpIconEnabled: "_helpIconEnabled_18fme_116"
|
|
4591
|
-
},
|
|
4592
|
+
}, ll = ({ name: e, label: t, checked: n = !1, disabled: r, display: i, small: a = !1, onChange: o, noMargin: c = !1, testId: l, helpText: u, onClickHelp: d, textTransform: f = kr.CAPITALIZE }) => {
|
|
4592
4593
|
let p = s(U), m = u || d, h = r || p;
|
|
4593
4594
|
return /* @__PURE__ */ B("div", {
|
|
4594
|
-
className: g(
|
|
4595
|
+
className: g(cl.toggle, h ? cl.disabled : null, a ? cl.small : null, c ? cl.noMargin : null),
|
|
4595
4596
|
style: { display: i },
|
|
4596
4597
|
onClick: (t) => {
|
|
4597
4598
|
h || (t.target.name = e, t.target.checked = !n, t.target.value = !n, o(t));
|
|
@@ -4611,13 +4612,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4611
4612
|
children: t
|
|
4612
4613
|
}),
|
|
4613
4614
|
m && /* @__PURE__ */ z("div", {
|
|
4614
|
-
className:
|
|
4615
|
+
className: cl.helpIconEnabled,
|
|
4615
4616
|
onClick: d,
|
|
4616
4617
|
children: /* @__PURE__ */ z(ci, { text: u })
|
|
4617
4618
|
})
|
|
4618
4619
|
]
|
|
4619
4620
|
});
|
|
4620
|
-
},
|
|
4621
|
+
}, ul = ({ config: e, state: t, updateState: n, setModalVisibility: r, onCloseModal: i, readAndParseInput: a, validationRules: s = [], onCompleteImport: c = () => {}, prevalidationConfig: l, t: u, loading: d, startTransition: f, testId: h }) => {
|
|
4621
4622
|
let { modalVisibility: { reviewPasteModal: g, pasteModalHelpVisible: _, helpModal: v } } = t, { warningMessage: y, actionButtonLabel: b, changeRulesAction: x, checkPrevalidationNeed: S } = l == null ? {} : l, C = p(null), [w, T] = m(!1), [E, D] = m({
|
|
4622
4623
|
pastedText: "",
|
|
4623
4624
|
parsedResult: {
|
|
@@ -4640,8 +4641,8 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4640
4641
|
var n, r, i;
|
|
4641
4642
|
let t = sr(N == null || (n = N.rows) == null ? void 0 : n.map(([e, t]) => [Number(e), Number(t)]), .001).map(([e, t]) => [e.toString(), t.toString()]), a = {
|
|
4642
4643
|
validationRules: s,
|
|
4643
|
-
importLimit: (r = e.importLimit) == null ?
|
|
4644
|
-
}, o =
|
|
4644
|
+
importLimit: (r = e.importLimit) == null ? yc : r
|
|
4645
|
+
}, o = rl(N.fields.slice(0, 2), ((i = N.units) == null ? [] : i).slice(0, 2), t, a);
|
|
4645
4646
|
f(() => D({
|
|
4646
4647
|
parsedResult: {
|
|
4647
4648
|
...N,
|
|
@@ -4671,17 +4672,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4671
4672
|
}, A = () => {
|
|
4672
4673
|
r("helpModal", !v);
|
|
4673
4674
|
}, j = () => {
|
|
4674
|
-
n(E), c(E.parsedResult), i(),
|
|
4675
|
+
n(E), c(E.parsedResult), i(), sl({ message: {
|
|
4675
4676
|
type: "Success",
|
|
4676
4677
|
content: u("pasteSuccessful")
|
|
4677
4678
|
} }, f);
|
|
4678
|
-
}, { pastedText: M, parsedResult: N } = E, P = S && S(N), { isValid: F, errors: ee } = N, I = ee.length, te = M === "", ne =
|
|
4679
|
+
}, { pastedText: M, parsedResult: N } = E, P = S && S(N), { isValid: F, errors: ee } = N, I = ee.length, te = M === "", ne = Ac(M), re = kc(M), ie = /* @__PURE__ */ B(R, { children: [
|
|
4679
4680
|
/* @__PURE__ */ B("div", {
|
|
4680
4681
|
className: io.headerContainer,
|
|
4681
4682
|
children: [
|
|
4682
4683
|
/* @__PURE__ */ z(G, {
|
|
4683
4684
|
text: u("downsampleTooltip"),
|
|
4684
|
-
children: /* @__PURE__ */ z(
|
|
4685
|
+
children: /* @__PURE__ */ z(ll, {
|
|
4685
4686
|
label: u("downsampled"),
|
|
4686
4687
|
checked: w,
|
|
4687
4688
|
onChange: () => O(!w),
|
|
@@ -4714,7 +4715,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4714
4715
|
}),
|
|
4715
4716
|
te ? /* @__PURE__ */ z("div", {
|
|
4716
4717
|
className: io.resultContainer,
|
|
4717
|
-
children: /* @__PURE__ */ z(
|
|
4718
|
+
children: /* @__PURE__ */ z(Oc, {
|
|
4718
4719
|
text: null,
|
|
4719
4720
|
children: /* @__PURE__ */ B("div", {
|
|
4720
4721
|
className: io.emptyState,
|
|
@@ -4750,7 +4751,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4750
4751
|
}) : /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ B("div", {
|
|
4751
4752
|
className: io.messagesContainer,
|
|
4752
4753
|
children: [
|
|
4753
|
-
I ? /* @__PURE__ */ z(
|
|
4754
|
+
I ? /* @__PURE__ */ z(Ec, {
|
|
4754
4755
|
errors: ee,
|
|
4755
4756
|
t: u
|
|
4756
4757
|
}) : null,
|
|
@@ -4773,7 +4774,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4773
4774
|
type: "Warning"
|
|
4774
4775
|
} })
|
|
4775
4776
|
]
|
|
4776
|
-
}), /* @__PURE__ */ z(
|
|
4777
|
+
}), /* @__PURE__ */ z(Cc, {
|
|
4777
4778
|
validationRules: s,
|
|
4778
4779
|
parsedResult: N,
|
|
4779
4780
|
updateState: (e) => D((t) => ({
|
|
@@ -4815,7 +4816,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4815
4816
|
onClose: i
|
|
4816
4817
|
} })
|
|
4817
4818
|
});
|
|
4818
|
-
},
|
|
4819
|
+
}, dl = ({ modals: e = [], modalVisibility: n, onCloseModal: r, testId: i }) => e.length ? /* @__PURE__ */ z(R, { children: e.map(({ name: e, component: a, props: o = {} }) => {
|
|
4819
4820
|
var s;
|
|
4820
4821
|
return /* @__PURE__ */ z(t, { children: /* @__PURE__ */ z(a, {
|
|
4821
4822
|
testId: `${i}-modal-render-${e}`,
|
|
@@ -4823,7 +4824,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4823
4824
|
onClose: () => r({ name: e }),
|
|
4824
4825
|
...o
|
|
4825
4826
|
}) }, e);
|
|
4826
|
-
}) }) : null,
|
|
4827
|
+
}) }) : null, fl = ({ sections: e, iconName: t, testId: n, tooltip: r }) => /* @__PURE__ */ z(Ji, {
|
|
4827
4828
|
loading: !0,
|
|
4828
4829
|
menu: {
|
|
4829
4830
|
component: /* @__PURE__ */ z(K, {
|
|
@@ -4839,18 +4840,18 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4839
4840
|
sections: e
|
|
4840
4841
|
},
|
|
4841
4842
|
testId: n
|
|
4842
|
-
}),
|
|
4843
|
+
}), pl = (e, t, n) => o(async () => {
|
|
4843
4844
|
if (n) try {
|
|
4844
4845
|
return await n();
|
|
4845
4846
|
} catch (t) {
|
|
4846
|
-
console.error("beforeExportData failed", t),
|
|
4847
|
+
console.error("beforeExportData failed", t), al({ message: {
|
|
4847
4848
|
type: "Error",
|
|
4848
4849
|
content: e("unableToPrepareExportData")
|
|
4849
4850
|
} });
|
|
4850
4851
|
return;
|
|
4851
4852
|
}
|
|
4852
4853
|
return t;
|
|
4853
|
-
}, [t, n]),
|
|
4854
|
+
}, [t, n]), ml = {
|
|
4854
4855
|
cancel: "Cancel",
|
|
4855
4856
|
chooseFile: "Choose file",
|
|
4856
4857
|
copyDecimalComma: "Copy (decimal comma)",
|
|
@@ -4909,26 +4910,26 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4909
4910
|
smartUpload_description: "Upload image and extract table content using a LLM",
|
|
4910
4911
|
smartUpload_smartUpload: "Smart Upload",
|
|
4911
4912
|
toUploadOrImportFromClipboardMessage: "To upload or import from clipboard please select your preferred unit in the table header and upload or paste numbers only for Depth, Inc, Azi. Follow example below"
|
|
4912
|
-
},
|
|
4913
|
-
let t = Object.keys(
|
|
4914
|
-
let r =
|
|
4913
|
+
}, hl = (e, t = {}) => e == null ? void 0 : e.replace(/\{\{(\w+)\}\}/g, (e, n) => (t == null ? void 0 : t[n]) === void 0 ? "" : String(t == null ? void 0 : t[n])), gl = (e) => d(() => {
|
|
4914
|
+
let t = Object.keys(ml).reduce((t, n) => {
|
|
4915
|
+
let r = ml == null ? void 0 : ml[n], i = e == null ? void 0 : e[n];
|
|
4915
4916
|
return t[n] = i == null ? r : i, t;
|
|
4916
4917
|
}, {});
|
|
4917
4918
|
return (e, n) => {
|
|
4918
4919
|
let r = t[e];
|
|
4919
|
-
return n ?
|
|
4920
|
+
return n ? hl(r, n) : r;
|
|
4920
4921
|
};
|
|
4921
|
-
}, [e]),
|
|
4922
|
+
}, [e]), _l = /^\s*-?\d+(?:[.,]\d+)?(?:e[+-]?\d+)?\s*$/i, vl = (e) => {
|
|
4922
4923
|
var t;
|
|
4923
4924
|
return {
|
|
4924
4925
|
...e,
|
|
4925
4926
|
rows: e == null || (t = e.rows) == null ? void 0 : t.map((e) => e.map((e) => {
|
|
4926
4927
|
let t = String(e == null ? "" : e);
|
|
4927
|
-
return
|
|
4928
|
+
return _l.test(t) ? Tn(t) : t;
|
|
4928
4929
|
}))
|
|
4929
4930
|
};
|
|
4930
|
-
},
|
|
4931
|
-
let { exportData: a, beforeExportData: s, importLimit: c =
|
|
4931
|
+
}, yl = ({ config: e, state: t, setState: n, smartUploadConfig: r, startTransition: i }) => {
|
|
4932
|
+
let { exportData: a, beforeExportData: s, importLimit: c = yc, validationRules: l = [], translations: u, onImportComplete: d = () => {}, disablePasteSuccessfulToast: f, prevalidationConfig: p, onDeleteRows: m } = e == null ? {} : e, { parsedResult: h } = t, { checkPrevalidationNeed: g } = p == null ? {} : p, _ = gl(u), v = pl(_, a, s), y = o((e) => {
|
|
4932
4933
|
n((t) => ({
|
|
4933
4934
|
...t,
|
|
4934
4935
|
...e
|
|
@@ -4972,9 +4973,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
4972
4973
|
let t = {
|
|
4973
4974
|
validationRules: l,
|
|
4974
4975
|
importLimit: c
|
|
4975
|
-
}, n =
|
|
4976
|
+
}, n = vl(await nl(e, t, _));
|
|
4976
4977
|
if (g && g(h)) {
|
|
4977
|
-
let { fields: e, units: r, rows: a } = n, o =
|
|
4978
|
+
let { fields: e, units: r, rows: a } = n, o = rl(e, r == null ? [] : r, a, t);
|
|
4978
4979
|
return i(() => y({
|
|
4979
4980
|
pastedText: o,
|
|
4980
4981
|
parsedResult: h
|
|
@@ -5000,20 +5001,20 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5000
5001
|
let { fromFile: t, showSuccessToast: n = !0 } = e == null ? {} : e, r;
|
|
5001
5002
|
try {
|
|
5002
5003
|
if (r = t ? await t.text() : await navigator.clipboard.readText(), !r) {
|
|
5003
|
-
|
|
5004
|
+
sl({ message: {
|
|
5004
5005
|
type: "Error",
|
|
5005
5006
|
content: _(t ? "fileReadOrParseFailed" : "clipboardReadNotAllowed")
|
|
5006
5007
|
} }, i);
|
|
5007
5008
|
return;
|
|
5008
5009
|
}
|
|
5009
|
-
let e =
|
|
5010
|
+
let e = vl(await nl(r, {
|
|
5010
5011
|
validationRules: l,
|
|
5011
5012
|
importLimit: c
|
|
5012
5013
|
}, _));
|
|
5013
|
-
return e != null && e.isValid ||
|
|
5014
|
+
return e != null && e.isValid || sl({ message: {
|
|
5014
5015
|
type: "Error",
|
|
5015
5016
|
content: _("clipboardReadFailed")
|
|
5016
|
-
} }, i), n &&
|
|
5017
|
+
} }, i), n && sl({ message: {
|
|
5017
5018
|
type: "Success",
|
|
5018
5019
|
content: _("pasteSuccessful")
|
|
5019
5020
|
} }, i), {
|
|
@@ -5021,7 +5022,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5021
5022
|
parsedResult: e
|
|
5022
5023
|
};
|
|
5023
5024
|
} catch (e) {
|
|
5024
|
-
|
|
5025
|
+
sl({ message: {
|
|
5025
5026
|
type: "Error",
|
|
5026
5027
|
content: _(t ? "fileReadOrParseFailed" : "clipboardReadNotAllowed"),
|
|
5027
5028
|
details: e.message
|
|
@@ -5034,10 +5035,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5034
5035
|
let n = e == null || (t = e.target) == null || (t = t.files) == null ? void 0 : t[0];
|
|
5035
5036
|
if (!n) return;
|
|
5036
5037
|
let r = await C(await n.text());
|
|
5037
|
-
r.isValid ? (f ||
|
|
5038
|
+
r.isValid ? (f || sl({ message: {
|
|
5038
5039
|
type: "Success",
|
|
5039
5040
|
content: _("pasteSuccessful")
|
|
5040
|
-
} }, i), i(() => d(r))) :
|
|
5041
|
+
} }, i), i(() => d(r))) : sl({ message: {
|
|
5041
5042
|
type: "Error",
|
|
5042
5043
|
content: _("fileParsingFailed")
|
|
5043
5044
|
} }, i);
|
|
@@ -5051,7 +5052,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5051
5052
|
try {
|
|
5052
5053
|
let t = await navigator.clipboard.readText();
|
|
5053
5054
|
if (!t) {
|
|
5054
|
-
|
|
5055
|
+
sl({ message: {
|
|
5055
5056
|
type: "Error",
|
|
5056
5057
|
content: _("clipboardIsEmpty")
|
|
5057
5058
|
} }, i);
|
|
@@ -5059,18 +5060,18 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5059
5060
|
}
|
|
5060
5061
|
let n = await C(t);
|
|
5061
5062
|
if (!n.isValid) {
|
|
5062
|
-
|
|
5063
|
+
sl({ message: {
|
|
5063
5064
|
type: "Error",
|
|
5064
5065
|
content: _("clipboardReadFailed")
|
|
5065
5066
|
} }, i);
|
|
5066
5067
|
return;
|
|
5067
5068
|
}
|
|
5068
|
-
f ||
|
|
5069
|
+
f || sl({ message: {
|
|
5069
5070
|
type: "Success",
|
|
5070
5071
|
content: _("pasteSuccessful")
|
|
5071
5072
|
} }, i), e && i(() => d(n));
|
|
5072
5073
|
} catch {
|
|
5073
|
-
|
|
5074
|
+
sl({ message: {
|
|
5074
5075
|
type: "Error",
|
|
5075
5076
|
content: _("clipboardReadNotAllowed")
|
|
5076
5077
|
} }, i);
|
|
@@ -5085,14 +5086,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5085
5086
|
onClickCopyClipboard: o(async (e) => {
|
|
5086
5087
|
let t = await v();
|
|
5087
5088
|
if (!t) return;
|
|
5088
|
-
let { fields: n = [], units: r = [], rows: a = [] } = t, o = (r == null ? [] : r).map((e) => e != null && e.length ? e :
|
|
5089
|
+
let { fields: n = [], units: r = [], rows: a = [] } = t, o = (r == null ? [] : r).map((e) => e != null && e.length ? e : vc).slice(0, n.length), s = (e, t) => t === "comma" ? e.replace(/\./g, ",") : e, c = rl(n, o, a.map((t) => t.map((t) => fr(t) ? "" : s(t.toString(), e))), { delimiter: " " });
|
|
5089
5090
|
try {
|
|
5090
|
-
await navigator.clipboard.writeText(c),
|
|
5091
|
+
await navigator.clipboard.writeText(c), sl({ message: {
|
|
5091
5092
|
type: "Success",
|
|
5092
5093
|
content: _("copiedToClipboard")
|
|
5093
5094
|
} }, i);
|
|
5094
5095
|
} catch (e) {
|
|
5095
|
-
|
|
5096
|
+
sl({ message: {
|
|
5096
5097
|
type: "Error",
|
|
5097
5098
|
content: _("unableToCopyToClipboard"),
|
|
5098
5099
|
details: e.message
|
|
@@ -5102,14 +5103,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5102
5103
|
onSmartUploadResult: o((e) => {
|
|
5103
5104
|
let t = un(e) && dn(e.errorMessage) ? e.errorMessage : void 0;
|
|
5104
5105
|
if (t) {
|
|
5105
|
-
|
|
5106
|
+
sl({ message: {
|
|
5106
5107
|
type: "Error",
|
|
5107
5108
|
content: t || "Smart upload failed."
|
|
5108
5109
|
} }, i);
|
|
5109
5110
|
return;
|
|
5110
5111
|
}
|
|
5111
5112
|
if (!tn(e) || e.length < 2 || !$t(e, (e) => un(e) && $t(_n(e), dn))) {
|
|
5112
|
-
|
|
5113
|
+
sl({ message: {
|
|
5113
5114
|
type: "Error",
|
|
5114
5115
|
content: "Smart upload returned unexpected format.",
|
|
5115
5116
|
details: JSON.stringify(e)
|
|
@@ -5141,14 +5142,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5141
5142
|
]),
|
|
5142
5143
|
deleteAllRows: x
|
|
5143
5144
|
};
|
|
5144
|
-
},
|
|
5145
|
+
}, bl = (e, t) => {
|
|
5145
5146
|
var n, r;
|
|
5146
|
-
let { fields: i, rows: a } = e, o =
|
|
5147
|
+
let { fields: i, rows: a } = e, o = rl(i, (n = (r = e.units) == null ? void 0 : r.map((e) => e || "blank")) == null ? [] : n, a, { delimiter: " " }), s = new Blob([o], { type: "text/plain" }), c = document.createElement("a");
|
|
5147
5148
|
c.href = window.URL.createObjectURL(s), c.download = `${t}.csv`, document.body.appendChild(c), c.click(), document.body.removeChild(c);
|
|
5148
|
-
},
|
|
5149
|
+
}, xl = (e) => ln(e) && "modalKey" in e, Sl = (e, t, n) => Zt(e, (e) => {
|
|
5149
5150
|
if (tn(e) || !un(e)) return;
|
|
5150
5151
|
let { modalKey: r } = e == null ? {} : e;
|
|
5151
|
-
if (
|
|
5152
|
+
if (xl(e) && typeof e.onClick != "function") {
|
|
5152
5153
|
let i = () => {
|
|
5153
5154
|
var e;
|
|
5154
5155
|
n(r, !((e = t.modalVisibility) != null && e[r]));
|
|
@@ -5158,7 +5159,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5158
5159
|
onClick: i
|
|
5159
5160
|
};
|
|
5160
5161
|
}
|
|
5161
|
-
}),
|
|
5162
|
+
}), Cl = (e, t, n) => Sl(e, t, n), wl = {
|
|
5162
5163
|
pastedText: "",
|
|
5163
5164
|
parsedResult: {
|
|
5164
5165
|
isValid: !1,
|
|
@@ -5173,9 +5174,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5173
5174
|
reviewPasteModal: !1,
|
|
5174
5175
|
helpModal: !1
|
|
5175
5176
|
}
|
|
5176
|
-
},
|
|
5177
|
+
}, Tl = ({ config: e, smartUploadConfig: t, testId: n }) => {
|
|
5177
5178
|
var r, i, a, o;
|
|
5178
|
-
let { exportData: s, beforeExportData: c, prevalidationConfig: l, validationRules: u, title: d, translations: f, textOnly: p = !1, showImportOptions: g = !0, copyFromClipBoard: _ = !0, showDeleteOptions: v = !0, showHelpOption: y = !0, showUploadFileOption: b = !0, modals: x = [], dynamicOptions: S, onImportComplete: C } = e == null ? {} : e, [w, T] = m(
|
|
5179
|
+
let { exportData: s, beforeExportData: c, prevalidationConfig: l, validationRules: u, title: d, translations: f, textOnly: p = !1, showImportOptions: g = !0, copyFromClipBoard: _ = !0, showDeleteOptions: v = !0, showHelpOption: y = !0, showUploadFileOption: b = !0, modals: x = [], dynamicOptions: S, onImportComplete: C } = e == null ? {} : e, [w, T] = m(wl), { modalVisibility: { smartUploadModal: E = !1, reviewPasteModal: D = !1, helpModal: O = !1 } } = w, { enabled: k, prompt: A = "", onClose: j, onError: M, service: N = () => Promise.resolve() } = t == null ? {} : t, P = gl(f), F = pl(P, s, c), [ee, I] = h(), te = yl({
|
|
5179
5180
|
config: e,
|
|
5180
5181
|
state: w,
|
|
5181
5182
|
setState: T,
|
|
@@ -5210,14 +5211,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5210
5211
|
onClick: () => ae("smartUploadModal", !E),
|
|
5211
5212
|
testId: `${n}-smart-upload`
|
|
5212
5213
|
}] : [],
|
|
5213
|
-
...
|
|
5214
|
+
...Cl((r = S == null ? void 0 : S.importOptions) == null ? [] : r, w, ae)
|
|
5214
5215
|
] : [], de = [
|
|
5215
5216
|
{
|
|
5216
5217
|
type: "Option",
|
|
5217
5218
|
label: P("downloadFile"),
|
|
5218
5219
|
onClick: async () => {
|
|
5219
5220
|
let e = await F();
|
|
5220
|
-
e && e &&
|
|
5221
|
+
e && e && bl(e, d);
|
|
5221
5222
|
}
|
|
5222
5223
|
},
|
|
5223
5224
|
...p ? [{
|
|
@@ -5242,20 +5243,20 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5242
5243
|
}]
|
|
5243
5244
|
}
|
|
5244
5245
|
}],
|
|
5245
|
-
...
|
|
5246
|
+
...Cl((i = S == null ? void 0 : S.exportOptions) == null ? [] : i, w, ae)
|
|
5246
5247
|
], fe = v ? [{
|
|
5247
5248
|
type: "Option",
|
|
5248
5249
|
label: P("deleteAllRows"),
|
|
5249
5250
|
onClick: () => le(),
|
|
5250
5251
|
testId: `${n}-delete-all-rows`
|
|
5251
|
-
}, ...
|
|
5252
|
+
}, ...Cl((a = S == null ? void 0 : S.deleteOptions) == null ? [] : a, w, ae)] : [], pe = y ? [
|
|
5252
5253
|
{ type: "Divider" },
|
|
5253
5254
|
{
|
|
5254
5255
|
type: "Option",
|
|
5255
5256
|
label: P("help"),
|
|
5256
5257
|
onClick: () => ae("helpModal", !O)
|
|
5257
5258
|
},
|
|
5258
|
-
...
|
|
5259
|
+
...Cl((o = S == null ? void 0 : S.helpOptions) == null ? [] : o, w, ae)
|
|
5259
5260
|
] : [], me = [
|
|
5260
5261
|
...ue.length ? [{
|
|
5261
5262
|
section: [...ue, ...pe],
|
|
@@ -5281,13 +5282,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5281
5282
|
small: !0,
|
|
5282
5283
|
dark: !0
|
|
5283
5284
|
}),
|
|
5284
|
-
me.map((e, t) => /* @__PURE__ */ z(
|
|
5285
|
+
me.map((e, t) => /* @__PURE__ */ z(fl, {
|
|
5285
5286
|
sections: e.section,
|
|
5286
5287
|
iconName: e.iconName,
|
|
5287
5288
|
tooltip: e.tooltip,
|
|
5288
5289
|
testId: `data-${e == null ? void 0 : e.name}-menu`
|
|
5289
5290
|
}, t)),
|
|
5290
|
-
D && /* @__PURE__ */ z(
|
|
5291
|
+
D && /* @__PURE__ */ z(ul, {
|
|
5291
5292
|
config: e,
|
|
5292
5293
|
state: w,
|
|
5293
5294
|
updateState: re,
|
|
@@ -5323,14 +5324,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5323
5324
|
cancelText: P("cancel"),
|
|
5324
5325
|
testId: n
|
|
5325
5326
|
}),
|
|
5326
|
-
/* @__PURE__ */ z(
|
|
5327
|
+
/* @__PURE__ */ z(dl, {
|
|
5327
5328
|
modals: x,
|
|
5328
5329
|
modalVisibility: w == null ? void 0 : w.modalVisibility,
|
|
5329
5330
|
onCloseModal: ie,
|
|
5330
5331
|
testId: n
|
|
5331
5332
|
})
|
|
5332
5333
|
] });
|
|
5333
|
-
},
|
|
5334
|
+
}, El = ({ file: e, accept: t, multi: n, name: r, disabled: i, onChange: a = pn, ...o }) => {
|
|
5334
5335
|
let c = s(U), l = p(null), u = () => {
|
|
5335
5336
|
var e;
|
|
5336
5337
|
i || c || (e = l.current) == null || e.click();
|
|
@@ -5358,12 +5359,12 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5358
5359
|
multiple: n,
|
|
5359
5360
|
onChange: d
|
|
5360
5361
|
})] });
|
|
5361
|
-
},
|
|
5362
|
+
}, Dl = {
|
|
5362
5363
|
label: "_label_uxk69_1",
|
|
5363
5364
|
labelLeft: "_labelLeft_uxk69_5",
|
|
5364
5365
|
icons: "_icons_uxk69_13",
|
|
5365
5366
|
small: "_small_uxk69_27"
|
|
5366
|
-
},
|
|
5367
|
+
}, Ol = ({ label: e = null, width: t = "auto", helpText: n = "", helpTextMaxWidth: r = "300px", onClickHelp: i = void 0, lock: a = {
|
|
5367
5368
|
visible: !1,
|
|
5368
5369
|
active: !1,
|
|
5369
5370
|
onClick: () => {},
|
|
@@ -5372,14 +5373,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5372
5373
|
}, info: o, libraryIcon: s, labelLeft: c = !1, small: l = !1, textTransform: u = kr.CAPITALIZE }) => {
|
|
5373
5374
|
var d;
|
|
5374
5375
|
return /* @__PURE__ */ z("div", {
|
|
5375
|
-
className: g(
|
|
5376
|
+
className: g(Dl.label, c ? Dl.labelLeft : "", l ? Dl.small : ""),
|
|
5376
5377
|
children: /* @__PURE__ */ B("label", {
|
|
5377
5378
|
style: {
|
|
5378
5379
|
textTransform: u,
|
|
5379
5380
|
width: t || ""
|
|
5380
5381
|
},
|
|
5381
5382
|
children: [e, /* @__PURE__ */ B("div", {
|
|
5382
|
-
className:
|
|
5383
|
+
className: Dl.icons,
|
|
5383
5384
|
children: [
|
|
5384
5385
|
(n || i) && /* @__PURE__ */ z(ci, {
|
|
5385
5386
|
text: n,
|
|
@@ -5405,23 +5406,23 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5405
5406
|
})]
|
|
5406
5407
|
})
|
|
5407
5408
|
});
|
|
5408
|
-
},
|
|
5409
|
+
}, kl = {
|
|
5409
5410
|
field: "_field_1xoss_1",
|
|
5410
5411
|
labelLeft: "_labelLeft_1xoss_5",
|
|
5411
5412
|
fieldInput: "_fieldInput_1xoss_9",
|
|
5412
5413
|
formRow: "_formRow_1xoss_12",
|
|
5413
5414
|
"form-row": "_form-row_1xoss_13",
|
|
5414
5415
|
button: "_button_1xoss_22"
|
|
5415
|
-
},
|
|
5416
|
+
}, Al = ({ label: e, labelLeft: t = !1, labelWidth: n = "auto", children: r, helpText: i, helpTextMaxWidth: a = "300px", onClickHelp: o, lock: s = {
|
|
5416
5417
|
visible: !1,
|
|
5417
5418
|
active: !1,
|
|
5418
5419
|
onClick: () => {},
|
|
5419
5420
|
tooltip: "",
|
|
5420
5421
|
testId: void 0
|
|
5421
5422
|
}, info: c, libraryIcon: l, small: u = !1, testId: d, textTransform: f = kr.CAPITALIZE }) => /* @__PURE__ */ B("div", {
|
|
5422
|
-
className: g(
|
|
5423
|
+
className: g(kl.field, t ? kl.labelLeft : ""),
|
|
5423
5424
|
"data-testid": d,
|
|
5424
|
-
children: [(e || t) && /* @__PURE__ */ z(
|
|
5425
|
+
children: [(e || t) && /* @__PURE__ */ z(Ol, {
|
|
5425
5426
|
label: e,
|
|
5426
5427
|
width: n,
|
|
5427
5428
|
helpText: i,
|
|
@@ -5434,10 +5435,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5434
5435
|
small: u,
|
|
5435
5436
|
textTransform: f
|
|
5436
5437
|
}), /* @__PURE__ */ z("div", {
|
|
5437
|
-
className:
|
|
5438
|
+
className: kl.fieldInput,
|
|
5438
5439
|
children: r
|
|
5439
5440
|
})]
|
|
5440
|
-
}),
|
|
5441
|
+
}), jl = ({ alignItems: e = "initial", justifyContent: t = "initial", direction: n = "initial", height: r = "initial", width: i = "initial", children: a = null, wrap: o = !0, gap: s = !1 }) => /* @__PURE__ */ z("div", {
|
|
5441
5442
|
style: {
|
|
5442
5443
|
display: "flex",
|
|
5443
5444
|
flexDirection: n,
|
|
@@ -5449,24 +5450,24 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5449
5450
|
gap: s === !1 ? 0 : s === !0 ? "var(--padding)" : typeof s == "number" ? `${s}px` : s
|
|
5450
5451
|
},
|
|
5451
5452
|
children: a
|
|
5452
|
-
}),
|
|
5453
|
-
className:
|
|
5453
|
+
}), Ml = { formRow: "_formRow_odewu_1" }, Nl = ({ children: e }) => /* @__PURE__ */ z("div", {
|
|
5454
|
+
className: Ml.formRow,
|
|
5454
5455
|
children: e
|
|
5455
|
-
}),
|
|
5456
|
+
}), Pl = (e) => typeof e == "boolean" ? e ? "20px" : "0px" : typeof e == "number" ? `${e}px` : e || "initial", Fl = (e) => typeof e == "number" ? `${e}px` : e || "initial", Il = vn.div`
|
|
5456
5457
|
display: grid;
|
|
5457
|
-
gap: ${(e) =>
|
|
5458
|
-
grid-template-rows: ${(e) =>
|
|
5459
|
-
grid-template-columns: ${(e) =>
|
|
5460
|
-
height: ${(e) =>
|
|
5458
|
+
gap: ${(e) => Pl(e.$gap)};
|
|
5459
|
+
grid-template-rows: ${(e) => Fl(e.$rows)};
|
|
5460
|
+
grid-template-columns: ${(e) => Fl(e.$columns)};
|
|
5461
|
+
height: ${(e) => Fl(e.$height)};
|
|
5461
5462
|
|
|
5462
5463
|
@media (max-width: 992px) {
|
|
5463
|
-
${(e) => e.$columnsTablet && `grid-template-columns: ${
|
|
5464
|
+
${(e) => e.$columnsTablet && `grid-template-columns: ${Fl(e.$columnsTablet)};`}
|
|
5464
5465
|
}
|
|
5465
5466
|
|
|
5466
5467
|
@media (max-width: 575px) {
|
|
5467
|
-
${(e) => e.$columnsMobile && `grid-template-columns: ${
|
|
5468
|
+
${(e) => e.$columnsMobile && `grid-template-columns: ${Fl(e.$columnsMobile)};`}
|
|
5468
5469
|
}
|
|
5469
|
-
`,
|
|
5470
|
+
`, Ll = ({ rows: e = "initial", columns: t = "initial", columnsTablet: n = null, columnsMobile: r = null, gap: i = !1, height: a = "initial", children: o }) => /* @__PURE__ */ z(Il, {
|
|
5470
5471
|
$rows: e,
|
|
5471
5472
|
$columns: t,
|
|
5472
5473
|
$columnsTablet: n,
|
|
@@ -5517,15 +5518,15 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5517
5518
|
hideScrollbar: "_hideScrollbar_1dcn1_67",
|
|
5518
5519
|
noPointerEvents: "_noPointerEvents_1dcn1_309",
|
|
5519
5520
|
virtualRows: "_virtualRows_1dcn1_312"
|
|
5520
|
-
},
|
|
5521
|
+
}, Rl = ({ toggleNarrow: e, onClickToggleNarrow: t }) => e ? /* @__PURE__ */ z("a", {
|
|
5521
5522
|
className: Z.toggleNarrow,
|
|
5522
5523
|
onClick: t,
|
|
5523
5524
|
children: /* @__PURE__ */ z(W, { icon: H.CHEVRON_LEFT })
|
|
5524
|
-
}) : null,
|
|
5525
|
+
}) : null, zl = r(({ name: e, actions: t = [], toggleNarrow: n = !1, onToggleNarrow: r = () => {}, stickyHeader: i }, a) => /* @__PURE__ */ B("div", {
|
|
5525
5526
|
ref: a,
|
|
5526
5527
|
className: g(Z.header, i ? Z.stickyHeader : ""),
|
|
5527
5528
|
children: [
|
|
5528
|
-
/* @__PURE__ */ z(
|
|
5529
|
+
/* @__PURE__ */ z(Rl, {
|
|
5529
5530
|
toggleNarrow: n,
|
|
5530
5531
|
onClickToggleNarrow: r
|
|
5531
5532
|
}),
|
|
@@ -5545,14 +5546,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5545
5546
|
})
|
|
5546
5547
|
})
|
|
5547
5548
|
]
|
|
5548
|
-
})),
|
|
5549
|
+
})), Bl = ({ label: e }) => e ? /* @__PURE__ */ z("span", {
|
|
5549
5550
|
className: Z.label,
|
|
5550
5551
|
children: /* @__PURE__ */ z(Ii, {
|
|
5551
5552
|
color: e.color,
|
|
5552
5553
|
title: e.value,
|
|
5553
5554
|
small: e.small
|
|
5554
5555
|
})
|
|
5555
|
-
}) : null,
|
|
5556
|
+
}) : null, Vl = ({ name: e, icon: t, testId: n }) => {
|
|
5556
5557
|
let r = t && /* @__PURE__ */ z(W, {
|
|
5557
5558
|
icon: t.icon,
|
|
5558
5559
|
color: t.color || "#db2828"
|
|
@@ -5572,8 +5573,8 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5572
5573
|
children: r
|
|
5573
5574
|
})]
|
|
5574
5575
|
});
|
|
5575
|
-
},
|
|
5576
|
-
let { name: t, icon: n, details: r, metadata: i, invalid: a, testId: o } = e, s = /* @__PURE__ */ z(
|
|
5576
|
+
}, Hl = ({ item: e }) => {
|
|
5577
|
+
let { name: t, icon: n, details: r, metadata: i, invalid: a, testId: o } = e, s = /* @__PURE__ */ z(Vl, {
|
|
5577
5578
|
name: t,
|
|
5578
5579
|
icon: n,
|
|
5579
5580
|
testId: o && `${o}-name`
|
|
@@ -5599,10 +5600,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5599
5600
|
})
|
|
5600
5601
|
]
|
|
5601
5602
|
});
|
|
5602
|
-
},
|
|
5603
|
+
}, Ul = ({ item: e }) => e.metaCount === void 0 ? null : /* @__PURE__ */ z(Ii, {
|
|
5603
5604
|
color: "rgba(0,0,0,0.25)",
|
|
5604
5605
|
title: e.metaCount
|
|
5605
|
-
}),
|
|
5606
|
+
}), Wl = ({ item: e, expanding: t }) => /* @__PURE__ */ z(Gr, {
|
|
5606
5607
|
expanded: !!t && !!e.active && !!e.content,
|
|
5607
5608
|
children: /* @__PURE__ */ z("div", {
|
|
5608
5609
|
className: Z.itemContent,
|
|
@@ -5611,7 +5612,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5611
5612
|
},
|
|
5612
5613
|
children: e.content
|
|
5613
5614
|
})
|
|
5614
|
-
}),
|
|
5615
|
+
}), Gl = r(({ item: e, index: t }, n) => {
|
|
5615
5616
|
var r;
|
|
5616
5617
|
let i = s(U), { actions: a, disabled: o, expanded: c, onClick: l, title: u, name: d, icon: f, testId: p } = e;
|
|
5617
5618
|
return /* @__PURE__ */ z("div", {
|
|
@@ -5631,13 +5632,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5631
5632
|
className: g(Z.expandIcon, c && Z.expanded),
|
|
5632
5633
|
children: /* @__PURE__ */ z(W, { icon: H.CHEVRON_RIGHT })
|
|
5633
5634
|
}),
|
|
5634
|
-
/* @__PURE__ */ z(
|
|
5635
|
+
/* @__PURE__ */ z(Vl, {
|
|
5635
5636
|
name: d,
|
|
5636
5637
|
icon: f
|
|
5637
5638
|
}),
|
|
5638
5639
|
/* @__PURE__ */ B("div", {
|
|
5639
5640
|
className: Z.right,
|
|
5640
|
-
children: [/* @__PURE__ */ z(
|
|
5641
|
+
children: [/* @__PURE__ */ z(Ul, { item: e }), !(o || i) && a && /* @__PURE__ */ z("div", {
|
|
5641
5642
|
className: Z.actions,
|
|
5642
5643
|
children: /* @__PURE__ */ z(Xi, { actions: (r = e.actions) == null ? [] : r })
|
|
5643
5644
|
})]
|
|
@@ -5645,7 +5646,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5645
5646
|
]
|
|
5646
5647
|
}) })
|
|
5647
5648
|
});
|
|
5648
|
-
}),
|
|
5649
|
+
}), Kl = r(({ item: e, index: t, expanding: n, invokeEditOnRowClick: r, draggable: i }, a) => {
|
|
5649
5650
|
let o = s(U), c = (e, t, s, c, l, u) => {
|
|
5650
5651
|
let d = t.actions && t.actions.find((e) => {
|
|
5651
5652
|
var t;
|
|
@@ -5681,24 +5682,24 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5681
5682
|
className: Z.indentIcon,
|
|
5682
5683
|
children: /* @__PURE__ */ z(W, { icon: H.INDENT })
|
|
5683
5684
|
}) : null,
|
|
5684
|
-
/* @__PURE__ */ z(
|
|
5685
|
-
/* @__PURE__ */ z(
|
|
5685
|
+
/* @__PURE__ */ z(Bl, { label: t.label }),
|
|
5686
|
+
/* @__PURE__ */ z(Hl, { item: t }),
|
|
5686
5687
|
/* @__PURE__ */ B("div", {
|
|
5687
5688
|
className: Z.right,
|
|
5688
|
-
children: [/* @__PURE__ */ z(
|
|
5689
|
+
children: [/* @__PURE__ */ z(Ul, { item: t }), !(t.disabled || o) && t.actions && /* @__PURE__ */ z("div", {
|
|
5689
5690
|
className: Z.actions,
|
|
5690
5691
|
children: /* @__PURE__ */ z(Xi, { actions: t.actions })
|
|
5691
5692
|
})]
|
|
5692
5693
|
})
|
|
5693
5694
|
]
|
|
5694
|
-
}), /* @__PURE__ */ z(
|
|
5695
|
+
}), /* @__PURE__ */ z(Wl, {
|
|
5695
5696
|
item: t,
|
|
5696
5697
|
expanding: n
|
|
5697
5698
|
})]
|
|
5698
5699
|
})
|
|
5699
5700
|
}, e);
|
|
5700
5701
|
};
|
|
5701
|
-
return e.type === "Heading" ? /* @__PURE__ */ z(
|
|
5702
|
+
return e.type === "Heading" ? /* @__PURE__ */ z(Gl, {
|
|
5702
5703
|
ref: a,
|
|
5703
5704
|
item: e,
|
|
5704
5705
|
index: t
|
|
@@ -5713,7 +5714,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5713
5714
|
opacity: +!s
|
|
5714
5715
|
}, n, r, i);
|
|
5715
5716
|
})(t, e) : c(t, e);
|
|
5716
|
-
}),
|
|
5717
|
+
}), ql = ({ children: e, draggable: t, list: n, onListReorder: r }) => {
|
|
5717
5718
|
let [i, a] = m(null), o = (e) => {
|
|
5718
5719
|
a(e.active.id);
|
|
5719
5720
|
}, s = (e) => {
|
|
@@ -5736,7 +5737,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5736
5737
|
dropAnimation: null,
|
|
5737
5738
|
children: /* @__PURE__ */ z("div", {
|
|
5738
5739
|
className: Z.dragOverlay,
|
|
5739
|
-
children: /* @__PURE__ */ z(
|
|
5740
|
+
children: /* @__PURE__ */ z(Kl, {
|
|
5740
5741
|
draggable: t,
|
|
5741
5742
|
item: n.items[Number(i)],
|
|
5742
5743
|
index: Number(i)
|
|
@@ -5744,7 +5745,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5744
5745
|
})
|
|
5745
5746
|
}), document.body)]
|
|
5746
5747
|
}) : e;
|
|
5747
|
-
},
|
|
5748
|
+
}, Jl = ({ items: e, scrollDetails: t, children: n }) => {
|
|
5748
5749
|
let { scrollable: r, hideScrollbar: i, triggerScrollToActiveItem: a, infiniteScroll: s } = t, l = p(null), u = or({
|
|
5749
5750
|
count: e.length,
|
|
5750
5751
|
getScrollElement: () => l.current,
|
|
@@ -5774,9 +5775,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5774
5775
|
children: n({ virtualizer: u })
|
|
5775
5776
|
})
|
|
5776
5777
|
});
|
|
5777
|
-
},
|
|
5778
|
+
}, Yl = ({ items: e, scrollDetails: t, children: n }) => {
|
|
5778
5779
|
let { scrollable: r, hideScrollbar: i, infiniteScroll: a } = t;
|
|
5779
|
-
return a ? /* @__PURE__ */ z(
|
|
5780
|
+
return a ? /* @__PURE__ */ z(Jl, {
|
|
5780
5781
|
items: e,
|
|
5781
5782
|
scrollDetails: t,
|
|
5782
5783
|
children: ({ virtualizer: e }) => n({ virtualizer: e })
|
|
@@ -5787,7 +5788,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5787
5788
|
children: n({})
|
|
5788
5789
|
})
|
|
5789
5790
|
});
|
|
5790
|
-
},
|
|
5791
|
+
}, Xl = ({ list: e, bordered: t = !1, expanding: n = !1, narrow: r = !1, toggleNarrow: i = !1, onToggleNarrow: a = () => {}, invokeEditOnRowClick: o = !0, noHeader: s = !1, stickyHeader: c, draggable: l = !1, onListReorder: u = () => {}, marginBottom: d = 0, height: f, testId: p, scrollDetails: m = {
|
|
5791
5792
|
scrollable: !1,
|
|
5792
5793
|
hideScrollbar: !1,
|
|
5793
5794
|
triggerScrollToActiveItem: !1,
|
|
@@ -5800,17 +5801,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5800
5801
|
marginBottom: d
|
|
5801
5802
|
},
|
|
5802
5803
|
id: "scrollableDiv",
|
|
5803
|
-
children: [!s && /* @__PURE__ */ z(
|
|
5804
|
+
children: [!s && /* @__PURE__ */ z(zl, {
|
|
5804
5805
|
name: e.name,
|
|
5805
5806
|
actions: e.actions,
|
|
5806
5807
|
toggleNarrow: i,
|
|
5807
5808
|
onToggleNarrow: a,
|
|
5808
5809
|
stickyHeader: c
|
|
5809
|
-
}), /* @__PURE__ */ z(
|
|
5810
|
+
}), /* @__PURE__ */ z(ql, {
|
|
5810
5811
|
draggable: l,
|
|
5811
5812
|
list: e,
|
|
5812
5813
|
onListReorder: u,
|
|
5813
|
-
children: /* @__PURE__ */ z(
|
|
5814
|
+
children: /* @__PURE__ */ z(Yl, {
|
|
5814
5815
|
items: e.items,
|
|
5815
5816
|
scrollDetails: m,
|
|
5816
5817
|
children: ({ virtualizer: t }) => t ? t.getVirtualItems().map((r) => /* @__PURE__ */ z("div", {
|
|
@@ -5818,14 +5819,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5818
5819
|
className: Z.virtualRow,
|
|
5819
5820
|
style: { transform: `translateY(${r.start}px)` },
|
|
5820
5821
|
ref: t.measureElement,
|
|
5821
|
-
children: /* @__PURE__ */ z(
|
|
5822
|
+
children: /* @__PURE__ */ z(Kl, {
|
|
5822
5823
|
index: r.index,
|
|
5823
5824
|
draggable: l,
|
|
5824
5825
|
item: e.items[r.index],
|
|
5825
5826
|
expanding: n,
|
|
5826
5827
|
invokeEditOnRowClick: o
|
|
5827
5828
|
})
|
|
5828
|
-
}, r.key)) : e.items.map((e, t) => /* @__PURE__ */ z("div", { children: /* @__PURE__ */ z(
|
|
5829
|
+
}, r.key)) : e.items.map((e, t) => /* @__PURE__ */ z("div", { children: /* @__PURE__ */ z(Kl, {
|
|
5829
5830
|
index: t,
|
|
5830
5831
|
draggable: l,
|
|
5831
5832
|
item: e,
|
|
@@ -5834,7 +5835,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5834
5835
|
}) }, t))
|
|
5835
5836
|
})
|
|
5836
5837
|
})]
|
|
5837
|
-
}),
|
|
5838
|
+
}), Zl = {
|
|
5838
5839
|
loader: "_loader_477i5_1",
|
|
5839
5840
|
fullViewPortSize: "_fullViewPortSize_477i5_7",
|
|
5840
5841
|
cover: "_cover_477i5_14",
|
|
@@ -5842,33 +5843,33 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5842
5843
|
content: "_content_477i5_44",
|
|
5843
5844
|
text: "_text_477i5_49",
|
|
5844
5845
|
details: "_details_477i5_53"
|
|
5845
|
-
},
|
|
5846
|
+
}, Ql = ({ width: e, height: t, text: n = "", details: r = "", fullViewPortSize: i = !1, cover: a = !1, children: o = null, theme: s = Ar.DARK, testId: c = null }) => {
|
|
5846
5847
|
let l = s === Ar.DARK ? Ar.WHITE : Ar.INHERIT, u = s === "white" ? "var(--color-background-raised)" : s === "light" ? "var(--color-background)" : "black";
|
|
5847
5848
|
return /* @__PURE__ */ z("div", {
|
|
5848
|
-
className: g(
|
|
5849
|
+
className: g(Zl.loader, a ? Zl.cover : "", { [Zl.fullViewPortSize]: i }),
|
|
5849
5850
|
style: {
|
|
5850
5851
|
width: e,
|
|
5851
5852
|
height: t
|
|
5852
5853
|
},
|
|
5853
5854
|
"data-testid": c,
|
|
5854
5855
|
children: /* @__PURE__ */ z("div", {
|
|
5855
|
-
className:
|
|
5856
|
+
className: Zl.dimmer,
|
|
5856
5857
|
style: {
|
|
5857
5858
|
background: u,
|
|
5858
5859
|
color: l
|
|
5859
5860
|
},
|
|
5860
5861
|
children: /* @__PURE__ */ B("div", {
|
|
5861
|
-
className:
|
|
5862
|
+
className: Zl.content,
|
|
5862
5863
|
"data-testid": c && `${c}-content`,
|
|
5863
5864
|
children: [
|
|
5864
5865
|
o,
|
|
5865
5866
|
n && /* @__PURE__ */ z("div", {
|
|
5866
|
-
className:
|
|
5867
|
+
className: Zl.text,
|
|
5867
5868
|
"data-testid": c && `${c}-text`,
|
|
5868
5869
|
children: n
|
|
5869
5870
|
}),
|
|
5870
5871
|
r && /* @__PURE__ */ z("div", {
|
|
5871
|
-
className:
|
|
5872
|
+
className: Zl.details,
|
|
5872
5873
|
"data-testid": c && `${c}-details`,
|
|
5873
5874
|
children: r
|
|
5874
5875
|
})
|
|
@@ -5876,15 +5877,15 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5876
5877
|
})
|
|
5877
5878
|
})
|
|
5878
5879
|
});
|
|
5879
|
-
},
|
|
5880
|
+
}, $l = {
|
|
5880
5881
|
menu: "_menu_12x4u_1",
|
|
5881
5882
|
header: "_header_12x4u_11",
|
|
5882
5883
|
item: "_item_12x4u_27",
|
|
5883
5884
|
heading: "_heading_12x4u_32"
|
|
5884
|
-
},
|
|
5885
|
+
}, eu = ({ option: e, onChange: t }) => {
|
|
5885
5886
|
let { key: n, label: r, selected: i, testId: a } = e == null ? {} : e;
|
|
5886
5887
|
return /* @__PURE__ */ z("div", {
|
|
5887
|
-
className:
|
|
5888
|
+
className: $l.item,
|
|
5888
5889
|
children: /* @__PURE__ */ z(li, {
|
|
5889
5890
|
label: r,
|
|
5890
5891
|
noMargin: !0,
|
|
@@ -5893,17 +5894,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5893
5894
|
testId: a
|
|
5894
5895
|
})
|
|
5895
5896
|
}, n);
|
|
5896
|
-
},
|
|
5897
|
-
className:
|
|
5897
|
+
}, tu = ({ label: e }) => /* @__PURE__ */ z("div", {
|
|
5898
|
+
className: $l.heading,
|
|
5898
5899
|
children: e
|
|
5899
|
-
}),
|
|
5900
|
+
}), nu = /* @__PURE__ */ function(e) {
|
|
5900
5901
|
return e.HEADING = "Heading", e.DIVIDER = "Divider", e.DEFAULT = "Default", e;
|
|
5901
|
-
}({}),
|
|
5902
|
-
className: g("menu",
|
|
5902
|
+
}({}), ru = ({ options: e, onChangeOptions: t, showHeader: n, maxHeight: r, testId: i }) => /* @__PURE__ */ B("div", {
|
|
5903
|
+
className: g("menu", $l.menu),
|
|
5903
5904
|
style: { maxHeight: r },
|
|
5904
5905
|
"data-testid": i ? `${i}-option-dropdown-layer` : void 0,
|
|
5905
5906
|
children: [n && /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ B("div", {
|
|
5906
|
-
className:
|
|
5907
|
+
className: $l.header,
|
|
5907
5908
|
children: [
|
|
5908
5909
|
/* @__PURE__ */ z("a", {
|
|
5909
5910
|
onClick: (n) => {
|
|
@@ -5935,9 +5936,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5935
5936
|
]
|
|
5936
5937
|
}), /* @__PURE__ */ z(_a, { margin: 0 })] }), e.map((n, r) => {
|
|
5937
5938
|
switch (n.type) {
|
|
5938
|
-
case
|
|
5939
|
-
case
|
|
5940
|
-
default: return /* @__PURE__ */ z(
|
|
5939
|
+
case nu.HEADING: return /* @__PURE__ */ z(tu, { label: n.label }, r);
|
|
5940
|
+
case nu.DIVIDER: return /* @__PURE__ */ z(_a, { margin: 0 }, r);
|
|
5941
|
+
default: return /* @__PURE__ */ z(eu, {
|
|
5941
5942
|
option: n,
|
|
5942
5943
|
onChange: (r) => {
|
|
5943
5944
|
let { value: i } = n;
|
|
@@ -5949,7 +5950,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5949
5950
|
}, r);
|
|
5950
5951
|
}
|
|
5951
5952
|
})]
|
|
5952
|
-
}),
|
|
5953
|
+
}), iu = ({ name: e, disabled: t, label: n, options: r, onChange: i, small: a = !1, showHeader: o = !0, maxHeight: s = "40vh", testId: c }) => /* @__PURE__ */ z(Ji, {
|
|
5953
5954
|
testId: c,
|
|
5954
5955
|
disabled: t,
|
|
5955
5956
|
menu: {
|
|
@@ -5958,7 +5959,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5958
5959
|
label: n,
|
|
5959
5960
|
trigger: Tr.DROP_DOWN_BUTTON,
|
|
5960
5961
|
possiblePlacements: ["top-start", "bottom-start"],
|
|
5961
|
-
sections: /* @__PURE__ */ z(
|
|
5962
|
+
sections: /* @__PURE__ */ z(ru, {
|
|
5962
5963
|
testId: c,
|
|
5963
5964
|
options: r,
|
|
5964
5965
|
onChangeOptions: (t, n) => {
|
|
@@ -5968,13 +5969,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5968
5969
|
maxHeight: s
|
|
5969
5970
|
})
|
|
5970
5971
|
}
|
|
5971
|
-
}),
|
|
5972
|
+
}), au = {
|
|
5972
5973
|
page: "_page_beskc_1",
|
|
5973
5974
|
scroll: "_scroll_beskc_23"
|
|
5974
|
-
},
|
|
5975
|
+
}, ou = ({ children: e, left: t = "var(--size-sidebar)", padding: n = !0, scroll: r = !0, top: i = "var(--size-topbar)" }) => {
|
|
5975
5976
|
let a = typeof n == "string" ? n : n === !0 ? "var(--padding)" : "0";
|
|
5976
5977
|
return /* @__PURE__ */ z("div", {
|
|
5977
|
-
className: g(
|
|
5978
|
+
className: g(au.page, r ? au.scroll : ""),
|
|
5978
5979
|
style: {
|
|
5979
5980
|
left: t,
|
|
5980
5981
|
padding: a,
|
|
@@ -5982,25 +5983,25 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
5982
5983
|
},
|
|
5983
5984
|
children: e
|
|
5984
5985
|
});
|
|
5985
|
-
},
|
|
5986
|
+
}, su = { printHeader: "_printHeader_o7xxx_1" }, cu = ({ logo: e, alt: t, logoWidth: n = "100px" }) => /* @__PURE__ */ z("img", {
|
|
5986
5987
|
src: e,
|
|
5987
5988
|
alt: t,
|
|
5988
|
-
className:
|
|
5989
|
+
className: su.printHeader,
|
|
5989
5990
|
style: { width: n }
|
|
5990
|
-
}),
|
|
5991
|
+
}), lu = ({ name: e, label: t, options: n, value: r, onChange: i, disabled: a = !1, small: o = !1, noMargin: c = !1, onClick: l = () => {}, inline: u = !1, mainLabel: d = "", radioButtonsData: f, classForContainer: p = "grouped fields" }) => {
|
|
5991
5992
|
let m = s(U), h = f !== void 0, { simpleInputs: _, options: v, selectedOptions: y } = h ? {
|
|
5992
5993
|
simpleInputs: !1,
|
|
5993
5994
|
options: f,
|
|
5994
5995
|
selectedOptions: void 0
|
|
5995
|
-
} :
|
|
5996
|
+
} : bs(n, r), b = h || y == null ? void 0 : _ ? y : y.value, x = h ? d : t;
|
|
5996
5997
|
return /* @__PURE__ */ B("div", {
|
|
5997
|
-
className: g(
|
|
5998
|
+
className: g(oc.wrapper, u ? oc.inline : null, p === "inline fields" ? oc.inline : null),
|
|
5998
5999
|
children: [d && /* @__PURE__ */ z("label", {
|
|
5999
|
-
className: g(u &&
|
|
6000
|
+
className: g(u && oc.labelMargin),
|
|
6000
6001
|
children: x
|
|
6001
6002
|
}), v.map((t, n) => {
|
|
6002
6003
|
let r = (t == null ? void 0 : t.checked) || (t == null ? void 0 : t.value) === b || !1;
|
|
6003
|
-
return /* @__PURE__ */ z(
|
|
6004
|
+
return /* @__PURE__ */ z(sc, {
|
|
6004
6005
|
name: t.name || t.value,
|
|
6005
6006
|
label: t.label,
|
|
6006
6007
|
value: t.value,
|
|
@@ -6018,44 +6019,44 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6018
6019
|
}, n);
|
|
6019
6020
|
})]
|
|
6020
6021
|
});
|
|
6021
|
-
},
|
|
6022
|
+
}, uu = {
|
|
6022
6023
|
richTextToolbar: "_richTextToolbar_1gbkk_1",
|
|
6023
6024
|
richTextToolbarContainer: "_richTextToolbarContainer_1gbkk_5"
|
|
6024
|
-
},
|
|
6025
|
+
}, du = /* @__PURE__ */ function(e) {
|
|
6025
6026
|
return e.BOLD = "bold", e.ITALIC = "italic", e.CODE = "code", e.UL = "ul", e.OL = "ol", e;
|
|
6026
|
-
}({}),
|
|
6027
|
+
}({}), fu = ({ editor: e, disabled: t = !1, toolbarComponent: n = null }) => {
|
|
6027
6028
|
var r, i, a, o, s;
|
|
6028
6029
|
let c = [
|
|
6029
6030
|
{
|
|
6030
|
-
icon:
|
|
6031
|
+
icon: du.BOLD,
|
|
6031
6032
|
onClick: () => e == null ? void 0 : e.chain().focus().toggleBold().run(),
|
|
6032
6033
|
active: (r = e == null ? void 0 : e.isActive("bold")) == null ? !1 : r
|
|
6033
6034
|
},
|
|
6034
6035
|
{
|
|
6035
|
-
icon:
|
|
6036
|
+
icon: du.ITALIC,
|
|
6036
6037
|
onClick: () => e == null ? void 0 : e.chain().focus().toggleItalic().run(),
|
|
6037
6038
|
active: (i = e == null ? void 0 : e.isActive("italic")) == null ? !1 : i
|
|
6038
6039
|
},
|
|
6039
6040
|
{
|
|
6040
|
-
icon:
|
|
6041
|
+
icon: du.CODE,
|
|
6041
6042
|
onClick: () => e == null ? void 0 : e.chain().focus().toggleCode().run(),
|
|
6042
6043
|
active: (a = e == null ? void 0 : e.isActive("code")) == null ? !1 : a
|
|
6043
6044
|
},
|
|
6044
6045
|
{
|
|
6045
|
-
icon:
|
|
6046
|
+
icon: du.UL,
|
|
6046
6047
|
onClick: () => e == null ? void 0 : e.chain().focus().toggleBulletList().run(),
|
|
6047
6048
|
active: (o = e == null ? void 0 : e.isActive("bulletList")) == null ? !1 : o
|
|
6048
6049
|
},
|
|
6049
6050
|
{
|
|
6050
|
-
icon:
|
|
6051
|
+
icon: du.OL,
|
|
6051
6052
|
onClick: () => e == null ? void 0 : e.chain().focus().toggleOrderedList().run(),
|
|
6052
6053
|
active: (s = e == null ? void 0 : e.isActive("orderedList")) == null ? !1 : s
|
|
6053
6054
|
}
|
|
6054
6055
|
];
|
|
6055
6056
|
return /* @__PURE__ */ B("div", {
|
|
6056
|
-
className:
|
|
6057
|
+
className: uu.richTextToolbarContainer,
|
|
6057
6058
|
children: [/* @__PURE__ */ z("div", {
|
|
6058
|
-
className:
|
|
6059
|
+
className: uu.richTextToolbar,
|
|
6059
6060
|
children: c.map((e, n) => /* @__PURE__ */ z(K, {
|
|
6060
6061
|
small: !0,
|
|
6061
6062
|
round: !0,
|
|
@@ -6068,7 +6069,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6068
6069
|
}, n))
|
|
6069
6070
|
}), n]
|
|
6070
6071
|
});
|
|
6071
|
-
},
|
|
6072
|
+
}, pu = {
|
|
6072
6073
|
inputInTable: "_inputInTable_gb097_1",
|
|
6073
6074
|
inputHover: "_inputHover_gb097_13",
|
|
6074
6075
|
inputFocus: "_inputFocus_gb097_18",
|
|
@@ -6077,7 +6078,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6077
6078
|
inputDisabled: "_inputDisabled_gb097_61",
|
|
6078
6079
|
hideScrollbars: "_hideScrollbars_gb097_67",
|
|
6079
6080
|
richTextInput: "_richTextInput_gb097_77"
|
|
6080
|
-
},
|
|
6081
|
+
}, mu = a(r(({ placeholder: e, onChange: t, value: n, disabled: r, toolbarComponent: i }, a) => {
|
|
6081
6082
|
let o = s(U), u = r || o, d = mr({
|
|
6082
6083
|
extensions: [
|
|
6083
6084
|
hr,
|
|
@@ -6104,17 +6105,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6104
6105
|
clearContent: () => d == null ? void 0 : d.commands.clearContent(!1),
|
|
6105
6106
|
editor: d
|
|
6106
6107
|
}), [d]), /* @__PURE__ */ B("div", {
|
|
6107
|
-
className:
|
|
6108
|
-
children: [/* @__PURE__ */ z(
|
|
6108
|
+
className: pu.richTextInput,
|
|
6109
|
+
children: [/* @__PURE__ */ z(fu, {
|
|
6109
6110
|
editor: d,
|
|
6110
6111
|
disabled: u,
|
|
6111
6112
|
toolbarComponent: i
|
|
6112
6113
|
}), /* @__PURE__ */ z(pr, { editor: d })]
|
|
6113
6114
|
});
|
|
6114
|
-
})),
|
|
6115
|
+
})), hu = { row: "_row_n16je_1" }, gu = ({ alignItems: t = "initial", justifyContent: n = "initial", children: r = null, flex: a = !1, height: o = "auto", marginBottom: s = "0", marginTop: c = "0", spacing: l = "var(--padding)", wrap: u = !1, testId: d = null }) => {
|
|
6115
6116
|
let f = typeof l == "number" ? `${l}px` : l, p = (r === null || r === !1 ? [] : Array.isArray(r) ? r.filter((e) => i(e)) : [r]).map((t, n) => /* @__PURE__ */ z(e.Fragment, { children: e.cloneElement(t, { spacing: f }) }, n));
|
|
6116
6117
|
return /* @__PURE__ */ z("div", {
|
|
6117
|
-
className: g(
|
|
6118
|
+
className: g(hu.row),
|
|
6118
6119
|
style: {
|
|
6119
6120
|
alignItems: t,
|
|
6120
6121
|
justifyContent: n,
|
|
@@ -6130,7 +6131,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6130
6131
|
"data-testid": d,
|
|
6131
6132
|
children: p
|
|
6132
6133
|
});
|
|
6133
|
-
},
|
|
6134
|
+
}, _u = {
|
|
6134
6135
|
inputInTable: "_inputInTable_1oy1z_1",
|
|
6135
6136
|
inputHover: "_inputHover_1oy1z_13",
|
|
6136
6137
|
inputFocus: "_inputFocus_1oy1z_18",
|
|
@@ -6149,7 +6150,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6149
6150
|
experimental: "_experimental_1oy1z_155",
|
|
6150
6151
|
active: "_active_1oy1z_159",
|
|
6151
6152
|
icon: "_icon_1oy1z_163"
|
|
6152
|
-
},
|
|
6153
|
+
}, vu = a(({ isOpen: e, label: t, icon: n, invalid: r }) => /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ z(G, {
|
|
6153
6154
|
text: t,
|
|
6154
6155
|
enabled: !e,
|
|
6155
6156
|
placement: "right-center",
|
|
@@ -6158,7 +6159,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6158
6159
|
padding: "var(--padding-sm)",
|
|
6159
6160
|
display: "block",
|
|
6160
6161
|
children: /* @__PURE__ */ z("span", {
|
|
6161
|
-
className:
|
|
6162
|
+
className: _u.icon,
|
|
6162
6163
|
children: /* @__PURE__ */ z(Ii, {
|
|
6163
6164
|
small: !0,
|
|
6164
6165
|
title: r ? "!" : void 0,
|
|
@@ -6167,18 +6168,18 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6167
6168
|
})
|
|
6168
6169
|
})
|
|
6169
6170
|
}), /* @__PURE__ */ z("span", {
|
|
6170
|
-
className:
|
|
6171
|
+
className: _u.label,
|
|
6171
6172
|
children: t
|
|
6172
|
-
})] }), (e, t) => nr(e, t)),
|
|
6173
|
-
className:
|
|
6173
|
+
})] }), (e, t) => nr(e, t)), yu = ({ isOpen: e, items: t, sectionIndex: n, onClick: r, testId: i }) => /* @__PURE__ */ z("div", {
|
|
6174
|
+
className: _u.list,
|
|
6174
6175
|
children: t.map((t, a) => {
|
|
6175
6176
|
let o = `${n}_${a}`;
|
|
6176
6177
|
return /* @__PURE__ */ z("a", {
|
|
6177
6178
|
href: t.value,
|
|
6178
|
-
className: g(
|
|
6179
|
+
className: g(_u.item, t.isActive ? _u.active : "", t.isExperimental ? _u.experimental : ""),
|
|
6179
6180
|
onClick: (e) => r(e, t.value, t.label, t.onClick),
|
|
6180
6181
|
"data-testid": i,
|
|
6181
|
-
children: /* @__PURE__ */ z(
|
|
6182
|
+
children: /* @__PURE__ */ z(vu, {
|
|
6182
6183
|
label: t.label,
|
|
6183
6184
|
icon: t.icon,
|
|
6184
6185
|
invalid: t.invalid,
|
|
@@ -6186,16 +6187,16 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6186
6187
|
}, o)
|
|
6187
6188
|
}, o);
|
|
6188
6189
|
})
|
|
6189
|
-
}),
|
|
6190
|
-
className:
|
|
6190
|
+
}), bu = ({ isOpen: t, sections: n, onClick: r }) => /* @__PURE__ */ z(R, { children: n.map((n, i) => /* @__PURE__ */ B(e.Fragment, { children: [/* @__PURE__ */ z("h5", {
|
|
6191
|
+
className: _u.subtitle,
|
|
6191
6192
|
children: n.heading.toUpperCase()
|
|
6192
|
-
}), /* @__PURE__ */ z(
|
|
6193
|
+
}), /* @__PURE__ */ z(yu, {
|
|
6193
6194
|
isOpen: t,
|
|
6194
6195
|
items: n.items,
|
|
6195
6196
|
sectionIndex: i,
|
|
6196
6197
|
onClick: r,
|
|
6197
6198
|
testId: n.testId
|
|
6198
|
-
})] }, i)) }),
|
|
6199
|
+
})] }, i)) }), xu = a(({ options: e, startOpen: t = !1, onShiftClickToggleOpen: n = () => {}, top: r }) => {
|
|
6199
6200
|
let [i, a] = m(t), o = (e, t, n, r) => {
|
|
6200
6201
|
e.preventDefault(), typeof r == "function" && (e.currentTarget.value = t, e.currentTarget.label = n, r(e)), a(!1);
|
|
6201
6202
|
}, s = e.sections.length > 0;
|
|
@@ -6216,13 +6217,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6216
6217
|
icon: H.LEFT
|
|
6217
6218
|
}),
|
|
6218
6219
|
children: /* @__PURE__ */ z("div", {
|
|
6219
|
-
className: g(
|
|
6220
|
+
className: g(_u.sidebar, i ? "" : _u.collapsed),
|
|
6220
6221
|
children: s && /* @__PURE__ */ B("div", {
|
|
6221
|
-
className:
|
|
6222
|
+
className: _u.inner,
|
|
6222
6223
|
children: [/* @__PURE__ */ z("h4", {
|
|
6223
|
-
className:
|
|
6224
|
+
className: _u.title,
|
|
6224
6225
|
children: e.title
|
|
6225
|
-
}), /* @__PURE__ */ z(
|
|
6226
|
+
}), /* @__PURE__ */ z(bu, {
|
|
6226
6227
|
isOpen: i,
|
|
6227
6228
|
sections: e.sections,
|
|
6228
6229
|
onClick: o
|
|
@@ -6230,18 +6231,18 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6230
6231
|
})
|
|
6231
6232
|
})
|
|
6232
6233
|
});
|
|
6233
|
-
}, (e, t) => nr(e, t)),
|
|
6234
|
+
}, (e, t) => nr(e, t)), Su = {
|
|
6234
6235
|
skeletonContainer: "_skeletonContainer_mcfxp_9",
|
|
6235
6236
|
skeleton: "_skeleton_mcfxp_9"
|
|
6236
|
-
},
|
|
6237
|
+
}, Cu = ({ count: e, width: t, height: n }) => /* @__PURE__ */ z(vr, {
|
|
6237
6238
|
baseColor: "var(--color-skeleton-base)",
|
|
6238
6239
|
highlightColor: "var(--color-skeleton-highlight)",
|
|
6239
|
-
containerClassName:
|
|
6240
|
-
className:
|
|
6240
|
+
containerClassName: Su.skeletonContainer,
|
|
6241
|
+
className: Su.skeleton,
|
|
6241
6242
|
count: e,
|
|
6242
6243
|
width: t,
|
|
6243
6244
|
height: n
|
|
6244
|
-
}),
|
|
6245
|
+
}), wu = {
|
|
6245
6246
|
tabs: "_tabs_1y79t_1",
|
|
6246
6247
|
padding: "_padding_1y79t_7",
|
|
6247
6248
|
margin: "_margin_1y79t_11",
|
|
@@ -6252,12 +6253,12 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6252
6253
|
disabled: "_disabled_1y79t_61",
|
|
6253
6254
|
left: "_left_1y79t_65",
|
|
6254
6255
|
right: "_right_1y79t_65"
|
|
6255
|
-
},
|
|
6256
|
+
}, Tu = ({ label: e, url: t, hidden: n, disabled: r, active: i, onClick: a, right: o, invalid: s, badge: c, testId: l }) => {
|
|
6256
6257
|
let u = getComputedStyle(document.body).getPropertyValue("--color-text-error");
|
|
6257
6258
|
return /* @__PURE__ */ z("a", {
|
|
6258
6259
|
id: e == null ? void 0 : e.toString(),
|
|
6259
6260
|
href: t,
|
|
6260
|
-
className: g(
|
|
6261
|
+
className: g(wu.item, i ? wu.active : "", r ? wu.disabled : "", n && !i ? wu.hidden : "", o ? wu.right : wu.left),
|
|
6261
6262
|
onClick: a,
|
|
6262
6263
|
"data-testid": l,
|
|
6263
6264
|
children: s ? /* @__PURE__ */ z(Ii, {
|
|
@@ -6273,10 +6274,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6273
6274
|
children: e
|
|
6274
6275
|
}) : e
|
|
6275
6276
|
});
|
|
6276
|
-
},
|
|
6277
|
-
className: g(n ?
|
|
6277
|
+
}, Eu = ({ children: e, activeTabIndex: t, contentPadding: n }) => Array.isArray(e) ? /* @__PURE__ */ z("div", {
|
|
6278
|
+
className: g(n ? wu.contentPadding : ""),
|
|
6278
6279
|
children: e.map((e, n) => t === n && e)
|
|
6279
|
-
}) : null,
|
|
6280
|
+
}) : null, Du = ({ name: e = void 0, options: t = null, children: n = null, value: r = void 0, onChange: i = pn, padding: a = !1, margin: o = !0, contentPadding: c = !0, onChangeTab: l, activeTabIndex: u = void 0, tabs: d = void 0, testId: f }) => {
|
|
6280
6281
|
let p = s(U), m = l !== void 0, h = n ? n.map((e, t) => {
|
|
6281
6282
|
var n;
|
|
6282
6283
|
return {
|
|
@@ -6292,7 +6293,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6292
6293
|
simpleInputs: !1,
|
|
6293
6294
|
options: h,
|
|
6294
6295
|
selectedOptions: void 0
|
|
6295
|
-
} :
|
|
6296
|
+
} : bs(h, r), b = m || y == null ? void 0 : _ ? y : y.value, x = u === void 0 ? v == null ? void 0 : v.findIndex((e) => e.value === b) : u, S = x === -1 ? 0 : x, C = (t, n, r) => {
|
|
6296
6297
|
if (m) l(t, n.key || n.label || null);
|
|
6297
6298
|
else {
|
|
6298
6299
|
let t = r.target;
|
|
@@ -6300,11 +6301,11 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6300
6301
|
}
|
|
6301
6302
|
};
|
|
6302
6303
|
return v ? /* @__PURE__ */ B("div", { children: [/* @__PURE__ */ z("div", {
|
|
6303
|
-
className: g(
|
|
6304
|
+
className: g(wu.tabs, a ? wu.padding : "", o ? wu.margin : ""),
|
|
6304
6305
|
"data-testid": f,
|
|
6305
6306
|
children: v.map((e, t) => {
|
|
6306
6307
|
let { label: n, url: r, hidden: i, disabled: a, value: o, right: s, invalid: c, badge: l, testId: u } = e;
|
|
6307
|
-
return /* @__PURE__ */ z(
|
|
6308
|
+
return /* @__PURE__ */ z(Tu, {
|
|
6308
6309
|
label: n,
|
|
6309
6310
|
url: r,
|
|
6310
6311
|
hidden: i,
|
|
@@ -6317,12 +6318,12 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6317
6318
|
testId: u
|
|
6318
6319
|
}, t);
|
|
6319
6320
|
})
|
|
6320
|
-
}), /* @__PURE__ */ z(
|
|
6321
|
+
}), /* @__PURE__ */ z(Eu, {
|
|
6321
6322
|
activeTabIndex: S == null ? 0 : S,
|
|
6322
6323
|
contentPadding: c,
|
|
6323
6324
|
children: n
|
|
6324
6325
|
})] }) : null;
|
|
6325
|
-
},
|
|
6326
|
+
}, Ou = ({ children: e, href: t = void 0, target: n = void 0, testId: r, onClick: i, component: a = "a" }) => /* @__PURE__ */ z(a, {
|
|
6326
6327
|
href: t,
|
|
6327
6328
|
to: t,
|
|
6328
6329
|
target: n,
|
|
@@ -6332,7 +6333,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6332
6333
|
link: !0,
|
|
6333
6334
|
children: e
|
|
6334
6335
|
})
|
|
6335
|
-
}),
|
|
6336
|
+
}), ku = {
|
|
6336
6337
|
inputInTable: "_inputInTable_q0tl0_1",
|
|
6337
6338
|
inputHover: "_inputHover_q0tl0_13",
|
|
6338
6339
|
inputFocus: "_inputFocus_q0tl0_18",
|
|
@@ -6343,9 +6344,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6343
6344
|
textarea: "_textarea_q0tl0_77",
|
|
6344
6345
|
small: "_small_q0tl0_116",
|
|
6345
6346
|
monospace: "_monospace_q0tl0_155"
|
|
6346
|
-
},
|
|
6347
|
+
}, Au = ({ name: e, value: t = "", placeholder: n = "", cols: r, rows: i, disabled: a = !1, onChange: o = pn, onKeyPress: c = pn, onFocus: l = pn, onBlur: u = pn, tabIndex: d = 0, error: f = null, warning: p = null, tooltip: m = null, maxTooltipWidth: h, resize: _, monospace: v = !1, small: y = !1, testId: b }) => {
|
|
6347
6348
|
let x = s(U), S = /* @__PURE__ */ z("textarea", {
|
|
6348
|
-
className: g(
|
|
6349
|
+
className: g(ku.textarea, f ? ku.error : "", p ? ku.warning : "", v ? ku.monospace : "", y ? ku.small : ""),
|
|
6349
6350
|
name: e,
|
|
6350
6351
|
value: t,
|
|
6351
6352
|
placeholder: n,
|
|
@@ -6387,10 +6388,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6387
6388
|
menu: "_menu_oyr59_139",
|
|
6388
6389
|
active: "_active_oyr59_168",
|
|
6389
6390
|
alert: "_alert_oyr59_193"
|
|
6390
|
-
},
|
|
6391
|
+
}, ju = ({ warning: e }) => /* @__PURE__ */ z("div", {
|
|
6391
6392
|
className: Q.alert,
|
|
6392
6393
|
children: e
|
|
6393
|
-
}),
|
|
6394
|
+
}), Mu = ({ icon: e, url: t, onClick: n }) => {
|
|
6394
6395
|
let r = /* @__PURE__ */ z(W, { icon: e });
|
|
6395
6396
|
return t ? /* @__PURE__ */ z("a", {
|
|
6396
6397
|
href: t,
|
|
@@ -6402,7 +6403,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6402
6403
|
className: Q.appSwitcher,
|
|
6403
6404
|
children: r
|
|
6404
6405
|
});
|
|
6405
|
-
},
|
|
6406
|
+
}, Nu = ({ label: e, logo: t, url: n, version: r, onClick: i }) => {
|
|
6406
6407
|
let a = /* @__PURE__ */ B("div", {
|
|
6407
6408
|
className: Q.title,
|
|
6408
6409
|
children: [
|
|
@@ -6431,9 +6432,9 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6431
6432
|
children: a
|
|
6432
6433
|
})
|
|
6433
6434
|
});
|
|
6434
|
-
},
|
|
6435
|
+
}, Pu = /* @__PURE__ */ function(e) {
|
|
6435
6436
|
return e.LINK = "Link", e.BUTTON = "Button", e.MENU = "Menu", e.COMPONENT = "Component", e;
|
|
6436
|
-
}({}),
|
|
6437
|
+
}({}), Fu = ({ label: e, url: t, icon: n, onClick: r, active: i, disabled: a, testId: o, component: c = "a" }) => {
|
|
6437
6438
|
let l = s(U);
|
|
6438
6439
|
return /* @__PURE__ */ B(c, {
|
|
6439
6440
|
className: g(Q.link, i ? Q.active : ""),
|
|
@@ -6450,11 +6451,11 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6450
6451
|
children: e
|
|
6451
6452
|
})]
|
|
6452
6453
|
});
|
|
6453
|
-
},
|
|
6454
|
+
}, Iu = ({ element: e }) => {
|
|
6454
6455
|
switch (e.type) {
|
|
6455
|
-
case
|
|
6456
|
+
case Pu.LINK: return /* @__PURE__ */ z("div", {
|
|
6456
6457
|
className: Q.item,
|
|
6457
|
-
children: /* @__PURE__ */ z(
|
|
6458
|
+
children: /* @__PURE__ */ z(Fu, {
|
|
6458
6459
|
label: e.label,
|
|
6459
6460
|
url: e.url,
|
|
6460
6461
|
icon: e.icon,
|
|
@@ -6465,7 +6466,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6465
6466
|
component: e.component
|
|
6466
6467
|
})
|
|
6467
6468
|
});
|
|
6468
|
-
case
|
|
6469
|
+
case Pu.BUTTON: return /* @__PURE__ */ z("div", {
|
|
6469
6470
|
className: g(Q.item, Q.button),
|
|
6470
6471
|
children: /* @__PURE__ */ z(K, {
|
|
6471
6472
|
label: e.label,
|
|
@@ -6477,7 +6478,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6477
6478
|
testId: e.testId
|
|
6478
6479
|
})
|
|
6479
6480
|
});
|
|
6480
|
-
case
|
|
6481
|
+
case Pu.MENU: return /* @__PURE__ */ z("div", {
|
|
6481
6482
|
className: g(Q.item, Q.menu),
|
|
6482
6483
|
children: /* @__PURE__ */ z(Ji, {
|
|
6483
6484
|
maxHeight: "100%",
|
|
@@ -6485,7 +6486,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6485
6486
|
trigger: Tr.COMPONENT,
|
|
6486
6487
|
fullHeightTrigger: !0,
|
|
6487
6488
|
placement: "bottom-start",
|
|
6488
|
-
component: /* @__PURE__ */ z(
|
|
6489
|
+
component: /* @__PURE__ */ z(Fu, {
|
|
6489
6490
|
label: e.label,
|
|
6490
6491
|
icon: e.icon,
|
|
6491
6492
|
onClick: e.onClick
|
|
@@ -6494,50 +6495,50 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6494
6495
|
}
|
|
6495
6496
|
})
|
|
6496
6497
|
});
|
|
6497
|
-
case
|
|
6498
|
+
case Pu.COMPONENT: return /* @__PURE__ */ z("div", {
|
|
6498
6499
|
className: Q.item,
|
|
6499
6500
|
children: e.component
|
|
6500
6501
|
});
|
|
6501
6502
|
default: return null;
|
|
6502
6503
|
}
|
|
6503
|
-
},
|
|
6504
|
+
}, Lu = ({ title: e, appSwitcher: t, content: n = [], contentRight: r = [], warning: i = "", height: a = "var(--size-topbar)", fixedPosition: o = !0 }) => /* @__PURE__ */ B("div", { children: [i && /* @__PURE__ */ z(ju, { warning: i }), /* @__PURE__ */ B("div", {
|
|
6504
6505
|
className: g(Q.topbar, o ? Q.fixed : ""),
|
|
6505
6506
|
style: { height: a },
|
|
6506
6507
|
children: [
|
|
6507
|
-
!!t && /* @__PURE__ */ z(
|
|
6508
|
+
!!t && /* @__PURE__ */ z(Mu, {
|
|
6508
6509
|
icon: t.icon,
|
|
6509
6510
|
url: t.url,
|
|
6510
6511
|
onClick: t.onClick
|
|
6511
6512
|
}),
|
|
6512
6513
|
/* @__PURE__ */ B("div", {
|
|
6513
6514
|
className: Q.left,
|
|
6514
|
-
children: [e && /* @__PURE__ */ z(
|
|
6515
|
+
children: [e && /* @__PURE__ */ z(Nu, {
|
|
6515
6516
|
label: e.label,
|
|
6516
6517
|
logo: e.logo,
|
|
6517
6518
|
url: e.url,
|
|
6518
6519
|
version: e.version,
|
|
6519
6520
|
onClick: e.onClick
|
|
6520
|
-
}), n.map((e, t) => e ? /* @__PURE__ */ z(
|
|
6521
|
+
}), n.map((e, t) => e ? /* @__PURE__ */ z(Iu, { element: e }, t) : null)]
|
|
6521
6522
|
}),
|
|
6522
6523
|
/* @__PURE__ */ z("div", {
|
|
6523
6524
|
className: Q.right,
|
|
6524
|
-
children: r.map((e, t) => e ? /* @__PURE__ */ z(
|
|
6525
|
+
children: r.map((e, t) => e ? /* @__PURE__ */ z(Iu, { element: e }, t) : null)
|
|
6525
6526
|
})
|
|
6526
6527
|
]
|
|
6527
|
-
})] }),
|
|
6528
|
+
})] }), Ru = {
|
|
6528
6529
|
popConfirm: "_popConfirm_1x6ye_1",
|
|
6529
6530
|
content: "_content_1x6ye_7",
|
|
6530
6531
|
buttons: "_buttons_1x6ye_13"
|
|
6531
|
-
},
|
|
6532
|
-
className:
|
|
6532
|
+
}, zu = ({ title: e, okText: t, onClickOk: n, disableConfirmButton: r, cancelText: i, onClickCancel: a, close: o, testId: s }) => /* @__PURE__ */ B("div", {
|
|
6533
|
+
className: Ru.popConfirm,
|
|
6533
6534
|
children: [e && /* @__PURE__ */ z("div", {
|
|
6534
|
-
className:
|
|
6535
|
+
className: Ru.content,
|
|
6535
6536
|
children: /* @__PURE__ */ z(ha, {
|
|
6536
6537
|
small: !0,
|
|
6537
6538
|
children: e
|
|
6538
6539
|
})
|
|
6539
6540
|
}), /* @__PURE__ */ B("div", {
|
|
6540
|
-
className:
|
|
6541
|
+
className: Ru.buttons,
|
|
6541
6542
|
children: [/* @__PURE__ */ z(K, {
|
|
6542
6543
|
small: !0,
|
|
6543
6544
|
colored: !0,
|
|
@@ -6552,8 +6553,8 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6552
6553
|
testId: `${s}-cancel-button`
|
|
6553
6554
|
})]
|
|
6554
6555
|
})]
|
|
6555
|
-
}),
|
|
6556
|
-
content: /* @__PURE__ */ z(
|
|
6556
|
+
}), Bu = ({ children: e, placement: t = "top-center", closeOnOutsideClick: n = !0, fullWidth: r = !1, title: i = "", cancelText: a = "Cancel", onClickCancel: o = (e) => e && e(), okText: s = "Ok", onClickOk: c = () => {}, disableConfirmButton: l = !1, overflowContainer: u = !1, testId: d = void 0 }) => /* @__PURE__ */ z(sa, {
|
|
6557
|
+
content: /* @__PURE__ */ z(zu, {
|
|
6557
6558
|
title: i,
|
|
6558
6559
|
okText: s,
|
|
6559
6560
|
onClickOk: c,
|
|
@@ -6568,14 +6569,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6568
6569
|
overflowContainer: u,
|
|
6569
6570
|
testId: d,
|
|
6570
6571
|
children: e
|
|
6571
|
-
}),
|
|
6572
|
+
}), Vu = {
|
|
6572
6573
|
tree: "_tree_coxxe_1",
|
|
6573
6574
|
toggle: "_toggle_coxxe_8",
|
|
6574
6575
|
dropTarget: "_dropTarget_coxxe_15",
|
|
6575
6576
|
placeholder: "_placeholder_coxxe_30",
|
|
6576
6577
|
draggingSource: "_draggingSource_coxxe_36",
|
|
6577
6578
|
placeholderContainer: "_placeholderContainer_coxxe_39"
|
|
6578
|
-
},
|
|
6579
|
+
}, Hu = ({ node: t, depth: n, isOpen: r, onToggle: i, hasChild: a, draggable: o, icons: s, onDrop: c }) => {
|
|
6579
6580
|
let { id: l, data: u } = t, { active: d, disabled: f, testId: p, onClick: m, actions: h = [] } = u, [_, v] = e.useState(!1), [y, b] = e.useState(0), x = (e) => {
|
|
6580
6581
|
e.stopPropagation(), i(l);
|
|
6581
6582
|
}, S = (e) => {
|
|
@@ -6602,7 +6603,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6602
6603
|
className: g(Z.itemHeader, _ ? Z.noPointerEvents : ""),
|
|
6603
6604
|
children: [
|
|
6604
6605
|
a && /* @__PURE__ */ z("div", {
|
|
6605
|
-
className:
|
|
6606
|
+
className: Vu.toggle,
|
|
6606
6607
|
children: /* @__PURE__ */ z(K, {
|
|
6607
6608
|
basic: !0,
|
|
6608
6609
|
colored: r ? !0 : Er.MUTED,
|
|
@@ -6616,10 +6617,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6616
6617
|
className: Z.drag,
|
|
6617
6618
|
children: /* @__PURE__ */ z(W, { icon: H.DRAG })
|
|
6618
6619
|
}),
|
|
6619
|
-
/* @__PURE__ */ z(
|
|
6620
|
+
/* @__PURE__ */ z(Hl, { item: u }),
|
|
6620
6621
|
/* @__PURE__ */ B("div", {
|
|
6621
6622
|
className: Z.right,
|
|
6622
|
-
children: [/* @__PURE__ */ z(
|
|
6623
|
+
children: [/* @__PURE__ */ z(Ul, { item: u }), !f && h.length > 0 && /* @__PURE__ */ z("div", {
|
|
6623
6624
|
className: Z.actions,
|
|
6624
6625
|
children: /* @__PURE__ */ z(Xi, { actions: h })
|
|
6625
6626
|
})]
|
|
@@ -6627,10 +6628,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6627
6628
|
]
|
|
6628
6629
|
})
|
|
6629
6630
|
});
|
|
6630
|
-
},
|
|
6631
|
-
className:
|
|
6631
|
+
}, Uu = ({ depth: e, indent: t = "var(--size-sm)" }) => /* @__PURE__ */ z("div", {
|
|
6632
|
+
className: Vu.placeholder,
|
|
6632
6633
|
style: { left: `calc(${t} * ${e})` }
|
|
6633
|
-
}),
|
|
6634
|
+
}), Wu = ({ list: e, canDrop: t, draggable: n = !1, onListReorder: r, onChangeOpen: i, testId: a, isInitialOpen: o = !1, autoOpenActiveItems: s = !1, treeRef: l, itemHasChild: u, onItemToggle: d, icons: f, allowParentReassignment: m, stickyHeader: h, height: g, render: _, placeholderIndent: v }) => {
|
|
6634
6635
|
var y;
|
|
6635
6636
|
let b = l == null ? p(null) : l, x = (e) => {
|
|
6636
6637
|
i && i(e);
|
|
@@ -6688,7 +6689,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6688
6689
|
"data-testid": a,
|
|
6689
6690
|
className: Z.list,
|
|
6690
6691
|
style: { height: g },
|
|
6691
|
-
children: [e.name && !e.noHeader && /* @__PURE__ */ z(
|
|
6692
|
+
children: [e.name && !e.noHeader && /* @__PURE__ */ z(zl, {
|
|
6692
6693
|
name: e.name,
|
|
6693
6694
|
actions: e.actions,
|
|
6694
6695
|
stickyHeader: h
|
|
@@ -6715,7 +6716,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6715
6716
|
hasChild: r,
|
|
6716
6717
|
isOpen: a,
|
|
6717
6718
|
onToggle: o
|
|
6718
|
-
}) : /* @__PURE__ */ z(
|
|
6719
|
+
}) : /* @__PURE__ */ z(Hu, {
|
|
6719
6720
|
hasChild: u ? u(e) : r,
|
|
6720
6721
|
node: e,
|
|
6721
6722
|
depth: t,
|
|
@@ -6731,7 +6732,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6731
6732
|
onDrop: O,
|
|
6732
6733
|
onChangeOpen: x,
|
|
6733
6734
|
dropTargetOffset: 10,
|
|
6734
|
-
placeholderRender: (e, { depth: t }) => /* @__PURE__ */ z(
|
|
6735
|
+
placeholderRender: (e, { depth: t }) => /* @__PURE__ */ z(Uu, {
|
|
6735
6736
|
depth: t,
|
|
6736
6737
|
indent: v
|
|
6737
6738
|
}),
|
|
@@ -6739,17 +6740,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6739
6740
|
listComponent: "div",
|
|
6740
6741
|
listItemComponent: "div",
|
|
6741
6742
|
classes: {
|
|
6742
|
-
root:
|
|
6743
|
-
draggingSource:
|
|
6744
|
-
dropTarget:
|
|
6745
|
-
placeholder:
|
|
6743
|
+
root: Vu.tree,
|
|
6744
|
+
draggingSource: Vu.draggingSource,
|
|
6745
|
+
dropTarget: Vu.dropTarget,
|
|
6746
|
+
placeholder: Vu.placeholderContainer
|
|
6746
6747
|
},
|
|
6747
6748
|
initialOpen: o,
|
|
6748
6749
|
enableAnimateExpand: !0
|
|
6749
6750
|
})
|
|
6750
6751
|
})]
|
|
6751
6752
|
});
|
|
6752
|
-
},
|
|
6753
|
+
}, Gu = {
|
|
6753
6754
|
treeTable: "_treeTable_1ywvy_1",
|
|
6754
6755
|
treeTableHeader: "_treeTableHeader_1ywvy_22",
|
|
6755
6756
|
folderCell: "_folderCell_1ywvy_30",
|
|
@@ -6757,7 +6758,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6757
6758
|
drag: "_drag_1ywvy_31",
|
|
6758
6759
|
folder: "_folder_1ywvy_30",
|
|
6759
6760
|
active: "_active_1ywvy_61"
|
|
6760
|
-
},
|
|
6761
|
+
}, Ku = ({ columnAlignment: e, columnWidths: t, depth: n, draggable: r, handleRef: i, hasChild: a, hasRowActions: o, icons: s, isOpen: c, node: l, onDragEnter: u, onDragOver: d, onDragLeave: f, onDrop: p, onToggle: m }) => {
|
|
6761
6762
|
let { data: h, droppable: _ } = l, { id: v, cells: y, testId: b, actions: x = [], active: S, onRowClick: C } = h, w = _ || a, T = (e) => {
|
|
6762
6763
|
let r = t ? t[e] : void 0;
|
|
6763
6764
|
return e === 0 ? `calc(${r} - ${`calc(var(--size) * ${w ? n + 1 : n})`})` : r;
|
|
@@ -6771,22 +6772,22 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6771
6772
|
onDragLeave: f,
|
|
6772
6773
|
children: /* @__PURE__ */ z("tbody", { children: /* @__PURE__ */ B("tr", {
|
|
6773
6774
|
onClick: C,
|
|
6774
|
-
className: g(
|
|
6775
|
+
className: g(Gu.treeTableRow, S ? Gu.active : void 0),
|
|
6775
6776
|
children: [
|
|
6776
6777
|
r && /* @__PURE__ */ z("td", {
|
|
6777
|
-
className:
|
|
6778
|
+
className: Gu.dragCell,
|
|
6778
6779
|
children: /* @__PURE__ */ z("div", {
|
|
6779
|
-
className:
|
|
6780
|
+
className: Gu.drag,
|
|
6780
6781
|
onClick: (e) => e.stopPropagation(),
|
|
6781
6782
|
ref: i,
|
|
6782
6783
|
children: /* @__PURE__ */ z(W, { icon: H.DRAG })
|
|
6783
6784
|
})
|
|
6784
6785
|
}),
|
|
6785
|
-
Array.from({ length: n }).map((e, t) => /* @__PURE__ */ z("td", { className:
|
|
6786
|
+
Array.from({ length: n }).map((e, t) => /* @__PURE__ */ z("td", { className: Gu.folderCell }, t)),
|
|
6786
6787
|
w && /* @__PURE__ */ z("td", {
|
|
6787
|
-
className:
|
|
6788
|
+
className: Gu.folderCell,
|
|
6788
6789
|
children: /* @__PURE__ */ z("div", {
|
|
6789
|
-
className:
|
|
6790
|
+
className: Gu.folder,
|
|
6790
6791
|
onClick: () => m(v),
|
|
6791
6792
|
onMouseDown: (e) => e.stopPropagation(),
|
|
6792
6793
|
children: /* @__PURE__ */ z(K, {
|
|
@@ -6799,54 +6800,54 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6799
6800
|
})
|
|
6800
6801
|
})
|
|
6801
6802
|
}),
|
|
6802
|
-
y.map((t, n) => /* @__PURE__ */ z(
|
|
6803
|
+
y.map((t, n) => /* @__PURE__ */ z(dc, {
|
|
6803
6804
|
isHeader: !1,
|
|
6804
6805
|
cell: t,
|
|
6805
6806
|
width: T(n),
|
|
6806
6807
|
columnAlignment: e ? e[n] : null
|
|
6807
6808
|
}, n)),
|
|
6808
|
-
o && /* @__PURE__ */ z(
|
|
6809
|
+
o && /* @__PURE__ */ z(dc, {
|
|
6809
6810
|
isHeader: !1,
|
|
6810
6811
|
cell: {
|
|
6811
|
-
type:
|
|
6812
|
+
type: uc.ACTIONS,
|
|
6812
6813
|
actions: x
|
|
6813
6814
|
}
|
|
6814
6815
|
})
|
|
6815
6816
|
]
|
|
6816
6817
|
}) })
|
|
6817
6818
|
});
|
|
6818
|
-
},
|
|
6819
|
-
className: g(mo.table,
|
|
6819
|
+
}, qu = ({ columnAlignment: e, columnWidths: t, draggable: n, hasRowActions: r, headers: i }) => /* @__PURE__ */ z("table", {
|
|
6820
|
+
className: g(mo.table, Gu.treeTableHeader),
|
|
6820
6821
|
children: /* @__PURE__ */ z("thead", { children: i.map((i, a) => /* @__PURE__ */ B("tr", { children: [
|
|
6821
|
-
n && /* @__PURE__ */ z("th", { className:
|
|
6822
|
-
i.cells.map((n, r) => /* @__PURE__ */ z(
|
|
6822
|
+
n && /* @__PURE__ */ z("th", { className: Gu.dragCell }),
|
|
6823
|
+
i.cells.map((n, r) => /* @__PURE__ */ z(dc, {
|
|
6823
6824
|
isHeader: !0,
|
|
6824
6825
|
cell: n,
|
|
6825
6826
|
width: t ? t[r] : void 0,
|
|
6826
6827
|
columnAlignment: e ? e[r] : void 0
|
|
6827
6828
|
}, r)),
|
|
6828
|
-
r && /* @__PURE__ */ z(
|
|
6829
|
+
r && /* @__PURE__ */ z(dc, {
|
|
6829
6830
|
isHeader: !0,
|
|
6830
6831
|
cell: {
|
|
6831
|
-
type:
|
|
6832
|
+
type: uc.ACTIONS,
|
|
6832
6833
|
actions: i.actions,
|
|
6833
6834
|
width: 31
|
|
6834
6835
|
}
|
|
6835
6836
|
})
|
|
6836
6837
|
] }, a)) })
|
|
6837
|
-
}),
|
|
6838
|
-
let { columnAlignment: p, columnWidths: m, fixedWidth: h, headers: g, rows: _ = [] } = u, v =
|
|
6838
|
+
}), Ju = ({ allowParentReassignment: e, autoOpenActiveItems: t = !1, canDrop: n, draggable: r = !1, icons: i, isInitialOpen: a = !1, itemHasChild: o, onItemToggle: s, onListReorder: c, onChangeOpen: l, table: u, testId: d, treeRef: f }) => {
|
|
6839
|
+
let { columnAlignment: p, columnWidths: m, fixedWidth: h, headers: g, rows: _ = [] } = u, v = Ns(_, g == null ? [] : g);
|
|
6839
6840
|
return /* @__PURE__ */ B("div", {
|
|
6840
|
-
className:
|
|
6841
|
+
className: Gu.treeTable,
|
|
6841
6842
|
"data-testid": d,
|
|
6842
6843
|
style: { width: h },
|
|
6843
|
-
children: [!!g && /* @__PURE__ */ z(
|
|
6844
|
+
children: [!!g && /* @__PURE__ */ z(qu, {
|
|
6844
6845
|
columnAlignment: p,
|
|
6845
6846
|
columnWidths: m,
|
|
6846
6847
|
draggable: r,
|
|
6847
6848
|
hasRowActions: v,
|
|
6848
6849
|
headers: g
|
|
6849
|
-
}), /* @__PURE__ */ z(
|
|
6850
|
+
}), /* @__PURE__ */ z(Wu, {
|
|
6850
6851
|
allowParentReassignment: e,
|
|
6851
6852
|
autoOpenActiveItems: t,
|
|
6852
6853
|
canDrop: n,
|
|
@@ -6862,7 +6863,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6862
6863
|
onItemToggle: s,
|
|
6863
6864
|
onListReorder: c,
|
|
6864
6865
|
placeholderIndent: "var(--size)",
|
|
6865
|
-
render: (e, { depth: t, draggable: n, handleRef: r, hasChild: a, isOpen: o, onToggle: s }) => /* @__PURE__ */ z(
|
|
6866
|
+
render: (e, { depth: t, draggable: n, handleRef: r, hasChild: a, isOpen: o, onToggle: s }) => /* @__PURE__ */ z(Ku, {
|
|
6866
6867
|
node: e,
|
|
6867
6868
|
columnAlignment: p,
|
|
6868
6869
|
columnWidths: m,
|
|
@@ -6878,38 +6879,38 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6878
6879
|
treeRef: f
|
|
6879
6880
|
})]
|
|
6880
6881
|
});
|
|
6881
|
-
},
|
|
6882
|
+
}, Yu = () => {
|
|
6882
6883
|
let e = p(null);
|
|
6883
6884
|
return u(() => {
|
|
6884
6885
|
e.current && (e.current(), e.current = null);
|
|
6885
6886
|
}), (t) => {
|
|
6886
6887
|
e.current = t;
|
|
6887
6888
|
};
|
|
6888
|
-
},
|
|
6889
|
+
}, Xu = (e) => {
|
|
6889
6890
|
let t = p(void 0);
|
|
6890
6891
|
return c(() => {
|
|
6891
6892
|
t.current = e;
|
|
6892
6893
|
}, [e]), t.current;
|
|
6893
|
-
},
|
|
6894
|
+
}, Zu = (e, t) => {
|
|
6894
6895
|
let n = t == null ? void 0 : t[e];
|
|
6895
6896
|
if (!n) {
|
|
6896
6897
|
var r;
|
|
6897
6898
|
return console.log(`Warning: 'unitTemplate' missing for '${e}'. Using initial unit, preferred unit or value unit.`), (r = Gn(e)) == null ? "" : r;
|
|
6898
6899
|
}
|
|
6899
6900
|
return n;
|
|
6900
|
-
},
|
|
6901
|
+
}, Qu = /* @__PURE__ */ function(e) {
|
|
6901
6902
|
return e.CUSTOM = "custom", e.PREDEFINED = "predefined", e;
|
|
6902
|
-
}({}),
|
|
6903
|
+
}({}), $u = (e) => e === "undefined" || e === void 0 || e === "" || e === "null" || e === null || e === "NaN" || isNaN(e), ed = (e) => {
|
|
6903
6904
|
if (!e) return !1;
|
|
6904
6905
|
let t = kn(e);
|
|
6905
6906
|
return !Cn.includes(t);
|
|
6906
|
-
},
|
|
6907
|
+
}, td = ({ value: e, unitkey: t, toUnit: n }) => {
|
|
6907
6908
|
var r;
|
|
6908
6909
|
let i = Sn[t];
|
|
6909
6910
|
if (!i || i.length === 0 || !((r = Kn(e)) != null && r.valid) || !i.includes(n)) return !1;
|
|
6910
6911
|
let a = kn(String(e));
|
|
6911
6912
|
return !(a && !i.includes(a));
|
|
6912
|
-
},
|
|
6913
|
+
}, nd = ({ value: e, unitkey: t, toUnit: n, fromUnit: r, doNotConvertValue: i = !1, exactPrecision: a = !1 }) => {
|
|
6913
6914
|
var o;
|
|
6914
6915
|
let s = Fn(e) ? jn(e) : e, c = [Infinity, -Infinity].includes(Number(s));
|
|
6915
6916
|
if (i || c) return {
|
|
@@ -6929,18 +6930,18 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6929
6930
|
value: void 0,
|
|
6930
6931
|
error: "Source unit is missing"
|
|
6931
6932
|
};
|
|
6932
|
-
if (
|
|
6933
|
+
if ($u(s)) return {
|
|
6933
6934
|
value: void 0,
|
|
6934
6935
|
error: "Value is invalid for conversion"
|
|
6935
6936
|
};
|
|
6936
6937
|
try {
|
|
6937
6938
|
let e = Jn(s, l);
|
|
6938
|
-
return
|
|
6939
|
+
return td({
|
|
6939
6940
|
value: e,
|
|
6940
6941
|
toUnit: n,
|
|
6941
6942
|
unitkey: t
|
|
6942
6943
|
}) ? {
|
|
6943
|
-
value: jn(
|
|
6944
|
+
value: jn(Bs(a ? Dn(e, n) : En(e, n))),
|
|
6944
6945
|
error: null
|
|
6945
6946
|
} : {
|
|
6946
6947
|
value: jn(e),
|
|
@@ -6952,13 +6953,13 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6952
6953
|
error: "Conversion not possible"
|
|
6953
6954
|
};
|
|
6954
6955
|
}
|
|
6955
|
-
},
|
|
6956
|
-
let a = jn(e), o =
|
|
6957
|
-
return !
|
|
6956
|
+
}, rd = ({ value: e = "", toUnit: t, unitkey: n, defaultFromUnit: r, doNotConvertValue: i }) => {
|
|
6957
|
+
let a = jn(e), o = $u(a);
|
|
6958
|
+
return !td({
|
|
6958
6959
|
value: e,
|
|
6959
6960
|
unitkey: n,
|
|
6960
6961
|
toUnit: t
|
|
6961
|
-
}) ||
|
|
6962
|
+
}) || ed(e) || o ? { value: a } : Fn(e) ? nd({
|
|
6962
6963
|
value: e,
|
|
6963
6964
|
unitkey: n,
|
|
6964
6965
|
toUnit: t,
|
|
@@ -6966,25 +6967,25 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6966
6967
|
doNotConvertValue: i,
|
|
6967
6968
|
exactPrecision: !0
|
|
6968
6969
|
}) : { value: e };
|
|
6969
|
-
},
|
|
6970
|
+
}, id = (e) => ln(e) && !tn(e) && !on(e) ? en(e, "fieldName", "") : typeof e == "string" ? e : "", ad = (e = "") => Cn == null ? void 0 : Cn.includes(e), od = (e, t) => {
|
|
6970
6971
|
let n = kn(e || "");
|
|
6971
|
-
return
|
|
6972
|
-
},
|
|
6973
|
-
|
|
6974
|
-
},
|
|
6972
|
+
return ad(t) && ad(n);
|
|
6973
|
+
}, sd = n(null), cd = () => s(sd), ld = !1, ud = (e) => {
|
|
6974
|
+
ld || (ld = !0, sd = e);
|
|
6975
|
+
}, dd = (e) => Nn(e) ? e : Ln(e), fd = {
|
|
6975
6976
|
predefinedMenuActive: "_predefinedMenuActive_ye9w9_1",
|
|
6976
6977
|
inputWrapper: "_inputWrapper_ye9w9_4"
|
|
6977
|
-
},
|
|
6978
|
+
}, pd = ({ name: e, placeholder: t = "", disabled: n = !1, disabledUnit: r = !1, error: i = null, left: a = !1, small: o = !1, width: s = "100%", value: l, unitkey: u = "", initUnit: f, noConversion: p = !1, onChange: h = pn, onClick: _ = pn, onFocus: v = pn, onSwitchUnit: y = pn, unitTemplate: b, testId: x, warning: S = null, predefinedOptions: C, initialPredefinedOption: w = !1, shouldLinkAutomaticly: T = !0, selectedPredefinedOptionKey: E, validationCallback: D = () => ({
|
|
6978
6979
|
name: "",
|
|
6979
6980
|
error: null
|
|
6980
6981
|
}), disabledValidation: O = !1, allowEmpty: k = !1, convertBackToStorageUnit: A = !1, enableCosmeticRounding: j = !0, enableDisplayRounding: M = !1, roundDisplayValue: N, selectOnFocus: P = !0, groupOrder: F, tooltip: ee = null }) => {
|
|
6981
|
-
let I =
|
|
6982
|
+
let I = cd(), te = Yu();
|
|
6982
6983
|
typeof l == "number" && (l = `${l}`);
|
|
6983
|
-
let [ne = "", re = ""] = l === void 0 ? [] : Vn(l), ie = d(() =>
|
|
6984
|
+
let [ne = "", re = ""] = l === void 0 ? [] : Vn(l), ie = d(() => Zu(u, b || (I == null ? void 0 : I.unitTemplate)), [
|
|
6984
6985
|
u,
|
|
6985
6986
|
b,
|
|
6986
6987
|
I == null ? void 0 : I.unitTemplate
|
|
6987
|
-
]), ae =
|
|
6988
|
+
]), ae = od(l, ie), oe = f || ie || re, se = Xu(oe), { value: ce } = rd({
|
|
6988
6989
|
value: l,
|
|
6989
6990
|
toUnit: oe,
|
|
6990
6991
|
unitkey: u,
|
|
@@ -6996,10 +6997,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
6996
6997
|
} : {
|
|
6997
6998
|
value: ce,
|
|
6998
6999
|
unit: oe
|
|
6999
|
-
}), ue = k || (L == null ? void 0 : L.value) === void 0, [de, fe] = m(w ?
|
|
7000
|
+
}), ue = k || (L == null ? void 0 : L.value) === void 0, [de, fe] = m(w ? Qu.PREDEFINED : Qu.CUSTOM), pe = !!(O || n), me = C && C.find((e) => {
|
|
7000
7001
|
if (!(e != null && e.value)) return;
|
|
7001
7002
|
if (E) return E === e.valueKey;
|
|
7002
|
-
let t = Fn(e.value) ? kn(e.value) : "", { value: n = l } =
|
|
7003
|
+
let t = Fn(e.value) ? kn(e.value) : "", { value: n = l } = nd({
|
|
7003
7004
|
value: String(l),
|
|
7004
7005
|
unitkey: u,
|
|
7005
7006
|
toUnit: t
|
|
@@ -7008,7 +7009,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7008
7009
|
}), he = () => {
|
|
7009
7010
|
var e;
|
|
7010
7011
|
let t = (e = l) == null ? "" : e, n = L.unit;
|
|
7011
|
-
if (!
|
|
7012
|
+
if (!td({
|
|
7012
7013
|
value: t,
|
|
7013
7014
|
unitkey: u,
|
|
7014
7015
|
toUnit: n
|
|
@@ -7022,7 +7023,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7022
7023
|
return null;
|
|
7023
7024
|
}
|
|
7024
7025
|
}, ge = (t) => {
|
|
7025
|
-
let n =
|
|
7026
|
+
let n = id(e), r = t.target, { value: i, selectionStart: a } = r, o = Jn(i, (L == null ? void 0 : L.unit) || "");
|
|
7026
7027
|
h({ target: {
|
|
7027
7028
|
value: A ? Jn(En(o, re), re) : o,
|
|
7028
7029
|
name: n
|
|
@@ -7044,7 +7045,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7044
7045
|
if (oe) {
|
|
7045
7046
|
let e, t = "";
|
|
7046
7047
|
if (se !== oe) {
|
|
7047
|
-
let { value: n } =
|
|
7048
|
+
let { value: n } = rd({
|
|
7048
7049
|
value: l,
|
|
7049
7050
|
toUnit: oe,
|
|
7050
7051
|
unitkey: u,
|
|
@@ -7053,7 +7054,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7053
7054
|
});
|
|
7054
7055
|
e = n, t = oe;
|
|
7055
7056
|
} else if (Jn(L.value, L.unit) !== l) {
|
|
7056
|
-
let { value: n } =
|
|
7057
|
+
let { value: n } = rd({
|
|
7057
7058
|
value: l,
|
|
7058
7059
|
toUnit: L.unit,
|
|
7059
7060
|
unitkey: u,
|
|
@@ -7065,7 +7066,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7065
7066
|
e !== void 0 && le({
|
|
7066
7067
|
value: e,
|
|
7067
7068
|
unit: t
|
|
7068
|
-
}), fe(C && me && T ?
|
|
7069
|
+
}), fe(C && me && T ? Qu.PREDEFINED : Qu.CUSTOM);
|
|
7069
7070
|
}
|
|
7070
7071
|
}, [
|
|
7071
7072
|
oe,
|
|
@@ -7073,14 +7074,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7073
7074
|
i,
|
|
7074
7075
|
T
|
|
7075
7076
|
]);
|
|
7076
|
-
let ve = he(), ye = In(L.unit) || L.unit || "", be = p || !ve || ve && ve.length === 1, xe =
|
|
7077
|
+
let ve = he(), ye = In(L.unit) || L.unit || "", be = p || !ve || ve && ve.length === 1, xe = id(e), Se, Ce = (t) => {
|
|
7077
7078
|
let r = t != null && t.value ? t.value : "", [i = "", a = ""] = Fn(r) ? Vn(r) : [r], o = qn(r);
|
|
7078
|
-
if (
|
|
7079
|
+
if (td({
|
|
7079
7080
|
value: r,
|
|
7080
7081
|
unitkey: u,
|
|
7081
7082
|
toUnit: a
|
|
7082
7083
|
})) {
|
|
7083
|
-
let { value: e = "" } =
|
|
7084
|
+
let { value: e = "" } = rd({
|
|
7084
7085
|
value: r,
|
|
7085
7086
|
toUnit: ie,
|
|
7086
7087
|
unitkey: u,
|
|
@@ -7093,7 +7094,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7093
7094
|
type: Ci.OPTION,
|
|
7094
7095
|
inline: !0,
|
|
7095
7096
|
onClick: () => {
|
|
7096
|
-
Kn(i).valid && !n && (fe(
|
|
7097
|
+
Kn(i).valid && !n && (fe(Qu.PREDEFINED), h({ target: {
|
|
7097
7098
|
value: r,
|
|
7098
7099
|
name: typeof e == "string" ? e : (e == null ? void 0 : e.fieldName) || "",
|
|
7099
7100
|
predefinedSelected: !0,
|
|
@@ -7105,27 +7106,27 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7105
7106
|
height: "0"
|
|
7106
7107
|
})] }),
|
|
7107
7108
|
description: o,
|
|
7108
|
-
selected: me === t && de ===
|
|
7109
|
+
selected: me === t && de === Qu.PREDEFINED
|
|
7109
7110
|
};
|
|
7110
7111
|
};
|
|
7111
7112
|
if (Se = [{
|
|
7112
7113
|
type: Ci.OPTION,
|
|
7113
7114
|
inline: !0,
|
|
7114
7115
|
onClick: () => {
|
|
7115
|
-
de !==
|
|
7116
|
+
de !== Qu.CUSTOM && !n && h({ target: {
|
|
7116
7117
|
value: Jn(L.value, L.unit),
|
|
7117
7118
|
name: typeof e == "string" ? e : (e == null ? void 0 : e.fieldName) || ""
|
|
7118
7119
|
} });
|
|
7119
7120
|
},
|
|
7120
7121
|
label: "Custom",
|
|
7121
|
-
selected: de ===
|
|
7122
|
+
selected: de === Qu.CUSTOM
|
|
7122
7123
|
}], C != null && C.length) {
|
|
7123
7124
|
let e = C.map(Ce);
|
|
7124
7125
|
Se = [...Se, ...e];
|
|
7125
7126
|
}
|
|
7126
7127
|
let we = (e) => {
|
|
7127
7128
|
if (Fn(e)) {
|
|
7128
|
-
let t = kn(e), { value: n } =
|
|
7129
|
+
let t = kn(e), { value: n } = rd({
|
|
7129
7130
|
value: e,
|
|
7130
7131
|
toUnit: L.unit,
|
|
7131
7132
|
unitkey: u,
|
|
@@ -7137,7 +7138,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7137
7138
|
return e;
|
|
7138
7139
|
}, Te = !C && (!F || F === V.FIRST) ? V.FIRST : V.MIDDLE, Ee = !F || F === V.LAST ? V.LAST : V.MIDDLE;
|
|
7139
7140
|
return /* @__PURE__ */ z("div", {
|
|
7140
|
-
className: de ===
|
|
7141
|
+
className: de === Qu.PREDEFINED ? g(fd.predefinedMenuActive) : "",
|
|
7141
7142
|
children: /* @__PURE__ */ B(Ma, {
|
|
7142
7143
|
small: o,
|
|
7143
7144
|
width: s,
|
|
@@ -7152,18 +7153,18 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7152
7153
|
trigger: "Component",
|
|
7153
7154
|
component: /* @__PURE__ */ z(K, {
|
|
7154
7155
|
groupOrder: "first",
|
|
7155
|
-
active: de ===
|
|
7156
|
-
icon: de ===
|
|
7156
|
+
active: de === Qu.PREDEFINED,
|
|
7157
|
+
icon: de === Qu.PREDEFINED ? "link" : "unlink",
|
|
7157
7158
|
small: o
|
|
7158
7159
|
}),
|
|
7159
7160
|
small: o,
|
|
7160
7161
|
sections: Se
|
|
7161
7162
|
},
|
|
7162
|
-
tooltip: de ===
|
|
7163
|
+
tooltip: de === Qu.PREDEFINED ? me == null ? void 0 : me.label : ""
|
|
7163
7164
|
}),
|
|
7164
7165
|
/* @__PURE__ */ z("div", {
|
|
7165
|
-
className:
|
|
7166
|
-
children: /* @__PURE__ */ z(
|
|
7166
|
+
className: fd.inputWrapper,
|
|
7167
|
+
children: /* @__PURE__ */ z(Us, {
|
|
7167
7168
|
name: xe,
|
|
7168
7169
|
testId: x,
|
|
7169
7170
|
disabled: n,
|
|
@@ -7186,7 +7187,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7186
7187
|
tooltip: ee
|
|
7187
7188
|
}, xe)
|
|
7188
7189
|
}),
|
|
7189
|
-
ye && (be || !ae ? /* @__PURE__ */ z(
|
|
7190
|
+
ye && (be || !ae ? /* @__PURE__ */ z(Ds, {
|
|
7190
7191
|
groupOrder: Ee,
|
|
7191
7192
|
small: o,
|
|
7192
7193
|
children: ye
|
|
@@ -7204,7 +7205,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7204
7205
|
let r = n || t || "", i = Pn(e) ? e : "";
|
|
7205
7206
|
return {
|
|
7206
7207
|
type: "Option",
|
|
7207
|
-
label: j ?
|
|
7208
|
+
label: j ? dd(i) : i,
|
|
7208
7209
|
inline: !0,
|
|
7209
7210
|
onClick: (n) => {
|
|
7210
7211
|
n.stopPropagation(), _e(e, t);
|
|
@@ -7219,10 +7220,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7219
7220
|
]
|
|
7220
7221
|
})
|
|
7221
7222
|
});
|
|
7222
|
-
},
|
|
7223
|
+
}, md = Object.freeze({
|
|
7223
7224
|
Translations: "translations",
|
|
7224
7225
|
LanguageKey: "languageKey"
|
|
7225
|
-
}),
|
|
7226
|
+
}), hd = {
|
|
7226
7227
|
unified: "Unified",
|
|
7227
7228
|
split: "Split",
|
|
7228
7229
|
changesTooLarge: "Changes are too large to be shown",
|
|
@@ -7244,30 +7245,30 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7244
7245
|
pluralChanges: "changes",
|
|
7245
7246
|
showAll: "Show all",
|
|
7246
7247
|
unknown: "Unknown"
|
|
7247
|
-
},
|
|
7248
|
+
}, gd = (e) => Object.keys(hd).reduce((t, n) => ({
|
|
7248
7249
|
...t,
|
|
7249
|
-
[n]: (e == null ? void 0 : e[n]) || (
|
|
7250
|
-
}), {}),
|
|
7251
|
-
[
|
|
7252
|
-
[
|
|
7253
|
-
},
|
|
7254
|
-
|
|
7255
|
-
},
|
|
7250
|
+
[n]: (e == null ? void 0 : e[n]) || (hd == null ? void 0 : hd[n])
|
|
7251
|
+
}), {}), _d = {
|
|
7252
|
+
[md.Translations]: gd(),
|
|
7253
|
+
[md.LanguageKey]: "en"
|
|
7254
|
+
}, vd = (e) => e ? _d[e] : _d, yd = (e, t) => {
|
|
7255
|
+
_d[e] = t;
|
|
7256
|
+
}, bd = (e) => e.reduce(({ preferredUnits: e, storageUnits: t }, { unitKey: n, preferredUnit: r, storageUnit: i }) => {
|
|
7256
7257
|
var a;
|
|
7257
|
-
let { unitTemplate: o = null } = (a =
|
|
7258
|
-
return e[n] = r == null ?
|
|
7258
|
+
let { unitTemplate: o = null } = (a = cd()) == null ? {} : a;
|
|
7259
|
+
return e[n] = r == null ? Zu(n, o) : r, t[n] = i, {
|
|
7259
7260
|
preferredUnits: e,
|
|
7260
7261
|
storageUnits: t
|
|
7261
7262
|
};
|
|
7262
7263
|
}, {
|
|
7263
7264
|
preferredUnits: {},
|
|
7264
7265
|
storageUnits: {}
|
|
7265
|
-
}),
|
|
7266
|
+
}), xd = ({ row: e, rowIndex: t, selectedUnits: n, storageUnits: r, convertBackToStorageUnit: i, enableCosmeticRounding: a, enableDisplayRounding: o }) => ({
|
|
7266
7267
|
...e,
|
|
7267
7268
|
cells: e.cells.map((e, s) => {
|
|
7268
7269
|
if ("autoUnit" in e && e != null && e.autoUnit && (typeof (e == null ? void 0 : e.value) == "string" || typeof (e == null ? void 0 : e.value) == "number")) {
|
|
7269
|
-
let { unitKey: c, value: l, formatDisplayValue: u } = e, d = o && "roundDisplayValue" in e ? e == null ? void 0 : e.roundDisplayValue : null, f = n[c], p = r[c], m = p && f !== p, { value: h = l } =
|
|
7270
|
-
value:
|
|
7270
|
+
let { unitKey: c, value: l, formatDisplayValue: u } = e, d = o && "roundDisplayValue" in e ? e == null ? void 0 : e.roundDisplayValue : null, f = n[c], p = r[c], m = p && f !== p, { value: h = l } = nd({
|
|
7271
|
+
value: Bs(l),
|
|
7271
7272
|
unitkey: c,
|
|
7272
7273
|
toUnit: f,
|
|
7273
7274
|
fromUnit: p
|
|
@@ -7280,7 +7281,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7280
7281
|
roundDisplayValue: d,
|
|
7281
7282
|
selectOnFocus: !0,
|
|
7282
7283
|
onChange: (n) => {
|
|
7283
|
-
let { value: r } = n.target, a = i ? p : f, { value: o = r } =
|
|
7284
|
+
let { value: r } = n.target, a = i ? p : f, { value: o = r } = nd({
|
|
7284
7285
|
value: String(r),
|
|
7285
7286
|
unitkey: c,
|
|
7286
7287
|
toUnit: a,
|
|
@@ -7304,17 +7305,17 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7304
7305
|
}
|
|
7305
7306
|
return e;
|
|
7306
7307
|
})
|
|
7307
|
-
}),
|
|
7308
|
-
let { translations: i } =
|
|
7308
|
+
}), Sd = ({ headers: e, selectedUnits: t, storageUnits: n, onChangeUnit: r }) => {
|
|
7309
|
+
let { translations: i } = vd();
|
|
7309
7310
|
return e ? e.map((e) => ({
|
|
7310
7311
|
...e,
|
|
7311
7312
|
cells: e.cells.map((e) => {
|
|
7312
|
-
if (e.type ===
|
|
7313
|
+
if (e.type === uc.AUTO_UNIT) {
|
|
7313
7314
|
var a;
|
|
7314
7315
|
let { testId: o, unitKey: s, disabled: c = !1, error: l } = e, u = n[s];
|
|
7315
7316
|
return {
|
|
7316
7317
|
value: u && t[s],
|
|
7317
|
-
type:
|
|
7318
|
+
type: uc.SELECT,
|
|
7318
7319
|
error: !u && (i == null ? void 0 : i.unitIsMissing) || l,
|
|
7319
7320
|
disabled: c || !u,
|
|
7320
7321
|
searchable: !1,
|
|
@@ -7334,8 +7335,8 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7334
7335
|
return e;
|
|
7335
7336
|
})
|
|
7336
7337
|
})) : [];
|
|
7337
|
-
},
|
|
7338
|
-
let { headers: u, ...d } = e, { storageUnits: f, preferredUnits: p } =
|
|
7338
|
+
}, Cd = ({ table: e, unitConfig: t, convertBackToStorageUnit: n = !0, enableCosmeticRounding: r = !0, enableDisplayRounding: i = !0, onListReorder: a, canListReorder: s, beforeRenderRow: l }) => {
|
|
7339
|
+
let { headers: u, ...d } = e, { storageUnits: f, preferredUnits: p } = bd(t), h = Xu(p), [g, _] = m(p), v = ({ unitKey: e, value: n }) => {
|
|
7339
7340
|
_({
|
|
7340
7341
|
...g,
|
|
7341
7342
|
[e]: n
|
|
@@ -7346,7 +7347,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7346
7347
|
newUnit: n,
|
|
7347
7348
|
unitKey: e
|
|
7348
7349
|
});
|
|
7349
|
-
}, y = o(({ row: e, rowIndex: t }) =>
|
|
7350
|
+
}, y = o(({ row: e, rowIndex: t }) => xd({
|
|
7350
7351
|
row: l ? l({
|
|
7351
7352
|
row: e,
|
|
7352
7353
|
rowIndex: t
|
|
@@ -7372,10 +7373,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7372
7373
|
value: n
|
|
7373
7374
|
});
|
|
7374
7375
|
});
|
|
7375
|
-
}, [t]), /* @__PURE__ */ z(
|
|
7376
|
+
}, [t]), /* @__PURE__ */ z(_c, {
|
|
7376
7377
|
table: {
|
|
7377
7378
|
...d,
|
|
7378
|
-
headers:
|
|
7379
|
+
headers: Sd({
|
|
7379
7380
|
headers: e.headers,
|
|
7380
7381
|
selectedUnits: g,
|
|
7381
7382
|
storageUnits: f,
|
|
@@ -7386,8 +7387,8 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7386
7387
|
canListReorder: s,
|
|
7387
7388
|
beforeRenderRow: y
|
|
7388
7389
|
});
|
|
7389
|
-
},
|
|
7390
|
-
let { translations: d } =
|
|
7390
|
+
}, wd = { settingField: "_settingField_1x02n_1" }, Td = ({ helpText: t, disabled: n = !1, showCustom: r = !1, children: i, userValue: a = void 0, companyValue: o = void 0, noPermission: s = !1, selectedOption: c, handleSelectChange: l, testId: u }) => {
|
|
7391
|
+
let { translations: d } = vd(), f = (t) => t.replace(/\\n/g, "\n").split(/\n/).map((t, n) => /* @__PURE__ */ B(e.Fragment, { children: [t, /* @__PURE__ */ z("br", {})] }, n)), p = [
|
|
7391
7392
|
...r ? [] : [{
|
|
7392
7393
|
label: d == null ? void 0 : d.allUsers,
|
|
7393
7394
|
value: !1
|
|
@@ -7402,20 +7403,20 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7402
7403
|
}] : []
|
|
7403
7404
|
], m = a !== void 0 && o !== void 0 && !an(a, o);
|
|
7404
7405
|
return /* @__PURE__ */ B("div", {
|
|
7405
|
-
className:
|
|
7406
|
+
className: wd.settingField,
|
|
7406
7407
|
"data-testid": u,
|
|
7407
|
-
children: [/* @__PURE__ */ B(
|
|
7408
|
+
children: [/* @__PURE__ */ B(jl, {
|
|
7408
7409
|
justifyContent: "space-between",
|
|
7409
7410
|
wrap: !1,
|
|
7410
7411
|
children: [i, !s && /* @__PURE__ */ z("div", {
|
|
7411
7412
|
style: { flexShrink: 0 },
|
|
7412
|
-
children: /* @__PURE__ */ B(
|
|
7413
|
+
children: /* @__PURE__ */ B(jl, {
|
|
7413
7414
|
gap: "8px",
|
|
7414
7415
|
alignItems: "center",
|
|
7415
7416
|
children: [m && /* @__PURE__ */ z(ci, {
|
|
7416
7417
|
text: Kn(o).valid ? `${d == null ? void 0 : d.companySetting}: ${Fn(o) ? qn(o) : o}` : d == null ? void 0 : d.companySettingDifferent,
|
|
7417
7418
|
icon: H.INFO
|
|
7418
|
-
}), /* @__PURE__ */ z(
|
|
7419
|
+
}), /* @__PURE__ */ z(xs, {
|
|
7419
7420
|
small: !0,
|
|
7420
7421
|
searchable: !1,
|
|
7421
7422
|
name: "userType",
|
|
@@ -7434,19 +7435,19 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7434
7435
|
children: f(t)
|
|
7435
7436
|
})]
|
|
7436
7437
|
});
|
|
7437
|
-
},
|
|
7438
|
+
}, Ed = (e, t) => {
|
|
7438
7439
|
let n = e.replace(/\r\n/g, "\n").split("\n"), r = t.replace(/\r\n/g, "\n").split("\n"), i = r.length - n.length, a = n.length - r.length;
|
|
7439
7440
|
return {
|
|
7440
7441
|
added: Math.max(0, i),
|
|
7441
7442
|
removed: Math.max(0, a)
|
|
7442
7443
|
};
|
|
7443
|
-
},
|
|
7444
|
+
}, Dd = "split", Od = "unified", kd = ({ oldJson: e, newJson: t, viewType: n = Dd }) => {
|
|
7444
7445
|
var r, i;
|
|
7445
|
-
let { translations: a } =
|
|
7446
|
-
value:
|
|
7446
|
+
let { translations: a } = vd(), [o, s] = m(n), l = [{
|
|
7447
|
+
value: Dd,
|
|
7447
7448
|
label: (r = a == null ? void 0 : a.split) == null ? "Split" : r
|
|
7448
7449
|
}, {
|
|
7449
|
-
value:
|
|
7450
|
+
value: Od,
|
|
7450
7451
|
label: (i = a == null ? void 0 : a.unified) == null ? "Unified" : i
|
|
7451
7452
|
}];
|
|
7452
7453
|
c(() => {
|
|
@@ -7454,10 +7455,10 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7454
7455
|
}, [n]);
|
|
7455
7456
|
let u = ({ target: { value: e } }) => {
|
|
7456
7457
|
s(e);
|
|
7457
|
-
}, { added: d, removed: f } =
|
|
7458
|
+
}, { added: d, removed: f } = Ed(e, t), p = d + f > 3500;
|
|
7458
7459
|
return /* @__PURE__ */ z(R, { children: /* @__PURE__ */ z(ia, {
|
|
7459
7460
|
bordered: !0,
|
|
7460
|
-
heading: /* @__PURE__ */ B(
|
|
7461
|
+
heading: /* @__PURE__ */ B(jl, {
|
|
7461
7462
|
gap: !0,
|
|
7462
7463
|
children: [/* @__PURE__ */ z(ya, { children: /* @__PURE__ */ B("div", { children: [/* @__PURE__ */ B(ha, {
|
|
7463
7464
|
success: !0,
|
|
@@ -7469,7 +7470,7 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7469
7470
|
}), /* @__PURE__ */ B(ha, {
|
|
7470
7471
|
error: !0,
|
|
7471
7472
|
children: ["-", f]
|
|
7472
|
-
})] }) }), !p && /* @__PURE__ */ z(
|
|
7473
|
+
})] }) }), !p && /* @__PURE__ */ z(lu, {
|
|
7473
7474
|
name: "viewType",
|
|
7474
7475
|
options: l,
|
|
7475
7476
|
value: o,
|
|
@@ -7487,14 +7488,14 @@ var Tr = /* @__PURE__ */ function(e) {
|
|
|
7487
7488
|
}) : /* @__PURE__ */ z(Cr, {
|
|
7488
7489
|
oldValue: e,
|
|
7489
7490
|
newValue: t,
|
|
7490
|
-
splitView: o ===
|
|
7491
|
+
splitView: o === Dd,
|
|
7491
7492
|
compareMethod: wr.WORDS
|
|
7492
7493
|
})
|
|
7493
7494
|
}) });
|
|
7494
7495
|
};
|
|
7495
7496
|
//#endregion
|
|
7496
7497
|
//#region src/helpers/date.ts
|
|
7497
|
-
function
|
|
7498
|
+
function Ad({ date: e, showTime: t, showSeconds: n, timeZone: r, showTimeZone: i, locale: a }) {
|
|
7498
7499
|
return e ? new Date(e).toLocaleString(a, {
|
|
7499
7500
|
year: "numeric",
|
|
7500
7501
|
month: "short",
|
|
@@ -7508,28 +7509,28 @@ function jd({ date: e, showTime: t, showSeconds: n, timeZone: r, showTimeZone: i
|
|
|
7508
7509
|
}
|
|
7509
7510
|
//#endregion
|
|
7510
7511
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/clone.js
|
|
7511
|
-
function
|
|
7512
|
+
function jd(e) {
|
|
7512
7513
|
var t;
|
|
7513
7514
|
let n = /^\/(.*)\/([gimyu]*)$/.exec(e.toString());
|
|
7514
7515
|
if (!n) throw Error("Invalid RegExp");
|
|
7515
7516
|
return new RegExp((t = n[1]) == null ? "" : t, n[2]);
|
|
7516
7517
|
}
|
|
7517
|
-
function
|
|
7518
|
+
function Md(e) {
|
|
7518
7519
|
if (typeof e != "object") return e;
|
|
7519
7520
|
if (e === null) return null;
|
|
7520
|
-
if (Array.isArray(e)) return e.map(
|
|
7521
|
+
if (Array.isArray(e)) return e.map(Md);
|
|
7521
7522
|
if (e instanceof Date) return new Date(e.getTime());
|
|
7522
|
-
if (e instanceof RegExp) return
|
|
7523
|
+
if (e instanceof RegExp) return jd(e);
|
|
7523
7524
|
let t = {};
|
|
7524
|
-
for (let n in e) Object.prototype.hasOwnProperty.call(e, n) && (t[n] =
|
|
7525
|
+
for (let n in e) Object.prototype.hasOwnProperty.call(e, n) && (t[n] = Md(e[n]));
|
|
7525
7526
|
return t;
|
|
7526
7527
|
}
|
|
7527
7528
|
//#endregion
|
|
7528
7529
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/assertions/arrays.js
|
|
7529
|
-
function
|
|
7530
|
+
function Nd(e, t) {
|
|
7530
7531
|
if (e.length === 0) throw Error(t || "Expected a non-empty array");
|
|
7531
7532
|
}
|
|
7532
|
-
var
|
|
7533
|
+
var Pd = (e) => e[e.length - 1], Fd = class {
|
|
7533
7534
|
setResult(e) {
|
|
7534
7535
|
return this.result = e, this.hasResult = !0, this;
|
|
7535
7536
|
}
|
|
@@ -7537,16 +7538,16 @@ var Fd = (e) => e[e.length - 1], Id = class {
|
|
|
7537
7538
|
return this.exiting = !0, this;
|
|
7538
7539
|
}
|
|
7539
7540
|
push(e, t) {
|
|
7540
|
-
return e.parent = this, t !== void 0 && (e.childName = t), e.root = this.root || this, e.options = e.options || this.options, this.children ? (
|
|
7541
|
+
return e.parent = this, t !== void 0 && (e.childName = t), e.root = this.root || this, e.options = e.options || this.options, this.children ? (Nd(this.children), Pd(this.children).next = e, this.children.push(e)) : (this.children = [e], this.nextAfterChildren = this.next || null, this.next = e), e.next = this, this;
|
|
7541
7542
|
}
|
|
7542
|
-
},
|
|
7543
|
+
}, Id = class extends Fd {
|
|
7543
7544
|
constructor(e, t) {
|
|
7544
7545
|
super(), this.left = e, this.right = t, this.pipe = "diff";
|
|
7545
7546
|
}
|
|
7546
7547
|
prepareDeltaResult(e) {
|
|
7547
7548
|
var t, n, r, i;
|
|
7548
7549
|
if (typeof e == "object" && ((t = this.options) != null && t.omitRemovedValues && Array.isArray(e) && e.length > 1 && (e.length === 2 || e[2] === 0 || e[2] === 3) && (e[0] = 0), (n = this.options) != null && n.cloneDiffValues)) {
|
|
7549
|
-
let t = typeof ((r = this.options) == null ? void 0 : r.cloneDiffValues) == "function" ? (i = this.options) == null ? void 0 : i.cloneDiffValues :
|
|
7550
|
+
let t = typeof ((r = this.options) == null ? void 0 : r.cloneDiffValues) == "function" ? (i = this.options) == null ? void 0 : i.cloneDiffValues : Md;
|
|
7550
7551
|
typeof e[0] == "object" && (e[0] = t(e[0])), typeof e[1] == "object" && (e[1] = t(e[1]));
|
|
7551
7552
|
}
|
|
7552
7553
|
return e;
|
|
@@ -7554,15 +7555,15 @@ var Fd = (e) => e[e.length - 1], Id = class {
|
|
|
7554
7555
|
setResult(e) {
|
|
7555
7556
|
return this.prepareDeltaResult(e), super.setResult(e);
|
|
7556
7557
|
}
|
|
7557
|
-
},
|
|
7558
|
+
}, Ld = class extends Fd {
|
|
7558
7559
|
constructor(e, t) {
|
|
7559
7560
|
super(), this.left = e, this.delta = t, this.pipe = "patch";
|
|
7560
7561
|
}
|
|
7561
|
-
},
|
|
7562
|
+
}, Rd = class extends Fd {
|
|
7562
7563
|
constructor(e) {
|
|
7563
7564
|
super(), this.delta = e, this.pipe = "reverse";
|
|
7564
7565
|
}
|
|
7565
|
-
},
|
|
7566
|
+
}, zd = class {
|
|
7566
7567
|
constructor(e) {
|
|
7567
7568
|
this.name = e, this.filters = [];
|
|
7568
7569
|
}
|
|
@@ -7626,7 +7627,7 @@ var Fd = (e) => e[e.length - 1], Id = class {
|
|
|
7626
7627
|
}
|
|
7627
7628
|
}), this);
|
|
7628
7629
|
}
|
|
7629
|
-
},
|
|
7630
|
+
}, Bd = class {
|
|
7630
7631
|
constructor(e) {
|
|
7631
7632
|
this.selfOptions = e || {}, this.pipes = {};
|
|
7632
7633
|
}
|
|
@@ -7653,7 +7654,7 @@ var Fd = (e) => e[e.length - 1], Id = class {
|
|
|
7653
7654
|
for (; r;) n.nextAfterChildren !== void 0 && (n.next = n.nextAfterChildren, n.nextAfterChildren = null), typeof r == "string" && (r = this.pipe(r)), r.process(n), i = r, r = null, n && n.next && (n = n.next, r = n.pipe || i);
|
|
7654
7655
|
return n.hasResult ? n.result : void 0;
|
|
7655
7656
|
}
|
|
7656
|
-
},
|
|
7657
|
+
}, Vd = (e, t, n, r) => e[n] === t[r], Hd = (e, t, n, r) => {
|
|
7657
7658
|
var i, a, o;
|
|
7658
7659
|
let s = e.length, c = t.length, l, u, d = Array(s + 1);
|
|
7659
7660
|
for (l = 0; l < s + 1; l++) {
|
|
@@ -7669,7 +7670,7 @@ var Fd = (e) => e[e.length - 1], Id = class {
|
|
|
7669
7670
|
for (u = 1; u < c + 1; u++) n(e, t, l - 1, u - 1, r) ? s[u] = ((i = f[u - 1]) == null ? 0 : i) + 1 : s[u] = Math.max((a = f[u]) == null ? 0 : a, (o = s[u - 1]) == null ? 0 : o);
|
|
7670
7671
|
}
|
|
7671
7672
|
return d;
|
|
7672
|
-
},
|
|
7673
|
+
}, Ud = (e, t, n, r) => {
|
|
7673
7674
|
let i = t.length, a = n.length, o = {
|
|
7674
7675
|
sequence: [],
|
|
7675
7676
|
indices1: [],
|
|
@@ -7691,11 +7692,11 @@ var Fd = (e) => e[e.length - 1], Id = class {
|
|
|
7691
7692
|
}
|
|
7692
7693
|
}
|
|
7693
7694
|
return o;
|
|
7694
|
-
},
|
|
7695
|
+
}, Wd = { get: (e, t, n, r) => {
|
|
7695
7696
|
let i = r || {};
|
|
7696
|
-
return
|
|
7697
|
-
} },
|
|
7698
|
-
function
|
|
7697
|
+
return Ud(Hd(e, t, n || Vd, i), e, t, i);
|
|
7698
|
+
} }, Gd = 3;
|
|
7699
|
+
function Kd(e, t, n, r) {
|
|
7699
7700
|
for (let i = 0; i < n; i++) {
|
|
7700
7701
|
let n = e[i];
|
|
7701
7702
|
for (let e = 0; e < r; e++) {
|
|
@@ -7705,7 +7706,7 @@ function qd(e, t, n, r) {
|
|
|
7705
7706
|
}
|
|
7706
7707
|
return !1;
|
|
7707
7708
|
}
|
|
7708
|
-
function
|
|
7709
|
+
function qd(e, t, n, r, i) {
|
|
7709
7710
|
let a = e[n], o = t[r];
|
|
7710
7711
|
if (a === o) return !0;
|
|
7711
7712
|
if (typeof a != "object" || typeof o != "object") return !1;
|
|
@@ -7718,15 +7719,15 @@ function Jd(e, t, n, r, i) {
|
|
|
7718
7719
|
let l = i.hashCache2[r];
|
|
7719
7720
|
return l === void 0 && (i.hashCache2[r] = l = s(o, r)), l === void 0 ? !1 : c === l;
|
|
7720
7721
|
}
|
|
7721
|
-
var
|
|
7722
|
+
var Jd = function(e) {
|
|
7722
7723
|
var t, n, r, i, a;
|
|
7723
7724
|
if (!e.leftIsArray) return;
|
|
7724
7725
|
let o = {
|
|
7725
7726
|
objectHash: (t = e.options) == null ? void 0 : t.objectHash,
|
|
7726
7727
|
matchByPosition: (n = e.options) == null ? void 0 : n.matchByPosition
|
|
7727
7728
|
}, s = 0, c = 0, l, u, d, f = e.left, p = e.right, m = f.length, h = p.length, g;
|
|
7728
|
-
for (m > 0 && h > 0 && !o.objectHash && typeof o.matchByPosition != "boolean" && (o.matchByPosition = !
|
|
7729
|
-
for (; c + s < m && c + s < h &&
|
|
7729
|
+
for (m > 0 && h > 0 && !o.objectHash && typeof o.matchByPosition != "boolean" && (o.matchByPosition = !Kd(f, p, m, h)); s < m && s < h && qd(f, p, s, s, o);) l = s, g = new Id(f[l], p[l]), e.push(g, l), s++;
|
|
7730
|
+
for (; c + s < m && c + s < h && qd(f, p, m - 1 - c, h - 1 - c, o);) u = m - 1 - c, d = h - 1 - c, g = new Id(f[u], p[d]), e.push(g, d), c++;
|
|
7730
7731
|
let _;
|
|
7731
7732
|
if (s + c === m) {
|
|
7732
7733
|
if (m === h) {
|
|
@@ -7750,7 +7751,7 @@ var Yd = function(e) {
|
|
|
7750
7751
|
return;
|
|
7751
7752
|
}
|
|
7752
7753
|
o.hashCache1 = void 0, o.hashCache2 = void 0;
|
|
7753
|
-
let v = f.slice(s, m - c), y = p.slice(s, h - c), b =
|
|
7754
|
+
let v = f.slice(s, m - c), y = p.slice(s, h - c), b = Wd.get(v, y, qd, o), x = [];
|
|
7754
7755
|
for (_ = _ || { _t: "a" }, l = s; l < m - c; l++) if (b.indices1.indexOf(l - s) < 0) {
|
|
7755
7756
|
let t = `_${l}`;
|
|
7756
7757
|
_[t] = [
|
|
@@ -7771,8 +7772,8 @@ var Yd = function(e) {
|
|
|
7771
7772
|
if (S && w > 0) for (let n = 0; n < w; n++) {
|
|
7772
7773
|
u = x[n];
|
|
7773
7774
|
let r = u === void 0 ? void 0 : _[`_${u}`];
|
|
7774
|
-
if (u !== void 0 && r &&
|
|
7775
|
-
r.splice(1, 2, l,
|
|
7775
|
+
if (u !== void 0 && r && qd(v, y, u - s, l - s, o)) {
|
|
7776
|
+
r.splice(1, 2, l, Gd), r.splice(1, 2, l, Gd), C || (r[0] = ""), d = l, g = new Id(f[u], p[d]), e.push(g, d), x.splice(n, 1), t = !0;
|
|
7776
7777
|
break;
|
|
7777
7778
|
}
|
|
7778
7779
|
}
|
|
@@ -7780,20 +7781,20 @@ var Yd = function(e) {
|
|
|
7780
7781
|
} else {
|
|
7781
7782
|
if (b.indices1[t] === void 0) throw Error(`Invalid indexOnArray2: ${t}, seq.indices1: ${b.indices1}`);
|
|
7782
7783
|
if (u = b.indices1[t] + s, b.indices2[t] === void 0) throw Error(`Invalid indexOnArray2: ${t}, seq.indices2: ${b.indices2}`);
|
|
7783
|
-
d = b.indices2[t] + s, g = new
|
|
7784
|
+
d = b.indices2[t] + s, g = new Id(f[u], p[d]), e.push(g, d);
|
|
7784
7785
|
}
|
|
7785
7786
|
}
|
|
7786
7787
|
e.setResult(_).exit();
|
|
7787
7788
|
};
|
|
7788
|
-
|
|
7789
|
-
var
|
|
7789
|
+
Jd.filterName = "arrays";
|
|
7790
|
+
var Yd = {
|
|
7790
7791
|
numerically(e, t) {
|
|
7791
7792
|
return e - t;
|
|
7792
7793
|
},
|
|
7793
7794
|
numericallyBy(e) {
|
|
7794
7795
|
return (t, n) => t[e] - n[e];
|
|
7795
7796
|
}
|
|
7796
|
-
},
|
|
7797
|
+
}, Xd = function(e) {
|
|
7797
7798
|
var t;
|
|
7798
7799
|
if (!e.nested) return;
|
|
7799
7800
|
let n = e.delta;
|
|
@@ -7801,7 +7802,7 @@ var Xd = {
|
|
|
7801
7802
|
let r, i, a = n, o = e.left, s = [], c = [], l = [];
|
|
7802
7803
|
for (r in a) if (r !== "_t") if (r[0] === "_") {
|
|
7803
7804
|
let e = r;
|
|
7804
|
-
if (a[e] !== void 0 && (a[e][2] === 0 || a[e][2] ===
|
|
7805
|
+
if (a[e] !== void 0 && (a[e][2] === 0 || a[e][2] === Gd)) s.push(Number.parseInt(r.slice(1), 10));
|
|
7805
7806
|
else throw Error(`only removal or move can be applied at original array indices, invalid diff type: ${(t = a[e]) == null ? void 0 : t[2]}`);
|
|
7806
7807
|
} else {
|
|
7807
7808
|
let e = r;
|
|
@@ -7813,15 +7814,15 @@ var Xd = {
|
|
|
7813
7814
|
delta: a[e]
|
|
7814
7815
|
});
|
|
7815
7816
|
}
|
|
7816
|
-
for (s = s.sort(
|
|
7817
|
+
for (s = s.sort(Yd.numerically), r = s.length - 1; r >= 0; r--) {
|
|
7817
7818
|
if (i = s[r], i === void 0) continue;
|
|
7818
7819
|
let e = a[`_${i}`], t = o.splice(i, 1)[0];
|
|
7819
|
-
(e == null ? void 0 : e[2]) ===
|
|
7820
|
+
(e == null ? void 0 : e[2]) === Gd && c.push({
|
|
7820
7821
|
index: e[1],
|
|
7821
7822
|
value: t
|
|
7822
7823
|
});
|
|
7823
7824
|
}
|
|
7824
|
-
c = c.sort(
|
|
7825
|
+
c = c.sort(Yd.numericallyBy("index"));
|
|
7825
7826
|
let u = c.length;
|
|
7826
7827
|
for (r = 0; r < u; r++) {
|
|
7827
7828
|
let e = c[r];
|
|
@@ -7831,7 +7832,7 @@ var Xd = {
|
|
|
7831
7832
|
if (d > 0) for (r = 0; r < d; r++) {
|
|
7832
7833
|
let t = l[r];
|
|
7833
7834
|
if (t === void 0) continue;
|
|
7834
|
-
let n = new
|
|
7835
|
+
let n = new Ld(o[t.index], t.delta);
|
|
7835
7836
|
e.push(n, t.index);
|
|
7836
7837
|
}
|
|
7837
7838
|
if (!e.children) {
|
|
@@ -7840,8 +7841,8 @@ var Xd = {
|
|
|
7840
7841
|
}
|
|
7841
7842
|
e.exit();
|
|
7842
7843
|
};
|
|
7843
|
-
|
|
7844
|
-
var
|
|
7844
|
+
Xd.filterName = "arrays";
|
|
7845
|
+
var Zd = function(e) {
|
|
7845
7846
|
if (!e || !e.children || e.delta._t !== "a") return;
|
|
7846
7847
|
let t = e.left, n = e.children.length;
|
|
7847
7848
|
for (let r = 0; r < n; r++) {
|
|
@@ -7852,16 +7853,16 @@ var Qd = function(e) {
|
|
|
7852
7853
|
}
|
|
7853
7854
|
e.setResult(t).exit();
|
|
7854
7855
|
};
|
|
7855
|
-
|
|
7856
|
-
var
|
|
7856
|
+
Zd.filterName = "arraysCollectChildren";
|
|
7857
|
+
var Qd = function(e) {
|
|
7857
7858
|
if (!e.nested) {
|
|
7858
7859
|
let t = e.delta;
|
|
7859
|
-
if (t[2] ===
|
|
7860
|
+
if (t[2] === Gd) {
|
|
7860
7861
|
let n = t;
|
|
7861
7862
|
e.newName = `_${n[1]}`, e.setResult([
|
|
7862
7863
|
n[0],
|
|
7863
7864
|
Number.parseInt(e.childName.substring(1), 10),
|
|
7864
|
-
|
|
7865
|
+
Gd
|
|
7865
7866
|
]).exit();
|
|
7866
7867
|
}
|
|
7867
7868
|
return;
|
|
@@ -7871,26 +7872,26 @@ var $d = function(e) {
|
|
|
7871
7872
|
let n = t;
|
|
7872
7873
|
for (let t in n) {
|
|
7873
7874
|
if (t === "_t") continue;
|
|
7874
|
-
let r = new
|
|
7875
|
+
let r = new Rd(n[t]);
|
|
7875
7876
|
e.push(r, t);
|
|
7876
7877
|
}
|
|
7877
7878
|
e.exit();
|
|
7878
7879
|
};
|
|
7879
|
-
|
|
7880
|
-
var
|
|
7880
|
+
Qd.filterName = "arrays";
|
|
7881
|
+
var $d = (e, t, n) => {
|
|
7881
7882
|
if (typeof t == "string" && t[0] === "_") return Number.parseInt(t.substring(1), 10);
|
|
7882
7883
|
if (Array.isArray(n) && n[2] === 0) return `_${t}`;
|
|
7883
7884
|
let r = +t;
|
|
7884
7885
|
for (let n in e) {
|
|
7885
7886
|
let i = e[n];
|
|
7886
|
-
if (Array.isArray(i)) if (i[2] ===
|
|
7887
|
+
if (Array.isArray(i)) if (i[2] === Gd) {
|
|
7887
7888
|
let e = Number.parseInt(n.substring(1), 10), a = i[1];
|
|
7888
7889
|
if (a === +t) return e;
|
|
7889
7890
|
e <= r && a > r ? r++ : e >= r && a < r && r--;
|
|
7890
7891
|
} else i[2] === 0 ? Number.parseInt(n.substring(1), 10) <= r && r++ : i.length === 1 && Number.parseInt(n, 10) <= r && r--;
|
|
7891
7892
|
}
|
|
7892
7893
|
return r;
|
|
7893
|
-
},
|
|
7894
|
+
}, ef = (e) => {
|
|
7894
7895
|
if (!e || !e.children) return;
|
|
7895
7896
|
let t = e.delta;
|
|
7896
7897
|
if (t._t !== "a") return;
|
|
@@ -7901,22 +7902,22 @@ var ef = (e, t, n) => {
|
|
|
7901
7902
|
let a = r.newName;
|
|
7902
7903
|
if (a === void 0) {
|
|
7903
7904
|
if (r.childName === void 0) throw Error("child.childName is undefined");
|
|
7904
|
-
a =
|
|
7905
|
+
a = $d(n, r.childName, r.result);
|
|
7905
7906
|
}
|
|
7906
7907
|
i[a] !== r.result && (i[a] = r.result);
|
|
7907
7908
|
}
|
|
7908
7909
|
e.setResult(i).exit();
|
|
7909
7910
|
};
|
|
7910
|
-
|
|
7911
|
+
ef.filterName = "arraysCollectChildren";
|
|
7911
7912
|
//#endregion
|
|
7912
7913
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/filters/dates.js
|
|
7913
|
-
var
|
|
7914
|
+
var tf = function(e) {
|
|
7914
7915
|
e.left instanceof Date ? (e.right instanceof Date && e.left.getTime() === e.right.getTime() ? e.setResult(void 0) : e.setResult([e.left, e.right]), e.exit()) : e.right instanceof Date && e.setResult([e.left, e.right]).exit();
|
|
7915
7916
|
};
|
|
7916
|
-
|
|
7917
|
+
tf.filterName = "dates";
|
|
7917
7918
|
//#endregion
|
|
7918
7919
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/filters/nested.js
|
|
7919
|
-
var
|
|
7920
|
+
var nf = new Set(["__proto__"]), rf = (e) => {
|
|
7920
7921
|
if (!e || !e.children) return;
|
|
7921
7922
|
let t = e.children.length, n = e.result;
|
|
7922
7923
|
for (let r = 0; r < t; r++) {
|
|
@@ -7928,18 +7929,18 @@ var rf = new Set(["__proto__"]), af = (e) => {
|
|
|
7928
7929
|
}
|
|
7929
7930
|
n && e.leftIsArray && (n._t = "a"), e.setResult(n).exit();
|
|
7930
7931
|
};
|
|
7931
|
-
|
|
7932
|
-
var
|
|
7932
|
+
rf.filterName = "collectChildren";
|
|
7933
|
+
var af = (e) => {
|
|
7933
7934
|
var t;
|
|
7934
7935
|
if (e.leftIsArray || e.leftType !== "object") return;
|
|
7935
7936
|
let n = e.left, r = e.right, i = (t = e.options) == null ? void 0 : t.propertyFilter;
|
|
7936
7937
|
for (let t in n) {
|
|
7937
7938
|
if (!Object.prototype.hasOwnProperty.call(n, t) || i && !i(t, e)) continue;
|
|
7938
|
-
let a = new
|
|
7939
|
+
let a = new Id(n[t], r[t]);
|
|
7939
7940
|
e.push(a, t);
|
|
7940
7941
|
}
|
|
7941
7942
|
for (let t in r) if (Object.prototype.hasOwnProperty.call(r, t) && !(i && !i(t, e)) && n[t] === void 0) {
|
|
7942
|
-
let n = new
|
|
7943
|
+
let n = new Id(void 0, r[t]);
|
|
7943
7944
|
e.push(n, t);
|
|
7944
7945
|
}
|
|
7945
7946
|
if (!e.children || e.children.length === 0) {
|
|
@@ -7948,15 +7949,15 @@ var of = (e) => {
|
|
|
7948
7949
|
}
|
|
7949
7950
|
e.exit();
|
|
7950
7951
|
};
|
|
7951
|
-
|
|
7952
|
-
var
|
|
7952
|
+
af.filterName = "objects";
|
|
7953
|
+
var of = function(e) {
|
|
7953
7954
|
if (!e.nested) return;
|
|
7954
7955
|
let t = e.delta;
|
|
7955
7956
|
if (t._t) return;
|
|
7956
7957
|
let n = t, r = !1;
|
|
7957
7958
|
for (let t in n) {
|
|
7958
|
-
if (
|
|
7959
|
-
let i = e.left, a = new
|
|
7959
|
+
if (nf.has(t) || !Object.prototype.hasOwnProperty.call(n, t)) continue;
|
|
7960
|
+
let i = e.left, a = new Ld(typeof i == "object" && i && Object.prototype.hasOwnProperty.call(i, t) ? i[t] : void 0, n[t]);
|
|
7960
7961
|
e.push(a, t), r = !0;
|
|
7961
7962
|
}
|
|
7962
7963
|
if (!r) {
|
|
@@ -7965,8 +7966,8 @@ var sf = function(e) {
|
|
|
7965
7966
|
}
|
|
7966
7967
|
e.exit();
|
|
7967
7968
|
};
|
|
7968
|
-
|
|
7969
|
-
var
|
|
7969
|
+
of.filterName = "objects";
|
|
7970
|
+
var sf = function(e) {
|
|
7970
7971
|
if (!e || !e.children || e.delta._t) return;
|
|
7971
7972
|
if (e.left === null || typeof e.left != "object") {
|
|
7972
7973
|
e.setResult(e.left).exit();
|
|
@@ -7977,17 +7978,17 @@ var cf = function(e) {
|
|
|
7977
7978
|
let n = e.children[r];
|
|
7978
7979
|
if (n === void 0) continue;
|
|
7979
7980
|
let i = n.childName;
|
|
7980
|
-
|
|
7981
|
+
nf.has(i) || (Object.prototype.hasOwnProperty.call(e.left, i) && n.result === void 0 ? delete t[i] : t[i] !== n.result && (t[i] = n.result));
|
|
7981
7982
|
}
|
|
7982
7983
|
e.setResult(t).exit();
|
|
7983
7984
|
};
|
|
7984
|
-
|
|
7985
|
-
var
|
|
7985
|
+
sf.filterName = "collectChildren";
|
|
7986
|
+
var cf = function(e) {
|
|
7986
7987
|
if (!e.nested || e.delta._t) return;
|
|
7987
7988
|
let t = e.delta, n = !1;
|
|
7988
7989
|
for (let r in t) {
|
|
7989
|
-
if (
|
|
7990
|
-
let i = new
|
|
7990
|
+
if (nf.has(r) || !Object.prototype.hasOwnProperty.call(t, r)) continue;
|
|
7991
|
+
let i = new Rd(t[r]);
|
|
7991
7992
|
e.push(i, r), n = !0;
|
|
7992
7993
|
}
|
|
7993
7994
|
if (!n) {
|
|
@@ -7996,25 +7997,25 @@ var lf = function(e) {
|
|
|
7996
7997
|
}
|
|
7997
7998
|
e.exit();
|
|
7998
7999
|
};
|
|
7999
|
-
|
|
8000
|
-
var
|
|
8000
|
+
cf.filterName = "objects";
|
|
8001
|
+
var lf = (e) => {
|
|
8001
8002
|
if (!e || !e.children || e.delta._t) return;
|
|
8002
8003
|
let t = e.children.length, n = {};
|
|
8003
8004
|
for (let r = 0; r < t; r++) {
|
|
8004
8005
|
let t = e.children[r];
|
|
8005
8006
|
if (t === void 0) continue;
|
|
8006
8007
|
let i = t.childName;
|
|
8007
|
-
|
|
8008
|
+
nf.has(i) || n[i] !== t.result && (n[i] = t.result);
|
|
8008
8009
|
}
|
|
8009
8010
|
e.setResult(n).exit();
|
|
8010
8011
|
};
|
|
8011
|
-
|
|
8012
|
+
lf.filterName = "collectChildren";
|
|
8012
8013
|
//#endregion
|
|
8013
8014
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/filters/texts.js
|
|
8014
|
-
var
|
|
8015
|
-
function
|
|
8015
|
+
var uf = 2, df = 60, ff = null;
|
|
8016
|
+
function pf(e, t) {
|
|
8016
8017
|
var n;
|
|
8017
|
-
if (!
|
|
8018
|
+
if (!ff) {
|
|
8018
8019
|
let r;
|
|
8019
8020
|
if ((n = e == null ? void 0 : e.textDiff) != null && n.diffMatchPatch) r = new e.textDiff.diffMatchPatch();
|
|
8020
8021
|
else {
|
|
@@ -8022,7 +8023,7 @@ function mf(e, t) {
|
|
|
8022
8023
|
let e = /* @__PURE__ */ Error("The diff-match-patch library was not provided. Pass the library in through the options or use the `jsondiffpatch/with-text-diffs` entry-point.");
|
|
8023
8024
|
throw e.diff_match_patch_not_found = !0, e;
|
|
8024
8025
|
}
|
|
8025
|
-
|
|
8026
|
+
ff = {
|
|
8026
8027
|
diff: (e, t) => r.patch_toText(r.patch_make(e, t)),
|
|
8027
8028
|
patch: (e, t) => {
|
|
8028
8029
|
let n = r.patch_apply(r.patch_fromText(t), e);
|
|
@@ -8034,17 +8035,17 @@ function mf(e, t) {
|
|
|
8034
8035
|
}
|
|
8035
8036
|
};
|
|
8036
8037
|
}
|
|
8037
|
-
return
|
|
8038
|
+
return ff;
|
|
8038
8039
|
}
|
|
8039
|
-
var
|
|
8040
|
+
var mf = function(e) {
|
|
8040
8041
|
var t, n;
|
|
8041
8042
|
if (e.leftType !== "string") return;
|
|
8042
|
-
let r = e.left, i = e.right, a = ((n = (t = e.options) == null ? void 0 : t.textDiff) == null ? void 0 : n.minLength) ||
|
|
8043
|
+
let r = e.left, i = e.right, a = ((n = (t = e.options) == null ? void 0 : t.textDiff) == null ? void 0 : n.minLength) || df;
|
|
8043
8044
|
if (r.length < a || i.length < a) {
|
|
8044
8045
|
e.setResult([r, i]).exit();
|
|
8045
8046
|
return;
|
|
8046
8047
|
}
|
|
8047
|
-
let o =
|
|
8048
|
+
let o = pf(e.options);
|
|
8048
8049
|
if (!o) {
|
|
8049
8050
|
e.setResult([r, i]).exit();
|
|
8050
8051
|
return;
|
|
@@ -8053,19 +8054,19 @@ var hf = function(e) {
|
|
|
8053
8054
|
e.setResult([
|
|
8054
8055
|
s(r, i),
|
|
8055
8056
|
0,
|
|
8056
|
-
|
|
8057
|
+
uf
|
|
8057
8058
|
]).exit();
|
|
8058
8059
|
};
|
|
8059
|
-
|
|
8060
|
-
var
|
|
8060
|
+
mf.filterName = "texts";
|
|
8061
|
+
var hf = function(e) {
|
|
8061
8062
|
if (e.nested) return;
|
|
8062
8063
|
let t = e.delta;
|
|
8063
|
-
if (t[2] !==
|
|
8064
|
-
let n = t, r =
|
|
8064
|
+
if (t[2] !== uf) return;
|
|
8065
|
+
let n = t, r = pf(e.options, !0).patch;
|
|
8065
8066
|
e.setResult(r(e.left, n[0])).exit();
|
|
8066
8067
|
};
|
|
8067
|
-
|
|
8068
|
-
var
|
|
8068
|
+
hf.filterName = "texts";
|
|
8069
|
+
var gf = (e) => {
|
|
8069
8070
|
var t, n, r;
|
|
8070
8071
|
let i = /^@@ +-(\d+),(\d+) +\+(\d+),(\d+) +@@$/, a = e.split("\n");
|
|
8071
8072
|
for (let e = 0; e < a.length; e++) {
|
|
@@ -8086,21 +8087,21 @@ var _f = (e) => {
|
|
|
8086
8087
|
} else s === "-" && (a[e] = `+${(r = a[e]) == null ? void 0 : r.slice(1)}`);
|
|
8087
8088
|
}
|
|
8088
8089
|
return a.join("\n");
|
|
8089
|
-
},
|
|
8090
|
+
}, _f = function(e) {
|
|
8090
8091
|
if (e.nested) return;
|
|
8091
8092
|
let t = e.delta;
|
|
8092
|
-
if (t[2] !==
|
|
8093
|
+
if (t[2] !== uf) return;
|
|
8093
8094
|
let n = t;
|
|
8094
8095
|
e.setResult([
|
|
8095
|
-
|
|
8096
|
+
gf(n[0]),
|
|
8096
8097
|
0,
|
|
8097
|
-
|
|
8098
|
+
uf
|
|
8098
8099
|
]).exit();
|
|
8099
8100
|
};
|
|
8100
|
-
|
|
8101
|
+
_f.filterName = "texts";
|
|
8101
8102
|
//#endregion
|
|
8102
8103
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/filters/trivial.js
|
|
8103
|
-
var
|
|
8104
|
+
var vf = function(e) {
|
|
8104
8105
|
if (e.left === e.right) {
|
|
8105
8106
|
e.setResult(void 0).exit();
|
|
8106
8107
|
return;
|
|
@@ -8133,8 +8134,8 @@ var yf = function(e) {
|
|
|
8133
8134
|
}
|
|
8134
8135
|
e.left instanceof RegExp && (e.right instanceof RegExp ? e.setResult([e.left.toString(), e.right.toString()]).exit() : e.setResult([e.left, e.right]).exit());
|
|
8135
8136
|
};
|
|
8136
|
-
|
|
8137
|
-
var
|
|
8137
|
+
vf.filterName = "trivial";
|
|
8138
|
+
var yf = function(e) {
|
|
8138
8139
|
if (e.delta === void 0) {
|
|
8139
8140
|
e.setResult(e.left).exit();
|
|
8140
8141
|
return;
|
|
@@ -8158,8 +8159,8 @@ var bf = function(e) {
|
|
|
8158
8159
|
}
|
|
8159
8160
|
t.length === 3 && t[2] === 0 && e.setResult(void 0).exit();
|
|
8160
8161
|
};
|
|
8161
|
-
|
|
8162
|
-
var
|
|
8162
|
+
yf.filterName = "trivial";
|
|
8163
|
+
var bf = function(e) {
|
|
8163
8164
|
if (e.delta === void 0) {
|
|
8164
8165
|
e.setResult(e.delta).exit();
|
|
8165
8166
|
return;
|
|
@@ -8180,36 +8181,36 @@ var xf = function(e) {
|
|
|
8180
8181
|
}
|
|
8181
8182
|
t.length === 3 && t[2] === 0 && e.setResult([t[0]]).exit();
|
|
8182
8183
|
};
|
|
8183
|
-
|
|
8184
|
+
bf.filterName = "trivial";
|
|
8184
8185
|
//#endregion
|
|
8185
8186
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/diffpatcher.js
|
|
8186
|
-
var
|
|
8187
|
+
var xf = class {
|
|
8187
8188
|
constructor(e) {
|
|
8188
|
-
this.processor = new
|
|
8189
|
+
this.processor = new Bd(e), this.processor.pipe(new zd("diff").append(rf, vf, tf, mf, af, Jd).shouldHaveResult()), this.processor.pipe(new zd("patch").append(sf, Zd, yf, hf, of, Xd).shouldHaveResult()), this.processor.pipe(new zd("reverse").append(lf, ef, bf, _f, cf, Qd).shouldHaveResult());
|
|
8189
8190
|
}
|
|
8190
8191
|
options(e) {
|
|
8191
8192
|
return this.processor.options(e);
|
|
8192
8193
|
}
|
|
8193
8194
|
diff(e, t) {
|
|
8194
|
-
return this.processor.process(new
|
|
8195
|
+
return this.processor.process(new Id(e, t));
|
|
8195
8196
|
}
|
|
8196
8197
|
patch(e, t) {
|
|
8197
|
-
return this.processor.process(new
|
|
8198
|
+
return this.processor.process(new Ld(e, t));
|
|
8198
8199
|
}
|
|
8199
8200
|
reverse(e) {
|
|
8200
|
-
return this.processor.process(new
|
|
8201
|
+
return this.processor.process(new Rd(e));
|
|
8201
8202
|
}
|
|
8202
8203
|
unpatch(e, t) {
|
|
8203
8204
|
return this.patch(e, this.reverse(t));
|
|
8204
8205
|
}
|
|
8205
8206
|
clone(e) {
|
|
8206
|
-
return
|
|
8207
|
+
return Md(e);
|
|
8207
8208
|
}
|
|
8208
8209
|
};
|
|
8209
8210
|
//#endregion
|
|
8210
8211
|
//#region node_modules/.pnpm/jsondiffpatch@0.7.6/node_modules/jsondiffpatch/lib/index.js
|
|
8211
|
-
function
|
|
8212
|
-
return new
|
|
8212
|
+
function Sf(e) {
|
|
8213
|
+
return new xf(e);
|
|
8213
8214
|
}
|
|
8214
8215
|
//#endregion
|
|
8215
8216
|
//#region node_modules/.pnpm/@dmsnell+diff-match-patch@1.1.0/node_modules/@dmsnell/diff-match-patch/index.js
|
|
@@ -8782,14 +8783,14 @@ $.Diff = function(e, t) {
|
|
|
8782
8783
|
};
|
|
8783
8784
|
//#endregion
|
|
8784
8785
|
//#region src/components/audit-log/utils.ts
|
|
8785
|
-
var
|
|
8786
|
+
var Cf = ((e = {}) => Sf({
|
|
8786
8787
|
...e,
|
|
8787
8788
|
textDiff: {
|
|
8788
8789
|
diffMatchPatch: $,
|
|
8789
8790
|
minLength: 120
|
|
8790
8791
|
},
|
|
8791
8792
|
cloneDiffValues: !0
|
|
8792
|
-
}))(),
|
|
8793
|
+
}))(), wf = (e) => ln(e) && !Array.isArray(e), Tf = (e) => {
|
|
8793
8794
|
let t = {
|
|
8794
8795
|
total: 0,
|
|
8795
8796
|
added: 0,
|
|
@@ -8828,7 +8829,7 @@ var wf = ((e = {}) => Cf({
|
|
|
8828
8829
|
t.modified++, t.total++;
|
|
8829
8830
|
return;
|
|
8830
8831
|
}
|
|
8831
|
-
if (
|
|
8832
|
+
if (wf(e)) {
|
|
8832
8833
|
if (e._t === "a") {
|
|
8833
8834
|
for (let t in e) t !== "_t" && n(e[t]);
|
|
8834
8835
|
return;
|
|
@@ -8837,8 +8838,8 @@ var wf = ((e = {}) => Cf({
|
|
|
8837
8838
|
}
|
|
8838
8839
|
};
|
|
8839
8840
|
return n(e), t;
|
|
8840
|
-
},
|
|
8841
|
-
let n =
|
|
8841
|
+
}, Ef = (e) => (Array.isArray(e) ? e : e ? [e] : []).reduce((e, t) => {
|
|
8842
|
+
let n = Tf(t);
|
|
8842
8843
|
return e.total += n.total, e.added += n.added, e.removed += n.removed, e.modified += n.modified, e.moved += n.moved, e.text += n.text, e;
|
|
8843
8844
|
}, {
|
|
8844
8845
|
total: 0,
|
|
@@ -8847,39 +8848,39 @@ var wf = ((e = {}) => Cf({
|
|
|
8847
8848
|
modified: 0,
|
|
8848
8849
|
moved: 0,
|
|
8849
8850
|
text: 0
|
|
8850
|
-
}),
|
|
8851
|
+
}), Df = (e, t) => {
|
|
8851
8852
|
let n = Object.fromEntries((e || []).map((e) => [e.sectionKey, e.sectionLabel]));
|
|
8852
8853
|
for (let e = t.length - 1; e >= 0; e--) {
|
|
8853
8854
|
let r = n[t[e]];
|
|
8854
8855
|
if (r) return r;
|
|
8855
8856
|
}
|
|
8856
8857
|
return "";
|
|
8857
|
-
},
|
|
8858
|
+
}, Of = (e) => {
|
|
8858
8859
|
let t = (e) => Fn(e) ? qn(e) : String(e);
|
|
8859
8860
|
return Array.isArray(e) ? e.length === 0 ? "" : e.some((e) => e && typeof e == "object") ? "Multiple changes..." : e.map(t).join(", ") : e && typeof e == "object" ? Object.keys(e).length === 0 ? "" : "Multiple changes..." : t(e);
|
|
8860
|
-
},
|
|
8861
|
+
}, kf = (e) => {
|
|
8861
8862
|
switch (e.length) {
|
|
8862
8863
|
case 1: {
|
|
8863
8864
|
let [t] = e;
|
|
8864
8865
|
return {
|
|
8865
8866
|
type: "created",
|
|
8866
8867
|
before: "",
|
|
8867
|
-
after:
|
|
8868
|
+
after: Of(t)
|
|
8868
8869
|
};
|
|
8869
8870
|
}
|
|
8870
8871
|
case 2: {
|
|
8871
8872
|
let [t, n] = e;
|
|
8872
8873
|
return {
|
|
8873
8874
|
type: "modified",
|
|
8874
|
-
before:
|
|
8875
|
-
after:
|
|
8875
|
+
before: Of(t),
|
|
8876
|
+
after: Of(n)
|
|
8876
8877
|
};
|
|
8877
8878
|
}
|
|
8878
8879
|
case 3: {
|
|
8879
8880
|
let [t] = e;
|
|
8880
8881
|
return {
|
|
8881
8882
|
type: "deleted",
|
|
8882
|
-
before:
|
|
8883
|
+
before: Of(t),
|
|
8883
8884
|
after: ""
|
|
8884
8885
|
};
|
|
8885
8886
|
}
|
|
@@ -8889,7 +8890,7 @@ var wf = ((e = {}) => Cf({
|
|
|
8889
8890
|
after: ""
|
|
8890
8891
|
};
|
|
8891
8892
|
}
|
|
8892
|
-
},
|
|
8893
|
+
}, Af = (e) => Array.isArray(e), jf = (e, t) => t ? Af(t) ? t.length === 0 ? e : t.reduce((e, t) => Cf.unpatch(Xt(e), Xt(t)), Xt(e)) : Cf.unpatch(Xt(e), Xt(t)) : e, Mf = (e, t, n) => {
|
|
8893
8894
|
let r = t.filter((t) => !!t.diffs && t.createdAt >= e.createdAt), i = Array.from({ length: r.length + 1 });
|
|
8894
8895
|
i[0] = Xt(n);
|
|
8895
8896
|
let a = "", o = "";
|
|
@@ -8901,7 +8902,7 @@ var wf = ((e = {}) => Cf({
|
|
|
8901
8902
|
i[e + 1] = i[e];
|
|
8902
8903
|
continue;
|
|
8903
8904
|
}
|
|
8904
|
-
i[e + 1] =
|
|
8905
|
+
i[e + 1] = jf(i[e], t);
|
|
8905
8906
|
}
|
|
8906
8907
|
let e = r.length > 0 ? i[r.length - 1] : n, t = r.length > 0 ? i[r.length] : n;
|
|
8907
8908
|
a = JSON.stringify(t == null ? "" : t, null, 2), o = JSON.stringify(e == null ? "" : e, null, 2);
|
|
@@ -8912,7 +8913,7 @@ var wf = ((e = {}) => Cf({
|
|
|
8912
8913
|
oldJson: a,
|
|
8913
8914
|
newJson: o
|
|
8914
8915
|
};
|
|
8915
|
-
},
|
|
8916
|
+
}, Nf = (e) => e.replace(/\[\d+\]/g, "").replace(/([a-z0-9])([A-Z])/g, "$1 $2").replace(/[_-]/g, " ").replace(/\s+/g, " ").trim().replace(/^./, (e) => e.toUpperCase()), Pf = (e) => {
|
|
8916
8917
|
if (e == null || e === "") return "empty";
|
|
8917
8918
|
if (typeof e == "boolean") return e ? "true" : "false";
|
|
8918
8919
|
if (typeof e == "string") return e;
|
|
@@ -8923,32 +8924,32 @@ var wf = ((e = {}) => Cf({
|
|
|
8923
8924
|
} catch {
|
|
8924
8925
|
return String(e);
|
|
8925
8926
|
}
|
|
8926
|
-
},
|
|
8927
|
+
}, Ff = (e, t = e.length - 1) => {
|
|
8927
8928
|
if (t >= e.length) return "Value";
|
|
8928
8929
|
let n = e[t];
|
|
8929
|
-
return !n || Mn(n) ?
|
|
8930
|
-
},
|
|
8931
|
-
let o =
|
|
8930
|
+
return !n || Mn(n) ? Ff(e, t - 1) : Nf(n);
|
|
8931
|
+
}, If = ({ userName: e, type: t, property: n, before: r, after: i, sectionName: a }) => {
|
|
8932
|
+
let o = Pf(r), s = Pf(i), c = a ? ` in ${a}` : "";
|
|
8932
8933
|
switch (t) {
|
|
8933
8934
|
case "modified": return `${e} updated ${n} from ${o} to ${s}${c}.`;
|
|
8934
8935
|
case "created": return `${e} created ${s}${c}.`;
|
|
8935
8936
|
case "deleted": return `${e} deleted ${o}${c}.`;
|
|
8936
8937
|
default: return `${e} changed ${n}${c}.`;
|
|
8937
8938
|
}
|
|
8938
|
-
},
|
|
8939
|
+
}, Lf = ({ sectionNames: e, userName: t, diffs: n }) => /* @__PURE__ */ z(_c, { table: {
|
|
8939
8940
|
headers: [{ cells: [{ value: "Changes" }] }],
|
|
8940
8941
|
rows: n.map((n) => {
|
|
8941
|
-
let { deltaFormat: r, path: i } = n, a =
|
|
8942
|
-
return { cells: [{ value:
|
|
8942
|
+
let { deltaFormat: r, path: i } = n, a = Df(e, i), { type: o, before: s, after: c } = kf(r);
|
|
8943
|
+
return { cells: [{ value: If({
|
|
8943
8944
|
userName: t,
|
|
8944
8945
|
type: o,
|
|
8945
|
-
property:
|
|
8946
|
+
property: Ff(i),
|
|
8946
8947
|
before: s,
|
|
8947
8948
|
after: c,
|
|
8948
8949
|
sectionName: a
|
|
8949
8950
|
}) }] };
|
|
8950
8951
|
})
|
|
8951
|
-
} }),
|
|
8952
|
+
} }), Rf = Object.freeze({
|
|
8952
8953
|
summary: {
|
|
8953
8954
|
label: "Summary",
|
|
8954
8955
|
value: "summary"
|
|
@@ -8957,7 +8958,7 @@ var wf = ((e = {}) => Cf({
|
|
|
8957
8958
|
label: "Compare",
|
|
8958
8959
|
value: "compare"
|
|
8959
8960
|
}
|
|
8960
|
-
}),
|
|
8961
|
+
}), zf = (e) => {
|
|
8961
8962
|
let t = ["user", "unittemplate"], n = [], r = [], i = (e) => {
|
|
8962
8963
|
e && Object.keys(e).forEach((a) => {
|
|
8963
8964
|
t.includes(a) || (r.push(a), tn(e[a]) ? n.push({
|
|
@@ -8967,29 +8968,29 @@ var wf = ((e = {}) => Cf({
|
|
|
8967
8968
|
});
|
|
8968
8969
|
};
|
|
8969
8970
|
return e ? (i(e), n) : [];
|
|
8970
|
-
},
|
|
8971
|
+
}, Bf = ({ auditLog: e, auditLogs: t, data: n, isOpen: r, sectionNames: i, onClose: a }) => {
|
|
8971
8972
|
let { diffs: o = void 0 } = e || {};
|
|
8972
8973
|
if (!o) return null;
|
|
8973
|
-
let s = [
|
|
8974
|
+
let s = [Rf.summary, Rf.compare].map(({ label: e, value: t }) => ({
|
|
8974
8975
|
label: e,
|
|
8975
8976
|
value: t
|
|
8976
|
-
})), [c, l] = m(s[0]), { oldJson: u, newJson: d } =
|
|
8977
|
+
})), [c, l] = m(s[0]), { oldJson: u, newJson: d } = Mf(e, t, n);
|
|
8977
8978
|
return /* @__PURE__ */ z(Ka, {
|
|
8978
8979
|
visible: r,
|
|
8979
8980
|
centered: !0,
|
|
8980
8981
|
children: /* @__PURE__ */ z(Sa, { dialog: {
|
|
8981
8982
|
scroll: !0,
|
|
8982
8983
|
heading: "Comparison view",
|
|
8983
|
-
content: /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ z(
|
|
8984
|
+
content: /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ z(Du, {
|
|
8984
8985
|
name: "ViewTab",
|
|
8985
8986
|
onChange: (e) => l(s.find((t) => t.value === e.target.value)),
|
|
8986
8987
|
options: s,
|
|
8987
8988
|
value: c
|
|
8988
|
-
}), c.value === "summary" ? /* @__PURE__ */ z(
|
|
8989
|
+
}), c.value === "summary" ? /* @__PURE__ */ z(Lf, {
|
|
8989
8990
|
userName: e.userName,
|
|
8990
8991
|
sectionNames: i,
|
|
8991
|
-
diffs:
|
|
8992
|
-
}) : /* @__PURE__ */ z(
|
|
8992
|
+
diffs: zf(o)
|
|
8993
|
+
}) : /* @__PURE__ */ z(kd, {
|
|
8993
8994
|
oldJson: u,
|
|
8994
8995
|
newJson: d
|
|
8995
8996
|
})] }),
|
|
@@ -9002,7 +9003,7 @@ var wf = ((e = {}) => Cf({
|
|
|
9002
9003
|
height: "90vh"
|
|
9003
9004
|
} })
|
|
9004
9005
|
});
|
|
9005
|
-
},
|
|
9006
|
+
}, Vf = ({ logs: e, data: t, total: n, loading: r, selectedPage: i, rowsPerPage: a, sectionNames: o, filterToggles: s = [], onChangeRowsPerPage: c, onSelectPage: l }) => {
|
|
9006
9007
|
let [u, d] = m(!1), [f, p] = m(null), h = [
|
|
9007
9008
|
{
|
|
9008
9009
|
label: "10 / page",
|
|
@@ -9021,7 +9022,7 @@ var wf = ((e = {}) => Cf({
|
|
|
9021
9022
|
value: 0
|
|
9022
9023
|
}
|
|
9023
9024
|
], g = ({ diffs: e, userName: t, source: n, operation: r, operationMetaData: i }) => {
|
|
9024
|
-
let a =
|
|
9025
|
+
let a = Ef(e), o = a.total ? `${a.total} change${a.total === 1 ? "" : "s"}` : "no field changes";
|
|
9025
9026
|
if (n === "API") return r === "Created" ? "Created through API" : "Changed through API";
|
|
9026
9027
|
switch (r) {
|
|
9027
9028
|
case "Created": return `Created by ${t}`;
|
|
@@ -9059,7 +9060,7 @@ var wf = ((e = {}) => Cf({
|
|
|
9059
9060
|
type: "Static"
|
|
9060
9061
|
},
|
|
9061
9062
|
{
|
|
9062
|
-
value:
|
|
9063
|
+
value: Ad({
|
|
9063
9064
|
date: e.createdAt,
|
|
9064
9065
|
showTime: !0
|
|
9065
9066
|
}),
|
|
@@ -9067,12 +9068,12 @@ var wf = ((e = {}) => Cf({
|
|
|
9067
9068
|
}
|
|
9068
9069
|
] }));
|
|
9069
9070
|
return /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ z(ia, {
|
|
9070
|
-
heading: /* @__PURE__ */ B(
|
|
9071
|
+
heading: /* @__PURE__ */ B(jl, {
|
|
9071
9072
|
gap: !0,
|
|
9072
9073
|
wrap: !0,
|
|
9073
9074
|
children: [/* @__PURE__ */ z(ya, { children: "CHANGES" }), s == null ? void 0 : s.map((e) => {
|
|
9074
9075
|
var t;
|
|
9075
|
-
return /* @__PURE__ */ z(
|
|
9076
|
+
return /* @__PURE__ */ z(ll, {
|
|
9076
9077
|
small: (t = e.small) == null ? !0 : t,
|
|
9077
9078
|
checked: e.checked,
|
|
9078
9079
|
onChange: e.onChange,
|
|
@@ -9082,11 +9083,11 @@ var wf = ((e = {}) => Cf({
|
|
|
9082
9083
|
})]
|
|
9083
9084
|
}),
|
|
9084
9085
|
padding: !1,
|
|
9085
|
-
children: r ? /* @__PURE__ */ z(
|
|
9086
|
+
children: r ? /* @__PURE__ */ z(Ql, {
|
|
9086
9087
|
height: "100px",
|
|
9087
9088
|
theme: Ar.WHITE,
|
|
9088
9089
|
children: /* @__PURE__ */ z(gi, { dark: !0 })
|
|
9089
|
-
}) : /* @__PURE__ */ z(
|
|
9090
|
+
}) : /* @__PURE__ */ z(_c, { table: {
|
|
9090
9091
|
headers: _,
|
|
9091
9092
|
rows: v,
|
|
9092
9093
|
fixedWidth: "100%",
|
|
@@ -9107,7 +9108,7 @@ var wf = ((e = {}) => Cf({
|
|
|
9107
9108
|
small: !0
|
|
9108
9109
|
} }
|
|
9109
9110
|
} })
|
|
9110
|
-
}), u && f && /* @__PURE__ */ z(
|
|
9111
|
+
}), u && f && /* @__PURE__ */ z(Bf, {
|
|
9111
9112
|
sectionNames: o,
|
|
9112
9113
|
isOpen: u,
|
|
9113
9114
|
onClose: () => d(!1),
|
|
@@ -9115,7 +9116,7 @@ var wf = ((e = {}) => Cf({
|
|
|
9115
9116
|
auditLog: f,
|
|
9116
9117
|
data: t
|
|
9117
9118
|
})] });
|
|
9118
|
-
},
|
|
9119
|
+
}, Hf = ({ pathName: e, moduleName: t, onNavigate: n, onStartTimingEvent: r }) => {
|
|
9119
9120
|
let i = window.location.href, a = p(i);
|
|
9120
9121
|
return c(() => {
|
|
9121
9122
|
a.current = i;
|
|
@@ -9138,10 +9139,10 @@ var wf = ((e = {}) => Cf({
|
|
|
9138
9139
|
});
|
|
9139
9140
|
};
|
|
9140
9141
|
}, [e, t]), null;
|
|
9141
|
-
},
|
|
9142
|
-
|
|
9143
|
-
e ===
|
|
9142
|
+
}, Uf = (e) => typeof e == "string" || typeof e == "number" || typeof e == "boolean" || e === null, Wf = (e) => {
|
|
9143
|
+
yd(md.LanguageKey, e.languageKey), Object.entries(e).forEach(([e, t]) => {
|
|
9144
|
+
e === md.Translations ? yd(e, gd(t)) : yd(e, Uf(t) ? t : { ...t });
|
|
9144
9145
|
});
|
|
9145
9146
|
};
|
|
9146
9147
|
//#endregion
|
|
9147
|
-
export { Jr as Accordion, pi as AccordionWithDefaultToggle, Xi as Actions, Dr as Align,
|
|
9148
|
+
export { Jr as Accordion, pi as AccordionWithDefaultToggle, Xi as Actions, Dr as Align, Vf as AuditLog, Ii as Badge, ea as Breadcrumb, Qi as BreadcrumbLinkType, K as Button, na as ButtonGroup, Or as ButtonPosition, _i as ButtonType, ia as Card, li as CheckBox, Hr as Chevron, Gr as Collapse, Er as Color, la as ColorInput, fa as Column, Sa as Dialog, kd as DiffViewer, U as DisabledContext, _a as Divider, ka as Drawer, Pu as ElementType, Oc as Empty, Al as Field, El as FileButton, za as FileInput, jl as Flex, Nl as FormRow, Ll as Grid, V as GroupOrder, ya as Heading, ci as HelpIcon, W as Icon, H as IconType, Pa as Input, Ma as InputGroup, Ds as InputGroupAddon, Ia as InputReaderMethods, jr as InputType, Ol as Label, Xl as List, zl as ListHeading, Gl as ListSubheading, Ql as Loader, Ji as Menu, wi as MenuCarat, Ci as MenuType, po as Message, oo as MessageType, Ka as Modal, yo as NativeSelect, Us as NumberInput, iu as OptionDropdown, ou as Page, Os as Pagination, Bu as PopConfirm, sa as Popover, Ha as Portal, cu as PrintHeader, Ya as ProgressBar, lu as RadioButton, mu as RichTextInput, gu as Row, xs as Select, Td as SettingField, xu as SideBar, Cu as Skeleton, Zs as Slider, eo as SmartUploadModal, Ba as Spacer, gi as Spinner, _c as Table, Tl as TableImportExport, Du as Tabs, ha as Text, Au as TextArea, Ou as TextLink, kr as TextTransform, Ar as Theme, ur as Toaster, ll as Toggle, G as Tooltip, Lu as TopBar, Wu as Tree, Ju as TreeTable, Tr as TriggerType, pd as UnitInput, Cd as UnitTable, Hf as UsageTracker, ol as dismissToast, ud as initializeContext, Wf as initializeGuiLibrary, La as readFile, al as toast, bo as useFocus, Va as useKeyboardEvent, Co as useWindowWidth };
|