@m4l/styles 0.0.20 → 0.0.22

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 (34) hide show
  1. package/index.js +10 -10
  2. package/package.json +1 -1
  3. package/theme/{defaultThemeOptions.dd98806d.js → defaultThemeOptions.733652aa.js} +5 -5
  4. package/theme/index.fa6b03ae.js +7 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +8 -2
  6. package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +237 -67
  7. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +1151 -336
  8. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +132 -65
  9. package/theme/overrides/M4LExtendedComponents/M4LAvatar.d.ts +2 -1
  10. package/theme/overrides/M4LExtendedComponents/M4LCheckBox.d.ts +56 -0
  11. package/theme/overrides/M4LExtendedComponents/M4LCommonActions.d.ts +1 -0
  12. package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +988 -0
  13. package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +31 -7
  14. package/theme/overrides/M4LExtendedComponents/M4LPager.d.ts +34 -0
  15. package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +20 -14
  16. package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +8 -4
  17. package/theme/overrides/M4LExtendedComponents/{index.ead1a06a.js → index.28d622ba.js} +823 -309
  18. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +77 -29
  19. package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +1 -0
  20. package/theme/overrides/M4LRHFComponents/{index.1406e2ed.js → index.0e107243.js} +79 -36
  21. package/theme/overrides/MUIComponents/Autocomplete.d.ts +13 -2
  22. package/theme/overrides/MUIComponents/Button.d.ts +3 -1
  23. package/theme/overrides/MUIComponents/Input.d.ts +16 -3
  24. package/theme/overrides/MUIComponents/Tabs.d.ts +2 -0
  25. package/theme/overrides/MUIComponents/{index.e3d060c3.js → index.d308ce65.js} +68 -39
  26. package/theme/overrides/index.76becad2.js +93 -0
  27. package/theme/{palette.6e480083.js → palette.a914c187.js} +5 -5
  28. package/theme/{shadows.0d04d424.js → shadows.3dfe77c2.js} +1 -1
  29. package/theme/{typography.8b60719b.js → typography.dd335f0f.js} +4 -4
  30. package/utils/{getColorPresets.4a88b0ed.js → getColorPresets.9c103b85.js} +1 -1
  31. package/utils/{getColorState.1cdd7909.js → getColorState.184e9d10.js} +40 -28
  32. package/utils/getColorState.d.ts +1 -0
  33. package/theme/index.7512919c.js +0 -7
  34. package/theme/overrides/index.0d219399.js +0 -90
