worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
2
node_modules/@mui/system/esm/spacing/index.d.ts
generated
vendored
Normal file
2
node_modules/@mui/system/esm/spacing/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export { default } from "./spacing.js";
|
||||
export * from "./spacing.js";
|
||||
2
node_modules/@mui/system/esm/spacing/index.js
generated
vendored
Normal file
2
node_modules/@mui/system/esm/spacing/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export { default } from "./spacing.js";
|
||||
export * from "./spacing.js";
|
||||
20
node_modules/@mui/system/esm/spacing/spacing.d.ts
generated
vendored
Normal file
20
node_modules/@mui/system/esm/spacing/spacing.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { SimpleStyleFunction, PropsFor } from "../style/index.js";
|
||||
export type SpacingValueType = string | number | null | undefined;
|
||||
export type SpacingProps = PropsFor<typeof spacing>;
|
||||
export function createUnarySpacing<Spacing>(theme: {
|
||||
spacing: Spacing;
|
||||
}): Spacing extends number ? (abs: number | string) => number | number : Spacing extends any[] ? <Index extends number>(abs: Index | string) => Spacing[Index] | string : Spacing extends ((...args: unknown[]) => unknown) ? Spacing :
|
||||
// warns in Dev
|
||||
() => undefined;
|
||||
export function createUnaryUnit<Spacing>(theme: {
|
||||
spacing: Spacing;
|
||||
}, themeKey: string, defaultValue: Spacing, propName: string): Spacing extends number ? (abs: SpacingValueType) => number | number : Spacing extends any[] ? <Index extends number>(abs: Index | string) => Spacing[Index] | string : Spacing extends ((...args: unknown[]) => unknown) ? Spacing :
|
||||
// warns in Dev
|
||||
() => undefined;
|
||||
export const margin: SimpleStyleFunction<'m' | 'mt' | 'mr' | 'mb' | 'ml' | 'mx' | 'my' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginX' | 'marginY' | 'marginInline' | 'marginInlineStart' | 'marginInlineEnd' | 'marginBlock' | 'marginBlockStart' | 'marginBlockEnd'>;
|
||||
export type MarginProps = PropsFor<typeof margin>;
|
||||
export const padding: SimpleStyleFunction<'p' | 'pt' | 'pr' | 'pb' | 'pl' | 'px' | 'py' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingX' | 'paddingY' | 'paddingInline' | 'paddingInlineStart' | 'paddingInlineEnd' | 'paddingBlock' | 'paddingBlockStart' | 'paddingBlockEnd'>;
|
||||
declare const spacing: SimpleStyleFunction<'m' | 'mt' | 'mr' | 'mb' | 'ml' | 'mx' | 'my' | 'p' | 'pt' | 'pr' | 'pb' | 'pl' | 'px' | 'py' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginX' | 'marginY' | 'marginInline' | 'marginInlineStart' | 'marginInlineEnd' | 'marginBlock' | 'marginBlockStart' | 'marginBlockEnd' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingX' | 'paddingY' | 'paddingInline' | 'paddingInlineStart' | 'paddingInlineEnd' | 'paddingBlock' | 'paddingBlockStart' | 'paddingBlockEnd'>;
|
||||
export function getValue(transformer: (prop: SpacingValueType) => SpacingValueType, propValue: SpacingValueType): SpacingValueType;
|
||||
export type PaddingProps = PropsFor<typeof padding>;
|
||||
export default spacing;
|
||||
157
node_modules/@mui/system/esm/spacing/spacing.js
generated
vendored
Normal file
157
node_modules/@mui/system/esm/spacing/spacing.js
generated
vendored
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
import responsivePropType from "../responsivePropType/index.js";
|
||||
import { handleBreakpoints } from "../breakpoints/index.js";
|
||||
import { getPath } from "../style/index.js";
|
||||
import merge from "../merge/index.js";
|
||||
import memoize from "../memoize/index.js";
|
||||
const properties = {
|
||||
m: 'margin',
|
||||
p: 'padding'
|
||||
};
|
||||
const directions = {
|
||||
t: 'Top',
|
||||
r: 'Right',
|
||||
b: 'Bottom',
|
||||
l: 'Left',
|
||||
x: ['Left', 'Right'],
|
||||
y: ['Top', 'Bottom']
|
||||
};
|
||||
const aliases = {
|
||||
marginX: 'mx',
|
||||
marginY: 'my',
|
||||
paddingX: 'px',
|
||||
paddingY: 'py'
|
||||
};
|
||||
|
||||
// memoize() impact:
|
||||
// From 300,000 ops/sec
|
||||
// To 350,000 ops/sec
|
||||
const getCssProperties = memoize(prop => {
|
||||
// It's not a shorthand notation.
|
||||
if (prop.length > 2) {
|
||||
if (aliases[prop]) {
|
||||
prop = aliases[prop];
|
||||
} else {
|
||||
return [prop];
|
||||
}
|
||||
}
|
||||
const [a, b] = prop.split('');
|
||||
const property = properties[a];
|
||||
const direction = directions[b] || '';
|
||||
return Array.isArray(direction) ? direction.map(dir => property + dir) : [property + direction];
|
||||
});
|
||||
export const marginKeys = ['m', 'mt', 'mr', 'mb', 'ml', 'mx', 'my', 'margin', 'marginTop', 'marginRight', 'marginBottom', 'marginLeft', 'marginX', 'marginY', 'marginInline', 'marginInlineStart', 'marginInlineEnd', 'marginBlock', 'marginBlockStart', 'marginBlockEnd'];
|
||||
export const paddingKeys = ['p', 'pt', 'pr', 'pb', 'pl', 'px', 'py', 'padding', 'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft', 'paddingX', 'paddingY', 'paddingInline', 'paddingInlineStart', 'paddingInlineEnd', 'paddingBlock', 'paddingBlockStart', 'paddingBlockEnd'];
|
||||
const spacingKeys = [...marginKeys, ...paddingKeys];
|
||||
export function createUnaryUnit(theme, themeKey, defaultValue, propName) {
|
||||
const themeSpacing = getPath(theme, themeKey, true) ?? defaultValue;
|
||||
if (typeof themeSpacing === 'number' || typeof themeSpacing === 'string') {
|
||||
return val => {
|
||||
if (typeof val === 'string') {
|
||||
return val;
|
||||
}
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (typeof val !== 'number') {
|
||||
console.error(`MUI: Expected ${propName} argument to be a number or a string, got ${val}.`);
|
||||
}
|
||||
}
|
||||
if (typeof themeSpacing === 'string') {
|
||||
if (themeSpacing.startsWith('var(') && val === 0) {
|
||||
return 0;
|
||||
}
|
||||
if (themeSpacing.startsWith('var(') && val === 1) {
|
||||
return themeSpacing;
|
||||
}
|
||||
return `calc(${val} * ${themeSpacing})`;
|
||||
}
|
||||
return themeSpacing * val;
|
||||
};
|
||||
}
|
||||
if (Array.isArray(themeSpacing)) {
|
||||
return val => {
|
||||
if (typeof val === 'string') {
|
||||
return val;
|
||||
}
|
||||
const abs = Math.abs(val);
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (!Number.isInteger(abs)) {
|
||||
console.error([`MUI: The \`theme.${themeKey}\` array type cannot be combined with non integer values.` + `You should either use an integer value that can be used as index, or define the \`theme.${themeKey}\` as a number.`].join('\n'));
|
||||
} else if (abs > themeSpacing.length - 1) {
|
||||
console.error([`MUI: The value provided (${abs}) overflows.`, `The supported values are: ${JSON.stringify(themeSpacing)}.`, `${abs} > ${themeSpacing.length - 1}, you need to add the missing values.`].join('\n'));
|
||||
}
|
||||
}
|
||||
const transformed = themeSpacing[abs];
|
||||
if (val >= 0) {
|
||||
return transformed;
|
||||
}
|
||||
if (typeof transformed === 'number') {
|
||||
return -transformed;
|
||||
}
|
||||
if (typeof transformed === 'string' && transformed.startsWith('var(')) {
|
||||
return `calc(-1 * ${transformed})`;
|
||||
}
|
||||
return `-${transformed}`;
|
||||
};
|
||||
}
|
||||
if (typeof themeSpacing === 'function') {
|
||||
return themeSpacing;
|
||||
}
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
console.error([`MUI: The \`theme.${themeKey}\` value (${themeSpacing}) is invalid.`, 'It should be a number, an array or a function.'].join('\n'));
|
||||
}
|
||||
return () => undefined;
|
||||
}
|
||||
export function createUnarySpacing(theme) {
|
||||
return createUnaryUnit(theme, 'spacing', 8, 'spacing');
|
||||
}
|
||||
export function getValue(transformer, propValue) {
|
||||
if (typeof propValue === 'string' || propValue == null) {
|
||||
return propValue;
|
||||
}
|
||||
return transformer(propValue);
|
||||
}
|
||||
export function getStyleFromPropValue(cssProperties, transformer) {
|
||||
return propValue => cssProperties.reduce((acc, cssProperty) => {
|
||||
acc[cssProperty] = getValue(transformer, propValue);
|
||||
return acc;
|
||||
}, {});
|
||||
}
|
||||
function resolveCssProperty(props, keys, prop, transformer) {
|
||||
// Using a hash computation over an array iteration could be faster, but with only 28 items,
|
||||
// it's doesn't worth the bundle size.
|
||||
if (!keys.includes(prop)) {
|
||||
return null;
|
||||
}
|
||||
const cssProperties = getCssProperties(prop);
|
||||
const styleFromPropValue = getStyleFromPropValue(cssProperties, transformer);
|
||||
const propValue = props[prop];
|
||||
return handleBreakpoints(props, propValue, styleFromPropValue);
|
||||
}
|
||||
function style(props, keys) {
|
||||
const transformer = createUnarySpacing(props.theme);
|
||||
return Object.keys(props).map(prop => resolveCssProperty(props, keys, prop, transformer)).reduce(merge, {});
|
||||
}
|
||||
export function margin(props) {
|
||||
return style(props, marginKeys);
|
||||
}
|
||||
margin.propTypes = process.env.NODE_ENV !== 'production' ? marginKeys.reduce((obj, key) => {
|
||||
obj[key] = responsivePropType;
|
||||
return obj;
|
||||
}, {}) : {};
|
||||
margin.filterProps = marginKeys;
|
||||
export function padding(props) {
|
||||
return style(props, paddingKeys);
|
||||
}
|
||||
padding.propTypes = process.env.NODE_ENV !== 'production' ? paddingKeys.reduce((obj, key) => {
|
||||
obj[key] = responsivePropType;
|
||||
return obj;
|
||||
}, {}) : {};
|
||||
padding.filterProps = paddingKeys;
|
||||
function spacing(props) {
|
||||
return style(props, spacingKeys);
|
||||
}
|
||||
spacing.propTypes = process.env.NODE_ENV !== 'production' ? spacingKeys.reduce((obj, key) => {
|
||||
obj[key] = responsivePropType;
|
||||
return obj;
|
||||
}, {}) : {};
|
||||
spacing.filterProps = spacingKeys;
|
||||
export default spacing;
|
||||
Loading…
Add table
Add a link
Reference in a new issue