Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/Drawer/drawerClasses.d.ts 4.27 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  export interface DrawerClasses {
    /** Styles applied to the root element. */
    root: string;
    /** Styles applied to the root element if `variant="permanent or persistent"`. */
    docked: string;
    /** Styles applied to the Paper component. */
    paper: string;
    /** Styles applied to the root element if `anchor="left"`. */
    anchorLeft: string;
    /** Styles applied to the root element if `anchor="right"`. */
    anchorRight: string;
    /** Styles applied to the root element if `anchor="top"`. */
    anchorTop: string;
    /** Styles applied to the root element if `anchor="bottom"`. */
    anchorBottom: string;
    /** Styles applied to the Paper component if `anchor="left"`.
     *  @deprecated Combine the [.MuiDrawer-anchorLeft](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorLeft) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorLeft: string;
    /** Styles applied to the Paper component if `anchor="right"`.
     *  @deprecated Combine the [.MuiDrawer-anchorRight](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorRight) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorRight: string;
    /** Styles applied to the Paper component if `anchor="top"`.
     *  @deprecated Combine the [.MuiDrawer-anchorTop](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorTop) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorTop: string;
    /** Styles applied to the Paper component if `anchor="bottom"`.
     *  @deprecated Combine the [.MuiDrawer-anchorBottom](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorBottom) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorBottom: string;
    /** Styles applied to the Paper component if `anchor="left"` and `variant` is not "temporary".
     * @deprecated Combine the [.MuiDrawer-anchorLeft](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorLeft), [.MuiDrawer-docked](/material-ui/api/drawer/#Drawer-css-MuiDrawer-docked) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorDockedLeft: string;
    /** Styles applied to the Paper component if `anchor="top"` and `variant` is not "temporary".
     * @deprecated Combine the [.MuiDrawer-anchorTop](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorTop), [.MuiDrawer-docked](/material-ui/api/drawer/#Drawer-css-MuiDrawer-docked) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorDockedTop: string;
    /** Styles applied to the Paper component if `anchor="right"` and `variant` is not "temporary".
     * @deprecated Combine the [.MuiDrawer-anchorRight](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorRight), [.MuiDrawer-docked](/material-ui/api/drawer/#Drawer-css-MuiDrawer-docked) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorDockedRight: string;
    /** Styles applied to the Paper component if `anchor="bottom"` and `variant` is not "temporary".
     * @deprecated Combine the [.MuiDrawer-anchorBottom](/material-ui/api/drawer/#drawer-classes-MuiDrawer-anchorBottom), [.MuiDrawer-docked](/material-ui/api/drawer/#Drawer-css-MuiDrawer-docked) and [.MuiDrawer-paper](/material-ui/api/drawer/#Drawer-css-MuiDrawer-paper) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/)
     */
    paperAnchorDockedBottom: string;
    /** Styles applied to the Modal component. */
    modal: string;
  }
  export type DrawerClassKey = keyof DrawerClasses;
  export declare function getDrawerUtilityClass(slot: string): string;
  declare const drawerClasses: DrawerClasses;
  export default drawerClasses;