init project
Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled

This commit is contained in:
how2ice
2025-12-12 14:26:25 +09:00
commit 005cf56baf
43188 changed files with 1079531 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# Material Pigment CSS
A wrapper over Pigment CSS that provides similar theming and styling APIs as @mui/system.

View File

@@ -0,0 +1,69 @@
{
"name": "@mui/material-pigment-css",
"version": "7.3.6",
"author": "MUI Team",
"description": "A wrapper over Pigment CSS that provides the same styled and theming APIs as Material UI.",
"keywords": [
"react",
"mui",
"material-ui",
"css-in-js",
"zero-runtime"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mui/material-ui.git",
"directory": "packages/mui-material-pigment-css"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/material-ui/issues"
},
"homepage": "https://mui.com/material-ui/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui-org"
},
"scripts": {
"build": "code-infra build --copy \"src/styles.css\" --copy \"src/styles.css:esm\"",
"release": "pnpm build && pnpm publish",
"test": "pnpm --workspace-root test:unit --project \"*:@mui/material-pigment-css\"",
"typescript": "tsc -p tsconfig.json"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@mui/system": "workspace:*"
},
"devDependencies": {
"react": "^19.2.1"
},
"peerDependencies": {
"@pigment-css/react": "^0.0.30"
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"directory": "build"
},
"wyw-in-js": {
"tags": {
"styled": "@pigment-css/react/exports/styled",
"sx": "@pigment-css/react/exports/sx",
"keyframes": "@pigment-css/react/exports/keyframes",
"generateAtomics": "@pigment-css/react/exports/generateAtomics",
"css": "@pigment-css/react/exports/css",
"createUseThemeProps": "@pigment-css/react/exports/createUseThemeProps",
"internal_createExtendSxProp": "@pigment-css/react/exports/internal_createExtendSxProp",
"globalCss": "@pigment-css/react/exports/globalCss",
"useTheme": "@pigment-css/react/exports/useTheme"
}
},
"exports": {
".": "./src/index.ts",
"./styles.css": "./src/styles.css",
"./*": "./src/*/index.ts"
},
"engines": {
"node": ">=14.0.0"
}
}

View File

@@ -0,0 +1,3 @@
import Box from '@pigment-css/react/Box';
export default Box;

View File

@@ -0,0 +1 @@
export { default } from './Box';

View File

@@ -0,0 +1,3 @@
import Container from '@pigment-css/react/Container';
export default Container;

View File

@@ -0,0 +1 @@
export { default } from './Container';

View File

@@ -0,0 +1,3 @@
import Grid from '@pigment-css/react/Grid';
export default Grid;

View File

@@ -0,0 +1 @@
export { default } from './Grid';

View File

@@ -0,0 +1 @@
export { useRtl, default } from '@mui/system/RtlProvider';

View File

@@ -0,0 +1 @@
export * from './RtlProvider';

View File

@@ -0,0 +1,3 @@
import Stack from '@pigment-css/react/Stack';
export default Stack;

View File

@@ -0,0 +1 @@
export { default } from './Stack';

View File

@@ -0,0 +1,2 @@
export * from '@pigment-css/react';
export * from '@pigment-css/react/theme';

View File

@@ -0,0 +1,3 @@
/**
* Placeholder file for generated theme
*/

View File

@@ -0,0 +1,13 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"composite": true,
"declaration": true,
"noEmit": false,
"emitDeclarationOnly": true,
"outDir": "build/esm",
"rootDir": "./src"
},
"include": ["./src/**/*.ts*"],
"exclude": ["src/**/*.spec.ts*", "src/**/*.test.ts*"]
}

View File

@@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"moduleResolution": "Bundler"
},
"include": ["src/**/*", "test/**/*"]
}

View File

@@ -0,0 +1,4 @@
// eslint-disable-next-line import/no-relative-packages
import sharedConfig from '../../vitest.shared.mts';
export default sharedConfig(import.meta.url, { jsdom: true });