x-runtime-lib 0.7.21 → 0.7.23

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
@@ -6819,7 +6819,6 @@ async function Xa(t) {
6819
6819
  export {
6820
6820
  qa as badgeV1,
6821
6821
  xt as barChartV1,
6822
- Za as basicTypes,
6823
6822
  xi as breakpoints,
6824
6823
  rr as btnGroupV1,
6825
6824
  ar as btnToggleV1,
@@ -6839,6 +6838,7 @@ export {
6839
6838
  Da as duplicateNodes,
6840
6839
  re as elements,
6841
6840
  Ua as ensureContext,
6841
+ Za as fieldTypes,
6842
6842
  Ja as fileInputV1,
6843
6843
  Ct as flexLayoutEntryV1,
6844
6844
  he as flexLayoutV1,
@@ -1,32 +1,32 @@
1
- export declare const basicTypes: readonly ["string", "number", "boolean", "list", "object"];
2
- export type BasicType = (typeof basicTypes)[number];
1
+ export declare const fieldTypes: readonly ["string", "number", "boolean", "list", "object"];
2
+ export type FieldType = (typeof fieldTypes)[number];
3
3
  export type Field = {
4
4
  id: string;
5
5
  name: string;
6
- type: BasicType;
6
+ type: FieldType;
7
7
  desc: string;
8
8
  };
9
- export type Reactive = {
9
+ export type Reaction = {
10
10
  id: string;
11
11
  name: string;
12
- type: BasicType;
12
+ type: FieldType;
13
13
  desc: string;
14
14
  };
15
15
  export type Argument = {
16
16
  id: string;
17
17
  name: string;
18
- type: BasicType;
18
+ type: FieldType;
19
19
  desc: string;
20
20
  };
21
21
  export type PageMeta = {
22
22
  version: string;
23
23
  arguments: Argument[];
24
- reactives: Reactive[];
24
+ reactions: Reaction[];
25
25
  };
26
26
  export type Property = {
27
27
  id: string;
28
28
  name: string;
29
- type: BasicType;
29
+ type: FieldType;
30
30
  desc: string;
31
31
  };
32
32
  export type Method = {
@@ -47,5 +47,5 @@ export type CompMeta = {
47
47
  properties: Property[];
48
48
  methods: Method[];
49
49
  events: Event[];
50
- reactives: Reactive[];
50
+ reactions: Reaction[];
51
51
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.7.21",
4
+ "version": "0.7.23",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",