@steedos-widgets/amis-object 6.3.9 → 6.3.11-beta.2
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 +84 -0
- package/dist/amis/AmisAppMenu.d.ts +1 -0
- package/dist/amis-object.cjs.css +15 -0
- package/dist/amis-object.cjs.js +59 -3
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +15 -0
- package/dist/amis-object.esm.js +59 -3
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +15 -0
- package/dist/amis-object.umd.js +2 -2
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +21 -21
- package/package.json +3 -3
|
@@ -106,6 +106,48 @@ export declare const AmisAppLauncher: (props: any) => Promise<{
|
|
|
106
106
|
source?: undefined;
|
|
107
107
|
items?: undefined;
|
|
108
108
|
id?: undefined;
|
|
109
|
+
} | {
|
|
110
|
+
type: string;
|
|
111
|
+
level: string;
|
|
112
|
+
label: string;
|
|
113
|
+
className: string;
|
|
114
|
+
actionType: string;
|
|
115
|
+
dialog: {
|
|
116
|
+
title: string;
|
|
117
|
+
actions: ({
|
|
118
|
+
type: string;
|
|
119
|
+
actionType: string;
|
|
120
|
+
label: string;
|
|
121
|
+
id: string;
|
|
122
|
+
primary?: undefined;
|
|
123
|
+
} | {
|
|
124
|
+
type: string;
|
|
125
|
+
actionType: string;
|
|
126
|
+
label: string;
|
|
127
|
+
primary: boolean;
|
|
128
|
+
id: string;
|
|
129
|
+
})[];
|
|
130
|
+
body: {
|
|
131
|
+
type: string;
|
|
132
|
+
api: {
|
|
133
|
+
url: string;
|
|
134
|
+
method: string;
|
|
135
|
+
requestAdaptor: string;
|
|
136
|
+
adaptor: string;
|
|
137
|
+
messages: {};
|
|
138
|
+
};
|
|
139
|
+
body: {
|
|
140
|
+
type: string;
|
|
141
|
+
name: string;
|
|
142
|
+
label: string;
|
|
143
|
+
required: boolean;
|
|
144
|
+
}[];
|
|
145
|
+
}[];
|
|
146
|
+
size?: undefined;
|
|
147
|
+
};
|
|
148
|
+
source?: undefined;
|
|
149
|
+
items?: undefined;
|
|
150
|
+
id?: undefined;
|
|
109
151
|
})[];
|
|
110
152
|
clearValueOnHidden: boolean;
|
|
111
153
|
visible: boolean;
|
|
@@ -243,6 +285,48 @@ export declare const AmisAppLauncher: (props: any) => Promise<{
|
|
|
243
285
|
source?: undefined;
|
|
244
286
|
items?: undefined;
|
|
245
287
|
id?: undefined;
|
|
288
|
+
} | {
|
|
289
|
+
type: string;
|
|
290
|
+
level: string;
|
|
291
|
+
label: string;
|
|
292
|
+
className: string;
|
|
293
|
+
actionType: string;
|
|
294
|
+
dialog: {
|
|
295
|
+
title: string;
|
|
296
|
+
actions: ({
|
|
297
|
+
type: string;
|
|
298
|
+
actionType: string;
|
|
299
|
+
label: string;
|
|
300
|
+
id: string;
|
|
301
|
+
primary?: undefined;
|
|
302
|
+
} | {
|
|
303
|
+
type: string;
|
|
304
|
+
actionType: string;
|
|
305
|
+
label: string;
|
|
306
|
+
primary: boolean;
|
|
307
|
+
id: string;
|
|
308
|
+
})[];
|
|
309
|
+
body: {
|
|
310
|
+
type: string;
|
|
311
|
+
api: {
|
|
312
|
+
url: string;
|
|
313
|
+
method: string;
|
|
314
|
+
requestAdaptor: string;
|
|
315
|
+
adaptor: string;
|
|
316
|
+
messages: {};
|
|
317
|
+
};
|
|
318
|
+
body: {
|
|
319
|
+
type: string;
|
|
320
|
+
name: string;
|
|
321
|
+
label: string;
|
|
322
|
+
required: boolean;
|
|
323
|
+
}[];
|
|
324
|
+
}[];
|
|
325
|
+
size?: undefined;
|
|
326
|
+
};
|
|
327
|
+
source?: undefined;
|
|
328
|
+
items?: undefined;
|
|
329
|
+
id?: undefined;
|
|
246
330
|
})[];
|
|
247
331
|
clearValueOnHidden: boolean;
|
|
248
332
|
visible: boolean;
|
package/dist/amis-object.cjs.css
CHANGED
|
@@ -636,6 +636,9 @@ fieldset.antd-Collapse > legend{
|
|
|
636
636
|
.m-0 {
|
|
637
637
|
margin: 0px
|
|
638
638
|
}
|
|
639
|
+
.m-1 {
|
|
640
|
+
margin: 0.25rem
|
|
641
|
+
}
|
|
639
642
|
.m-2 {
|
|
640
643
|
margin: 0.5rem
|
|
641
644
|
}
|
|
@@ -2509,6 +2512,18 @@ body.steedos {
|
|
|
2509
2512
|
.steedos-header-container-line-two .ant-dropdown-placement-bottomLeft {
|
|
2510
2513
|
left: -15px !important;
|
|
2511
2514
|
}
|
|
2515
|
+
.antd-Nav-Menu-item-active .hover-inline-flex {
|
|
2516
|
+
display: inline-flex !important;
|
|
2517
|
+
}
|
|
2518
|
+
.antd-Nav-Menu-submenu-active .hover-inline-flex {
|
|
2519
|
+
display: inline-flex !important;
|
|
2520
|
+
}
|
|
2521
|
+
.antd-Nav-Menu-submenu-active .antd-Nav-Menu-item .hover-inline-flex {
|
|
2522
|
+
display: none !important;
|
|
2523
|
+
}
|
|
2524
|
+
.steedos-app-menu-plus .antd-DropDown-menu-root {
|
|
2525
|
+
right: 10px !important;
|
|
2526
|
+
}
|
|
2512
2527
|
|
|
2513
2528
|
#steedosGlobalFooterRoot .steedos-global-footer {
|
|
2514
2529
|
height: 4rem;
|