@steedos-widgets/amis-lib 1.2.0-beta.2 → 1.2.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.
@@ -1,6 +1,7 @@
1
1
  export function getLookupSapceUserTreeSchema(): {
2
2
  type: string;
3
3
  className: string;
4
+ inputClassName: string;
4
5
  id: string;
5
6
  source: {
6
7
  method: string;
@@ -1,7 +1,8 @@
1
- export function getObjectHeaderToolbar(mainObject: any, formFactor: any, { showDisplayAs, hiddenCount, headerToolbarItems }?: {
1
+ export function getObjectHeaderToolbar(mainObject: any, formFactor: any, { showDisplayAs, hiddenCount, headerToolbarItems, filterVisible }?: {
2
2
  showDisplayAs?: boolean;
3
3
  hiddenCount?: boolean;
4
4
  headerToolbarItems: any;
5
+ filterVisible?: boolean;
5
6
  }): any[];
6
7
  export function getObjectFooterToolbar(mainObject: any, formFactor: any): string[];
7
8
  export function getObjectFilter(objectSchema: any, fields: any, options: any): Promise<{
@@ -164,6 +164,7 @@ export function getListSchema(appName: any, objectName: any, listViewName: any,
164
164
  requestAdaptor: any;
165
165
  adaptor: any;
166
166
  headerToolbarItems: any;
167
+ filterVisible: any;
167
168
  };
168
169
  isCustomAmisSchema?: undefined;
169
170
  isCalendar?: undefined;
@@ -326,6 +327,7 @@ export function getObjectRelated({ appName, masterObjectName, objectName, relate
326
327
  requestAdaptor: any;
327
328
  adaptor: any;
328
329
  headerToolbarItems: any;
330
+ filterVisible: any;
329
331
  };
330
332
  isCustomAmisSchema?: undefined;
331
333
  isCalendar?: undefined;
@@ -37,6 +37,7 @@ export function getSchema(uiSchema: any): {
37
37
  data: {
38
38
  objectName: string;
39
39
  __deletedRecord: boolean;
40
+ _isRelated?: undefined;
40
41
  };
41
42
  expression?: undefined;
42
43
  } | {
@@ -47,6 +48,7 @@ export function getSchema(uiSchema: any): {
47
48
  };
48
49
  data: {
49
50
  objectName: string;
51
+ _isRelated: string;
50
52
  __deletedRecord?: undefined;
51
53
  };
52
54
  expression: string;
@@ -145,6 +145,7 @@ export namespace StandardButtons {
145
145
  data: {
146
146
  objectName: string;
147
147
  __deletedRecord: boolean;
148
+ _isRelated?: undefined;
148
149
  };
149
150
  expression?: undefined;
150
151
  } | {
@@ -155,6 +156,7 @@ export namespace StandardButtons {
155
156
  };
156
157
  data: {
157
158
  objectName: string;
159
+ _isRelated: string;
158
160
  __deletedRecord?: undefined;
159
161
  };
160
162
  expression: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "1.2.0-beta.2",
4
+ "version": "1.2.1",
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": "1fa692c57f5f968c3fbbcd2bfc7a7e4036a2a576"
62
+ "gitHead": "d8e60ef2a76a1e83b11ba2d0d0788098f90576f7"
63
63
  }