@meonode/mui 1.2.0 → 1.2.1
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/CHANGELOG.md +2 -2
- package/package.json +28 -29
package/CHANGELOG.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
## [1.2.1] - 2025-12-12
|
|
6
|
+
- chore(deps): update Yarn and dependencies to latest versions
|
|
7
7
|
|
|
8
8
|
## [1.2.0] - 2025-12-05
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meonode/mui",
|
|
3
3
|
"description": "A lightweight wrapper around `@mui/material` components for use with `@meonode/ui` and the BaseNode runtime.",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"exports": {
|
|
@@ -60,9 +60,10 @@
|
|
|
60
60
|
"watch:src": "yarn dlx nodemon --watch src --ext ts,js,json --exec \"yarn build\"",
|
|
61
61
|
"lint": "eslint --fix",
|
|
62
62
|
"build": "rm -rf ./dist && yarn generate:src && babel src-gen --out-dir dist --extensions \".ts,.js\" && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
63
|
-
"publish:
|
|
63
|
+
"publish:prerelease": "./prepublish.sh && yarn build && yarn version -i prerelease && yarn npm publish --tag next",
|
|
64
64
|
"publish:patch": "./prepublish.sh && yarn build && yarn version -i patch && yarn npm publish --tag latest",
|
|
65
65
|
"publish:minor": "./prepublish.sh && yarn build && yarn version -i minor && yarn npm publish --tag latest",
|
|
66
|
+
"publish:premajor": "./prepublish.sh && yarn build && yarn version -i premajor && yarn npm publish --tag next",
|
|
66
67
|
"publish:major": "./prepublish.sh && yarn build && yarn version -i major && yarn npm publish --tag latest"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
@@ -74,53 +75,51 @@
|
|
|
74
75
|
"@emotion/react": "^11.14.0",
|
|
75
76
|
"@emotion/styled": "^11.14.1",
|
|
76
77
|
"@eslint/js": "^9.39.1",
|
|
77
|
-
"@meonode/ui": "^1.1.
|
|
78
|
+
"@meonode/ui": "^1.1.1",
|
|
78
79
|
"@mui/lab": "^7.0.1-beta.20",
|
|
79
80
|
"@mui/material": "^7.3.6",
|
|
80
81
|
"@mui/system": "^7.3.6",
|
|
81
82
|
"@mui/types": "^7.4.9",
|
|
82
|
-
"@mui/x-charts": "^8.
|
|
83
|
-
"@mui/x-charts-pro": "^8.
|
|
84
|
-
"@mui/x-data-grid": "^8.
|
|
85
|
-
"@mui/x-data-grid-premium": "^8.
|
|
86
|
-
"@mui/x-data-grid-pro": "^8.
|
|
87
|
-
"@mui/x-date-pickers": "^8.
|
|
88
|
-
"@mui/x-date-pickers-pro": "^8.
|
|
89
|
-
"@mui/x-tree-view": "^8.
|
|
90
|
-
"@mui/x-tree-view-pro": "^8.
|
|
83
|
+
"@mui/x-charts": "^8.22.0",
|
|
84
|
+
"@mui/x-charts-pro": "^8.22.0",
|
|
85
|
+
"@mui/x-data-grid": "^8.22.0",
|
|
86
|
+
"@mui/x-data-grid-premium": "^8.22.0",
|
|
87
|
+
"@mui/x-data-grid-pro": "^8.22.0",
|
|
88
|
+
"@mui/x-date-pickers": "^8.22.0",
|
|
89
|
+
"@mui/x-date-pickers-pro": "^8.22.0",
|
|
90
|
+
"@mui/x-tree-view": "^8.22.0",
|
|
91
|
+
"@mui/x-tree-view-pro": "^8.22.0",
|
|
91
92
|
"@types/babel__generator": "^7.27.0",
|
|
92
93
|
"@types/react": "^19.2.7",
|
|
93
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
94
|
-
"@typescript-eslint/parser": "^8.
|
|
94
|
+
"@typescript-eslint/eslint-plugin": "^8.49.0",
|
|
95
|
+
"@typescript-eslint/parser": "^8.49.0",
|
|
95
96
|
"babel-preset-minify": "^0.5.2",
|
|
96
97
|
"eslint": "^9.39.1",
|
|
97
|
-
"eslint-plugin-jsdoc": "^61.
|
|
98
|
+
"eslint-plugin-jsdoc": "^61.5.0",
|
|
98
99
|
"eslint-plugin-prettier": "^5.5.4",
|
|
99
100
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
100
101
|
"globals": "^16.5.0",
|
|
101
102
|
"prettier": "^3.7.4",
|
|
102
103
|
"tsc-alias": "^1.8.16",
|
|
103
104
|
"typescript": "^5.9.3",
|
|
104
|
-
"typescript-eslint": "^8.
|
|
105
|
+
"typescript-eslint": "^8.49.0"
|
|
105
106
|
},
|
|
106
|
-
"packageManager": "yarn@4.
|
|
107
|
+
"packageManager": "yarn@4.12.0",
|
|
107
108
|
"peerDependencies": {
|
|
108
|
-
"@
|
|
109
|
-
"@emotion/styled": "^11.14.1",
|
|
110
|
-
"@meonode/ui": "^1.1.0",
|
|
109
|
+
"@meonode/ui": "^1.1.1",
|
|
111
110
|
"@mui/lab": "^7.0.1-beta.20",
|
|
112
111
|
"@mui/material": "^7.3.6",
|
|
113
112
|
"@mui/system": "^7.3.6",
|
|
114
113
|
"@mui/types": "^7.4.9",
|
|
115
|
-
"@mui/x-charts": "^8.
|
|
116
|
-
"@mui/x-charts-pro": "^8.
|
|
117
|
-
"@mui/x-data-grid": "^8.
|
|
118
|
-
"@mui/x-data-grid-premium": "^8.
|
|
119
|
-
"@mui/x-data-grid-pro": "^8.
|
|
120
|
-
"@mui/x-date-pickers": "^8.
|
|
121
|
-
"@mui/x-date-pickers-pro": "^8.
|
|
122
|
-
"@mui/x-tree-view": "^8.
|
|
123
|
-
"@mui/x-tree-view-pro": "^8.
|
|
114
|
+
"@mui/x-charts": "^8.22.0",
|
|
115
|
+
"@mui/x-charts-pro": "^8.22.0",
|
|
116
|
+
"@mui/x-data-grid": "^8.22.0",
|
|
117
|
+
"@mui/x-data-grid-premium": "^8.22.0",
|
|
118
|
+
"@mui/x-data-grid-pro": "^8.22.0",
|
|
119
|
+
"@mui/x-date-pickers": "^8.22.0",
|
|
120
|
+
"@mui/x-date-pickers-pro": "^8.22.0",
|
|
121
|
+
"@mui/x-tree-view": "^8.22.0",
|
|
122
|
+
"@mui/x-tree-view-pro": "^8.22.0",
|
|
124
123
|
"react": ">=19.2.0"
|
|
125
124
|
},
|
|
126
125
|
"repository": {
|