@@ -3,10 +3,73 @@ export declare const M4LRHFAutocomplete: (theme: Theme) => {
3
3
  M4LRHFAutocomplete: {
4
4
  styleOverrides: {
5
5
  '&.M4LRHFAutocomplete-root': {
6
+ height: string;
6
7
  display: string;
7
8
  flexDirection: string;
8
9
  width: string;
9
10
  gap: string;
11
+ '& .MuiAutocomplete-root': {
12
+ height: string;
13
+ '& .MuiFormControl-root': {
14
+ height: string;
15
+ '& .MuiInputBase-root': {
16
+ position: string;
17
+ height: string;
18
+ '& .MuiInputBase-input': {
19
+ boxSizing: string;
20
+ color: string;
21
+ backgroundColor: string;
22
+ height: string;
23
+ padding: string;
24
+ };
25
+ '& .M4LRHFAutocomplete-iconDown': {};
26
+ '& .MuiOutlinedInput-notchedOutline': {
27
+ inset: string;
28
+ height: string;
29
+ '& legend': {
30
+ display: string;
31
+ };
32
+ };
33
+ };
34
+ };
35
+ };
36
+ '& .M4LRHFAutocomplete-skeletonRoot': {
37
+ display: string;
38
+ flexDirection: string;
39
+ gap: string;
40
+ width: string;
41
+ '& .M4LRHFAutocomplete-skeleton': {
42
+ [x: string]: string | {
43
+ width: string;
44
+ height?: undefined;
45
+ overflow?: undefined;
46
+ margin?: undefined;
47
+ } | {
48
+ width: string;
49
+ height: string;
50
+ overflow: string;
51
+ margin: string;
52
+ };
53
+ width: string;
54
+ display: string;
55
+ justifyContent: string;
56
+ alignItems: string;
57
+ height: string;
58
+ border: string;
59
+ borderRadius: string;
60
+ padding: string;
61
+ overflow: string;
62
+ '& .M4LRHFAutocomplete-skeletonContainerText': {
63
+ width: string;
64
+ height: string;
65
+ overflow: string;
66
+ margin: string;
67
+ };
68
+ };
69
+ };
70
+ "& .MuiAutocomplete-root .MuiFormControl-root .MuiInputBase-root": {
71
+ padding: string;
72
+ };
10
73
  '& .M4LRHFAutocomplete-label': {
11
74
  color: string;
12
75
  transition: string;
@@ -14,32 +77,9 @@ export declare const M4LRHFAutocomplete: (theme: Theme) => {
14
77
  '& .MuiAutocomplete-endAdornment': {
15
78
  top: string;
16
79
  };
17
- '& .MuiInputBase-root': {
80
+ '& .MuiAutocomplete-root .MuiInputBase-root': {
18
81
  padding: string;
19
- '& .MuiInputBase-input': {
20
- heigth: string;
21
- color: string;
22
- padding: string;
23
- backgroundColor: string;
24
- };
25
- '& .MuiInputAdornment-root': {
26
- margin: string;
27
- padding: string;
28
- };
29
- '& .M4LIcon-icon': {
30
- backgroundColor: string;
31
- transition: string;
32
- };
33
- '& .MuiOutlinedInput-notchedOutline': {
34
- border: string;
35
- borderColor: string;
36
- borderRadius: string;
37
- inset: string;
38
- transition: string;
39
- '& legend': {
40
- display: string;
41
- };
42
- };
82
+ heigth: string;
43
83
  };
44
84
  '&:hover': {
45
85
  '& .M4LRHFAutocomplete-label': {
@@ -116,18 +156,26 @@ export declare const M4LRHFAutocomplete: (theme: Theme) => {
116
156
  };
117
157
  };
118
158
  '&.M4LRHFAutocomplete-sizeSmall': {
119
- '& .MuiInputBase-input, & .MuiOutlinedInput-notchedOutline, & .M4LRHFAutocomplete-skeleton': {
159
+ "& .M4LRHFAutocomplete-skeleton,\n & .MuiAutocomplete-root": {
120
160
  height: string;
121
- padding: string;
122
161
  };
123
162
  };
124
163
  '&.M4LRHFAutocomplete-sizeMedium': {
125
- '& .MuiInputBase-input, & .MuiOutlinedInput-notchedOutline, & .M4LRHFAutocomplete-skeleton': {
164
+ "& .M4LRHFAutocomplete-skeleton,\n & .MuiAutocomplete-root": {
126
165
  height: string;
127
- padding: string;
128
166
  };
129
167
  };
130
168
  };
131
169
  };
132
170
  };
171
+ M4LRHFAutocompletePopover: {
172
+ styleOverrides: {
173
+ '&.M4LRHFAutocomplete-popper': {
174
+ test: string;
175
+ '& .MuiPaper-root': {
176
+ boxShadow: string;
177
+ };
178
+ };
179
+ };
180
+ };
133
181
  };
@@ -4,6 +4,7 @@ export declare const M4LRHFAutocompleteAsync: (_theme: Theme) => {
4
4
  styleOverrides: {
5
5
  '&.M4LRHFAutocompleteAsync-root': {
6
6
  width: string;
7
+ height: string;
7
8
  };
8
9
  };
9
10
  };
@@ -26,12 +26,12 @@ const n = (t) => ({
26
26
  color: t.palette.text.secondary,
27
27
  padding: "4px 8px",
28
28
  backgroundColor: "transparent",
29
- height: "fit-content",
29
+ height: "100%",
30
30
  ...t.typography.body
31
31
  },
32
32
  "& .MuiInputAdornment-root": {
33
33
  margin: "0px",
34
- padding: "0px"
34
+ padding: "0px 4px 0 0"
35
35
  },
36
36
  "& .M4LIcon-icon": {
37
37
  backgroundColor: t.palette.text.secondary,
@@ -220,10 +220,66 @@ const n = (t) => ({
220
220
  M4LRHFAutocomplete: {
221
221
  styleOverrides: {
222
222
  "&.M4LRHFAutocomplete-root": {
223
+ height: "auto",
223
224
  display: "flex",
224
225
  flexDirection: "column",
225
226
  width: "100%",
226
227
  gap: "4px",
228
+ "& .MuiAutocomplete-root": {
229
+ height: "auto",
230
+ "& .MuiFormControl-root": {
231
+ height: "100%",
232
+ "& .MuiInputBase-root": {
233
+ position: "relative",
234
+ height: "100%",
235
+ "& .MuiInputBase-input": {
236
+ boxSizing: "border-box",
237
+ color: t.palette.text.secondary,
238
+ backgroundColor: "transparent",
239
+ height: "auto",
240
+ padding: "2px 2px 2px 8px",
241
+ ...t.typography.body
242
+ },
243
+ "& .M4LRHFAutocomplete-iconDown": {},
244
+ "& .MuiOutlinedInput-notchedOutline": {
245
+ inset: "0",
246
+ height: "unset",
247
+ "& legend": {
248
+ display: "none"
249
+ }
250
+ }
251
+ }
252
+ }
253
+ },
254
+ "& .M4LRHFAutocomplete-skeletonRoot": {
255
+ display: "flex",
256
+ flexDirection: "column",
257
+ gap: "4px",
258
+ width: "100%",
259
+ "& .M4LRHFAutocomplete-skeleton": {
260
+ width: "100%",
261
+ display: "flex",
262
+ justifyContent: "space-between",
263
+ alignItems: "center",
264
+ height: `${t.spacing(4.5)}`,
265
+ border: `1px solid ${t.palette.divider}`,
266
+ borderRadius: `${t.spacing(1)}`,
267
+ padding: `0 ${t.spacing(2)}`,
268
+ overflow: "hidden",
269
+ [t.breakpoints.down("md")]: {
270
+ width: "100%"
271
+ },
272
+ "& .M4LRHFAutocomplete-skeletonContainerText": {
273
+ width: "100%",
274
+ height: "auto",
275
+ overflow: "hidden",
276
+ margin: t.spacing(1.5)
277
+ }
278
+ }
279
+ },
280
+ "& .MuiAutocomplete-root .MuiFormControl-root .MuiInputBase-root": {
281
+ padding: "0"
282
+ },
227
283
  "& .M4LRHFAutocomplete-label": {
228
284
  color: t.palette.text.secondary,
229
285
  transition: "all .3s ease"
@@ -231,33 +287,9 @@ const n = (t) => ({
231
287
  "& .MuiAutocomplete-endAdornment": {
232
288
  top: "unset"
233
289
  },
234
- "& .MuiInputBase-root": {
235
- padding: "0px",
236
- "& .MuiInputBase-input": {
237
- color: t.palette.text.secondary,
238
- padding: "4px",
239
- backgroundColor: "transparent",
240
- ...t.typography.body,
241
- heigth: "28px"
242
- },
243
- "& .MuiInputAdornment-root": {
244
- margin: "0px",
245
- padding: "0px"
246
- },
247
- "& .M4LIcon-icon": {
248
- backgroundColor: t.palette.text.secondary,
249
- transition: "all .3s ease"
250
- },
251
- "& .MuiOutlinedInput-notchedOutline": {
252
- border: "1px solid",
253
- borderColor: t.palette.divider,
254
- borderRadius: "4px",
255
- inset: "0px",
256
- transition: "all .3s ease",
257
- "& legend": {
258
- display: "none"
259
- }
260
- }
290
+ "& .MuiAutocomplete-root .MuiInputBase-root": {
291
+ padding: "0p 8px",
292
+ heigth: "100%"
261
293
  },
262
294
  "&:hover": {
263
295
  "& .M4LRHFAutocomplete-label": {
@@ -334,25 +366,36 @@ const n = (t) => ({
334
366
  }
335
367
  },
336
368
  "&.M4LRHFAutocomplete-sizeSmall": {
337
- "& .MuiInputBase-input, & .MuiOutlinedInput-notchedOutline, & .M4LRHFAutocomplete-skeleton": {
338
- height: "24px",
339
- padding: "0px 8px"
369
+ [`& .M4LRHFAutocomplete-skeleton,
370
+ & .MuiAutocomplete-root`]: {
371
+ height: "28px"
340
372
  }
341
373
  },
342
374
  "&.M4LRHFAutocomplete-sizeMedium": {
343
- "& .MuiInputBase-input, & .MuiOutlinedInput-notchedOutline, & .M4LRHFAutocomplete-skeleton": {
344
- height: "28px",
345
- padding: "0px 8px"
375
+ [`& .M4LRHFAutocomplete-skeleton,
376
+ & .MuiAutocomplete-root`]: {
377
+ height: "36px"
346
378
  }
347
379
  }
348
380
  }
349
381
  }
382
+ },
383
+ M4LRHFAutocompletePopover: {
384
+ styleOverrides: {
385
+ "&.M4LRHFAutocomplete-popper": {
386
+ test: "root",
387
+ "& .MuiPaper-root": {
388
+ boxShadow: t.customShadows.z3
389
+ }
390
+ }
391
+ }
350
392
  }
351
393
  }), p = (t) => ({
352
394
  M4LRHFAutocompleteAsync: {
353
395
  styleOverrides: {
354
396
  "&.M4LRHFAutocompleteAsync-root": {
355
- width: "100%"
397
+ width: "100%",
398
+ height: "auto"
356
399
  }
357
400
  }
358
401
  }
@@ -3,19 +3,30 @@ export default function Autocomplete(theme: Theme): {
3
3
  MuiAutocomplete: {
4
4
  styleOverrides: {
5
5
  root: {
6
+ height: string;
6
7
  '& .MuiInputBase-root': {
8
+ [x: string]: string | {
9
+ height: string;
10
+ minHeight: string;
11
+ };
7
12
  padding: string;
13
+ borderRadius: string;
14
+ minHeight: string;
8
15
  };
9
16
  };
10
17
  paper: {
11
18
  boxShadow: string;
12
19
  };
13
20
  listbox: {
21
+ display: string;
22
+ flexDirection: string;
23
+ gap: string;
14
24
  padding: string;
25
+ borderRadius: string;
15
26
  '& .MuiAutocomplete-option': {
16
27
  padding: string;
17
- margin: string;
18
- borderRadius: number;
28
+ borderRadius: string;
29
+ height: string;
19
30
  };
20
31
  };
21
32
  };
@@ -3,7 +3,9 @@ export default function Button(theme: Theme): {
3
3
  MuiButton: {
4
4
  styleOverrides: {
5
5
  root: {
6
- textTransform: string;
6
+ display: string;
7
+ flexDirection: string;
8
+ alignItems: string;
7
9
  '&:hover': {
8
10
  boxShadow: string;
9
11
  };
@@ -2,19 +2,25 @@ import { Theme } from '@mui/material/styles';
2
2
  export default function Input(theme: Theme): {
3
3
  MuiFormControl: {
4
4
  styleOverrides: {
5
- root: {};
5
+ root: {
6
+ [x: string]: string | {
7
+ height: number;
8
+ minHeight: number;
9
+ };
10
+ height: string;
11
+ };
6
12
  };
7
13
  };
8
14
  MuiInputBase: {
9
15
  styleOverrides: {
10
16
  root: {
11
17
  borderRadius: string;
18
+ padding: string;
12
19
  '&.Mui-disabled': {
13
20
  '& svg': {
14
21
  color: string;
15
22
  };
16
23
  };
17
- padding: string;
18
24
  '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
19
25
  accentColor?: import("csstype").Property.AccentColor | undefined;
20
26
  alignContent?: import("csstype").Property.AlignContent | undefined;
@@ -172,7 +178,7 @@ export default function Input(theme: Theme): {
172
178
  gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
173
179
  gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
174
180
  hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
175
- height?: import("csstype").Property.Height<string | number> | undefined;
181
+ height: import("csstype").Property.Height<string | number>;
176
182
  hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
177
183
  hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
178
184
  hyphens?: import("csstype").Property.Hyphens | undefined;
@@ -870,8 +876,15 @@ export default function Input(theme: Theme): {
870
876
  padding: string;
871
877
  };
872
878
  '& .MuiOutlinedInput-notchedOutline': {
879
+ [x: string]: string | number | {
880
+ height: number;
881
+ minHeight: number;
882
+ };
873
883
  borderColor: string;
874
884
  fontSize: string;
885
+ height: number;
886
+ minHeight: number;
887
+ padding: string;
875
888
  };
876
889
  '&.Mui-disabled': {
877
890
  '& .MuiOutlinedInput-notchedOutline': {
@@ -17,6 +17,7 @@ export default function Tabs(theme: Theme): {
17
17
  flexDirection: string;
18
18
  alignItems: string;
19
19
  gap: number;
20
+ width: string;
20
21
  boxShadow: string;
21
22
  background: string;
22
23
  borderTop: string;
@@ -28,6 +29,7 @@ export default function Tabs(theme: Theme): {
28
29
  };
29
30
  '&.Mui-selected': {
30
31
  color: string;
32
+ lineHeight: string;
31
33
  };
32
34
  '&:not(:last-of-type)': {
33
35
  marginRight: string;
@@ -30,7 +30,9 @@ function s(o) {
30
30
  MuiButton: {
31
31
  styleOverrides: {
32
32
  root: {
33
- textTransform: "capitalize",
33
+ display: "flex",
34
+ flexDirection: "row",
35
+ alignItems: "center",
34
36
  "&:hover": {
35
37
  boxShadow: "none"
36
38
  }
@@ -78,7 +80,7 @@ function s(o) {
78
80
  }
79
81
  };
80
82
  }
81
- function u(o) {
83
+ function p(o) {
82
84
  return {
83
85
  MuiIconButton: {
84
86
  styleOverrides: {
@@ -102,8 +104,8 @@ function u(o) {
102
104
  }
103
105
  };
104
106
  }
105
- function p(o) {
106
- return console.log("test theme", o.palette), {
107
+ function u(o) {
108
+ return {
107
109
  MuiFab: {
108
110
  defaultProps: {
109
111
  color: "primary"
@@ -188,17 +190,19 @@ function g(o) {
188
190
  flexDirection: "row",
189
191
  alignItems: "center",
190
192
  gap: 4,
193
+ width: "fit-content",
191
194
  boxShadow: o.customShadows.z2,
192
195
  background: o.palette.background.default,
193
- borderTop: "1px solid",
194
- borderColor: o.palette.background.background
196
+ borderTop: "1.5px solid",
197
+ borderColor: o.palette.state.borderTop
195
198
  },
196
199
  "& .MuiTabs-indicator": {
197
200
  backgroundColor: "transparent"
198
201
  }
199
202
  },
200
203
  "&.Mui-selected": {
201
- color: o.palette.text.primary
204
+ color: o.palette.text.primary,
205
+ lineHeight: "none"
202
206
  },
203
207
  "&:not(:last-of-type)": {
204
208
  marginRight: o.spacing(5)
@@ -311,7 +315,7 @@ function M(o) {
311
315
  }
312
316
  };
313
317
  }
314
- function v(o) {
318
+ function x(o) {
315
319
  return {
316
320
  MuiTableRow: {
317
321
  styleOverrides: {
@@ -410,7 +414,7 @@ function f(o) {
410
414
  }
411
415
  };
412
416
  }
413
- function x(o) {
417
+ function v(o) {
414
418
  return {
415
419
  MuiPaper: {
416
420
  defaultProps: {
@@ -480,22 +484,29 @@ function k(o) {
480
484
  return {
481
485
  MuiFormControl: {
482
486
  styleOverrides: {
483
- root: {}
487
+ root: {
488
+ height: "28px",
489
+ [o.breakpoints.down("sm")]: {
490
+ height: 32,
491
+ minHeight: 32
492
+ }
493
+ }
484
494
  }
485
495
  },
486
496
  MuiInputBase: {
487
497
  styleOverrides: {
488
498
  root: {
499
+ height: "auto",
489
500
  backgroundColor: o.palette.background.default,
490
501
  ...o.typography.body2,
491
- borderRadius: o.spacing(1),
502
+ borderRadius: "2px",
503
+ padding: "0px",
492
504
  "&.Mui-disabled": {
493
505
  "& svg": { color: o.palette.text.disabled }
494
- },
495
- padding: "0px"
506
+ }
496
507
  },
497
508
  input: {
498
- padding: "4px 8px",
509
+ padding: "0",
499
510
  "&::placeholder": {
500
511
  opacity: 1,
501
512
  color: o.palette.text.disabled
@@ -543,7 +554,14 @@ function k(o) {
543
554
  },
544
555
  "& .MuiOutlinedInput-notchedOutline": {
545
556
  borderColor: o.palette.grey[50032],
546
- fontSize: "0.875rem"
557
+ fontSize: "0.875rem",
558
+ height: 28,
559
+ minHeight: 28,
560
+ padding: "0px",
561
+ [o.breakpoints.down("sm")]: {
562
+ height: 32,
563
+ minHeight: 32
564
+ }
547
565
  },
548
566
  "&.Mui-disabled": {
549
567
  "& .MuiOutlinedInput-notchedOutline": {
@@ -625,7 +643,7 @@ function C(o) {
625
643
  }
626
644
  };
627
645
  }
628
- function O(o) {
646
+ function h(o) {
629
647
  return {
630
648
  MuiDialog: {
631
649
  styleOverrides: {
@@ -681,7 +699,7 @@ function O(o) {
681
699
  }
682
700
  };
683
701
  }
684
- function B(o) {
702
+ function O(o) {
685
703
  const r = o.palette.mode === "light";
686
704
  return {
687
705
  MuiSlider: {
@@ -706,7 +724,7 @@ function B(o) {
706
724
  }
707
725
  };
708
726
  }
709
- function h(o) {
727
+ function B(o) {
710
728
  const r = o.palette.mode === "light";
711
729
  return {
712
730
  MuiSwitch: {
@@ -789,7 +807,7 @@ function L(o) {
789
807
  }
790
808
  };
791
809
  }
792
- function D(o) {
810
+ function m(o) {
793
811
  return {
794
812
  MuiDataGrid: {
795
813
  styleOverrides: {
@@ -886,7 +904,7 @@ function D(o) {
886
904
  }
887
905
  };
888
906
  }
889
- function m(o) {
907
+ function D(o) {
890
908
  return {
891
909
  MuiSkeleton: {
892
910
  defaultProps: {
@@ -1073,7 +1091,7 @@ function W(o) {
1073
1091
  }
1074
1092
  };
1075
1093
  }
1076
- function F(o) {
1094
+ function H(o) {
1077
1095
  return {
1078
1096
  MuiPaginationItem: {
1079
1097
  styleOverrides: {
@@ -1107,7 +1125,7 @@ function F(o) {
1107
1125
  }
1108
1126
  };
1109
1127
  }
1110
- function H(o) {
1128
+ function F(o) {
1111
1129
  return {
1112
1130
  MuiBreadcrumbs: {
1113
1131
  styleOverrides: {
@@ -1209,19 +1227,30 @@ function E(o) {
1209
1227
  MuiAutocomplete: {
1210
1228
  styleOverrides: {
1211
1229
  root: {
1230
+ height: "auto",
1212
1231
  "& .MuiInputBase-root": {
1213
- padding: "0 39px 0px 0"
1232
+ padding: "4px 4px 4px 8px",
1233
+ borderRadius: "4px",
1234
+ minHeight: "28px",
1235
+ [o.breakpoints.down("sm")]: {
1236
+ height: "36px",
1237
+ minHeight: "36px"
1238
+ }
1214
1239
  }
1215
1240
  },
1216
1241
  paper: {
1217
- boxShadow: o.customShadows?.dropdown
1242
+ boxShadow: o.customShadows.z3
1218
1243
  },
1219
1244
  listbox: {
1220
- padding: o.spacing(0, 1),
1245
+ display: "flex",
1246
+ flexDirection: "column",
1247
+ gap: "8px",
1248
+ padding: "4px",
1249
+ borderRadius: "6px",
1221
1250
  "& .MuiAutocomplete-option": {
1222
- padding: o.spacing(1),
1223
- margin: o.spacing(1, 0),
1224
- borderRadius: o.shape.borderRadius
1251
+ padding: "0px 0 0 8px",
1252
+ borderRadius: "4px",
1253
+ height: "auto"
1225
1254
  }
1226
1255
  }
1227
1256
  }
@@ -1334,39 +1363,39 @@ export {
1334
1363
  l as A,
1335
1364
  f as B,
1336
1365
  c as C,
1337
- O as D,
1366
+ h as D,
1338
1367
  V as E,
1339
- p as F,
1368
+ u as F,
1340
1369
  J as G,
1341
1370
  k as I,
1342
1371
  y as L,
1343
1372
  b as M,
1344
- x as P,
1373
+ v as P,
1345
1374
  S as R,
1346
- h as S,
1375
+ B as S,
1347
1376
  g as T,
1348
1377
  w as a,
1349
1378
  M as b,
1350
- v as c,
1379
+ x as c,
1351
1380
  s as d,
1352
- u as e,
1353
- B as f,
1381
+ p as e,
1382
+ O as f,
1354
1383
  C as g,
1355
1384
  L as h,
1356
1385
  I as i,
1357
1386
  T as j,
1358
1387
  R as k,
1359
1388
  A as l,
1360
- D as m,
1361
- m as n,
1389
+ m,
1390
+ D as n,
1362
1391
  $ as o,
1363
1392
  P as p,
1364
1393
  z as q,
1365
1394
  G as r,
1366
1395
  W as s,
1367
- F as t,
1396
+ H as t,
1368
1397
  _ as u,
1369
- H as v,
1398
+ F as v,
1370
1399
  j as w,
1371
1400
  E as x,
1372
1401
  q as y,