x-runtime-lib 0.6.28 → 0.6.29
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 +943 -897
- package/dist/types/element.d.ts +8 -2
- package/package.json +1 -1
package/dist/types/element.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type ZItem = {
|
|
2
2
|
title: string;
|
|
3
|
-
value:
|
|
3
|
+
value: string;
|
|
4
4
|
};
|
|
5
5
|
type ZTypeBase = {
|
|
6
6
|
name: string;
|
|
@@ -183,9 +183,15 @@ export type ZGroup = {
|
|
|
183
183
|
};
|
|
184
184
|
export type ZPkg = {
|
|
185
185
|
version: string;
|
|
186
|
-
elements: Set<string>;
|
|
187
186
|
globalityKey: string;
|
|
188
187
|
refKey: string;
|
|
188
|
+
items: {
|
|
189
|
+
[key: string]: ZItem[];
|
|
190
|
+
};
|
|
191
|
+
types: {
|
|
192
|
+
[key: string]: ZType[];
|
|
193
|
+
};
|
|
194
|
+
elements: Set<string>;
|
|
189
195
|
groups: ZGroup[];
|
|
190
196
|
};
|
|
191
197
|
export type ZPkgs = {
|