worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
78
node_modules/@mui/system/esm/createBreakpoints/createBreakpoints.d.ts
generated
vendored
Normal file
78
node_modules/@mui/system/esm/createBreakpoints/createBreakpoints.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
import { OverridableStringUnion } from '@mui/types';
|
||||
export interface BreakpointOverrides {}
|
||||
export type Breakpoint = OverridableStringUnion<'xs' | 'sm' | 'md' | 'lg' | 'xl', BreakpointOverrides>;
|
||||
export const keys: Breakpoint[];
|
||||
|
||||
// Keep in sync with docs/src/pages/customization/breakpoints/breakpoints.md
|
||||
// #host-reference
|
||||
export interface Breakpoints {
|
||||
keys: Breakpoint[];
|
||||
/**
|
||||
* Each breakpoint (a key) matches with a fixed screen width (a value).
|
||||
* @default {
|
||||
* // extra-small
|
||||
* xs: 0,
|
||||
* // small
|
||||
* sm: 600,
|
||||
* // medium
|
||||
* md: 900,
|
||||
* // large
|
||||
* lg: 1200,
|
||||
* // extra-large
|
||||
* xl: 1536,
|
||||
* }
|
||||
*/
|
||||
values: { [key in Breakpoint]: number };
|
||||
/**
|
||||
* @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
|
||||
* @returns A media query string ready to be used with most styling solutions, which matches screen widths greater than the screen size given by the breakpoint key (inclusive).
|
||||
* @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-up-key-media-query)
|
||||
*/
|
||||
up: (key: Breakpoint | number) => string;
|
||||
/**
|
||||
* @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
|
||||
* @returns A media query string ready to be used with most styling solutions, which matches screen widths less than the screen size given by the breakpoint key (exclusive).
|
||||
* @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-down-key-media-query)
|
||||
*/
|
||||
down: (key: Breakpoint | number) => string;
|
||||
/**
|
||||
* @param start - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
|
||||
* @param end - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
|
||||
* @returns A media query string ready to be used with most styling solutions, which matches screen widths greater than
|
||||
* the screen size given by the breakpoint key in the first argument (inclusive) and less than the screen size given by the breakpoint key in the second argument (exclusive).
|
||||
* @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-between-start-end-media-query)
|
||||
*/
|
||||
between: (start: Breakpoint | number, end: Breakpoint | number) => string;
|
||||
/**
|
||||
* @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
|
||||
* @returns A media query string ready to be used with most styling solutions, which matches screen widths starting from
|
||||
* the screen size given by the breakpoint key (inclusive) and stopping at the screen size given by the next breakpoint key (exclusive).
|
||||
* @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-only-key-media-query)
|
||||
*/
|
||||
only: (key: Breakpoint) => string;
|
||||
/**
|
||||
* @param key - A breakpoint key (`xs`, `sm`, etc.).
|
||||
* @returns A media query string ready to be used with most styling solutions, which matches screen widths stopping at
|
||||
* the screen size given by the breakpoint key (exclusive) and starting at the screen size given by the next breakpoint key (inclusive).
|
||||
*/
|
||||
not: (key: Breakpoint) => string;
|
||||
/**
|
||||
* The unit used for the breakpoint's values.
|
||||
* @default 'px'
|
||||
*/
|
||||
unit?: string | undefined;
|
||||
}
|
||||
export interface BreakpointsOptions extends Partial<Breakpoints> {
|
||||
/**
|
||||
* The increment divided by 100 used to implement exclusive breakpoints.
|
||||
* For example, `step: 5` means that `down(500)` will result in `'(max-width: 499.95px)'`.
|
||||
* @default 5
|
||||
*/
|
||||
step?: number | undefined;
|
||||
/**
|
||||
* The unit used for the breakpoint's values.
|
||||
* @default 'px'
|
||||
*/
|
||||
unit?: string | undefined;
|
||||
}
|
||||
export default function createBreakpoints(options: BreakpointsOptions): Breakpoints;
|
||||
81
node_modules/@mui/system/esm/createBreakpoints/createBreakpoints.js
generated
vendored
Normal file
81
node_modules/@mui/system/esm/createBreakpoints/createBreakpoints.js
generated
vendored
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
// Sorted ASC by size. That's important.
|
||||
// It can't be configured as it's used statically for propTypes.
|
||||
export const breakpointKeys = ['xs', 'sm', 'md', 'lg', 'xl'];
|
||||
const sortBreakpointsValues = values => {
|
||||
const breakpointsAsArray = Object.keys(values).map(key => ({
|
||||
key,
|
||||
val: values[key]
|
||||
})) || [];
|
||||
// Sort in ascending order
|
||||
breakpointsAsArray.sort((breakpoint1, breakpoint2) => breakpoint1.val - breakpoint2.val);
|
||||
return breakpointsAsArray.reduce((acc, obj) => {
|
||||
return {
|
||||
...acc,
|
||||
[obj.key]: obj.val
|
||||
};
|
||||
}, {});
|
||||
};
|
||||
|
||||
// Keep in mind that @media is inclusive by the CSS specification.
|
||||
export default function createBreakpoints(breakpoints) {
|
||||
const {
|
||||
// The breakpoint **start** at this value.
|
||||
// For instance with the first breakpoint xs: [xs, sm).
|
||||
values = {
|
||||
xs: 0,
|
||||
// phone
|
||||
sm: 600,
|
||||
// tablet
|
||||
md: 900,
|
||||
// small laptop
|
||||
lg: 1200,
|
||||
// desktop
|
||||
xl: 1536 // large screen
|
||||
},
|
||||
unit = 'px',
|
||||
step = 5,
|
||||
...other
|
||||
} = breakpoints;
|
||||
const sortedValues = sortBreakpointsValues(values);
|
||||
const keys = Object.keys(sortedValues);
|
||||
function up(key) {
|
||||
const value = typeof values[key] === 'number' ? values[key] : key;
|
||||
return `@media (min-width:${value}${unit})`;
|
||||
}
|
||||
function down(key) {
|
||||
const value = typeof values[key] === 'number' ? values[key] : key;
|
||||
return `@media (max-width:${value - step / 100}${unit})`;
|
||||
}
|
||||
function between(start, end) {
|
||||
const endIndex = keys.indexOf(end);
|
||||
return `@media (min-width:${typeof values[start] === 'number' ? values[start] : start}${unit}) and ` + `(max-width:${(endIndex !== -1 && typeof values[keys[endIndex]] === 'number' ? values[keys[endIndex]] : end) - step / 100}${unit})`;
|
||||
}
|
||||
function only(key) {
|
||||
if (keys.indexOf(key) + 1 < keys.length) {
|
||||
return between(key, keys[keys.indexOf(key) + 1]);
|
||||
}
|
||||
return up(key);
|
||||
}
|
||||
function not(key) {
|
||||
// handle first and last key separately, for better readability
|
||||
const keyIndex = keys.indexOf(key);
|
||||
if (keyIndex === 0) {
|
||||
return up(keys[1]);
|
||||
}
|
||||
if (keyIndex === keys.length - 1) {
|
||||
return down(keys[keyIndex]);
|
||||
}
|
||||
return between(key, keys[keys.indexOf(key) + 1]).replace('@media', '@media not all and');
|
||||
}
|
||||
return {
|
||||
keys,
|
||||
values: sortedValues,
|
||||
up,
|
||||
down,
|
||||
between,
|
||||
only,
|
||||
not,
|
||||
unit,
|
||||
...other
|
||||
};
|
||||
}
|
||||
3
node_modules/@mui/system/esm/createBreakpoints/index.d.ts
generated
vendored
Normal file
3
node_modules/@mui/system/esm/createBreakpoints/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
/** This export is intended for internal integration with Pigment CSS */
|
||||
/* eslint-disable import/prefer-default-export */
|
||||
export { default as unstable_createBreakpoints } from "./createBreakpoints.js";
|
||||
3
node_modules/@mui/system/esm/createBreakpoints/index.js
generated
vendored
Normal file
3
node_modules/@mui/system/esm/createBreakpoints/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
/** This export is intended for internal integration with Pigment CSS */
|
||||
/* eslint-disable import/prefer-default-export */
|
||||
export { default as unstable_createBreakpoints } from "./createBreakpoints.js";
|
||||
Loading…
Add table
Add a link
Reference in a new issue