@steedos-widgets/amis-lib 1.1.0-beta.1 → 1.1.0-beta.2
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 +42 -24
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +42 -24
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +42 -24
- package/dist/index.umd.js.map +1 -1
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +1 -0
- package/dist/types/workflow/approve.d.ts +4 -0
- package/dist/types/workflow/flow.d.ts +5 -0
- package/package.json +2 -2
|
@@ -7,6 +7,9 @@ export function getApprovalDrawerSchema(instance: any): Promise<{
|
|
|
7
7
|
size: string;
|
|
8
8
|
title: string;
|
|
9
9
|
className: string;
|
|
10
|
+
headerClassName: string;
|
|
11
|
+
bodyClassName: string;
|
|
12
|
+
footerClassName: string;
|
|
10
13
|
drawerContainer: () => any;
|
|
11
14
|
body: {
|
|
12
15
|
type: string;
|
|
@@ -73,6 +76,7 @@ export function getApprovalDrawerSchema(instance: any): Promise<{
|
|
|
73
76
|
id: string;
|
|
74
77
|
multiple: boolean;
|
|
75
78
|
required: boolean;
|
|
79
|
+
selectFirst: boolean;
|
|
76
80
|
source: {
|
|
77
81
|
url: string;
|
|
78
82
|
headers: {
|
|
@@ -2,6 +2,7 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
2
2
|
type: string;
|
|
3
3
|
name: string;
|
|
4
4
|
className: string;
|
|
5
|
+
bodyClassName: string;
|
|
5
6
|
title: {
|
|
6
7
|
type: string;
|
|
7
8
|
label: string;
|
|
@@ -203,6 +204,9 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
203
204
|
size: string;
|
|
204
205
|
title: string;
|
|
205
206
|
className: string;
|
|
207
|
+
headerClassName: string;
|
|
208
|
+
bodyClassName: string;
|
|
209
|
+
footerClassName: string;
|
|
206
210
|
drawerContainer: () => any;
|
|
207
211
|
body: {
|
|
208
212
|
type: string;
|
|
@@ -269,6 +273,7 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
269
273
|
id: string;
|
|
270
274
|
multiple: boolean;
|
|
271
275
|
required: boolean;
|
|
276
|
+
selectFirst: boolean;
|
|
272
277
|
source: {
|
|
273
278
|
url: string;
|
|
274
279
|
headers: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.1.0-beta.
|
|
4
|
+
"version": "1.1.0-beta.2",
|
|
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": "
|
|
62
|
+
"gitHead": "139b31ee61017f20ff040f27b4082386f8244c03"
|
|
63
63
|
}
|