@luminix/mui-cms 0.0.1-beta.4 → 0.0.1-beta.5

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/dist/mui-cms.js CHANGED
@@ -3187,7 +3187,7 @@ class Jr extends at {
3187
3187
  n.reducer(
3188
3188
  "getDefaultInputProps",
3189
3189
  (a) => (Array.isArray(a) ? a.map((s) => {
3190
- s.label && (s.label = z.t(s.label));
3190
+ s != null && s.label && (s.label = z.t(s.label));
3191
3191
  }) : a.label && (a.label = z.t(a.label)), a),
3192
3192
  99
3193
3193
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminix/mui-cms",
3
- "version": "0.0.1-beta.4",
3
+ "version": "0.0.1-beta.5",
4
4
  "type": "module",
5
5
  "main": "dist/mui-cms.js",
6
6
  "types": "types/index.d.ts",
@@ -10,7 +10,8 @@
10
10
  "build:bundle": "tsc && vite build --config vite.config.bundle.ts",
11
11
  "build:dist": "tsc && vite build",
12
12
  "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
13
- "preview": "vite preview"
13
+ "preview": "vite preview",
14
+ "publish:beta": "npm run build && npm publish --tag beta"
14
15
  },
15
16
  "peerDependencies": {
16
17
  "@emotion/react": "^11.13.0",