@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.
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +110 -43
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +110 -43
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +110 -43
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/fields/editor.d.ts +24 -15
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +4 -0
- package/dist/types/lib/converter/amis/toolbars/export_excel.d.ts +0 -1
- package/dist/types/lib/converter/amis/toolbars/setting_listview.d.ts +0 -1
- package/package.json +2 -2
|
@@ -12,22 +12,31 @@ export function getMarkdownFieldSchema(field: any, readonly: any, ctx: any): {
|
|
|
12
12
|
};
|
|
13
13
|
} | {
|
|
14
14
|
type: string;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
name: any;
|
|
18
|
-
language: string;
|
|
19
|
-
options?: undefined;
|
|
20
|
-
} | {
|
|
15
|
+
label: any;
|
|
16
|
+
body: {
|
|
21
17
|
type: string;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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;
|
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.
|
|
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": "
|
|
64
|
+
"gitHead": "6e6c2501b5a569f627530e08192c50b0da6ff1c6"
|
|
65
65
|
}
|