Version 1.0.2 mit node_modules Verzeichnis

This commit is contained in:
ISA
2024-10-02 07:58:24 +02:00
parent f353a06b1b
commit 62b6e55a0a
68228 changed files with 4548477 additions and 651 deletions

View File

@@ -0,0 +1,42 @@
export interface LinearProgressClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root and bar2 element if `color="primary"`; bar2 if `variant="buffer"`. */
colorPrimary: string;
/** Styles applied to the root and bar2 elements if `color="secondary"`; bar2 if `variant="buffer"`. */
colorSecondary: string;
/** Styles applied to the root element if `variant="determinate"`. */
determinate: string;
/** Styles applied to the root element if `variant="indeterminate"`. */
indeterminate: string;
/** Styles applied to the root element if `variant="buffer"`. */
buffer: string;
/** Styles applied to the root element if `variant="query"`. */
query: string;
/** Styles applied to the additional bar element if `variant="buffer"`. */
dashed: string;
/** Styles applied to the additional bar element if `variant="buffer"` and `color="primary"`. */
dashedColorPrimary: string;
/** Styles applied to the additional bar element if `variant="buffer"` and `color="secondary"`. */
dashedColorSecondary: string;
/** Styles applied to the layered bar1 and bar2 elements. */
bar: string;
/** Styles applied to the bar elements if `color="primary"`; bar2 if `variant` not "buffer". */
barColorPrimary: string;
/** Styles applied to the bar elements if `color="secondary"`; bar2 if `variant` not "buffer". */
barColorSecondary: string;
/** Styles applied to the bar1 element if `variant="indeterminate or query"`. */
bar1Indeterminate: string;
/** Styles applied to the bar1 element if `variant="determinate"`. */
bar1Determinate: string;
/** Styles applied to the bar1 element if `variant="buffer"`. */
bar1Buffer: string;
/** Styles applied to the bar2 element if `variant="indeterminate or query"`. */
bar2Indeterminate: string;
/** Styles applied to the bar2 element if `variant="buffer"`. */
bar2Buffer: string;
}
export type LinearProgressClassKey = keyof LinearProgressClasses;
export declare function getLinearProgressUtilityClass(slot: string): string;
declare const linearProgressClasses: LinearProgressClasses;
export default linearProgressClasses;