@aplus-frontend/ui 0.5.35 → 0.5.37
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/es/src/ap-grid/editable/form-item.vue.mjs +62 -56
- package/es/src/ap-grid/editable/index.vue.mjs +82 -76
- package/es/src/ap-grid/editable/interface.d.ts +4 -0
- package/es/src/ap-grid/index.vue.mjs +73 -75
- package/es/src/ap-grid/interface.d.ts +5 -0
- package/es/src/ap-grid/utils/table.mjs +13 -10
- package/es/src/ap-list/index.vue.mjs +147 -140
- package/es/src/ap-list/interface.d.ts +4 -0
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +28 -30
- package/es/src/editable-table/index.vue.mjs +1 -1
- package/es/src/editable-table/interface.d.ts +4 -0
- package/es/src/editable-table/utils.mjs +54 -52
- package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
- package/lib/src/ap-grid/editable/index.vue.js +1 -1
- package/lib/src/ap-grid/editable/interface.d.ts +4 -0
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/interface.d.ts +5 -0
- package/lib/src/ap-grid/utils/table.js +1 -1
- package/lib/src/ap-list/index.vue.js +1 -1
- package/lib/src/ap-list/interface.d.ts +4 -0
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/editable-table/index.vue.js +1 -1
- package/lib/src/editable-table/interface.d.ts +4 -0
- package/lib/src/editable-table/utils.js +1 -1
- package/package.json +1 -1
- package/theme/ap-list/index.css +38 -4
- package/theme/ap-list/index.less +41 -3
- package/theme/index.css +38 -4
package/theme/index.css
CHANGED
|
@@ -863,20 +863,54 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
863
863
|
.aplus-ap-info-layout-admin__sticky_box-bordered {
|
|
864
864
|
border-bottom: 1px solid #e9e9e9;
|
|
865
865
|
}
|
|
866
|
-
.aplus-ap-list {
|
|
867
|
-
|
|
866
|
+
.aplus-ap-list-content-container {
|
|
867
|
+
position: relative;
|
|
868
|
+
}
|
|
869
|
+
.aplus-ap-list-content-container--spinning {
|
|
870
|
+
opacity: 0.5;
|
|
871
|
+
-webkit-user-select: none;
|
|
872
|
+
-moz-user-select: none;
|
|
873
|
+
user-select: none;
|
|
874
|
+
pointer-events: none;
|
|
868
875
|
}
|
|
869
876
|
.aplus-ap-list__footer {
|
|
870
877
|
margin-top: 16px;
|
|
871
878
|
display: flex;
|
|
872
879
|
justify-content: flex-end;
|
|
873
880
|
}
|
|
874
|
-
.aplus-ap-
|
|
875
|
-
|
|
881
|
+
.aplus-ap-list__spin-wrapper {
|
|
882
|
+
position: absolute;
|
|
883
|
+
width: 100%;
|
|
884
|
+
top: 0;
|
|
885
|
+
bottom: 0;
|
|
886
|
+
border-radius: 4px;
|
|
887
|
+
display: flex;
|
|
888
|
+
justify-content: center;
|
|
889
|
+
align-items: center;
|
|
890
|
+
z-index: 1;
|
|
876
891
|
}
|
|
877
892
|
.aplus-ap-list-scroll-wrapper {
|
|
878
893
|
height: 100%;
|
|
879
894
|
}
|
|
895
|
+
.aplus-ap-list--adaptive {
|
|
896
|
+
height: 100%;
|
|
897
|
+
display: flex;
|
|
898
|
+
flex-direction: column;
|
|
899
|
+
}
|
|
900
|
+
.aplus-ap-list--adaptive .aplus-ap-list-content-container {
|
|
901
|
+
flex-grow: 1;
|
|
902
|
+
flex-shrink: 1;
|
|
903
|
+
overflow: hidden;
|
|
904
|
+
}
|
|
905
|
+
.aplus-ap-list--adaptive .aplus-ap-list-content-container:has(.ant-empty) {
|
|
906
|
+
display: flex;
|
|
907
|
+
justify-content: center;
|
|
908
|
+
align-items: center;
|
|
909
|
+
}
|
|
910
|
+
.aplus-ap-list--adaptive .aplus-ap-list-content-container .aplus-ap-list__content {
|
|
911
|
+
height: 100%;
|
|
912
|
+
overflow: auto;
|
|
913
|
+
}
|
|
880
914
|
.aplus-ap-select-layout {
|
|
881
915
|
display: flex;
|
|
882
916
|
height: 100%;
|