master-components-react-ts 2.4.9 → 2.4.11
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/Tooltip/Tooltip.types.d.ts +1 -1
- package/dist/index.js +484 -484
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
import { jsx as e, jsxs as i, Fragment as $t } from "react/jsx-runtime";
|
|
3
3
|
import { useState as E, useRef as ne, useEffect as X, useContext as gt, createContext as wt, useCallback as Ke } from "react";
|
|
4
4
|
import N from "dayjs";
|
|
5
|
-
const Re = 50 / 2, Mt = ({ size: t = 24, strokeWidth: o = 5, linecap: r = "round", duration: n = 1, stroke: a = "#2753dd", ...
|
|
5
|
+
const Re = 50 / 2, Mt = ({ size: t = 24, strokeWidth: o = 5, linecap: r = "round", duration: n = 1, stroke: a = "#2753dd", ...d }) => {
|
|
6
6
|
const s = Re;
|
|
7
|
-
return /* @__PURE__ */ e("svg", { ...
|
|
7
|
+
return /* @__PURE__ */ e("svg", { ...d, viewBox: `0 0 ${Re * 2} ${Re * 2}`, width: t, height: t, children: /* @__PURE__ */ i(
|
|
8
8
|
"circle",
|
|
9
9
|
{
|
|
10
10
|
fill: "none",
|
|
@@ -57,13 +57,13 @@ const Re = 50 / 2, Mt = ({ size: t = 24, strokeWidth: o = 5, linecap: r = "round
|
|
|
57
57
|
color: r = "#A4A7AE",
|
|
58
58
|
xmlns: n = "http://www.w3.org/2000/svg",
|
|
59
59
|
viewBox: a = "0 0 14 14",
|
|
60
|
-
fill:
|
|
60
|
+
fill: d = "none",
|
|
61
61
|
d: s = "M10.5 3.5L3.5 10.5M3.5 3.5L10.5 10.5",
|
|
62
62
|
stroke: l = "#A4A7AE",
|
|
63
63
|
strokeWidth: y = "1.66667",
|
|
64
64
|
strokeLinecap: A = "round",
|
|
65
65
|
strokeLinejoin: C = "round"
|
|
66
|
-
}) => /* @__PURE__ */ e("svg", { xmlns: n, width: t, height: o, viewBox: a, fill:
|
|
66
|
+
}) => /* @__PURE__ */ e("svg", { xmlns: n, width: t, height: o, viewBox: a, fill: d, children: /* @__PURE__ */ e("path", { d: s, stroke: l, strokeWidth: y, strokeLinecap: A, strokeLinejoin: C }) }), yt = ({ color: t = "#131314" }) => /* @__PURE__ */ e("svg", { xmlns: "http://www.w3.org/2000/svg", width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", color: t, children: /* @__PURE__ */ e(
|
|
67
67
|
"path",
|
|
68
68
|
{
|
|
69
69
|
fillRule: "evenodd",
|
|
@@ -250,23 +250,23 @@ const Re = 50 / 2, Mt = ({ size: t = 24, strokeWidth: o = 5, linecap: r = "round
|
|
|
250
250
|
leftSlot: r,
|
|
251
251
|
rightSlot: n,
|
|
252
252
|
buttonSlot: a,
|
|
253
|
-
type:
|
|
253
|
+
type: d = "button",
|
|
254
254
|
colorType: s = "neutral",
|
|
255
255
|
buttonType: l = "primary",
|
|
256
256
|
withFocus: y = !1,
|
|
257
257
|
customFocus: A,
|
|
258
258
|
disabled: C,
|
|
259
|
-
loading:
|
|
259
|
+
loading: I = !1,
|
|
260
260
|
spaceBetween: k = !1,
|
|
261
261
|
buttonStyle: $,
|
|
262
262
|
mainButtonContentStyle: M,
|
|
263
|
-
mainButtonLabelStyle:
|
|
264
|
-
leftSlotStyle:
|
|
265
|
-
rightSlotStyle:
|
|
266
|
-
onClick:
|
|
263
|
+
mainButtonLabelStyle: p,
|
|
264
|
+
leftSlotStyle: c,
|
|
265
|
+
rightSlotStyle: f,
|
|
266
|
+
onClick: x
|
|
267
267
|
}) => {
|
|
268
268
|
const [L, Y] = E(A || !1), R = ne(null), z = (U) => {
|
|
269
|
-
C ||
|
|
269
|
+
C || I || (y && Y((V) => !V), x?.(U));
|
|
270
270
|
}, G = () => {
|
|
271
271
|
let U = "#ffffff";
|
|
272
272
|
return s === "neutral" && l !== "primary" && (U = "#0058FF"), s === "positive" && l !== "primary" && (U = "#328707"), s === "negative" && l !== "primary" && (U = "#E3292F"), U;
|
|
@@ -283,14 +283,14 @@ const Re = 50 / 2, Mt = ({ size: t = 24, strokeWidth: o = 5, linecap: r = "round
|
|
|
283
283
|
{
|
|
284
284
|
ref: R,
|
|
285
285
|
style: $,
|
|
286
|
-
type:
|
|
286
|
+
type: d,
|
|
287
287
|
disabled: C,
|
|
288
|
-
className: `${Le.mainButton} ${Le[o]} ${
|
|
288
|
+
className: `${Le.mainButton} ${Le[o]} ${I ? Le.loading : ""} ${L ? Le.focused : ""} ${Le[l]} ${Le[s]} ${C ? Le.disabled : ""}`,
|
|
289
289
|
onClick: z,
|
|
290
|
-
children:
|
|
291
|
-
r && /* @__PURE__ */ e("div", { className: Le.leftSlot, style:
|
|
292
|
-
/* @__PURE__ */ e("p", { className: Le.mainButtonLabel, style:
|
|
293
|
-
n && /* @__PURE__ */ e("div", { className: Le.rightSlot, style:
|
|
290
|
+
children: I ? /* @__PURE__ */ e(Mt, { size: 20, stroke: G() }) : a || /* @__PURE__ */ i("div", { className: Le.mainButtonContent, style: { ...M, justifyContent: k ? "space-between" : "center" }, children: [
|
|
291
|
+
r && /* @__PURE__ */ e("div", { className: Le.leftSlot, style: c, children: r }),
|
|
292
|
+
/* @__PURE__ */ e("p", { className: Le.mainButtonLabel, style: p, children: t }),
|
|
293
|
+
n && /* @__PURE__ */ e("div", { className: Le.rightSlot, style: f, children: n })
|
|
294
294
|
] })
|
|
295
295
|
}
|
|
296
296
|
);
|
|
@@ -344,20 +344,20 @@ const co = "mc__FormInput-module__inputWrapper", uo = "mc__FormInput-module__sm"
|
|
|
344
344
|
helperText: r,
|
|
345
345
|
required: n = !1,
|
|
346
346
|
disabled: a = !1,
|
|
347
|
-
readOnly:
|
|
347
|
+
readOnly: d = !1,
|
|
348
348
|
withFocus: s = !0,
|
|
349
349
|
withActive: l = !0,
|
|
350
350
|
searchComponent: y = !1,
|
|
351
351
|
size: A = "md",
|
|
352
352
|
toggleFocus: C = !1,
|
|
353
|
-
rightSlot:
|
|
353
|
+
rightSlot: I,
|
|
354
354
|
leftSlot: k,
|
|
355
355
|
helperSlot: $,
|
|
356
356
|
type: M = "text",
|
|
357
|
-
value:
|
|
358
|
-
maxLength:
|
|
359
|
-
forDropdown:
|
|
360
|
-
customFocus:
|
|
357
|
+
value: p,
|
|
358
|
+
maxLength: c,
|
|
359
|
+
forDropdown: f = !1,
|
|
360
|
+
customFocus: x = null,
|
|
361
361
|
focus: L = !1,
|
|
362
362
|
inputState: Y = { error: !1, success: !1, loading: !1 },
|
|
363
363
|
inputSlot: R,
|
|
@@ -371,25 +371,25 @@ const co = "mc__FormInput-module__inputWrapper", uo = "mc__FormInput-module__sm"
|
|
|
371
371
|
formInputStyle: K,
|
|
372
372
|
helperTextStyle: W,
|
|
373
373
|
labelStyle: g,
|
|
374
|
-
inputSlotStyle:
|
|
374
|
+
inputSlotStyle: h
|
|
375
375
|
}) => {
|
|
376
|
-
const m = ne(null), [w, T] = E(
|
|
376
|
+
const m = ne(null), [w, T] = E(p ?? ""), [J, q] = E(!1), [oe, se] = E(!1), he = (Q) => {
|
|
377
377
|
y && T(Q.target.value), z?.(Q.target.value);
|
|
378
378
|
}, ue = () => {
|
|
379
|
-
G?.(), !
|
|
379
|
+
G?.(), !f && q(!0);
|
|
380
380
|
}, de = () => {
|
|
381
|
-
q(C ?
|
|
381
|
+
q(C ? x ?? !1 : !1), U?.();
|
|
382
382
|
}, ve = (Q) => {
|
|
383
|
-
const v = Q.currentTarget.value,
|
|
384
|
-
M === "number" && (Q.keyCode === 69 || !
|
|
383
|
+
const v = Q.currentTarget.value, _ = v.length === 0;
|
|
384
|
+
M === "number" && (Q.keyCode === 69 || !_ && (Q.keyCode === 187 || Q.keyCode === 107 || Q.keyCode === 189 || Q.keyCode === 109)) && Q.preventDefault(), Q.key === "Enter" && v && v.length > 0 && V?.();
|
|
385
385
|
}, ie = (Q) => Q, pe = () => {
|
|
386
386
|
y && (T(""), z?.(""));
|
|
387
387
|
};
|
|
388
388
|
return X(() => {
|
|
389
389
|
te?.(J);
|
|
390
390
|
}, [J]), X(() => {
|
|
391
|
-
|
|
392
|
-
}, [
|
|
391
|
+
x != null && q(x);
|
|
392
|
+
}, [x]), /* @__PURE__ */ i("div", { className: `${ce.inputWrapper} ${a ? ce.disabled : ""} ${ce[A]}`, style: P ?? {}, children: [
|
|
393
393
|
t && /* @__PURE__ */ i("div", { className: ce.formInputLabelWrapper, children: [
|
|
394
394
|
/* @__PURE__ */ i("label", { style: g ?? {}, className: ce.formInputLabel, children: [
|
|
395
395
|
t,
|
|
@@ -407,31 +407,31 @@ const co = "mc__FormInput-module__inputWrapper", uo = "mc__FormInput-module__sm"
|
|
|
407
407
|
children: [
|
|
408
408
|
k && /* @__PURE__ */ e("div", { className: ce.formInputSlot, children: ie(k) }),
|
|
409
409
|
y && /* @__PURE__ */ e("div", { className: ce.formInputSlot, children: ie(/* @__PURE__ */ e(Dt, {})) }),
|
|
410
|
-
R ? /* @__PURE__ */ e("div", { className: ce.formInputSlot, style:
|
|
410
|
+
R ? /* @__PURE__ */ e("div", { className: ce.formInputSlot, style: h ?? {}, children: ie(R) }) : /* @__PURE__ */ e(
|
|
411
411
|
"input",
|
|
412
412
|
{
|
|
413
413
|
className: ce.formInput,
|
|
414
414
|
ref: m,
|
|
415
415
|
style: K ?? {},
|
|
416
416
|
type: M ?? "text",
|
|
417
|
-
value: y ? w :
|
|
417
|
+
value: y ? w : p,
|
|
418
418
|
onChange: (Q) => he(Q),
|
|
419
|
-
onMouseDown: () => !
|
|
420
|
-
onMouseUp: () => !
|
|
421
|
-
onMouseLeave: () => !
|
|
419
|
+
onMouseDown: () => !f && se(!0),
|
|
420
|
+
onMouseUp: () => !f && se(!1),
|
|
421
|
+
onMouseLeave: () => !f && se(!1),
|
|
422
422
|
onFocus: ue,
|
|
423
423
|
onBlur: de,
|
|
424
424
|
disabled: a,
|
|
425
425
|
required: n,
|
|
426
426
|
onKeyDown: ve,
|
|
427
|
-
readOnly:
|
|
427
|
+
readOnly: d,
|
|
428
428
|
spellCheck: !1,
|
|
429
429
|
placeholder: o ?? "",
|
|
430
430
|
autoComplete: "off",
|
|
431
|
-
maxLength:
|
|
431
|
+
maxLength: c
|
|
432
432
|
}
|
|
433
433
|
),
|
|
434
|
-
|
|
434
|
+
I && /* @__PURE__ */ e("div", { style: y ? { cursor: "pointer" } : {}, className: ce.formInputSlot, children: ie(I) }),
|
|
435
435
|
y && /* @__PURE__ */ e("div", { className: ce.formInputSlot, children: /* @__PURE__ */ e("div", { onClick: pe, style: y ? { cursor: "pointer" } : {}, className: ce.formInputSlot, children: w?.length > 0 ? ie(/* @__PURE__ */ e(qe, {})) : null }) })
|
|
436
436
|
]
|
|
437
437
|
}
|
|
@@ -502,26 +502,26 @@ const $o = "mc__Textarea-module__textareaContainer", Mo = "mc__Textarea-module__
|
|
|
502
502
|
cols: r = 30,
|
|
503
503
|
rows: n = 5,
|
|
504
504
|
value: a,
|
|
505
|
-
inputState:
|
|
505
|
+
inputState: d = { error: !1, success: !0 },
|
|
506
506
|
maxLength: s = 20,
|
|
507
507
|
withFocus: l = !0,
|
|
508
508
|
withActive: y = !0,
|
|
509
509
|
withResize: A = !0,
|
|
510
510
|
withClose: C = !0,
|
|
511
|
-
onChange:
|
|
511
|
+
onChange: I,
|
|
512
512
|
onFocus: k,
|
|
513
513
|
onBlur: $,
|
|
514
514
|
disabled: M,
|
|
515
|
-
required:
|
|
516
|
-
textareaContainerStyle:
|
|
517
|
-
textareaLabelStyle:
|
|
518
|
-
requiredStyle:
|
|
515
|
+
required: p,
|
|
516
|
+
textareaContainerStyle: c,
|
|
517
|
+
textareaLabelStyle: f,
|
|
518
|
+
requiredStyle: x,
|
|
519
519
|
labelSlot: L,
|
|
520
520
|
textareaFooterStyle: Y
|
|
521
521
|
}) => {
|
|
522
522
|
const R = ne(null), [z, G] = E(!1), [U, V] = E(!1), te = (w) => {
|
|
523
523
|
let T = w.target.value;
|
|
524
|
-
|
|
524
|
+
I && typeof I == "function" && I(T);
|
|
525
525
|
}, F = (w) => w, P = (w) => {
|
|
526
526
|
G(!0), k && typeof k == "function" && k(w);
|
|
527
527
|
}, K = (w) => {
|
|
@@ -555,33 +555,33 @@ const $o = "mc__Textarea-module__textareaContainer", Mo = "mc__Textarea-module__
|
|
|
555
555
|
});
|
|
556
556
|
return T.observe(w), () => T.disconnect();
|
|
557
557
|
}, []);
|
|
558
|
-
const
|
|
559
|
-
W = !1,
|
|
558
|
+
const h = (w) => {
|
|
559
|
+
W = !1, I?.(w.target.value), g();
|
|
560
560
|
}, m = () => {
|
|
561
|
-
|
|
561
|
+
I && typeof I == "function" && I("");
|
|
562
562
|
};
|
|
563
563
|
return /* @__PURE__ */ i(
|
|
564
564
|
"div",
|
|
565
565
|
{
|
|
566
|
-
style:
|
|
567
|
-
className: `${_e.textareaContainer} ${
|
|
566
|
+
style: c ?? {},
|
|
567
|
+
className: `${_e.textareaContainer} ${d.error ? _e.error : ""} ${M ? _e.disabled : null}`,
|
|
568
568
|
children: [
|
|
569
|
-
o && /* @__PURE__ */ i("div", { style:
|
|
569
|
+
o && /* @__PURE__ */ i("div", { style: f, className: _e.textAreaLabel, children: [
|
|
570
570
|
/* @__PURE__ */ e("p", { children: o }),
|
|
571
|
-
/* @__PURE__ */ e("span", { style:
|
|
571
|
+
/* @__PURE__ */ e("span", { style: x ?? {}, className: _e.required, children: p && "*" }),
|
|
572
572
|
L && F(L)
|
|
573
573
|
] }),
|
|
574
574
|
/* @__PURE__ */ i("div", { className: `${_e.wrap} ${A ? _e.resize : ""}`, ref: R, children: [
|
|
575
575
|
/* @__PURE__ */ e(
|
|
576
576
|
"textarea",
|
|
577
577
|
{
|
|
578
|
-
className: `${_e.textarea} ${z ? _e.focused : ""} ${M ? _e.disabled : ""} ${l && z ?
|
|
578
|
+
className: `${_e.textarea} ${z ? _e.focused : ""} ${M ? _e.disabled : ""} ${l && z ? d.error ? _e.errorFocused : _e.focused : ""} ${y && U ? d.error ? _e.errorActive : _e.active : ""} ${d.error ? _e.error : ""} ${d.success ? _e.success : ""}`,
|
|
579
579
|
value: a,
|
|
580
580
|
placeholder: t ?? "",
|
|
581
581
|
cols: r,
|
|
582
582
|
rows: n,
|
|
583
583
|
maxLength: s ?? void 0,
|
|
584
|
-
onInput:
|
|
584
|
+
onInput: h,
|
|
585
585
|
onFocus: P,
|
|
586
586
|
disabled: M,
|
|
587
587
|
onBlur: K,
|
|
@@ -636,14 +636,14 @@ const Oo = "mc__Toggle-module__toggleWrapper", Vo = "mc__Toggle-module__checked"
|
|
|
636
636
|
toggleState: Yo,
|
|
637
637
|
md: jo,
|
|
638
638
|
lg: Ko
|
|
639
|
-
}, et = ({ checked: t, change: o, disabled: r = !1, size: n = "md", toggleType: a = "default", required:
|
|
639
|
+
}, et = ({ checked: t, change: o, disabled: r = !1, size: n = "md", toggleType: a = "default", required: d = !1 }) => /* @__PURE__ */ e(
|
|
640
640
|
"div",
|
|
641
641
|
{
|
|
642
642
|
onClick: () => {
|
|
643
643
|
r || o?.(!t);
|
|
644
644
|
},
|
|
645
645
|
className: `${Ee.toggleWrapper} ${a === "error" ? Ee.error : ""} ${Ee[n]} ${t ? Ee.checked : ""} ${r ? Ee.disabled : ""}`,
|
|
646
|
-
children: /* @__PURE__ */ e("div", { className: Ee.toggleState, children: /* @__PURE__ */ e("input", { type: "checkbox", checked: t, readOnly: !0, disabled: r ?? !1, hidden: !0, required:
|
|
646
|
+
children: /* @__PURE__ */ e("div", { className: Ee.toggleState, children: /* @__PURE__ */ e("input", { type: "checkbox", checked: t, readOnly: !0, disabled: r ?? !1, hidden: !0, required: d }) })
|
|
647
647
|
}
|
|
648
648
|
);
|
|
649
649
|
et.propKeys = ["checked", "change", "disabled", "required", "size", "toggleType"];
|
|
@@ -663,18 +663,18 @@ const qo = "mc__Checkbox-module__checkboxWrapper", Xo = "mc__Checkbox-module__ch
|
|
|
663
663
|
type: r = "default",
|
|
664
664
|
disabled: n = !1,
|
|
665
665
|
required: a = !1,
|
|
666
|
-
multipleChecked:
|
|
666
|
+
multipleChecked: d = !1,
|
|
667
667
|
activeStyle: s,
|
|
668
668
|
checkBoxStyle: l,
|
|
669
669
|
theme: y = "light"
|
|
670
670
|
}) => {
|
|
671
|
-
const A = tt(), C = ne(null), [
|
|
671
|
+
const A = tt(), C = ne(null), [I, k] = E(!1), $ = () => {
|
|
672
672
|
n || o && typeof o == "function" && o(!t);
|
|
673
673
|
};
|
|
674
674
|
return /* @__PURE__ */ i(
|
|
675
675
|
"div",
|
|
676
676
|
{
|
|
677
|
-
style:
|
|
677
|
+
style: I ? n ? { boxShadow: "none" } : s ?? {} : l ?? {},
|
|
678
678
|
className: `${y === "dark" ? Se.dark : ""} ${Se[A]} ${Se.checkboxWrapper} ${r === "error" ? Se.error : ""} ${t ? Se.checked : Se.unChecked} ${n ? Se.disabled : ""}`,
|
|
679
679
|
onMouseDown: () => k(!0),
|
|
680
680
|
onMouseUp: () => k(!1),
|
|
@@ -682,7 +682,7 @@ const qo = "mc__Checkbox-module__checkboxWrapper", Xo = "mc__Checkbox-module__ch
|
|
|
682
682
|
onClick: $,
|
|
683
683
|
children: [
|
|
684
684
|
/* @__PURE__ */ e("input", { ref: C, type: "checkbox", disabled: n, checked: t ?? !1, hidden: !0, readOnly: !0, required: a ?? !1 }),
|
|
685
|
-
t ?
|
|
685
|
+
t ? d ? /* @__PURE__ */ e(Ht, {}) : /* @__PURE__ */ e(Pt, {}) : ""
|
|
686
686
|
]
|
|
687
687
|
}
|
|
688
688
|
);
|
|
@@ -740,21 +740,21 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
740
740
|
checkboxProps: r,
|
|
741
741
|
onCollapse: n,
|
|
742
742
|
onSelect: a,
|
|
743
|
-
fromDropdown:
|
|
743
|
+
fromDropdown: d = !1,
|
|
744
744
|
withSelectAll: s = !1,
|
|
745
745
|
withClearAll: l = !1,
|
|
746
746
|
expandedNodes: y,
|
|
747
747
|
SearchValue: A,
|
|
748
748
|
SelectedData: C,
|
|
749
|
-
treeContainerStyle:
|
|
749
|
+
treeContainerStyle: I,
|
|
750
750
|
treeNodeItemStyle: k,
|
|
751
751
|
treeFooterStyle: $,
|
|
752
752
|
treeFooterTextStyle: M,
|
|
753
|
-
treeNodeStyle:
|
|
754
|
-
labelRowStyle:
|
|
755
|
-
collapseToggleStyle:
|
|
753
|
+
treeNodeStyle: p,
|
|
754
|
+
labelRowStyle: c,
|
|
755
|
+
collapseToggleStyle: f
|
|
756
756
|
}) => {
|
|
757
|
-
const [
|
|
757
|
+
const [x, L] = E(t || []), Y = (F, P, K = x) => K.map((W) => {
|
|
758
758
|
if (W.id === F) {
|
|
759
759
|
const g = P && W.children && W.children.length > 0;
|
|
760
760
|
return {
|
|
@@ -789,18 +789,18 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
789
789
|
K.selected && P.push(K), K.children?.length && (P = [...P, ...U(K.children)]);
|
|
790
790
|
}), P;
|
|
791
791
|
}, V = () => {
|
|
792
|
-
const F = R(
|
|
792
|
+
const F = R(x, !1);
|
|
793
793
|
L(F), a?.([]);
|
|
794
794
|
}, te = () => {
|
|
795
|
-
const F = R(
|
|
795
|
+
const F = R(x, !0);
|
|
796
796
|
L(F);
|
|
797
797
|
const P = U(F);
|
|
798
798
|
a?.(P);
|
|
799
799
|
};
|
|
800
800
|
return X(() => {
|
|
801
801
|
L(t || []);
|
|
802
|
-
}, [t]), /* @__PURE__ */ i("div", { className: `${ke.treeNodeContainer}`, style:
|
|
803
|
-
/* @__PURE__ */ e("div", { className: `${ke.treeNodeItem} ${
|
|
802
|
+
}, [t]), /* @__PURE__ */ i("div", { className: `${ke.treeNodeContainer}`, style: I, children: [
|
|
803
|
+
/* @__PURE__ */ e("div", { className: `${ke.treeNodeItem} ${d ? ke.inDropDown : ""}`, style: k, children: x.map((F) => /* @__PURE__ */ e(
|
|
804
804
|
bt,
|
|
805
805
|
{
|
|
806
806
|
node: F,
|
|
@@ -812,17 +812,17 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
812
812
|
expandedNodes: y,
|
|
813
813
|
SearchValue: A,
|
|
814
814
|
SelectedData: C,
|
|
815
|
-
treeContainerStyle:
|
|
815
|
+
treeContainerStyle: I,
|
|
816
816
|
treeNodeItemStyle: k,
|
|
817
817
|
treeFooterStyle: $,
|
|
818
818
|
treeFooterTextStyle: M,
|
|
819
|
-
treeNodeStyle:
|
|
820
|
-
labelRowStyle:
|
|
821
|
-
collapseToggleStyle:
|
|
819
|
+
treeNodeStyle: p,
|
|
820
|
+
labelRowStyle: c,
|
|
821
|
+
collapseToggleStyle: f
|
|
822
822
|
},
|
|
823
823
|
F.id
|
|
824
824
|
)) }),
|
|
825
|
-
|
|
825
|
+
d && /* @__PURE__ */ i("div", { className: ke.dropdownListFooter, style: $, children: [
|
|
826
826
|
l && /* @__PURE__ */ e("span", { onClick: V, style: M, children: "Clear All" }),
|
|
827
827
|
s && A === "" && /* @__PURE__ */ e("span", { onClick: te, style: M, children: "Select All" })
|
|
828
828
|
] })
|
|
@@ -833,22 +833,22 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
833
833
|
defaultCollapsed: r,
|
|
834
834
|
checkboxProps: n,
|
|
835
835
|
onCollapse: a,
|
|
836
|
-
depth:
|
|
836
|
+
depth: d,
|
|
837
837
|
expandedNodes: s,
|
|
838
838
|
SearchValue: l,
|
|
839
839
|
SelectedData: y,
|
|
840
840
|
treeContainerStyle: A,
|
|
841
841
|
treeNodeItemStyle: C,
|
|
842
|
-
treeFooterStyle:
|
|
842
|
+
treeFooterStyle: I,
|
|
843
843
|
treeFooterTextStyle: k,
|
|
844
844
|
treeNodeStyle: $,
|
|
845
845
|
labelRowStyle: M,
|
|
846
|
-
collapseToggleStyle:
|
|
846
|
+
collapseToggleStyle: p
|
|
847
847
|
}) => {
|
|
848
|
-
const
|
|
848
|
+
const c = s?.find((z) => z.id === t.id);
|
|
849
849
|
y?.find((z) => z.id === t.id);
|
|
850
|
-
const [
|
|
851
|
-
|
|
850
|
+
const [f, x] = E(c ? !1 : r || !0), L = () => {
|
|
851
|
+
x((z) => !z), a?.(f, t);
|
|
852
852
|
}, Y = () => {
|
|
853
853
|
o?.(t.id, !t.selected);
|
|
854
854
|
}, R = (z) => {
|
|
@@ -859,25 +859,25 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
859
859
|
return !z || z.trim() === "" ? !0 : (V(z, t), G);
|
|
860
860
|
};
|
|
861
861
|
return X(() => {
|
|
862
|
-
l &&
|
|
862
|
+
l && x(!1);
|
|
863
863
|
}, [l]), /* @__PURE__ */ i("div", { className: `${ke.treeNode} ${R(l) ? ke.visible : ke.hidden}`, style: $, children: [
|
|
864
864
|
/* @__PURE__ */ i("div", { className: ke.labelRow, onClick: L, style: M, children: [
|
|
865
|
-
/* @__PURE__ */ e("div", { style: { display: "grid", placeItems: "center", marginLeft: `${
|
|
866
|
-
/* @__PURE__ */ e("span", { className: ke.collapseToggle, style:
|
|
865
|
+
/* @__PURE__ */ e("div", { style: { display: "grid", placeItems: "center", marginLeft: `${d}rem` }, onClick: (z) => z.stopPropagation(), children: /* @__PURE__ */ e(Oe, { checked: t?.selected ?? !1, change: Y, ...n, withActive: !1 }) }),
|
|
866
|
+
/* @__PURE__ */ e("span", { className: ke.collapseToggle, style: p, children: /* @__PURE__ */ e(
|
|
867
867
|
"div",
|
|
868
868
|
{
|
|
869
869
|
style: {
|
|
870
870
|
display: "flex",
|
|
871
871
|
alignItems: "center",
|
|
872
872
|
justifyContent: "center",
|
|
873
|
-
transform:
|
|
873
|
+
transform: f ? "rotate(0deg)" : "rotate(90deg)"
|
|
874
874
|
},
|
|
875
875
|
children: /* @__PURE__ */ e(Wn, {})
|
|
876
876
|
}
|
|
877
877
|
) }),
|
|
878
878
|
/* @__PURE__ */ e("span", { className: `${ke.label} ${t.selected ? ke.selected : ""}`, children: t.label })
|
|
879
879
|
] }),
|
|
880
|
-
t.children && t.children.length > 0 && /* @__PURE__ */ e("div", { className: ke.children, style: { display:
|
|
880
|
+
t.children && t.children.length > 0 && /* @__PURE__ */ e("div", { className: ke.children, style: { display: f ? "none" : "block" }, children: t.children.map((z) => /* @__PURE__ */ e(
|
|
881
881
|
bt,
|
|
882
882
|
{
|
|
883
883
|
node: z,
|
|
@@ -885,17 +885,17 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
885
885
|
defaultCollapsed: r,
|
|
886
886
|
checkboxProps: n,
|
|
887
887
|
onCollapse: a,
|
|
888
|
-
depth:
|
|
888
|
+
depth: d + 1,
|
|
889
889
|
expandedNodes: s,
|
|
890
890
|
SearchValue: l,
|
|
891
891
|
SelectedData: y,
|
|
892
892
|
treeContainerStyle: A,
|
|
893
893
|
treeNodeItemStyle: C,
|
|
894
|
-
treeFooterStyle:
|
|
894
|
+
treeFooterStyle: I,
|
|
895
895
|
treeFooterTextStyle: k,
|
|
896
896
|
treeNodeStyle: $,
|
|
897
897
|
labelRowStyle: M,
|
|
898
|
-
collapseToggleStyle:
|
|
898
|
+
collapseToggleStyle: p
|
|
899
899
|
},
|
|
900
900
|
z.id
|
|
901
901
|
)) })
|
|
@@ -906,20 +906,20 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
906
906
|
withClose: r = !0,
|
|
907
907
|
disableAll: n = !1,
|
|
908
908
|
withMultiselect: a = !1,
|
|
909
|
-
selectedOptionID:
|
|
909
|
+
selectedOptionID: d,
|
|
910
910
|
withInput: s = !1,
|
|
911
911
|
withTree: l = !1,
|
|
912
912
|
withSelectAll: y = !0,
|
|
913
913
|
dropdownType: A = "country",
|
|
914
914
|
closeOnScroll: C = !1,
|
|
915
|
-
onSelect:
|
|
915
|
+
onSelect: I,
|
|
916
916
|
onFocus: k,
|
|
917
917
|
onBlur: $,
|
|
918
918
|
onValueChange: M,
|
|
919
|
-
customInputSlot:
|
|
920
|
-
dropdownWrapperStyle:
|
|
921
|
-
dropdownInputWrapperStyle:
|
|
922
|
-
dropdownInputSlotStyle:
|
|
919
|
+
customInputSlot: p,
|
|
920
|
+
dropdownWrapperStyle: c,
|
|
921
|
+
dropdownInputWrapperStyle: f,
|
|
922
|
+
dropdownInputSlotStyle: x,
|
|
923
923
|
dropdownInputSlotItemStyle: L,
|
|
924
924
|
dropdownInputSlotItemLabelStyle: Y,
|
|
925
925
|
dropdownInputSlotItemCloseStyle: R,
|
|
@@ -932,19 +932,19 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
932
932
|
treeProps: P,
|
|
933
933
|
...K
|
|
934
934
|
}) => {
|
|
935
|
-
const [W, g] = E(!1), [
|
|
936
|
-
if (
|
|
937
|
-
|
|
935
|
+
const [W, g] = E(!1), [h, m] = E(""), [w, T] = E(!1), [J, q] = E(!1), [oe, se] = E(!1), he = ne(null), ue = ne(null), de = ne(null), ve = ne(null), [ie, pe] = E([]), Q = ne([]), v = ne(0), [_, D] = E(""), [H, re] = E(null), ee = (u) => `https://flagsapi.com/${u}/flat/64.png`, Ce = (u) => {
|
|
936
|
+
if (u.selected = !u.selected, !a) {
|
|
937
|
+
I?.(u);
|
|
938
938
|
return;
|
|
939
939
|
}
|
|
940
|
-
Q.current = [...Q.current, ...ie.filter((Z) => Z.selected == !0), ...ie.filter((Z) => Z.id ===
|
|
941
|
-
}, fe = (
|
|
942
|
-
re(
|
|
940
|
+
Q.current = [...Q.current, ...ie.filter((Z) => Z.selected == !0), ...ie.filter((Z) => Z.id === u.id)], Q.current = vt(Q.current, "id").filter((Z) => Z.selected).filter((Z) => Z.id !== "SELECT_ALL"), u.id === "SELECT_ALL" ? (T(u.selected), q(!0)) : (T(!1), I?.(Q.current), q(!1)), g((Z) => !Z);
|
|
941
|
+
}, fe = (u) => {
|
|
942
|
+
re(u), I?.(u), se(!1);
|
|
943
943
|
}, ge = () => {
|
|
944
944
|
if (!ue.current || !he.current) return;
|
|
945
|
-
const
|
|
946
|
-
if (!Z || !
|
|
947
|
-
const le =
|
|
945
|
+
const u = ue.current, Z = he.current;
|
|
946
|
+
if (!Z || !u) return;
|
|
947
|
+
const le = u.getBoundingClientRect(), Ve = window.innerHeight;
|
|
948
948
|
Z.style.width = le.width + "px", Z.style.position = "fixed", le.bottom + Z.offsetHeight > Ve ? (Z.style.top = `${le.top - Z.offsetHeight + 20}px`, Z.style.bottom = "unset") : (Z.style.top = `${le.bottom + 8}px`, Z.style.bottom = "unset");
|
|
949
949
|
}, we = () => {
|
|
950
950
|
requestAnimationFrame(() => {
|
|
@@ -958,43 +958,43 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
958
958
|
pe(t);
|
|
959
959
|
return;
|
|
960
960
|
}
|
|
961
|
-
const
|
|
962
|
-
|
|
961
|
+
const u = t?.some((le) => "selected" in le), Z = y ? [{ id: "SELECT_ALL", label: "Select All", selected: w }] : [];
|
|
962
|
+
u ? pe([...Z, ...t]) : (t?.forEach((le) => {
|
|
963
963
|
le.selected = !1;
|
|
964
964
|
}), pe([...Z, ...t])), we();
|
|
965
965
|
}, [JSON.stringify(t)]), X(() => {
|
|
966
|
-
a && (t?.every((
|
|
966
|
+
a && (t?.every((u) => u.selected) || T(!1));
|
|
967
967
|
}, [Q.current.length]), X(() => {
|
|
968
|
-
!a &&
|
|
969
|
-
}, [
|
|
968
|
+
!a && d && re(t?.find((u) => u.id === d));
|
|
969
|
+
}, [d]), X(() => {
|
|
970
970
|
if (a && ie.length > 0 && J) {
|
|
971
|
-
const
|
|
972
|
-
pe(
|
|
971
|
+
const u = ie.map((Z) => Z.id === "SELECT_ALL" ? { ...Z, selected: w } : Z.disabled ? Z : { ...Z, selected: w });
|
|
972
|
+
pe(u), t?.forEach((Z) => {
|
|
973
973
|
Z.id === "SELECT_ALL" ? Z.selected = w : Z.disabled || (Z.selected = w);
|
|
974
|
-
}), Q.current =
|
|
974
|
+
}), Q.current = u.filter((Z) => Z.selected && Z.id !== "SELECT_ALL"), I?.(Q.current);
|
|
975
975
|
}
|
|
976
976
|
}, [W]);
|
|
977
|
-
const $e = (
|
|
978
|
-
ue.current && (
|
|
979
|
-
}, xe = (
|
|
980
|
-
C && (!ue.current || !he.current ||
|
|
977
|
+
const $e = (u) => {
|
|
978
|
+
ue.current && (u.composedPath().includes(ue.current) || se(!1));
|
|
979
|
+
}, xe = (u) => {
|
|
980
|
+
C && (!ue.current || !he.current || u.composedPath().includes(ue.current) || u.composedPath().includes(he.current) || se(!1));
|
|
981
981
|
};
|
|
982
982
|
X(() => {
|
|
983
|
-
const
|
|
983
|
+
const u = () => {
|
|
984
984
|
oe && we();
|
|
985
985
|
};
|
|
986
|
-
return document.addEventListener("click", $e), document.addEventListener("wheel", xe), window.addEventListener("scroll",
|
|
987
|
-
document.removeEventListener("click", $e), document.removeEventListener("wheel", xe), window.removeEventListener("scroll",
|
|
986
|
+
return document.addEventListener("click", $e), document.addEventListener("wheel", xe), window.addEventListener("scroll", u), () => {
|
|
987
|
+
document.removeEventListener("click", $e), document.removeEventListener("wheel", xe), window.removeEventListener("scroll", u);
|
|
988
988
|
};
|
|
989
989
|
}, [oe]), X(() => {
|
|
990
990
|
if (!a) return;
|
|
991
|
-
const
|
|
991
|
+
const u = () => {
|
|
992
992
|
const Z = ue.current?.getBoundingClientRect();
|
|
993
993
|
if (!Z) return;
|
|
994
994
|
const le = Z.width;
|
|
995
995
|
le <= 150 ? v.current = 0 : le <= 250 ? v.current = 1 : le <= 350 ? v.current = 2 : le <= 450 ? v.current = 3 : v.current = 4;
|
|
996
996
|
};
|
|
997
|
-
return
|
|
997
|
+
return u(), window.addEventListener("resize", u), () => window.removeEventListener("resize", u);
|
|
998
998
|
}, []);
|
|
999
999
|
const Me = ne(!0);
|
|
1000
1000
|
return X(() => {
|
|
@@ -1003,24 +1003,24 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
1003
1003
|
return;
|
|
1004
1004
|
}
|
|
1005
1005
|
oe || $?.(), oe && k?.();
|
|
1006
|
-
}, [oe]), /* @__PURE__ */ i("div", { className: `${ae.dropdownWrapper}`, style:
|
|
1006
|
+
}, [oe]), /* @__PURE__ */ i("div", { className: `${ae.dropdownWrapper}`, style: c ?? {}, children: [
|
|
1007
1007
|
/* @__PURE__ */ e(
|
|
1008
1008
|
"div",
|
|
1009
1009
|
{
|
|
1010
1010
|
ref: ue,
|
|
1011
1011
|
className: ae.dropdownInputWrapper,
|
|
1012
|
-
style:
|
|
1013
|
-
onClick: () => (se((
|
|
1012
|
+
style: f ?? {},
|
|
1013
|
+
onClick: () => (se((u) => !u), we()),
|
|
1014
1014
|
children: /* @__PURE__ */ e(
|
|
1015
1015
|
Ae,
|
|
1016
1016
|
{
|
|
1017
1017
|
...K,
|
|
1018
|
-
onFocusChange: (
|
|
1018
|
+
onFocusChange: (u) => se(u),
|
|
1019
1019
|
customFocus: oe,
|
|
1020
1020
|
withActive: !1,
|
|
1021
|
-
value: s ?
|
|
1022
|
-
onChange: (
|
|
1023
|
-
m(
|
|
1021
|
+
value: s ? h : H?.label ?? "",
|
|
1022
|
+
onChange: (u) => {
|
|
1023
|
+
m(u), M?.(u);
|
|
1024
1024
|
},
|
|
1025
1025
|
toggleFocus: !0,
|
|
1026
1026
|
formInputStyle: { cursor: s ? "text" : "pointer" },
|
|
@@ -1029,11 +1029,11 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
1029
1029
|
/* @__PURE__ */ e("div", { className: `${ae.dropdownRightIconArrow} ${oe ? ae.focused : ""}`, children: /* @__PURE__ */ e(Ue, {}) })
|
|
1030
1030
|
] }),
|
|
1031
1031
|
rightSlot: /* @__PURE__ */ i("div", { className: `${ae.dropdownRightIcon} ${oe ? ae.focused : ""}`, children: [
|
|
1032
|
-
(s ?
|
|
1032
|
+
(s ? h : !a && H) && /* @__PURE__ */ e(
|
|
1033
1033
|
"div",
|
|
1034
1034
|
{
|
|
1035
|
-
onClick: (
|
|
1036
|
-
|
|
1035
|
+
onClick: (u) => {
|
|
1036
|
+
u.stopPropagation(), s ? (m(""), se(!1)) : re(null);
|
|
1037
1037
|
},
|
|
1038
1038
|
className: ae.dropdownRightIconClose,
|
|
1039
1039
|
children: /* @__PURE__ */ e(qe, {})
|
|
@@ -1044,8 +1044,8 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
1044
1044
|
readOnly: !s,
|
|
1045
1045
|
forDropdown: !0,
|
|
1046
1046
|
inputSlotStyle: { width: "100%" },
|
|
1047
|
-
inputSlot: a && Q.current.length > 0 ?
|
|
1048
|
-
Q.current.slice(0, v.current).map((
|
|
1047
|
+
inputSlot: a && Q.current.length > 0 ? p || /* @__PURE__ */ i("ul", { className: ae.dropdownInputSlot, style: x ?? {}, children: [
|
|
1048
|
+
Q.current.slice(0, v.current).map((u, Z) => /* @__PURE__ */ i(
|
|
1049
1049
|
"li",
|
|
1050
1050
|
{
|
|
1051
1051
|
ref: ve,
|
|
@@ -1053,14 +1053,14 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
1053
1053
|
style: L ?? {},
|
|
1054
1054
|
onClick: (le) => le.stopPropagation(),
|
|
1055
1055
|
children: [
|
|
1056
|
-
/* @__PURE__ */ e("
|
|
1056
|
+
/* @__PURE__ */ e("div", { title: u.label, className: ae.dropdownInputSlotItemLabel, style: Y ?? {}, children: typeof u.customLabel == "function" ? u.customLabel(u) : u.label }),
|
|
1057
1057
|
/* @__PURE__ */ e(
|
|
1058
1058
|
"div",
|
|
1059
1059
|
{
|
|
1060
1060
|
style: R ?? {},
|
|
1061
1061
|
className: ae.dropdownInputSlotItemClose,
|
|
1062
1062
|
onClick: (le) => {
|
|
1063
|
-
le.stopPropagation(), Ce(
|
|
1063
|
+
le.stopPropagation(), Ce(u);
|
|
1064
1064
|
},
|
|
1065
1065
|
children: /* @__PURE__ */ e(St, { width: "16", height: "16", viewBox: "0 0 16 16", stroke: "#95969C" })
|
|
1066
1066
|
}
|
|
@@ -1075,7 +1075,7 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
1075
1075
|
)
|
|
1076
1076
|
}
|
|
1077
1077
|
),
|
|
1078
|
-
t && t.length > 0 && oe && /* @__PURE__ */ i("div", { ref: he, onClick: (
|
|
1078
|
+
t && t.length > 0 && oe && /* @__PURE__ */ i("div", { ref: he, onClick: (u) => u.stopPropagation(), className: ae.dropdownListContainer, children: [
|
|
1079
1079
|
o && /* @__PURE__ */ e(
|
|
1080
1080
|
Ae,
|
|
1081
1081
|
{
|
|
@@ -1083,54 +1083,54 @@ const nn = "mc__Dropdown-module__dropdownWrapper", rn = "mc__Dropdown-module__dr
|
|
|
1083
1083
|
searchComponent: !0,
|
|
1084
1084
|
withFocus: !1,
|
|
1085
1085
|
withActive: !1,
|
|
1086
|
-
value:
|
|
1087
|
-
onChange: (
|
|
1086
|
+
value: _,
|
|
1087
|
+
onChange: (u) => D(u)
|
|
1088
1088
|
}
|
|
1089
1089
|
),
|
|
1090
1090
|
l ? /* @__PURE__ */ e(
|
|
1091
1091
|
Bn,
|
|
1092
1092
|
{
|
|
1093
|
-
SearchValue:
|
|
1093
|
+
SearchValue: _,
|
|
1094
1094
|
data: t,
|
|
1095
|
-
onSelect:
|
|
1096
|
-
onCollapse: (
|
|
1097
|
-
we(), P?.onCollapse?.(
|
|
1095
|
+
onSelect: I,
|
|
1096
|
+
onCollapse: (u, Z) => {
|
|
1097
|
+
we(), P?.onCollapse?.(u, Z);
|
|
1098
1098
|
},
|
|
1099
1099
|
...P
|
|
1100
1100
|
}
|
|
1101
|
-
) : /* @__PURE__ */ e("ul", { onClick: (
|
|
1101
|
+
) : /* @__PURE__ */ e("ul", { onClick: (u) => u.stopPropagation(), className: ae.dropdownList, ref: de, style: F ?? {}, children: ie.filter((u) => u?.label?.toLowerCase().includes(_.toLowerCase())).map((u, Z) => /* @__PURE__ */ i(
|
|
1102
1102
|
"li",
|
|
1103
1103
|
{
|
|
1104
|
-
style: { ...G, cursor: !a &&
|
|
1105
|
-
className: `${ae.dropdownItem} ${!a && H?.id ===
|
|
1104
|
+
style: { ...G, cursor: !a && u?.disabled ? "not-allowed" : "pointer" },
|
|
1105
|
+
className: `${ae.dropdownItem} ${!a && H?.id === u.id ? ae.selected : ""} ${!u?.label || u.label === void 0 || n || u?.disabled ? ae.disabled : ""} ${!a && !u?.disabled ? ae.hovered : ""}`,
|
|
1106
1106
|
onClick: (le) => {
|
|
1107
|
-
le.stopPropagation(), !a && !
|
|
1107
|
+
le.stopPropagation(), !a && !u?.disabled && fe(u);
|
|
1108
1108
|
},
|
|
1109
1109
|
children: [
|
|
1110
|
-
a && !
|
|
1110
|
+
a && !u.noCheckbox && /* @__PURE__ */ e("div", { className: ae.itemCheckbox, style: V ?? {}, children: /* @__PURE__ */ e(
|
|
1111
1111
|
Oe,
|
|
1112
1112
|
{
|
|
1113
|
-
multipleChecked:
|
|
1114
|
-
disabled: n ||
|
|
1115
|
-
checked:
|
|
1116
|
-
change: () => Ce(
|
|
1113
|
+
multipleChecked: u.id === "SELECT_ALL",
|
|
1114
|
+
disabled: n || u?.disabled,
|
|
1115
|
+
checked: u?.selected,
|
|
1116
|
+
change: () => Ce(u)
|
|
1117
1117
|
}
|
|
1118
1118
|
) }),
|
|
1119
1119
|
/* @__PURE__ */ i("div", { className: ae.dropdownItemLabel, style: U ?? {}, children: [
|
|
1120
1120
|
s ? /* @__PURE__ */ i("div", { className: ae.dropdownItemLabelInput, children: [
|
|
1121
|
-
/* @__PURE__ */ e("img", { src: ee(
|
|
1122
|
-
/* @__PURE__ */ e("span", { title:
|
|
1123
|
-
/* @__PURE__ */ e("span", { className: ae.countryDialCode, children: A === "country" ?
|
|
1121
|
+
/* @__PURE__ */ e("img", { src: ee(u.code), style: { width: "1.375rem", height: "1.375rem", objectFit: "contain" }, alt: u.name }),
|
|
1122
|
+
/* @__PURE__ */ e("span", { title: u.name, className: ae.countryName, children: u.name || u.label }),
|
|
1123
|
+
/* @__PURE__ */ e("span", { className: ae.countryDialCode, children: A === "country" ? u.dialCode : u?.label })
|
|
1124
1124
|
] }) : /* @__PURE__ */ e(
|
|
1125
1125
|
"p",
|
|
1126
1126
|
{
|
|
1127
|
-
title: typeof
|
|
1128
|
-
className: `${
|
|
1127
|
+
title: typeof u.label == "string" ? u.label : "",
|
|
1128
|
+
className: `${u.id === "SELECT_ALL" ? ae.selectAll : ""}`,
|
|
1129
1129
|
style: te ?? {},
|
|
1130
|
-
children: typeof
|
|
1130
|
+
children: typeof u.customLabel == "function" ? u.customLabel(u) : u.label
|
|
1131
1131
|
}
|
|
1132
1132
|
),
|
|
1133
|
-
a && /* @__PURE__ */ e("p", { children:
|
|
1133
|
+
a && /* @__PURE__ */ e("p", { children: u.id === "SELECT_ALL" ? `${ie.filter((le) => le.id !== "SELECT_ALL" && le.selected).length}/${t.length}` : "" })
|
|
1134
1134
|
] })
|
|
1135
1135
|
]
|
|
1136
1136
|
},
|
|
@@ -1171,12 +1171,12 @@ ot.displayName = "Dropdown";
|
|
|
1171
1171
|
ot.description = "A feature-rich dropdown component with multi-select, filtering, and smart positioning capabilities.";
|
|
1172
1172
|
const En = "mc__Radio-module__radioWrapper", Fn = {
|
|
1173
1173
|
radioWrapper: En
|
|
1174
|
-
}, nt = ({ checked: t, change: o, disabled: r, required: n, withUncheckState: a = !1, radioType:
|
|
1174
|
+
}, nt = ({ checked: t, change: o, disabled: r, required: n, withUncheckState: a = !1, radioType: d = "default" }) => {
|
|
1175
1175
|
tt(), E(!1);
|
|
1176
1176
|
const s = () => {
|
|
1177
1177
|
r || o?.(a ? !t : !0);
|
|
1178
1178
|
}, l = () => {
|
|
1179
|
-
let y = null, A = r ? "#95969C" :
|
|
1179
|
+
let y = null, A = r ? "#95969C" : d === "error" ? "#E3292F" : "#0058FF";
|
|
1180
1180
|
return t ? r ? y = /* @__PURE__ */ e(Wt, { color: A }) : y = /* @__PURE__ */ e(At, { color: A }) : r ? y = /* @__PURE__ */ e(Bt, { color: A }) : y = /* @__PURE__ */ e(Rt, { color: A }), y;
|
|
1181
1181
|
};
|
|
1182
1182
|
return /* @__PURE__ */ i("div", { className: Fn.radioWrapper, style: { cursor: r ? "not-allowed" : "pointer" }, onClick: s, children: [
|
|
@@ -1204,26 +1204,26 @@ const On = "mc__Tooltip-module__tooltipContainer", Vn = "mc__Tooltip-module__too
|
|
|
1204
1204
|
delay: r = 400,
|
|
1205
1205
|
placement: n = "top",
|
|
1206
1206
|
trigger: a = "hover",
|
|
1207
|
-
title:
|
|
1207
|
+
title: d,
|
|
1208
1208
|
text: s,
|
|
1209
1209
|
customText: l,
|
|
1210
1210
|
tooltipContentStyle: y,
|
|
1211
1211
|
tooltipTitlestyle: A,
|
|
1212
1212
|
tooltipTextStyle: C,
|
|
1213
|
-
tooltipContainerStyle:
|
|
1213
|
+
tooltipContainerStyle: I,
|
|
1214
1214
|
pointerPosition: k = "10%",
|
|
1215
1215
|
withPointer: $ = !1,
|
|
1216
1216
|
theme: M,
|
|
1217
|
-
topCustomOffset:
|
|
1218
|
-
bottomCustomOffset:
|
|
1219
|
-
leftCustomOffset:
|
|
1220
|
-
rightCustomOffset:
|
|
1217
|
+
topCustomOffset: p = 0,
|
|
1218
|
+
bottomCustomOffset: c = 0,
|
|
1219
|
+
leftCustomOffset: f = 0,
|
|
1220
|
+
rightCustomOffset: x = 0,
|
|
1221
1221
|
forceClose: L = !1,
|
|
1222
1222
|
onClick: Y
|
|
1223
1223
|
}) => {
|
|
1224
1224
|
const R = ne(null), z = ne(null);
|
|
1225
1225
|
let G;
|
|
1226
|
-
const [U, V] = E(!1), te = o ||
|
|
1226
|
+
const [U, V] = E(!1), te = o || d || s || l, F = () => {
|
|
1227
1227
|
a === "hover" && te && (G = setTimeout(() => {
|
|
1228
1228
|
V(!0);
|
|
1229
1229
|
}, r));
|
|
@@ -1234,34 +1234,34 @@ const On = "mc__Tooltip-module__tooltipContainer", Vn = "mc__Tooltip-module__too
|
|
|
1234
1234
|
}, K = () => {
|
|
1235
1235
|
a === "click" && (Y?.(), V((g) => !g));
|
|
1236
1236
|
}, W = () => {
|
|
1237
|
-
const g = R.current,
|
|
1238
|
-
if (!
|
|
1237
|
+
const g = R.current, h = z.current;
|
|
1238
|
+
if (!h || !g) return;
|
|
1239
1239
|
const m = g.getBoundingClientRect();
|
|
1240
|
-
switch (
|
|
1240
|
+
switch (h.style.position = "fixed", n) {
|
|
1241
1241
|
case "top":
|
|
1242
|
-
|
|
1242
|
+
h.style.top = `${m.top - h.offsetHeight - 8 + p - c}px`, h.style.left = `${m.left + f - x}px`;
|
|
1243
1243
|
break;
|
|
1244
1244
|
case "bottom":
|
|
1245
|
-
|
|
1245
|
+
h.style.top = `${m.bottom + 8 + c - p}px`, h.style.left = `${m.left + f - x}px`;
|
|
1246
1246
|
break;
|
|
1247
1247
|
case "left":
|
|
1248
|
-
|
|
1248
|
+
h.style.top = `${m.top + m.height / 2 - h.offsetHeight / 2 + p - c}px`, h.style.left = `${m.left - h.offsetWidth - 8 + f - x}px`;
|
|
1249
1249
|
break;
|
|
1250
1250
|
case "right":
|
|
1251
|
-
|
|
1251
|
+
h.style.top = `${m.top + m.height / 2 - h.offsetHeight / 2 + p - c}px`, h.style.left = `${m.right + 8 + x - f}px`;
|
|
1252
1252
|
break;
|
|
1253
1253
|
}
|
|
1254
1254
|
};
|
|
1255
1255
|
return X(() => {
|
|
1256
1256
|
W();
|
|
1257
|
-
}, [R, U, t, n, o, l,
|
|
1257
|
+
}, [R, U, t, n, o, l, d, s]), X(() => {
|
|
1258
1258
|
const g = (m) => {
|
|
1259
1259
|
R.current?.contains(m.target) || V(!1);
|
|
1260
|
-
},
|
|
1260
|
+
}, h = (m) => {
|
|
1261
1261
|
m.composedPath().includes(R.current) || V(!1);
|
|
1262
1262
|
};
|
|
1263
|
-
return document.addEventListener("click",
|
|
1264
|
-
document.removeEventListener("scroll", g, !0), document.removeEventListener("click",
|
|
1263
|
+
return document.addEventListener("click", h), document.addEventListener("scroll", g, !0), () => {
|
|
1264
|
+
document.removeEventListener("scroll", g, !0), document.removeEventListener("click", h);
|
|
1265
1265
|
};
|
|
1266
1266
|
}, []), X(() => {
|
|
1267
1267
|
L && V(!1);
|
|
@@ -1276,7 +1276,7 @@ const On = "mc__Tooltip-module__tooltipContainer", Vn = "mc__Tooltip-module__too
|
|
|
1276
1276
|
onClick: K,
|
|
1277
1277
|
onMouseEnter: F,
|
|
1278
1278
|
onMouseLeave: P,
|
|
1279
|
-
style:
|
|
1279
|
+
style: I ?? {},
|
|
1280
1280
|
children: [
|
|
1281
1281
|
t,
|
|
1282
1282
|
U && o ? /* @__PURE__ */ e(
|
|
@@ -1297,7 +1297,7 @@ const On = "mc__Tooltip-module__tooltipContainer", Vn = "mc__Tooltip-module__too
|
|
|
1297
1297
|
className: `${Te.tooltipContent} ${n ? Te[n] : Te.bottom}`,
|
|
1298
1298
|
children: [
|
|
1299
1299
|
l && typeof l == "string" && l,
|
|
1300
|
-
|
|
1300
|
+
d && d.length > 0 && typeof d == "string" && /* @__PURE__ */ e("h2", { className: Te.tooltipTitle, style: A ?? {}, children: d }),
|
|
1301
1301
|
s && s.length > 0 && typeof s == "string" && /* @__PURE__ */ e("p", { className: Te.tooltipText, style: C ?? {}, children: s })
|
|
1302
1302
|
]
|
|
1303
1303
|
}
|
|
@@ -1344,7 +1344,7 @@ const Qn = "mc__Popup-module__modalOverlay", Jn = "mc__Popup-module__popupDrawer
|
|
|
1344
1344
|
mode: r,
|
|
1345
1345
|
children: n,
|
|
1346
1346
|
onClickOutside: a,
|
|
1347
|
-
onClose:
|
|
1347
|
+
onClose: d,
|
|
1348
1348
|
widthType: s,
|
|
1349
1349
|
// "horizontal"
|
|
1350
1350
|
modalOverlayStyle: l,
|
|
@@ -1352,8 +1352,8 @@ const Qn = "mc__Popup-module__modalOverlay", Jn = "mc__Popup-module__popupDrawer
|
|
|
1352
1352
|
templateWrapperStyle: A,
|
|
1353
1353
|
closeButtonStyle: C
|
|
1354
1354
|
}) => {
|
|
1355
|
-
const
|
|
1356
|
-
|
|
1355
|
+
const I = () => {
|
|
1356
|
+
d && typeof d == "function" && d();
|
|
1357
1357
|
}, k = ne(null), $ = (M) => {
|
|
1358
1358
|
M.target === k.current && a && typeof a == "function" && a();
|
|
1359
1359
|
};
|
|
@@ -1385,7 +1385,7 @@ const Qn = "mc__Popup-module__modalOverlay", Jn = "mc__Popup-module__popupDrawer
|
|
|
1385
1385
|
${s === "horizontal" ? Fe.horizontal : ""}
|
|
1386
1386
|
`,
|
|
1387
1387
|
children: [
|
|
1388
|
-
/* @__PURE__ */ e("div", { className: Fe.closeButton, style: C ?? {}, onClick:
|
|
1388
|
+
/* @__PURE__ */ e("div", { className: Fe.closeButton, style: C ?? {}, onClick: I, children: /* @__PURE__ */ e(yt, { color: "#131314" }) }),
|
|
1389
1389
|
/* @__PURE__ */ i("div", { className: Fe.templateWrapper, style: A ?? {}, children: [
|
|
1390
1390
|
o && o,
|
|
1391
1391
|
n && n
|
|
@@ -1438,32 +1438,32 @@ const nr = "mc__NotificationToast-module__toastContainer", rr = "mc__Notificatio
|
|
|
1438
1438
|
filled: r = !1,
|
|
1439
1439
|
withClose: n = !1,
|
|
1440
1440
|
withUndo: a = !1,
|
|
1441
|
-
withInfoIcon:
|
|
1441
|
+
withInfoIcon: d = !0,
|
|
1442
1442
|
description: s,
|
|
1443
1443
|
customAction: l,
|
|
1444
1444
|
timeout: y = 4e3,
|
|
1445
1445
|
children: A,
|
|
1446
1446
|
onUndo: C,
|
|
1447
|
-
onClose:
|
|
1447
|
+
onClose: I
|
|
1448
1448
|
}) => {
|
|
1449
1449
|
const [k, $] = E("fadeIn");
|
|
1450
1450
|
X(() => {
|
|
1451
|
-
const
|
|
1451
|
+
const p = y, c = 300, f = setTimeout(() => {
|
|
1452
1452
|
$("fadeOut"), setTimeout(() => {
|
|
1453
|
-
|
|
1454
|
-
},
|
|
1455
|
-
},
|
|
1453
|
+
I?.();
|
|
1454
|
+
}, c);
|
|
1455
|
+
}, p);
|
|
1456
1456
|
return () => {
|
|
1457
|
-
clearTimeout(
|
|
1457
|
+
clearTimeout(f);
|
|
1458
1458
|
};
|
|
1459
|
-
}, [
|
|
1459
|
+
}, [I]);
|
|
1460
1460
|
const M = () => {
|
|
1461
|
-
let
|
|
1462
|
-
return s && (
|
|
1461
|
+
let p = {};
|
|
1462
|
+
return s && (p.padding = "12px"), p;
|
|
1463
1463
|
};
|
|
1464
1464
|
return /* @__PURE__ */ e("div", { className: `${ye.notificationToast} ${ye[o]} ${r ? "" : ye.filled} ${ye[k]}`, style: M(), children: /* @__PURE__ */ i("div", { className: ye.notificationToastContent, style: s ? { alignItems: "flex-start" } : {}, children: [
|
|
1465
1465
|
/* @__PURE__ */ i("div", { className: ye.notificationToastContentLeft, style: s ? { alignItems: "flex-start" } : {}, children: [
|
|
1466
|
-
|
|
1466
|
+
d && /* @__PURE__ */ e("div", { className: ye.notificationToastContentInfoIcon, children: o === "success" ? /* @__PURE__ */ e(Ft, { color: r ? "#fff" : "#328707" }) : /* @__PURE__ */ e(Et, { color: r ? "#fff" : o === "neutral" ? "#131314" : o === "error" ? "#E3292F" : "#0058FF" }) }),
|
|
1467
1467
|
/* @__PURE__ */ i("div", { className: ye.notificationToastContentLeftText, children: [
|
|
1468
1468
|
t && /* @__PURE__ */ e("p", { className: ye.notificationToastContentLeftTextTitle, children: t }),
|
|
1469
1469
|
s && /* @__PURE__ */ e("p", { className: ye.notificationToastContentLeftTextDescription, children: s }),
|
|
@@ -1474,7 +1474,7 @@ const nr = "mc__NotificationToast-module__toastContainer", rr = "mc__Notificatio
|
|
|
1474
1474
|
/* @__PURE__ */ i("div", { className: ye.notificationToastContentRight, children: [
|
|
1475
1475
|
l && l,
|
|
1476
1476
|
!s && a && /* @__PURE__ */ e("p", { className: ye.notificationToastContentRightUndoText, onClick: () => C?.(), children: "Undo" }),
|
|
1477
|
-
n && /* @__PURE__ */ e("div", { className: ye.notificationToastContentRightClose, style: s || !a ? { border: "none" } : {}, onClick: () =>
|
|
1477
|
+
n && /* @__PURE__ */ e("div", { className: ye.notificationToastContentRightClose, style: s || !a ? { border: "none" } : {}, onClick: () => I?.(), children: /* @__PURE__ */ e(
|
|
1478
1478
|
yt,
|
|
1479
1479
|
{
|
|
1480
1480
|
color: r ? "#fff" : o === "neutral" ? "#131314" : o === "error" ? "#E3292F" : o === "info" ? "#0058FF" : "#328707"
|
|
@@ -1485,14 +1485,14 @@ const nr = "mc__NotificationToast-module__toastContainer", rr = "mc__Notificatio
|
|
|
1485
1485
|
}, kt = wt(null);
|
|
1486
1486
|
let br = 0;
|
|
1487
1487
|
const kr = ({ children: t }) => {
|
|
1488
|
-
const [o, r] = E([]), n = (
|
|
1488
|
+
const [o, r] = E([]), n = (d) => {
|
|
1489
1489
|
r((s) => {
|
|
1490
|
-
const l =
|
|
1490
|
+
const l = d.max ?? 1 / 0;
|
|
1491
1491
|
if (s.length >= l) return s;
|
|
1492
1492
|
const y = br++;
|
|
1493
1493
|
return setTimeout(() => {
|
|
1494
1494
|
r((A) => A.filter((C) => C.id !== y));
|
|
1495
|
-
},
|
|
1495
|
+
}, d.timeout || 4e3), [...s, { id: y, props: d }];
|
|
1496
1496
|
});
|
|
1497
1497
|
}, a = Ke(() => {
|
|
1498
1498
|
if (o.length > 0)
|
|
@@ -1515,15 +1515,15 @@ const kr = ({ children: t }) => {
|
|
|
1515
1515
|
}, [o.length]);
|
|
1516
1516
|
return /* @__PURE__ */ i(kt.Provider, { value: { showToast: n }, children: [
|
|
1517
1517
|
t,
|
|
1518
|
-
o.length > 0 && /* @__PURE__ */ e("div", { className: ye.toastContainer, style: a(), children: o.map(({ id:
|
|
1518
|
+
o.length > 0 && /* @__PURE__ */ e("div", { className: ye.toastContainer, style: a(), children: o.map(({ id: d, props: s }) => /* @__PURE__ */ e(
|
|
1519
1519
|
vr,
|
|
1520
1520
|
{
|
|
1521
1521
|
...s,
|
|
1522
1522
|
onClose: () => {
|
|
1523
|
-
r((l) => l.filter((y) => y.id !==
|
|
1523
|
+
r((l) => l.filter((y) => y.id !== d));
|
|
1524
1524
|
}
|
|
1525
1525
|
},
|
|
1526
|
-
|
|
1526
|
+
d
|
|
1527
1527
|
)) })
|
|
1528
1528
|
] });
|
|
1529
1529
|
};
|
|
@@ -1575,65 +1575,65 @@ var Lt = { exports: {} };
|
|
|
1575
1575
|
(function(r, n) {
|
|
1576
1576
|
t.exports = n();
|
|
1577
1577
|
})(Er, function() {
|
|
1578
|
-
var r = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, n = /(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g, a = /\d/,
|
|
1579
|
-
return (
|
|
1580
|
-
}, C = function(
|
|
1581
|
-
return function(
|
|
1582
|
-
this[
|
|
1578
|
+
var r = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, n = /(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g, a = /\d/, d = /\d\d/, s = /\d\d?/, l = /\d*[^-_:/,()\s\d]+/, y = {}, A = function(c) {
|
|
1579
|
+
return (c = +c) + (c > 68 ? 1900 : 2e3);
|
|
1580
|
+
}, C = function(c) {
|
|
1581
|
+
return function(f) {
|
|
1582
|
+
this[c] = +f;
|
|
1583
1583
|
};
|
|
1584
|
-
},
|
|
1585
|
-
(this.zone || (this.zone = {})).offset = function(
|
|
1586
|
-
if (!
|
|
1587
|
-
var
|
|
1588
|
-
return L === 0 ? 0 :
|
|
1589
|
-
}(
|
|
1590
|
-
}], k = function(
|
|
1591
|
-
var
|
|
1592
|
-
return
|
|
1593
|
-
}, $ = function(
|
|
1594
|
-
var
|
|
1584
|
+
}, I = [/[+-]\d\d:?(\d\d)?|Z/, function(c) {
|
|
1585
|
+
(this.zone || (this.zone = {})).offset = function(f) {
|
|
1586
|
+
if (!f || f === "Z") return 0;
|
|
1587
|
+
var x = f.match(/([+-]|\d\d)/g), L = 60 * x[1] + (+x[2] || 0);
|
|
1588
|
+
return L === 0 ? 0 : x[0] === "+" ? -L : L;
|
|
1589
|
+
}(c);
|
|
1590
|
+
}], k = function(c) {
|
|
1591
|
+
var f = y[c];
|
|
1592
|
+
return f && (f.indexOf ? f : f.s.concat(f.f));
|
|
1593
|
+
}, $ = function(c, f) {
|
|
1594
|
+
var x, L = y.meridiem;
|
|
1595
1595
|
if (L) {
|
|
1596
|
-
for (var Y = 1; Y <= 24; Y += 1) if (
|
|
1597
|
-
|
|
1596
|
+
for (var Y = 1; Y <= 24; Y += 1) if (c.indexOf(L(Y, 0, f)) > -1) {
|
|
1597
|
+
x = Y > 12;
|
|
1598
1598
|
break;
|
|
1599
1599
|
}
|
|
1600
|
-
} else
|
|
1601
|
-
return
|
|
1602
|
-
}, M = { A: [l, function(
|
|
1603
|
-
this.afternoon = $(
|
|
1604
|
-
}], a: [l, function(
|
|
1605
|
-
this.afternoon = $(
|
|
1606
|
-
}], Q: [a, function(
|
|
1607
|
-
this.month = 3 * (
|
|
1608
|
-
}], S: [a, function(
|
|
1609
|
-
this.milliseconds = 100 * +
|
|
1610
|
-
}], SS: [
|
|
1611
|
-
this.milliseconds = 10 * +
|
|
1612
|
-
}], SSS: [/\d{3}/, function(
|
|
1613
|
-
this.milliseconds = +
|
|
1614
|
-
}], s: [s, C("seconds")], ss: [s, C("seconds")], m: [s, C("minutes")], mm: [s, C("minutes")], H: [s, C("hours")], h: [s, C("hours")], HH: [s, C("hours")], hh: [s, C("hours")], D: [s, C("day")], DD: [
|
|
1615
|
-
var
|
|
1616
|
-
if (this.day =
|
|
1617
|
-
}], w: [s, C("week")], ww: [
|
|
1618
|
-
var
|
|
1600
|
+
} else x = c === (f ? "pm" : "PM");
|
|
1601
|
+
return x;
|
|
1602
|
+
}, M = { A: [l, function(c) {
|
|
1603
|
+
this.afternoon = $(c, !1);
|
|
1604
|
+
}], a: [l, function(c) {
|
|
1605
|
+
this.afternoon = $(c, !0);
|
|
1606
|
+
}], Q: [a, function(c) {
|
|
1607
|
+
this.month = 3 * (c - 1) + 1;
|
|
1608
|
+
}], S: [a, function(c) {
|
|
1609
|
+
this.milliseconds = 100 * +c;
|
|
1610
|
+
}], SS: [d, function(c) {
|
|
1611
|
+
this.milliseconds = 10 * +c;
|
|
1612
|
+
}], SSS: [/\d{3}/, function(c) {
|
|
1613
|
+
this.milliseconds = +c;
|
|
1614
|
+
}], s: [s, C("seconds")], ss: [s, C("seconds")], m: [s, C("minutes")], mm: [s, C("minutes")], H: [s, C("hours")], h: [s, C("hours")], HH: [s, C("hours")], hh: [s, C("hours")], D: [s, C("day")], DD: [d, C("day")], Do: [l, function(c) {
|
|
1615
|
+
var f = y.ordinal, x = c.match(/\d+/);
|
|
1616
|
+
if (this.day = x[0], f) for (var L = 1; L <= 31; L += 1) f(L).replace(/\[|\]/g, "") === c && (this.day = L);
|
|
1617
|
+
}], w: [s, C("week")], ww: [d, C("week")], M: [s, C("month")], MM: [d, C("month")], MMM: [l, function(c) {
|
|
1618
|
+
var f = k("months"), x = (k("monthsShort") || f.map(function(L) {
|
|
1619
1619
|
return L.slice(0, 3);
|
|
1620
|
-
})).indexOf(
|
|
1621
|
-
if (
|
|
1622
|
-
this.month =
|
|
1623
|
-
}], MMMM: [l, function(
|
|
1624
|
-
var
|
|
1625
|
-
if (
|
|
1626
|
-
this.month =
|
|
1627
|
-
}], Y: [/[+-]?\d+/, C("year")], YY: [
|
|
1628
|
-
this.year = A(
|
|
1629
|
-
}], YYYY: [/\d{4}/, C("year")], Z:
|
|
1630
|
-
function
|
|
1631
|
-
var
|
|
1632
|
-
|
|
1633
|
-
for (var L = (
|
|
1620
|
+
})).indexOf(c) + 1;
|
|
1621
|
+
if (x < 1) throw new Error();
|
|
1622
|
+
this.month = x % 12 || x;
|
|
1623
|
+
}], MMMM: [l, function(c) {
|
|
1624
|
+
var f = k("months").indexOf(c) + 1;
|
|
1625
|
+
if (f < 1) throw new Error();
|
|
1626
|
+
this.month = f % 12 || f;
|
|
1627
|
+
}], Y: [/[+-]?\d+/, C("year")], YY: [d, function(c) {
|
|
1628
|
+
this.year = A(c);
|
|
1629
|
+
}], YYYY: [/\d{4}/, C("year")], Z: I, ZZ: I };
|
|
1630
|
+
function p(c) {
|
|
1631
|
+
var f, x;
|
|
1632
|
+
f = c, x = y && y.formats;
|
|
1633
|
+
for (var L = (c = f.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, function(te, F, P) {
|
|
1634
1634
|
var K = P && P.toUpperCase();
|
|
1635
|
-
return F ||
|
|
1636
|
-
return g ||
|
|
1635
|
+
return F || x[P] || r[P] || x[K].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, function(W, g, h) {
|
|
1636
|
+
return g || h.slice(1);
|
|
1637
1637
|
});
|
|
1638
1638
|
})).match(n), Y = L.length, R = 0; R < Y; R += 1) {
|
|
1639
1639
|
var z = L[R], G = M[z], U = G && G[0], V = G && G[1];
|
|
@@ -1644,8 +1644,8 @@ var Lt = { exports: {} };
|
|
|
1644
1644
|
var W = L[P];
|
|
1645
1645
|
if (typeof W == "string") K += W.length;
|
|
1646
1646
|
else {
|
|
1647
|
-
var g = W.regex,
|
|
1648
|
-
|
|
1647
|
+
var g = W.regex, h = W.parser, m = te.slice(K), w = g.exec(m)[0];
|
|
1648
|
+
h.call(F, w), te = te.replace(w, "");
|
|
1649
1649
|
}
|
|
1650
1650
|
}
|
|
1651
1651
|
return function(T) {
|
|
@@ -1657,31 +1657,31 @@ var Lt = { exports: {} };
|
|
|
1657
1657
|
}(F), F;
|
|
1658
1658
|
};
|
|
1659
1659
|
}
|
|
1660
|
-
return function(
|
|
1661
|
-
|
|
1662
|
-
var L =
|
|
1660
|
+
return function(c, f, x) {
|
|
1661
|
+
x.p.customParseFormat = !0, c && c.parseTwoDigitYear && (A = c.parseTwoDigitYear);
|
|
1662
|
+
var L = f.prototype, Y = L.parse;
|
|
1663
1663
|
L.parse = function(R) {
|
|
1664
1664
|
var z = R.date, G = R.utc, U = R.args;
|
|
1665
1665
|
this.$u = G;
|
|
1666
1666
|
var V = U[1];
|
|
1667
1667
|
if (typeof V == "string") {
|
|
1668
1668
|
var te = U[2] === !0, F = U[3] === !0, P = te || F, K = U[2];
|
|
1669
|
-
F && (K = U[2]), y = this.$locale(), !te && K && (y =
|
|
1669
|
+
F && (K = U[2]), y = this.$locale(), !te && K && (y = x.Ls[K]), this.$d = function(m, w, T, J) {
|
|
1670
1670
|
try {
|
|
1671
1671
|
if (["x", "X"].indexOf(w) > -1) return new Date((w === "X" ? 1e3 : 1) * m);
|
|
1672
|
-
var q =
|
|
1672
|
+
var q = p(w)(m), oe = q.year, se = q.month, he = q.day, ue = q.hours, de = q.minutes, ve = q.seconds, ie = q.milliseconds, pe = q.zone, Q = q.week, v = /* @__PURE__ */ new Date(), _ = he || (oe || se ? 1 : v.getDate()), D = oe || v.getFullYear(), H = 0;
|
|
1673
1673
|
oe && !se || (H = se > 0 ? se - 1 : v.getMonth());
|
|
1674
1674
|
var re, ee = ue || 0, Ce = de || 0, fe = ve || 0, ge = ie || 0;
|
|
1675
|
-
return pe ? new Date(Date.UTC(D, H,
|
|
1675
|
+
return pe ? new Date(Date.UTC(D, H, _, ee, Ce, fe, ge + 60 * pe.offset * 1e3)) : T ? new Date(Date.UTC(D, H, _, ee, Ce, fe, ge)) : (re = new Date(D, H, _, ee, Ce, fe, ge), Q && (re = J(re).week(Q).toDate()), re);
|
|
1676
1676
|
} catch {
|
|
1677
1677
|
return /* @__PURE__ */ new Date("");
|
|
1678
1678
|
}
|
|
1679
|
-
}(z, V, G,
|
|
1679
|
+
}(z, V, G, x), this.init(), K && K !== !0 && (this.$L = this.locale(K).$L), P && z != this.format(V) && (this.$d = /* @__PURE__ */ new Date("")), y = {};
|
|
1680
1680
|
} else if (V instanceof Array) for (var W = V.length, g = 1; g <= W; g += 1) {
|
|
1681
1681
|
U[1] = V[g - 1];
|
|
1682
|
-
var
|
|
1683
|
-
if (
|
|
1684
|
-
this.$d =
|
|
1682
|
+
var h = x.apply(this, U);
|
|
1683
|
+
if (h.isValid()) {
|
|
1684
|
+
this.$d = h.$d, this.$L = h.$L, this.init();
|
|
1685
1685
|
break;
|
|
1686
1686
|
}
|
|
1687
1687
|
g === W && (this.$d = /* @__PURE__ */ new Date(""));
|
|
@@ -1700,17 +1700,17 @@ const st = ({
|
|
|
1700
1700
|
defaultAmPm: r = "AM",
|
|
1701
1701
|
withConfirm: n = !0,
|
|
1702
1702
|
mode: a = "single",
|
|
1703
|
-
closeOnScroll:
|
|
1703
|
+
closeOnScroll: d = !1,
|
|
1704
1704
|
onChange: s,
|
|
1705
1705
|
onFocus: l,
|
|
1706
1706
|
onBlur: y,
|
|
1707
1707
|
...A
|
|
1708
1708
|
}) => {
|
|
1709
|
-
const C = ne(null),
|
|
1710
|
-
if (!C.current || !
|
|
1711
|
-
const
|
|
1712
|
-
if (!m || !
|
|
1713
|
-
const w =
|
|
1709
|
+
const C = ne(null), I = ne(null), [k, $] = E(!1), [M, p] = E(o), c = Array.from({ length: 12 }, (h, m) => m < 10 ? `0${m}` : `${m}`), f = Array.from({ length: 24 }, (h, m) => m < 10 ? `0${m}` : `${m}`), x = Array.from({ length: 60 }, (h, m) => m < 10 ? `0${m}` : `${m}`), [L, Y] = E(""), [R, z] = E(null), [G, U] = E(null), [V, te] = E(r), F = () => {
|
|
1710
|
+
if (!C.current || !I.current) return;
|
|
1711
|
+
const h = C.current, m = I.current;
|
|
1712
|
+
if (!m || !h) return;
|
|
1713
|
+
const w = h.getBoundingClientRect(), T = window.innerHeight, J = window.innerWidth;
|
|
1714
1714
|
m.style.position = "fixed", w.bottom + m.offsetHeight > T ? (m.style.top = `${w.top - m.offsetHeight + 20}px`, m.style.bottom = "unset") : (m.style.top = `${w.bottom + 8}px`, m.style.bottom = "unset"), w.right + w.width > J - 120 ? m.style.left = `${w.left + w.width - m.offsetWidth}px` : m.style.left = `${w.left}px`;
|
|
1715
1715
|
}, P = () => {
|
|
1716
1716
|
requestAnimationFrame(() => {
|
|
@@ -1725,7 +1725,7 @@ const st = ({
|
|
|
1725
1725
|
t && t.length > 0 && Y(t);
|
|
1726
1726
|
}, [t]), X(() => {
|
|
1727
1727
|
if (!G && !R) return;
|
|
1728
|
-
const
|
|
1728
|
+
const h = parseInt(G ?? "0", 10), m = parseInt(R ?? "0", 10), w = M === "12" ? V === "PM" && h < 12 ? h + 12 : V === "AM" && h === 12 ? 0 : h : h, T = N().hour(w).minute(m).format(M === "12" ? "hh:mm A" : "HH:mm");
|
|
1729
1729
|
Y(T), n || s?.(T);
|
|
1730
1730
|
}, [G, R, V, M]);
|
|
1731
1731
|
const g = ne(!0);
|
|
@@ -1738,22 +1738,22 @@ const st = ({
|
|
|
1738
1738
|
}, [k]), X(() => {
|
|
1739
1739
|
P();
|
|
1740
1740
|
}, [C, k]), X(() => {
|
|
1741
|
-
const
|
|
1742
|
-
!C.current || !
|
|
1741
|
+
const h = (T) => {
|
|
1742
|
+
!C.current || !I.current || T.composedPath().includes(C.current) || T.composedPath().includes(I.current) || $(!1);
|
|
1743
1743
|
}, m = (T) => {
|
|
1744
|
-
!C.current ||
|
|
1744
|
+
!C.current || I.current || $(!1);
|
|
1745
1745
|
}, w = () => {
|
|
1746
1746
|
k && P();
|
|
1747
1747
|
};
|
|
1748
|
-
return document.addEventListener("click",
|
|
1749
|
-
document.removeEventListener("click",
|
|
1748
|
+
return document.addEventListener("click", h), document.addEventListener("wheel", m), window.addEventListener("scroll", w), () => {
|
|
1749
|
+
document.removeEventListener("click", h), document.removeEventListener("wheel", m), window.removeEventListener("scroll", w);
|
|
1750
1750
|
};
|
|
1751
1751
|
}, [k]), /* @__PURE__ */ i("div", { className: `${me.timepickerWrapper} ${k ? me.focused : ""}`, children: [
|
|
1752
|
-
/* @__PURE__ */ e("div", { ref: C, className: me.timepickerInputWrapper, onClick: () => ($((
|
|
1752
|
+
/* @__PURE__ */ e("div", { ref: C, className: me.timepickerInputWrapper, onClick: () => ($((h) => !h), P()), onFocus: K, children: /* @__PURE__ */ e(
|
|
1753
1753
|
Ae,
|
|
1754
1754
|
{
|
|
1755
1755
|
...A,
|
|
1756
|
-
onFocusChange: (
|
|
1756
|
+
onFocusChange: (h) => $(h),
|
|
1757
1757
|
customFocus: k,
|
|
1758
1758
|
withActive: !1,
|
|
1759
1759
|
value: L,
|
|
@@ -1763,8 +1763,8 @@ const st = ({
|
|
|
1763
1763
|
L && /* @__PURE__ */ e(
|
|
1764
1764
|
"div",
|
|
1765
1765
|
{
|
|
1766
|
-
onClick: (
|
|
1767
|
-
|
|
1766
|
+
onClick: (h) => {
|
|
1767
|
+
h.stopPropagation(), W();
|
|
1768
1768
|
},
|
|
1769
1769
|
className: me.dropdownRightIconClose,
|
|
1770
1770
|
children: /* @__PURE__ */ e(qe, {})
|
|
@@ -1776,14 +1776,14 @@ const st = ({
|
|
|
1776
1776
|
forDropdown: !0
|
|
1777
1777
|
}
|
|
1778
1778
|
) }),
|
|
1779
|
-
k && /* @__PURE__ */ i("div", { ref:
|
|
1779
|
+
k && /* @__PURE__ */ i("div", { ref: I, className: me.timepickerDropdownWrapper, children: [
|
|
1780
1780
|
/* @__PURE__ */ e("div", { className: me.timepickerDropdownHeader, children: /* @__PURE__ */ i("div", { className: me.timepickerDropdownHeaderButtons, children: [
|
|
1781
1781
|
/* @__PURE__ */ e(
|
|
1782
1782
|
"p",
|
|
1783
1783
|
{
|
|
1784
1784
|
className: M === "12" ? me.active : "",
|
|
1785
1785
|
onClick: () => {
|
|
1786
|
-
W(),
|
|
1786
|
+
W(), p("12");
|
|
1787
1787
|
},
|
|
1788
1788
|
children: "AM -PM"
|
|
1789
1789
|
}
|
|
@@ -1793,15 +1793,15 @@ const st = ({
|
|
|
1793
1793
|
{
|
|
1794
1794
|
className: M === "24" ? me.active : "",
|
|
1795
1795
|
onClick: () => {
|
|
1796
|
-
W(),
|
|
1796
|
+
W(), p("24");
|
|
1797
1797
|
},
|
|
1798
1798
|
children: "24 Hours"
|
|
1799
1799
|
}
|
|
1800
1800
|
)
|
|
1801
1801
|
] }) }),
|
|
1802
1802
|
/* @__PURE__ */ i("div", { className: me.timepickerDropdownBody, children: [
|
|
1803
|
-
/* @__PURE__ */ e("div", { className: me.timepickerDropdownBodyHours, children: (M === "12" ?
|
|
1804
|
-
/* @__PURE__ */ e("div", { className: me.timepickerDropdownBodyMinutes, children:
|
|
1803
|
+
/* @__PURE__ */ e("div", { className: me.timepickerDropdownBodyHours, children: (M === "12" ? c : f).map((h) => /* @__PURE__ */ e("p", { className: G === h || L?.split(":")[0] === h ? me.active : "", onClick: () => U(h), children: h }, h)) }),
|
|
1804
|
+
/* @__PURE__ */ e("div", { className: me.timepickerDropdownBodyMinutes, children: x.map((h) => /* @__PURE__ */ e("p", { className: R === h || L?.split(":")[1] === h ? me.active : "", onClick: () => z(h), children: h }, h)) }),
|
|
1805
1805
|
M === "12" && /* @__PURE__ */ i("div", { className: me.timepickerDropdownBodyAmPm, children: [
|
|
1806
1806
|
/* @__PURE__ */ e("p", { className: V === "AM" ? me.active : "", onClick: () => te("AM"), children: "AM" }, "AM"),
|
|
1807
1807
|
/* @__PURE__ */ e("p", { className: V === "PM" ? me.active : "", onClick: () => te("PM"), children: "PM" }, "PM")
|
|
@@ -1854,20 +1854,20 @@ const gl = ({
|
|
|
1854
1854
|
onChange: r,
|
|
1855
1855
|
CurrentMonth: n,
|
|
1856
1856
|
setCurrentMonth: a,
|
|
1857
|
-
SelectedDate:
|
|
1857
|
+
SelectedDate: d,
|
|
1858
1858
|
namespace: s,
|
|
1859
1859
|
customYears: l,
|
|
1860
1860
|
setSelectedDate: y,
|
|
1861
1861
|
IsFocused: A,
|
|
1862
1862
|
setIsFocused: C,
|
|
1863
|
-
mode:
|
|
1863
|
+
mode: I,
|
|
1864
1864
|
RangeSelection: k,
|
|
1865
1865
|
setRangeSelection: $,
|
|
1866
1866
|
pickerType: M,
|
|
1867
|
-
disabledDatesRange:
|
|
1868
|
-
disabledDatesTill:
|
|
1869
|
-
disabledDatesFrom:
|
|
1870
|
-
CalendarRef:
|
|
1867
|
+
disabledDatesRange: p,
|
|
1868
|
+
disabledDatesTill: c,
|
|
1869
|
+
disabledDatesFrom: f,
|
|
1870
|
+
CalendarRef: x,
|
|
1871
1871
|
defaultValue: L,
|
|
1872
1872
|
selectedStyle: Y,
|
|
1873
1873
|
endDateStyle: R,
|
|
@@ -1881,14 +1881,14 @@ const gl = ({
|
|
|
1881
1881
|
}) => {
|
|
1882
1882
|
const K = ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"], W = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
|
|
1883
1883
|
N().year();
|
|
1884
|
-
const [g,
|
|
1884
|
+
const [g, h] = E(""), m = ne([]), [w, T] = E(!1), J = (v) => {
|
|
1885
1885
|
if (l?.length && !l.includes(v.year().toString()))
|
|
1886
1886
|
return [];
|
|
1887
|
-
const
|
|
1887
|
+
const _ = (v.startOf("month").day() + 6) % 7, D = v.endOf("month").date(), H = v.subtract(1, "month").endOf("month").date(), re = [];
|
|
1888
1888
|
let ee = [], Ce = 1;
|
|
1889
|
-
for (let ge = 0; ge <
|
|
1889
|
+
for (let ge = 0; ge < _; ge++)
|
|
1890
1890
|
ee.push({
|
|
1891
|
-
date: v.subtract(1, "month").date(H -
|
|
1891
|
+
date: v.subtract(1, "month").date(H - _ + ge + 1),
|
|
1892
1892
|
currentMonth: !1
|
|
1893
1893
|
});
|
|
1894
1894
|
for (; Ce <= D; )
|
|
@@ -1910,8 +1910,8 @@ const gl = ({
|
|
|
1910
1910
|
return re;
|
|
1911
1911
|
}, q = J(n), oe = M === "dual" ? J(n.add(1, "month")) : null, se = () => {
|
|
1912
1912
|
let v = [];
|
|
1913
|
-
return o && Array.isArray(o) && o.length > 0 && o.forEach((
|
|
1914
|
-
switch (
|
|
1913
|
+
return o && Array.isArray(o) && o.length > 0 && o.forEach((_) => {
|
|
1914
|
+
switch (_) {
|
|
1915
1915
|
case "today":
|
|
1916
1916
|
m.current.push({ name: "Today", key: "Today" });
|
|
1917
1917
|
break;
|
|
@@ -1942,61 +1942,61 @@ const gl = ({
|
|
|
1942
1942
|
}
|
|
1943
1943
|
}), m.current = vt(m.current, "key"), v = m.current, v;
|
|
1944
1944
|
}, he = (v) => {
|
|
1945
|
-
let
|
|
1945
|
+
let _ = { start: "", end: "" };
|
|
1946
1946
|
switch (y(null), v.key?.toLowerCase()) {
|
|
1947
1947
|
case "today":
|
|
1948
1948
|
$({
|
|
1949
1949
|
start: N(),
|
|
1950
1950
|
end: N()
|
|
1951
|
-
}),
|
|
1951
|
+
}), _.start = N();
|
|
1952
1952
|
break;
|
|
1953
1953
|
case "yesterday":
|
|
1954
1954
|
y(N().subtract(1, "day")), $({
|
|
1955
1955
|
start: N().subtract(1, "day"),
|
|
1956
1956
|
end: N().subtract(1, "day")
|
|
1957
|
-
}),
|
|
1957
|
+
}), _.start = N().subtract(1, "day");
|
|
1958
1958
|
break;
|
|
1959
1959
|
case "thisweek":
|
|
1960
1960
|
$({
|
|
1961
1961
|
start: N().startOf("week"),
|
|
1962
1962
|
end: N().endOf("week")
|
|
1963
|
-
}),
|
|
1963
|
+
}), _.start = N().startOf("week"), _.end = N().endOf("week");
|
|
1964
1964
|
break;
|
|
1965
1965
|
case "lastweek":
|
|
1966
1966
|
$({
|
|
1967
1967
|
start: N().subtract(1, "week").startOf("week"),
|
|
1968
1968
|
end: N().subtract(1, "week").endOf("week")
|
|
1969
|
-
}),
|
|
1969
|
+
}), _.start = N().subtract(1, "week").startOf("week"), _.end = N().subtract(1, "week").endOf("week");
|
|
1970
1970
|
break;
|
|
1971
1971
|
case "thismonth":
|
|
1972
1972
|
$({
|
|
1973
1973
|
start: N().startOf("month"),
|
|
1974
1974
|
end: N().endOf("month")
|
|
1975
|
-
}),
|
|
1975
|
+
}), _.start = N().startOf("month"), _.end = N().endOf("month");
|
|
1976
1976
|
break;
|
|
1977
1977
|
case "lastmonth":
|
|
1978
1978
|
$({
|
|
1979
1979
|
start: N().subtract(1, "month").startOf("month"),
|
|
1980
1980
|
end: N().subtract(1, "month").endOf("month")
|
|
1981
|
-
}),
|
|
1981
|
+
}), _.start = N().subtract(1, "month").startOf("month"), _.end = N().subtract(1, "month").endOf("month");
|
|
1982
1982
|
break;
|
|
1983
1983
|
case "thisyear":
|
|
1984
1984
|
$({
|
|
1985
1985
|
start: N().startOf("year"),
|
|
1986
1986
|
end: N().endOf("year")
|
|
1987
|
-
}),
|
|
1987
|
+
}), _.start = N().startOf("year"), _.end = N().endOf("year");
|
|
1988
1988
|
break;
|
|
1989
1989
|
case "lastyear":
|
|
1990
1990
|
$({
|
|
1991
1991
|
start: N().subtract(1, "year").startOf("year"),
|
|
1992
1992
|
end: N().subtract(1, "year").endOf("year")
|
|
1993
|
-
}),
|
|
1993
|
+
}), _.start = N().subtract(1, "year").startOf("year"), _.end = N().subtract(1, "year").endOf("year");
|
|
1994
1994
|
break;
|
|
1995
1995
|
case "alltime":
|
|
1996
1996
|
$({
|
|
1997
1997
|
start: "",
|
|
1998
1998
|
end: ""
|
|
1999
|
-
}),
|
|
1999
|
+
}), _.start = "", _.end = "";
|
|
2000
2000
|
break;
|
|
2001
2001
|
default:
|
|
2002
2002
|
console.warn("Unsupported quick pick option:", v);
|
|
@@ -2004,14 +2004,14 @@ const gl = ({
|
|
|
2004
2004
|
}
|
|
2005
2005
|
if (r && typeof r == "function") {
|
|
2006
2006
|
const D = {
|
|
2007
|
-
start:
|
|
2008
|
-
end:
|
|
2007
|
+
start: _.start ? _.start : "",
|
|
2008
|
+
end: _.end ? _.end : ""
|
|
2009
2009
|
};
|
|
2010
2010
|
C(!1), r(D.end === "" ? D.start : D);
|
|
2011
2011
|
}
|
|
2012
2012
|
}, ue = () => {
|
|
2013
|
-
}, de = (v,
|
|
2014
|
-
|
|
2013
|
+
}, de = (v, _, D = !1) => {
|
|
2014
|
+
_ || a(v.startOf("month")), I === "range" ? $((H) => !H.start || H.start && H.end ? (r && typeof r == "function" && r({
|
|
2015
2015
|
start: v ?? "",
|
|
2016
2016
|
end: ""
|
|
2017
2017
|
}), { start: v ?? "", end: "" }) : H.start && !H.end ? v.isBefore(H.start, "day") ? (r && typeof r == "function" && r({
|
|
@@ -2035,7 +2035,7 @@ const gl = ({
|
|
|
2035
2035
|
}, []), /* @__PURE__ */ e(
|
|
2036
2036
|
"div",
|
|
2037
2037
|
{
|
|
2038
|
-
ref:
|
|
2038
|
+
ref: x,
|
|
2039
2039
|
className: `${s === "namespaceHr" ? j.namespaceHr : ""} ${j.datePicker} ${A ? j.focused : ""} ${M === "dual" ? o && Array.isArray(o) && o.length > 0 ? j.dualCalendarWithQuick : j.dualCalendar : ""} `,
|
|
2040
2040
|
onClick: (v) => v.stopPropagation(),
|
|
2041
2041
|
style: M === "dual" && o && Array.isArray(o) && o.length > 0 ? { width: "848px" } : {},
|
|
@@ -2082,16 +2082,16 @@ const gl = ({
|
|
|
2082
2082
|
M === "single" && o && Array.isArray(o) && o.length > 0 && /* @__PURE__ */ e("ul", { className: j.quickPick, children: se().slice(0, 3).map((v) => /* @__PURE__ */ e("li", { style: F ?? {}, onClick: () => he(v), children: v.name }, v.key)) })
|
|
2083
2083
|
] }),
|
|
2084
2084
|
/* @__PURE__ */ i("div", { className: j.calendarWrapper, children: [
|
|
2085
|
-
w ? /* @__PURE__ */ e("ul", { className: j.monthsWrapper, children: W.map((v) => /* @__PURE__ */ e("li", { className: `${j.month} ${g === v ? j.pickedMonth : ""}`, onClick: () =>
|
|
2085
|
+
w ? /* @__PURE__ */ e("ul", { className: j.monthsWrapper, children: W.map((v) => /* @__PURE__ */ e("li", { className: `${j.month} ${g === v ? j.pickedMonth : ""}`, onClick: () => h(v), children: /* @__PURE__ */ e("div", { className: j.monthName, children: v }) })) }) : /* @__PURE__ */ i("table", { children: [
|
|
2086
2086
|
/* @__PURE__ */ e("thead", { children: /* @__PURE__ */ e("tr", { children: K.map((v) => /* @__PURE__ */ e("th", { style: te ?? {}, children: v }, v)) }) }),
|
|
2087
2087
|
/* @__PURE__ */ i("tbody", { children: [
|
|
2088
2088
|
/* @__PURE__ */ e("tr", { className: j.spacerRow, children: /* @__PURE__ */ e("td", {}) }),
|
|
2089
|
-
q.map((v,
|
|
2090
|
-
const ee = k.start && k.end && D.isAfter(k.start, "day") && D.isBefore(k.end, "day"), Ce = k.start && D.isSame(k.start, "day"), fe = k.end && D.isSame(k.end, "day"), ge =
|
|
2089
|
+
q.map((v, _) => /* @__PURE__ */ e("tr", { children: v.map(({ date: D, currentMonth: H }, re) => {
|
|
2090
|
+
const ee = k.start && k.end && D.isAfter(k.start, "day") && D.isBefore(k.end, "day"), Ce = k.start && D.isSame(k.start, "day"), fe = k.end && D.isSame(k.end, "day"), ge = I === "single" && d && D.isSame(d, "day"), we = c && D.isBefore(N(c), "day"), $e = f && D.isAfter(N(f), "day");
|
|
2091
2091
|
let xe = !1;
|
|
2092
|
-
if (
|
|
2093
|
-
const [
|
|
2094
|
-
xe = D.isAfter(
|
|
2092
|
+
if (p?.length === 2) {
|
|
2093
|
+
const [u, Z] = p.map((le) => N(le));
|
|
2094
|
+
xe = D.isAfter(u.subtract(1, "day")) && D.isBefore(Z.add(1, "day"));
|
|
2095
2095
|
}
|
|
2096
2096
|
const Me = $e || we || xe;
|
|
2097
2097
|
return /* @__PURE__ */ e(
|
|
@@ -2118,19 +2118,19 @@ const gl = ({
|
|
|
2118
2118
|
},
|
|
2119
2119
|
re
|
|
2120
2120
|
);
|
|
2121
|
-
}) },
|
|
2121
|
+
}) }, _))
|
|
2122
2122
|
] })
|
|
2123
2123
|
] }),
|
|
2124
2124
|
/* @__PURE__ */ e("div", { className: j.buttonWrapper, children: /* @__PURE__ */ e(Ne, { label: "Current date", onClick: () => de(N(), !0) }) }),
|
|
2125
2125
|
M === "dual" && /* @__PURE__ */ e("div", { className: j.border }),
|
|
2126
2126
|
M === "dual" && /* @__PURE__ */ i("table", { children: [
|
|
2127
2127
|
/* @__PURE__ */ e("thead", { children: /* @__PURE__ */ e("tr", { children: K.map((v) => /* @__PURE__ */ e("th", { style: te ?? {}, children: v }, v)) }) }),
|
|
2128
|
-
/* @__PURE__ */ e("tbody", { children: oe?.map((v,
|
|
2129
|
-
const ee = k.start && k.end && D.isAfter(k.start, "day") && D.isBefore(k.end, "day"), Ce = k.start && D.isSame(k.start, "day"), fe = k.end && D.isSame(k.end, "day"), ge =
|
|
2128
|
+
/* @__PURE__ */ e("tbody", { children: oe?.map((v, _) => /* @__PURE__ */ e("tr", { children: v.map(({ date: D, currentMonth: H }, re) => {
|
|
2129
|
+
const ee = k.start && k.end && D.isAfter(k.start, "day") && D.isBefore(k.end, "day"), Ce = k.start && D.isSame(k.start, "day"), fe = k.end && D.isSame(k.end, "day"), ge = I === "single" && d && D.isSame(d, "day"), we = c && D.isBefore(N(c), "day"), $e = f && D.isAfter(N(f), "day");
|
|
2130
2130
|
let xe = !1;
|
|
2131
|
-
if (
|
|
2132
|
-
const [
|
|
2133
|
-
xe = D.isAfter(
|
|
2131
|
+
if (p?.length === 2) {
|
|
2132
|
+
const [u, Z] = p.map((le) => N(le));
|
|
2133
|
+
xe = D.isAfter(u.subtract(1, "day")) && D.isBefore(Z.add(1, "day"));
|
|
2134
2134
|
}
|
|
2135
2135
|
const Me = $e || we || xe;
|
|
2136
2136
|
return /* @__PURE__ */ e(
|
|
@@ -2157,7 +2157,7 @@ const gl = ({
|
|
|
2157
2157
|
},
|
|
2158
2158
|
re
|
|
2159
2159
|
);
|
|
2160
|
-
}) },
|
|
2160
|
+
}) }, _)) })
|
|
2161
2161
|
] })
|
|
2162
2162
|
] })
|
|
2163
2163
|
] })
|
|
@@ -2171,20 +2171,20 @@ const at = ({
|
|
|
2171
2171
|
onChange: r,
|
|
2172
2172
|
onBlur: n,
|
|
2173
2173
|
onFocus: a,
|
|
2174
|
-
customYears:
|
|
2174
|
+
customYears: d,
|
|
2175
2175
|
fixedDropdown: s = !0,
|
|
2176
2176
|
disabledDatesFrom: l,
|
|
2177
2177
|
disabledDatesTill: y,
|
|
2178
2178
|
disabledDatesRange: A,
|
|
2179
2179
|
datepickerStyle: C,
|
|
2180
|
-
datepickerLabelStyle:
|
|
2180
|
+
datepickerLabelStyle: I,
|
|
2181
2181
|
closeOnScroll: k = !0,
|
|
2182
2182
|
requiredStyle: $,
|
|
2183
2183
|
datepickerHelperTextStyle: M,
|
|
2184
|
-
selectedStyle:
|
|
2185
|
-
endDateStyle:
|
|
2186
|
-
startDateStyle:
|
|
2187
|
-
inRangeStyle:
|
|
2184
|
+
selectedStyle: p,
|
|
2185
|
+
endDateStyle: c,
|
|
2186
|
+
startDateStyle: f,
|
|
2187
|
+
inRangeStyle: x,
|
|
2188
2188
|
otherMonthStyle: L,
|
|
2189
2189
|
todayStyle: Y,
|
|
2190
2190
|
weekDayStyle: R,
|
|
@@ -2196,65 +2196,65 @@ const at = ({
|
|
|
2196
2196
|
disabled: F = !1,
|
|
2197
2197
|
...P
|
|
2198
2198
|
}) => {
|
|
2199
|
-
const K = tt(), [W, g] = E(!1), [
|
|
2200
|
-
const
|
|
2201
|
-
return
|
|
2199
|
+
const K = tt(), [W, g] = E(!1), [h, m] = E(""), w = ne({ state: !1, value: "" }), T = ne(null), [J, q] = E(() => {
|
|
2200
|
+
const _ = N().year().toString();
|
|
2201
|
+
return d?.length ? d.includes(_) ? N() : N(`${Math.min(...d.map(Number))}-01-01`) : N();
|
|
2202
2202
|
});
|
|
2203
2203
|
X(() => {
|
|
2204
|
-
const
|
|
2205
|
-
|
|
2206
|
-
}, [
|
|
2204
|
+
const _ = N().year().toString();
|
|
2205
|
+
d?.length && q(d.includes(_) ? N() : N(`${Math.min(...d.map(Number))}-01-01`));
|
|
2206
|
+
}, [d]);
|
|
2207
2207
|
const [oe, se] = E(""), [he, ue] = E({
|
|
2208
2208
|
start: null,
|
|
2209
2209
|
end: null
|
|
2210
|
-
}), de = ne(null), ve = (
|
|
2210
|
+
}), de = ne(null), ve = (_, D, H) => {
|
|
2211
2211
|
let re = "", ee = { start: "", end: "" };
|
|
2212
|
-
(V === "single" || typeof
|
|
2213
|
-
}, ie = (
|
|
2214
|
-
|
|
2212
|
+
(V === "single" || typeof _ == "string") && (re = _, m(re)), (V !== "single" || typeof _ != "string") && (_?.start || _?.end ? re = `${_?.start ? N(_?.start).format(o) : ""} / ${_?.end ? N(_?.end).format(o) : ""}` : re = "", ee.start = _?.start ? N(_?.start).format(o) : "", ee.end = _?.end ? N(_?.end).format(o) : "", m(re)), _?.end && g(!1), r && typeof r == "function" && !H && (r(ee.start !== "" ? ee : re), w.current.value = ee.start !== "" ? ee : re);
|
|
2213
|
+
}, ie = (_) => {
|
|
2214
|
+
_.stopPropagation(), se(""), w.current.value = "", m(""), ue({
|
|
2215
2215
|
start: null,
|
|
2216
2216
|
end: null
|
|
2217
2217
|
}), r && typeof r == "function" && r("");
|
|
2218
|
-
}, pe = (
|
|
2219
|
-
de.current && (
|
|
2220
|
-
}, Q = (
|
|
2221
|
-
k && (!de.current || !T.current ||
|
|
2218
|
+
}, pe = (_) => {
|
|
2219
|
+
de.current && (_.composedPath().includes(de.current) || g(!1));
|
|
2220
|
+
}, Q = (_) => {
|
|
2221
|
+
k && (!de.current || !T.current || _.composedPath().includes(de.current) || _.composedPath().includes(T.current) || g(!1));
|
|
2222
2222
|
}, v = () => {
|
|
2223
2223
|
if (!de.current || !T.current) return;
|
|
2224
|
-
const
|
|
2225
|
-
if (!D || !
|
|
2226
|
-
const H =
|
|
2224
|
+
const _ = de.current, D = T.current;
|
|
2225
|
+
if (!D || !_) return;
|
|
2226
|
+
const H = _.getBoundingClientRect(), re = window.innerHeight, ee = window.innerWidth;
|
|
2227
2227
|
D.style.position = "fixed", H.bottom + D.offsetHeight > re ? (D.style.top = `${H.top - D.offsetHeight + 20}px`, D.style.bottom = "unset") : (D.style.top = `${H.bottom + 8}px`, D.style.bottom = "unset"), H.right + H.width > ee - 120 ? D.style.left = `${H.left + H.width - D.offsetWidth}px` : D.style.left = `${H.left}px`;
|
|
2228
2228
|
};
|
|
2229
2229
|
return X(() => {
|
|
2230
2230
|
if (t && t.length > 0 && w.current.value === "") {
|
|
2231
|
-
let
|
|
2231
|
+
let _ = Array.isArray(t) ? {
|
|
2232
2232
|
start: t[0] ? N(t[0], o) : "",
|
|
2233
2233
|
end: t[1] ? N(t[1], o) : null
|
|
2234
2234
|
} : N(t, o).format(o);
|
|
2235
|
-
w.current.value = t, w.current.state = !0,
|
|
2235
|
+
w.current.value = t, w.current.state = !0, _ && ve(_, !1, !0);
|
|
2236
2236
|
}
|
|
2237
2237
|
}, []), X(() => {
|
|
2238
2238
|
W && v();
|
|
2239
2239
|
}, [T, W]), X(() => {
|
|
2240
|
-
const
|
|
2240
|
+
const _ = () => {
|
|
2241
2241
|
W && v();
|
|
2242
2242
|
};
|
|
2243
|
-
return document.addEventListener("click", pe), document.addEventListener("wheel", Q), window.addEventListener("scroll",
|
|
2244
|
-
document.removeEventListener("click", pe), document.removeEventListener("wheel", Q), window.removeEventListener("scroll",
|
|
2243
|
+
return document.addEventListener("click", pe), document.addEventListener("wheel", Q), window.addEventListener("scroll", _), () => {
|
|
2244
|
+
document.removeEventListener("click", pe), document.removeEventListener("wheel", Q), window.removeEventListener("scroll", _);
|
|
2245
2245
|
};
|
|
2246
2246
|
}, [W]), /* @__PURE__ */ i("div", { className: `${K === "namespaceHr" ? ze.namespaceHr : ""} ${ze.datepickerContainer}`, children: [
|
|
2247
|
-
/* @__PURE__ */ e("div", { ref: de, className: ze.datepickerInputWrapper, onClick: () => (g((
|
|
2247
|
+
/* @__PURE__ */ e("div", { ref: de, className: ze.datepickerInputWrapper, onClick: () => (g((_) => !_), v()), children: /* @__PURE__ */ e(
|
|
2248
2248
|
Ae,
|
|
2249
2249
|
{
|
|
2250
2250
|
...P,
|
|
2251
2251
|
customFocus: W,
|
|
2252
2252
|
withActive: !1,
|
|
2253
|
-
value:
|
|
2253
|
+
value: h,
|
|
2254
2254
|
toggleFocus: !0,
|
|
2255
2255
|
formInputStyle: { cursor: "pointer" },
|
|
2256
2256
|
leftSlot: /* @__PURE__ */ e("div", { className: ze.datepickerLeftIcon, children: /* @__PURE__ */ e(Ot, {}) }),
|
|
2257
|
-
rightSlot: /* @__PURE__ */ e("div", { className: `${ze.datepickerRightIcon}`, onClick: ie, children:
|
|
2257
|
+
rightSlot: /* @__PURE__ */ e("div", { className: `${ze.datepickerRightIcon}`, onClick: ie, children: h && /* @__PURE__ */ e(qe, {}) }),
|
|
2258
2258
|
readOnly: !0
|
|
2259
2259
|
}
|
|
2260
2260
|
) }),
|
|
@@ -2268,8 +2268,8 @@ const at = ({
|
|
|
2268
2268
|
disabledDatesTill: y,
|
|
2269
2269
|
disabledDatesRange: A,
|
|
2270
2270
|
valueFormat: o,
|
|
2271
|
-
onChange: (
|
|
2272
|
-
customYears:
|
|
2271
|
+
onChange: (_) => ve(_, !1, !1),
|
|
2272
|
+
customYears: d,
|
|
2273
2273
|
CurrentMonth: J,
|
|
2274
2274
|
setCurrentMonth: q,
|
|
2275
2275
|
SelectedDate: oe,
|
|
@@ -2281,10 +2281,10 @@ const at = ({
|
|
|
2281
2281
|
RangeSelection: he,
|
|
2282
2282
|
setRangeSelection: ue,
|
|
2283
2283
|
pickerType: te,
|
|
2284
|
-
selectedStyle:
|
|
2285
|
-
endDateStyle:
|
|
2286
|
-
startDateStyle:
|
|
2287
|
-
inRangeStyle:
|
|
2284
|
+
selectedStyle: p,
|
|
2285
|
+
endDateStyle: c,
|
|
2286
|
+
startDateStyle: f,
|
|
2287
|
+
inRangeStyle: x,
|
|
2288
2288
|
otherMonthStyle: L,
|
|
2289
2289
|
todayStyle: Y,
|
|
2290
2290
|
weekDayStyle: R,
|
|
@@ -2346,49 +2346,49 @@ const Ll = "mc__ActionDropdown-module__actionDropdownContainer", Tl = "mc__Actio
|
|
|
2346
2346
|
actionDropdownItem: Ml,
|
|
2347
2347
|
selected: Dl
|
|
2348
2348
|
}, dt = ({ title: t, data: o, closeOnScroll: r = !1, onSelect: n }) => {
|
|
2349
|
-
const [a,
|
|
2350
|
-
A(
|
|
2351
|
-
},
|
|
2349
|
+
const [a, d] = E(!1), s = ne(null), l = ne(null), [y, A] = E(null), C = (p) => {
|
|
2350
|
+
A(p), n?.(p), d(!1);
|
|
2351
|
+
}, I = () => {
|
|
2352
2352
|
if (!s.current || !l.current) return;
|
|
2353
|
-
const
|
|
2354
|
-
if (!
|
|
2355
|
-
const
|
|
2356
|
-
|
|
2353
|
+
const p = s.current, c = l.current;
|
|
2354
|
+
if (!c || !p) return;
|
|
2355
|
+
const f = p.getBoundingClientRect(), x = window.innerHeight;
|
|
2356
|
+
c.style.width = f.width + "px", c.style.position = "fixed", f.bottom + c.offsetHeight > x ? (c.style.top = `${f.top - c.offsetHeight - 8}px`, c.style.bottom = "unset") : (c.style.top = `${f.bottom + 8}px`, c.style.bottom = "unset");
|
|
2357
2357
|
}, k = () => {
|
|
2358
2358
|
requestAnimationFrame(() => {
|
|
2359
|
-
|
|
2359
|
+
I();
|
|
2360
2360
|
});
|
|
2361
2361
|
};
|
|
2362
2362
|
X(() => {
|
|
2363
2363
|
k();
|
|
2364
2364
|
}, [s, a]);
|
|
2365
|
-
const $ = (
|
|
2366
|
-
s.current && (
|
|
2367
|
-
}, M = (
|
|
2368
|
-
r && (!s.current || !l.current ||
|
|
2365
|
+
const $ = (p) => {
|
|
2366
|
+
s.current && (p.composedPath().includes(s.current) || d(!1));
|
|
2367
|
+
}, M = (p) => {
|
|
2368
|
+
r && (!s.current || !l.current || p.composedPath().includes(s.current) || p.composedPath().includes(l.current) || d(!1));
|
|
2369
2369
|
};
|
|
2370
2370
|
return X(() => {
|
|
2371
|
-
const
|
|
2371
|
+
const p = () => {
|
|
2372
2372
|
a && k();
|
|
2373
2373
|
};
|
|
2374
|
-
return document.addEventListener("click", $), document.addEventListener("wheel", M), window.addEventListener("scroll",
|
|
2375
|
-
document.removeEventListener("click", $), document.removeEventListener("wheel", M), window.removeEventListener("scroll",
|
|
2374
|
+
return document.addEventListener("click", $), document.addEventListener("wheel", M), window.addEventListener("scroll", p), () => {
|
|
2375
|
+
document.removeEventListener("click", $), document.removeEventListener("wheel", M), window.removeEventListener("scroll", p);
|
|
2376
2376
|
};
|
|
2377
2377
|
}, [a]), /* @__PURE__ */ i("div", { className: `${De.actionDropdownContainer} ${a ? De.collapsed : ""}`, children: [
|
|
2378
|
-
/* @__PURE__ */ i("div", { ref: s, className: De.actionDropdownContent, onClick: () => (
|
|
2378
|
+
/* @__PURE__ */ i("div", { ref: s, className: De.actionDropdownContent, onClick: () => (d((p) => !p), k()), children: [
|
|
2379
2379
|
/* @__PURE__ */ e("p", { title: t, className: De.actionDropdownTitle, children: y?.label || t }),
|
|
2380
2380
|
/* @__PURE__ */ e("div", { className: De.actionDropdownIcon, children: /* @__PURE__ */ e(Ue, { width: "10", height: "6", color: "#131314" }) })
|
|
2381
2381
|
] }),
|
|
2382
|
-
a && /* @__PURE__ */ e("ul", { ref: l, onClick: (
|
|
2382
|
+
a && /* @__PURE__ */ e("ul", { ref: l, onClick: (p) => p.stopPropagation(), className: De.actionDropdownList, children: o.map((p) => /* @__PURE__ */ e(
|
|
2383
2383
|
"li",
|
|
2384
2384
|
{
|
|
2385
|
-
onClick: (
|
|
2386
|
-
|
|
2385
|
+
onClick: (c) => {
|
|
2386
|
+
c.stopPropagation(), C(p);
|
|
2387
2387
|
},
|
|
2388
|
-
className: `${De.actionDropdownItem} ${y?.id ===
|
|
2389
|
-
children:
|
|
2388
|
+
className: `${De.actionDropdownItem} ${y?.id === p.id ? De.selected : ""}`,
|
|
2389
|
+
children: p.label
|
|
2390
2390
|
},
|
|
2391
|
-
|
|
2391
|
+
p.id
|
|
2392
2392
|
)) }, o.length)
|
|
2393
2393
|
] });
|
|
2394
2394
|
};
|
|
@@ -2472,20 +2472,20 @@ const Wl = "mc__Slider-module__sliderContainer", Bl = "mc__Slider-module__slider
|
|
|
2472
2472
|
maxValue: r,
|
|
2473
2473
|
min: n = 0,
|
|
2474
2474
|
max: a = 100,
|
|
2475
|
-
range:
|
|
2475
|
+
range: d = !0,
|
|
2476
2476
|
debounceTime: s,
|
|
2477
2477
|
onChange: l,
|
|
2478
2478
|
sliderContainerStyle: y,
|
|
2479
2479
|
sliderStyle: A,
|
|
2480
2480
|
sliderProgressStyle: C,
|
|
2481
|
-
thumbStyle:
|
|
2481
|
+
thumbStyle: I,
|
|
2482
2482
|
unit: k
|
|
2483
2483
|
}) => {
|
|
2484
|
-
const $ = ne(!0), M =
|
|
2484
|
+
const $ = ne(!0), M = d || o !== void 0 && r !== void 0, [p, c] = E({
|
|
2485
2485
|
minValue: o ?? n,
|
|
2486
2486
|
maxValue: r ?? a,
|
|
2487
2487
|
singleValue: t ?? n
|
|
2488
|
-
}), [
|
|
2488
|
+
}), [f, x] = E({
|
|
2489
2489
|
min: !1,
|
|
2490
2490
|
max: !1,
|
|
2491
2491
|
single: !1
|
|
@@ -2496,55 +2496,55 @@ const Wl = "mc__Slider-module__sliderContainer", Bl = "mc__Slider-module__slider
|
|
|
2496
2496
|
}), R = Ul(), z = ne(null), G = ne(null), U = ne(null), V = ne(null), te = (g) => {
|
|
2497
2497
|
const m = z.current?.getBoundingClientRect(), w = Math.min(Math.max(0, (g - m.left) / m.width), 1);
|
|
2498
2498
|
return Math.round(w * (a - n) + n);
|
|
2499
|
-
}, F = (g) => (
|
|
2500
|
-
|
|
2499
|
+
}, F = (g) => (h) => {
|
|
2500
|
+
h.preventDefault(), Y((T) => ({ ...T, [g]: !0 })), x((T) => ({ ...T, [g]: !0 }));
|
|
2501
2501
|
const m = (T) => {
|
|
2502
2502
|
const J = te(T.clientX);
|
|
2503
|
-
|
|
2503
|
+
c((q) => g === "single" ? { ...q, singleValue: J } : g === "min" ? { ...q, minValue: Math.min(J, q.maxValue - 1) } : { ...q, maxValue: Math.max(J, q.minValue + 1) });
|
|
2504
2504
|
}, w = () => {
|
|
2505
|
-
Y((T) => ({ ...T, [g]: !1 })),
|
|
2505
|
+
Y((T) => ({ ...T, [g]: !1 })), x((T) => ({ ...T, [g]: !1 })), document.removeEventListener("mousemove", m), document.removeEventListener("mouseup", w);
|
|
2506
2506
|
};
|
|
2507
2507
|
document.addEventListener("mousemove", m), document.addEventListener("mouseup", w);
|
|
2508
2508
|
}, P = (g) => {
|
|
2509
|
-
const
|
|
2509
|
+
const h = te(g.clientX);
|
|
2510
2510
|
if (M) {
|
|
2511
|
-
const m = Math.abs(
|
|
2512
|
-
|
|
2511
|
+
const m = Math.abs(h - p.minValue), w = Math.abs(h - p.maxValue), T = m < w ? "min" : "max";
|
|
2512
|
+
c((J) => T === "min" ? { ...J, minValue: Math.min(h, J.maxValue - 1) } : { ...J, maxValue: Math.max(h, J.minValue + 1) }), F(T)(g);
|
|
2513
2513
|
} else
|
|
2514
|
-
|
|
2514
|
+
c((m) => ({ ...m, singleValue: h })), F("single")(g);
|
|
2515
2515
|
}, K = M ? {
|
|
2516
|
-
left: `${(
|
|
2517
|
-
width: `${(
|
|
2516
|
+
left: `${(p.minValue - n) / (a - n) * 100}%`,
|
|
2517
|
+
width: `${(p.maxValue - p.minValue) / (a - n) * 100}%`
|
|
2518
2518
|
} : {
|
|
2519
2519
|
left: "0%",
|
|
2520
|
-
width: `${(
|
|
2520
|
+
width: `${(p.singleValue - n) / (a - n) * 100}%`
|
|
2521
2521
|
}, W = (g) => {
|
|
2522
|
-
const
|
|
2523
|
-
if (!
|
|
2524
|
-
const m =
|
|
2525
|
-
|
|
2522
|
+
const h = g.current;
|
|
2523
|
+
if (!h) return;
|
|
2524
|
+
const m = h.getBoundingClientRect(), w = window.innerWidth, T = m.width;
|
|
2525
|
+
h.style.transform = "translateX(-50%)";
|
|
2526
2526
|
let J = "50%";
|
|
2527
2527
|
if (m.right > w - 10) {
|
|
2528
2528
|
const q = m.right - w + 10;
|
|
2529
|
-
|
|
2529
|
+
h.style.transform = `translateX(calc(-50% - ${q}px))`;
|
|
2530
2530
|
const oe = T - 10;
|
|
2531
2531
|
J = `${Math.min(T / 2 + q, oe)}px`;
|
|
2532
2532
|
}
|
|
2533
2533
|
if (m.left < 10) {
|
|
2534
2534
|
const q = 10 - m.left;
|
|
2535
|
-
|
|
2535
|
+
h.style.transform = `translateX(calc(-50% + ${q}px))`, J = `${Math.max(T / 2 - q, 10)}px`;
|
|
2536
2536
|
}
|
|
2537
|
-
|
|
2537
|
+
h.style.setProperty("--arrow-position", J);
|
|
2538
2538
|
};
|
|
2539
2539
|
return X(() => {
|
|
2540
|
-
(
|
|
2541
|
-
}, [
|
|
2540
|
+
(f.min || L.min) && W(G), (f.max || L.max) && W(U), (f.single || L.single) && W(V);
|
|
2541
|
+
}, [p, f, L]), X(() => {
|
|
2542
2542
|
if ($.current) {
|
|
2543
2543
|
$.current = !1;
|
|
2544
2544
|
return;
|
|
2545
2545
|
}
|
|
2546
|
-
l && typeof l == "function" && R(M ? () => l([
|
|
2547
|
-
}, [
|
|
2546
|
+
l && typeof l == "function" && R(M ? () => l([p.minValue, p.maxValue]) : () => l(p.singleValue), s ?? 100);
|
|
2547
|
+
}, [p]), /* @__PURE__ */ e("div", { style: y ?? {}, className: `${be.sliderContainer}`, children: /* @__PURE__ */ i("div", { ref: z, style: A ?? {}, className: be.slider, onMouseDown: P, children: [
|
|
2548
2548
|
/* @__PURE__ */ e("div", { className: be.sliderProgress, style: { ...K, ...C ?? {} } }),
|
|
2549
2549
|
M ? /* @__PURE__ */ i($t, { children: [
|
|
2550
2550
|
/* @__PURE__ */ e(
|
|
@@ -2552,14 +2552,14 @@ const Wl = "mc__Slider-module__sliderContainer", Bl = "mc__Slider-module__slider
|
|
|
2552
2552
|
{
|
|
2553
2553
|
className: `${be.thumb} ${be.thumbLeft}`,
|
|
2554
2554
|
style: {
|
|
2555
|
-
left: `${(
|
|
2556
|
-
...
|
|
2555
|
+
left: `${(p.minValue - n) / (a - n) * 100}%`,
|
|
2556
|
+
...I ?? {}
|
|
2557
2557
|
},
|
|
2558
|
-
onMouseEnter: () => !L.min &&
|
|
2559
|
-
onMouseLeave: () => !L.min &&
|
|
2558
|
+
onMouseEnter: () => !L.min && x((g) => ({ ...g, min: !0 })),
|
|
2559
|
+
onMouseLeave: () => !L.min && x((g) => ({ ...g, min: !1 })),
|
|
2560
2560
|
onMouseDown: F("min"),
|
|
2561
|
-
children: (
|
|
2562
|
-
|
|
2561
|
+
children: (f.min || L.min) && /* @__PURE__ */ i("div", { ref: G, className: be.tooltip, children: [
|
|
2562
|
+
p.minValue,
|
|
2563
2563
|
"%"
|
|
2564
2564
|
] })
|
|
2565
2565
|
}
|
|
@@ -2569,14 +2569,14 @@ const Wl = "mc__Slider-module__sliderContainer", Bl = "mc__Slider-module__slider
|
|
|
2569
2569
|
{
|
|
2570
2570
|
className: `${be.thumb} ${be.thumbRight}`,
|
|
2571
2571
|
style: {
|
|
2572
|
-
left: `${(
|
|
2573
|
-
...
|
|
2572
|
+
left: `${(p.maxValue - n) / (a - n) * 100}%`,
|
|
2573
|
+
...I ?? {}
|
|
2574
2574
|
},
|
|
2575
|
-
onMouseEnter: () => !L.max &&
|
|
2576
|
-
onMouseLeave: () => !L.max &&
|
|
2575
|
+
onMouseEnter: () => !L.max && x((g) => ({ ...g, max: !0 })),
|
|
2576
|
+
onMouseLeave: () => !L.max && x((g) => ({ ...g, max: !1 })),
|
|
2577
2577
|
onMouseDown: F("max"),
|
|
2578
|
-
children: (
|
|
2579
|
-
|
|
2578
|
+
children: (f.max || L.max) && /* @__PURE__ */ i("div", { ref: U, className: be.tooltip, children: [
|
|
2579
|
+
p.maxValue,
|
|
2580
2580
|
"%"
|
|
2581
2581
|
] })
|
|
2582
2582
|
}
|
|
@@ -2586,14 +2586,14 @@ const Wl = "mc__Slider-module__sliderContainer", Bl = "mc__Slider-module__slider
|
|
|
2586
2586
|
{
|
|
2587
2587
|
className: `${be.thumb} ${be.thumbSingle}`,
|
|
2588
2588
|
style: {
|
|
2589
|
-
left: `${(
|
|
2590
|
-
...
|
|
2589
|
+
left: `${(p.singleValue - n) / (a - n) * 100}%`,
|
|
2590
|
+
...I ?? {}
|
|
2591
2591
|
},
|
|
2592
|
-
onMouseEnter: () => !L.single &&
|
|
2593
|
-
onMouseLeave: () => !L.single &&
|
|
2592
|
+
onMouseEnter: () => !L.single && x((g) => ({ ...g, single: !0 })),
|
|
2593
|
+
onMouseLeave: () => !L.single && x((g) => ({ ...g, single: !1 })),
|
|
2594
2594
|
onMouseDown: F("single"),
|
|
2595
|
-
children: (
|
|
2596
|
-
|
|
2595
|
+
children: (f.single || L.single) && /* @__PURE__ */ i("div", { ref: V, className: be.tooltip, children: [
|
|
2596
|
+
p.singleValue,
|
|
2597
2597
|
" ",
|
|
2598
2598
|
k
|
|
2599
2599
|
] })
|
|
@@ -2640,7 +2640,7 @@ const Yl = "mc__FilterWithTags-module__filterWithTagsContainer", jl = "mc__Filte
|
|
|
2640
2640
|
onApply: r,
|
|
2641
2641
|
onClearAll: n,
|
|
2642
2642
|
mainButtonProps: a,
|
|
2643
|
-
popupProps:
|
|
2643
|
+
popupProps: d,
|
|
2644
2644
|
cancelButtonProps: s,
|
|
2645
2645
|
applyButtonProps: l
|
|
2646
2646
|
}) => {
|
|
@@ -2659,9 +2659,9 @@ const Yl = "mc__FilterWithTags-module__filterWithTagsContainer", jl = "mc__Filte
|
|
|
2659
2659
|
...a
|
|
2660
2660
|
}
|
|
2661
2661
|
) }) }),
|
|
2662
|
-
/* @__PURE__ */ i(Xe, { ...
|
|
2662
|
+
/* @__PURE__ */ i(Xe, { ...d, popupContainerStyle: { width: "725px" }, onClose: () => A(!1), visible: y, children: [
|
|
2663
2663
|
/* @__PURE__ */ e("h2", { className: Pe.filterWithTagsPopupTitle, children: "Filter" }),
|
|
2664
|
-
/* @__PURE__ */ e("div", { className: `${Pe.filterWithTagsPopupContent} ${
|
|
2664
|
+
/* @__PURE__ */ e("div", { className: `${Pe.filterWithTagsPopupContent} ${d?.mode === "drawer" ? Pe.filterWithTagsPopupContentDrawer : ""}`, children: /* @__PURE__ */ e(ni, { filterOptions: t }) }),
|
|
2665
2665
|
/* @__PURE__ */ i("div", { className: Pe.filterWithTagsPopupFooter, children: [
|
|
2666
2666
|
/* @__PURE__ */ e(Ne, { buttonStyle: { width: "130px" }, ...s, label: "Clear", buttonType: "tertiaryV2", onClick: n }),
|
|
2667
2667
|
/* @__PURE__ */ e(Ne, { buttonStyle: { width: "130px" }, ...l, label: "Show", onClick: r })
|
|
@@ -2732,28 +2732,28 @@ function je() {
|
|
|
2732
2732
|
}
|
|
2733
2733
|
const ji = (t, o = {}) => {
|
|
2734
2734
|
const [r, n] = E(() => {
|
|
2735
|
-
const
|
|
2736
|
-
return t.forEach((
|
|
2737
|
-
|
|
2738
|
-
}),
|
|
2739
|
-
}), [a,
|
|
2740
|
-
(
|
|
2741
|
-
console.log("Resize start for column:",
|
|
2735
|
+
const p = {};
|
|
2736
|
+
return t.forEach((c) => {
|
|
2737
|
+
c.key && (p[c.key] = o[c.key] || c.width || 200);
|
|
2738
|
+
}), p;
|
|
2739
|
+
}), [a, d] = E(!1), [s, l] = E(null), [y, A] = E(0), [C, I] = E(0), k = Ke(
|
|
2740
|
+
(p, c) => {
|
|
2741
|
+
console.log("Resize start for column:", c), p.preventDefault(), p.stopPropagation(), d(!0), l(c), A(p.clientX), I(r[c]);
|
|
2742
2742
|
},
|
|
2743
2743
|
[r]
|
|
2744
2744
|
), $ = Ke(
|
|
2745
|
-
(
|
|
2745
|
+
(p) => {
|
|
2746
2746
|
if (!a || !s) return;
|
|
2747
|
-
|
|
2748
|
-
const
|
|
2749
|
-
console.log("Resizing column:", s, "new width:",
|
|
2750
|
-
...
|
|
2751
|
-
[s]:
|
|
2747
|
+
p.preventDefault();
|
|
2748
|
+
const c = p.clientX - y, f = Math.max(50, C + c);
|
|
2749
|
+
console.log("Resizing column:", s, "new width:", f), n((x) => ({
|
|
2750
|
+
...x,
|
|
2751
|
+
[s]: f
|
|
2752
2752
|
}));
|
|
2753
2753
|
},
|
|
2754
2754
|
[a, s, y, C]
|
|
2755
2755
|
), M = Ke(() => {
|
|
2756
|
-
console.log("Resize end"),
|
|
2756
|
+
console.log("Resize end"), d(!1), l(null);
|
|
2757
2757
|
}, []);
|
|
2758
2758
|
return X(() => {
|
|
2759
2759
|
if (a)
|
|
@@ -2768,15 +2768,15 @@ const ji = (t, o = {}) => {
|
|
|
2768
2768
|
};
|
|
2769
2769
|
};
|
|
2770
2770
|
function Ki({ currentValue: t, options: o, onChange: r }) {
|
|
2771
|
-
const [n, a] = E(!1), [
|
|
2771
|
+
const [n, a] = E(!1), [d, s] = E(!1), l = ne(null), y = ne(null);
|
|
2772
2772
|
X(() => {
|
|
2773
2773
|
if (n && l.current && y.current) {
|
|
2774
|
-
const C = l.current.getBoundingClientRect(),
|
|
2775
|
-
s($ <
|
|
2774
|
+
const C = l.current.getBoundingClientRect(), I = y.current.offsetHeight, $ = window.innerHeight - C.bottom, M = C.top;
|
|
2775
|
+
s($ < I && M >= I);
|
|
2776
2776
|
}
|
|
2777
2777
|
}, [n]), X(() => {
|
|
2778
|
-
const C = (
|
|
2779
|
-
l.current && !l.current.contains(
|
|
2778
|
+
const C = (I) => {
|
|
2779
|
+
l.current && !l.current.contains(I.target) && a(!1);
|
|
2780
2780
|
};
|
|
2781
2781
|
return document.addEventListener("mousedown", C), () => {
|
|
2782
2782
|
document.removeEventListener("mousedown", C);
|
|
@@ -2810,7 +2810,7 @@ function Ki({ currentValue: t, options: o, onChange: r }) {
|
|
|
2810
2810
|
onClick: () => a(!n)
|
|
2811
2811
|
}
|
|
2812
2812
|
),
|
|
2813
|
-
n && /* @__PURE__ */ e("ul", { ref: y, className: `${B.rowsPerPageList} ${
|
|
2813
|
+
n && /* @__PURE__ */ e("ul", { ref: y, className: `${B.rowsPerPageList} ${d ? B.openUpward : B.openDownward}`, role: "listbox", children: o.map((C) => /* @__PURE__ */ e(
|
|
2814
2814
|
"li",
|
|
2815
2815
|
{
|
|
2816
2816
|
className: `${B.rowsPerPageOption} ${C === t ? B.selected : ""}`,
|
|
@@ -2829,21 +2829,21 @@ const ht = ({
|
|
|
2829
2829
|
onRowClick: r,
|
|
2830
2830
|
onHeaderClick: n,
|
|
2831
2831
|
sort: a = [],
|
|
2832
|
-
selectedRows:
|
|
2832
|
+
selectedRows: d = [],
|
|
2833
2833
|
onSelectionChange: s,
|
|
2834
2834
|
withSelectAll: l = !1,
|
|
2835
2835
|
actionButtonText: y,
|
|
2836
2836
|
actionButtonIcon: A,
|
|
2837
2837
|
onActionButtonClick: C,
|
|
2838
|
-
actionButtons:
|
|
2838
|
+
actionButtons: I,
|
|
2839
2839
|
withColumnConfiguration: k = !1,
|
|
2840
2840
|
headerSlot: $,
|
|
2841
2841
|
onColumnOrderChange: M,
|
|
2842
|
-
onColumnVisibilityChange:
|
|
2843
|
-
withActions:
|
|
2842
|
+
onColumnVisibilityChange: p,
|
|
2843
|
+
withActions: c = !1,
|
|
2844
2844
|
// Pagination props
|
|
2845
|
-
currentPage:
|
|
2846
|
-
totalPages:
|
|
2845
|
+
currentPage: f = 0,
|
|
2846
|
+
totalPages: x = 1,
|
|
2847
2847
|
onPageChange: L,
|
|
2848
2848
|
showPagination: Y = !1,
|
|
2849
2849
|
// Rows per page props
|
|
@@ -2858,7 +2858,7 @@ const ht = ({
|
|
|
2858
2858
|
onRowDelete: P,
|
|
2859
2859
|
rowActions: K = []
|
|
2860
2860
|
}) => {
|
|
2861
|
-
const { columnWidths: W, isResizing: g, resizeColumn:
|
|
2861
|
+
const { columnWidths: W, isResizing: g, resizeColumn: h, handleResizeStart: m } = ji(t), w = ne(null), [T, J] = E(null), [q, oe] = E(null), se = ne({}), he = ne(null), ue = ne(null), [de, ve] = E(!1), [ie, pe] = E(null), [Q, v] = E(null), [_, D] = E(t);
|
|
2862
2862
|
X(() => {
|
|
2863
2863
|
const b = t.map((S) => ({
|
|
2864
2864
|
...S,
|
|
@@ -2877,20 +2877,20 @@ const ht = ({
|
|
|
2877
2877
|
pe(null), v(null);
|
|
2878
2878
|
return;
|
|
2879
2879
|
}
|
|
2880
|
-
const O = [...
|
|
2880
|
+
const O = [..._], Ie = O[ie];
|
|
2881
2881
|
O.splice(ie, 1);
|
|
2882
2882
|
const Ye = ie < S ? S - 1 : S;
|
|
2883
2883
|
O.splice(Ye, 0, Ie), D(O), pe(null), v(null), M?.(O);
|
|
2884
2884
|
}, fe = () => {
|
|
2885
2885
|
pe(null), v(null);
|
|
2886
2886
|
}, ge = (b) => {
|
|
2887
|
-
const S =
|
|
2888
|
-
D(S),
|
|
2889
|
-
}, we =
|
|
2887
|
+
const S = _.map((O) => O.key === b.key ? { ...O, visible: !O.visible } : O);
|
|
2888
|
+
D(S), p?.(S);
|
|
2889
|
+
}, we = _.filter((b) => b.visible), $e = (b) => {
|
|
2890
2890
|
s?.(b ? o.map((S, O) => O) : []);
|
|
2891
2891
|
}, xe = (b, S) => {
|
|
2892
|
-
s?.(S ? [...
|
|
2893
|
-
}, Me = o.length > 0 &&
|
|
2892
|
+
s?.(S ? [...d, b] : d.filter((O) => O !== b));
|
|
2893
|
+
}, Me = o.length > 0 && d.length === o.length, u = d.length > 0 && d.length < o.length, Z = (b, S) => {
|
|
2894
2894
|
F?.(b, S);
|
|
2895
2895
|
}, le = (b, S) => {
|
|
2896
2896
|
P?.(b, S);
|
|
@@ -2940,7 +2940,7 @@ const ht = ({
|
|
|
2940
2940
|
/* @__PURE__ */ e("div", { children: $ }),
|
|
2941
2941
|
k && /* @__PURE__ */ i("div", { className: B.columnConfiguration, children: [
|
|
2942
2942
|
/* @__PURE__ */ e("div", { className: B.columnConfigurationIcon, ref: he, onClick: () => ve((b) => !b), children: /* @__PURE__ */ e(Zt, {}) }),
|
|
2943
|
-
de && /* @__PURE__ */ e("ul", { className: B.columnConfigurationDropdown, ref: ue, children:
|
|
2943
|
+
de && /* @__PURE__ */ e("ul", { className: B.columnConfigurationDropdown, ref: ue, children: _.map((b, S) => /* @__PURE__ */ i(
|
|
2944
2944
|
"li",
|
|
2945
2945
|
{
|
|
2946
2946
|
className: `${B.columnConfigurationItem} ${ie === S ? B.dragging : ""} ${Q === S ? B.dragOver : ""}`,
|
|
@@ -2960,22 +2960,22 @@ const ht = ({
|
|
|
2960
2960
|
)) })
|
|
2961
2961
|
] })
|
|
2962
2962
|
] }),
|
|
2963
|
-
l &&
|
|
2963
|
+
l && d.length > 0 && /* @__PURE__ */ e(
|
|
2964
2964
|
"div",
|
|
2965
2965
|
{
|
|
2966
2966
|
className: je(B.tableHeader, {
|
|
2967
|
-
[B.visible]:
|
|
2967
|
+
[B.visible]: d.length > 0
|
|
2968
2968
|
}),
|
|
2969
2969
|
children: /* @__PURE__ */ i("div", { className: B.tableHeaderLeftContent, children: [
|
|
2970
2970
|
/* @__PURE__ */ i("p", { children: [
|
|
2971
|
-
|
|
2971
|
+
d.length,
|
|
2972
2972
|
" rows selected"
|
|
2973
2973
|
] }),
|
|
2974
2974
|
/* @__PURE__ */ e("div", { className: B.tableHeaderSeparator }),
|
|
2975
|
-
Array.isArray(
|
|
2975
|
+
Array.isArray(I) && I.length > 0 ? I.map((b, S) => /* @__PURE__ */ i("div", { className: B.actionButton, onClick: () => b.onClick?.(d), children: [
|
|
2976
2976
|
b.text,
|
|
2977
2977
|
b.icon
|
|
2978
|
-
] }, b.text || S)) : /* @__PURE__ */ i("div", { className: B.actionButton, onClick: () => C?.(
|
|
2978
|
+
] }, b.text || S)) : /* @__PURE__ */ i("div", { className: B.actionButton, onClick: () => C?.(d), children: [
|
|
2979
2979
|
y || "Delete",
|
|
2980
2980
|
A && A
|
|
2981
2981
|
] })
|
|
@@ -2990,7 +2990,7 @@ const ht = ({
|
|
|
2990
2990
|
type: "checkbox",
|
|
2991
2991
|
checked: Me,
|
|
2992
2992
|
ref: (b) => {
|
|
2993
|
-
b && (b.indeterminate =
|
|
2993
|
+
b && (b.indeterminate = u);
|
|
2994
2994
|
},
|
|
2995
2995
|
onChange: (b) => $e(b.target.checked),
|
|
2996
2996
|
className: B.checkbox
|
|
@@ -3048,7 +3048,7 @@ const ht = ({
|
|
|
3048
3048
|
"div",
|
|
3049
3049
|
{
|
|
3050
3050
|
className: je(B.resizeHandle, {
|
|
3051
|
-
[B.resizing]: g &&
|
|
3051
|
+
[B.resizing]: g && h === b.key
|
|
3052
3052
|
}),
|
|
3053
3053
|
onMouseDown: (S) => m(S, b.key)
|
|
3054
3054
|
}
|
|
@@ -3057,7 +3057,7 @@ const ht = ({
|
|
|
3057
3057
|
},
|
|
3058
3058
|
b.key
|
|
3059
3059
|
)),
|
|
3060
|
-
|
|
3060
|
+
c && /* @__PURE__ */ e("th", { className: B.actionsHeader, children: /* @__PURE__ */ e("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ e(
|
|
3061
3061
|
"path",
|
|
3062
3062
|
{
|
|
3063
3063
|
d: "M13.8194 22H10.1794C9.70955 22 9.30299 21.673 9.20243 21.214L8.79543 19.33C8.25248 19.0921 7.73765 18.7946 7.26043 18.443L5.42343 19.028C4.97543 19.1709 4.48842 18.9823 4.25343 18.575L2.42943 15.424C2.19702 15.0165 2.27709 14.5025 2.62243 14.185L4.04743 12.885C3.98263 12.2961 3.98263 11.7019 4.04743 11.113L2.62243 9.816C2.27658 9.49837 2.19648 8.98372 2.42943 8.576L4.24943 5.423C4.48442 5.0157 4.97143 4.82714 5.41943 4.97L7.25643 5.555C7.50049 5.37416 7.75456 5.20722 8.01743 5.055C8.26977 4.91269 8.52947 4.78385 8.79543 4.669L9.20343 2.787C9.3035 2.32797 9.70962 2.00049 10.1794 2H13.8194C14.2892 2.00049 14.6954 2.32797 14.7954 2.787L15.2074 4.67C15.4882 4.79352 15.7617 4.93308 16.0264 5.088C16.2734 5.23081 16.5121 5.38739 16.7414 5.557L18.5794 4.972C19.0271 4.82967 19.5135 5.01816 19.7484 5.425L21.5684 8.578C21.8008 8.98548 21.7208 9.49951 21.3754 9.817L19.9504 11.117C20.0152 11.7059 20.0152 12.3001 19.9504 12.889L21.3754 14.189C21.7208 14.5065 21.8008 15.0205 21.5684 15.428L19.7484 18.581C19.5135 18.9878 19.0271 19.1763 18.5794 19.034L16.7414 18.449C16.5089 18.6203 16.2672 18.7789 16.0174 18.924C15.7553 19.0759 15.4848 19.2131 15.2074 19.335L14.7954 21.214C14.695 21.6726 14.2889 21.9996 13.8194 22ZM7.61943 16.229L8.43943 16.829C8.62428 16.9652 8.81694 17.0904 9.01643 17.204C9.20413 17.3127 9.3974 17.4115 9.59543 17.5L10.5284 17.909L10.9854 20H13.0154L13.4724 17.908L14.4054 17.499C14.8127 17.3194 15.1993 17.0961 15.5584 16.833L16.3794 16.233L18.4204 16.883L19.4354 15.125L17.8524 13.682L17.9644 12.67C18.0136 12.2274 18.0136 11.7806 17.9644 11.338L17.8524 10.326L19.4364 8.88L18.4204 7.121L16.3794 7.771L15.5584 7.171C15.1992 6.90671 14.8127 6.68175 14.4054 6.5L13.4724 6.091L13.0154 4H10.9854L10.5264 6.092L9.59543 6.5C9.39724 6.58704 9.20395 6.68486 9.01643 6.793C8.81817 6.90633 8.62652 7.03086 8.44243 7.166L7.62143 7.766L5.58143 7.116L4.56443 8.88L6.14743 10.321L6.03543 11.334C5.98623 11.7766 5.98623 12.2234 6.03543 12.666L6.14743 13.678L4.56443 15.121L5.57943 16.879L7.61943 16.229ZM11.9954 16C9.78629 16 7.99543 14.2091 7.99543 12C7.99543 9.79086 9.78629 8 11.9954 8C14.2046 8 15.9954 9.79086 15.9954 12C15.9927 14.208 14.2034 15.9972 11.9954 16ZM11.9954 10C10.9028 10.0011 10.0133 10.8788 9.99766 11.9713C9.98201 13.0638 10.846 13.9667 11.9381 13.9991C13.0302 14.0315 13.9463 13.1815 13.9954 12.09V12.49V12C13.9954 10.8954 13.1 10 11.9954 10Z",
|
|
@@ -3077,14 +3077,14 @@ const ht = ({
|
|
|
3077
3077
|
"input",
|
|
3078
3078
|
{
|
|
3079
3079
|
type: "checkbox",
|
|
3080
|
-
checked:
|
|
3080
|
+
checked: d.includes(S),
|
|
3081
3081
|
onChange: (O) => xe(S, O.target.checked),
|
|
3082
3082
|
onClick: (O) => O.stopPropagation(),
|
|
3083
3083
|
className: B.checkbox
|
|
3084
3084
|
}
|
|
3085
3085
|
) }),
|
|
3086
3086
|
we.map((O) => /* @__PURE__ */ e("td", { style: { width: W[O.key] }, children: O.render ? O.render(b) : b[O.key] }, O.key)),
|
|
3087
|
-
|
|
3087
|
+
c && /* @__PURE__ */ e("td", { className: B.actionsCell, children: /* @__PURE__ */ e(
|
|
3088
3088
|
"div",
|
|
3089
3089
|
{
|
|
3090
3090
|
className: B.actionsContainer,
|
|
@@ -3220,7 +3220,7 @@ const ht = ({
|
|
|
3220
3220
|
),
|
|
3221
3221
|
Y && /* @__PURE__ */ i("div", { className: B.paginationFooter, children: [
|
|
3222
3222
|
/* @__PURE__ */ i("div", { className: B.pagination, children: [
|
|
3223
|
-
/* @__PURE__ */ e("button", { className: B.paginationButton, onClick: () => L?.(Math.max(
|
|
3223
|
+
/* @__PURE__ */ e("button", { className: B.paginationButton, onClick: () => L?.(Math.max(f - 1, 0)), disabled: f === 0, children: /* @__PURE__ */ e("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", style: { transform: "rotate(180deg)" }, children: /* @__PURE__ */ e(
|
|
3224
3224
|
"path",
|
|
3225
3225
|
{
|
|
3226
3226
|
d: "M12.6008 12.0047L8.70078 8.10469C8.51745 7.92135 8.42578 7.68802 8.42578 7.40469C8.42578 7.12135 8.51745 6.88802 8.70078 6.70469C8.88411 6.52135 9.11745 6.42969 9.40078 6.42969C9.68411 6.42969 9.91745 6.52135 10.1008 6.70469L14.7008 11.3047C14.8008 11.4047 14.8716 11.513 14.9133 11.6297C14.9549 11.7464 14.9758 11.8714 14.9758 12.0047C14.9758 12.138 14.9549 12.263 14.9133 12.3797C14.8716 12.4964 14.8008 12.6047 14.7008 12.7047L10.1008 17.3047C9.91745 17.488 9.68411 17.5797 9.40078 17.5797C9.11745 17.5797 8.88411 17.488 8.70078 17.3047C8.51745 17.1214 8.42578 16.888 8.42578 16.6047C8.42578 16.3214 8.51745 16.088 8.70078 15.9047L12.6008 12.0047Z",
|
|
@@ -3229,16 +3229,16 @@ const ht = ({
|
|
|
3229
3229
|
) }) }),
|
|
3230
3230
|
/* @__PURE__ */ i("span", { className: B.paginationInfo, children: [
|
|
3231
3231
|
"Page ",
|
|
3232
|
-
|
|
3232
|
+
f + 1,
|
|
3233
3233
|
" of ",
|
|
3234
|
-
|
|
3234
|
+
x
|
|
3235
3235
|
] }),
|
|
3236
3236
|
/* @__PURE__ */ e(
|
|
3237
3237
|
"button",
|
|
3238
3238
|
{
|
|
3239
3239
|
className: B.paginationButton,
|
|
3240
|
-
onClick: () => L?.(
|
|
3241
|
-
disabled:
|
|
3240
|
+
onClick: () => L?.(f + 1 < x ? f + 1 : f),
|
|
3241
|
+
disabled: f + 1 >= x,
|
|
3242
3242
|
children: /* @__PURE__ */ e("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ e(
|
|
3243
3243
|
"path",
|
|
3244
3244
|
{
|