This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/@mui/material/StepConnector/stepConnectorClasses.d.ts
2024-09-18 13:34:19 -03:00

31 lines
1.9 KiB
TypeScript

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-horizontal) and [.MuiStepConnector-line](/material-ui/api/step-connector/#step-connector-classes-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-vertical) and [.MuiStepConnector-line](/material-ui/api/step-connector/#step-connector-classes-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;