@steedos-widgets/amis-lib 6.10.1-beta.50 → 6.10.1-beta.52
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 +111 -32
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +111 -32
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +34 -15
- package/dist/index.umd.js.map +1 -1
- package/dist/types/workflow/approve.d.ts +4 -4
- package/dist/types/workflow/flow.d.ts +7 -8
- package/package.json +2 -2
|
@@ -107,7 +107,7 @@ export function getApprovalDrawerSchema(instance: any): Promise<{
|
|
|
107
107
|
columns: ({
|
|
108
108
|
body: {
|
|
109
109
|
type: string;
|
|
110
|
-
tpl:
|
|
110
|
+
tpl: any;
|
|
111
111
|
inline: boolean;
|
|
112
112
|
wrapperComponent: string;
|
|
113
113
|
id: string;
|
|
@@ -185,7 +185,7 @@ export function getApprovalDrawerSchema(instance: any): Promise<{
|
|
|
185
185
|
id: string;
|
|
186
186
|
minRows: number;
|
|
187
187
|
maxRows: number;
|
|
188
|
-
placeholder:
|
|
188
|
+
placeholder: any;
|
|
189
189
|
requiredOn: string;
|
|
190
190
|
})[];
|
|
191
191
|
onEvent: {
|
|
@@ -205,8 +205,8 @@ export function getApprovalDrawerSchema(instance: any): Promise<{
|
|
|
205
205
|
position: string;
|
|
206
206
|
closeButton: boolean;
|
|
207
207
|
showIcon: boolean;
|
|
208
|
-
title:
|
|
209
|
-
msg:
|
|
208
|
+
title: any;
|
|
209
|
+
msg: any;
|
|
210
210
|
};
|
|
211
211
|
actionType: string;
|
|
212
212
|
}[];
|
|
@@ -32,7 +32,7 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
32
32
|
".steedos-object-record-detail-header .antd-Grid-col--mdAuto": {
|
|
33
33
|
padding: string;
|
|
34
34
|
};
|
|
35
|
-
".steedos-amis-instance-view .antd-Page-body": {
|
|
35
|
+
".steedos-amis-instance-view.steedos-instance-style-table .antd-Page-body": {
|
|
36
36
|
width: string;
|
|
37
37
|
};
|
|
38
38
|
".antd-List-placeholder": {
|
|
@@ -322,7 +322,7 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
322
322
|
columns: ({
|
|
323
323
|
body: {
|
|
324
324
|
type: string;
|
|
325
|
-
tpl:
|
|
325
|
+
tpl: any;
|
|
326
326
|
inline: boolean;
|
|
327
327
|
wrapperComponent: string;
|
|
328
328
|
id: string;
|
|
@@ -400,7 +400,7 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
400
400
|
id: string;
|
|
401
401
|
minRows: number;
|
|
402
402
|
maxRows: number;
|
|
403
|
-
placeholder:
|
|
403
|
+
placeholder: any;
|
|
404
404
|
requiredOn: string;
|
|
405
405
|
})[];
|
|
406
406
|
onEvent: {
|
|
@@ -420,8 +420,8 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
420
420
|
position: string;
|
|
421
421
|
closeButton: boolean;
|
|
422
422
|
showIcon: boolean;
|
|
423
|
-
title:
|
|
424
|
-
msg:
|
|
423
|
+
title: any;
|
|
424
|
+
msg: any;
|
|
425
425
|
};
|
|
426
426
|
actionType: string;
|
|
427
427
|
}[];
|
|
@@ -586,7 +586,6 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
586
586
|
className: string;
|
|
587
587
|
steps: {
|
|
588
588
|
title: any;
|
|
589
|
-
mode: string;
|
|
590
589
|
body: {
|
|
591
590
|
label: any;
|
|
592
591
|
name: any;
|
|
@@ -662,8 +661,8 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
662
661
|
position: string;
|
|
663
662
|
closeButton: boolean;
|
|
664
663
|
showIcon: boolean;
|
|
665
|
-
title:
|
|
666
|
-
msg:
|
|
664
|
+
title: any;
|
|
665
|
+
msg: any;
|
|
667
666
|
};
|
|
668
667
|
actionType: string;
|
|
669
668
|
}[];
|
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.52",
|
|
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": "01b95f4f23898382585824f3daf11ff3851283d1"
|
|
65
65
|
}
|