@steedos-widgets/amis-object 1.2.3 → 1.2.6-beta.10
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 +8 -7
- package/dist/amis/AmisGlobalFooter.d.ts +2 -0
- package/dist/amis/AmisGlobalHeader.d.ts +157 -4
- package/dist/amis/AmisGlobalHeaderToolbar.d.ts +8 -0
- package/dist/amis/index.d.ts +2 -0
- package/dist/amis-object.cjs.css +170 -3
- package/dist/amis-object.cjs.js +535 -252
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +170 -3
- package/dist/amis-object.esm.js +535 -254
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +170 -3
- package/dist/amis-object.umd.js +535 -252
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +11 -11
- package/dist/meta.js +532 -308
- package/dist/metas/AmisGlobalFooter.d.ts +2 -0
- package/dist/metas/AmisGlobalHeaderToolbar.d.ts +2 -0
- package/package.json +3 -3
package/dist/amis-object.umd.css
CHANGED
|
@@ -295,15 +295,30 @@ body {
|
|
|
295
295
|
.sticky {
|
|
296
296
|
position: sticky
|
|
297
297
|
}
|
|
298
|
+
.inset-0 {
|
|
299
|
+
top: 0px;
|
|
300
|
+
right: 0px;
|
|
301
|
+
bottom: 0px;
|
|
302
|
+
left: 0px
|
|
303
|
+
}
|
|
298
304
|
.bottom-4 {
|
|
299
305
|
bottom: 1rem
|
|
300
306
|
}
|
|
301
307
|
.right-4 {
|
|
302
308
|
right: 1rem
|
|
303
309
|
}
|
|
310
|
+
.bottom-0 {
|
|
311
|
+
bottom: 0px
|
|
312
|
+
}
|
|
304
313
|
.top-0 {
|
|
305
314
|
top: 0px
|
|
306
315
|
}
|
|
316
|
+
.z-20 {
|
|
317
|
+
z-index: 20
|
|
318
|
+
}
|
|
319
|
+
.z-40 {
|
|
320
|
+
z-index: 40
|
|
321
|
+
}
|
|
307
322
|
.z-10 {
|
|
308
323
|
z-index: 10
|
|
309
324
|
}
|
|
@@ -365,6 +380,12 @@ body {
|
|
|
365
380
|
.mr-1 {
|
|
366
381
|
margin-right: 0.25rem
|
|
367
382
|
}
|
|
383
|
+
.mb-\[-3px\] {
|
|
384
|
+
margin-bottom: -3px
|
|
385
|
+
}
|
|
386
|
+
.mt-\[50px\] {
|
|
387
|
+
margin-top: 50px
|
|
388
|
+
}
|
|
368
389
|
.mt-1 {
|
|
369
390
|
margin-top: 0.25rem
|
|
370
391
|
}
|
|
@@ -422,9 +443,15 @@ body {
|
|
|
422
443
|
.h-12 {
|
|
423
444
|
height: 3rem
|
|
424
445
|
}
|
|
446
|
+
.h-16 {
|
|
447
|
+
height: 4rem
|
|
448
|
+
}
|
|
425
449
|
.h-10 {
|
|
426
450
|
height: 2.5rem
|
|
427
451
|
}
|
|
452
|
+
.h-\[50px\] {
|
|
453
|
+
height: 50px
|
|
454
|
+
}
|
|
428
455
|
.h-7 {
|
|
429
456
|
height: 1.75rem
|
|
430
457
|
}
|
|
@@ -467,6 +494,9 @@ body {
|
|
|
467
494
|
.w-auto {
|
|
468
495
|
width: auto
|
|
469
496
|
}
|
|
497
|
+
.w-64 {
|
|
498
|
+
width: 16rem
|
|
499
|
+
}
|
|
470
500
|
.w-96 {
|
|
471
501
|
width: 24rem
|
|
472
502
|
}
|
|
@@ -506,6 +536,10 @@ body {
|
|
|
506
536
|
.flex-shrink-0 {
|
|
507
537
|
flex-shrink: 0
|
|
508
538
|
}
|
|
539
|
+
.-translate-x-0 {
|
|
540
|
+
--tw-translate-x: -0px;
|
|
541
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
542
|
+
}
|
|
509
543
|
@keyframes spin {
|
|
510
544
|
to {
|
|
511
545
|
transform: rotate(360deg)
|
|
@@ -523,6 +557,9 @@ body {
|
|
|
523
557
|
.flex-wrap {
|
|
524
558
|
flex-wrap: wrap
|
|
525
559
|
}
|
|
560
|
+
.flex-nowrap {
|
|
561
|
+
flex-wrap: nowrap
|
|
562
|
+
}
|
|
526
563
|
.items-center {
|
|
527
564
|
align-items: center
|
|
528
565
|
}
|
|
@@ -532,6 +569,13 @@ body {
|
|
|
532
569
|
.justify-between {
|
|
533
570
|
justify-content: space-between
|
|
534
571
|
}
|
|
572
|
+
.justify-evenly {
|
|
573
|
+
justify-content: space-evenly
|
|
574
|
+
}
|
|
575
|
+
.gap-x-3 {
|
|
576
|
+
-moz-column-gap: 0.75rem;
|
|
577
|
+
column-gap: 0.75rem
|
|
578
|
+
}
|
|
535
579
|
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
536
580
|
--tw-space-x-reverse: 0;
|
|
537
581
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
@@ -554,9 +598,6 @@ body {
|
|
|
554
598
|
.whitespace-nowrap {
|
|
555
599
|
white-space: nowrap
|
|
556
600
|
}
|
|
557
|
-
.whitespace-pre-wrap {
|
|
558
|
-
white-space: pre-wrap
|
|
559
|
-
}
|
|
560
601
|
.rounded {
|
|
561
602
|
border-radius: 0.25rem
|
|
562
603
|
}
|
|
@@ -582,6 +623,9 @@ body {
|
|
|
582
623
|
.border-b {
|
|
583
624
|
border-bottom-width: 1px
|
|
584
625
|
}
|
|
626
|
+
.border-b-\[3px\] {
|
|
627
|
+
border-bottom-width: 3px
|
|
628
|
+
}
|
|
585
629
|
.border-r {
|
|
586
630
|
border-right-width: 1px
|
|
587
631
|
}
|
|
@@ -602,6 +646,14 @@ body {
|
|
|
602
646
|
--tw-border-opacity: 1;
|
|
603
647
|
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
|
604
648
|
}
|
|
649
|
+
.border-sky-500 {
|
|
650
|
+
--tw-border-opacity: 1;
|
|
651
|
+
border-color: rgb(14 165 233 / var(--tw-border-opacity))
|
|
652
|
+
}
|
|
653
|
+
.border-slate-200 {
|
|
654
|
+
--tw-border-opacity: 1;
|
|
655
|
+
border-color: rgb(226 232 240 / var(--tw-border-opacity))
|
|
656
|
+
}
|
|
605
657
|
.border-gray-200 {
|
|
606
658
|
--tw-border-opacity: 1;
|
|
607
659
|
border-color: rgb(229 231 235 / var(--tw-border-opacity))
|
|
@@ -689,6 +741,18 @@ body {
|
|
|
689
741
|
.pl-1 {
|
|
690
742
|
padding-left: 0.25rem
|
|
691
743
|
}
|
|
744
|
+
.pr-4 {
|
|
745
|
+
padding-right: 1rem
|
|
746
|
+
}
|
|
747
|
+
.pb-0 {
|
|
748
|
+
padding-bottom: 0px
|
|
749
|
+
}
|
|
750
|
+
.pb-16 {
|
|
751
|
+
padding-bottom: 4rem
|
|
752
|
+
}
|
|
753
|
+
.pb-4 {
|
|
754
|
+
padding-bottom: 1rem
|
|
755
|
+
}
|
|
692
756
|
.text-left {
|
|
693
757
|
text-align: left
|
|
694
758
|
}
|
|
@@ -710,6 +774,9 @@ body {
|
|
|
710
774
|
.text-\[15px\] {
|
|
711
775
|
font-size: 15px
|
|
712
776
|
}
|
|
777
|
+
.text-\[13px\] {
|
|
778
|
+
font-size: 13px
|
|
779
|
+
}
|
|
713
780
|
.text-xs {
|
|
714
781
|
font-size: 12px
|
|
715
782
|
}
|
|
@@ -804,6 +871,25 @@ body {
|
|
|
804
871
|
.\!filter {
|
|
805
872
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important
|
|
806
873
|
}
|
|
874
|
+
.backdrop-blur {
|
|
875
|
+
--tw-backdrop-blur: blur(8px);
|
|
876
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
877
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
|
|
878
|
+
}
|
|
879
|
+
.transition-colors {
|
|
880
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
881
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
882
|
+
transition-duration: 150ms
|
|
883
|
+
}
|
|
884
|
+
.duration-500 {
|
|
885
|
+
transition-duration: 500ms
|
|
886
|
+
}
|
|
887
|
+
.duration-300 {
|
|
888
|
+
transition-duration: 300ms
|
|
889
|
+
}
|
|
890
|
+
.ease-in-out {
|
|
891
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
|
|
892
|
+
}
|
|
807
893
|
.hover\:bg-sky-50:hover {
|
|
808
894
|
--tw-bg-opacity: 1;
|
|
809
895
|
background-color: rgb(240 249 255 / var(--tw-bg-opacity))
|
|
@@ -819,9 +905,15 @@ body {
|
|
|
819
905
|
.sm\:mt-3 {
|
|
820
906
|
margin-top: 0.75rem
|
|
821
907
|
}
|
|
908
|
+
.sm\:mt-\[90px\] {
|
|
909
|
+
margin-top: 90px
|
|
910
|
+
}
|
|
822
911
|
.sm\:grid {
|
|
823
912
|
display: grid
|
|
824
913
|
}
|
|
914
|
+
.sm\:w-\[220px\] {
|
|
915
|
+
width: 220px
|
|
916
|
+
}
|
|
825
917
|
.sm\:grid-cols-4 {
|
|
826
918
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
827
919
|
}
|
|
@@ -865,6 +957,9 @@ body {
|
|
|
865
957
|
}
|
|
866
958
|
}
|
|
867
959
|
@media (min-width: 1024px) {
|
|
960
|
+
.lg\:z-50 {
|
|
961
|
+
z-index: 50
|
|
962
|
+
}
|
|
868
963
|
.lg\:order-first {
|
|
869
964
|
order: -9999
|
|
870
965
|
}
|
|
@@ -1081,6 +1176,78 @@ body {
|
|
|
1081
1176
|
height: -webkit-fill-available !important;
|
|
1082
1177
|
}
|
|
1083
1178
|
|
|
1179
|
+
.steedos-global-footer {
|
|
1180
|
+
border-top: 1px solid rgb(203 213 225);
|
|
1181
|
+
}
|
|
1182
|
+
.steedos-global-footer .antd-Nav-Menu-item,
|
|
1183
|
+
.steedos-global-footer .antd-Nav-Menu-submenu-title,
|
|
1184
|
+
.steedos-global-footer .antd-Nav-Menu-overflow-item-rest {
|
|
1185
|
+
background-color: rgb(243 244 246) !important;
|
|
1186
|
+
}
|
|
1187
|
+
.steedos-global-footer .antd-Nav-Menu-submenu-selected {
|
|
1188
|
+
border-bottom: none !important;
|
|
1189
|
+
}
|
|
1190
|
+
.steedos-global-footer .antd-Nav-Menu-item.antd-Nav-Menu-item-selected:after {
|
|
1191
|
+
width: 0;
|
|
1192
|
+
}
|
|
1193
|
+
.steedos-global-footer .antd-Nav-Menu-item-wrap svg {
|
|
1194
|
+
background-color: unset;
|
|
1195
|
+
fill: #64748b;
|
|
1196
|
+
}
|
|
1197
|
+
.steedos-global-footer .antd-Nav-Menu-item-selected .text-slate-700 {
|
|
1198
|
+
color: #0970d1 !important;
|
|
1199
|
+
}
|
|
1200
|
+
.steedos-global-footer .antd-Nav-Menu-item-selected svg {
|
|
1201
|
+
fill: #0970d1;
|
|
1202
|
+
}
|
|
1203
|
+
.steedos-global-footer .antd-Nav-Menu-item-link,
|
|
1204
|
+
.steedos-global-footer .antd-Nav-Menu-item-wrap,
|
|
1205
|
+
.antd-Nav-Menu-overflow-item {
|
|
1206
|
+
height: 100% !important;
|
|
1207
|
+
}
|
|
1208
|
+
.steedos-global-footer .antd-Nav-Menu-submenu-title {
|
|
1209
|
+
height: 100% !important;
|
|
1210
|
+
display: flex;
|
|
1211
|
+
align-items: center;
|
|
1212
|
+
}
|
|
1213
|
+
.steedos-global-footer-popup .nav-label {
|
|
1214
|
+
flex-direction: unset !important;
|
|
1215
|
+
}
|
|
1216
|
+
.steedos-global-footer-popup {
|
|
1217
|
+
height: calc(100vh - 125px);
|
|
1218
|
+
width: 100%;
|
|
1219
|
+
}
|
|
1220
|
+
.steedos-global-footer-popup .antd-Nav-Menu {
|
|
1221
|
+
height: 101.1%;
|
|
1222
|
+
overflow: auto;
|
|
1223
|
+
box-shadow: none;
|
|
1224
|
+
}
|
|
1225
|
+
.steedos-global-footer-popup .antd-Nav-Menu-item {
|
|
1226
|
+
padding-bottom: 10px;
|
|
1227
|
+
padding-top: 10px;
|
|
1228
|
+
border-bottom: 0.5px solid #e5e7eb;
|
|
1229
|
+
}
|
|
1230
|
+
.steedos-global-footer-popup .antd-Nav-Menu-item svg {
|
|
1231
|
+
margin-right: 12px;
|
|
1232
|
+
}
|
|
1233
|
+
.steedos-global-footer-popup .nav-label {
|
|
1234
|
+
font-size: 17px;
|
|
1235
|
+
}
|
|
1236
|
+
.steedos-global-footer-popup .antd-Nav-Menu-item-label-subTitle {
|
|
1237
|
+
max-width: 100% !important;
|
|
1238
|
+
}
|
|
1239
|
+
.steedos-global-footer-root .antd-Nav-Menu-horizontal.antd-Nav-Menu-light {
|
|
1240
|
+
background-color: rgb(243 244 246);
|
|
1241
|
+
}
|
|
1242
|
+
@media (max-width: 767px) {
|
|
1243
|
+
.steedos-object-listview .antd-Table-content {
|
|
1244
|
+
max-height: calc(100vh - 263px);
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
.steedos-global-footer ul {
|
|
1248
|
+
order: unset !important;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1084
1251
|
.sidebar-wrapper {
|
|
1085
1252
|
transition: 0.5s ease translate;
|
|
1086
1253
|
translate: -100% 0;
|