x-runtime-lib 0.6.43 → 0.6.44

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/index.js CHANGED
@@ -7018,10 +7018,10 @@ const di = {
7018
7018
  defaultArray: []
7019
7019
  },
7020
7020
  {
7021
- key: "items",
7022
- name: "x-runtime-lib.items",
7023
- ui: "jsonObject",
7024
- default: []
7021
+ key: "data",
7022
+ name: "x-runtime-lib.data",
7023
+ ui: "jsonEditor",
7024
+ default: "[]"
7025
7025
  },
7026
7026
  {
7027
7027
  key: "density",
@@ -92,10 +92,10 @@ type ZPropColorPicker = {
92
92
  readonly?: boolean;
93
93
  default: string | undefined;
94
94
  } & ZPropBase;
95
- type ZPropJsonObject = {
96
- ui: 'jsonObject';
95
+ type ZPropJsonEditor = {
96
+ ui: 'jsonEditor';
97
97
  readonly?: boolean;
98
- default: object;
98
+ default: string;
99
99
  } & ZPropBase;
100
100
  type ZPropMultiTypes = {
101
101
  ui: 'multiTypes';
@@ -145,10 +145,10 @@ export type ZProp = ({
145
145
  defaultArray: string[];
146
146
  } & ZPropColorPicker) | ({
147
147
  array?: false;
148
- } & ZPropJsonObject) | ({
148
+ } & ZPropJsonEditor) | ({
149
149
  array: true;
150
150
  defaultArray: string[];
151
- } & ZPropJsonObject) | ({
151
+ } & ZPropJsonEditor) | ({
152
152
  array?: false;
153
153
  } & ZPropMultiTypes) | ({
154
154
  array: true;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.6.43",
4
+ "version": "0.6.44",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  "vue": "^3.5.13",
30
30
  "vue-i18n": "^11.1.3",
31
31
  "vuetify": "^3.8.1",
32
- "x-essential-lib": "^0.8.6"
32
+ "x-essential-lib": "^0.8.7"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@eslint/js": "^9.24.0",