@steedos-widgets/amis-object 1.0.15 → 1.0.16

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.
@@ -0,0 +1,89 @@
1
+ /**
2
+ *
3
+ * @css
4
+ * max-h-[80vh]
5
+ * !mb-6
6
+ */
7
+ export declare const AmisSelectFlow: (props: any) => {
8
+ type: any;
9
+ id: any;
10
+ label: any;
11
+ name: any;
12
+ options: any[];
13
+ multiple: any;
14
+ delimiter: any;
15
+ joinValues: any;
16
+ extractValue: any;
17
+ searchable: any;
18
+ showOutline: any;
19
+ initiallyOpen: any;
20
+ unfoldedLevel: any;
21
+ className: any;
22
+ treeContainerClassName: any;
23
+ source: {
24
+ method: string;
25
+ url: string;
26
+ requestAdaptor: string;
27
+ headers: {
28
+ Authorization: string;
29
+ };
30
+ };
31
+ showIcon: any;
32
+ showRadio: any;
33
+ onlyLeaf: boolean;
34
+ onEvent: any;
35
+ } | {
36
+ type: string;
37
+ id: string;
38
+ body: ({
39
+ type: any;
40
+ id: any;
41
+ label: any;
42
+ name: any;
43
+ options: any[];
44
+ multiple: any;
45
+ delimiter: any;
46
+ joinValues: any;
47
+ extractValue: any;
48
+ searchable: any;
49
+ showOutline: any;
50
+ initiallyOpen: any;
51
+ unfoldedLevel: any;
52
+ className: any;
53
+ treeContainerClassName: any;
54
+ source: {
55
+ method: string;
56
+ url: string;
57
+ requestAdaptor: string;
58
+ headers: {
59
+ Authorization: string;
60
+ };
61
+ };
62
+ showIcon: any;
63
+ showRadio: any;
64
+ onlyLeaf: boolean;
65
+ onEvent: any;
66
+ } | {
67
+ type: string;
68
+ className: string;
69
+ name: string;
70
+ enhance: boolean;
71
+ onEvent: {
72
+ search: {
73
+ actions: ({
74
+ actionType: string;
75
+ componentId: string;
76
+ args: {
77
+ value: {
78
+ keywords: string;
79
+ };
80
+ };
81
+ } | {
82
+ componentId: string;
83
+ actionType: string;
84
+ args?: undefined;
85
+ })[];
86
+ };
87
+ };
88
+ })[];
89
+ };
@@ -14,3 +14,4 @@ export * from './AmisLogo';
14
14
  export * from './AmisAppMenu';
15
15
  export * from './AmisGlobalHeader';
16
16
  export * from './AmisSteedosField';
17
+ export * from './AmisSelectFlow';
@@ -209,9 +209,6 @@ body {
209
209
  .visible {
210
210
  visibility: visible
211
211
  }
212
- .collapse {
213
- visibility: collapse
214
- }
215
212
  .static {
216
213
  position: static
217
214
  }
@@ -263,6 +260,9 @@ body {
263
260
  .mb-3 {
264
261
  margin-bottom: 0.75rem
265
262
  }
263
+ .\!mb-6 {
264
+ margin-bottom: 1.5rem !important
265
+ }
266
266
  .mt-0\.5 {
267
267
  margin-top: 0.125rem
268
268
  }
@@ -308,6 +308,9 @@ body {
308
308
  .max-h-96 {
309
309
  max-height: 24rem
310
310
  }
311
+ .max-h-\[80vh\] {
312
+ max-height: 80vh
313
+ }
311
314
  .w-4 {
312
315
  width: 1rem
313
316
  }