@atipicus/mrs-ui 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -12
- package/dist/index.js +677 -1879
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +677 -1879
- package/dist/index.mjs.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/package.json +10 -8
package/dist/src/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atipicus/mrs-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "MRS Material-UI v6.5 Design System - 54 production-ready React components with comprehensive testing and Storybook documentation",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -42,13 +42,14 @@
|
|
|
42
42
|
"lint:fix": "eslint src --ext .ts,.tsx --ignore-pattern 'src/tokens/scripts/**' --fix",
|
|
43
43
|
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
|
|
44
44
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
|
|
45
|
+
"clean": "rimraf dist",
|
|
46
|
+
"prebuild": "npm run clean",
|
|
45
47
|
"prepublishOnly": "npm run lint && npm run type-check && npm test && npm run build",
|
|
46
48
|
"publish:patch": "npm version patch && npm publish",
|
|
47
49
|
"publish:minor": "npm version minor && npm publish",
|
|
48
50
|
"publish:major": "npm version major && npm publish",
|
|
49
|
-
"storybook": "storybook dev -p 6006",
|
|
50
51
|
"tokens:build": "style-dictionary build --config src/tokens/config/style-dictionary.config.js",
|
|
51
|
-
"tokens:clean": "
|
|
52
|
+
"tokens:clean": "rimraf src/tokens/generated/*",
|
|
52
53
|
"tokens:rebuild": "npm run tokens:clean && npm run tokens:build",
|
|
53
54
|
"tokens:watch": "nodemon --watch src/tokens/source -e json --exec npm run tokens:build",
|
|
54
55
|
"tokens:sync:pull": "node src/tokens/scripts/sync-figma-tokens.js --direction=pull",
|
|
@@ -74,12 +75,12 @@
|
|
|
74
75
|
"license": "UNLICENSED",
|
|
75
76
|
"repository": {
|
|
76
77
|
"type": "git",
|
|
77
|
-
"url": "git+https://github.com/
|
|
78
|
+
"url": "git+https://github.com/Atipicus/mrs-ui.git"
|
|
78
79
|
},
|
|
79
80
|
"bugs": {
|
|
80
|
-
"url": "https://github.com/
|
|
81
|
+
"url": "https://github.com/Atipicus/mrs-ui/issues"
|
|
81
82
|
},
|
|
82
|
-
"homepage": "https://github.com/
|
|
83
|
+
"homepage": "https://github.com/Atipicus/mrs-ui#readme",
|
|
83
84
|
"peerDependencies": {
|
|
84
85
|
"@emotion/react": "^11.11.0",
|
|
85
86
|
"@emotion/styled": "^11.11.0",
|
|
@@ -119,16 +120,17 @@
|
|
|
119
120
|
"gh-pages": "^6.3.0",
|
|
120
121
|
"jest": "^29.7.0",
|
|
121
122
|
"jest-environment-jsdom": "^29.7.0",
|
|
123
|
+
"nodemon": "^3.1.0",
|
|
122
124
|
"playwright": "^1.57.0",
|
|
123
125
|
"prettier": "^3.7.4",
|
|
126
|
+
"rimraf": "^6.0.1",
|
|
124
127
|
"storybook": "^10.1.10",
|
|
125
128
|
"style-dictionary": "^4.4.0",
|
|
126
129
|
"ts-jest": "^29.1.0",
|
|
127
130
|
"typescript": "^5.3.0",
|
|
128
131
|
"vite": "^7.3.0",
|
|
129
132
|
"vite-plugin-dts": "^4.5.4",
|
|
130
|
-
"vitest": "^4.0.16"
|
|
131
|
-
"zod-validation-error": "^5.0.0"
|
|
133
|
+
"vitest": "^4.0.16"
|
|
132
134
|
},
|
|
133
135
|
"dependencies": {
|
|
134
136
|
"@mui/lab": "^6.0.1-beta.36",
|