@steedos-widgets/amis-object 1.0.15 → 1.0.17
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/AmisSelectFlow.d.ts +92 -0
- package/dist/amis/index.d.ts +1 -0
- package/dist/amis-object.cjs.css +49 -0
- package/dist/amis-object.cjs.js +1 -1
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +49 -0
- package/dist/amis-object.esm.js +1 -1
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +49 -0
- 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/dist/meta.js +361 -287
- package/dist/metas/AmisSelectFlow.d.ts +2 -0
- package/package.json +3 -3
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* @css
|
|
4
|
+
* max-h-[80vh]
|
|
5
|
+
* !max-h-[80vh]
|
|
6
|
+
* !mb-6
|
|
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
|
+
};
|
package/dist/amis/index.d.ts
CHANGED
package/dist/amis-object.cjs.css
CHANGED
|
@@ -134,6 +134,10 @@ body {
|
|
|
134
134
|
display: flex;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.rdtPicker table {
|
|
138
|
+
border-collapse: separate;
|
|
139
|
+
}
|
|
140
|
+
|
|
137
141
|
.ant-dropdown-menu {
|
|
138
142
|
border: 1px solid #e5e5e5;
|
|
139
143
|
border-radius: 0.25rem;
|
|
@@ -245,6 +249,9 @@ body {
|
|
|
245
249
|
.mr-2 {
|
|
246
250
|
margin-right: 0.5rem
|
|
247
251
|
}
|
|
252
|
+
.ml-2 {
|
|
253
|
+
margin-left: 0.5rem
|
|
254
|
+
}
|
|
248
255
|
.ml-4 {
|
|
249
256
|
margin-left: 1rem
|
|
250
257
|
}
|
|
@@ -263,6 +270,9 @@ body {
|
|
|
263
270
|
.mb-3 {
|
|
264
271
|
margin-bottom: 0.75rem
|
|
265
272
|
}
|
|
273
|
+
.\!mb-6 {
|
|
274
|
+
margin-bottom: 1.5rem !important
|
|
275
|
+
}
|
|
266
276
|
.mt-0\.5 {
|
|
267
277
|
margin-top: 0.125rem
|
|
268
278
|
}
|
|
@@ -308,6 +318,12 @@ body {
|
|
|
308
318
|
.max-h-96 {
|
|
309
319
|
max-height: 24rem
|
|
310
320
|
}
|
|
321
|
+
.max-h-\[80vh\] {
|
|
322
|
+
max-height: 80vh
|
|
323
|
+
}
|
|
324
|
+
.\!max-h-\[80vh\] {
|
|
325
|
+
max-height: 80vh !important
|
|
326
|
+
}
|
|
311
327
|
.w-4 {
|
|
312
328
|
width: 1rem
|
|
313
329
|
}
|
|
@@ -326,6 +342,9 @@ body {
|
|
|
326
342
|
.w-auto {
|
|
327
343
|
width: auto
|
|
328
344
|
}
|
|
345
|
+
.\!w-full {
|
|
346
|
+
width: 100% !important
|
|
347
|
+
}
|
|
329
348
|
.w-full {
|
|
330
349
|
width: 100%
|
|
331
350
|
}
|
|
@@ -372,6 +391,11 @@ body {
|
|
|
372
391
|
.overflow-auto {
|
|
373
392
|
overflow: auto
|
|
374
393
|
}
|
|
394
|
+
.truncate {
|
|
395
|
+
overflow: hidden;
|
|
396
|
+
text-overflow: ellipsis;
|
|
397
|
+
white-space: nowrap
|
|
398
|
+
}
|
|
375
399
|
.whitespace-nowrap {
|
|
376
400
|
white-space: nowrap
|
|
377
401
|
}
|
|
@@ -459,6 +483,10 @@ body {
|
|
|
459
483
|
padding-top: 0.5rem;
|
|
460
484
|
padding-bottom: 0.5rem
|
|
461
485
|
}
|
|
486
|
+
.px-2 {
|
|
487
|
+
padding-left: 0.5rem;
|
|
488
|
+
padding-right: 0.5rem
|
|
489
|
+
}
|
|
462
490
|
.pt-4 {
|
|
463
491
|
padding-top: 1rem
|
|
464
492
|
}
|
|
@@ -495,6 +523,9 @@ body {
|
|
|
495
523
|
.text-base {
|
|
496
524
|
font-size: 14px
|
|
497
525
|
}
|
|
526
|
+
.text-sm {
|
|
527
|
+
font-size: 12px
|
|
528
|
+
}
|
|
498
529
|
.text-\[15px\] {
|
|
499
530
|
font-size: 15px
|
|
500
531
|
}
|
|
@@ -524,6 +555,10 @@ body {
|
|
|
524
555
|
--tw-text-opacity: 1;
|
|
525
556
|
color: rgb(0 0 0 / var(--tw-text-opacity))
|
|
526
557
|
}
|
|
558
|
+
.text-indigo-600 {
|
|
559
|
+
--tw-text-opacity: 1;
|
|
560
|
+
color: rgb(79 70 229 / var(--tw-text-opacity))
|
|
561
|
+
}
|
|
527
562
|
.text-blue-600 {
|
|
528
563
|
--tw-text-opacity: 1;
|
|
529
564
|
color: rgb(37 99 235 / var(--tw-text-opacity))
|
|
@@ -551,6 +586,10 @@ body {
|
|
|
551
586
|
.\!filter {
|
|
552
587
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important
|
|
553
588
|
}
|
|
589
|
+
.hover\:bg-gray-50:hover {
|
|
590
|
+
--tw-bg-opacity: 1;
|
|
591
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity))
|
|
592
|
+
}
|
|
554
593
|
.hover\:bg-sky-50:hover {
|
|
555
594
|
--tw-bg-opacity: 1;
|
|
556
595
|
background-color: rgb(240 249 255 / var(--tw-bg-opacity))
|
|
@@ -586,6 +625,10 @@ body {
|
|
|
586
625
|
.sm\:p-0 {
|
|
587
626
|
padding: 0px
|
|
588
627
|
}
|
|
628
|
+
.sm\:px-6 {
|
|
629
|
+
padding-left: 1.5rem;
|
|
630
|
+
padding-right: 1.5rem
|
|
631
|
+
}
|
|
589
632
|
.sm\:shadow {
|
|
590
633
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
591
634
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -696,6 +739,12 @@ body {
|
|
|
696
739
|
.steedos-amis-form .antd-Collapse .antd-Form--quickEdit {
|
|
697
740
|
grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
|
|
698
741
|
}
|
|
742
|
+
.steedos-amis-form.antd-Form .antd-Collapse-content {
|
|
743
|
+
padding: 0.5rem;
|
|
744
|
+
}
|
|
745
|
+
.steedos-amis-form.antd-Form .antd-Form-label {
|
|
746
|
+
margin-bottom: 0;
|
|
747
|
+
}
|
|
699
748
|
}
|
|
700
749
|
|
|
701
750
|
.steedos-context-bar .antd-Nav-list {
|