UNPKG

1.6 kBTypeScriptView Raw
1export interface DialogClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the container element if `scroll="paper"`. */
5 scrollPaper: string;
6 /** Styles applied to the container element if `scroll="body"`. */
7 scrollBody: string;
8 /** Styles applied to the container element. */
9 container: string;
10 /** Styles applied to the Paper component. */
11 paper: string;
12 /** Styles applied to the Paper component if `scroll="paper"`. */
13 paperScrollPaper: string;
14 /** Styles applied to the Paper component if `scroll="body"`. */
15 paperScrollBody: string;
16 /** Styles applied to the Paper component if `maxWidth=false`. */
17 paperWidthFalse: string;
18 /** Styles applied to the Paper component if `maxWidth="xs"`. */
19 paperWidthXs: string;
20 /** Styles applied to the Paper component if `maxWidth="sm"`. */
21 paperWidthSm: string;
22 /** Styles applied to the Paper component if `maxWidth="md"`. */
23 paperWidthMd: string;
24 /** Styles applied to the Paper component if `maxWidth="lg"`. */
25 paperWidthLg: string;
26 /** Styles applied to the Paper component if `maxWidth="xl"`. */
27 paperWidthXl: string;
28 /** Styles applied to the Paper component if `fullWidth={true}`. */
29 paperFullWidth: string;
30 /** Styles applied to the Paper component if `fullScreen={true}`. */
31 paperFullScreen: string;
32}
33export type DialogClassKey = keyof DialogClasses;
34export declare function getDialogUtilityClass(slot: string): string;
35declare const dialogClasses: DialogClasses;
36export default dialogClasses;