@steedos-widgets/amis-object 1.2.31 → 1.2.33
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/AmisObjectCalendar.d.ts +9 -0
- package/dist/amis-object.cjs.css +35 -16
- package/dist/amis-object.cjs.js +185 -78
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +35 -16
- package/dist/amis-object.esm.js +185 -78
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +35 -16
- package/dist/amis-object.umd.js +185 -78
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets-dev.json +19 -0
- package/dist/assets.json +30 -11
- package/dist/meta.js +75 -1
- package/package.json +3 -3
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
export declare const AmisObjectCalendar: (props: any) => Promise<{
|
|
2
2
|
type: string;
|
|
3
3
|
body: any;
|
|
4
|
+
id: string;
|
|
4
5
|
className: string;
|
|
5
6
|
data: {
|
|
6
7
|
objectName: any;
|
|
7
8
|
uiSchema: any;
|
|
8
9
|
};
|
|
10
|
+
onEvent: {
|
|
11
|
+
[x: string]: {
|
|
12
|
+
actions: {
|
|
13
|
+
actionType: string;
|
|
14
|
+
script: string;
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
};
|
|
9
18
|
}>;
|
package/dist/amis-object.cjs.css
CHANGED
|
@@ -360,18 +360,15 @@ fieldset.antd-Collapse > legend{
|
|
|
360
360
|
.right-4 {
|
|
361
361
|
right: 1rem
|
|
362
362
|
}
|
|
363
|
-
.bottom-0 {
|
|
364
|
-
bottom: 0px
|
|
365
|
-
}
|
|
366
363
|
.top-0 {
|
|
367
364
|
top: 0px
|
|
368
365
|
}
|
|
369
|
-
.z-20 {
|
|
370
|
-
z-index: 20
|
|
371
|
-
}
|
|
372
366
|
.z-40 {
|
|
373
367
|
z-index: 40
|
|
374
368
|
}
|
|
369
|
+
.z-20 {
|
|
370
|
+
z-index: 20
|
|
371
|
+
}
|
|
375
372
|
.z-10 {
|
|
376
373
|
z-index: 10
|
|
377
374
|
}
|
|
@@ -496,12 +493,12 @@ fieldset.antd-Collapse > legend{
|
|
|
496
493
|
.h-12 {
|
|
497
494
|
height: 3rem
|
|
498
495
|
}
|
|
499
|
-
.h-16 {
|
|
500
|
-
height: 4rem
|
|
501
|
-
}
|
|
502
496
|
.h-10 {
|
|
503
497
|
height: 2.5rem
|
|
504
498
|
}
|
|
499
|
+
.\!h-10 {
|
|
500
|
+
height: 2.5rem !important
|
|
501
|
+
}
|
|
505
502
|
.h-\[50px\] {
|
|
506
503
|
height: 50px
|
|
507
504
|
}
|
|
@@ -544,6 +541,9 @@ fieldset.antd-Collapse > legend{
|
|
|
544
541
|
.w-10 {
|
|
545
542
|
width: 2.5rem
|
|
546
543
|
}
|
|
544
|
+
.\!w-10 {
|
|
545
|
+
width: 2.5rem !important
|
|
546
|
+
}
|
|
547
547
|
.w-auto {
|
|
548
548
|
width: auto
|
|
549
549
|
}
|
|
@@ -632,9 +632,6 @@ fieldset.antd-Collapse > legend{
|
|
|
632
632
|
.justify-between {
|
|
633
633
|
justify-content: space-between
|
|
634
634
|
}
|
|
635
|
-
.justify-evenly {
|
|
636
|
-
justify-content: space-evenly
|
|
637
|
-
}
|
|
638
635
|
.gap-x-3 {
|
|
639
636
|
-moz-column-gap: 0.75rem;
|
|
640
637
|
column-gap: 0.75rem
|
|
@@ -751,6 +748,9 @@ fieldset.antd-Collapse > legend{
|
|
|
751
748
|
.fill-slate-500 {
|
|
752
749
|
fill: #64748b
|
|
753
750
|
}
|
|
751
|
+
.\!fill-slate-500 {
|
|
752
|
+
fill: #64748b !important
|
|
753
|
+
}
|
|
754
754
|
.fill-gray-500 {
|
|
755
755
|
fill: #6b7280
|
|
756
756
|
}
|
|
@@ -1287,6 +1287,9 @@ fieldset.antd-Collapse > legend{
|
|
|
1287
1287
|
-moz-column-gap: 1rem;
|
|
1288
1288
|
column-gap: 1rem;
|
|
1289
1289
|
}
|
|
1290
|
+
.steedos-object-form .steedos-markdown .antd-Tabs-pane.is-active {
|
|
1291
|
+
display: block;
|
|
1292
|
+
}
|
|
1290
1293
|
}
|
|
1291
1294
|
|
|
1292
1295
|
@media (max-width: 767px) {
|
|
@@ -1413,11 +1416,18 @@ fieldset.antd-Collapse > legend{
|
|
|
1413
1416
|
height: unset;
|
|
1414
1417
|
}
|
|
1415
1418
|
|
|
1419
|
+
#steedosGlobalFooterRoot .antd-Nav {
|
|
1420
|
+
height: 4rem;
|
|
1421
|
+
position: fixed;
|
|
1422
|
+
bottom: 0;
|
|
1423
|
+
z-index: 20;
|
|
1424
|
+
width: 100%;
|
|
1425
|
+
}
|
|
1416
1426
|
.steedos-global-footer {
|
|
1417
1427
|
border-top: 1px solid rgb(203 213 225);
|
|
1418
1428
|
}
|
|
1419
|
-
.steedos-global-footer
|
|
1420
|
-
.steedos-global-footer
|
|
1429
|
+
.steedos-global-footer .antd-Nav-Menu-item-tooltip-wrap > .antd-Nav-Menu-item,
|
|
1430
|
+
.steedos-global-footer .antd-Nav-Menu-overflow-item > .antd-Nav-Menu-submenu-title {
|
|
1421
1431
|
padding-bottom: 5px;
|
|
1422
1432
|
padding-left: 0;
|
|
1423
1433
|
padding-right: 0;
|
|
@@ -1451,6 +1461,9 @@ fieldset.antd-Collapse > legend{
|
|
|
1451
1461
|
.steedos-global-footer-popup .antd-Nav-Menu-item-wrap {
|
|
1452
1462
|
align-items: center;
|
|
1453
1463
|
}
|
|
1464
|
+
.steedos-global-footer-popup .antd-Nav-Menu-item-link {
|
|
1465
|
+
max-width: unset;
|
|
1466
|
+
}
|
|
1454
1467
|
.steedos-global-footer .antd-Nav-Menu-submenu-title {
|
|
1455
1468
|
height: 100% !important;
|
|
1456
1469
|
display: flex;
|
|
@@ -1462,8 +1475,9 @@ fieldset.antd-Collapse > legend{
|
|
|
1462
1475
|
.steedos-global-footer-popup {
|
|
1463
1476
|
width: 100%;
|
|
1464
1477
|
top: 54px !important;
|
|
1465
|
-
bottom: 64px;
|
|
1466
|
-
|
|
1478
|
+
bottom: 64px !important;
|
|
1479
|
+
left: 0 !important;
|
|
1480
|
+
position: fixed !important;
|
|
1467
1481
|
}
|
|
1468
1482
|
.steedos-global-footer-popup .antd-Nav-Menu {
|
|
1469
1483
|
height: 100%;
|
|
@@ -1486,6 +1500,8 @@ fieldset.antd-Collapse > legend{
|
|
|
1486
1500
|
}
|
|
1487
1501
|
.steedos-global-footer-root .antd-Nav-Menu-horizontal.antd-Nav-Menu-light {
|
|
1488
1502
|
background-color: rgb(243 244 246);
|
|
1503
|
+
justify-content: space-evenly;
|
|
1504
|
+
height: 100%;
|
|
1489
1505
|
}
|
|
1490
1506
|
@media (max-width: 767px) {
|
|
1491
1507
|
.steedos-object-listview .antd-Table-content {
|
|
@@ -1551,6 +1567,9 @@ body.sidebar #sidebar {
|
|
|
1551
1567
|
.steedos-select-flow-service .antd-TreeControl > .antd-Tree {
|
|
1552
1568
|
max-height: unset;
|
|
1553
1569
|
}
|
|
1570
|
+
.steedos-select-flow-service .antd-TreeControl {
|
|
1571
|
+
max-height: calc(100vh - 248px) !important;
|
|
1572
|
+
}
|
|
1554
1573
|
|
|
1555
1574
|
.steedos-amis-instance-view {
|
|
1556
1575
|
font-size: 0.8125rem;
|