worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
16
node_modules/@mui/system/esm/cssGrid/cssGrid.d.ts
generated
vendored
Normal file
16
node_modules/@mui/system/esm/cssGrid/cssGrid.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { PropsFor, SimpleStyleFunction } from "../style/index.js";
|
||||
export const gap: SimpleStyleFunction<'gap'>;
|
||||
export const columnGap: SimpleStyleFunction<'columnGap'>;
|
||||
export const rowGap: SimpleStyleFunction<'rowGap'>;
|
||||
export const gridColumn: SimpleStyleFunction<'gridColumn'>;
|
||||
export const gridRow: SimpleStyleFunction<'gridRow'>;
|
||||
export const gridAutoFlow: SimpleStyleFunction<'gridAutoFlow'>;
|
||||
export const gridAutoColumns: SimpleStyleFunction<'gridAutoColumns'>;
|
||||
export const gridAutoRows: SimpleStyleFunction<'gridAutoRows'>;
|
||||
export const gridTemplateColumns: SimpleStyleFunction<'gridTemplateColumns'>;
|
||||
export const gridTemplateRows: SimpleStyleFunction<'gridTemplateRows'>;
|
||||
export const gridTemplateAreas: SimpleStyleFunction<'gridTemplateAreas'>;
|
||||
export const gridArea: SimpleStyleFunction<'gridArea'>;
|
||||
declare const grid: SimpleStyleFunction<'gap' | 'columnGap' | 'rowGap' | 'gridColumn' | 'gridRow' | 'gridAutoFlow' | 'gridAutoColumns' | 'gridAutoRows' | 'gridTemplateColumns' | 'gridTemplateRows' | 'gridTemplateAreas' | 'gridArea'>;
|
||||
export type CssGridProps = PropsFor<typeof grid>;
|
||||
export default grid;
|
||||
85
node_modules/@mui/system/esm/cssGrid/cssGrid.js
generated
vendored
Normal file
85
node_modules/@mui/system/esm/cssGrid/cssGrid.js
generated
vendored
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
import style from "../style/index.js";
|
||||
import compose from "../compose/index.js";
|
||||
import { createUnaryUnit, getValue } from "../spacing/index.js";
|
||||
import { handleBreakpoints } from "../breakpoints/index.js";
|
||||
import responsivePropType from "../responsivePropType/index.js";
|
||||
|
||||
// false positive
|
||||
// eslint-disable-next-line react/function-component-definition
|
||||
export const gap = props => {
|
||||
if (props.gap !== undefined && props.gap !== null) {
|
||||
const transformer = createUnaryUnit(props.theme, 'spacing', 8, 'gap');
|
||||
const styleFromPropValue = propValue => ({
|
||||
gap: getValue(transformer, propValue)
|
||||
});
|
||||
return handleBreakpoints(props, props.gap, styleFromPropValue);
|
||||
}
|
||||
return null;
|
||||
};
|
||||
gap.propTypes = process.env.NODE_ENV !== 'production' ? {
|
||||
gap: responsivePropType
|
||||
} : {};
|
||||
gap.filterProps = ['gap'];
|
||||
|
||||
// false positive
|
||||
// eslint-disable-next-line react/function-component-definition
|
||||
export const columnGap = props => {
|
||||
if (props.columnGap !== undefined && props.columnGap !== null) {
|
||||
const transformer = createUnaryUnit(props.theme, 'spacing', 8, 'columnGap');
|
||||
const styleFromPropValue = propValue => ({
|
||||
columnGap: getValue(transformer, propValue)
|
||||
});
|
||||
return handleBreakpoints(props, props.columnGap, styleFromPropValue);
|
||||
}
|
||||
return null;
|
||||
};
|
||||
columnGap.propTypes = process.env.NODE_ENV !== 'production' ? {
|
||||
columnGap: responsivePropType
|
||||
} : {};
|
||||
columnGap.filterProps = ['columnGap'];
|
||||
|
||||
// false positive
|
||||
// eslint-disable-next-line react/function-component-definition
|
||||
export const rowGap = props => {
|
||||
if (props.rowGap !== undefined && props.rowGap !== null) {
|
||||
const transformer = createUnaryUnit(props.theme, 'spacing', 8, 'rowGap');
|
||||
const styleFromPropValue = propValue => ({
|
||||
rowGap: getValue(transformer, propValue)
|
||||
});
|
||||
return handleBreakpoints(props, props.rowGap, styleFromPropValue);
|
||||
}
|
||||
return null;
|
||||
};
|
||||
rowGap.propTypes = process.env.NODE_ENV !== 'production' ? {
|
||||
rowGap: responsivePropType
|
||||
} : {};
|
||||
rowGap.filterProps = ['rowGap'];
|
||||
export const gridColumn = style({
|
||||
prop: 'gridColumn'
|
||||
});
|
||||
export const gridRow = style({
|
||||
prop: 'gridRow'
|
||||
});
|
||||
export const gridAutoFlow = style({
|
||||
prop: 'gridAutoFlow'
|
||||
});
|
||||
export const gridAutoColumns = style({
|
||||
prop: 'gridAutoColumns'
|
||||
});
|
||||
export const gridAutoRows = style({
|
||||
prop: 'gridAutoRows'
|
||||
});
|
||||
export const gridTemplateColumns = style({
|
||||
prop: 'gridTemplateColumns'
|
||||
});
|
||||
export const gridTemplateRows = style({
|
||||
prop: 'gridTemplateRows'
|
||||
});
|
||||
export const gridTemplateAreas = style({
|
||||
prop: 'gridTemplateAreas'
|
||||
});
|
||||
export const gridArea = style({
|
||||
prop: 'gridArea'
|
||||
});
|
||||
const grid = compose(gap, columnGap, rowGap, gridColumn, gridRow, gridAutoFlow, gridAutoColumns, gridAutoRows, gridTemplateColumns, gridTemplateRows, gridTemplateAreas, gridArea);
|
||||
export default grid;
|
||||
2
node_modules/@mui/system/esm/cssGrid/index.d.ts
generated
vendored
Normal file
2
node_modules/@mui/system/esm/cssGrid/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export { default } from "./cssGrid.js";
|
||||
export * from "./cssGrid.js";
|
||||
2
node_modules/@mui/system/esm/cssGrid/index.js
generated
vendored
Normal file
2
node_modules/@mui/system/esm/cssGrid/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export { default } from "./cssGrid.js";
|
||||
export * from "./cssGrid.js";
|
||||
Loading…
Add table
Add a link
Reference in a new issue