x-runtime-lib 0.7.22 → 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 +1 -1
- package/dist/types/meta.d.ts +6 -6
- package/package.json +1 -1
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,
|
package/dist/types/meta.d.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
export type
|
|
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:
|
|
6
|
+
type: FieldType;
|
|
7
7
|
desc: string;
|
|
8
8
|
};
|
|
9
9
|
export type Reaction = {
|
|
10
10
|
id: string;
|
|
11
11
|
name: string;
|
|
12
|
-
type:
|
|
12
|
+
type: FieldType;
|
|
13
13
|
desc: string;
|
|
14
14
|
};
|
|
15
15
|
export type Argument = {
|
|
16
16
|
id: string;
|
|
17
17
|
name: string;
|
|
18
|
-
type:
|
|
18
|
+
type: FieldType;
|
|
19
19
|
desc: string;
|
|
20
20
|
};
|
|
21
21
|
export type PageMeta = {
|
|
@@ -26,7 +26,7 @@ export type PageMeta = {
|
|
|
26
26
|
export type Property = {
|
|
27
27
|
id: string;
|
|
28
28
|
name: string;
|
|
29
|
-
type:
|
|
29
|
+
type: FieldType;
|
|
30
30
|
desc: string;
|
|
31
31
|
};
|
|
32
32
|
export type Method = {
|