paradiego
This commit is contained in:
65
node_modules/@mui/material/Container/Container.d.ts
generated
vendored
Normal file
65
node_modules/@mui/material/Container/Container.d.ts
generated
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
import * as React from 'react';
|
||||
import { SxProps, Breakpoint } from '@mui/system';
|
||||
import { Theme } from '../styles';
|
||||
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
|
||||
import { ContainerClasses } from './containerClasses';
|
||||
|
||||
export interface ContainerOwnProps {
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<ContainerClasses>;
|
||||
/**
|
||||
* If `true`, the left and right padding is removed.
|
||||
* @default false
|
||||
*/
|
||||
disableGutters?: boolean;
|
||||
/**
|
||||
* Set the max-width to match the min-width of the current breakpoint.
|
||||
* This is useful if you'd prefer to design for a fixed set of sizes
|
||||
* instead of trying to accommodate a fully fluid viewport.
|
||||
* It's fluid by default.
|
||||
* @default false
|
||||
*/
|
||||
fixed?: boolean;
|
||||
/**
|
||||
* Determine the max-width of the container.
|
||||
* The container width grows with the size of the screen.
|
||||
* Set to `false` to disable `maxWidth`.
|
||||
* @default 'lg'
|
||||
*/
|
||||
maxWidth?: Breakpoint | false;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
|
||||
export interface ContainerTypeMap<
|
||||
AdditionalProps = {},
|
||||
RootComponent extends React.ElementType = 'div',
|
||||
> {
|
||||
props: AdditionalProps & ContainerOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Container](https://mui.com/material-ui/react-container/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Container API](https://mui.com/material-ui/api/container/)
|
||||
*/
|
||||
declare const Container: OverridableComponent<ContainerTypeMap>;
|
||||
|
||||
export type ContainerProps<
|
||||
RootComponent extends React.ElementType = ContainerTypeMap['defaultComponent'],
|
||||
AdditionalProps = {},
|
||||
> = OverrideProps<ContainerTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
|
||||
export default Container;
|
||||
67
node_modules/@mui/material/Container/Container.js
generated
vendored
Normal file
67
node_modules/@mui/material/Container/Container.js
generated
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
'use client';
|
||||
|
||||
import PropTypes from 'prop-types';
|
||||
import { createContainer } from '@mui/system';
|
||||
import capitalize from "../utils/capitalize.js";
|
||||
import styled from "../styles/styled.js";
|
||||
import useThemeProps from "../styles/useThemeProps.js";
|
||||
const Container = createContainer({
|
||||
createStyledComponent: styled('div', {
|
||||
name: 'MuiContainer',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, styles[`maxWidth${capitalize(String(ownerState.maxWidth))}`], ownerState.fixed && styles.fixed, ownerState.disableGutters && styles.disableGutters];
|
||||
}
|
||||
}),
|
||||
useThemeProps: inProps => useThemeProps({
|
||||
props: inProps,
|
||||
name: 'MuiContainer'
|
||||
})
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? Container.propTypes /* remove-proptypes */ = {
|
||||
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||||
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||||
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* The component used for the root node.
|
||||
* Either a string to use a HTML element or a component.
|
||||
*/
|
||||
component: PropTypes.elementType,
|
||||
/**
|
||||
* If `true`, the left and right padding is removed.
|
||||
* @default false
|
||||
*/
|
||||
disableGutters: PropTypes.bool,
|
||||
/**
|
||||
* Set the max-width to match the min-width of the current breakpoint.
|
||||
* This is useful if you'd prefer to design for a fixed set of sizes
|
||||
* instead of trying to accommodate a fully fluid viewport.
|
||||
* It's fluid by default.
|
||||
* @default false
|
||||
*/
|
||||
fixed: PropTypes.bool,
|
||||
/**
|
||||
* Determine the max-width of the container.
|
||||
* The container width grows with the size of the screen.
|
||||
* Set to `false` to disable `maxWidth`.
|
||||
* @default 'lg'
|
||||
*/
|
||||
maxWidth: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl', false]), PropTypes.string]),
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
||||
} : void 0;
|
||||
export default Container;
|
||||
6
node_modules/@mui/material/Container/containerClasses.d.ts
generated
vendored
Normal file
6
node_modules/@mui/material/Container/containerClasses.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { ContainerClasses } from '@mui/system';
|
||||
export type { ContainerClassKey } from '@mui/system';
|
||||
export type { ContainerClasses };
|
||||
export declare function getContainerUtilityClass(slot: string): string;
|
||||
declare const containerClasses: ContainerClasses;
|
||||
export default containerClasses;
|
||||
7
node_modules/@mui/material/Container/containerClasses.js
generated
vendored
Normal file
7
node_modules/@mui/material/Container/containerClasses.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getContainerUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiContainer', slot);
|
||||
}
|
||||
const containerClasses = generateUtilityClasses('MuiContainer', ['root', 'disableGutters', 'fixed', 'maxWidthXs', 'maxWidthSm', 'maxWidthMd', 'maxWidthLg', 'maxWidthXl']);
|
||||
export default containerClasses;
|
||||
5
node_modules/@mui/material/Container/index.d.ts
generated
vendored
Normal file
5
node_modules/@mui/material/Container/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export { default } from './Container';
|
||||
export * from './Container';
|
||||
|
||||
export { default as containerClasses } from './containerClasses';
|
||||
export * from './containerClasses';
|
||||
3
node_modules/@mui/material/Container/index.js
generated
vendored
Normal file
3
node_modules/@mui/material/Container/index.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export { default } from "./Container.js";
|
||||
export { default as containerClasses } from "./containerClasses.js";
|
||||
export * from "./containerClasses.js";
|
||||
6
node_modules/@mui/material/Container/package.json
generated
vendored
Normal file
6
node_modules/@mui/material/Container/package.json
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"sideEffects": false,
|
||||
"module": "./index.js",
|
||||
"main": "../node/Container/index.js",
|
||||
"types": "./index.d.ts"
|
||||
}
|
||||
Reference in New Issue
Block a user