paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

3
node_modules/@mui/system/display/display.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import { PropsFor, display } from '../Box';
export type DisplayProps = PropsFor<typeof display>;

27
node_modules/@mui/system/display/display.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
import style from "../style/index.js";
import compose from "../compose/index.js";
export const displayPrint = style({
prop: 'displayPrint',
cssProperty: false,
transform: value => ({
'@media print': {
display: value
}
})
});
export const displayRaw = style({
prop: 'display'
});
export const overflow = style({
prop: 'overflow'
});
export const textOverflow = style({
prop: 'textOverflow'
});
export const visibility = style({
prop: 'visibility'
});
export const whiteSpace = style({
prop: 'whiteSpace'
});
export default compose(displayPrint, displayRaw, overflow, textOverflow, visibility, whiteSpace);

2
node_modules/@mui/system/display/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export { default } from './display';
export * from './display';

2
node_modules/@mui/system/display/index.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export { default } from "./display.js";
export * from "./display.js";

6
node_modules/@mui/system/display/package.json generated vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"sideEffects": false,
"module": "./index.js",
"main": "../node/display/index.js",
"types": "./index.d.ts"
}