@steedos-widgets/amis-lib 1.2.32 → 1.2.34

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.
@@ -12,22 +12,31 @@ export function getMarkdownFieldSchema(field: any, readonly: any, ctx: any): {
12
12
  };
13
13
  } | {
14
14
  type: string;
15
- body: ({
16
- type: string;
17
- name: any;
18
- language: string;
19
- options?: undefined;
20
- } | {
15
+ label: any;
16
+ body: {
21
17
  type: string;
22
- name: any;
23
- options: {
24
- linkify: boolean;
25
- html: boolean;
26
- breaks: boolean;
27
- };
28
- language?: undefined;
29
- })[];
30
- label?: undefined;
18
+ tabsMode: string;
19
+ className: string;
20
+ tabs: ({
21
+ title: string;
22
+ tab: {
23
+ type: string;
24
+ name: any;
25
+ language: string;
26
+ }[];
27
+ } | {
28
+ title: string;
29
+ tab: {
30
+ type: string;
31
+ name: any;
32
+ options: {
33
+ linkify: boolean;
34
+ html: boolean;
35
+ breaks: boolean;
36
+ };
37
+ }[];
38
+ })[];
39
+ }[];
31
40
  };
32
41
  export function getHtmlFieldSchema(field: any, readonly: any, ctx: any): {
33
42
  type: string;
@@ -61,6 +61,7 @@ export function lookupToAmisPicker(field: any, readonly: any, ctx: any): Promise
61
61
  modalTitle: string;
62
62
  labelField: any;
63
63
  valueField: any;
64
+ disabledOn: string;
64
65
  modalMode: string;
65
66
  source: {
66
67
  method: string;
@@ -86,6 +87,7 @@ export function lookupToAmisSelect(field: any, readonly: any, ctx: any): Promise
86
87
  joinValues: boolean;
87
88
  extractValue: boolean;
88
89
  clearable: boolean;
90
+ disabledOn: string;
89
91
  source: {
90
92
  method: string;
91
93
  url: string;
@@ -157,6 +159,7 @@ export function lookupToAmisIdsPicker(field: any, readonly: any, ctx: any): Prom
157
159
  Authorization: string;
158
160
  };
159
161
  };
162
+ disabledOn: string;
160
163
  size: string;
161
164
  pickerSchema: {
162
165
  mode: string;
@@ -250,6 +253,7 @@ export function getIdsPickerSchema(field: any, readonly: any, ctx: any): Promise
250
253
  Authorization: string;
251
254
  };
252
255
  };
256
+ disabledOn: string;
253
257
  size: string;
254
258
  pickerSchema: {
255
259
  mode: string;
@@ -5,7 +5,6 @@ export function getExportExcelToolbarButtonSchema(): {
5
5
  className: string;
6
6
  tooltipPlacement: string;
7
7
  visibleOn: string;
8
- tooltip: string;
9
8
  onEvent: {
10
9
  click: {
11
10
  weight: number;
@@ -2,7 +2,6 @@ export function getSettingListviewToolbarButtonSchema(): {
2
2
  type: string;
3
3
  trigger: string;
4
4
  icon: string;
5
- tooltip: string;
6
5
  btnClassName: string;
7
6
  align: string;
8
7
  visibleOn: 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.32",
4
+ "version": "1.2.34",
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": "fadd548711b1f505687327369dc7c5c9dcae8ac4"
64
+ "gitHead": "6e6c2501b5a569f627530e08192c50b0da6ff1c6"
65
65
  }