@m4l/styles 0.0.24 → 0.0.26

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.
Files changed (38) hide show
  1. package/index.js +10 -10
  2. package/package.json +1 -1
  3. package/theme/defaultThemeOptions.e09f6ae8.js +30 -0
  4. package/theme/index.e131f0b1.js +7 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +2 -4
  6. package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +13 -5
  7. package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +2 -4
  8. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +14154 -5524
  9. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +26 -15
  10. package/theme/overrides/M4LExtendedComponents/M4LAvatar.d.ts +1 -4
  11. package/theme/overrides/M4LExtendedComponents/M4LBadge.d.ts +18 -2
  12. package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +0 -3
  13. package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +204 -12
  14. package/theme/overrides/M4LExtendedComponents/M4LGridLayout.d.ts +10 -0
  15. package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +2 -8
  16. package/theme/overrides/M4LExtendedComponents/M4LNoItemSelected.d.ts +22 -0
  17. package/theme/overrides/M4LExtendedComponents/M4LPager.d.ts +2 -3
  18. package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +5 -1
  19. package/theme/overrides/M4LExtendedComponents/M4LScrollBar.d.ts +26 -0
  20. package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +179 -84
  21. package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +31 -0
  22. package/theme/overrides/M4LExtendedComponents/M4LStack.d.ts +14 -0
  23. package/theme/overrides/M4LExtendedComponents/M4LTabs.d.ts +16 -0
  24. package/theme/overrides/M4LExtendedComponents/{index.83dad55c.js → index.ebc4ec7a.js} +774 -428
  25. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +2 -0
  26. package/theme/overrides/M4LRHFComponents/{index.0e107243.js → index.3df47466.js} +2 -0
  27. package/theme/overrides/MUIComponents/Badge.d.ts +2 -0
  28. package/theme/overrides/MUIComponents/Tabs.d.ts +1 -2
  29. package/theme/overrides/MUIComponents/{index.1489876d.js → index.c5a85efa.js} +24 -23
  30. package/theme/overrides/index.ede1f7a6.js +98 -0
  31. package/theme/{palette.d06284f6.js → palette.b6e02e1c.js} +1 -1
  32. package/theme/{shadows.7ecb0e23.js → shadows.386e7ef4.js} +1 -1
  33. package/theme/{typography.b693a0c9.js → typography.006a6c85.js} +4 -4
  34. package/utils/{getColorPresets.826b8bc5.js → getColorPresets.241c5bac.js} +1 -1
  35. package/utils/{getColorState.c9741929.js → getColorState.f10d3d33.js} +18 -18
  36. package/theme/defaultThemeOptions.d50c50f1.js +0 -30
  37. package/theme/index.5e193e78.js +0 -7
  38. package/theme/overrides/index.03494fe3.js +0 -93
