worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
30
node_modules/@mui/material/StepConnector/stepConnectorClasses.d.ts
generated
vendored
Normal file
30
node_modules/@mui/material/StepConnector/stepConnectorClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,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-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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue