@m4l/styles 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/config.d.ts +13 -0
  2. package/index.d.ts +1 -0
  3. package/index.js +1141 -623
  4. package/package.json +1 -1
  5. package/theme/defaultThemeOptions.d.ts +1 -2
  6. package/theme/index.d.ts +4 -2
  7. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +1 -5
  8. package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +1 -2
  9. package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +35 -1
  10. package/theme/overrides/M4LExtendedComponents/M4LNavLink.d.ts +10 -0
  11. package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +5 -1
  12. package/theme/overrides/M4LExtendedComponents/M4LTypography.d.ts +5 -2
  13. package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +1 -4
  14. package/theme/overrides/M4LExtendedComponents/M4LoadingButton.d.ts +6 -0
  15. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +10 -0
  16. package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +10 -0
  17. package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +46 -1
  18. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -11
  19. package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +5 -2
  20. package/theme/overrides/MUIComponents/Accordion.d.ts +36 -16
  21. package/theme/overrides/MUIComponents/Autocomplete.d.ts +0 -3
  22. package/theme/overrides/MUIComponents/ButtonGroup.d.ts +8 -0
  23. package/theme/overrides/MUIComponents/ControlLabel.d.ts +36 -16
  24. package/theme/overrides/MUIComponents/DataGrid.d.ts +72 -32
  25. package/theme/overrides/MUIComponents/Fab.d.ts +1 -1
  26. package/theme/overrides/MUIComponents/Input.d.ts +72 -32
  27. package/theme/overrides/MUIComponents/LoadingButton.d.ts +36 -16
  28. package/theme/overrides/MUIComponents/Paper.d.ts +35 -0
  29. package/theme/overrides/MUIComponents/Table.d.ts +144 -64
  30. package/theme/overrides/MUIComponents/Tabs.d.ts +36 -16
  31. package/theme/overrides/MUIComponents/Typography.d.ts +5 -0
  32. package/theme/palette.d.ts +169 -30
  33. package/theme/shadows.d.ts +5 -50
  34. package/theme/typography.d.ts +146 -18
  35. package/types/types.d.ts +65 -1
  36. package/utils/getColorPresets.d.ts +9 -105
  37. package/utils/getColorState.d.ts +15 -0
  38. package/utils/getFontValue.d.ts +1 -1
  39. package/utils/index.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/styles",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "license": "UNLICENSED",
