@m4l/components 9.1.25 → 9.1.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 (63) hide show
  1. package/.storybook/utils/getStylesColorsByMode.d.ts +28 -28
  2. package/@types/types.d.ts +8 -0
  3. package/components/CommonActions/classes/index.d.ts +1 -1
  4. package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
  5. package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
  6. package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
  7. package/components/ControlIncrement/slots/ControltrolIncrementSlots.d.ts +1 -1
  8. package/components/DataGrid/classes/index.d.ts +1 -1
  9. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +1 -1
  10. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +1 -1
  11. package/components/GridLayout/classes/index.d.ts +1 -1
  12. package/components/Label/slots/LabelSlots.d.ts +1 -1
  13. package/components/ModalDialog/slots/ModalDialogSlots.d.ts +3 -3
  14. package/components/Period/classes/index.d.ts +1 -1
  15. package/components/WindowBase/slots/WindowBaseSlots.d.ts +1 -1
  16. package/components/WindowConfirm/slots/WindowConfirmSlots.d.ts +3 -3
  17. package/components/extended/React-Resizable/Resizable/slots/ResizableSlots.d.ts +1 -1
  18. package/components/extended/React-Resizable/ResizableBox/slots/ResizableBoxSlots.d.ts +1 -1
  19. package/components/hook-form/RHFAutocomplete/classes/index.d.ts +1 -1
  20. package/components/hook-form/RHFCheckbox/classes/index.d.ts +1 -1
  21. package/components/hook-form/RHFCheckbox/styles.d.ts +1 -1
  22. package/components/hook-form/RHFColorPicker/classes/index.d.ts +1 -1
  23. package/components/hook-form/RHFDateTime/classes/index.d.ts +1 -1
  24. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
  25. package/components/hook-form/RHFUpload/RHFUploadImage/classes/index.d.ts +1 -1
  26. package/components/maps/components/Map/classes/index.d.ts +1 -1
  27. package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +2 -2
  28. package/components/mui_extended/Autocomplete/slots /AutocompleteSlots.d.ts +2 -2
  29. package/components/mui_extended/Avatar/classes/index.d.ts +1 -1
  30. package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
  31. package/components/mui_extended/Button/classes/index.d.ts +1 -1
  32. package/components/mui_extended/Button/slots/ButtonSlots.d.ts +1 -1
  33. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +1 -1
  34. package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +2 -2
  35. package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
  36. package/components/mui_extended/MenuActions/slots/MenuActionsSlots.d.ts +1 -1
  37. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +1 -1
  38. package/components/mui_extended/Pager/classes/index.d.ts +1 -1
  39. package/components/mui_extended/Select/slots/SelectSlots.d.ts +1 -1
  40. package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
  41. package/components/mui_extended/Tab/Slots/TabSlots.d.ts +1 -1
  42. package/components/mui_extended/Tabs/styles.d.ts +1 -1
  43. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +2 -2
  44. package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
  45. package/components/mui_extended/ToggleIconButton/ToggleIconButton.js +18 -3
  46. package/components/mui_extended/ToggleIconButton/ToggleIconButton.styles.d.ts +2 -0
  47. package/components/mui_extended/ToggleIconButton/ToggleIconButton.styles.js +28 -0
  48. package/components/mui_extended/ToggleIconButton/constants.d.ts +1 -0
  49. package/components/mui_extended/ToggleIconButton/constants.js +4 -0
  50. package/components/mui_extended/ToggleIconButton/index.d.ts +4 -0
  51. package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonEnum.d.ts +3 -0
  52. package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonEnum.js +7 -0
  53. package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +3 -0
  54. package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.js +12 -0
  55. package/components/mui_extended/ToggleIconButton/slots/index.d.ts +2 -0
  56. package/components/mui_extended/ToggleIconButton/slots/index.js +1 -0
  57. package/components/mui_extended/ToggleIconButton/tests/ToggleIconButton.test.d.ts +1 -0
  58. package/components/mui_extended/ToggleIconButton/types.d.ts +23 -0
  59. package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
  60. package/index.js +8 -0
  61. package/package.json +2 -2
  62. package/test/mocks.d.ts +2 -2
  63. package/utils/index.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  export declare const colorsLight: {
2
- readonly mode: "dark";
2
+ readonly mode: "light";
3
3
  readonly common: import('@mui/material').CommonColors;
4
4
  readonly primary: {
5
5
  readonly light: string;
@@ -26,6 +26,7 @@ export declare const colorsLight: {
26
26
  readonly selectedOpacity: string;
27
27
  readonly focusVisible: string;
28
28
  readonly contrastText: string;
29
+ readonly focus: string;
29
30
  readonly light: string;
30
31
  readonly dark: string;
31
32
  readonly main: string;
@@ -33,7 +34,6 @@ export declare const colorsLight: {
33
34
  readonly enabledOpacity: string;
34
35
  readonly hover: string;
35
36
  readonly hoverOpacity: string;
36
- readonly focus: string;
37
37
  readonly focusOpacity: string;
38
38
  readonly active: string;
39
39
  readonly activeOpacity: string;
@@ -41,12 +41,12 @@ export declare const colorsLight: {
41
41
  readonly toneOpacity: string;
42
42
  readonly semanticText: string;
43
43
  };
44
+ readonly divider: string;
44
45
  readonly text: {
45
46
  readonly primary: string;
46
47
  readonly secondary: string;
47
48
  readonly disabled: string;
48
49
  };
49
- readonly divider: string;
50
50
  readonly background: {
51
51
  readonly default: string;
52
52
  readonly neutral: string;
@@ -77,6 +77,7 @@ export declare const colorsLight: {
77
77
  readonly selected: string;
78
78
  readonly selectedOpacity: string;
79
79
  readonly focusVisible: string;
80
+ readonly focus: string;
80
81
  readonly light: string;
81
82
  readonly dark: string;
82
83
  readonly main: string;
@@ -85,7 +86,6 @@ export declare const colorsLight: {
85
86
  readonly enabledOpacity: string;
86
87
  readonly hover: string;
87
88
  readonly hoverOpacity: string;
88
- readonly focus: string;
89
89
  readonly focusOpacity: string;
90
90
  readonly active: string;
91
91
  readonly activeOpacity: string;
@@ -97,6 +97,7 @@ export declare const colorsLight: {
97
97
  readonly selected: string;
98
98
  readonly selectedOpacity: string;
99
99
  readonly focusVisible: string;
100
+ readonly focus: string;
100
101
  readonly light: string;
101
102
  readonly dark: string;
102
103
  readonly main: string;
@@ -105,7 +106,6 @@ export declare const colorsLight: {
105
106
  readonly enabledOpacity: string;
106
107
  readonly hover: string;
107
108
  readonly hoverOpacity: string;
108
- readonly focus: string;
109
109
  readonly focusOpacity: string;
110
110
  readonly active: string;
111
111
  readonly activeOpacity: string;
@@ -117,6 +117,7 @@ export declare const colorsLight: {
117
117
  readonly selected: string;
118
118
  readonly selectedOpacity: string;
119
119
  readonly focusVisible: string;
120
+ readonly focus: string;
120
121
  readonly light: string;
121
122
  readonly dark: string;
122
123
  readonly main: string;
@@ -125,7 +126,6 @@ export declare const colorsLight: {
125
126
  readonly enabledOpacity: string;
126
127
  readonly hover: string;
127
128
  readonly hoverOpacity: string;
128
- readonly focus: string;
129
129
  readonly focusOpacity: string;
130
130
  readonly active: string;
131
131
  readonly activeOpacity: string;
@@ -137,6 +137,7 @@ export declare const colorsLight: {
137
137
  readonly selected: string;
138
138
  readonly selectedOpacity: string;
139
139
  readonly focusVisible: string;
140
+ readonly focus: string;
140
141
  readonly light: string;
141
142
  readonly dark: string;
142
143
  readonly main: string;
@@ -145,7 +146,6 @@ export declare const colorsLight: {
145
146
  readonly enabledOpacity: string;
146
147
  readonly hover: string;
147
148
  readonly hoverOpacity: string;
148
- readonly focus: string;
149
149
  readonly focusOpacity: string;
150
150
  readonly active: string;
151
151
  readonly activeOpacity: string;
@@ -154,7 +154,7 @@ export declare const colorsLight: {
154
154
  readonly semanticText: string;
155
155
  };
156
156
  } | {
157
- readonly mode: "light";
157
+ readonly mode: "dark";
158
158
  readonly common: import('@mui/material').CommonColors;
159
159
  readonly primary: {
160
160
  readonly light: string;
@@ -181,6 +181,7 @@ export declare const colorsLight: {
181
181
  readonly selectedOpacity: string;
182
182
  readonly focusVisible: string;
183
183
  readonly contrastText: string;
184
+ readonly focus: string;
184
185
  readonly light: string;
185
186
  readonly dark: string;
186
187
  readonly main: string;
@@ -188,7 +189,6 @@ export declare const colorsLight: {
188
189
  readonly enabledOpacity: string;
189
190
  readonly hover: string;
190
191
  readonly hoverOpacity: string;
191
- readonly focus: string;
192
192
  readonly focusOpacity: string;
193
193
  readonly active: string;
194
194
  readonly activeOpacity: string;
@@ -196,12 +196,12 @@ export declare const colorsLight: {
196
196
  readonly toneOpacity: string;
197
197
  readonly semanticText: string;
198
198
  };
199
- readonly divider: string;
200
199
  readonly text: {
201
200
  readonly primary: string;
202
201
  readonly secondary: string;
203
202
  readonly disabled: string;
204
203
  };
204
+ readonly divider: string;
205
205
  readonly background: {
206
206
  readonly default: string;
207
207
  readonly neutral: string;
@@ -232,6 +232,7 @@ export declare const colorsLight: {
232
232
  readonly selected: string;
233
233
  readonly selectedOpacity: string;
234
234
  readonly focusVisible: string;
235
+ readonly focus: string;
235
236
  readonly light: string;
236
237
  readonly dark: string;
237
238
  readonly main: string;
@@ -240,7 +241,6 @@ export declare const colorsLight: {
240
241
  readonly enabledOpacity: string;
241
242
  readonly hover: string;
242
243
  readonly hoverOpacity: string;
243
- readonly focus: string;
244
244
  readonly focusOpacity: string;
245
245
  readonly active: string;
246
246
  readonly activeOpacity: string;
@@ -252,6 +252,7 @@ export declare const colorsLight: {
252
252
  readonly selected: string;
253
253
  readonly selectedOpacity: string;
254
254
  readonly focusVisible: string;
255
+ readonly focus: string;
255
256
  readonly light: string;
256
257
  readonly dark: string;
257
258
  readonly main: string;
@@ -260,7 +261,6 @@ export declare const colorsLight: {
260
261
  readonly enabledOpacity: string;
261
262
  readonly hover: string;
262
263
  readonly hoverOpacity: string;
263
- readonly focus: string;
264
264
  readonly focusOpacity: string;
265
265
  readonly active: string;
266
266
  readonly activeOpacity: string;
@@ -272,6 +272,7 @@ export declare const colorsLight: {
272
272
  readonly selected: string;
273
273
  readonly selectedOpacity: string;
274
274
  readonly focusVisible: string;
275
+ readonly focus: string;
275
276
  readonly light: string;
276
277
  readonly dark: string;
277
278
  readonly main: string;
@@ -280,7 +281,6 @@ export declare const colorsLight: {
280
281
  readonly enabledOpacity: string;
281
282
  readonly hover: string;
282
283
  readonly hoverOpacity: string;
283
- readonly focus: string;
284
284
  readonly focusOpacity: string;
285
285
  readonly active: string;
286
286
  readonly activeOpacity: string;
@@ -292,6 +292,7 @@ export declare const colorsLight: {
292
292
  readonly selected: string;
293
293
  readonly selectedOpacity: string;
294
294
  readonly focusVisible: string;
295
+ readonly focus: string;
295
296
  readonly light: string;
296
297
  readonly dark: string;
297
298
  readonly main: string;
@@ -300,7 +301,6 @@ export declare const colorsLight: {
300
301
  readonly enabledOpacity: string;
301
302
  readonly hover: string;
302
303
  readonly hoverOpacity: string;
303
- readonly focus: string;
304
304
  readonly focusOpacity: string;
305
305
  readonly active: string;
306
306
  readonly activeOpacity: string;
@@ -310,7 +310,7 @@ export declare const colorsLight: {
310
310
  };
311
311
  };
312
312
  export declare const colorsDark: {
313
- readonly mode: "dark";
313
+ readonly mode: "light";
314
314
  readonly common: import('@mui/material').CommonColors;
315
315
  readonly primary: {
316
316
  readonly light: string;
@@ -337,6 +337,7 @@ export declare const colorsDark: {
337
337
  readonly selectedOpacity: string;
338
338
  readonly focusVisible: string;
339
339
  readonly contrastText: string;
340
+ readonly focus: string;
340
341
  readonly light: string;
341
342
  readonly dark: string;
342
343
  readonly main: string;
@@ -344,7 +345,6 @@ export declare const colorsDark: {
344
345
  readonly enabledOpacity: string;
345
346
  readonly hover: string;
346
347
  readonly hoverOpacity: string;
347
- readonly focus: string;
348
348
  readonly focusOpacity: string;
349
349
  readonly active: string;
350
350
  readonly activeOpacity: string;
@@ -352,12 +352,12 @@ export declare const colorsDark: {
352
352
  readonly toneOpacity: string;
353
353
  readonly semanticText: string;
354
354
  };
355
+ readonly divider: string;
355
356
  readonly text: {
356
357
  readonly primary: string;
357
358
  readonly secondary: string;
358
359
  readonly disabled: string;
359
360
  };
360
- readonly divider: string;
361
361
  readonly background: {
362
362
  readonly default: string;
363
363
  readonly neutral: string;
@@ -388,6 +388,7 @@ export declare const colorsDark: {
388
388
  readonly selected: string;
389
389
  readonly selectedOpacity: string;
390
390
  readonly focusVisible: string;
391
+ readonly focus: string;
391
392
  readonly light: string;
392
393
  readonly dark: string;
393
394
  readonly main: string;
@@ -396,7 +397,6 @@ export declare const colorsDark: {
396
397
  readonly enabledOpacity: string;
397
398
  readonly hover: string;
398
399
  readonly hoverOpacity: string;
399
- readonly focus: string;
400
400
  readonly focusOpacity: string;
401
401
  readonly active: string;
402
402
  readonly activeOpacity: string;
@@ -408,6 +408,7 @@ export declare const colorsDark: {
408
408
  readonly selected: string;
409
409
  readonly selectedOpacity: string;
410
410
  readonly focusVisible: string;
411
+ readonly focus: string;
411
412
  readonly light: string;
412
413
  readonly dark: string;
413
414
  readonly main: string;
@@ -416,7 +417,6 @@ export declare const colorsDark: {
416
417
  readonly enabledOpacity: string;
417
418
  readonly hover: string;
418
419
  readonly hoverOpacity: string;
419
- readonly focus: string;
420
420
  readonly focusOpacity: string;
421
421
  readonly active: string;
422
422
  readonly activeOpacity: string;
@@ -428,6 +428,7 @@ export declare const colorsDark: {
428
428
  readonly selected: string;
429
429
  readonly selectedOpacity: string;
430
430
  readonly focusVisible: string;
431
+ readonly focus: string;
431
432
  readonly light: string;
432
433
  readonly dark: string;
433
434
  readonly main: string;
@@ -436,7 +437,6 @@ export declare const colorsDark: {
436
437
  readonly enabledOpacity: string;
437
438
  readonly hover: string;
438
439
  readonly hoverOpacity: string;
439
- readonly focus: string;
440
440
  readonly focusOpacity: string;
441
441
  readonly active: string;
442
442
  readonly activeOpacity: string;
@@ -448,6 +448,7 @@ export declare const colorsDark: {
448
448
  readonly selected: string;
449
449
  readonly selectedOpacity: string;
450
450
  readonly focusVisible: string;
451
+ readonly focus: string;
451
452
  readonly light: string;
452
453
  readonly dark: string;
453
454
  readonly main: string;
@@ -456,7 +457,6 @@ export declare const colorsDark: {
456
457
  readonly enabledOpacity: string;
457
458
  readonly hover: string;
458
459
  readonly hoverOpacity: string;
459
- readonly focus: string;
460
460
  readonly focusOpacity: string;
461
461
  readonly active: string;
462
462
  readonly activeOpacity: string;
@@ -465,7 +465,7 @@ export declare const colorsDark: {
465
465
  readonly semanticText: string;
466
466
  };
467
467
  } | {
468
- readonly mode: "light";
468
+ readonly mode: "dark";
469
469
  readonly common: import('@mui/material').CommonColors;
470
470
  readonly primary: {
471
471
  readonly light: string;
@@ -492,6 +492,7 @@ export declare const colorsDark: {
492
492
  readonly selectedOpacity: string;
493
493
  readonly focusVisible: string;
494
494
  readonly contrastText: string;
495
+ readonly focus: string;
495
496
  readonly light: string;
496
497
  readonly dark: string;
497
498
  readonly main: string;
@@ -499,7 +500,6 @@ export declare const colorsDark: {
499
500
  readonly enabledOpacity: string;
500
501
  readonly hover: string;
501
502
  readonly hoverOpacity: string;
502
- readonly focus: string;
503
503
  readonly focusOpacity: string;
504
504
  readonly active: string;
505
505
  readonly activeOpacity: string;
@@ -507,12 +507,12 @@ export declare const colorsDark: {
507
507
  readonly toneOpacity: string;
508
508
  readonly semanticText: string;
509
509
  };
510
- readonly divider: string;
511
510
  readonly text: {
512
511
  readonly primary: string;
513
512
  readonly secondary: string;
514
513
  readonly disabled: string;
515
514
  };
515
+ readonly divider: string;
516
516
  readonly background: {
517
517
  readonly default: string;
518
518
  readonly neutral: string;
@@ -543,6 +543,7 @@ export declare const colorsDark: {
543
543
  readonly selected: string;
544
544
  readonly selectedOpacity: string;
545
545
  readonly focusVisible: string;
546
+ readonly focus: string;
546
547
  readonly light: string;
547
548
  readonly dark: string;
548
549
  readonly main: string;
@@ -551,7 +552,6 @@ export declare const colorsDark: {
551
552
  readonly enabledOpacity: string;
552
553
  readonly hover: string;
553
554
  readonly hoverOpacity: string;
554
- readonly focus: string;
555
555
  readonly focusOpacity: string;
556
556
  readonly active: string;
557
557
  readonly activeOpacity: string;
@@ -563,6 +563,7 @@ export declare const colorsDark: {
563
563
  readonly selected: string;
564
564
  readonly selectedOpacity: string;
565
565
  readonly focusVisible: string;
566
+ readonly focus: string;
566
567
  readonly light: string;
567
568
  readonly dark: string;
568
569
  readonly main: string;
@@ -571,7 +572,6 @@ export declare const colorsDark: {
571
572
  readonly enabledOpacity: string;
572
573
  readonly hover: string;
573
574
  readonly hoverOpacity: string;
574
- readonly focus: string;
575
575
  readonly focusOpacity: string;
576
576
  readonly active: string;
577
577
  readonly activeOpacity: string;
@@ -583,6 +583,7 @@ export declare const colorsDark: {
583
583
  readonly selected: string;
584
584
  readonly selectedOpacity: string;
585
585
  readonly focusVisible: string;
586
+ readonly focus: string;
586
587
  readonly light: string;
587
588
  readonly dark: string;
588
589
  readonly main: string;
@@ -591,7 +592,6 @@ export declare const colorsDark: {
591
592
  readonly enabledOpacity: string;
592
593
  readonly hover: string;
593
594
  readonly hoverOpacity: string;
594
- readonly focus: string;
595
595
  readonly focusOpacity: string;
596
596
  readonly active: string;
597
597
  readonly activeOpacity: string;
@@ -603,6 +603,7 @@ export declare const colorsDark: {
603
603
  readonly selected: string;
604
604
  readonly selectedOpacity: string;
605
605
  readonly focusVisible: string;
606
+ readonly focus: string;
606
607
  readonly light: string;
607
608
  readonly dark: string;
608
609
  readonly main: string;
@@ -611,7 +612,6 @@ export declare const colorsDark: {
611
612
  readonly enabledOpacity: string;
612
613
  readonly hover: string;
613
614
  readonly hoverOpacity: string;
614
- readonly focus: string;
615
615
  readonly focusOpacity: string;
616
616
  readonly active: string;
617
617
  readonly activeOpacity: string;
package/@types/types.d.ts CHANGED
@@ -137,6 +137,7 @@ import { LoadingButtonOwnerState, LoadingButtonSlotsType } from '../components/m
137
137
  import { ToggleButtonOwnerState, ToggleButtonSlotsType } from '../components/mui_extended/ToggleButton/types';
138
138
 
139
139
  import { BooleanFormatterOwnerState, PresentationType } from '../components/formatters/BooleanFormatter/types';
140
+ import { ToggleIconButtonOwnerState, ToggleIconButtonSlotsType } from '../components/mui_extended/ToggleIconButton/types';
140
141
 
141
142
  declare module '@mui/material/styles' {
142
143
  // Define the slots in the theme
@@ -179,6 +180,7 @@ declare module '@mui/material/styles' {
179
180
  M4LLoadingButton: LoadingButtonSlotsType;
180
181
  M4LToggleButton: ToggleButtonSlotsType;
181
182
  M4LBooleanFormatter: PresentationType;
183
+ M4LToggleIconButton: ToggleIconButtonSlotsType;
182
184
  }
183
185
 
184
186
  interface ComponentsPropsList {
@@ -221,6 +223,7 @@ declare module '@mui/material/styles' {
221
223
  M4LLoadingButton: Partial<LoadingButtonOwnerState>;
222
224
  M4LToggleButton: Partial<ToggleButtonOwnerState>;
223
225
  M4LBooleanFormatter: Partial<BooleanFormatterOwnerState>;
226
+ M4LToggleIconButton: Partial<ToggleIconButtonOwnerState>;
224
227
  }
225
228
 
226
229
  interface Components {
@@ -509,5 +512,10 @@ declare module '@mui/material/styles' {
509
512
  styleOverrides?: ComponentsOverrides<Theme>['M4LBooleanFormatter'];
510
513
  variants?: ComponentsVariants['M4LBooleanFormatter'];
511
514
  };
515
+ M4LToggleIconButton?: {
516
+ defaultProps?: ComponentsPropsList['M4LToggleIconButton'];
517
+ styleOverrides?: ComponentsOverrides<Theme>['M4LToggleIconButton'];
518
+ variants?: ComponentsVariants['M4LToggleIconButton'];
519
+ };
512
520
  }
513
521
  }
@@ -4,4 +4,4 @@ export declare function getCommonActionsUtilityClass(slot: string): string;
4
4
  /**
5
5
  * TODO: Documentar
6
6
  */
7
- export declare const useCommonActionsUtilityClasses: () => Record<"root" | "skeleton" | "actionCancel" | "actionIntro" | "actionFormCancel" | "actionFormIntro" | "wrapperActions", string>;
7
+ export declare const useCommonActionsUtilityClasses: () => Record<"skeleton" | "root" | "actionCancel" | "actionIntro" | "actionFormCancel" | "actionFormIntro" | "wrapperActions", string>;
@@ -1,4 +1,4 @@
1
- declare const ActionCancelRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "size" | "name" | "children" | "value" | "label" | "className" | "style" | "classes" | "onChange" | "sx" | "variant" | "color" | "content" | "translate" | "disabled" | "form" | "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "component" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "skeletonWidth" | "href" | "type" | "startIcon" | "endIcon" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "disableElevation" | "fullWidth" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ActionCancelOwnerState> & Record<string, unknown> & {
1
+ declare const ActionCancelRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "children" | "value" | "title" | "component" | "size" | "name" | "id" | "type" | "action" | "hidden" | "color" | "content" | "style" | "disabled" | "variant" | "label" | "className" | "classes" | "onChange" | "sx" | "translate" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "skeletonWidth" | "href" | "startIcon" | "endIcon" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "disableElevation" | "fullWidth" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ActionCancelOwnerState> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('..').ActionCancelOwnerState> & Record<string, unknown>;
3
3
  }, {}, {}>;
4
4
  export { ActionCancelRootStyled };
@@ -1,4 +1,4 @@
1
- declare const ActionIntroRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "size" | "name" | "children" | "value" | "label" | "className" | "style" | "classes" | "onChange" | "sx" | "variant" | "color" | "content" | "translate" | "disabled" | "form" | "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "component" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "skeletonWidth" | "href" | "type" | "startIcon" | "endIcon" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "disableElevation" | "fullWidth" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ActionIntroOwnerState> & Record<string, unknown> & {
1
+ declare const ActionIntroRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "children" | "value" | "title" | "component" | "size" | "name" | "id" | "type" | "action" | "hidden" | "color" | "content" | "style" | "disabled" | "variant" | "label" | "className" | "classes" | "onChange" | "sx" | "translate" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "skeletonWidth" | "href" | "startIcon" | "endIcon" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "disableElevation" | "fullWidth" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ActionIntroOwnerState> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('..').ActionIntroOwnerState> & Record<string, unknown>;
3
3
  }, {}, {}>;
4
4
  export { ActionIntroRootStyled };
@@ -1,4 +1,4 @@
1
1
  declare const ActionsContainerRoot: import('@emotion/styled').StyledComponent<Pick<import('@mui/system').BoxOwnProps<import('@mui/material').Theme> & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
2
2
  ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
3
- }, keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>>, "className" | "style" | "onChange" | "content" | "translate" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
3
+ }, keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>>, "title" | "id" | "hidden" | "content" | "style" | "className" | "onChange" | "translate" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
4
4
  export { ActionsContainerRoot };
@@ -9,6 +9,6 @@ export declare const IconButtonDownStyles: import('@emotion/styled').StyledCompo
9
9
  }, {}, {}>;
10
10
  export declare const ControlIncrementSkeletonStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').SkeletonOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
11
11
  ref?: ((instance: HTMLSpanElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLSpanElement> | null | undefined;
12
- }, "children" | "className" | "style" | "classes" | "sx" | "variant" | "height" | "width" | "animation">, "children" | "ref" | "className" | "style" | "classes" | "onChange" | "sx" | "variant" | "color" | "content" | "height" | "translate" | "width" | "animation" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').ControlIncrementOwnerState> & Record<string, unknown> & {
12
+ }, "children" | "style" | "variant" | "width" | "height" | "className" | "classes" | "sx" | "animation">, "children" | "ref" | "title" | "id" | "hidden" | "color" | "content" | "style" | "variant" | "width" | "height" | "className" | "classes" | "onChange" | "sx" | "translate" | "animation" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').ControlIncrementOwnerState> & Record<string, unknown> & {
13
13
  ownerState: Partial<import('../types').ControlIncrementOwnerState> & Record<string, unknown>;
14
14
  }, {}, {}>;
@@ -6,8 +6,8 @@ export declare function getDataGridUtilityClass(slot: string): string;
6
6
  * TODO: Documentar
7
7
  */
8
8
  export declare const dataGridUtilityClasses: (ownerState: OwnerState) => {
9
- actions: string;
10
9
  root: string;
10
+ actions: string;
11
11
  rowsCount: string;
12
12
  rowsCountLabel: string;
13
13
  rowsCountValue: string;