@steedos-widgets/amis-lib 1.2.6 → 1.2.8

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.
@@ -77,11 +77,13 @@ export function getObjectFieldsFilterBarSchema(objectSchema: any, ctx: any): Pro
77
77
  }[];
78
78
  };
79
79
  };
80
+ name?: undefined;
80
81
  id?: undefined;
81
82
  level?: undefined;
82
83
  } | {
83
84
  type: string;
84
85
  label: string;
86
+ name: string;
85
87
  visibleOn: string;
86
88
  onEvent: {
87
89
  click: {
@@ -203,6 +205,7 @@ export function getObjectFieldsFilterBarSchema(objectSchema: any, ctx: any): Pro
203
205
  level: string;
204
206
  icon?: undefined;
205
207
  visibleOn?: undefined;
208
+ name?: undefined;
206
209
  })[];
207
210
  size: string;
208
211
  className: string;
@@ -210,11 +210,13 @@ export function getObjectListHeaderFieldsFilterBar(objectSchema: any, listViewNa
210
210
  }[];
211
211
  };
212
212
  };
213
+ name?: undefined;
213
214
  id?: undefined;
214
215
  level?: undefined;
215
216
  } | {
216
217
  type: string;
217
218
  label: string;
219
+ name: string;
218
220
  visibleOn: string;
219
221
  onEvent: {
220
222
  click: {
@@ -336,6 +338,7 @@ export function getObjectListHeaderFieldsFilterBar(objectSchema: any, listViewNa
336
338
  level: string;
337
339
  icon?: undefined;
338
340
  visibleOn?: undefined;
341
+ name?: undefined;
339
342
  })[];
340
343
  size: string;
341
344
  className: string;
@@ -56,11 +56,13 @@ export function getObjectFilter(objectSchema: any, fields: any, options: any): P
56
56
  }[];
57
57
  };
58
58
  };
59
+ name?: undefined;
59
60
  id?: undefined;
60
61
  level?: undefined;
61
62
  } | {
62
63
  type: string;
63
64
  label: string;
65
+ name: string;
64
66
  visibleOn: string;
65
67
  onEvent: {
66
68
  click: {
@@ -182,6 +184,7 @@ export function getObjectFilter(objectSchema: any, fields: any, options: any): P
182
184
  level: string;
183
185
  icon?: undefined;
184
186
  visibleOn?: undefined;
187
+ name?: undefined;
185
188
  })[];
186
189
  size: string;
187
190
  className: string;
@@ -1 +1,2 @@
1
1
  export function getSvgUrl(source: any, name: any): string;
2
+ export function getContrastColor(bgColor: any): "#000000" | "#ffffff";
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",
4
+ "version": "1.2.8",
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": "9160181a3c19e2c689d552b474b04bdefb5d1831"
62
+ "gitHead": "b985590e8f2b8f2f9f4dac303f1be8de9609a1e4"
63
63
  }