@@ -172,6 +172,8 @@ export declare const M4LRHFAutocomplete: (theme: Theme) => {
172
172
  styleOverrides: {
173
173
  '&.M4LRHFAutocomplete-popper': {
174
174
  test: string;
175
+ position: string;
176
+ zIndex: string;
175
177
  '& .MuiPaper-root': {
176
178
  boxShadow: string;
177
179
  };
@@ -384,6 +384,8 @@ const n = (t) => ({
384
384
  styleOverrides: {
385
385
  "&.M4LRHFAutocomplete-popper": {
386
386
  test: "root",
387
+ position: "fixed",
388
+ zIndex: "1300",
387
389
  "& .MuiPaper-root": {
388
390
  boxShadow: t.customShadows.z3
389
391
  }
@@ -2,10 +2,12 @@ import { Theme } from '@mui/material/styles';
2
2
  export default function Badge(_theme: Theme): {
3
3
  MuiBadge: {
4
4
  styleOverrides: {
5
+ background: string;
5
6
  dot: {
6
7
  width: number;
7
8
  height: number;
8
9
  borderRadius: string;
10
+ background: string;
9
11
  };
10
12
  };
11
13
  };
@@ -18,10 +18,9 @@ export default function Tabs(theme: Theme): {
18
18
  alignItems: string;
19
19
  gap: number;
20
20
  width: string;
21
+ height: string;
21
22
  boxShadow: string;
22
23
  background: string;
23
- borderTop: string;
24
- borderColor: string;
25
24
  };
26
25
  "& .MuiTabs-indicator": {
27
26
  backgroundColor: string;
@@ -200,10 +200,9 @@ function g(o) {
200
200
  alignItems: "center",
201
201
  gap: 4,
202
202
  width: "100%",
203
+ height: "36px",
203
204
  boxShadow: o.customShadows.z1,
204
- background: o.palette.background.default,
205
- borderTop: "1.5px solid",
206
- borderColor: o.palette.state.borderTop
205
+ background: o.palette.background.default
207
206
  },
208
207
  "& .MuiTabs-indicator": {
209
208
  backgroundColor: "transparent"
@@ -415,10 +414,12 @@ function f(o) {
415
414
  return {
416
415
  MuiBadge: {
417
416
  styleOverrides: {
417
+ background: "red",
418
418
  dot: {
419
419
  width: 10,
420
420
  height: 10,
421
- borderRadius: "50%"
421
+ borderRadius: "50%",
422
+ background: "red"
422
423
  }
423
424
  }
424
425
  }
@@ -602,7 +603,7 @@ function w(o) {
602
603
  }
603
604
  };
604
605
  }
605
- function S(o) {
606
+ function h(o) {
606
607
  return {
607
608
  MuiRadio: {
608
609
  styleOverrides: {
@@ -619,7 +620,7 @@ function S(o) {
619
620
  }
620
621
  };
621
622
  }
622
- function C(o) {
623
+ function S(o) {
623
624
  const r = o.palette.mode === "light";
624
625
  return {
625
626
  MuiDrawer: {
@@ -654,7 +655,7 @@ function C(o) {
654
655
  }
655
656
  };
656
657
  }
657
- function h(o) {
658
+ function C(o) {
658
659
  return {
659
660
  MuiDialog: {
660
661
  styleOverrides: {
@@ -783,7 +784,7 @@ function B(o) {
783
784
  }
784
785
  };
785
786
  }
786
- function T(o) {
787
+ function I(o) {
787
788
  const r = o.palette.mode === "light";
788
789
  return {
789
790
  MuiTooltip: {
@@ -798,7 +799,7 @@ function T(o) {
798
799
  }
799
800
  };
800
801
  }
801
- function I(o) {
802
+ function T(o) {
802
803
  return {
803
804
  MuiPopover: {
804
805
  styleOverrides: {
@@ -807,7 +808,7 @@ function I(o) {
807
808
  }
808
809
  };
809
810
  }
810
- function L(o) {
811
+ function m(o) {
811
812
  return {
812
813
  MuiStepConnector: {
813
814
  styleOverrides: {
@@ -818,7 +819,7 @@ function L(o) {
818
819
  }
819
820
  };
820
821
  }
821
- function m(o) {
822
+ function L(o) {
822
823
  return {
823
824
  MuiDataGrid: {
824
825
  styleOverrides: {
@@ -971,7 +972,7 @@ function z(o) {
971
972
  }
972
973
  };
973
974
  }
974
- function $(o) {
975
+ function A(o) {
975
976
  return {
976
977
  MuiTimelineDot: {
977
978
  styleOverrides: {
@@ -989,7 +990,7 @@ function $(o) {
989
990
  }
990
991
  };
991
992
  }
992
- function A(o) {
993
+ function $(o) {
993
994
  return {
994
995
  MuiCheckbox: {
995
996
  styleOverrides: {
@@ -1051,7 +1052,7 @@ function G(o) {
1051
1052
  "&.Mui-expanded": {
1052
1053
  height: o.spacing(4.5),
1053
1054
  minHeight: o.spacing(4.5),
1054
- borderRadius: `${o.spacing(0.5)} ${o.spacing(0.5)} 0px 0px`
1055
+ borderRadius: "4px"
1055
1056
  },
1056
1057
  "&.Mui-disabled": {
1057
1058
  opacity: 1,
@@ -1374,7 +1375,7 @@ export {
1374
1375
  s as A,
1375
1376
  f as B,
1376
1377
  c as C,
1377
- h as D,
1378
+ C as D,
1378
1379
  V as E,
1379
1380
  u as F,
1380
1381
  J as G,
@@ -1382,7 +1383,7 @@ export {
1382
1383
  y as L,
1383
1384
  b as M,
1384
1385
  v as P,
1385
- S as R,
1386
+ h as R,
1386
1387
  R as S,
1387
1388
  g as T,
1388
1389
  w as a,
@@ -1391,15 +1392,15 @@ export {
1391
1392
  l as d,
1392
1393
  p as e,
1393
1394
  O as f,
1394
- C as g,
1395
- L as h,
1396
- T as i,
1397
- I as j,
1395
+ S as g,
1396
+ m as h,
1397
+ I as i,
1398
+ T as j,
1398
1399
  B as k,
1399
- A as l,
1400
- m,
1400
+ $ as l,
1401
+ L as m,
1401
1402
  D as n,
1402
- $ as o,
1403
+ A as o,
1403
1404
  P as p,
1404
1405
  z as q,
1405
1406
  G as r,
@@ -0,0 +1,98 @@
1
+ import { F as s, T as o, C as r, M as L, L as M, I as n, a as i, R as p, B as d, b as l, c, P as u, S as g, d as B, e as A, D as F, A as P, f as b, g as T, h as y, i as I, j as v, k as C, l as D, m as R, n as S, o as k, p as H, q as f, r as x, s as w, t as G, u as j, v as E, w as N, x as q, y as z, z as O, E as V, G as J } from "./MUIComponents/index.c5a85efa.js";
2
+ import { M as K, a as U, b as t, c as Q, d as W, e as X, f as Y, g as Z, h as _, i as $, j as m, k as e, l as h, m as aa, n as sa, o as oa, p as ra, q as La, r as Ma, s as na, t as ia, u as pa, v as da, w as la, x as ca, y as ua, z as ga, A as Ba, B as Aa, C as Fa, D as Pa, E as ba, F as Ta, G as ya, H as Ia, I as va, J as Ca, K as Da, L as Ra, N as Sa } from "./M4LExtendedComponents/index.ebc4ec7a.js";
3
+ import { M as ka, a as Ha, b as fa, c as xa, d as wa, e as Ga, f as ja, g as Ea } from "./M4LRHFComponents/index.3df47466.js";
4
+ function Oa(a) {
5
+ return Object.assign(
6
+ s(a),
7
+ o(a),
8
+ r(a),
9
+ L(a),
10
+ M(a),
11
+ n(a),
12
+ i(),
13
+ p(a),
14
+ d(),
15
+ l(a),
16
+ c(a),
17
+ u(a),
18
+ g(a),
19
+ B(a),
20
+ A(a),
21
+ F(a),
22
+ P(a),
23
+ b(a),
24
+ T(a),
25
+ y(a),
26
+ I(a),
27
+ v(),
28
+ C(),
29
+ D(a),
30
+ R(a),
31
+ S(a),
32
+ k(a),
33
+ H(a),
34
+ f(a),
35
+ x(a),
36
+ w(a),
37
+ G(a),
38
+ j(a),
39
+ E(a),
40
+ N(),
41
+ q(a),
42
+ z(a),
43
+ O(a),
44
+ V(a),
45
+ K(a),
46
+ J(),
47
+ U(a),
48
+ ka(a),
49
+ Ha(),
50
+ fa(a),
51
+ xa(),
52
+ wa(a),
53
+ t(),
54
+ Ga(a),
55
+ ja(),
56
+ Q(a),
57
+ W(a),
58
+ X(),
59
+ Y(a),
60
+ Z(a),
61
+ _(),
62
+ $(a),
63
+ m(a),
64
+ Ea(a),
65
+ e(a),
66
+ h(a),
67
+ aa(a),
68
+ sa(a),
69
+ oa(a),
70
+ ra(a),
71
+ La(a),
72
+ Ma(a),
73
+ na(a),
74
+ ia(a),
75
+ pa(a),
76
+ da(),
77
+ la(a),
78
+ ca(),
79
+ ua(a),
80
+ ga(),
81
+ Ba(a),
82
+ Aa(a),
83
+ Fa(a),
84
+ Pa(a),
85
+ ba(a),
86
+ Ta(a),
87
+ ya(a),
88
+ Ia(a),
89
+ va(),
90
+ Ca(),
91
+ Da(),
92
+ Ra(a),
93
+ Sa()
94
+ );
95
+ }
96
+ export {
97
+ Oa as f
98
+ };
@@ -345,7 +345,7 @@ const e = {
345
345
  background: {
346
346
  paper: "#fff0",
347
347
  default: e.marbleLight[20],
348
- neutral: e.marbleLight[40],
348
+ neutral: e.marbleLight[50],
349
349
  background: e.marbleLight[70]
350
350
  },
351
351
  grid: { sectionHeader: "#F6F7F9", divider: "#EDEFF2", rowHover: "#FAFBFC" }
@@ -1,5 +1,5 @@
1
1
  import { alpha as a } from "@mui/material/styles";
2
- import { p as e, P as r } from "./palette.d06284f6.js";
2
+ import { p as e, P as r } from "./palette.b6e02e1c.js";
3
3
  const s = e.light.grey[500], n = "#000000", o = (t) => {
4
4
  const p = a(t, 0.2), x = a(t, 0.14), $ = a(t, 0.12);
5
5
  return [
@@ -1,10 +1,10 @@
1
1
  import "@mui/material/styles";
2
2
  import "@mui/material/useMediaQuery";
3
- import "../utils/getColorPresets.826b8bc5.js";
3
+ import "../utils/getColorPresets.241c5bac.js";
4
4
  import "@mui/system";
5
- import "./defaultThemeOptions.d50c50f1.js";
6
- import "./shadows.7ecb0e23.js";
7
- import "./palette.d06284f6.js";
5
+ import "./defaultThemeOptions.e09f6ae8.js";
6
+ import "./shadows.386e7ef4.js";
7
+ import "./palette.b6e02e1c.js";
8
8
  import "@mui/material";
9
9
  import { r as t, p as i } from "../utils/getFontValue.88831637.js";
10
10
  const e = "Poppins, sans-serif", p = {
@@ -1,4 +1,4 @@
1
- import { P as r } from "../theme/palette.d06284f6.js";
1
+ import { P as r } from "../theme/palette.b6e02e1c.js";
2
2
  const e = [
3
3
  {
4
4
  name: "patronus",
@@ -1,8 +1,8 @@
1
1
  import { alpha as r } from "@mui/system";
2
- import "../theme/defaultThemeOptions.d50c50f1.js";
3
- import "../theme/shadows.7ecb0e23.js";
4
- import { P as e, S as o } from "../theme/palette.d06284f6.js";
5
- import "../theme/typography.b693a0c9.js";
2
+ import "../theme/defaultThemeOptions.e09f6ae8.js";
3
+ import "../theme/shadows.386e7ef4.js";
4
+ import { P as e, S as o } from "../theme/palette.b6e02e1c.js";
5
+ import "../theme/typography.006a6c85.js";
6
6
  import "@mui/material";
7
7
  import "@mui/material/styles";
8
8
  const h = (a, l) => {
@@ -15,9 +15,9 @@ const h = (a, l) => {
15
15
  active: e?.patronusBlue[50],
16
16
  focus: e?.patronusBlue[40],
17
17
  hover: e?.patronusBlue[40],
18
- overdefoult: r(e?.coolGrey[60], 0.1),
19
- default: r(e?.marbleLight[40], 0.5),
20
- borderDefault: e?.coolGrey[40],
18
+ overdefoult: r(e?.coolGrey[30], 0.4),
19
+ default: r(e?.marbleLight[50], 0.75),
20
+ borderDefault: e?.coolGrey[30],
21
21
  borderTop: e?.marbleLight[10],
22
22
  toneOp: "#D9E9FC",
23
23
  ...o
@@ -28,7 +28,7 @@ const h = (a, l) => {
28
28
  focus: e?.patronusBlue[30],
29
29
  hover: e?.patronusBlue[30],
30
30
  overdefoult: r(e?.marbleLight[10], 0.1),
31
- default: r(e?.marbleLight[10], 0.04),
31
+ default: r(e?.marbleLight[70], 0.02),
32
32
  borderDefault: e?.coolGrey[20],
33
33
  borderTop: r(e?.marbleLight[10], 0.04),
34
34
  toneOp: "#2C4053",
@@ -44,7 +44,7 @@ const h = (a, l) => {
44
44
  focus: e?.turquiBlue[70],
45
45
  hover: e?.turquiBlue[70],
46
46
  overdefoult: r(e?.coolGrey[60], 0.1),
47
- default: r(e?.marbleLight[40], 0.5),
47
+ default: r(e?.marbleLight[50], 0.75),
48
48
  borderDefault: e?.coolGrey[40],
49
49
  borderTop: e?.marbleLight[10],
50
50
  toneOp: "#DEE9EB",
@@ -56,7 +56,7 @@ const h = (a, l) => {
56
56
  focus: e?.turquiBlue[30],
57
57
  hover: e?.turquiBlue[30],
58
58
  overdefoult: r(e?.marbleLight[10], 0.1),
59
- default: r(e?.marbleLight[10], 0.04),
59
+ default: r(e?.marbleLight[70], 0.02),
60
60
  borderDefault: e?.coolGrey[20],
61
61
  borderTop: r(e?.marbleLight[10], 0.04),
62
62
  toneOp: "#314042",
@@ -72,7 +72,7 @@ const h = (a, l) => {
72
72
  focus: e?.grassGreen[70],
73
73
  hover: e?.grassGreen[70],
74
74
  overdefoult: r(e?.coolGrey[60], 0.1),
75
- default: r(e?.marbleLight[40], 0.5),
75
+ default: r(e?.marbleLight[50], 0.75),
76
76
  borderDefault: e?.coolGrey[40],
77
77
  borderTop: e?.marbleLight[10],
78
78
  toneOp: "#D9ECE6",
@@ -84,7 +84,7 @@ const h = (a, l) => {
84
84
  focus: e?.grassGreen[40],
85
85
  hover: e?.grassGreen[40],
86
86
  overdefoult: r(e?.marbleLight[10], 0.1),
87
- default: r(e?.marbleLight[10], 0.04),
87
+ default: r(e?.marbleLight[70], 0.02),
88
88
  borderDefault: e?.coolGrey[20],
89
89
  borderTop: r(e?.marbleLight[10], 0.04),
90
90
  toneOp: "#2C433D",
@@ -100,7 +100,7 @@ const h = (a, l) => {
100
100
  focus: e?.brown[90],
101
101
  hover: e?.brown[90],
102
102
  overdefoult: r(e?.coolGrey[60], 0.1),
103
- default: r(e?.marbleLight[40], 0.5),
103
+ default: r(e?.marbleLight[50], 0.75),
104
104
  borderDefault: e?.coolGrey[40],
105
105
  borderTop: e?.marbleLight[10],
106
106
  toneOp: "#ECEAE6",
@@ -112,7 +112,7 @@ const h = (a, l) => {
112
112
  focus: e?.brown[30],
113
113
  hover: e?.brown[30],
114
114
  overdefoult: r(e?.marbleLight[10], 0.1),
115
- default: r(e?.marbleLight[10], 0.04),
115
+ default: r(e?.marbleLight[70], 0.02),
116
116
  borderDefault: e?.coolGrey[20],
117
117
  borderTop: r(e?.marbleLight[10], 0.04),
118
118
  toneOp: "#3F413D",
@@ -128,7 +128,7 @@ const h = (a, l) => {
128
128
  focus: e?.blazeOrange[70],
129
129
  hover: e?.blazeOrange[70],
130
130
  overdefoult: r(e?.coolGrey[60], 0.1),
131
- default: r(e?.marbleLight[40], 0.5),
131
+ default: r(e?.marbleLight[50], 0.75),
132
132
  borderDefault: e?.coolGrey[40],
133
133
  borderTop: e?.marbleLight[10],
134
134
  toneOp: "#F2F0EB",
@@ -140,7 +140,7 @@ const h = (a, l) => {
140
140
  focus: e?.blazeOrange[30],
141
141
  hover: e?.blazeOrange[30],
142
142
  overdefoult: r(e?.marbleLight[10], 0.1),
143
- default: r(e?.marbleLight[10], 0.04),
143
+ default: r(e?.marbleLight[70], 0.02),
144
144
  borderDefault: e?.coolGrey[20],
145
145
  borderTop: r(e?.marbleLight[10], 0.04),
146
146
  toneOp: "#454742",
@@ -156,7 +156,7 @@ const h = (a, l) => {
156
156
  focus: e?.turquiBlue[70],
157
157
  hover: e?.turquiBlue[70],
158
158
  overdefoult: r(e?.coolGrey[60], 0.1),
159
- default: r(e?.marbleLight[40], 0.5),
159
+ default: r(e?.marbleLight[50], 0.75),
160
160
  borderDefault: e?.coolGrey[40],
161
161
  borderTop: e?.marbleLight[10],
162
162
  toneOp: "#D9E9FC",
@@ -168,7 +168,7 @@ const h = (a, l) => {
168
168
  focus: e?.turquiBlue[30],
169
169
  hover: e?.turquiBlue[30],
170
170
  overdefoult: r(e?.marbleLight[10], 0.1),
171
- default: r(e?.marbleLight[10], 0.04),
171
+ default: r(e?.marbleLight[70], 0.02),
172
172
  borderDefault: e?.coolGrey[20],
173
173
  borderTop: r(e?.marbleLight[10], 0.04),
174
174
  toneOp: "#2C4053",
@@ -1,30 +0,0 @@
1
- import "@mui/material/styles";
2
- import "@mui/material/useMediaQuery";
3
- import { g as t } from "../utils/getColorPresets.826b8bc5.js";
4
- import "@mui/system";
5
- import { t as o } from "./typography.b693a0c9.js";
6
- import { p as a } from "./palette.d06284f6.js";
7
- import { alpha as s } from "@mui/material";
8
- import { s as p, c as e } from "./shadows.7ecb0e23.js";
9
- import { g as i } from "../utils/getColorState.c9741929.js";
10
- const w = {
11
- typography: o,
12
- palette: {
13
- ...a.light,
14
- primary: t("patronus"),
15
- state: { ...i("patronus", "light") },
16
- representative: t("patronus").darker
17
- },
18
- shape: { borderRadius: 8 },
19
- direction: "rtl",
20
- shadows: p.light,
21
- customShadows: {
22
- primary: `0 8px 16px 0 ${s(t("patronus").main, 0.2)}`,
23
- ...e("light")
24
- },
25
- stretch: !0,
26
- spacing: (r) => `${0.5 * r}rem`
27
- };
28
- export {
29
- w as d
30
- };
@@ -1,7 +0,0 @@
1
- import "./defaultThemeOptions.d50c50f1.js";
2
- import "./shadows.7ecb0e23.js";
3
- import "./palette.d06284f6.js";
4
- import "./typography.b693a0c9.js";
5
- import "@mui/material";
6
- import "@mui/material/styles";
7
- import "@mui/system";
@@ -1,93 +0,0 @@
1
- import { F as s, T as o, C as r, M as L, L as M, I as n, a as i, R as p, B as d, b as l, c as u, P as c, S as g, d as B, e as A, D as F, A as P, f as b, g as T, h as v, i as y, j as C, k as D, l as I, m as R, n as H, o as f, p as k, q as x, r as S, s as w, t as G, u as j, v as E, w as q, x as z, y as O, z as V, E as N, G as U } from "./MUIComponents/index.1489876d.js";
2
- import { M as J, a as K, b as Q, c as W, d as X, e as Y, f as Z, g as _, h as $, i as t, j as m, k as e, l as h, m as aa, n as sa, o as oa, p as ra, q as La, r as Ma, s as na, t as ia, u as pa, v as da, w as la, x as ua, y as ca, z as ga, A as Ba, B as Aa, C as Fa, D as Pa, E as ba, F as Ta, G as va, H as ya } from "./M4LExtendedComponents/index.83dad55c.js";
3
- import { M as Ca, a as Da, b as Ia, c as Ra, d as Ha, e as fa, f as ka, g as xa } from "./M4LRHFComponents/index.0e107243.js";
4
- function ja(a) {
5
- return Object.assign(
6
- s(a),
7
- o(a),
8
- r(a),
9
- L(a),
10
- M(a),
11
- n(a),
12
- i(),
13
- p(a),
14
- d(),
15
- l(a),
16
- u(a),
17
- c(a),
18
- g(a),
19
- B(a),
20
- A(a),
21
- F(a),
22
- P(a),
23
- b(a),
24
- T(a),
25
- v(a),
26
- y(a),
27
- C(),
28
- D(),
29
- I(a),
30
- R(a),
31
- H(a),
32
- f(a),
33
- k(a),
34
- x(a),
35
- S(a),
36
- w(a),
37
- G(a),
38
- j(a),
39
- E(a),
40
- q(),
41
- z(a),
42
- O(a),
43
- V(a),
44
- N(a),
45
- J(a),
46
- U(),
47
- K(a),
48
- Ca(a),
49
- Da(),
50
- Ia(a),
51
- Ra(),
52
- Ha(a),
53
- Q(),
54
- fa(a),
55
- ka(),
56
- W(a),
57
- X(a),
58
- Y(),
59
- Z(a),
60
- _(a),
61
- $(),
62
- t(),
63
- m(a),
64
- xa(a),
65
- e(a),
66
- h(a),
67
- aa(a),
68
- sa(a),
69
- oa(a),
70
- ra(a),
71
- La(a),
72
- Ma(a),
73
- na(a),
74
- ia(a),
75
- pa(a),
76
- da(),
77
- la(a),
78
- ua(),
79
- ca(a),
80
- ga(),
81
- Ba(a),
82
- Aa(a),
83
- Fa(a),
84
- Pa(a),
85
- ba(a),
86
- Ta(a),
87
- va(a),
88
- ya(a)
89
- );
90
- }
91
- export {
92
- ja as f
93
- };