Version 1.0.2 mit node_modules Verzeichnis

This commit is contained in:
ISA
2024-10-02 07:58:24 +02:00
parent f353a06b1b
commit 62b6e55a0a
68228 changed files with 4548477 additions and 651 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"
}