@steedos-widgets/amis-lib 6.10.1-beta.61 → 6.10.1

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.
@@ -26,6 +26,13 @@ export function getSchema(uiSchema: any): {
26
26
  eventName?: undefined;
27
27
  };
28
28
  actionType: string;
29
+ script?: undefined;
30
+ data?: undefined;
31
+ expression?: undefined;
32
+ } | {
33
+ actionType: string;
34
+ script: string;
35
+ args?: undefined;
29
36
  data?: undefined;
30
37
  expression?: undefined;
31
38
  } | {
@@ -40,6 +47,7 @@ export function getSchema(uiSchema: any): {
40
47
  _inDrawer: string;
41
48
  _isRelated?: undefined;
42
49
  };
50
+ script?: undefined;
43
51
  expression?: undefined;
44
52
  } | {
45
53
  actionType: string;
@@ -54,6 +62,7 @@ export function getSchema(uiSchema: any): {
54
62
  _inDrawer?: undefined;
55
63
  };
56
64
  expression: string;
65
+ script?: undefined;
57
66
  } | {
58
67
  actionType: string;
59
68
  args: {
@@ -67,6 +76,7 @@ export function getSchema(uiSchema: any): {
67
76
  _isRelated?: undefined;
68
77
  };
69
78
  expression: string;
79
+ script?: undefined;
70
80
  })[];
71
81
  };
72
82
  };
@@ -205,6 +205,13 @@ export namespace StandardButtons {
205
205
  eventName?: undefined;
206
206
  };
207
207
  actionType: string;
208
+ script?: undefined;
209
+ data?: undefined;
210
+ expression?: undefined;
211
+ } | {
212
+ actionType: string;
213
+ script: string;
214
+ args?: undefined;
208
215
  data?: undefined;
209
216
  expression?: undefined;
210
217
  } | {
@@ -219,6 +226,7 @@ export namespace StandardButtons {
219
226
  _inDrawer: string;
220
227
  _isRelated?: undefined;
221
228
  };
229
+ script?: undefined;
222
230
  expression?: undefined;
223
231
  } | {
224
232
  actionType: string;
@@ -233,6 +241,7 @@ export namespace StandardButtons {
233
241
  _inDrawer?: undefined;
234
242
  };
235
243
  expression: string;
244
+ script?: undefined;
236
245
  } | {
237
246
  actionType: string;
238
247
  args: {
@@ -246,6 +255,7 @@ export namespace StandardButtons {
246
255
  _isRelated?: undefined;
247
256
  };
248
257
  expression: string;
258
+ script?: undefined;
249
259
  })[];
250
260
  };
251
261
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "6.10.1-beta.61",
4
+ "version": "6.10.1",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -61,5 +61,5 @@
61
61
  "lodash": "^4.17.21",
62
62
  "react-i18next": "12.3.1"
63
63
  },
64
- "gitHead": "bfdabcc61c4a506a7de0a58f0849f30879ab4df5"
64
+ "gitHead": "0579e42e8db9f51a3aaea6cd7accd67af87600f2"
65
65
  }