x-runtime-lib 0.5.12 → 0.5.14

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.
@@ -105,6 +105,11 @@ type ZPropCompSelect = {
105
105
  readonly?: boolean;
106
106
  default: string;
107
107
  } & ZPropBase;
108
+ type ZPropSlotSelect = {
109
+ ui: 'slotSelect';
110
+ readonly?: boolean;
111
+ default: string;
112
+ } & ZPropBase;
108
113
  export type ZProp = ({
109
114
  array?: false;
110
115
  } & ZPropBranch) | ({
@@ -150,7 +155,9 @@ export type ZProp = ({
150
155
  } & ZPropCompSelect) | ({
151
156
  array: true;
152
157
  defaultArray: string[];
153
- } & ZPropCompSelect);
158
+ } & ZPropCompSelect) | ({
159
+ array?: undefined;
160
+ } & ZPropSlotSelect);
154
161
  export type ZProps = {
155
162
  [key: string]: ZProp[];
156
163
  };
@@ -177,6 +184,7 @@ export type ZPkg = {
177
184
  elements: Set<string>;
178
185
  globalityKey: string;
179
186
  refKey: string;
187
+ packageKey: string;
180
188
  groups: ZGroup[];
181
189
  };
182
190
  export type ZPkgs = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.5.12",
4
+ "version": "0.5.14",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",