@steedos-widgets/amis-object 1.1.0-beta.2 → 1.1.1
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/amis/AmisInstanceDetail.d.ts +34 -45
- package/dist/amis/AmisSelectFlow.d.ts +1 -85
- package/dist/amis-object.cjs.css +3 -0
- package/dist/amis-object.cjs.js +270 -252
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +3 -0
- package/dist/amis-object.esm.js +270 -252
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +3 -0
- package/dist/amis-object.umd.js +270 -252
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +10 -10
- package/dist/meta.js +3 -0
- package/package.json +3 -3
|
@@ -235,7 +235,6 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
235
235
|
args: {
|
|
236
236
|
value: {
|
|
237
237
|
new_judge: string;
|
|
238
|
-
new_next_step: any;
|
|
239
238
|
next_step: any;
|
|
240
239
|
};
|
|
241
240
|
judge?: undefined;
|
|
@@ -274,7 +273,10 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
274
273
|
id: string;
|
|
275
274
|
multiple: boolean;
|
|
276
275
|
required: boolean;
|
|
277
|
-
|
|
276
|
+
autoFill: {
|
|
277
|
+
new_next_step: string;
|
|
278
|
+
next_users: any;
|
|
279
|
+
};
|
|
278
280
|
source: {
|
|
279
281
|
url: string;
|
|
280
282
|
headers: {
|
|
@@ -290,30 +292,6 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
290
292
|
judge: string;
|
|
291
293
|
};
|
|
292
294
|
};
|
|
293
|
-
onEvent: {
|
|
294
|
-
change: {
|
|
295
|
-
weight: number;
|
|
296
|
-
actions: ({
|
|
297
|
-
componentId: string;
|
|
298
|
-
args: {
|
|
299
|
-
value: {
|
|
300
|
-
new_next_step: string;
|
|
301
|
-
};
|
|
302
|
-
next_step?: undefined;
|
|
303
|
-
};
|
|
304
|
-
actionType: string;
|
|
305
|
-
eventName?: undefined;
|
|
306
|
-
} | {
|
|
307
|
-
args: {
|
|
308
|
-
next_step: string;
|
|
309
|
-
value?: undefined;
|
|
310
|
-
};
|
|
311
|
-
actionType: string;
|
|
312
|
-
eventName: string;
|
|
313
|
-
componentId?: undefined;
|
|
314
|
-
})[];
|
|
315
|
-
};
|
|
316
|
-
};
|
|
317
295
|
}[];
|
|
318
296
|
id: string;
|
|
319
297
|
md?: undefined;
|
|
@@ -348,27 +326,29 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
348
326
|
name: string;
|
|
349
327
|
id: string;
|
|
350
328
|
required: boolean;
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
329
|
+
hiddenOn: string;
|
|
330
|
+
amis: {
|
|
331
|
+
multiple: string;
|
|
332
|
+
source: {
|
|
333
|
+
url: string;
|
|
334
|
+
method: string;
|
|
335
|
+
sendOn: string;
|
|
336
|
+
headers: {
|
|
337
|
+
Authorization: string;
|
|
338
|
+
};
|
|
339
|
+
messages: {};
|
|
340
|
+
requestAdaptor: string;
|
|
341
|
+
adaptor: string;
|
|
342
|
+
data: {
|
|
343
|
+
"&": string;
|
|
344
|
+
$scopeId: string;
|
|
345
|
+
context: string;
|
|
346
|
+
next_step: string;
|
|
347
|
+
};
|
|
367
348
|
};
|
|
349
|
+
labelField: string;
|
|
350
|
+
valueField: string;
|
|
368
351
|
};
|
|
369
|
-
labelField: string;
|
|
370
|
-
valueField: string;
|
|
371
|
-
hiddenOn: string;
|
|
372
352
|
})[];
|
|
373
353
|
id: string;
|
|
374
354
|
md?: undefined;
|
|
@@ -378,6 +358,15 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
378
358
|
className: string;
|
|
379
359
|
subFormMode: string;
|
|
380
360
|
hiddenOn: string;
|
|
361
|
+
} | {
|
|
362
|
+
type: string;
|
|
363
|
+
name: string;
|
|
364
|
+
label?: undefined;
|
|
365
|
+
id?: undefined;
|
|
366
|
+
minRows?: undefined;
|
|
367
|
+
maxRows?: undefined;
|
|
368
|
+
placeholder?: undefined;
|
|
369
|
+
requiredOn?: undefined;
|
|
381
370
|
} | {
|
|
382
371
|
type: string;
|
|
383
372
|
label: boolean;
|
|
@@ -5,88 +5,4 @@
|
|
|
5
5
|
* !max-h-[80vh]
|
|
6
6
|
* !mb-6
|
|
7
7
|
*/
|
|
8
|
-
export declare const AmisSelectFlow: (props: any) =>
|
|
9
|
-
type: any;
|
|
10
|
-
id: any;
|
|
11
|
-
label: any;
|
|
12
|
-
name: any;
|
|
13
|
-
options: any[];
|
|
14
|
-
multiple: any;
|
|
15
|
-
delimiter: any;
|
|
16
|
-
joinValues: any;
|
|
17
|
-
extractValue: any;
|
|
18
|
-
searchable: any;
|
|
19
|
-
showOutline: any;
|
|
20
|
-
initiallyOpen: any;
|
|
21
|
-
unfoldedLevel: any;
|
|
22
|
-
className: any;
|
|
23
|
-
required: any;
|
|
24
|
-
treeContainerClassName: any;
|
|
25
|
-
source: {
|
|
26
|
-
method: string;
|
|
27
|
-
url: string;
|
|
28
|
-
requestAdaptor: string;
|
|
29
|
-
headers: {
|
|
30
|
-
Authorization: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
showIcon: any;
|
|
34
|
-
showRadio: any;
|
|
35
|
-
onlyLeaf: boolean;
|
|
36
|
-
onEvent: any;
|
|
37
|
-
} | {
|
|
38
|
-
type: string;
|
|
39
|
-
id: string;
|
|
40
|
-
body: ({
|
|
41
|
-
type: any;
|
|
42
|
-
id: any;
|
|
43
|
-
label: any;
|
|
44
|
-
name: any;
|
|
45
|
-
options: any[];
|
|
46
|
-
multiple: any;
|
|
47
|
-
delimiter: any;
|
|
48
|
-
joinValues: any;
|
|
49
|
-
extractValue: any;
|
|
50
|
-
searchable: any;
|
|
51
|
-
showOutline: any;
|
|
52
|
-
initiallyOpen: any;
|
|
53
|
-
unfoldedLevel: any;
|
|
54
|
-
className: any;
|
|
55
|
-
required: any;
|
|
56
|
-
treeContainerClassName: any;
|
|
57
|
-
source: {
|
|
58
|
-
method: string;
|
|
59
|
-
url: string;
|
|
60
|
-
requestAdaptor: string;
|
|
61
|
-
headers: {
|
|
62
|
-
Authorization: string;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
showIcon: any;
|
|
66
|
-
showRadio: any;
|
|
67
|
-
onlyLeaf: boolean;
|
|
68
|
-
onEvent: any;
|
|
69
|
-
} | {
|
|
70
|
-
type: string;
|
|
71
|
-
className: string;
|
|
72
|
-
name: string;
|
|
73
|
-
enhance: boolean;
|
|
74
|
-
onEvent: {
|
|
75
|
-
search: {
|
|
76
|
-
actions: ({
|
|
77
|
-
actionType: string;
|
|
78
|
-
componentId: string;
|
|
79
|
-
args: {
|
|
80
|
-
value: {
|
|
81
|
-
keywords: string;
|
|
82
|
-
};
|
|
83
|
-
};
|
|
84
|
-
} | {
|
|
85
|
-
componentId: string;
|
|
86
|
-
actionType: string;
|
|
87
|
-
args?: undefined;
|
|
88
|
-
})[];
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
})[];
|
|
92
|
-
};
|
|
8
|
+
export declare const AmisSelectFlow: (props: any) => any;
|