@steedos-widgets/amis-lib 1.2.6-beta.18 → 1.2.6-beta.20

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.
@@ -79,6 +79,21 @@ export function getObjectFieldsFilterBarSchema(objectSchema: any, ctx: any): Pro
79
79
  };
80
80
  id?: undefined;
81
81
  level?: undefined;
82
+ } | {
83
+ type: string;
84
+ label: string;
85
+ visibleOn: string;
86
+ onEvent: {
87
+ click: {
88
+ actions: {
89
+ actionType: string;
90
+ script: string;
91
+ }[];
92
+ };
93
+ };
94
+ icon?: undefined;
95
+ id?: undefined;
96
+ level?: undefined;
82
97
  } | {
83
98
  type: string;
84
99
  label: string;
@@ -212,6 +212,21 @@ export function getObjectListHeaderFieldsFilterBar(objectSchema: any, listViewNa
212
212
  };
213
213
  id?: undefined;
214
214
  level?: undefined;
215
+ } | {
216
+ type: string;
217
+ label: string;
218
+ visibleOn: string;
219
+ onEvent: {
220
+ click: {
221
+ actions: {
222
+ actionType: string;
223
+ script: string;
224
+ }[];
225
+ };
226
+ };
227
+ icon?: undefined;
228
+ id?: undefined;
229
+ level?: undefined;
215
230
  } | {
216
231
  type: string;
217
232
  label: string;
@@ -58,6 +58,21 @@ export function getObjectFilter(objectSchema: any, fields: any, options: any): P
58
58
  };
59
59
  id?: undefined;
60
60
  level?: undefined;
61
+ } | {
62
+ type: string;
63
+ label: string;
64
+ visibleOn: string;
65
+ onEvent: {
66
+ click: {
67
+ actions: {
68
+ actionType: string;
69
+ script: string;
70
+ }[];
71
+ };
72
+ };
73
+ icon?: undefined;
74
+ id?: undefined;
75
+ level?: undefined;
61
76
  } | {
62
77
  type: string;
63
78
  label: 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.6-beta.18",
4
+ "version": "1.2.6-beta.20",
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": "0ffe54cd3b559ea2831595ec97cdf1592f88ee88"
62
+ "gitHead": "1b8abb87240fbbf8526bdb98210cd7ed041d57c0"
63
63
  }