Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/StepConnector/stepConnectorClasses.d.ts 1.88 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
  export interface StepConnectorClasses {
    /** Styles applied to the root element. */
    root: string;
    /** Styles applied to the root element if `orientation="horizontal"`. */
    horizontal: string;
    /** Styles applied to the root element if `orientation="vertical"`. */
    vertical: string;
    /** Styles applied to the root element if `alternativeLabel={true}`. */
    alternativeLabel: string;
    /** State class applied to the root element if `active={true}`. */
    active: string;
    /** State class applied to the root element if `completed={true}`. */
    completed: string;
    /** State class applied to the root element if `disabled={true}`. */
    disabled: string;
    /** Styles applied to the line element. */
    line: string;
    /** Styles applied to the line element if `orientation="horizontal"`.
     * @deprecated Combine the [.MuiStepConnector-horizontal](/material-ui/api/step-connector/#step-connector-classes-MuiStepConnector-horizontal) and [.MuiStepConnector-line](/material-ui/api/step-connector/#step-connector-classes-MuiStepConnector-line) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
     */
    lineHorizontal: string;
    /** Styles applied to the line element if `orientation="vertical"`.
     * @deprecated Combine the [.MuiStepConnector-vertical](/material-ui/api/step-connector/#step-connector-classes-MuiStepConnector-vertical) and [.MuiStepConnector-line](/material-ui/api/step-connector/#step-connector-classes-MuiStepConnector-line) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
     */
    lineVertical: string;
  }
  export type StepConnectorClassKey = keyof StepConnectorClasses;
  export declare function getStepConnectorUtilityClass(slot: string): string;
  declare const stepConnectorClasses: StepConnectorClasses;
  export default stepConnectorClasses;