@steedos-widgets/amis-lib 6.10.1-beta.35 → 6.10.1-beta.37
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 +57 -36
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +57 -36
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +20 -20
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +2 -5
- package/dist/types/lib/converter/amis/fields_filter.d.ts +2 -4
- package/dist/types/lib/converter/amis/header.d.ts +1 -2
- package/dist/types/lib/converter/amis/toolbar.d.ts +1 -2
- package/dist/types/workflow/flow.d.ts +6 -0
- package/package.json +2 -2
|
@@ -185,14 +185,11 @@ export function lookupToAmisSelect(field: any, readonly: any, ctx: any): Promise
|
|
|
185
185
|
};
|
|
186
186
|
} | {
|
|
187
187
|
method: string;
|
|
188
|
-
url: string;
|
|
189
188
|
data: {
|
|
190
|
-
query: string;
|
|
191
189
|
$: string;
|
|
190
|
+
query: string;
|
|
192
191
|
};
|
|
193
|
-
|
|
194
|
-
Authorization: string;
|
|
195
|
-
};
|
|
192
|
+
url: string;
|
|
196
193
|
};
|
|
197
194
|
searchable: boolean;
|
|
198
195
|
}>;
|
|
@@ -23,12 +23,11 @@ export function getObjectFieldsFilterFormSchema(ctx: any): Promise<{
|
|
|
23
23
|
};
|
|
24
24
|
schemaApi: {
|
|
25
25
|
method: string;
|
|
26
|
-
url: string;
|
|
27
26
|
data: {
|
|
28
27
|
$self: string;
|
|
29
28
|
query: string;
|
|
30
29
|
};
|
|
31
|
-
|
|
30
|
+
url: string;
|
|
32
31
|
adaptor: string;
|
|
33
32
|
headers: {
|
|
34
33
|
Authorization: string;
|
|
@@ -55,12 +54,11 @@ export function getObjectFieldsFilterBarSchema(objectSchema: any, ctx: any): Pro
|
|
|
55
54
|
};
|
|
56
55
|
schemaApi: {
|
|
57
56
|
method: string;
|
|
58
|
-
url: string;
|
|
59
57
|
data: {
|
|
60
58
|
$self: string;
|
|
61
59
|
query: string;
|
|
62
60
|
};
|
|
63
|
-
|
|
61
|
+
url: string;
|
|
64
62
|
adaptor: string;
|
|
65
63
|
headers: {
|
|
66
64
|
Authorization: string;
|
|
@@ -266,12 +266,11 @@ export function getObjectListHeaderFieldsFilterBar(objectSchema: any, listViewNa
|
|
|
266
266
|
};
|
|
267
267
|
schemaApi: {
|
|
268
268
|
method: string;
|
|
269
|
-
url: string;
|
|
270
269
|
data: {
|
|
271
270
|
$self: string;
|
|
272
271
|
query: string;
|
|
273
272
|
};
|
|
274
|
-
|
|
273
|
+
url: string;
|
|
275
274
|
adaptor: string;
|
|
276
275
|
headers: {
|
|
277
276
|
Authorization: string;
|
|
@@ -49,12 +49,11 @@ export function getObjectFilter(objectSchema: any, fields: any, options: any): P
|
|
|
49
49
|
};
|
|
50
50
|
schemaApi: {
|
|
51
51
|
method: string;
|
|
52
|
-
url: string;
|
|
53
52
|
data: {
|
|
54
53
|
$self: string;
|
|
55
54
|
query: string;
|
|
56
55
|
};
|
|
57
|
-
|
|
56
|
+
url: string;
|
|
58
57
|
adaptor: string;
|
|
59
58
|
headers: {
|
|
60
59
|
Authorization: string;
|
|
@@ -14,6 +14,9 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
14
14
|
className: string;
|
|
15
15
|
};
|
|
16
16
|
css: {
|
|
17
|
+
".steedos-amis-instance-view-body": {
|
|
18
|
+
height: string;
|
|
19
|
+
};
|
|
17
20
|
".instance-approve-history .antd-Table-table thead": {
|
|
18
21
|
display: string;
|
|
19
22
|
};
|
|
@@ -35,6 +38,9 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
35
38
|
".antd-List-placeholder": {
|
|
36
39
|
display: string;
|
|
37
40
|
};
|
|
41
|
+
".steedos-amis-instance-view .antd-Table-fixedTop": {
|
|
42
|
+
top: string;
|
|
43
|
+
};
|
|
38
44
|
".steedos-amis-instance-view .antd-Table-fixedTop:after": {
|
|
39
45
|
"box-shadow": string;
|
|
40
46
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "6.10.1-beta.
|
|
4
|
+
"version": "6.10.1-beta.37",
|
|
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": "f4f9c29e32790d28854b57b808bd2da738aa4c9c"
|
|
65
65
|
}
|