@steedos-widgets/amis-object 6.10.13 → 6.10.15
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/AmisAppMenu.d.ts +1 -1
- package/dist/amis/AmisInstanceDetail.d.ts +2 -7
- package/dist/amis-object.umd.css +53 -0
- package/dist/amis-object.umd.js +64 -23
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +19 -19
- package/dist/pages/PageObject.d.ts +5 -5
- package/package.json +3 -3
|
@@ -603,15 +603,10 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
603
603
|
regions: string[];
|
|
604
604
|
onEvent: {
|
|
605
605
|
"@data.@instanceDetail.changed": {
|
|
606
|
-
actions:
|
|
607
|
-
actionType: string;
|
|
608
|
-
script: string;
|
|
609
|
-
componentId?: undefined;
|
|
610
|
-
} | {
|
|
606
|
+
actions: {
|
|
611
607
|
componentId: string;
|
|
612
608
|
actionType: string;
|
|
613
|
-
|
|
614
|
-
})[];
|
|
609
|
+
}[];
|
|
615
610
|
};
|
|
616
611
|
inited: {
|
|
617
612
|
actions: any[];
|
package/dist/amis-object.umd.css
CHANGED
|
@@ -2353,6 +2353,59 @@ steedosfieldset.antd-Collapse .antd-Collapse-header.is-mobile:hover {
|
|
|
2353
2353
|
.steedos-amis-instance-view td .loading {
|
|
2354
2354
|
display: none !important;
|
|
2355
2355
|
}
|
|
2356
|
+
@keyframes slideInFromRight {
|
|
2357
|
+
from {
|
|
2358
|
+
transform: translateX(100%);
|
|
2359
|
+
opacity: 0;
|
|
2360
|
+
}
|
|
2361
|
+
to {
|
|
2362
|
+
transform: translateX(0);
|
|
2363
|
+
opacity: 1;
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
@keyframes slideOutToRight {
|
|
2367
|
+
from {
|
|
2368
|
+
transform: translateX(0);
|
|
2369
|
+
opacity: 1;
|
|
2370
|
+
}
|
|
2371
|
+
to {
|
|
2372
|
+
transform: translateX(100%);
|
|
2373
|
+
opacity: 0;
|
|
2374
|
+
}
|
|
2375
|
+
}
|
|
2376
|
+
@keyframes slideInFromTop {
|
|
2377
|
+
from {
|
|
2378
|
+
transform: translateX(-20px);
|
|
2379
|
+
opacity: 0;
|
|
2380
|
+
}
|
|
2381
|
+
to {
|
|
2382
|
+
transform: translateX(0);
|
|
2383
|
+
opacity: 1;
|
|
2384
|
+
}
|
|
2385
|
+
}
|
|
2386
|
+
@keyframes slideOutToBottom {
|
|
2387
|
+
from {
|
|
2388
|
+
transform: translateX(0);
|
|
2389
|
+
opacity: 1;
|
|
2390
|
+
}
|
|
2391
|
+
to {
|
|
2392
|
+
transform: translateX(100%);
|
|
2393
|
+
opacity: 0;
|
|
2394
|
+
}
|
|
2395
|
+
}
|
|
2396
|
+
.slide-in-right {
|
|
2397
|
+
animation: slideInFromRight 0.5s ease-out forwards;
|
|
2398
|
+
}
|
|
2399
|
+
.slide-out-right {
|
|
2400
|
+
animation: slideOutToRight 0.5s ease-out forwards;
|
|
2401
|
+
}
|
|
2402
|
+
.slide-in-top {
|
|
2403
|
+
animation: slideInFromTop 0.3s ease-out forwards;
|
|
2404
|
+
}
|
|
2405
|
+
/* 从下边消失 */
|
|
2406
|
+
.slide-out-bottom {
|
|
2407
|
+
animation: slideOutToBottom 0.3s ease-in forwards;
|
|
2408
|
+
}
|
|
2356
2409
|
|
|
2357
2410
|
.amis-object-field-lookup .lookup-left {
|
|
2358
2411
|
max-width: 50% !important;
|