Jesus sucks
This commit is contained in:
37
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/Grid2.js
generated
vendored
Normal file
37
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/Grid2.js
generated
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
'use client';
|
||||
|
||||
import PropTypes from 'prop-types';
|
||||
import { createGrid as createGrid2 } from '@mui/system/Unstable_Grid';
|
||||
import { styled } from '../styles';
|
||||
import { useDefaultProps } from '../DefaultPropsProvider';
|
||||
var Grid2 = createGrid2({
|
||||
createStyledComponent: styled('div', {
|
||||
name: 'MuiGrid2',
|
||||
slot: 'Root',
|
||||
overridesResolver: function overridesResolver(props, styles) {
|
||||
return styles.root;
|
||||
}
|
||||
}),
|
||||
componentName: 'MuiGrid2',
|
||||
useThemeProps: function useThemeProps(inProps) {
|
||||
return useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiGrid2'
|
||||
});
|
||||
}
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? Grid2.propTypes /* remove-proptypes */ = {
|
||||
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||||
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||||
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
||||
} : void 0;
|
||||
export default Grid2;
|
||||
1
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/Grid2Props.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/Grid2Props.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
||||
28
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/grid2Classes.js
generated
vendored
Normal file
28
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/grid2Classes.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
||||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getGrid2UtilityClass(slot) {
|
||||
return generateUtilityClass('MuiGrid2', slot);
|
||||
}
|
||||
var SPACINGS = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
||||
var DIRECTIONS = ['column-reverse', 'column', 'row-reverse', 'row'];
|
||||
var WRAPS = ['nowrap', 'wrap-reverse', 'wrap'];
|
||||
var GRID_SIZES = ['auto', true, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
|
||||
var grid2Classes = generateUtilityClasses('MuiGrid2', ['root', 'container', 'item', 'zeroMinWidth'].concat(_toConsumableArray(SPACINGS.map(function (spacing) {
|
||||
return "spacing-xs-".concat(spacing);
|
||||
})), _toConsumableArray(DIRECTIONS.map(function (direction) {
|
||||
return "direction-xs-".concat(direction);
|
||||
})), _toConsumableArray(WRAPS.map(function (wrap) {
|
||||
return "wrap-xs-".concat(wrap);
|
||||
})), _toConsumableArray(GRID_SIZES.map(function (size) {
|
||||
return "grid-xs-".concat(size);
|
||||
})), _toConsumableArray(GRID_SIZES.map(function (size) {
|
||||
return "grid-sm-".concat(size);
|
||||
})), _toConsumableArray(GRID_SIZES.map(function (size) {
|
||||
return "grid-md-".concat(size);
|
||||
})), _toConsumableArray(GRID_SIZES.map(function (size) {
|
||||
return "grid-lg-".concat(size);
|
||||
})), _toConsumableArray(GRID_SIZES.map(function (size) {
|
||||
return "grid-xl-".concat(size);
|
||||
}))));
|
||||
export default grid2Classes;
|
||||
6
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/index.js
generated
vendored
Normal file
6
backend/frontend/node_modules/@mui/material/legacy/Unstable_Grid2/index.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
'use client';
|
||||
|
||||
export { default } from './Grid2';
|
||||
export * from './Grid2Props';
|
||||
export { default as grid2Classes } from './grid2Classes';
|
||||
export * from './grid2Classes';
|
||||
Reference in New Issue
Block a user