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.
- package/es/index.css +1 -1
- package/es/index.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/render/index.js +13 -3
- package/es/table/style.css +12 -5
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +3 -3
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +12 -5
- package/es/vxe-table/style.min.css +1 -1
- package/lib/index.css +1 -1
- package/lib/index.min.css +1 -1
- package/lib/index.umd.js +21 -7
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/render/index.js +14 -3
- package/lib/table/render/index.min.js +1 -1
- package/lib/table/style/style.css +12 -5
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +3 -3
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-table/style/style.css +12 -5
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/table/render/index.ts +17 -3
- package/packages/ui/index.ts +2 -2
- package/styles/components/table.scss +30 -17
- /package/es/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
- /package/es/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
- /package/es/{iconfont.1745290253213.woff2 → iconfont.1745374145326.woff2} +0 -0
- /package/lib/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
- /package/lib/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
- /package/lib/{iconfont.1745290253213.woff2 → iconfont.1745374145326.woff2} +0 -0
package/packages/ui/index.ts
CHANGED
|
@@ -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);
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|