@steedos-widgets/amis-object 1.0.32 → 1.0.34

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.
@@ -1,6 +1,5 @@
1
1
  export declare const AmisAppLauncher: (props: any) => Promise<{
2
2
  type: string;
3
- className: any;
4
3
  body: {
5
4
  type: string;
6
5
  actionType: string;
@@ -9,12 +8,21 @@ export declare const AmisAppLauncher: (props: any) => Promise<{
9
8
  type: string;
10
9
  className: string;
11
10
  tpl: string;
11
+ badge: {
12
+ mode: string;
13
+ text: string;
14
+ style: {
15
+ right: string;
16
+ "margin-right": string;
17
+ };
18
+ };
12
19
  hiddenOn?: undefined;
13
20
  } | {
14
21
  type: string;
15
22
  className: string;
16
23
  tpl: string;
17
24
  hiddenOn: string;
25
+ badge?: undefined;
18
26
  })[];
19
27
  dialog: {
20
28
  size: string;
@@ -24,7 +32,62 @@ export declare const AmisAppLauncher: (props: any) => Promise<{
24
32
  className: string;
25
33
  };
26
34
  actions: any[];
27
- body: {
35
+ body: ({
36
+ type: string;
37
+ affixFooter: boolean;
38
+ body: {
39
+ type: string;
40
+ name: string;
41
+ items: {
42
+ type: string;
43
+ level: string;
44
+ actionType: string;
45
+ link: string;
46
+ body: {
47
+ type: string;
48
+ tpl: string;
49
+ badge: {
50
+ mode: string;
51
+ text: string;
52
+ style: {
53
+ right: string;
54
+ "margin-right": string;
55
+ };
56
+ };
57
+ }[];
58
+ onEvent: {
59
+ click: {
60
+ actions: {
61
+ actionType: string;
62
+ }[];
63
+ };
64
+ };
65
+ className: string;
66
+ style: {
67
+ display: string;
68
+ "justify-content": string;
69
+ };
70
+ };
71
+ className: string;
72
+ id: string;
73
+ }[];
74
+ clearValueOnHidden: boolean;
75
+ visible: boolean;
76
+ messages: {};
77
+ api: {
78
+ method: string;
79
+ url: string;
80
+ headers: {
81
+ Authorization: string;
82
+ };
83
+ adaptor: string;
84
+ messages: {};
85
+ data?: undefined;
86
+ };
87
+ id: string;
88
+ className?: undefined;
89
+ visibleOn?: undefined;
90
+ } | {
28
91
  type: string;
29
92
  id: string;
30
93
  affixFooter: boolean;
@@ -108,9 +171,24 @@ export declare const AmisAppLauncher: (props: any) => Promise<{
108
171
  Authorization: string;
109
172
  };
110
173
  adaptor: string;
174
+ messages?: undefined;
111
175
  };
112
- }[];
176
+ })[];
113
177
  };
114
178
  id: string;
115
179
  }[];
180
+ id: string;
181
+ messages: {};
182
+ api: {
183
+ url: string;
184
+ method: string;
185
+ messages: {};
186
+ headers: {
187
+ Authorization: string;
188
+ };
189
+ data: {
190
+ query: string;
191
+ };
192
+ adaptor: string;
193
+ };
116
194
  }>;
@@ -350,6 +350,9 @@ body {
350
350
  .flex {
351
351
  display: flex
352
352
  }
353
+ .inline-flex {
354
+ display: inline-flex
355
+ }
353
356
  .table {
354
357
  display: table
355
358
  }
@@ -416,6 +419,9 @@ body {
416
419
  .w-12 {
417
420
  width: 3rem
418
421
  }
422
+ .w-1\/3 {
423
+ width: 33.333333%
424
+ }
419
425
  .w-10 {
420
426
  width: 2.5rem
421
427
  }
@@ -472,6 +478,9 @@ body {
472
478
  .flex-col {
473
479
  flex-direction: column
474
480
  }
481
+ .flex-wrap {
482
+ flex-wrap: wrap
483
+ }
475
484
  .items-center {
476
485
  align-items: center
477
486
  }
@@ -1022,7 +1031,6 @@ body {
1022
1031
  }
1023
1032
 
1024
1033
  .sidebar-wrapper {
1025
- background: #1f2937;
1026
1034
  transition: 0.5s ease translate;
1027
1035
  translate: -100% 0;
1028
1036
  will-change: transform;