5
5
  "dependencies": {
6
6
  "@m4l/graphics": "*",
@@ -1,2 +1 @@
1
- import { ThemeOptions } from '@mui/material/styles';
2
- export declare const defaultThemeOptions: ThemeOptions;
1
+ export declare const defaultThemeOptions: any;
package/theme/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  export type { CustomShadowOptions } from './shadows';
2
2
  export { defaultThemeOptions } from './defaultThemeOptions';
3
- export { shadows, customShadows } from './shadows';
4
- export { palette, type ColorSchema } from './palette';
3
+ export { shadows, createCustomShadows } from './shadows';
4
+ export { palette, PATRONUSCOLORS } from './palette';
5
+ export type { ColorSchema, StateDefault, StateSkeleton } from './palette';
6
+ export { typography } from './typography';
5
7
  export { fnComponentsOverrides } from './overrides';
@@ -1,10 +1,6 @@
1
1
  import { Theme } from '@mui/material/styles';
2
2
  export declare const M4LButton: (_theme: Theme) => {
3
3
  M4LButton: {
4
- styleOverrides: {
5
- "&.M4LButton-root": {
6
- test: string;
7
- };
8
- };
4
+ styleOverrides: {};
9
5
  };
10
6
  };
@@ -1,10 +1,9 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LIcon: (theme: Theme) => {
2
+ export declare const M4LIcon: (_theme: Theme) => {
3
3
  M4LIcon: {
4
4
  styleOverrides: {
5
5
  "&.M4LIcon-root": {
6
6
  test: string;
7
- backgroundColor: string;
8
7
  };
9
8
  };
10
9
  };
@@ -1,9 +1,43 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LImageButton: (_theme: Theme) => {
2
+ export declare const M4LImageButton: (theme: Theme) => {
3
3
  M4LImageButton: {
4
4
  styleOverrides: {
5
5
  "&.M4LImageButton-root": {
6
6
  test: string;
7
+ '.MuiButtonBase-root': {
8
+ display: string;
9
+ padding: string;
10
+ borderRadius: string;
11
+ alignItems: string;
12
+ justifyContent: string;
13
+ };
14
+ ".M4LImage-root": {
15
+ display: string;
16
+ alignItems: string;
17
+ justifyContent: string;
18
+ objectFit: string;
19
+ width: string;
20
+ height: string;
21
+ };
22
+ ".M4LImage-lazyLoad": {
23
+ borderRadius: string;
24
+ width: string;
25
+ height: string;
26
+ display: string;
27
+ alignItems: string;
28
+ justifyContent: string;
29
+ };
30
+ ".M4LImage-img": {
31
+ borderRadius: string;
32
+ };
33
+ '.MuiButtonBase-root:hover': {
34
+ backgroundColor: string;
35
+ };
36
+ '.MuiButtonBase-root:focus': {
37
+ backgroundColor: string;
38
+ border: string;
39
+ borderColor: string;
40
+ };
7
41
  };
8
42
  };
9
43
  };
@@ -0,0 +1,10 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LNavLink: (_theme: Theme) => {
3
+ M4LNavLink: {
4
+ styleOverrides: {
5
+ "&.M4LNavLink-root": {
6
+ test: string;
7
+ };
8
+ };
9
+ };
10
+ };
@@ -1,11 +1,15 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LPopover: (_theme: Theme) => {
2
+ export declare const M4LPopover: (theme: Theme) => {
3
3
  M4LPopover: {
4
4
  styleOverrides: {
5
5
  "&.M4LPopover-root": {
6
6
  test: string;
7
7
  '.MuiPaper-root': {
8
8
  background: string;
9
+ borderRadius: string;
10
+ Padding: string;
11
+ margin: string;
12
+ boxShadow: string;
9
13
  };
10
14
  };
11
15
  };
@@ -1,9 +1,12 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LTypography: (_theme: Theme) => {
2
+ export declare const M4LTypography: (theme: Theme) => {
3
3
  M4LTypography: {
4
4
  styleOverrides: {
5
5
  "&.M4LTypography-root": {
6
- test: string;
6
+ display: string;
7
+ '& .MuiTypography-root': {
8
+ margin: string;
9
+ };
7
10
  };
8
11
  };
9
12
  };
@@ -1,12 +1,9 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LanguagePopover: (_theme: Theme) => {
2
+ export declare const M4LanguagePopover: (theme: Theme) => {
3
3
  M4LanguagePopover: {
4
4
  styleOverrides: {
5
5
  "&.M4LanguagePopover-root": {
6
6
  test: string;
7
- '.MuiIconButton-sizeMedium': {
8
- border: string;
9
- };
10
7
  };
11
8
  };
12
9
  };
@@ -0,0 +1,6 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LoadingButton: (_theme: Theme) => {
3
+ M4LoadingButton: {
4
+ styleOverrides: {};
5
+ };
6
+ };
@@ -0,0 +1,10 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LRHFAutocomplete: (_theme: Theme) => {
3
+ M4LRHFAutocomplete: {
4
+ styleOverrides: {
5
+ "&.M4LRHFAutocomplete-root": {
6
+ test: string;
7
+ };
8
+ };
9
+ };
10
+ };
@@ -0,0 +1,10 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LRHFAutocompleteAsync: (_theme: Theme) => {
3
+ M4LRHFAutocompleteAsync: {
4
+ styleOverrides: {
5
+ "&.M4LRHFAutocompleteAsync-root": {
6
+ test: string;
7
+ };
8
+ };
9
+ };
10
+ };
@@ -1,9 +1,54 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LRHFCheckbox: (_theme: Theme) => {
2
+ export declare const M4LRHFCheckbox: (theme: Theme) => {
3
3
  M4LRHFCheckbox: {
4
4
  styleOverrides: {
5
5
  "&.M4LRHFCheckbox-root": {
6
6
  test: string;
7
+ '.M4LRHFCheckbox-checkTypography': {
8
+ [x: string]: any;
9
+ display: string;
10
+ gap: string;
11
+ };
12
+ '& .MuiTypography-root': any;
13
+ '.M4LRHFCheckbox-small .MuiButtonBase-root': {
14
+ width: string;
15
+ height: string;
16
+ };
17
+ '.MuiCheckbox-root .MuiSvgIcon-fontSizeSmall': {
18
+ width: string;
19
+ height: string;
20
+ };
21
+ '.M4LRHFCheckbox-medium .MuiButtonBase-root': {
22
+ width: string;
23
+ height: string;
24
+ };
25
+ '.MuiCheckbox-root .MuiSvgIcon-fontSizeMedium': {
26
+ width: string;
27
+ height: string;
28
+ };
29
+ '.MuiButtonBase-root': {
30
+ borderRadius: string;
31
+ };
32
+ '.MuiButtonBase-root:hover': {
33
+ backgroundColor: string;
34
+ };
35
+ '.Mui-focusVisible': {
36
+ border: string;
37
+ borderColor: string;
38
+ };
39
+ '.MuiButtonBase-root:hover .MuiSvgIcon-root': {
40
+ fill: string;
41
+ };
42
+ '.M4LRHFCheckbox-checkTypography .MuiTypography-root': any;
43
+ '.M4LRHFCheckbox-stateDisabled .MuiSvgIcon-root': {
44
+ fill: string;
45
+ };
46
+ '.M4LRHFCheckbox-stateDisabled .MuiTypography-root': {
47
+ color: string;
48
+ };
49
+ '.MuiButtonBase-root .Mui-focusVisible:focus-visible': {
50
+ outline: string;
51
+ };
7
52
  };
8
53
  };
9
54
  };
@@ -1,16 +1,6 @@
1
1
  import { Theme } from '@mui/material/styles';
2
2
  export declare const M4LRHFTextField: (_theme: Theme) => {
3
3
  M4LRHFTextField: {
4
- styleOverrides: {
5
- "&.M4LRHFTextField-root": {
6
- test: string;
7
- '.MuiTextField-root': {
8
- border: string;
9
- };
10
- '.MuiFormLabel-root': {
11
- background: string;
12
- };
13
- };
14
- };
4
+ styleOverrides: {};
15
5
  };
16
6
  };
@@ -1,10 +1,13 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LRHFTextFieldPassword: (_theme: Theme) => {
2
+ export declare const M4LRHFTextFieldPassword: (theme: Theme) => {
3
3
  M4LRHFTextFieldPassword: {
4
4
  styleOverrides: {
5
5
  "&.M4LRHFTextFieldPassword-root": {
6
6
  ".M4LRHFTextField-root .MuiTextField-root": {
7
- border: string;
7
+ test: string;
8
+ display: string;
9
+ flexDirection: string;
10
+ gap: string;
8
11
  };
9
12
  };
10
13
  };
@@ -153,6 +153,7 @@ export default function Accordion(theme: Theme): {
153
153
  breakInside?: import("csstype").Property.BreakInside | undefined;
154
154
  captionSide?: import("csstype").Property.CaptionSide | undefined;
155
155
  caretColor?: import("csstype").Property.CaretColor | undefined;
156
+ caretShape?: import("csstype").Property.CaretShape | undefined;
156
157
  clear?: import("csstype").Property.Clear | undefined;
157
158
  clipPath?: import("csstype").Property.ClipPath | undefined;
158
159
  color?: import("csstype").Property.Color | undefined;
@@ -167,6 +168,12 @@ export default function Accordion(theme: Theme): {
167
168
  columnSpan?: import("csstype").Property.ColumnSpan | undefined;
168
169
  columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
169
170
  contain?: import("csstype").Property.Contain | undefined;
171
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
172
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
173
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
174
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
175
+ containerName?: import("csstype").Property.ContainerName | undefined;
176
+ containerType?: import("csstype").Property.ContainerType | undefined;
170
177
  content?: import("csstype").Property.Content | undefined;
171
178
  contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
172
179
  counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
@@ -188,6 +195,7 @@ export default function Accordion(theme: Theme): {
188
195
  fontKerning?: import("csstype").Property.FontKerning | undefined;
189
196
  fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
190
197
  fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
198
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
191
199
  fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
192
200
  fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
193
201
  fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
@@ -198,6 +206,7 @@ export default function Accordion(theme: Theme): {
198
206
  fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
199
207
  fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
200
208
  fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
209
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
201
210
  fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
202
211
  fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
203
212
  fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
@@ -217,6 +226,7 @@ export default function Accordion(theme: Theme): {
217
226
  hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
218
227
  height?: import("csstype").Property.Height<string | number> | undefined;
219
228
  hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
229
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
220
230
  hyphens?: import("csstype").Property.Hyphens | undefined;
221
231
  imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
222
232
  imageRendering?: import("csstype").Property.ImageRendering | undefined;
@@ -224,11 +234,8 @@ export default function Accordion(theme: Theme): {
224
234
  initialLetter?: import("csstype").Property.InitialLetter | undefined;
225
235
  inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
226
236
  inputSecurity?: import("csstype").Property.InputSecurity | undefined;
227
- inset?: import("csstype").Property.Inset<string | number> | undefined;
228
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
229
237
  insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
230
238
  insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
231
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
232
239
  insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
233
240
  insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
234
241
  isolation?: import("csstype").Property.Isolation | undefined;
@@ -244,16 +251,15 @@ export default function Accordion(theme: Theme): {
244
251
  listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
245
252
  listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
246
253
  listStyleType?: import("csstype").Property.ListStyleType | undefined;
247
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
248
254
  marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
249
255
  marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
250
256
  marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
251
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
252
257
  marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
253
258
  marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
254
259
  marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
255
260
  marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
256
261
  marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
262
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
257
263
  maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
258
264
  maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
259
265
  maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
@@ -290,6 +296,7 @@ export default function Accordion(theme: Theme): {
290
296
  offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
291
297
  offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
292
298
  offsetPath?: import("csstype").Property.OffsetPath | undefined;
299
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
293
300
  offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
294
301
  offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
295
302
  opacity?: import("csstype").Property.Opacity | undefined;
@@ -311,23 +318,21 @@ export default function Accordion(theme: Theme): {
311
318
  overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
312
319
  overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
313
320
  overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
314
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
315
321
  paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
316
322
  paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
317
323
  paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
318
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
319
324
  paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
320
325
  paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
321
326
  paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
322
327
  paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
323
328
  paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
329
+ page?: import("csstype").Property.Page | undefined;
324
330
  pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
325
331
  pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
326
332
  pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
327
333
  paintOrder?: import("csstype").Property.PaintOrder | undefined;
328
334
  perspective?: import("csstype").Property.Perspective<string | number> | undefined;
329
335
  perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
330
- placeContent?: import("csstype").Property.PlaceContent | undefined;
331
336
  pointerEvents?: import("csstype").Property.PointerEvents | undefined;
332
337
  position?: import("csstype").Property.Position | undefined;
333
338
  printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
@@ -341,36 +346,31 @@ export default function Accordion(theme: Theme): {
341
346
  rubyPosition?: import("csstype").Property.RubyPosition | undefined;
342
347
  scale?: import("csstype").Property.Scale | undefined;
343
348
  scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
344
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
345
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
346
349
  scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
347
350
  scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
348
351
  scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
349
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
350
352
  scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
351
353
  scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
352
354
  scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
353
355
  scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
354
356
  scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
355
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
356
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
357
357
  scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
358
358
  scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
359
359
  scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
360
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
361
360
  scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
362
361
  scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
363
362
  scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
364
363
  scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
365
364
  scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
366
365
  scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
367
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
368
366
  scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
369
367
  scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
370
368
  scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
371
369
  scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
372
370
  scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
373
371
  scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
372
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
373
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
374
374
  scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
375
375
  scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
376
376
  scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
@@ -415,6 +415,7 @@ export default function Accordion(theme: Theme): {
415
415
  unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
416
416
  userSelect?: import("csstype").Property.UserSelect | undefined;
417
417
  verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
418
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
418
419
  visibility?: import("csstype").Property.Visibility | undefined;
419
420
  whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
420
421
  widows?: import("csstype").Property.Widows | undefined;
@@ -446,8 +447,11 @@ export default function Accordion(theme: Theme): {
446
447
  borderStyle?: import("csstype").Property.BorderStyle | undefined;
447
448
  borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
448
449
  borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
450
+ caret?: import("csstype").Property.Caret | undefined;
449
451
  columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
450
452
  columns?: import("csstype").Property.Columns<string | number> | undefined;
453
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
454
+ container?: import("csstype").Property.Container | undefined;
451
455
  flex?: import("csstype").Property.Flex<string | number> | undefined;
452
456
  flexFlow?: import("csstype").Property.FlexFlow | undefined;
453
457
  font?: import("csstype").Property.Font | undefined;
@@ -457,8 +461,13 @@ export default function Accordion(theme: Theme): {
457
461
  gridColumn?: import("csstype").Property.GridColumn | undefined;
458
462
  gridRow?: import("csstype").Property.GridRow | undefined;
459
463
  gridTemplate?: import("csstype").Property.GridTemplate | undefined;
464
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
465
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
466
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
460
467
  lineClamp?: import("csstype").Property.LineClamp | undefined;
461
468
  listStyle?: import("csstype").Property.ListStyle | undefined;
469
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
470
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
462
471
  mask?: import("csstype").Property.Mask<string | number> | undefined;
463
472
  maskBorder?: import("csstype").Property.MaskBorder | undefined;
464
473
  motion?: import("csstype").Property.Offset<string | number> | undefined;
@@ -467,8 +476,19 @@ export default function Accordion(theme: Theme): {
467
476
  overflow?: import("csstype").Property.Overflow | undefined;
468
477
  overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
469
478
  padding?: import("csstype").Property.Padding<string | number> | undefined;
479
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
480
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
481
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
470
482
  placeItems?: import("csstype").Property.PlaceItems | undefined;
471
483
  placeSelf?: import("csstype").Property.PlaceSelf | undefined;
484
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
485
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
486
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
487
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
488
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
489
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
490
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
491
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
472
492
  textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
473
493
  textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
474
494
  transition?: import("csstype").Property.Transition<string & {}> | undefined;
@@ -482,6 +502,7 @@ export default function Accordion(theme: Theme): {
482
502
  MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
483
503
  MozAppearance?: import("csstype").Property.MozAppearance | undefined;
484
504
  MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
505
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
485
506
  MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
486
507
  MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
487
508
  MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
@@ -762,7 +783,6 @@ export default function Accordion(theme: Theme): {
762
783
  MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
763
784
  MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
764
785
  MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
765
- MozBinding?: import("csstype").Property.MozBinding | undefined;
766
786
  MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
767
787
  MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
768
788
  MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
@@ -6,9 +6,6 @@ export default function Autocomplete(theme: Theme): {
6
6
  '& .MuiInputBase-root': {
7
7
  padding: string;
8
8
  };
9
- input: {
10
- padding: string;
11
- };
12
9
  };
13
10
  paper: {
14
11
  boxShadow: string;
@@ -2,6 +2,14 @@ import { Theme } from '@mui/material/styles';
2
2
  export default function ButtonGroup(theme: Theme): {
3
3
  MuiButtonGroup: {
4
4
  variants: ({
5
+ props: {
6
+ variant: string;
7
+ color: "primary" | "secondary" | "info" | "success" | "warning" | "error";
8
+ };
9
+ style: {
10
+ boxShadow: string | undefined;
11
+ };
12
+ } | {
5
13
  props: {
6
14
  variant: string;
7
15
  color: string;