@steedos-widgets/amis-lib 1.1.1 → 1.1.2

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.
@@ -31,6 +31,7 @@ export function getSchema(uiSchema: any): {
31
31
  };
32
32
  actionType: string;
33
33
  data?: undefined;
34
+ expression?: undefined;
34
35
  } | {
35
36
  actionType: string;
36
37
  args: {
@@ -42,6 +43,19 @@ export function getSchema(uiSchema: any): {
42
43
  objectName: string;
43
44
  __deletedRecord: boolean;
44
45
  };
46
+ expression?: undefined;
47
+ } | {
48
+ actionType: string;
49
+ args: {
50
+ eventName: string;
51
+ api?: undefined;
52
+ messages?: undefined;
53
+ };
54
+ data: {
55
+ objectName: string;
56
+ __deletedRecord?: undefined;
57
+ };
58
+ expression: string;
45
59
  })[];
46
60
  };
47
61
  };
@@ -10,6 +10,10 @@ export function getSchema(uiSchema: any, ctx: any): Promise<{
10
10
  actionType: string;
11
11
  dialog: {
12
12
  type: string;
13
+ data: {
14
+ "&": string;
15
+ $master: string;
16
+ };
13
17
  title: string;
14
18
  bodyClassName: string;
15
19
  body: {
@@ -75,6 +75,10 @@ export namespace StandardButtons {
75
75
  actionType: string;
76
76
  dialog: {
77
77
  type: string;
78
+ data: {
79
+ "&": string;
80
+ $master: string;
81
+ };
78
82
  title: string;
79
83
  bodyClassName: string;
80
84
  body: {
@@ -136,6 +140,7 @@ export namespace StandardButtons {
136
140
  };
137
141
  actionType: string;
138
142
  data?: undefined;
143
+ expression?: undefined;
139
144
  } | {
140
145
  actionType: string;
141
146
  args: {
@@ -147,6 +152,19 @@ export namespace StandardButtons {
147
152
  objectName: string;
148
153
  __deletedRecord: boolean;
149
154
  };
155
+ expression?: undefined;
156
+ } | {
157
+ actionType: string;
158
+ args: {
159
+ eventName: string;
160
+ api?: undefined;
161
+ messages?: undefined;
162
+ };
163
+ data: {
164
+ objectName: string;
165
+ __deletedRecord?: undefined;
166
+ };
167
+ expression: string;
150
168
  })[];
151
169
  };
152
170
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "1.1.1",
4
+ "version": "1.1.2",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -59,5 +59,5 @@
59
59
  "dependencies": {
60
60
  "lodash": "^4.17.21"
61
61
  },
62
- "gitHead": "0e618339b9d23c8b90660bb3334db17637d324ab"
62
+ "gitHead": "ffb730e16642eb8e7a7ae5d98d0773c42482e7d2"
63
63
  }