worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
32
node_modules/@mui/material/TableCell/tableCellClasses.d.ts
generated
vendored
Normal file
32
node_modules/@mui/material/TableCell/tableCellClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
export interface TableCellClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element if `variant="head"` or `context.table.head`. */
|
||||
head: string;
|
||||
/** Styles applied to the root element if `variant="body"` or `context.table.body`. */
|
||||
body: string;
|
||||
/** Styles applied to the root element if `variant="footer"` or `context.table.footer`. */
|
||||
footer: string;
|
||||
/** Styles applied to the root element if `size="small"`. */
|
||||
sizeSmall: string;
|
||||
/** Styles applied to the root element if `size="medium"`. */
|
||||
sizeMedium: string;
|
||||
/** Styles applied to the root element if `padding="checkbox"`. */
|
||||
paddingCheckbox: string;
|
||||
/** Styles applied to the root element if `padding="none"`. */
|
||||
paddingNone: string;
|
||||
/** Styles applied to the root element if `align="left"`. */
|
||||
alignLeft: string;
|
||||
/** Styles applied to the root element if `align="center"`. */
|
||||
alignCenter: string;
|
||||
/** Styles applied to the root element if `align="right"`. */
|
||||
alignRight: string;
|
||||
/** Styles applied to the root element if `align="justify"`. */
|
||||
alignJustify: string;
|
||||
/** Styles applied to the root element if `context.table.stickyHeader={true}`. */
|
||||
stickyHeader: string;
|
||||
}
|
||||
export type TableCellClassKey = keyof TableCellClasses;
|
||||
export declare function getTableCellUtilityClass(slot: string): string;
|
||||
declare const tableCellClasses: TableCellClasses;
|
||||
export default tableCellClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue