vxe-table 4.13.7 → 4.13.8

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.
Files changed (37) hide show
  1. package/es/index.css +1 -1
  2. package/es/index.min.css +1 -1
  3. package/es/style.css +1 -1
  4. package/es/style.min.css +1 -1
  5. package/es/table/render/index.js +13 -3
  6. package/es/table/style.css +12 -5
  7. package/es/table/style.min.css +1 -1
  8. package/es/ui/index.js +3 -3
  9. package/es/ui/src/log.js +1 -1
  10. package/es/vxe-table/style.css +12 -5
  11. package/es/vxe-table/style.min.css +1 -1
  12. package/lib/index.css +1 -1
  13. package/lib/index.min.css +1 -1
  14. package/lib/index.umd.js +21 -7
  15. package/lib/index.umd.min.js +1 -1
  16. package/lib/style.css +1 -1
  17. package/lib/style.min.css +1 -1
  18. package/lib/table/render/index.js +14 -3
  19. package/lib/table/render/index.min.js +1 -1
  20. package/lib/table/style/style.css +12 -5
  21. package/lib/table/style/style.min.css +1 -1
  22. package/lib/ui/index.js +3 -3
  23. package/lib/ui/index.min.js +1 -1
  24. package/lib/ui/src/log.js +1 -1
  25. package/lib/ui/src/log.min.js +1 -1
  26. package/lib/vxe-table/style/style.css +12 -5
  27. package/lib/vxe-table/style/style.min.css +1 -1
  28. package/package.json +2 -2
  29. package/packages/table/render/index.ts +17 -3
  30. package/packages/ui/index.ts +2 -2
  31. package/styles/components/table.scss +30 -17
  32. /package/es/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
  33. /package/es/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
  34. /package/es/{iconfont.1745290253213.woff2 → iconfont.1745374145326.woff2} +0 -0
  35. /package/lib/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
  36. /package/lib/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
  37. /package/lib/{iconfont.1745290253213.woff2 → iconfont.1745374145326.woff2} +0 -0
@@ -219,8 +219,8 @@ VxeUI.setConfig({
219
219
  oSize: 0
220
220
  },
221
221
  scrollbarConfig: {
222
- // width: 0,
223
- // height: 0
222
+ width: 14,
223
+ height: 14
224
224
  }
225
225
  },
226
226
  // export: {
@@ -990,12 +990,6 @@
990
990
  position: relative;
991
991
  line-height: var(--vxe-ui-table-row-line-height);
992
992
  text-align: left;
993
- &.col--current {
994
- background-color: var(--vxe-ui-table-column-current-background-color);
995
- // .vxe-cell--tree-btn {
996
- // background-color: var(--vxe-ui-table-column-current-background-color);
997
- // }
998
- }
999
993
  &.col--center {
1000
994
  text-align: center;
1001
995
  & > .vxe-cell {
@@ -1009,17 +1003,6 @@
1009
1003
  }
1010
1004
  }
1011
1005
  }
1012
- // &.is--tree-line {
1013
- // .vxe-header--column,
1014
- // .vxe-body--column,
1015
- // .vxe-footer--column {
1016
- // &.col--current {
1017
- // .vxe-cell--tree-btn {
1018
- // background-color: var(--vxe-ui-table-column-current-background-color);
1019
- // }
1020
- // }
1021
- // }
1022
- // }
1023
1006
  .vxe-header--column,
1024
1007
  .vxe-footer--column {
1025
1008
  &.col--ellipsis {
@@ -1043,6 +1026,36 @@
1043
1026
  background-color: var(--vxe-ui-table-row-striped-background-color);
1044
1027
  }
1045
1028
  }
1029
+ }
1030
+
1031
+ // 列高亮
1032
+ .vxe-header--column,
1033
+ .vxe-body--column,
1034
+ .vxe-footer--column {
1035
+ position: relative;
1036
+ line-height: var(--vxe-ui-table-row-line-height);
1037
+ text-align: left;
1038
+ &.col--current {
1039
+ background-color: var(--vxe-ui-table-column-current-background-color);
1040
+ // .vxe-cell--tree-btn {
1041
+ // background-color: var(--vxe-ui-table-column-current-background-color);
1042
+ // }
1043
+ }
1044
+ }
1045
+ // &.is--tree-line {
1046
+ // .vxe-header--column,
1047
+ // .vxe-body--column,
1048
+ // .vxe-footer--column {
1049
+ // &.col--current {
1050
+ // .vxe-cell--tree-btn {
1051
+ // background-color: var(--vxe-ui-table-column-current-background-color);
1052
+ // }
1053
+ // }
1054
+ // }
1055
+ // }
1056
+
1057
+ // 行高亮
1058
+ .vxe-body--row {
1046
1059
  &.row--radio {
1047
1060
  & > .vxe-body--column {
1048
1061
  background-color: var(--vxe-ui-table-row-radio-checked-background-color);