1
0
Fork 0

worked on GarageApp stuff

This commit is contained in:
Techognito 2025-08-25 17:46:11 +02:00
parent 60aaf17af3
commit eb606572b0
51919 changed files with 2168177 additions and 18 deletions

36
node_modules/@mui/material/Tabs/tabsClasses.d.ts generated vendored Normal file
View file

@ -0,0 +1,36 @@
export interface TabsClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `orientation="vertical"`. */
vertical: string;
/** Styles applied to the flex container element. */
/** @deprecated use `list` instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details. */
flexContainer: string;
/** Styles applied to the flex container element if `orientation="vertical"`. */
/** @deprecated use a combination of `list` and `vertical` instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details. */
flexContainerVertical: string;
/** Styles applied to the list element. */
list: string;
/** Styles applied to the flex container element if `centered={true}` & `!variant="scrollable"`. */
centered: string;
/** Styles applied to the tablist element. */
scroller: string;
/** Styles applied to the tablist element if `!variant="scrollable"`. */
fixed: string;
/** Styles applied to the tablist element if `variant="scrollable"` and `orientation="horizontal"`. */
scrollableX: string;
/** Styles applied to the tablist element if `variant="scrollable"` and `orientation="vertical"`. */
scrollableY: string;
/** Styles applied to the tablist element if `variant="scrollable"` and `visibleScrollbar={false}`. */
hideScrollbar: string;
/** Styles applied to the ScrollButtonComponent component. */
scrollButtons: string;
/** Styles applied to the ScrollButtonComponent component if `allowScrollButtonsMobile={true}`. */
scrollButtonsHideMobile: string;
/** Styles applied to the TabIndicator component. */
indicator: string;
}
export type TabsClassKey = keyof TabsClasses;
export declare function getTabsUtilityClass(slot: string): string;
declare const tabsClasses: TabsClasses;
export default tabsClasses;