worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
42
node_modules/@mui/system/Grid/gridGenerator.d.ts
generated
vendored
Normal file
42
node_modules/@mui/system/Grid/gridGenerator.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
import { Breakpoints } from "../createBreakpoints/createBreakpoints.js";
|
||||
import { Spacing } from "../createTheme/createSpacing.js";
|
||||
import { ResponsiveStyleValue } from "../styleFunctionSx/index.js";
|
||||
import { GridDirection, GridOwnerState } from "./GridProps.js";
|
||||
interface Props {
|
||||
theme: {
|
||||
breakpoints: Breakpoints;
|
||||
spacing?: Spacing;
|
||||
};
|
||||
ownerState: GridOwnerState;
|
||||
}
|
||||
export declare const generateGridSizeStyles: ({
|
||||
theme,
|
||||
ownerState
|
||||
}: Props) => {};
|
||||
export declare const generateGridOffsetStyles: ({
|
||||
theme,
|
||||
ownerState
|
||||
}: Props) => {};
|
||||
export declare const generateGridColumnsStyles: ({
|
||||
theme,
|
||||
ownerState
|
||||
}: Props) => {};
|
||||
export declare const generateGridRowSpacingStyles: ({
|
||||
theme,
|
||||
ownerState
|
||||
}: Props) => {};
|
||||
export declare const generateGridColumnSpacingStyles: ({
|
||||
theme,
|
||||
ownerState
|
||||
}: Props) => {};
|
||||
export declare const generateGridDirectionStyles: ({
|
||||
theme,
|
||||
ownerState
|
||||
}: Props) => {};
|
||||
export declare const generateGridStyles: ({
|
||||
ownerState
|
||||
}: Props) => {};
|
||||
export declare const generateSizeClassNames: (size: GridOwnerState["size"]) => string[];
|
||||
export declare const generateSpacingClassNames: (spacing: GridOwnerState["spacing"], smallestBreakpoint?: string) => string[];
|
||||
export declare const generateDirectionClasses: (direction: ResponsiveStyleValue<GridDirection> | undefined) => string[];
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue