finform-react-builder 1.8.33 → 1.8.34
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/index.es.js +313 -309
- package/dist/index.js +11 -11
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -16,7 +16,7 @@ var Un = (e, t, r, n) => ({
|
|
|
16
16
|
import { jsx as m, jsxs as se, Fragment as Fi } from "react/jsx-runtime";
|
|
17
17
|
import * as re from "react";
|
|
18
18
|
import oe, { isValidElement as ni, cloneElement as ii, Children as au, useState as Pt, useMemo as Ke, useRef as gt, useEffect as jt, useCallback as Ne, useReducer as ou, forwardRef as su, useImperativeHandle as lu, Fragment as cu, createElement as uu } from "react";
|
|
19
|
-
import { InputAdornment as pu, Box as
|
|
19
|
+
import { InputAdornment as pu, Box as ee, Typography as be, TextField as _i, FormControl as Ja, InputLabel as du, Select as fu, MenuItem as _o, CircularProgress as gn, OutlinedInput as hu, FormHelperText as eo, Autocomplete as mu, Checkbox as An, FormControlLabel as Jr, FormLabel as Sl, Switch as Cl, RadioGroup as gu, Radio as yu, Divider as to, Chip as El, StepConnector as kl, stepConnectorClasses as hr, Stepper as Tl, Step as Ol, StepLabel as Al, Button as Xe, Card as xt, List as Ro, ListItem as $o, ListItemText as Do, Tabs as vu, Tab as xu, TableContainer as bu, Table as wu, TableHead as Su, TableRow as Po, TableCell as Br, TableBody as Cu, IconButton as ro, Dialog as Eu, DialogTitle as ku, DialogContent as Tu, DialogActions as Ou, LinearProgress as Au, ButtonGroup as Fu, createTheme as _u, ThemeProvider as Ru, Paper as $u, Tooltip as Du, Alert as Pu } from "@mui/material";
|
|
20
20
|
import Iu from "@emotion/styled";
|
|
21
21
|
import { keyframes as zn, css as Fl } from "@emotion/react";
|
|
22
22
|
var Vn = (e) => e.type === "checkbox", Er = (e) => e instanceof Date, ot = (e) => e == null;
|
|
@@ -436,13 +436,13 @@ var qr = (e) => Qe(e) && !hi(e) ? e : {
|
|
|
436
436
|
return {};
|
|
437
437
|
const D = s ? s[0] : o, b = (V) => {
|
|
438
438
|
i && D.reportValidity && (D.setCustomValidity(mt(V) ? "" : V || ""), D.reportValidity());
|
|
439
|
-
}, x = {}, _ = oo(o), M = Vn(o), A = _ || M, $ = (S || ao(o)) && Pe(o.value) && Pe(w) || di(o) && o.value === "" || w === "" || Array.isArray(w) && !w.length, c = jl.bind(null, f, n, x), P = (V, F, N,
|
|
439
|
+
}, x = {}, _ = oo(o), M = Vn(o), A = _ || M, $ = (S || ao(o)) && Pe(o.value) && Pe(w) || di(o) && o.value === "" || w === "" || Array.isArray(w) && !w.length, c = jl.bind(null, f, n, x), P = (V, F, N, H = Kt.maxLength, ae = Kt.minLength) => {
|
|
440
440
|
const ge = V ? F : N;
|
|
441
441
|
x[f] = {
|
|
442
|
-
type: V ?
|
|
442
|
+
type: V ? H : ae,
|
|
443
443
|
message: ge,
|
|
444
444
|
ref: o,
|
|
445
|
-
...c(V ?
|
|
445
|
+
...c(V ? H : ae, ge)
|
|
446
446
|
};
|
|
447
447
|
};
|
|
448
448
|
if (a ? !Array.isArray(w) || !w.length : l && (!A && ($ || ot(w)) || mt(w) && !w || M && !Ll(s).isValid || _ && !ql(s).isValid)) {
|
|
@@ -457,20 +457,20 @@ var qr = (e) => Qe(e) && !hi(e) ? e : {
|
|
|
457
457
|
}
|
|
458
458
|
if (!$ && (!ot(u) || !ot(h))) {
|
|
459
459
|
let V, F;
|
|
460
|
-
const N = qr(h),
|
|
460
|
+
const N = qr(h), H = qr(u);
|
|
461
461
|
if (!ot(w) && !isNaN(w)) {
|
|
462
462
|
const ae = o.valueAsNumber || w && +w;
|
|
463
|
-
ot(N.value) || (V = ae > N.value), ot(
|
|
463
|
+
ot(N.value) || (V = ae > N.value), ot(H.value) || (F = ae < H.value);
|
|
464
464
|
} else {
|
|
465
465
|
const ae = o.valueAsDate || new Date(w), ge = (z) => /* @__PURE__ */ new Date((/* @__PURE__ */ new Date()).toDateString() + " " + z), pe = o.type == "time", U = o.type == "week";
|
|
466
|
-
Ht(N.value) && w && (V = pe ? ge(w) > ge(N.value) : U ? w > N.value : ae > new Date(N.value)), Ht(
|
|
466
|
+
Ht(N.value) && w && (V = pe ? ge(w) > ge(N.value) : U ? w > N.value : ae > new Date(N.value)), Ht(H.value) && w && (F = pe ? ge(w) < ge(H.value) : U ? w < H.value : ae < new Date(H.value));
|
|
467
467
|
}
|
|
468
|
-
if ((V || F) && (P(!!V, N.message,
|
|
468
|
+
if ((V || F) && (P(!!V, N.message, H.message, Kt.max, Kt.min), !n))
|
|
469
469
|
return b(x[f].message), x;
|
|
470
470
|
}
|
|
471
471
|
if ((p || d) && !$ && (Ht(w) || a && Array.isArray(w))) {
|
|
472
|
-
const V = qr(p), F = qr(d), N = !ot(V.value) && w.length > +V.value,
|
|
473
|
-
if ((N ||
|
|
472
|
+
const V = qr(p), F = qr(d), N = !ot(V.value) && w.length > +V.value, H = !ot(F.value) && w.length < +F.value;
|
|
473
|
+
if ((N || H) && (P(N, V.message, F.message), !n))
|
|
474
474
|
return b(x[f].message), x;
|
|
475
475
|
}
|
|
476
476
|
if (g && !$ && Ht(w)) {
|
|
@@ -703,12 +703,12 @@ function Zu(e = {}) {
|
|
|
703
703
|
})));
|
|
704
704
|
}
|
|
705
705
|
(T.shouldDirty || T.shouldTouch) && x(y, R, T.shouldTouch, T.shouldDirty, !0), T.shouldValidate && U(y);
|
|
706
|
-
},
|
|
706
|
+
}, H = (y, C, T) => {
|
|
707
707
|
for (const q in C) {
|
|
708
708
|
if (!C.hasOwnProperty(q))
|
|
709
709
|
return;
|
|
710
710
|
const R = C[q], I = y + "." + q, Q = Y(n, I);
|
|
711
|
-
(s.array.has(y) || Qe(R) || Q && !Q._f) && !Er(R) ?
|
|
711
|
+
(s.array.has(y) || Qe(R) || Q && !Q._f) && !Er(R) ? H(I, R, T) : N(I, R, T);
|
|
712
712
|
}
|
|
713
713
|
}, ae = (y, C, T = {}) => {
|
|
714
714
|
const q = Y(n, y), R = s.array.has(y), I = ze(C);
|
|
@@ -719,7 +719,7 @@ function Zu(e = {}) {
|
|
|
719
719
|
name: y,
|
|
720
720
|
dirtyFields: wn(i, a),
|
|
721
721
|
isDirty: P(y, I)
|
|
722
|
-
})) : q && !q._f && !ot(I) ?
|
|
722
|
+
})) : q && !q._f && !ot(I) ? H(y, I, T) : N(y, I, T), xa(y, s) && h.state.next({ ...r }), h.state.next({
|
|
723
723
|
name: o.mount ? y : void 0,
|
|
724
724
|
values: ze(a)
|
|
725
725
|
});
|
|
@@ -799,7 +799,7 @@ function Zu(e = {}) {
|
|
|
799
799
|
next: (T) => y(V(void 0, C), T)
|
|
800
800
|
}) : V(y, C, !0), ve = (y) => h.state.subscribe({
|
|
801
801
|
next: (C) => {
|
|
802
|
-
Ku(y.name, C.name, y.exact) && Hu(C, y.formState || d,
|
|
802
|
+
Ku(y.name, C.name, y.exact) && Hu(C, y.formState || d, ue, y.reRenderRoot) && y.callback({
|
|
803
803
|
values: { ...a },
|
|
804
804
|
...r,
|
|
805
805
|
...C
|
|
@@ -872,14 +872,14 @@ function Zu(e = {}) {
|
|
|
872
872
|
T = Y(n, y, {}), T._f && (T._f.mount = !1), (t.shouldUnregister || C.shouldUnregister) && !($l(s.array, y) && o.action) && s.unMount.add(y);
|
|
873
873
|
}
|
|
874
874
|
};
|
|
875
|
-
},
|
|
875
|
+
}, ce = () => t.shouldFocusError && en(n, pe, s.mount), Ee = (y) => {
|
|
876
876
|
mt(y) && (h.state.next({ disabled: y }), en(n, (C, T) => {
|
|
877
877
|
const q = Y(n, T);
|
|
878
878
|
q && (C.disabled = q._f.disabled || y, Array.isArray(q._f.refs) && q._f.refs.forEach((R) => {
|
|
879
879
|
R.disabled = q._f.disabled || y;
|
|
880
880
|
}));
|
|
881
881
|
}, 0, !1));
|
|
882
|
-
},
|
|
882
|
+
}, K = (y, C) => async (T) => {
|
|
883
883
|
let q;
|
|
884
884
|
T && (T.preventDefault && T.preventDefault(), T.persist && T.persist());
|
|
885
885
|
let R = ze(a);
|
|
@@ -903,7 +903,7 @@ function Zu(e = {}) {
|
|
|
903
903
|
q = I;
|
|
904
904
|
}
|
|
905
905
|
} else
|
|
906
|
-
C && await C({ ...r.errors }, T),
|
|
906
|
+
C && await C({ ...r.errors }, T), ce(), setTimeout(ce);
|
|
907
907
|
if (h.state.next({
|
|
908
908
|
isSubmitted: !0,
|
|
909
909
|
isSubmitting: !1,
|
|
@@ -972,7 +972,7 @@ function Zu(e = {}) {
|
|
|
972
972
|
const R = q.refs ? q.refs[0] : q.ref;
|
|
973
973
|
R.focus && (R.focus(), C.shouldSelect && It(R.select) && R.select());
|
|
974
974
|
}
|
|
975
|
-
},
|
|
975
|
+
}, ue = (y) => {
|
|
976
976
|
r = {
|
|
977
977
|
...r,
|
|
978
978
|
...y
|
|
@@ -982,11 +982,11 @@ function Zu(e = {}) {
|
|
|
982
982
|
register: le,
|
|
983
983
|
unregister: X,
|
|
984
984
|
getFieldState: W,
|
|
985
|
-
handleSubmit:
|
|
985
|
+
handleSubmit: K,
|
|
986
986
|
setError: he,
|
|
987
987
|
_subscribe: ve,
|
|
988
988
|
_runSchema: M,
|
|
989
|
-
_focusError:
|
|
989
|
+
_focusError: ce,
|
|
990
990
|
_getWatch: V,
|
|
991
991
|
_getDirty: P,
|
|
992
992
|
_setValid: f,
|
|
@@ -1041,7 +1041,7 @@ function Zu(e = {}) {
|
|
|
1041
1041
|
subscribe: L,
|
|
1042
1042
|
trigger: U,
|
|
1043
1043
|
register: le,
|
|
1044
|
-
handleSubmit:
|
|
1044
|
+
handleSubmit: K,
|
|
1045
1045
|
watch: de,
|
|
1046
1046
|
setValue: ae,
|
|
1047
1047
|
getValues: z,
|
|
@@ -3151,16 +3151,16 @@ var rs;
|
|
|
3151
3151
|
function Np() {
|
|
3152
3152
|
return rs || (rs = 1, process.env.NODE_ENV !== "production" && function() {
|
|
3153
3153
|
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, r = e ? Symbol.for("react.portal") : 60106, n = e ? Symbol.for("react.fragment") : 60107, i = e ? Symbol.for("react.strict_mode") : 60108, a = e ? Symbol.for("react.profiler") : 60114, o = e ? Symbol.for("react.provider") : 60109, s = e ? Symbol.for("react.context") : 60110, l = e ? Symbol.for("react.async_mode") : 60111, p = e ? Symbol.for("react.concurrent_mode") : 60111, d = e ? Symbol.for("react.forward_ref") : 60112, u = e ? Symbol.for("react.suspense") : 60113, h = e ? Symbol.for("react.suspense_list") : 60120, g = e ? Symbol.for("react.memo") : 60115, k = e ? Symbol.for("react.lazy") : 60116, f = e ? Symbol.for("react.block") : 60121, S = e ? Symbol.for("react.fundamental") : 60117, v = e ? Symbol.for("react.responder") : 60118, w = e ? Symbol.for("react.scope") : 60119;
|
|
3154
|
-
function D(
|
|
3155
|
-
return typeof
|
|
3156
|
-
|
|
3154
|
+
function D(K) {
|
|
3155
|
+
return typeof K == "string" || typeof K == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
3156
|
+
K === n || K === p || K === a || K === i || K === u || K === h || typeof K == "object" && K !== null && (K.$$typeof === k || K.$$typeof === g || K.$$typeof === o || K.$$typeof === s || K.$$typeof === d || K.$$typeof === S || K.$$typeof === v || K.$$typeof === w || K.$$typeof === f);
|
|
3157
3157
|
}
|
|
3158
|
-
function b(
|
|
3159
|
-
if (typeof
|
|
3160
|
-
var Me =
|
|
3158
|
+
function b(K) {
|
|
3159
|
+
if (typeof K == "object" && K !== null) {
|
|
3160
|
+
var Me = K.$$typeof;
|
|
3161
3161
|
switch (Me) {
|
|
3162
3162
|
case t:
|
|
3163
|
-
var Ge =
|
|
3163
|
+
var Ge = K.type;
|
|
3164
3164
|
switch (Ge) {
|
|
3165
3165
|
case l:
|
|
3166
3166
|
case p:
|
|
@@ -3187,47 +3187,47 @@ function Np() {
|
|
|
3187
3187
|
}
|
|
3188
3188
|
}
|
|
3189
3189
|
}
|
|
3190
|
-
var x = l, _ = p, M = s, A = o, $ = t, c = d, P = n, V = k, F = g, N = r,
|
|
3191
|
-
function U(
|
|
3192
|
-
return pe || (pe = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), z(
|
|
3190
|
+
var x = l, _ = p, M = s, A = o, $ = t, c = d, P = n, V = k, F = g, N = r, H = a, ae = i, ge = u, pe = !1;
|
|
3191
|
+
function U(K) {
|
|
3192
|
+
return pe || (pe = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), z(K) || b(K) === l;
|
|
3193
3193
|
}
|
|
3194
|
-
function z(
|
|
3195
|
-
return b(
|
|
3194
|
+
function z(K) {
|
|
3195
|
+
return b(K) === p;
|
|
3196
3196
|
}
|
|
3197
|
-
function W(
|
|
3198
|
-
return b(
|
|
3197
|
+
function W(K) {
|
|
3198
|
+
return b(K) === s;
|
|
3199
3199
|
}
|
|
3200
|
-
function fe(
|
|
3201
|
-
return b(
|
|
3200
|
+
function fe(K) {
|
|
3201
|
+
return b(K) === o;
|
|
3202
3202
|
}
|
|
3203
|
-
function he(
|
|
3204
|
-
return typeof
|
|
3203
|
+
function he(K) {
|
|
3204
|
+
return typeof K == "object" && K !== null && K.$$typeof === t;
|
|
3205
3205
|
}
|
|
3206
|
-
function de(
|
|
3207
|
-
return b(
|
|
3206
|
+
function de(K) {
|
|
3207
|
+
return b(K) === d;
|
|
3208
3208
|
}
|
|
3209
|
-
function ve(
|
|
3210
|
-
return b(
|
|
3209
|
+
function ve(K) {
|
|
3210
|
+
return b(K) === n;
|
|
3211
3211
|
}
|
|
3212
|
-
function L(
|
|
3213
|
-
return b(
|
|
3212
|
+
function L(K) {
|
|
3213
|
+
return b(K) === k;
|
|
3214
3214
|
}
|
|
3215
|
-
function X(
|
|
3216
|
-
return b(
|
|
3215
|
+
function X(K) {
|
|
3216
|
+
return b(K) === g;
|
|
3217
3217
|
}
|
|
3218
|
-
function ie(
|
|
3219
|
-
return b(
|
|
3218
|
+
function ie(K) {
|
|
3219
|
+
return b(K) === r;
|
|
3220
3220
|
}
|
|
3221
|
-
function le(
|
|
3222
|
-
return b(
|
|
3221
|
+
function le(K) {
|
|
3222
|
+
return b(K) === a;
|
|
3223
3223
|
}
|
|
3224
|
-
function
|
|
3225
|
-
return b(
|
|
3224
|
+
function ce(K) {
|
|
3225
|
+
return b(K) === i;
|
|
3226
3226
|
}
|
|
3227
|
-
function Ee(
|
|
3228
|
-
return b(
|
|
3227
|
+
function Ee(K) {
|
|
3228
|
+
return b(K) === u;
|
|
3229
3229
|
}
|
|
3230
|
-
Te.AsyncMode = x, Te.ConcurrentMode = _, Te.ContextConsumer = M, Te.ContextProvider = A, Te.Element = $, Te.ForwardRef = c, Te.Fragment = P, Te.Lazy = V, Te.Memo = F, Te.Portal = N, Te.Profiler =
|
|
3230
|
+
Te.AsyncMode = x, Te.ConcurrentMode = _, Te.ContextConsumer = M, Te.ContextProvider = A, Te.Element = $, Te.ForwardRef = c, Te.Fragment = P, Te.Lazy = V, Te.Memo = F, Te.Portal = N, Te.Profiler = H, Te.StrictMode = ae, Te.Suspense = ge, Te.isAsyncMode = U, Te.isConcurrentMode = z, Te.isContextConsumer = W, Te.isContextProvider = fe, Te.isElement = he, Te.isForwardRef = de, Te.isFragment = ve, Te.isLazy = L, Te.isMemo = X, Te.isPortal = ie, Te.isProfiler = le, Te.isStrictMode = ce, Te.isSuspense = Ee, Te.isValidElementType = D, Te.typeOf = b;
|
|
3231
3231
|
}()), Te;
|
|
3232
3232
|
}
|
|
3233
3233
|
var ns;
|
|
@@ -3400,22 +3400,22 @@ function qp() {
|
|
|
3400
3400
|
function S(z) {
|
|
3401
3401
|
if (process.env.NODE_ENV !== "production")
|
|
3402
3402
|
var W = {}, fe = 0;
|
|
3403
|
-
function he(ve, L, X, ie, le,
|
|
3404
|
-
if (ie = ie || h,
|
|
3403
|
+
function he(ve, L, X, ie, le, ce, Ee) {
|
|
3404
|
+
if (ie = ie || h, ce = ce || X, Ee !== r) {
|
|
3405
3405
|
if (l) {
|
|
3406
|
-
var
|
|
3406
|
+
var K = new Error(
|
|
3407
3407
|
"Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"
|
|
3408
3408
|
);
|
|
3409
|
-
throw
|
|
3409
|
+
throw K.name = "Invariant Violation", K;
|
|
3410
3410
|
} else if (process.env.NODE_ENV !== "production" && typeof console < "u") {
|
|
3411
3411
|
var Me = ie + ":" + X;
|
|
3412
3412
|
!W[Me] && // Avoid spamming the console because they are often not actionable except for lib authors
|
|
3413
3413
|
fe < 3 && (a(
|
|
3414
|
-
"You are manually calling a React.PropTypes validation function for the `" +
|
|
3414
|
+
"You are manually calling a React.PropTypes validation function for the `" + ce + "` prop on `" + ie + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."
|
|
3415
3415
|
), W[Me] = !0, fe++);
|
|
3416
3416
|
}
|
|
3417
3417
|
}
|
|
3418
|
-
return L[X] == null ? ve ? L[X] === null ? new f("The " + le + " `" +
|
|
3418
|
+
return L[X] == null ? ve ? L[X] === null ? new f("The " + le + " `" + ce + "` is marked as required " + ("in `" + ie + "`, but its value is `null`.")) : new f("The " + le + " `" + ce + "` is marked as required in " + ("`" + ie + "`, but its value is `undefined`.")) : null : z(L, X, ie, le, ce);
|
|
3419
3419
|
}
|
|
3420
3420
|
var de = he.bind(null, !1);
|
|
3421
3421
|
return de.isRequired = he.bind(null, !0), de;
|
|
@@ -3424,9 +3424,9 @@ function qp() {
|
|
|
3424
3424
|
function W(fe, he, de, ve, L, X) {
|
|
3425
3425
|
var ie = fe[he], le = ae(ie);
|
|
3426
3426
|
if (le !== z) {
|
|
3427
|
-
var
|
|
3427
|
+
var ce = ge(ie);
|
|
3428
3428
|
return new f(
|
|
3429
|
-
"Invalid " + ve + " `" + L + "` of type " + ("`" +
|
|
3429
|
+
"Invalid " + ve + " `" + L + "` of type " + ("`" + ce + "` supplied to `" + de + "`, expected ") + ("`" + z + "`."),
|
|
3430
3430
|
{ expectedType: z }
|
|
3431
3431
|
);
|
|
3432
3432
|
}
|
|
@@ -3447,9 +3447,9 @@ function qp() {
|
|
|
3447
3447
|
return new f("Invalid " + ve + " `" + L + "` of type " + ("`" + ie + "` supplied to `" + de + "`, expected an array."));
|
|
3448
3448
|
}
|
|
3449
3449
|
for (var le = 0; le < X.length; le++) {
|
|
3450
|
-
var
|
|
3451
|
-
if (
|
|
3452
|
-
return
|
|
3450
|
+
var ce = z(X, le, de, ve, L + "[" + le + "]", r);
|
|
3451
|
+
if (ce instanceof Error)
|
|
3452
|
+
return ce;
|
|
3453
3453
|
}
|
|
3454
3454
|
return null;
|
|
3455
3455
|
}
|
|
@@ -3496,9 +3496,9 @@ function qp() {
|
|
|
3496
3496
|
for (var X = fe[he], ie = 0; ie < z.length; ie++)
|
|
3497
3497
|
if (k(X, z[ie]))
|
|
3498
3498
|
return null;
|
|
3499
|
-
var le = JSON.stringify(z, function(Ee,
|
|
3500
|
-
var Me = ge(
|
|
3501
|
-
return Me === "symbol" ? String(
|
|
3499
|
+
var le = JSON.stringify(z, function(Ee, K) {
|
|
3500
|
+
var Me = ge(K);
|
|
3501
|
+
return Me === "symbol" ? String(K) : K;
|
|
3502
3502
|
});
|
|
3503
3503
|
return new f("Invalid " + ve + " `" + L + "` of value `" + String(X) + "` " + ("supplied to `" + de + "`, expected one of " + le + "."));
|
|
3504
3504
|
}
|
|
@@ -3513,9 +3513,9 @@ function qp() {
|
|
|
3513
3513
|
return new f("Invalid " + ve + " `" + L + "` of type " + ("`" + ie + "` supplied to `" + de + "`, expected an object."));
|
|
3514
3514
|
for (var le in X)
|
|
3515
3515
|
if (n(X, le)) {
|
|
3516
|
-
var
|
|
3517
|
-
if (
|
|
3518
|
-
return
|
|
3516
|
+
var ce = z(X, le, de, ve, L + "." + le, r);
|
|
3517
|
+
if (ce instanceof Error)
|
|
3518
|
+
return ce;
|
|
3519
3519
|
}
|
|
3520
3520
|
return null;
|
|
3521
3521
|
}
|
|
@@ -3532,11 +3532,11 @@ function qp() {
|
|
|
3532
3532
|
), o;
|
|
3533
3533
|
}
|
|
3534
3534
|
function he(de, ve, L, X, ie) {
|
|
3535
|
-
for (var le = [],
|
|
3536
|
-
var Ee = z[
|
|
3537
|
-
if (
|
|
3535
|
+
for (var le = [], ce = 0; ce < z.length; ce++) {
|
|
3536
|
+
var Ee = z[ce], K = Ee(de, ve, L, X, ie, r);
|
|
3537
|
+
if (K == null)
|
|
3538
3538
|
return null;
|
|
3539
|
-
|
|
3539
|
+
K.data && n(K.data, "expectedType") && le.push(K.data.expectedType);
|
|
3540
3540
|
}
|
|
3541
3541
|
var Me = le.length > 0 ? ", expected one of type [" + le.join(", ") + "]" : "";
|
|
3542
3542
|
return new f("Invalid " + X + " `" + ie + "` supplied to " + ("`" + L + "`" + Me + "."));
|
|
@@ -3560,10 +3560,10 @@ function qp() {
|
|
|
3560
3560
|
if (ie !== "object")
|
|
3561
3561
|
return new f("Invalid " + ve + " `" + L + "` of type `" + ie + "` " + ("supplied to `" + de + "`, expected `object`."));
|
|
3562
3562
|
for (var le in z) {
|
|
3563
|
-
var
|
|
3564
|
-
if (typeof
|
|
3565
|
-
return P(de, ve, L, le, ge(
|
|
3566
|
-
var Ee =
|
|
3563
|
+
var ce = z[le];
|
|
3564
|
+
if (typeof ce != "function")
|
|
3565
|
+
return P(de, ve, L, le, ge(ce));
|
|
3566
|
+
var Ee = ce(X, le, de, ve, L + "." + le, r);
|
|
3567
3567
|
if (Ee)
|
|
3568
3568
|
return Ee;
|
|
3569
3569
|
}
|
|
@@ -3577,18 +3577,18 @@ function qp() {
|
|
|
3577
3577
|
if (ie !== "object")
|
|
3578
3578
|
return new f("Invalid " + ve + " `" + L + "` of type `" + ie + "` " + ("supplied to `" + de + "`, expected `object`."));
|
|
3579
3579
|
var le = t({}, fe[he], z);
|
|
3580
|
-
for (var
|
|
3581
|
-
var Ee = z[
|
|
3582
|
-
if (n(z,
|
|
3583
|
-
return P(de, ve, L,
|
|
3580
|
+
for (var ce in le) {
|
|
3581
|
+
var Ee = z[ce];
|
|
3582
|
+
if (n(z, ce) && typeof Ee != "function")
|
|
3583
|
+
return P(de, ve, L, ce, ge(Ee));
|
|
3584
3584
|
if (!Ee)
|
|
3585
3585
|
return new f(
|
|
3586
|
-
"Invalid " + ve + " `" + L + "` key `" +
|
|
3586
|
+
"Invalid " + ve + " `" + L + "` key `" + ce + "` supplied to `" + de + "`.\nBad object: " + JSON.stringify(fe[he], null, " ") + `
|
|
3587
3587
|
Valid keys: ` + JSON.stringify(Object.keys(z), null, " ")
|
|
3588
3588
|
);
|
|
3589
|
-
var
|
|
3590
|
-
if (
|
|
3591
|
-
return
|
|
3589
|
+
var K = Ee(X, ce, de, ve, L + "." + ce, r);
|
|
3590
|
+
if (K)
|
|
3591
|
+
return K;
|
|
3592
3592
|
}
|
|
3593
3593
|
return null;
|
|
3594
3594
|
}
|
|
@@ -3627,12 +3627,12 @@ Valid keys: ` + JSON.stringify(Object.keys(z), null, " ")
|
|
|
3627
3627
|
return !1;
|
|
3628
3628
|
}
|
|
3629
3629
|
}
|
|
3630
|
-
function
|
|
3630
|
+
function H(z, W) {
|
|
3631
3631
|
return z === "symbol" ? !0 : W ? W["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && W instanceof Symbol : !1;
|
|
3632
3632
|
}
|
|
3633
3633
|
function ae(z) {
|
|
3634
3634
|
var W = typeof z;
|
|
3635
|
-
return Array.isArray(z) ? "array" : z instanceof RegExp ? "object" :
|
|
3635
|
+
return Array.isArray(z) ? "array" : z instanceof RegExp ? "object" : H(W, z) ? "symbol" : W;
|
|
3636
3636
|
}
|
|
3637
3637
|
function ge(z) {
|
|
3638
3638
|
if (typeof z > "u" || z === null)
|
|
@@ -5229,13 +5229,13 @@ function df(e = {}) {
|
|
|
5229
5229
|
const N = (ge = (ae = V.theme.components) == null ? void 0 : ae[p]) == null ? void 0 : ge.styleOverrides;
|
|
5230
5230
|
if (!N)
|
|
5231
5231
|
return null;
|
|
5232
|
-
const
|
|
5232
|
+
const H = {};
|
|
5233
5233
|
for (const pe in N)
|
|
5234
|
-
|
|
5235
|
-
return g(V,
|
|
5234
|
+
H[pe] = oi(V, N[pe]);
|
|
5235
|
+
return g(V, H);
|
|
5236
5236
|
}), p && !f && A.push(function(V) {
|
|
5237
|
-
var
|
|
5238
|
-
const F = V.theme, N = (ae = (
|
|
5237
|
+
var H, ae;
|
|
5238
|
+
const F = V.theme, N = (ae = (H = F == null ? void 0 : F.components) == null ? void 0 : H[p]) == null ? void 0 : ae.variants;
|
|
5239
5239
|
return N ? dc(V, N) : null;
|
|
5240
5240
|
}), S || A.push(yn), Array.isArray(M[0])) {
|
|
5241
5241
|
const P = M.shift(), V = new Array(_.length).fill(""), F = new Array(A.length).fill("");
|
|
@@ -5612,8 +5612,8 @@ function Ff(e, t = {}) {
|
|
|
5612
5612
|
return Object.entries(M).forEach(([c, {
|
|
5613
5613
|
css: P
|
|
5614
5614
|
}]) => {
|
|
5615
|
-
var N,
|
|
5616
|
-
const V = (
|
|
5615
|
+
var N, H;
|
|
5616
|
+
const V = (H = (N = a[c]) == null ? void 0 : N.palette) == null ? void 0 : H.mode, F = !n && V ? {
|
|
5617
5617
|
colorScheme: V,
|
|
5618
5618
|
...P
|
|
5619
5619
|
} : {
|
|
@@ -6376,8 +6376,8 @@ function lh(e = {}, ...t) {
|
|
|
6376
6376
|
};
|
|
6377
6377
|
Object.keys(b.colorSchemes).forEach(($) => {
|
|
6378
6378
|
const c = b.colorSchemes[$].palette, P = (V) => {
|
|
6379
|
-
const F = V.split("-"), N = F[1],
|
|
6380
|
-
return h(V, c[N][
|
|
6379
|
+
const F = V.split("-"), N = F[1], H = F[2];
|
|
6380
|
+
return h(V, c[N][H]);
|
|
6381
6381
|
};
|
|
6382
6382
|
if (c.mode === "light" && (j(c.common, "background", "#fff"), j(c.common, "onBackground", "#000")), c.mode === "dark" && (j(c.common, "background", "#000"), j(c.common, "onBackground", "#fff")), ah(c, ["Alert", "AppBar", "Avatar", "Button", "Chip", "FilledInput", "LinearProgress", "Skeleton", "Slider", "SnackbarContent", "SpeedDialAction", "StepConnector", "StepContent", "Switch", "TableCell", "Tooltip"]), c.mode === "light") {
|
|
6383
6383
|
j(c.Alert, "errorColor", $e(c.error.light, 0.6)), j(c.Alert, "infoColor", $e(c.info.light, 0.6)), j(c.Alert, "successColor", $e(c.success.light, 0.6)), j(c.Alert, "warningColor", $e(c.warning.light, 0.6)), j(c.Alert, "errorFilledBg", P("palette-error-main")), j(c.Alert, "infoFilledBg", P("palette-info-main")), j(c.Alert, "successFilledBg", P("palette-success-main")), j(c.Alert, "warningFilledBg", P("palette-warning-main")), j(c.Alert, "errorFilledColor", Vt(() => c.getContrastText(c.error.main))), j(c.Alert, "infoFilledColor", Vt(() => c.getContrastText(c.info.main))), j(c.Alert, "successFilledColor", Vt(() => c.getContrastText(c.success.main))), j(c.Alert, "warningFilledColor", Vt(() => c.getContrastText(c.warning.main))), j(c.Alert, "errorStandardBg", De(c.error.light, 0.9)), j(c.Alert, "infoStandardBg", De(c.info.light, 0.9)), j(c.Alert, "successStandardBg", De(c.success.light, 0.9)), j(c.Alert, "warningStandardBg", De(c.warning.light, 0.9)), j(c.Alert, "errorIconColor", P("palette-error-main")), j(c.Alert, "infoIconColor", P("palette-info-main")), j(c.Alert, "successIconColor", P("palette-success-main")), j(c.Alert, "warningIconColor", P("palette-warning-main")), j(c.AppBar, "defaultBg", P("palette-grey-100")), j(c.Avatar, "defaultBg", P("palette-grey-400")), j(c.Button, "inheritContainedBg", P("palette-grey-300")), j(c.Button, "inheritContainedHoverBg", P("palette-grey-A100")), j(c.Chip, "defaultBorder", P("palette-grey-400")), j(c.Chip, "defaultAvatarColor", P("palette-grey-700")), j(c.Chip, "defaultIconColor", P("palette-grey-700")), j(c.FilledInput, "bg", "rgba(0, 0, 0, 0.06)"), j(c.FilledInput, "hoverBg", "rgba(0, 0, 0, 0.09)"), j(c.FilledInput, "disabledBg", "rgba(0, 0, 0, 0.12)"), j(c.LinearProgress, "primaryBg", De(c.primary.main, 0.62)), j(c.LinearProgress, "secondaryBg", De(c.secondary.main, 0.62)), j(c.LinearProgress, "errorBg", De(c.error.main, 0.62)), j(c.LinearProgress, "infoBg", De(c.info.main, 0.62)), j(c.LinearProgress, "successBg", De(c.success.main, 0.62)), j(c.LinearProgress, "warningBg", De(c.warning.main, 0.62)), j(c.Skeleton, "bg", `rgba(${P("palette-text-primaryChannel")} / 0.11)`), j(c.Slider, "primaryTrack", De(c.primary.main, 0.62)), j(c.Slider, "secondaryTrack", De(c.secondary.main, 0.62)), j(c.Slider, "errorTrack", De(c.error.main, 0.62)), j(c.Slider, "infoTrack", De(c.info.main, 0.62)), j(c.Slider, "successTrack", De(c.success.main, 0.62)), j(c.Slider, "warningTrack", De(c.warning.main, 0.62));
|
|
@@ -7759,16 +7759,16 @@ const Tt = zr("MuiTouchRipple", ["root", "ripple", "rippleVisible", "ripplePulsa
|
|
|
7759
7759
|
V = Math.round(P.width / 2), F = Math.round(P.height / 2);
|
|
7760
7760
|
else {
|
|
7761
7761
|
const {
|
|
7762
|
-
clientX:
|
|
7762
|
+
clientX: H,
|
|
7763
7763
|
clientY: ae
|
|
7764
7764
|
} = b.touches && b.touches.length > 0 ? b.touches[0] : b;
|
|
7765
|
-
V = Math.round(
|
|
7765
|
+
V = Math.round(H - P.left), F = Math.round(ae - P.top);
|
|
7766
7766
|
}
|
|
7767
7767
|
if (A)
|
|
7768
7768
|
N = Math.sqrt((2 * P.width ** 2 + P.height ** 2) / 3), N % 2 === 0 && (N += 1);
|
|
7769
7769
|
else {
|
|
7770
|
-
const
|
|
7771
|
-
N = Math.sqrt(
|
|
7770
|
+
const H = Math.max(Math.abs((c ? c.clientWidth : 0) - V), V) * 2 + 2, ae = Math.max(Math.abs((c ? c.clientHeight : 0) - F), F) * 2 + 2;
|
|
7771
|
+
N = Math.sqrt(H ** 2 + ae ** 2);
|
|
7772
7772
|
}
|
|
7773
7773
|
b != null && b.touches ? k.current === null && (k.current = () => {
|
|
7774
7774
|
S({
|
|
@@ -7917,10 +7917,10 @@ const nm = zr("MuiButtonBase", ["root", "disabled", "focusVisible"]), im = (e) =
|
|
|
7917
7917
|
onTouchStart: V,
|
|
7918
7918
|
tabIndex: F = 0,
|
|
7919
7919
|
TouchRippleProps: N,
|
|
7920
|
-
touchRippleRef:
|
|
7920
|
+
touchRippleRef: H,
|
|
7921
7921
|
type: ae,
|
|
7922
7922
|
...ge
|
|
7923
|
-
} = n, pe = re.useRef(null), U = jh(), z = js(U.ref,
|
|
7923
|
+
} = n, pe = re.useRef(null), U = jh(), z = js(U.ref, H), [W, fe] = re.useState(!1);
|
|
7924
7924
|
p && W && fe(!1), re.useImperativeHandle(i, () => ({
|
|
7925
7925
|
focusVisible: () => {
|
|
7926
7926
|
fe(!0), pe.current.focus();
|
|
@@ -7932,7 +7932,7 @@ const nm = zr("MuiButtonBase", ["root", "disabled", "focusVisible"]), im = (e) =
|
|
|
7932
7932
|
}, [d, h, W, U]);
|
|
7933
7933
|
const de = Yt(U, "start", M, u), ve = Yt(U, "stop", v, u), L = Yt(U, "stop", w, u), X = Yt(U, "stop", $, u), ie = Yt(U, "stop", (T) => {
|
|
7934
7934
|
W && T.preventDefault(), A && A(T);
|
|
7935
|
-
}, u), le = Yt(U, "start", V, u),
|
|
7935
|
+
}, u), le = Yt(U, "start", V, u), ce = Yt(U, "stop", c, u), Ee = Yt(U, "stop", P, u), K = Yt(U, "stop", (T) => {
|
|
7936
7936
|
zs(T.target) || fe(!1), f && f(T);
|
|
7937
7937
|
}, !1), Me = si((T) => {
|
|
7938
7938
|
pe.current || (pe.current = T.currentTarget), zs(T.target) && (fe(!0), b && b(T)), D && D(T);
|
|
@@ -7948,10 +7948,10 @@ const nm = zr("MuiButtonBase", ["root", "disabled", "focusVisible"]), im = (e) =
|
|
|
7948
7948
|
U.pulsate(T);
|
|
7949
7949
|
}), _ && _(T), S && T.target === T.currentTarget && Ge() && T.key === " " && !T.defaultPrevented && S(T);
|
|
7950
7950
|
});
|
|
7951
|
-
let
|
|
7952
|
-
|
|
7953
|
-
const
|
|
7954
|
-
|
|
7951
|
+
let ue = l;
|
|
7952
|
+
ue === "button" && (ge.href || ge.to) && (ue = k);
|
|
7953
|
+
const J = {};
|
|
7954
|
+
ue === "button" ? (J.type = ae === void 0 ? "button" : ae, J.disabled = p) : (!ge.href && !ge.to && (J.role = "button"), p && (J["aria-disabled"] = p));
|
|
7955
7955
|
const me = js(r, pe), y = {
|
|
7956
7956
|
...n,
|
|
7957
7957
|
centerRipple: a,
|
|
@@ -7964,10 +7964,10 @@ const nm = zr("MuiButtonBase", ["root", "disabled", "focusVisible"]), im = (e) =
|
|
|
7964
7964
|
focusVisible: W
|
|
7965
7965
|
}, C = im(y);
|
|
7966
7966
|
return /* @__PURE__ */ se(am, {
|
|
7967
|
-
as:
|
|
7967
|
+
as: ue,
|
|
7968
7968
|
className: st(C.root, s),
|
|
7969
7969
|
ownerState: y,
|
|
7970
|
-
onBlur:
|
|
7970
|
+
onBlur: K,
|
|
7971
7971
|
onClick: S,
|
|
7972
7972
|
onContextMenu: ve,
|
|
7973
7973
|
onFocus: Me,
|
|
@@ -7977,13 +7977,13 @@ const nm = zr("MuiButtonBase", ["root", "disabled", "focusVisible"]), im = (e) =
|
|
|
7977
7977
|
onMouseLeave: ie,
|
|
7978
7978
|
onMouseUp: X,
|
|
7979
7979
|
onDragLeave: L,
|
|
7980
|
-
onTouchEnd:
|
|
7980
|
+
onTouchEnd: ce,
|
|
7981
7981
|
onTouchMove: Ee,
|
|
7982
7982
|
onTouchStart: le,
|
|
7983
7983
|
ref: me,
|
|
7984
7984
|
tabIndex: p ? -1 : F,
|
|
7985
7985
|
type: ae,
|
|
7986
|
-
...
|
|
7986
|
+
...J,
|
|
7987
7987
|
...ge,
|
|
7988
7988
|
children: [o, he ? /* @__PURE__ */ m(Ec, {
|
|
7989
7989
|
ref: z,
|
|
@@ -8757,7 +8757,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
8757
8757
|
}) => {
|
|
8758
8758
|
var f, S;
|
|
8759
8759
|
const h = !!r, g = a ? /* @__PURE__ */ m(
|
|
8760
|
-
|
|
8760
|
+
ee,
|
|
8761
8761
|
{
|
|
8762
8762
|
component: "span",
|
|
8763
8763
|
sx: {
|
|
@@ -8786,7 +8786,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
8786
8786
|
(f = u.InputProps) == null ? void 0 : f.endAdornment
|
|
8787
8787
|
] }) : (S = u.InputProps) == null ? void 0 : S.endAdornment
|
|
8788
8788
|
};
|
|
8789
|
-
return /* @__PURE__ */ se(
|
|
8789
|
+
return /* @__PURE__ */ se(ee, { children: [
|
|
8790
8790
|
h && /* @__PURE__ */ m(
|
|
8791
8791
|
be,
|
|
8792
8792
|
{
|
|
@@ -9019,7 +9019,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9019
9019
|
onOpen: g,
|
|
9020
9020
|
noOptionsText: k,
|
|
9021
9021
|
sx: f
|
|
9022
|
-
}) => /* @__PURE__ */ se(
|
|
9022
|
+
}) => /* @__PURE__ */ se(ee, { children: [
|
|
9023
9023
|
a && /* @__PURE__ */ m(
|
|
9024
9024
|
be,
|
|
9025
9025
|
{
|
|
@@ -9083,7 +9083,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9083
9083
|
getOptionLabel: (S) => typeof S == "string" ? S : (S == null ? void 0 : S.label) ?? "",
|
|
9084
9084
|
isOptionEqualToValue: (S, v) => ((S == null ? void 0 : S.value) ?? S) === ((v == null ? void 0 : v.value) ?? v),
|
|
9085
9085
|
renderOption: (S, v, { selected: w }) => /* @__PURE__ */ se(
|
|
9086
|
-
|
|
9086
|
+
ee,
|
|
9087
9087
|
{
|
|
9088
9088
|
component: "li",
|
|
9089
9089
|
...S,
|
|
@@ -9222,7 +9222,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9222
9222
|
}
|
|
9223
9223
|
),
|
|
9224
9224
|
g && /* @__PURE__ */ m(
|
|
9225
|
-
|
|
9225
|
+
ee,
|
|
9226
9226
|
{
|
|
9227
9227
|
sx: (w) => ({
|
|
9228
9228
|
display: "grid",
|
|
@@ -9265,7 +9265,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9265
9265
|
}
|
|
9266
9266
|
),
|
|
9267
9267
|
f && /* @__PURE__ */ m(
|
|
9268
|
-
|
|
9268
|
+
ee,
|
|
9269
9269
|
{
|
|
9270
9270
|
sx: (w) => ({
|
|
9271
9271
|
display: "flex",
|
|
@@ -9310,7 +9310,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9310
9310
|
}
|
|
9311
9311
|
),
|
|
9312
9312
|
S && /* @__PURE__ */ m(
|
|
9313
|
-
|
|
9313
|
+
ee,
|
|
9314
9314
|
{
|
|
9315
9315
|
sx: (w) => ({
|
|
9316
9316
|
display: "flex",
|
|
@@ -9460,7 +9460,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9460
9460
|
})
|
|
9461
9461
|
}
|
|
9462
9462
|
),
|
|
9463
|
-
label: /* @__PURE__ */ se(
|
|
9463
|
+
label: /* @__PURE__ */ se(ee, { sx: { display: "flex", flexDirection: "column", gap: 0 }, children: [
|
|
9464
9464
|
/* @__PURE__ */ m(
|
|
9465
9465
|
be,
|
|
9466
9466
|
{
|
|
@@ -9509,7 +9509,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9509
9509
|
l && /* @__PURE__ */ m(eo, { sx: { mt: 0.5 }, children: l })
|
|
9510
9510
|
]
|
|
9511
9511
|
}
|
|
9512
|
-
), Ac = ({ labelPosition: e = "inner", labelVariant: t = "subtitle2", label: r, sx: n, ...i }) => /* @__PURE__ */ se(
|
|
9512
|
+
), Ac = ({ labelPosition: e = "inner", labelVariant: t = "subtitle2", label: r, sx: n, ...i }) => /* @__PURE__ */ se(ee, { children: [
|
|
9513
9513
|
e === "top" && r && /* @__PURE__ */ m(be, { variant: t, sx: { color: "#111827", mb: 0.5 }, children: r }),
|
|
9514
9514
|
/* @__PURE__ */ m(
|
|
9515
9515
|
_i,
|
|
@@ -9536,7 +9536,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9536
9536
|
)
|
|
9537
9537
|
] }), Cm = ({ labelText: e, labelVariant: t = "subtitle2", hasError: r, sx: n, label: i, ...a }) => {
|
|
9538
9538
|
const o = !!e;
|
|
9539
|
-
return /* @__PURE__ */ se(
|
|
9539
|
+
return /* @__PURE__ */ se(ee, { children: [
|
|
9540
9540
|
o && /* @__PURE__ */ m(
|
|
9541
9541
|
be,
|
|
9542
9542
|
{
|
|
@@ -9575,7 +9575,7 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9575
9575
|
)
|
|
9576
9576
|
] });
|
|
9577
9577
|
}, Em = ({ title: e, subtitle: t, actions: r, align: n = "left", sx: i }) => /* @__PURE__ */ se(
|
|
9578
|
-
|
|
9578
|
+
ee,
|
|
9579
9579
|
{
|
|
9580
9580
|
sx: (a) => ({
|
|
9581
9581
|
display: "flex",
|
|
@@ -9587,11 +9587,11 @@ const Bs = Ct(/* @__PURE__ */ m("path", {
|
|
|
9587
9587
|
...i
|
|
9588
9588
|
}),
|
|
9589
9589
|
children: [
|
|
9590
|
-
/* @__PURE__ */ se(
|
|
9590
|
+
/* @__PURE__ */ se(ee, { sx: { display: "flex", flexDirection: "column", minWidth: 0, flex: 1, textAlign: n }, children: [
|
|
9591
9591
|
e && /* @__PURE__ */ m(be, { variant: "h6", sx: (a) => ({ color: a.palette.text.primary, fontSize: 12, fontWeight: 600, lineHeight: 1.3 }), children: e }),
|
|
9592
9592
|
t && /* @__PURE__ */ m(be, { variant: "body2", sx: (a) => ({ color: a.palette.text.secondary, mt: e ? 0.5 : 0, fontSize: 12, fontWeight: 300 }), children: t })
|
|
9593
9593
|
] }),
|
|
9594
|
-
r && /* @__PURE__ */ m(
|
|
9594
|
+
r && /* @__PURE__ */ m(ee, { sx: { display: "flex", alignItems: "center", gap: 1, flexWrap: "wrap" }, children: r })
|
|
9595
9595
|
]
|
|
9596
9596
|
}
|
|
9597
9597
|
), km = () => /* @__PURE__ */ se(
|
|
@@ -9652,7 +9652,7 @@ function Fy({
|
|
|
9652
9652
|
g(null), f(null);
|
|
9653
9653
|
};
|
|
9654
9654
|
return /* @__PURE__ */ se(
|
|
9655
|
-
|
|
9655
|
+
ee,
|
|
9656
9656
|
{
|
|
9657
9657
|
role: "list",
|
|
9658
9658
|
sx: (b) => ({
|
|
@@ -9667,7 +9667,7 @@ function Fy({
|
|
|
9667
9667
|
e.map((b, x) => {
|
|
9668
9668
|
const _ = h === x, M = k === x && h !== null && h !== x;
|
|
9669
9669
|
return /* @__PURE__ */ m(
|
|
9670
|
-
|
|
9670
|
+
ee,
|
|
9671
9671
|
{
|
|
9672
9672
|
role: "listitem",
|
|
9673
9673
|
draggable: !i,
|
|
@@ -9688,7 +9688,7 @@ function Fy({
|
|
|
9688
9688
|
boxShadow: M ? `0 0 0 2px ${A.palette.primary.main}33` : "none"
|
|
9689
9689
|
};
|
|
9690
9690
|
},
|
|
9691
|
-
children: p ? p(b, _) : /* @__PURE__ */ se(
|
|
9691
|
+
children: p ? p(b, _) : /* @__PURE__ */ se(ee, { sx: (A) => ({ display: "flex", alignItems: "center", gap: A.spacing(1), minWidth: 0 }), children: [
|
|
9692
9692
|
l && /* @__PURE__ */ m(km, {}),
|
|
9693
9693
|
s && /* @__PURE__ */ se(be, { variant: "body2", sx: (A) => ({ fontWeight: 600, fontSize: 14, color: `${A.palette.text.primary}`, flex: "0 0 auto" }), children: [
|
|
9694
9694
|
x + 1,
|
|
@@ -9734,7 +9734,7 @@ const Tm = St(kl)(() => ({
|
|
|
9734
9734
|
const i = (a) => {
|
|
9735
9735
|
const { active: o, completed: s, icon: l } = a;
|
|
9736
9736
|
return s ? /* @__PURE__ */ m(
|
|
9737
|
-
|
|
9737
|
+
ee,
|
|
9738
9738
|
{
|
|
9739
9739
|
sx: {
|
|
9740
9740
|
width: 24,
|
|
@@ -9750,7 +9750,7 @@ const Tm = St(kl)(() => ({
|
|
|
9750
9750
|
children: /* @__PURE__ */ m(Eo, { sx: { fontSize: 16, fontWeight: 600 } })
|
|
9751
9751
|
}
|
|
9752
9752
|
) : o ? /* @__PURE__ */ m(
|
|
9753
|
-
|
|
9753
|
+
ee,
|
|
9754
9754
|
{
|
|
9755
9755
|
sx: {
|
|
9756
9756
|
width: 24,
|
|
@@ -9768,7 +9768,7 @@ const Tm = St(kl)(() => ({
|
|
|
9768
9768
|
children: l
|
|
9769
9769
|
}
|
|
9770
9770
|
) : /* @__PURE__ */ m(
|
|
9771
|
-
|
|
9771
|
+
ee,
|
|
9772
9772
|
{
|
|
9773
9773
|
sx: {
|
|
9774
9774
|
width: 24,
|
|
@@ -9874,7 +9874,7 @@ const Tm = St(kl)(() => ({
|
|
|
9874
9874
|
const [i, a] = Pt(null), o = (s) => {
|
|
9875
9875
|
const { active: l, completed: p, icon: d } = s;
|
|
9876
9876
|
return p ? /* @__PURE__ */ m(
|
|
9877
|
-
|
|
9877
|
+
ee,
|
|
9878
9878
|
{
|
|
9879
9879
|
sx: {
|
|
9880
9880
|
width: 24,
|
|
@@ -9891,7 +9891,7 @@ const Tm = St(kl)(() => ({
|
|
|
9891
9891
|
children: /* @__PURE__ */ m(Eo, { sx: { fontSize: 16, fontWeight: 600 } })
|
|
9892
9892
|
}
|
|
9893
9893
|
) : l ? /* @__PURE__ */ m(
|
|
9894
|
-
|
|
9894
|
+
ee,
|
|
9895
9895
|
{
|
|
9896
9896
|
sx: {
|
|
9897
9897
|
width: 24,
|
|
@@ -9911,7 +9911,7 @@ const Tm = St(kl)(() => ({
|
|
|
9911
9911
|
children: d
|
|
9912
9912
|
}
|
|
9913
9913
|
) : /* @__PURE__ */ m(
|
|
9914
|
-
|
|
9914
|
+
ee,
|
|
9915
9915
|
{
|
|
9916
9916
|
sx: {
|
|
9917
9917
|
width: 24,
|
|
@@ -9959,7 +9959,7 @@ const Tm = St(kl)(() => ({
|
|
|
9959
9959
|
completed: l < t,
|
|
9960
9960
|
children: [
|
|
9961
9961
|
/* @__PURE__ */ se(
|
|
9962
|
-
|
|
9962
|
+
ee,
|
|
9963
9963
|
{
|
|
9964
9964
|
sx: {
|
|
9965
9965
|
display: "flex",
|
|
@@ -9968,7 +9968,7 @@ const Tm = St(kl)(() => ({
|
|
|
9968
9968
|
},
|
|
9969
9969
|
children: [
|
|
9970
9970
|
/* @__PURE__ */ se(Al, { StepIconComponent: o, children: [
|
|
9971
|
-
/* @__PURE__ */ se(
|
|
9971
|
+
/* @__PURE__ */ se(ee, { sx: { display: "flex", gap: 1, alignItems: "center" }, children: [
|
|
9972
9972
|
/* @__PURE__ */ m(
|
|
9973
9973
|
be,
|
|
9974
9974
|
{
|
|
@@ -10041,7 +10041,7 @@ const Tm = St(kl)(() => ({
|
|
|
10041
10041
|
...s
|
|
10042
10042
|
},
|
|
10043
10043
|
children: [
|
|
10044
|
-
/* @__PURE__ */ m(
|
|
10044
|
+
/* @__PURE__ */ m(ee, { sx: { display: "flex", alignItems: "center" }, children: u }),
|
|
10045
10045
|
/* @__PURE__ */ m(
|
|
10046
10046
|
be,
|
|
10047
10047
|
{
|
|
@@ -10086,7 +10086,7 @@ const Tm = St(kl)(() => ({
|
|
|
10086
10086
|
...s
|
|
10087
10087
|
},
|
|
10088
10088
|
children: [
|
|
10089
|
-
/* @__PURE__ */ se(
|
|
10089
|
+
/* @__PURE__ */ se(ee, { sx: { display: "flex", alignItems: "center", gap: 1 }, children: [
|
|
10090
10090
|
u,
|
|
10091
10091
|
/* @__PURE__ */ m(
|
|
10092
10092
|
be,
|
|
@@ -10173,7 +10173,7 @@ const Tm = St(kl)(() => ({
|
|
|
10173
10173
|
)
|
|
10174
10174
|
}
|
|
10175
10175
|
);
|
|
10176
|
-
}, _m = ({ value: e, onChange: t, items: r, ariaLabel: n, sx: i, tabSx: a }) => /* @__PURE__ */ se(
|
|
10176
|
+
}, _m = ({ value: e, onChange: t, items: r, ariaLabel: n, sx: i, tabSx: a }) => /* @__PURE__ */ se(ee, { children: [
|
|
10177
10177
|
/* @__PURE__ */ m(
|
|
10178
10178
|
vu,
|
|
10179
10179
|
{
|
|
@@ -10228,7 +10228,7 @@ const Tm = St(kl)(() => ({
|
|
|
10228
10228
|
),
|
|
10229
10229
|
r.map((o, s) => {
|
|
10230
10230
|
const l = typeof o.value == "string" || typeof o.value == "number" ? o.value : s, p = o.content ?? (typeof o.value == "object" ? o.value : null);
|
|
10231
|
-
return p && e === l ? /* @__PURE__ */ m(
|
|
10231
|
+
return p && e === l ? /* @__PURE__ */ m(ee, { sx: { mt: 1 }, children: p }, `panel-${l}`) : null;
|
|
10232
10232
|
})
|
|
10233
10233
|
] }), Xn = Ct(/* @__PURE__ */ m("path", {
|
|
10234
10234
|
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
@@ -10300,7 +10300,7 @@ const Tm = St(kl)(() => ({
|
|
|
10300
10300
|
...o
|
|
10301
10301
|
},
|
|
10302
10302
|
children: k.length === 0 ? /* @__PURE__ */ se(
|
|
10303
|
-
|
|
10303
|
+
ee,
|
|
10304
10304
|
{
|
|
10305
10305
|
sx: ($) => ({
|
|
10306
10306
|
p: 4,
|
|
@@ -10364,7 +10364,7 @@ const Tm = St(kl)(() => ({
|
|
|
10364
10364
|
}
|
|
10365
10365
|
) : /* @__PURE__ */ se(Fi, { children: [
|
|
10366
10366
|
/* @__PURE__ */ m(
|
|
10367
|
-
|
|
10367
|
+
ee,
|
|
10368
10368
|
{
|
|
10369
10369
|
sx: {
|
|
10370
10370
|
height: "45px",
|
|
@@ -10424,7 +10424,7 @@ const Tm = St(kl)(() => ({
|
|
|
10424
10424
|
}
|
|
10425
10425
|
),
|
|
10426
10426
|
/* @__PURE__ */ m(
|
|
10427
|
-
|
|
10427
|
+
ee,
|
|
10428
10428
|
{
|
|
10429
10429
|
sx: {
|
|
10430
10430
|
width: "100%",
|
|
@@ -10505,7 +10505,7 @@ const Tm = St(kl)(() => ({
|
|
|
10505
10505
|
return /* @__PURE__ */ se(Po, { children: [
|
|
10506
10506
|
t.map((F) => {
|
|
10507
10507
|
var pe;
|
|
10508
|
-
const N = `${e}.${c}.${F.key}`,
|
|
10508
|
+
const N = `${e}.${c}.${F.key}`, H = F.type === "rowSelect" || F.key === v, ae = H ? !1 : V ? !0 : typeof F.disabled == "function" ? F.disabled($, c) : !!F.disabled;
|
|
10509
10509
|
if (F.type === "index") {
|
|
10510
10510
|
const U = F.indexFormat ? F.indexFormat(c) : `#${c + 1}`;
|
|
10511
10511
|
return /* @__PURE__ */ m(
|
|
@@ -10555,7 +10555,7 @@ const Tm = St(kl)(() => ({
|
|
|
10555
10555
|
...A(F),
|
|
10556
10556
|
...F.cellSx
|
|
10557
10557
|
},
|
|
10558
|
-
children: F.type === "rowSelect" ||
|
|
10558
|
+
children: F.type === "rowSelect" || H && F.type === "checkbox" ? /* @__PURE__ */ m(
|
|
10559
10559
|
je,
|
|
10560
10560
|
{
|
|
10561
10561
|
name: N,
|
|
@@ -10756,10 +10756,10 @@ const Tm = St(kl)(() => ({
|
|
|
10756
10756
|
items: r,
|
|
10757
10757
|
sx: n,
|
|
10758
10758
|
cardSx: i
|
|
10759
|
-
}) => /* @__PURE__ */ m(
|
|
10759
|
+
}) => /* @__PURE__ */ m(ee, { sx: { display: "flex", flexDirection: "column", gap: 1, ...n }, children: r.map((a) => {
|
|
10760
10760
|
const o = !!a.leftAction, s = !!a.rightAction, l = !!(a.header || a.chipText), p = a.leftAction, d = a.rightAction;
|
|
10761
10761
|
return /* @__PURE__ */ se(
|
|
10762
|
-
|
|
10762
|
+
ee,
|
|
10763
10763
|
{
|
|
10764
10764
|
sx: {
|
|
10765
10765
|
border: "1px solid #DDDDDD",
|
|
@@ -10772,7 +10772,7 @@ const Tm = St(kl)(() => ({
|
|
|
10772
10772
|
...i
|
|
10773
10773
|
},
|
|
10774
10774
|
children: [
|
|
10775
|
-
o && p && /* @__PURE__ */ m(
|
|
10775
|
+
o && p && /* @__PURE__ */ m(ee, { sx: { display: "flex", alignItems: "center", gap: 1, flexShrink: 0 }, children: /* @__PURE__ */ m(
|
|
10776
10776
|
je,
|
|
10777
10777
|
{
|
|
10778
10778
|
name: p.name,
|
|
@@ -10789,7 +10789,7 @@ const Tm = St(kl)(() => ({
|
|
|
10789
10789
|
)
|
|
10790
10790
|
}
|
|
10791
10791
|
) }),
|
|
10792
|
-
l && /* @__PURE__ */ se(
|
|
10792
|
+
l && /* @__PURE__ */ se(ee, { sx: { display: "flex", alignItems: "center", gap: 1, flex: o || s ? 1 : "none", ml: o ? 1 : 0 }, children: [
|
|
10793
10793
|
a.header && /* @__PURE__ */ m(
|
|
10794
10794
|
be,
|
|
10795
10795
|
{
|
|
@@ -10803,7 +10803,7 @@ const Tm = St(kl)(() => ({
|
|
|
10803
10803
|
}
|
|
10804
10804
|
),
|
|
10805
10805
|
a.chipText && /* @__PURE__ */ m(
|
|
10806
|
-
|
|
10806
|
+
ee,
|
|
10807
10807
|
{
|
|
10808
10808
|
sx: {
|
|
10809
10809
|
bgcolor: "rgba(26,26,26,0.1)",
|
|
@@ -10817,7 +10817,7 @@ const Tm = St(kl)(() => ({
|
|
|
10817
10817
|
}
|
|
10818
10818
|
)
|
|
10819
10819
|
] }),
|
|
10820
|
-
s && d && /* @__PURE__ */ m(
|
|
10820
|
+
s && d && /* @__PURE__ */ m(ee, { sx: { display: "flex", alignItems: "center", gap: 0.5, flexShrink: 0, ml: "auto" }, children: /* @__PURE__ */ m(
|
|
10821
10821
|
je,
|
|
10822
10822
|
{
|
|
10823
10823
|
name: d.name,
|
|
@@ -10834,7 +10834,7 @@ const Tm = St(kl)(() => ({
|
|
|
10834
10834
|
)
|
|
10835
10835
|
}
|
|
10836
10836
|
) }),
|
|
10837
|
-
!o && !s && !l && /* @__PURE__ */ m(
|
|
10837
|
+
!o && !s && !l && /* @__PURE__ */ m(ee, { sx: { width: "100%", height: "100%" } })
|
|
10838
10838
|
]
|
|
10839
10839
|
},
|
|
10840
10840
|
a.id
|
|
@@ -11037,9 +11037,9 @@ const _c = ({
|
|
|
11037
11037
|
return !0;
|
|
11038
11038
|
}
|
|
11039
11039
|
if (L && typeof L == "object") {
|
|
11040
|
-
const X = L.field, ie = L.equals, le = L.in,
|
|
11041
|
-
if (X && typeof ie < "u") return
|
|
11042
|
-
if (X && Array.isArray(le)) return le.includes(
|
|
11040
|
+
const X = L.field, ie = L.equals, le = L.in, ce = X ? (a || {})[X] : void 0;
|
|
11041
|
+
if (X && typeof ie < "u") return ce === ie;
|
|
11042
|
+
if (X && Array.isArray(le)) return le.includes(ce);
|
|
11043
11043
|
}
|
|
11044
11044
|
return !0;
|
|
11045
11045
|
}, [e.showWhen, a]), F = Ne(() => {
|
|
@@ -11064,8 +11064,8 @@ const _c = ({
|
|
|
11064
11064
|
Cl,
|
|
11065
11065
|
{
|
|
11066
11066
|
checked: le.value || !1,
|
|
11067
|
-
onChange: (
|
|
11068
|
-
le.onChange(
|
|
11067
|
+
onChange: (ce) => {
|
|
11068
|
+
le.onChange(ce.target.checked), e.endAdornmentSwitchOnChange && e.endAdornmentSwitchOnChange(ce.target.checked, a, o);
|
|
11069
11069
|
},
|
|
11070
11070
|
disabled: e.endAdornmentSwitchDisabled,
|
|
11071
11071
|
size: e.endAdornmentSwitchSize || "small",
|
|
@@ -11100,15 +11100,15 @@ const _c = ({
|
|
|
11100
11100
|
return;
|
|
11101
11101
|
}
|
|
11102
11102
|
return L;
|
|
11103
|
-
}, [e, a, t, o]),
|
|
11103
|
+
}, [e, a, t, o]), H = Ke(() => p && Yr(e) && (!(A != null && A.dependsOn) || c), [p, e, A == null ? void 0 : A.dependsOn, c]), ae = Ke(() => {
|
|
11104
11104
|
const L = {};
|
|
11105
11105
|
if (!a) return L;
|
|
11106
11106
|
const X = (A == null ? void 0 : A.endpoint) || (e == null ? void 0 : e.api_endpoint);
|
|
11107
11107
|
if (X && typeof X == "string") {
|
|
11108
11108
|
const ie = X.match(/\{([^}]+)\}/g) || [];
|
|
11109
11109
|
for (const le of ie) {
|
|
11110
|
-
const
|
|
11111
|
-
Ee !== void 0 && (L[
|
|
11110
|
+
const ce = le.slice(1, -1), Ee = a[ce];
|
|
11111
|
+
Ee !== void 0 && (L[ce] = Ee);
|
|
11112
11112
|
}
|
|
11113
11113
|
}
|
|
11114
11114
|
if (A != null && A.dependsOn) {
|
|
@@ -11131,7 +11131,7 @@ const _c = ({
|
|
|
11131
11131
|
i,
|
|
11132
11132
|
ae,
|
|
11133
11133
|
// Only pass dependent values, not entire formData
|
|
11134
|
-
|
|
11134
|
+
H
|
|
11135
11135
|
), z = Ne(() => {
|
|
11136
11136
|
Yr(e) && !u.current && (u.current = !0, d(!0));
|
|
11137
11137
|
}, [e]), W = Ne(() => {
|
|
@@ -11146,7 +11146,7 @@ const _c = ({
|
|
|
11146
11146
|
Yr(e) && (A != null && A.dependsOn) && P && u.current && (u.current = !1, d(!1));
|
|
11147
11147
|
}, [P, A == null ? void 0 : A.dependsOn]);
|
|
11148
11148
|
const fe = Ne(() => Yr(e) ? ge : e.type === "select" || e.type === "toggle" || e.type === "radio" || e.type === "autocomplete" ? e.options || [] : [], [e, ge]), he = () => {
|
|
11149
|
-
var L, X, ie, le,
|
|
11149
|
+
var L, X, ie, le, ce, Ee;
|
|
11150
11150
|
switch (e.type) {
|
|
11151
11151
|
case "title":
|
|
11152
11152
|
return /* @__PURE__ */ m(
|
|
@@ -11173,7 +11173,7 @@ const _c = ({
|
|
|
11173
11173
|
}
|
|
11174
11174
|
);
|
|
11175
11175
|
case "finuiHeader":
|
|
11176
|
-
const
|
|
11176
|
+
const K = e.actionName, Me = e.actionComponent, Ge = e.actionLabel, et = (C) => /* @__PURE__ */ m(
|
|
11177
11177
|
Em,
|
|
11178
11178
|
{
|
|
11179
11179
|
title: e.title || e.label,
|
|
@@ -11190,10 +11190,10 @@ const _c = ({
|
|
|
11190
11190
|
return C;
|
|
11191
11191
|
};
|
|
11192
11192
|
return G(
|
|
11193
|
-
|
|
11193
|
+
K && Me ? /* @__PURE__ */ m(
|
|
11194
11194
|
je,
|
|
11195
11195
|
{
|
|
11196
|
-
name:
|
|
11196
|
+
name: K,
|
|
11197
11197
|
control: t,
|
|
11198
11198
|
defaultValue: e.value ?? !1,
|
|
11199
11199
|
render: ({ field: C }) => et(
|
|
@@ -11208,7 +11208,7 @@ const _c = ({
|
|
|
11208
11208
|
{
|
|
11209
11209
|
name: e.name,
|
|
11210
11210
|
control: t,
|
|
11211
|
-
defaultValue: e.defaultValue ?? (typeof ((X = (L = e.items) == null ? void 0 : L[0]) == null ? void 0 : X.value) == "string" || typeof ((le = (ie = e.items) == null ? void 0 : ie[0]) == null ? void 0 : le.value) == "number" ? (Ee = (
|
|
11211
|
+
defaultValue: e.defaultValue ?? (typeof ((X = (L = e.items) == null ? void 0 : L[0]) == null ? void 0 : X.value) == "string" || typeof ((le = (ie = e.items) == null ? void 0 : ie[0]) == null ? void 0 : le.value) == "number" ? (Ee = (ce = e.items) == null ? void 0 : ce[0]) == null ? void 0 : Ee.value : 0),
|
|
11212
11212
|
render: ({ field: C }) => {
|
|
11213
11213
|
const T = e.items || [], q = T.map((ne, B) => ({
|
|
11214
11214
|
label: ne.label,
|
|
@@ -11222,7 +11222,7 @@ const _c = ({
|
|
|
11222
11222
|
}
|
|
11223
11223
|
return Number(R) || 0;
|
|
11224
11224
|
})(), Q = T[I] || {};
|
|
11225
|
-
return /* @__PURE__ */ se(
|
|
11225
|
+
return /* @__PURE__ */ se(ee, { children: [
|
|
11226
11226
|
/* @__PURE__ */ m(
|
|
11227
11227
|
_m,
|
|
11228
11228
|
{
|
|
@@ -11251,10 +11251,10 @@ const _c = ({
|
|
|
11251
11251
|
width: "100%",
|
|
11252
11252
|
mt: 1
|
|
11253
11253
|
};
|
|
11254
|
-
return /* @__PURE__ */ m(
|
|
11254
|
+
return /* @__PURE__ */ m(ee, { sx: { mt: 1 }, children: B.map((Fe, Be) => {
|
|
11255
11255
|
const He = Fe.find((lt) => lt.type === "section"), rt = (He == null ? void 0 : He.cardWrap) !== !1, zt = /* @__PURE__ */ m(Fi, { children: Fe.map((lt) => {
|
|
11256
11256
|
const ht = Math.min(Math.max(lt.col ?? 12, 1), 12);
|
|
11257
|
-
return /* @__PURE__ */ m(
|
|
11257
|
+
return /* @__PURE__ */ m(ee, { sx: { gridColumn: `span ${ht}` }, children: /* @__PURE__ */ m(
|
|
11258
11258
|
_c,
|
|
11259
11259
|
{
|
|
11260
11260
|
field: lt,
|
|
@@ -11267,7 +11267,7 @@ const _c = ({
|
|
|
11267
11267
|
}
|
|
11268
11268
|
) }, lt.name);
|
|
11269
11269
|
}) });
|
|
11270
|
-
return rt ? /* @__PURE__ */ m(xt, { sx: { ...Ae, ...(He == null ? void 0 : He.cardSx) || {} }, ...(He == null ? void 0 : He.cardProps) || {}, children: zt }, `tab-group-${Be}`) : /* @__PURE__ */ m(
|
|
11270
|
+
return rt ? /* @__PURE__ */ m(xt, { sx: { ...Ae, ...(He == null ? void 0 : He.cardSx) || {} }, ...(He == null ? void 0 : He.cardProps) || {}, children: zt }, `tab-group-${Be}`) : /* @__PURE__ */ m(ee, { sx: { display: "grid", gridTemplateColumns: "repeat(12, 1fr)", gap: 2, width: "100%", mt: 1 }, children: zt }, `tab-group-${Be}`);
|
|
11271
11271
|
}) });
|
|
11272
11272
|
})()
|
|
11273
11273
|
] });
|
|
@@ -11275,13 +11275,13 @@ const _c = ({
|
|
|
11275
11275
|
}
|
|
11276
11276
|
);
|
|
11277
11277
|
case "grid":
|
|
11278
|
-
const
|
|
11278
|
+
const ue = e.defaultRows || [];
|
|
11279
11279
|
return /* @__PURE__ */ m(
|
|
11280
11280
|
je,
|
|
11281
11281
|
{
|
|
11282
11282
|
name: e.name,
|
|
11283
11283
|
control: t,
|
|
11284
|
-
defaultValue:
|
|
11284
|
+
defaultValue: ue.length > 0 ? ue : _() || [],
|
|
11285
11285
|
render: () => /* @__PURE__ */ m(
|
|
11286
11286
|
$m,
|
|
11287
11287
|
{
|
|
@@ -11408,7 +11408,7 @@ const _c = ({
|
|
|
11408
11408
|
}
|
|
11409
11409
|
);
|
|
11410
11410
|
case "select":
|
|
11411
|
-
const
|
|
11411
|
+
const J = fe();
|
|
11412
11412
|
return /* @__PURE__ */ m(
|
|
11413
11413
|
je,
|
|
11414
11414
|
{
|
|
@@ -11423,7 +11423,7 @@ const _c = ({
|
|
|
11423
11423
|
labelVariant: e.labelVariant,
|
|
11424
11424
|
value: C.value,
|
|
11425
11425
|
onChange: C.onChange,
|
|
11426
|
-
options:
|
|
11426
|
+
options: J,
|
|
11427
11427
|
disabled: e.disabled || pe,
|
|
11428
11428
|
placeholder: e.labelPosition === "inner" || e.labelPosition === "none" || !e.labelPosition ? e.placeholder || (e.labelPosition === "none" ? x(e.label) : void 0) : e.placeholder,
|
|
11429
11429
|
loading: pe,
|
|
@@ -11734,12 +11734,12 @@ const _c = ({
|
|
|
11734
11734
|
}
|
|
11735
11735
|
),
|
|
11736
11736
|
/* @__PURE__ */ se(
|
|
11737
|
-
|
|
11737
|
+
ee,
|
|
11738
11738
|
{
|
|
11739
11739
|
sx: { display: "flex", flexDirection: "column", gap: 1 },
|
|
11740
11740
|
children: [
|
|
11741
11741
|
/* @__PURE__ */ m(
|
|
11742
|
-
|
|
11742
|
+
ee,
|
|
11743
11743
|
{
|
|
11744
11744
|
sx: {
|
|
11745
11745
|
width: "30%",
|
|
@@ -11762,7 +11762,7 @@ const _c = ({
|
|
|
11762
11762
|
)
|
|
11763
11763
|
}
|
|
11764
11764
|
),
|
|
11765
|
-
/* @__PURE__ */ se(
|
|
11765
|
+
/* @__PURE__ */ se(ee, { sx: { flexGrow: 1 }, children: [
|
|
11766
11766
|
/* @__PURE__ */ m(
|
|
11767
11767
|
be,
|
|
11768
11768
|
{
|
|
@@ -11782,7 +11782,7 @@ const _c = ({
|
|
|
11782
11782
|
}
|
|
11783
11783
|
)
|
|
11784
11784
|
] }),
|
|
11785
|
-
/* @__PURE__ */ se(
|
|
11785
|
+
/* @__PURE__ */ se(ee, { sx: { display: "flex", gap: 1 }, children: [
|
|
11786
11786
|
/* @__PURE__ */ m(
|
|
11787
11787
|
Xe,
|
|
11788
11788
|
{
|
|
@@ -11828,7 +11828,7 @@ const _c = ({
|
|
|
11828
11828
|
children: [
|
|
11829
11829
|
/* @__PURE__ */ m(ku, { children: B.previewTitle || "Image preview" }),
|
|
11830
11830
|
/* @__PURE__ */ m(Tu, { children: /* @__PURE__ */ m(
|
|
11831
|
-
|
|
11831
|
+
ee,
|
|
11832
11832
|
{
|
|
11833
11833
|
sx: {
|
|
11834
11834
|
display: "flex",
|
|
@@ -11992,7 +11992,7 @@ const _c = ({
|
|
|
11992
11992
|
}
|
|
11993
11993
|
);
|
|
11994
11994
|
case "component":
|
|
11995
|
-
return /* @__PURE__ */ m(
|
|
11995
|
+
return /* @__PURE__ */ m(ee, { children: e.render ? typeof e.render == "function" ? (() => {
|
|
11996
11996
|
try {
|
|
11997
11997
|
return e.render(a || {}, { control: t, setValue: o });
|
|
11998
11998
|
} catch {
|
|
@@ -12016,8 +12016,8 @@ const _c = ({
|
|
|
12016
12016
|
} catch {
|
|
12017
12017
|
}
|
|
12018
12018
|
}, [a, e.name]);
|
|
12019
|
-
return /* @__PURE__ */ se(
|
|
12020
|
-
/* @__PURE__ */ m(
|
|
12019
|
+
return /* @__PURE__ */ se(ee, { sx: { display: "flex", alignItems: "center", gap: 0.3 }, children: [
|
|
12020
|
+
/* @__PURE__ */ m(ee, { sx: { flexGrow: 1 }, children: V ? he() : null }),
|
|
12021
12021
|
de && /* @__PURE__ */ m(
|
|
12022
12022
|
li,
|
|
12023
12023
|
{
|
|
@@ -13828,7 +13828,7 @@ const mg = (e) => {
|
|
|
13828
13828
|
},
|
|
13829
13829
|
children: [
|
|
13830
13830
|
/* @__PURE__ */ se(
|
|
13831
|
-
|
|
13831
|
+
ee,
|
|
13832
13832
|
{
|
|
13833
13833
|
sx: {
|
|
13834
13834
|
display: "flex",
|
|
@@ -13838,7 +13838,7 @@ const mg = (e) => {
|
|
|
13838
13838
|
},
|
|
13839
13839
|
children: [
|
|
13840
13840
|
/* @__PURE__ */ m(
|
|
13841
|
-
|
|
13841
|
+
ee,
|
|
13842
13842
|
{
|
|
13843
13843
|
sx: {
|
|
13844
13844
|
display: "flex",
|
|
@@ -13848,9 +13848,9 @@ const mg = (e) => {
|
|
|
13848
13848
|
},
|
|
13849
13849
|
children: o.map((d, u) => {
|
|
13850
13850
|
const h = d === e, g = d < e || a.includes(d), k = h || g ? "primary.main" : "#8F97A4";
|
|
13851
|
-
return /* @__PURE__ */ se(
|
|
13851
|
+
return /* @__PURE__ */ se(ee, { sx: { display: "flex", alignItems: "center" }, children: [
|
|
13852
13852
|
/* @__PURE__ */ se(
|
|
13853
|
-
|
|
13853
|
+
ee,
|
|
13854
13854
|
{
|
|
13855
13855
|
onClick: () => p(d) && r(d),
|
|
13856
13856
|
sx: {
|
|
@@ -13860,7 +13860,7 @@ const mg = (e) => {
|
|
|
13860
13860
|
},
|
|
13861
13861
|
children: [
|
|
13862
13862
|
/* @__PURE__ */ m(
|
|
13863
|
-
|
|
13863
|
+
ee,
|
|
13864
13864
|
{
|
|
13865
13865
|
sx: {
|
|
13866
13866
|
width: 24,
|
|
@@ -13891,7 +13891,7 @@ const mg = (e) => {
|
|
|
13891
13891
|
}
|
|
13892
13892
|
),
|
|
13893
13893
|
u < o.length - 1 && /* @__PURE__ */ m(
|
|
13894
|
-
|
|
13894
|
+
ee,
|
|
13895
13895
|
{
|
|
13896
13896
|
sx: {
|
|
13897
13897
|
width: 40,
|
|
@@ -13955,10 +13955,10 @@ const mg = (e) => {
|
|
|
13955
13955
|
`${s.text}-${l}`
|
|
13956
13956
|
);
|
|
13957
13957
|
};
|
|
13958
|
-
return /* @__PURE__ */ se(
|
|
13959
|
-
/* @__PURE__ */ m(
|
|
13960
|
-
/* @__PURE__ */ m(
|
|
13961
|
-
/* @__PURE__ */ m(
|
|
13958
|
+
return /* @__PURE__ */ se(ee, { sx: { mt: 3, display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
|
|
13959
|
+
/* @__PURE__ */ m(ee, { sx: { display: "flex", gap: 2 }, children: n.map((s, l) => o(s, l)) }),
|
|
13960
|
+
/* @__PURE__ */ m(ee, { sx: { display: "flex", gap: 2 }, children: i.map((s, l) => o(s, l)) }),
|
|
13961
|
+
/* @__PURE__ */ m(ee, { sx: { display: "flex", gap: 2 }, children: a.map((s, l) => o(s, l)) })
|
|
13962
13962
|
] });
|
|
13963
13963
|
}, vg = ({
|
|
13964
13964
|
config: e,
|
|
@@ -14010,7 +14010,7 @@ const mg = (e) => {
|
|
|
14010
14010
|
return { ...v, justifyContent: "flex-end" };
|
|
14011
14011
|
}
|
|
14012
14012
|
};
|
|
14013
|
-
return p === "vertical" ? /* @__PURE__ */ m(
|
|
14013
|
+
return p === "vertical" ? /* @__PURE__ */ m(ee, { sx: S(), children: s.map((v, w) => /* @__PURE__ */ m(ee, { sx: { width: "100%" }, children: f(v, w) }, w)) }) : /* @__PURE__ */ m(ee, { sx: S(), children: /* @__PURE__ */ m(Fu, { variant: "outlined", size: "medium", children: s.map((v, w) => f(v, w)) }) });
|
|
14014
14014
|
}, xg = new wp({
|
|
14015
14015
|
defaultOptions: {
|
|
14016
14016
|
queries: {
|
|
@@ -14050,7 +14050,7 @@ const mg = (e) => {
|
|
|
14050
14050
|
...new Set(
|
|
14051
14051
|
r.map((G) => G.step).filter((G) => G != null && G > 0)
|
|
14052
14052
|
)
|
|
14053
|
-
].sort((G,
|
|
14053
|
+
].sort((G, ue) => (G || 0) - (ue || 0)), w = v.length > 1, D = v.length || 1, [b, x] = Pt(1), _ = w ? r.filter((G) => G.step === b) : r, M = Ke(
|
|
14054
14054
|
() => mg(_),
|
|
14055
14055
|
[_]
|
|
14056
14056
|
), {
|
|
@@ -14065,46 +14065,46 @@ const mg = (e) => {
|
|
|
14065
14065
|
resolver: np(M),
|
|
14066
14066
|
mode: "onChange",
|
|
14067
14067
|
defaultValues: s
|
|
14068
|
-
}),
|
|
14068
|
+
}), H = P(), ae = gt({});
|
|
14069
14069
|
jt(() => {
|
|
14070
14070
|
const G = [];
|
|
14071
|
-
for (const
|
|
14072
|
-
const
|
|
14073
|
-
|
|
14071
|
+
for (const ue of r) {
|
|
14072
|
+
const J = ue.depends_on;
|
|
14073
|
+
J && typeof ue.name == "string" && G.push({ dependentField: ue.name, dependencyName: J });
|
|
14074
14074
|
}
|
|
14075
14075
|
if (G.length !== 0)
|
|
14076
|
-
for (const { dependentField:
|
|
14077
|
-
const me = ae.current[
|
|
14076
|
+
for (const { dependentField: ue, dependencyName: J } of G) {
|
|
14077
|
+
const me = ae.current[J], y = H == null ? void 0 : H[J];
|
|
14078
14078
|
if (me !== y)
|
|
14079
14079
|
try {
|
|
14080
|
-
F(
|
|
14080
|
+
F(ue);
|
|
14081
14081
|
} catch {
|
|
14082
14082
|
}
|
|
14083
|
-
ae.current[
|
|
14083
|
+
ae.current[J] = y;
|
|
14084
14084
|
}
|
|
14085
|
-
}, [r,
|
|
14085
|
+
}, [r, H, F]);
|
|
14086
14086
|
const ge = gt(i);
|
|
14087
14087
|
jt(() => {
|
|
14088
14088
|
ge.current = i;
|
|
14089
14089
|
}, [i]);
|
|
14090
14090
|
const pe = Ke(() => {
|
|
14091
14091
|
try {
|
|
14092
|
-
return JSON.stringify(
|
|
14092
|
+
return JSON.stringify(H);
|
|
14093
14093
|
} catch {
|
|
14094
14094
|
return String(Date.now());
|
|
14095
14095
|
}
|
|
14096
|
-
}, [
|
|
14096
|
+
}, [H]), U = gt(null);
|
|
14097
14097
|
jt(() => {
|
|
14098
|
-
ge.current && U.current !== pe && (U.current = pe, ge.current(
|
|
14098
|
+
ge.current && U.current !== pe && (U.current = pe, ge.current(H));
|
|
14099
14099
|
}, [pe]);
|
|
14100
14100
|
const z = async () => {
|
|
14101
14101
|
if (!w) return !0;
|
|
14102
|
-
const G = r.filter((
|
|
14103
|
-
for (const
|
|
14104
|
-
if (
|
|
14105
|
-
const me =
|
|
14102
|
+
const G = r.filter((J) => J.step === b);
|
|
14103
|
+
for (const J of G)
|
|
14104
|
+
if (J.required) {
|
|
14105
|
+
const me = H[J.name];
|
|
14106
14106
|
let y = !0;
|
|
14107
|
-
if (
|
|
14107
|
+
if (J.type === "checkbox" ? y = me === !0 : Array.isArray(me) ? y = me.length > 0 : y = me != null && me !== "", !y)
|
|
14108
14108
|
return !1;
|
|
14109
14109
|
}
|
|
14110
14110
|
return await N() ? !0 : Object.keys(c).filter((me) => G.some((y) => y.name === me)).map((me) => {
|
|
@@ -14113,29 +14113,29 @@ const mg = (e) => {
|
|
|
14113
14113
|
}).length === 0;
|
|
14114
14114
|
}, W = Ke(() => {
|
|
14115
14115
|
if (!w) return !0;
|
|
14116
|
-
const G = r.filter((
|
|
14117
|
-
for (const
|
|
14118
|
-
if (
|
|
14119
|
-
const me =
|
|
14116
|
+
const G = r.filter((J) => J.step === b);
|
|
14117
|
+
for (const J of G)
|
|
14118
|
+
if (J.required) {
|
|
14119
|
+
const me = H[J.name];
|
|
14120
14120
|
let y = !0;
|
|
14121
|
-
if (
|
|
14121
|
+
if (J.type === "checkbox" ? y = me === !0 : Array.isArray(me) ? y = me.length > 0 : y = me != null && me !== "", !y)
|
|
14122
14122
|
return !1;
|
|
14123
14123
|
}
|
|
14124
14124
|
return Object.keys(c).filter(
|
|
14125
|
-
(
|
|
14125
|
+
(J) => G.some((me) => me.name === J)
|
|
14126
14126
|
).length === 0;
|
|
14127
|
-
}, [w, b, r,
|
|
14127
|
+
}, [w, b, r, H, c]), fe = Ke(() => {
|
|
14128
14128
|
if (w)
|
|
14129
14129
|
return W;
|
|
14130
14130
|
for (const G of r)
|
|
14131
14131
|
if (G.required) {
|
|
14132
|
-
const
|
|
14133
|
-
let
|
|
14134
|
-
if (G.type === "checkbox" ?
|
|
14132
|
+
const ue = H[G.name];
|
|
14133
|
+
let J = !0;
|
|
14134
|
+
if (G.type === "checkbox" ? J = ue === !0 : J = ue != null && ue !== "" && !(Array.isArray(ue) && ue.length === 0), !J)
|
|
14135
14135
|
return !1;
|
|
14136
14136
|
}
|
|
14137
14137
|
return Object.keys(c).length === 0;
|
|
14138
|
-
}, [w, W, r,
|
|
14138
|
+
}, [w, W, r, H, c]), he = async (G) => {
|
|
14139
14139
|
G < 1 || G > D || G > b && w && !await z() || x(G);
|
|
14140
14140
|
}, de = async (G) => {
|
|
14141
14141
|
if (w && b < D) {
|
|
@@ -14174,13 +14174,13 @@ const mg = (e) => {
|
|
|
14174
14174
|
if (d && d.buttons && d.buttons.length > 0) {
|
|
14175
14175
|
const G = {
|
|
14176
14176
|
...d,
|
|
14177
|
-
buttons: d.buttons.map((
|
|
14178
|
-
const
|
|
14177
|
+
buttons: d.buttons.map((ue) => {
|
|
14178
|
+
const J = (ue.text || "").toLowerCase(), me = ue.type === "submit" || J.includes("submit") || J.includes("save") || J.includes("finish") || J.includes("complete"), y = J.includes("next");
|
|
14179
14179
|
let C = !1;
|
|
14180
|
-
return w ? (me || y) && (C = !W) : me && (C = !fe), { ...
|
|
14180
|
+
return w ? (me || y) && (C = !W) : me && (C = !fe), { ...ue, disabled: ue.disabled || C };
|
|
14181
14181
|
})
|
|
14182
14182
|
};
|
|
14183
|
-
return /* @__PURE__ */ m(
|
|
14183
|
+
return /* @__PURE__ */ m(ee, { sx: { mt: 3 }, children: /* @__PURE__ */ m(
|
|
14184
14184
|
vg,
|
|
14185
14185
|
{
|
|
14186
14186
|
config: G,
|
|
@@ -14189,23 +14189,23 @@ const mg = (e) => {
|
|
|
14189
14189
|
currentStep: b,
|
|
14190
14190
|
totalSteps: D,
|
|
14191
14191
|
isMultiStep: w,
|
|
14192
|
-
formData:
|
|
14192
|
+
formData: H
|
|
14193
14193
|
}
|
|
14194
14194
|
) });
|
|
14195
14195
|
}
|
|
14196
14196
|
if (p && p.length > 0) {
|
|
14197
|
-
const G = p.map((
|
|
14198
|
-
const
|
|
14197
|
+
const G = p.map((ue) => {
|
|
14198
|
+
const J = (ue.text || "").toLowerCase(), me = ue.type === "submit" || J.includes("submit") || J.includes("save") || J.includes("finish") || J.includes("complete"), y = J.includes("next");
|
|
14199
14199
|
let C = !1;
|
|
14200
14200
|
return w ? (me || y) && (C = !W) : me && (C = !fe), {
|
|
14201
|
-
...
|
|
14202
|
-
disabled:
|
|
14201
|
+
...ue,
|
|
14202
|
+
disabled: ue.disabled || C
|
|
14203
14203
|
};
|
|
14204
14204
|
});
|
|
14205
14205
|
return /* @__PURE__ */ m(yg, { buttons: G });
|
|
14206
14206
|
}
|
|
14207
14207
|
return l ? /* @__PURE__ */ m(
|
|
14208
|
-
|
|
14208
|
+
ee,
|
|
14209
14209
|
{
|
|
14210
14210
|
sx: {
|
|
14211
14211
|
mt: 3,
|
|
@@ -14214,7 +14214,7 @@ const mg = (e) => {
|
|
|
14214
14214
|
flexDirection: "column",
|
|
14215
14215
|
alignItems: "flex-end"
|
|
14216
14216
|
},
|
|
14217
|
-
children: /* @__PURE__ */ se(
|
|
14217
|
+
children: /* @__PURE__ */ se(ee, { sx: { display: "flex", gap: 2 }, children: [
|
|
14218
14218
|
w && b > 1 && /* @__PURE__ */ m(
|
|
14219
14219
|
Xe,
|
|
14220
14220
|
{
|
|
@@ -14265,28 +14265,30 @@ const mg = (e) => {
|
|
|
14265
14265
|
] })
|
|
14266
14266
|
}
|
|
14267
14267
|
) : null;
|
|
14268
|
-
},
|
|
14269
|
-
const
|
|
14270
|
-
if (
|
|
14271
|
-
|
|
14272
|
-
|
|
14273
|
-
|
|
14274
|
-
|
|
14268
|
+
}, ce = Ne((G, ue) => {
|
|
14269
|
+
const J = G.showWhen;
|
|
14270
|
+
if (J) {
|
|
14271
|
+
if (typeof J == "function")
|
|
14272
|
+
try {
|
|
14273
|
+
return !!J(ue || {});
|
|
14274
|
+
} catch {
|
|
14275
|
+
return !0;
|
|
14276
|
+
}
|
|
14277
|
+
if (J && typeof J == "object") {
|
|
14278
|
+
const me = J.field, y = J.equals, C = J.in, T = me ? (ue || {})[me] : void 0;
|
|
14279
|
+
if (me && typeof y < "u") return T === y;
|
|
14280
|
+
if (me && Array.isArray(C)) return C.includes(T);
|
|
14275
14281
|
}
|
|
14276
|
-
if (ee && typeof ee == "object") {
|
|
14277
|
-
const me = ee.field, y = ee.equals, C = ee.in, T = me ? (ce || {})[me] : void 0;
|
|
14278
|
-
if (me && typeof y < "u") return T === y;
|
|
14279
|
-
if (me && Array.isArray(C)) return C.includes(T);
|
|
14280
14282
|
}
|
|
14281
14283
|
return !0;
|
|
14282
14284
|
}, []), Ee = Ke(() => {
|
|
14283
14285
|
const G = [];
|
|
14284
|
-
let
|
|
14285
|
-
for (const
|
|
14286
|
-
|
|
14287
|
-
return
|
|
14288
|
-
}, [_]),
|
|
14289
|
-
|
|
14286
|
+
let ue = [];
|
|
14287
|
+
for (const J of _)
|
|
14288
|
+
J.type === "section" && ue.length > 0 ? (G.push(ue), ue = [J]) : ue.push(J);
|
|
14289
|
+
return ue.length > 0 && G.push(ue), G;
|
|
14290
|
+
}, [_]), K = /* @__PURE__ */ se(
|
|
14291
|
+
ee,
|
|
14290
14292
|
{
|
|
14291
14293
|
component: "form",
|
|
14292
14294
|
onSubmit: (G) => {
|
|
@@ -14311,11 +14313,11 @@ const mg = (e) => {
|
|
|
14311
14313
|
showStepTitles: (S == null ? void 0 : S.showStepTitles) !== !1
|
|
14312
14314
|
}
|
|
14313
14315
|
),
|
|
14314
|
-
Ee.map((G,
|
|
14315
|
-
const
|
|
14316
|
-
if (
|
|
14316
|
+
Ee.map((G, ue) => {
|
|
14317
|
+
const J = G.find((q) => q.type === "section");
|
|
14318
|
+
if (J && !ce(J, H))
|
|
14317
14319
|
return null;
|
|
14318
|
-
const me = (
|
|
14320
|
+
const me = (J == null ? void 0 : J.cardWrap) !== !1, y = {
|
|
14319
14321
|
p: 2,
|
|
14320
14322
|
boxShadow: "0px 1px 4px 0px #00000029",
|
|
14321
14323
|
background: "#FFFFFF",
|
|
@@ -14332,8 +14334,10 @@ const mg = (e) => {
|
|
|
14332
14334
|
width: "100%",
|
|
14333
14335
|
mb: 2
|
|
14334
14336
|
}, T = /* @__PURE__ */ m(Fi, { children: G.map((q) => {
|
|
14337
|
+
if (!ce(q, H))
|
|
14338
|
+
return null;
|
|
14335
14339
|
const R = X(q);
|
|
14336
|
-
return /* @__PURE__ */ m(
|
|
14340
|
+
return /* @__PURE__ */ m(ee, { sx: { gridColumn: `span ${R}` }, children: /* @__PURE__ */ m(
|
|
14337
14341
|
_c,
|
|
14338
14342
|
{
|
|
14339
14343
|
field: q,
|
|
@@ -14341,7 +14345,7 @@ const mg = (e) => {
|
|
|
14341
14345
|
errors: c,
|
|
14342
14346
|
baseUrl: k,
|
|
14343
14347
|
apiHeaders: f,
|
|
14344
|
-
formData:
|
|
14348
|
+
formData: H,
|
|
14345
14349
|
setValue: V
|
|
14346
14350
|
}
|
|
14347
14351
|
) }, q.name);
|
|
@@ -14349,12 +14353,12 @@ const mg = (e) => {
|
|
|
14349
14353
|
return me ? /* @__PURE__ */ m(
|
|
14350
14354
|
xt,
|
|
14351
14355
|
{
|
|
14352
|
-
sx: { ...y, ...(
|
|
14353
|
-
...(
|
|
14356
|
+
sx: { ...y, ...(J == null ? void 0 : J.cardSx) || {} },
|
|
14357
|
+
...(J == null ? void 0 : J.cardProps) || {},
|
|
14354
14358
|
children: T
|
|
14355
14359
|
},
|
|
14356
|
-
`group-${
|
|
14357
|
-
) : /* @__PURE__ */ m(
|
|
14360
|
+
`group-${ue}`
|
|
14361
|
+
) : /* @__PURE__ */ m(ee, { sx: C, children: T }, `group-${ue}`);
|
|
14358
14362
|
}),
|
|
14359
14363
|
le()
|
|
14360
14364
|
]
|
|
@@ -14370,9 +14374,9 @@ const mg = (e) => {
|
|
|
14370
14374
|
...h
|
|
14371
14375
|
},
|
|
14372
14376
|
...g,
|
|
14373
|
-
children:
|
|
14377
|
+
children: K
|
|
14374
14378
|
}
|
|
14375
|
-
) :
|
|
14379
|
+
) : K;
|
|
14376
14380
|
return ie ? /* @__PURE__ */ m(Ru, { theme: ie, children: Me }) : Me;
|
|
14377
14381
|
}, Iy = ({
|
|
14378
14382
|
src: e,
|
|
@@ -14382,7 +14386,7 @@ const mg = (e) => {
|
|
|
14382
14386
|
style: i,
|
|
14383
14387
|
className: a,
|
|
14384
14388
|
onClick: o
|
|
14385
|
-
}) => /* @__PURE__ */ m(
|
|
14389
|
+
}) => /* @__PURE__ */ m(ee, { sx: { textAlign: "center" }, children: /* @__PURE__ */ m(
|
|
14386
14390
|
"img",
|
|
14387
14391
|
{
|
|
14388
14392
|
src: e || "/placeholder-image.png",
|
|
@@ -16310,10 +16314,10 @@ function ru() {
|
|
|
16310
16314
|
return typeof S == "function" ? S : pl;
|
|
16311
16315
|
}, [S]), F = Ke(function() {
|
|
16312
16316
|
return typeof f == "function" ? f : pl;
|
|
16313
|
-
}, [f]), N = gt(null),
|
|
16317
|
+
}, [f]), N = gt(null), H = gt(null), ae = ou(my, Xa), ge = ya(ae, 2), pe = ge[0], U = ge[1], z = pe.isFocused, W = pe.isFileDialogActive, fe = gt(typeof window < "u" && window.isSecureContext && v && Xg()), he = function() {
|
|
16314
16318
|
!fe.current && W && setTimeout(function() {
|
|
16315
|
-
if (
|
|
16316
|
-
var I =
|
|
16319
|
+
if (H.current) {
|
|
16320
|
+
var I = H.current.files;
|
|
16317
16321
|
I.length || (U({
|
|
16318
16322
|
type: "closeDialog"
|
|
16319
16323
|
}), F());
|
|
@@ -16324,7 +16328,7 @@ function ru() {
|
|
|
16324
16328
|
return window.addEventListener("focus", he, !1), function() {
|
|
16325
16329
|
window.removeEventListener("focus", he, !1);
|
|
16326
16330
|
};
|
|
16327
|
-
}, [
|
|
16331
|
+
}, [H, W, F, fe]);
|
|
16328
16332
|
var de = gt([]), ve = function(I) {
|
|
16329
16333
|
N.current && N.current.contains(I.target) || (I.preventDefault(), de.current = []);
|
|
16330
16334
|
};
|
|
@@ -16380,7 +16384,7 @@ function ru() {
|
|
|
16380
16384
|
isDragAccept: !1,
|
|
16381
16385
|
isDragReject: !1
|
|
16382
16386
|
}), ri(R) && d && d(R));
|
|
16383
|
-
}, [N, d, M]),
|
|
16387
|
+
}, [N, d, M]), ce = Ne(function(R, I) {
|
|
16384
16388
|
var Q = [], ne = [];
|
|
16385
16389
|
R.forEach(function(B) {
|
|
16386
16390
|
var xe = Gc(B, c), Ae = ya(xe, 2), Fe = Ae[0], Be = Ae[1], He = Zc(B, o, a), rt = ya(He, 2), zt = rt[0], lt = rt[1], ht = $ ? $(B) : null;
|
|
@@ -16408,13 +16412,13 @@ function ru() {
|
|
|
16408
16412
|
}), h && h(Q, ne, I), ne.length > 0 && k && k(ne, I), Q.length > 0 && g && g(Q, I);
|
|
16409
16413
|
}, [U, s, c, o, a, l, h, g, k, $]), Ee = Ne(function(R) {
|
|
16410
16414
|
R.preventDefault(), R.persist(), y(R), de.current = [], ri(R) && Promise.resolve(i(R)).then(function(I) {
|
|
16411
|
-
Oi(R) && !M ||
|
|
16415
|
+
Oi(R) && !M || ce(I, R);
|
|
16412
16416
|
}).catch(function(I) {
|
|
16413
16417
|
return L(I);
|
|
16414
16418
|
}), U({
|
|
16415
16419
|
type: "reset"
|
|
16416
16420
|
});
|
|
16417
|
-
}, [i,
|
|
16421
|
+
}, [i, ce, L, M]), K = Ne(function() {
|
|
16418
16422
|
if (fe.current) {
|
|
16419
16423
|
U({
|
|
16420
16424
|
type: "openDialog"
|
|
@@ -16426,22 +16430,22 @@ function ru() {
|
|
|
16426
16430
|
window.showOpenFilePicker(R).then(function(I) {
|
|
16427
16431
|
return i(I);
|
|
16428
16432
|
}).then(function(I) {
|
|
16429
|
-
|
|
16433
|
+
ce(I, null), U({
|
|
16430
16434
|
type: "closeDialog"
|
|
16431
16435
|
});
|
|
16432
16436
|
}).catch(function(I) {
|
|
16433
16437
|
ty(I) ? (F(I), U({
|
|
16434
16438
|
type: "closeDialog"
|
|
16435
|
-
})) : ry(I) ? (fe.current = !1,
|
|
16439
|
+
})) : ry(I) ? (fe.current = !1, H.current ? (H.current.value = null, H.current.click()) : L(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no <input> was provided."))) : L(I);
|
|
16436
16440
|
});
|
|
16437
16441
|
return;
|
|
16438
16442
|
}
|
|
16439
|
-
|
|
16443
|
+
H.current && (U({
|
|
16440
16444
|
type: "openDialog"
|
|
16441
|
-
}), V(),
|
|
16442
|
-
}, [U, V, F, v,
|
|
16443
|
-
!N.current || !N.current.isEqualNode(R.target) || (R.key === " " || R.key === "Enter" || R.keyCode === 32 || R.keyCode === 13) && (R.preventDefault(),
|
|
16444
|
-
}, [N,
|
|
16445
|
+
}), V(), H.current.value = null, H.current.click());
|
|
16446
|
+
}, [U, V, F, v, ce, L, P, s]), Me = Ne(function(R) {
|
|
16447
|
+
!N.current || !N.current.isEqualNode(R.target) || (R.key === " " || R.key === "Enter" || R.keyCode === 32 || R.keyCode === 13) && (R.preventDefault(), K());
|
|
16448
|
+
}, [N, K]), Ge = Ne(function() {
|
|
16445
16449
|
U({
|
|
16446
16450
|
type: "focus"
|
|
16447
16451
|
});
|
|
@@ -16450,23 +16454,23 @@ function ru() {
|
|
|
16450
16454
|
type: "blur"
|
|
16451
16455
|
});
|
|
16452
16456
|
}, []), G = Ne(function() {
|
|
16453
|
-
b || (Zg() ? setTimeout(
|
|
16454
|
-
}, [b,
|
|
16457
|
+
b || (Zg() ? setTimeout(K, 0) : K());
|
|
16458
|
+
}, [b, K]), ue = function(I) {
|
|
16455
16459
|
return n ? null : I;
|
|
16456
|
-
},
|
|
16457
|
-
return x ? null :
|
|
16460
|
+
}, J = function(I) {
|
|
16461
|
+
return x ? null : ue(I);
|
|
16458
16462
|
}, me = function(I) {
|
|
16459
|
-
return _ ? null :
|
|
16463
|
+
return _ ? null : ue(I);
|
|
16460
16464
|
}, y = function(I) {
|
|
16461
16465
|
M && I.stopPropagation();
|
|
16462
16466
|
}, C = Ke(function() {
|
|
16463
16467
|
return function() {
|
|
16464
16468
|
var R = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, I = R.refKey, Q = I === void 0 ? "ref" : I, ne = R.role, B = R.onKeyDown, xe = R.onFocus, Ae = R.onBlur, Fe = R.onClick, Be = R.onDragEnter, He = R.onDragOver, rt = R.onDragLeave, zt = R.onDrop, lt = Ai(R, ay);
|
|
16465
16469
|
return Ve(Ve(Za({
|
|
16466
|
-
onKeyDown:
|
|
16467
|
-
onFocus:
|
|
16468
|
-
onBlur:
|
|
16469
|
-
onClick:
|
|
16470
|
+
onKeyDown: J(Nt(B, Me)),
|
|
16471
|
+
onFocus: J(Nt(xe, Ge)),
|
|
16472
|
+
onBlur: J(Nt(Ae, et)),
|
|
16473
|
+
onClick: ue(Nt(Fe, G)),
|
|
16470
16474
|
onDragEnter: me(Nt(Be, X)),
|
|
16471
16475
|
onDragOver: me(Nt(He, ie)),
|
|
16472
16476
|
onDragLeave: me(Nt(rt, le)),
|
|
@@ -16496,20 +16500,20 @@ function ru() {
|
|
|
16496
16500
|
width: "1px",
|
|
16497
16501
|
whiteSpace: "nowrap"
|
|
16498
16502
|
},
|
|
16499
|
-
onChange:
|
|
16500
|
-
onClick:
|
|
16503
|
+
onChange: ue(Nt(ne, Ee)),
|
|
16504
|
+
onClick: ue(Nt(B, T)),
|
|
16501
16505
|
tabIndex: -1
|
|
16502
|
-
}, Q,
|
|
16506
|
+
}, Q, H);
|
|
16503
16507
|
return Ve(Ve({}, Ae), xe);
|
|
16504
16508
|
};
|
|
16505
|
-
}, [
|
|
16509
|
+
}, [H, r, s, Ee, n]);
|
|
16506
16510
|
return Ve(Ve({}, pe), {}, {
|
|
16507
16511
|
isFocused: z && !n,
|
|
16508
16512
|
getRootProps: C,
|
|
16509
16513
|
getInputProps: q,
|
|
16510
16514
|
rootRef: N,
|
|
16511
|
-
inputRef:
|
|
16512
|
-
open:
|
|
16515
|
+
inputRef: H,
|
|
16516
|
+
open: ue(K)
|
|
16513
16517
|
});
|
|
16514
16518
|
}
|
|
16515
16519
|
function my(e, t) {
|
|
@@ -16588,11 +16592,11 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16588
16592
|
border: "1px solid #e0e0e0"
|
|
16589
16593
|
},
|
|
16590
16594
|
children: [
|
|
16591
|
-
/* @__PURE__ */ se(
|
|
16595
|
+
/* @__PURE__ */ se(ee, { sx: { display: "flex", alignItems: "center", gap: 1 }, children: [
|
|
16592
16596
|
r(),
|
|
16593
16597
|
n()
|
|
16594
16598
|
] }),
|
|
16595
|
-
/* @__PURE__ */ se(
|
|
16599
|
+
/* @__PURE__ */ se(ee, { sx: { flex: 1, minWidth: 0 }, children: [
|
|
16596
16600
|
/* @__PURE__ */ m(be, { variant: "body2", noWrap: !0, children: e.file.name }),
|
|
16597
16601
|
/* @__PURE__ */ se(be, { variant: "caption", color: "textSecondary", children: [
|
|
16598
16602
|
i(e.file.size),
|
|
@@ -16646,7 +16650,7 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16646
16650
|
), M = Ne(
|
|
16647
16651
|
async (N) => {
|
|
16648
16652
|
console.log("handleFiles called with:", N.length, "files"), S(!0);
|
|
16649
|
-
const
|
|
16653
|
+
const H = [], ae = [];
|
|
16650
16654
|
try {
|
|
16651
16655
|
for (const pe of N) {
|
|
16652
16656
|
let U = null;
|
|
@@ -16674,10 +16678,10 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16674
16678
|
status: "pending",
|
|
16675
16679
|
uploadedAt: /* @__PURE__ */ new Date()
|
|
16676
16680
|
};
|
|
16677
|
-
|
|
16681
|
+
H.push(z);
|
|
16678
16682
|
}
|
|
16679
16683
|
}
|
|
16680
|
-
const ge = e != null && e.multiple ? [...u, ...
|
|
16684
|
+
const ge = e != null && e.multiple ? [...u, ...H] : H;
|
|
16681
16685
|
h(ge), r == null || r(ge), ae.length > 0 ? (b(ae), k(ae)) : (b([]), k([]));
|
|
16682
16686
|
} catch (ge) {
|
|
16683
16687
|
const pe = `Unexpected error: ${ge instanceof Error ? ge.message : "Unknown error"}`;
|
|
@@ -16688,8 +16692,8 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16688
16692
|
), A = Ne(
|
|
16689
16693
|
(N) => {
|
|
16690
16694
|
S(!0);
|
|
16691
|
-
const
|
|
16692
|
-
h(
|
|
16695
|
+
const H = u.filter((ae) => ae.id !== N);
|
|
16696
|
+
h(H), r == null || r(H), b([]), x.current && (x.current.value = "");
|
|
16693
16697
|
},
|
|
16694
16698
|
[u, r]
|
|
16695
16699
|
), $ = Ne(() => {
|
|
@@ -16698,7 +16702,7 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16698
16702
|
return;
|
|
16699
16703
|
}
|
|
16700
16704
|
b([]), w(!0);
|
|
16701
|
-
const N = u.filter((
|
|
16705
|
+
const N = u.filter((H) => H.status !== "error");
|
|
16702
16706
|
n == null || n(N);
|
|
16703
16707
|
}, [u, n, e == null ? void 0 : e.required, e == null ? void 0 : e.title]), { getRootProps: c, getInputProps: P, isDragActive: V } = ru({
|
|
16704
16708
|
onDrop: M,
|
|
@@ -16709,8 +16713,8 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16709
16713
|
});
|
|
16710
16714
|
jt(() => {
|
|
16711
16715
|
if (!f) return;
|
|
16712
|
-
const N = [],
|
|
16713
|
-
|
|
16716
|
+
const N = [], H = [...D, ...N];
|
|
16717
|
+
H.length > 0 ? k(H) : k([]);
|
|
16714
16718
|
}, [
|
|
16715
16719
|
u,
|
|
16716
16720
|
e == null ? void 0 : e.required,
|
|
@@ -16732,7 +16736,7 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16732
16736
|
return "flex-end";
|
|
16733
16737
|
}
|
|
16734
16738
|
};
|
|
16735
|
-
return /* @__PURE__ */ se(
|
|
16739
|
+
return /* @__PURE__ */ se(ee, { className: a, style: o, children: [
|
|
16736
16740
|
/* @__PURE__ */ se(be, { variant: "h6", gutterBottom: !0, children: [
|
|
16737
16741
|
e == null ? void 0 : e.title,
|
|
16738
16742
|
(e == null ? void 0 : e.required) && /* @__PURE__ */ m("span", { style: { color: "red" }, children: " *" })
|
|
@@ -16781,8 +16785,8 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16781
16785
|
}, sx: { my: 2 }, startIcon: /* @__PURE__ */ m(Ci, {}), variant: "contained", children: p }),
|
|
16782
16786
|
/* @__PURE__ */ m(be, { sx: { fontSize: "12px", fontWeight: 400 }, children: d })
|
|
16783
16787
|
),
|
|
16784
|
-
g.length > 0 && /* @__PURE__ */ m(Pu, { severity: "error", sx: { mt: 2 }, children: g.map((N,
|
|
16785
|
-
u.length > 0 && /* @__PURE__ */ se(
|
|
16788
|
+
g.length > 0 && /* @__PURE__ */ m(Pu, { severity: "error", sx: { mt: 2 }, children: g.map((N, H) => /* @__PURE__ */ m(be, { variant: "body2", children: N }, H)) }),
|
|
16789
|
+
u.length > 0 && /* @__PURE__ */ se(ee, { sx: { mt: 2 }, children: [
|
|
16786
16790
|
/* @__PURE__ */ se(be, { variant: "subtitle1", gutterBottom: !0, children: [
|
|
16787
16791
|
"Selected Files (",
|
|
16788
16792
|
u.length,
|
|
@@ -16800,7 +16804,7 @@ const gy = Ct(/* @__PURE__ */ m("path", {
|
|
|
16800
16804
|
}
|
|
16801
16805
|
),
|
|
16802
16806
|
(e == null ? void 0 : e.submitButton) && /* @__PURE__ */ m(
|
|
16803
|
-
|
|
16807
|
+
ee,
|
|
16804
16808
|
{
|
|
16805
16809
|
sx: {
|
|
16806
16810
|
mt: 3,
|