@steedos-widgets/amis-lib 3.6.3-beta.1 → 3.6.4-beta.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.
@@ -255,6 +255,11 @@ export function getRecordServiceSchema(objectName: any, appId: any, props: {}, b
255
255
  componentId: string;
256
256
  expression: string;
257
257
  script?: undefined;
258
+ } | {
259
+ actionType: string;
260
+ expression: string;
261
+ componentId?: undefined;
262
+ script?: undefined;
258
263
  } | {
259
264
  actionType: string;
260
265
  script: string;
@@ -37,6 +37,7 @@ export function getSchema(uiSchema: any): {
37
37
  data: {
38
38
  objectName: string;
39
39
  __deletedRecord: boolean;
40
+ _inDrawer: string;
40
41
  _isRelated?: undefined;
41
42
  };
42
43
  expression?: undefined;
@@ -50,6 +51,7 @@ export function getSchema(uiSchema: any): {
50
51
  objectName: string;
51
52
  _isRelated: string;
52
53
  __deletedRecord?: undefined;
54
+ _inDrawer?: undefined;
53
55
  };
54
56
  expression: string;
55
57
  })[];
@@ -212,6 +212,7 @@ export namespace StandardButtons {
212
212
  data: {
213
213
  objectName: string;
214
214
  __deletedRecord: boolean;
215
+ _inDrawer: string;
215
216
  _isRelated?: undefined;
216
217
  };
217
218
  expression?: undefined;
@@ -225,6 +226,7 @@ export namespace StandardButtons {
225
226
  objectName: string;
226
227
  _isRelated: string;
227
228
  __deletedRecord?: undefined;
229
+ _inDrawer?: undefined;
228
230
  };
229
231
  expression: string;
230
232
  })[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "3.6.3-beta.1",
4
+ "version": "3.6.4-beta.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": "2a0790dd89d739b01b679d1f1cab3ac89c1169e9"
64
+ "gitHead": "4845f0b33367b8873df484ef174863d6789d4d43"
65
65
  }