x-runtime-lib 0.5.15 → 0.5.17

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.
@@ -21,10 +21,6 @@ export type ZType = ZTypeWord | ZTypeInput;
21
21
  export type ZSlot = {
22
22
  key: string;
23
23
  name: string;
24
- params: {
25
- key: string;
26
- name: string;
27
- }[];
28
24
  };
29
25
  export type ZEvent = {
30
26
  key: string;
@@ -185,7 +181,6 @@ export type ZPkg = {
185
181
  elements: Set<string>;
186
182
  globalityKey: string;
187
183
  refKey: string;
188
- packageKey: string;
189
184
  groups: ZGroup[];
190
185
  };
191
186
  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.15",
4
+ "version": "0.5.17",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -1,3 +0,0 @@
1
- import { ZElement } from '../../../../types';
2
- declare const element: ZElement;
3
- export default element;