@steedos-widgets/amis-object 1.0.22 → 1.0.24
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/AmisAppLauncher.d.ts +37 -6
- package/dist/amis/AmisInstanceDetail.d.ts +16 -3
- package/dist/amis/AmisSteedosField.d.ts +0 -1
- package/dist/amis-object.cjs.css +23 -15
- package/dist/amis-object.cjs.js +1 -1
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +23 -15
- package/dist/amis-object.esm.js +1 -1
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +23 -15
- package/dist/amis-object.umd.js +1 -1
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets-dev.json +11 -11
- package/dist/assets.json +10 -10
- package/package.json +3 -3
|
@@ -40,15 +40,26 @@ export declare const AmisAppLauncher: (props: any) => Promise<{
|
|
|
40
40
|
name: string;
|
|
41
41
|
items: {
|
|
42
42
|
type: string;
|
|
43
|
-
|
|
43
|
+
level: string;
|
|
44
|
+
actionType: string;
|
|
45
|
+
link: string;
|
|
46
|
+
body: {
|
|
47
|
+
type: string;
|
|
48
|
+
tpl: string;
|
|
49
|
+
}[];
|
|
50
|
+
onEvent: {
|
|
51
|
+
click: {
|
|
52
|
+
actions: {
|
|
53
|
+
actionType: string;
|
|
54
|
+
}[];
|
|
55
|
+
};
|
|
56
|
+
};
|
|
44
57
|
inline: boolean;
|
|
45
58
|
style: {};
|
|
46
59
|
className: string;
|
|
47
60
|
};
|
|
48
|
-
id: string;
|
|
49
61
|
className: string;
|
|
50
62
|
}[];
|
|
51
|
-
id?: undefined;
|
|
52
63
|
className?: undefined;
|
|
53
64
|
} | {
|
|
54
65
|
type: string;
|
|
@@ -56,13 +67,33 @@ export declare const AmisAppLauncher: (props: any) => Promise<{
|
|
|
56
67
|
header: string;
|
|
57
68
|
body: {
|
|
58
69
|
type: string;
|
|
59
|
-
|
|
70
|
+
name: string;
|
|
71
|
+
items: {
|
|
72
|
+
type: string;
|
|
73
|
+
level: string;
|
|
74
|
+
actionType: string;
|
|
75
|
+
link: string;
|
|
76
|
+
body: {
|
|
77
|
+
type: string;
|
|
78
|
+
wrapperComponent: string;
|
|
79
|
+
className: string;
|
|
80
|
+
tpl: string;
|
|
81
|
+
}[];
|
|
82
|
+
onEvent: {
|
|
83
|
+
click: {
|
|
84
|
+
actions: {
|
|
85
|
+
actionType: string;
|
|
86
|
+
}[];
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
inline: boolean;
|
|
90
|
+
style: {};
|
|
91
|
+
className: string;
|
|
92
|
+
};
|
|
60
93
|
className: string;
|
|
61
94
|
}[];
|
|
62
|
-
id: string;
|
|
63
95
|
className: string;
|
|
64
96
|
})[];
|
|
65
|
-
id: string;
|
|
66
97
|
}[];
|
|
67
98
|
className: string;
|
|
68
99
|
visibleOn: string;
|
|
@@ -10,7 +10,6 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
10
10
|
recordId: any;
|
|
11
11
|
id: string;
|
|
12
12
|
showRecordTitle: boolean;
|
|
13
|
-
recordLoaded: boolean;
|
|
14
13
|
className: string;
|
|
15
14
|
};
|
|
16
15
|
css: {
|
|
@@ -200,6 +199,8 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
200
199
|
type: string;
|
|
201
200
|
overlay: boolean;
|
|
202
201
|
resizable: boolean;
|
|
202
|
+
closeOnEsc: boolean;
|
|
203
|
+
closeOnOutside: boolean;
|
|
203
204
|
size: string;
|
|
204
205
|
title: string;
|
|
205
206
|
className: string;
|
|
@@ -207,6 +208,7 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
207
208
|
type: string;
|
|
208
209
|
debug: boolean;
|
|
209
210
|
id: string;
|
|
211
|
+
resetAfterSubmit: boolean;
|
|
210
212
|
body: ({
|
|
211
213
|
type: string;
|
|
212
214
|
label: boolean;
|
|
@@ -343,7 +345,7 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
343
345
|
minRows: number;
|
|
344
346
|
maxRows: number;
|
|
345
347
|
placeholder: string;
|
|
346
|
-
|
|
348
|
+
requiredOn: string;
|
|
347
349
|
})[];
|
|
348
350
|
onEvent: {
|
|
349
351
|
approve_judge_change: {
|
|
@@ -406,6 +408,10 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
406
408
|
url: string;
|
|
407
409
|
method: string;
|
|
408
410
|
dataType: string;
|
|
411
|
+
data: {
|
|
412
|
+
"&": string;
|
|
413
|
+
$scopeId: string;
|
|
414
|
+
};
|
|
409
415
|
headers: {
|
|
410
416
|
Authorization: string;
|
|
411
417
|
};
|
|
@@ -424,13 +430,19 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
424
430
|
componentId: string;
|
|
425
431
|
args: {
|
|
426
432
|
blank: boolean;
|
|
427
|
-
url:
|
|
433
|
+
url: any;
|
|
428
434
|
api?: undefined;
|
|
429
435
|
messages?: undefined;
|
|
430
436
|
};
|
|
431
437
|
actionType: string;
|
|
432
438
|
expression: string;
|
|
433
439
|
script?: undefined;
|
|
440
|
+
} | {
|
|
441
|
+
actionType: string;
|
|
442
|
+
expression: string;
|
|
443
|
+
componentId?: undefined;
|
|
444
|
+
args?: undefined;
|
|
445
|
+
script?: undefined;
|
|
434
446
|
})[];
|
|
435
447
|
};
|
|
436
448
|
};
|
|
@@ -462,6 +474,7 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
462
474
|
type: string;
|
|
463
475
|
debug: boolean;
|
|
464
476
|
wrapWithPanel: boolean;
|
|
477
|
+
resetAfterSubmit: boolean;
|
|
465
478
|
body: ({
|
|
466
479
|
type: string;
|
|
467
480
|
className: string;
|
package/dist/amis-object.cjs.css
CHANGED
|
@@ -305,6 +305,12 @@ body {
|
|
|
305
305
|
.mr-2 {
|
|
306
306
|
margin-right: 0.5rem
|
|
307
307
|
}
|
|
308
|
+
.mt-0\.5 {
|
|
309
|
+
margin-top: 0.125rem
|
|
310
|
+
}
|
|
311
|
+
.mt-0 {
|
|
312
|
+
margin-top: 0px
|
|
313
|
+
}
|
|
308
314
|
.ml-2 {
|
|
309
315
|
margin-left: 0.5rem
|
|
310
316
|
}
|
|
@@ -332,12 +338,6 @@ body {
|
|
|
332
338
|
.mr-3 {
|
|
333
339
|
margin-right: 0.75rem
|
|
334
340
|
}
|
|
335
|
-
.mt-0\.5 {
|
|
336
|
-
margin-top: 0.125rem
|
|
337
|
-
}
|
|
338
|
-
.mt-0 {
|
|
339
|
-
margin-top: 0px
|
|
340
|
-
}
|
|
341
341
|
.block {
|
|
342
342
|
display: block
|
|
343
343
|
}
|
|
@@ -362,6 +362,9 @@ body {
|
|
|
362
362
|
.h-5 {
|
|
363
363
|
height: 1.25rem
|
|
364
364
|
}
|
|
365
|
+
.h-6 {
|
|
366
|
+
height: 1.5rem
|
|
367
|
+
}
|
|
365
368
|
.h-4 {
|
|
366
369
|
height: 1rem
|
|
367
370
|
}
|
|
@@ -371,9 +374,6 @@ body {
|
|
|
371
374
|
.h-12 {
|
|
372
375
|
height: 3rem
|
|
373
376
|
}
|
|
374
|
-
.h-6 {
|
|
375
|
-
height: 1.5rem
|
|
376
|
-
}
|
|
377
377
|
.h-10 {
|
|
378
378
|
height: 2.5rem
|
|
379
379
|
}
|
|
@@ -398,6 +398,9 @@ body {
|
|
|
398
398
|
.w-14 {
|
|
399
399
|
width: 3.5rem
|
|
400
400
|
}
|
|
401
|
+
.w-6 {
|
|
402
|
+
width: 1.5rem
|
|
403
|
+
}
|
|
401
404
|
.w-4 {
|
|
402
405
|
width: 1rem
|
|
403
406
|
}
|
|
@@ -407,9 +410,6 @@ body {
|
|
|
407
410
|
.w-12 {
|
|
408
411
|
width: 3rem
|
|
409
412
|
}
|
|
410
|
-
.w-6 {
|
|
411
|
-
width: 1.5rem
|
|
412
|
-
}
|
|
413
413
|
.w-10 {
|
|
414
414
|
width: 2.5rem
|
|
415
415
|
}
|
|
@@ -592,15 +592,15 @@ body {
|
|
|
592
592
|
.pt-2 {
|
|
593
593
|
padding-top: 0.5rem
|
|
594
594
|
}
|
|
595
|
-
.pb-0 {
|
|
596
|
-
padding-bottom: 0px
|
|
597
|
-
}
|
|
598
595
|
.pl-1\.5 {
|
|
599
596
|
padding-left: 0.375rem
|
|
600
597
|
}
|
|
601
598
|
.pl-1 {
|
|
602
599
|
padding-left: 0.25rem
|
|
603
600
|
}
|
|
601
|
+
.pb-0 {
|
|
602
|
+
padding-bottom: 0px
|
|
603
|
+
}
|
|
604
604
|
.text-left {
|
|
605
605
|
text-align: left
|
|
606
606
|
}
|
|
@@ -1022,6 +1022,14 @@ body.sidebar.sidebar-open #main {
|
|
|
1022
1022
|
border: none !important;
|
|
1023
1023
|
box-shadow: none !important;
|
|
1024
1024
|
}
|
|
1025
|
+
.steedos-amis-instance-view .instance-form-view .antd-Form-item .antd-Table-headToolbar {
|
|
1026
|
+
display: none !important;
|
|
1027
|
+
}
|
|
1028
|
+
.steedos-amis-instance-view .instance-form-view .antd-ResultBox {
|
|
1029
|
+
background-color: transparent !important;
|
|
1030
|
+
border: none !important;
|
|
1031
|
+
box-shadow: none !important;
|
|
1032
|
+
}
|
|
1025
1033
|
.steedos-amis-instance-view .instance-form-view .antd-Select {
|
|
1026
1034
|
background-color: transparent !important;
|
|
1027
1035
|
border: none !important;
|