@steedos-widgets/amis-lib 6.10.1-beta.37 → 6.10.1-beta.39
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 +94 -45
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +94 -45
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +44 -15
- package/dist/index.umd.js.map +1 -1
- package/dist/types/workflow/approve.d.ts +32 -23
- package/dist/types/workflow/flow.d.ts +32 -23
- package/package.json +2 -2
|
@@ -116,41 +116,50 @@ export function getApprovalDrawerSchema(instance: any): Promise<{
|
|
|
116
116
|
md: string;
|
|
117
117
|
valign: string;
|
|
118
118
|
} | {
|
|
119
|
-
body: (
|
|
119
|
+
body: ({
|
|
120
120
|
type: string;
|
|
121
|
-
|
|
121
|
+
label: string;
|
|
122
122
|
name: string;
|
|
123
123
|
hiddenOn: string;
|
|
124
124
|
required: boolean;
|
|
125
|
-
|
|
125
|
+
id?: undefined;
|
|
126
|
+
multiple?: undefined;
|
|
127
|
+
source?: undefined;
|
|
128
|
+
labelField?: undefined;
|
|
129
|
+
valueField?: undefined;
|
|
130
|
+
value?: undefined;
|
|
131
|
+
joinValues?: undefined;
|
|
132
|
+
extractValue?: undefined;
|
|
133
|
+
} | {
|
|
126
134
|
type: string;
|
|
127
135
|
label: string;
|
|
128
136
|
name: string;
|
|
129
137
|
id: string;
|
|
130
138
|
required: boolean;
|
|
131
139
|
hiddenOn: string;
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
next_step: string;
|
|
149
|
-
};
|
|
140
|
+
multiple: string;
|
|
141
|
+
source: {
|
|
142
|
+
url: string;
|
|
143
|
+
method: string;
|
|
144
|
+
sendOn: string;
|
|
145
|
+
headers: {
|
|
146
|
+
Authorization: string;
|
|
147
|
+
};
|
|
148
|
+
messages: {};
|
|
149
|
+
requestAdaptor: string;
|
|
150
|
+
adaptor: string;
|
|
151
|
+
data: {
|
|
152
|
+
"&": string;
|
|
153
|
+
$scopeId: string;
|
|
154
|
+
context: string;
|
|
155
|
+
next_step: string;
|
|
150
156
|
};
|
|
151
|
-
labelField: string;
|
|
152
|
-
valueField: string;
|
|
153
157
|
};
|
|
158
|
+
labelField: string;
|
|
159
|
+
valueField: string;
|
|
160
|
+
value: string;
|
|
161
|
+
joinValues: boolean;
|
|
162
|
+
extractValue: boolean;
|
|
154
163
|
})[];
|
|
155
164
|
id: string;
|
|
156
165
|
md?: undefined;
|
|
@@ -331,41 +331,50 @@ export function getFlowFormSchema(instance: any, box: any): Promise<{
|
|
|
331
331
|
md: string;
|
|
332
332
|
valign: string;
|
|
333
333
|
} | {
|
|
334
|
-
body: (
|
|
334
|
+
body: ({
|
|
335
335
|
type: string;
|
|
336
|
-
|
|
336
|
+
label: string;
|
|
337
337
|
name: string;
|
|
338
338
|
hiddenOn: string;
|
|
339
339
|
required: boolean;
|
|
340
|
-
|
|
340
|
+
id?: undefined;
|
|
341
|
+
multiple?: undefined;
|
|
342
|
+
source?: undefined;
|
|
343
|
+
labelField?: undefined;
|
|
344
|
+
valueField?: undefined;
|
|
345
|
+
value?: undefined;
|
|
346
|
+
joinValues?: undefined;
|
|
347
|
+
extractValue?: undefined;
|
|
348
|
+
} | {
|
|
341
349
|
type: string;
|
|
342
350
|
label: string;
|
|
343
351
|
name: string;
|
|
344
352
|
id: string;
|
|
345
353
|
required: boolean;
|
|
346
354
|
hiddenOn: string;
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
next_step: string;
|
|
364
|
-
};
|
|
355
|
+
multiple: string;
|
|
356
|
+
source: {
|
|
357
|
+
url: string;
|
|
358
|
+
method: string;
|
|
359
|
+
sendOn: string;
|
|
360
|
+
headers: {
|
|
361
|
+
Authorization: string;
|
|
362
|
+
};
|
|
363
|
+
messages: {};
|
|
364
|
+
requestAdaptor: string;
|
|
365
|
+
adaptor: string;
|
|
366
|
+
data: {
|
|
367
|
+
"&": string;
|
|
368
|
+
$scopeId: string;
|
|
369
|
+
context: string;
|
|
370
|
+
next_step: string;
|
|
365
371
|
};
|
|
366
|
-
labelField: string;
|
|
367
|
-
valueField: string;
|
|
368
372
|
};
|
|
373
|
+
labelField: string;
|
|
374
|
+
valueField: string;
|
|
375
|
+
value: string;
|
|
376
|
+
joinValues: boolean;
|
|
377
|
+
extractValue: boolean;
|
|
369
378
|
})[];
|
|
370
379
|
id: string;
|
|
371
380
|
md?: undefined;
|
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.39",
|
|
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": "9dd32541e40a960fd8e4074d8508f1870444658a"
|
|
65
65
|
}
|