@m4l/components 9.1.150 → 9.1.151
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/@types/types.d.ts
CHANGED
|
@@ -180,7 +180,7 @@ declare module '@mui/material/styles' {
|
|
|
180
180
|
M4LWindowBase: WindowBaseType;
|
|
181
181
|
M4LWindowConfirm: WindowConfirmType;
|
|
182
182
|
M4LAppBar: AppBarSlotsType;
|
|
183
|
-
|
|
183
|
+
M4LDialog: DialogType;
|
|
184
184
|
M4LLoadingButton: LoadingButtonSlotsType;
|
|
185
185
|
M4LNumberInput: NumberInputSlotsType;
|
|
186
186
|
M4LAccordion: AccordionSlotsType;
|
|
@@ -249,7 +249,7 @@ declare module '@mui/material/styles' {
|
|
|
249
249
|
M4LWindowBase: Partial<WindowBaseOwnerState>;
|
|
250
250
|
M4LWindowConfirm: Partial<OwnerStateWindowConfirm>;
|
|
251
251
|
M4LAppBar: Partial<AppBarOwnerState>;
|
|
252
|
-
|
|
252
|
+
M4LDialog: Partial<DialogOwnerState>;
|
|
253
253
|
M4LLoadingButton: Partial<LoadingButtonOwnerState>;
|
|
254
254
|
M4LNumberInput: Partial<NumberInputOwnerState>;
|
|
255
255
|
M4LAccordion: Partial<AccordionOwnerState>;
|
|
@@ -455,10 +455,10 @@ declare module '@mui/material/styles' {
|
|
|
455
455
|
styleOverrides?: ComponentsOverrides<Theme>['M4LAppBar'];
|
|
456
456
|
variants?: ComponentsVariants['M4LAppBar'];
|
|
457
457
|
};
|
|
458
|
-
|
|
459
|
-
defaultProps?: ComponentsPropsList['
|
|
460
|
-
styleOverrides?: ComponentsOverrides<Theme>['
|
|
461
|
-
variants?: ComponentsVariants['
|
|
458
|
+
M4LDialog?: {
|
|
459
|
+
defaultProps?: ComponentsPropsList['M4LDialog'];
|
|
460
|
+
styleOverrides?: ComponentsOverrides<Theme>['M4LDialog'];
|
|
461
|
+
variants?: ComponentsVariants['M4LDialog'];
|
|
462
462
|
};
|
|
463
463
|
M4LLoadingButton?: {
|
|
464
464
|
defaultProps?: ComponentsPropsList['M4LLoadingButton'];
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
export declare const DialogRootStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').DialogProps, keyof import('@mui/material').DialogProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export declare const DialogRootStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').DialogProps, keyof import('@mui/material').DialogProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DialogOwnerState> & Record<string, unknown> & {
|
|
2
|
+
ownerState: Partial<import('../types').DialogOwnerState> & Record<string, unknown>;
|
|
3
|
+
}, {}, {}>;
|
|
4
|
+
export declare const DialogBackDropStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DialogOwnerState> & Record<string, unknown> & {
|
|
5
|
+
ownerState: Partial<import('../types').DialogOwnerState> & Record<string, unknown>;
|
|
6
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
7
|
+
export declare const DialogStackMasterStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').DialogOwnerState> & Record<string, unknown> & {
|
|
8
|
+
ownerState: Partial<import('../types').DialogOwnerState> & Record<string, unknown>;
|
|
9
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|