vxe-table 4.13.33 → 4.13.34
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/src/table.js +2 -2
- package/es/table/style.css +9 -3
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +9 -3
- 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 +3 -3
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/src/table.js +1 -1
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/style/style.css +9 -3
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- 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 +9 -3
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +1 -1
- package/packages/table/src/table.ts +2 -2
- package/packages/ui/index.ts +2 -2
- package/styles/components/table.scss +13 -9
- package/styles/theme/base.scss +0 -2
- package/styles/theme/dark.scss +4 -1
- package/styles/theme/light.scss +3 -0
- package/styles/variable.scss +4 -1
- /package/es/{iconfont.1749019395589.ttf → iconfont.1749092482353.ttf} +0 -0
- /package/es/{iconfont.1749019395589.woff → iconfont.1749092482353.woff} +0 -0
- /package/es/{iconfont.1749019395589.woff2 → iconfont.1749092482353.woff2} +0 -0
- /package/lib/{iconfont.1749019395589.ttf → iconfont.1749092482353.ttf} +0 -0
- /package/lib/{iconfont.1749019395589.woff → iconfont.1749092482353.woff} +0 -0
- /package/lib/{iconfont.1749019395589.woff2 → iconfont.1749092482353.woff2} +0 -0
|
@@ -1000,15 +1000,6 @@ $btnThemeList: (
|
|
|
1000
1000
|
}
|
|
1001
1001
|
}
|
|
1002
1002
|
}
|
|
1003
|
-
&.column--highlight {
|
|
1004
|
-
.vxe-header--column {
|
|
1005
|
-
&:not(.col--seq) {
|
|
1006
|
-
&:hover {
|
|
1007
|
-
background-color: var(--vxe-ui-table-column-hover-background-color);
|
|
1008
|
-
}
|
|
1009
|
-
}
|
|
1010
|
-
}
|
|
1011
|
-
}
|
|
1012
1003
|
&.header-cell--area {
|
|
1013
1004
|
.vxe-table--header-wrapper {
|
|
1014
1005
|
user-select: none;
|
|
@@ -1090,6 +1081,16 @@ $btnThemeList: (
|
|
|
1090
1081
|
}
|
|
1091
1082
|
|
|
1092
1083
|
// 列高亮
|
|
1084
|
+
&.column--highlight {
|
|
1085
|
+
.vxe-header--column {
|
|
1086
|
+
&:hover {
|
|
1087
|
+
background-color: var(--vxe-ui-table-column-hover-background-color);
|
|
1088
|
+
&.col--current {
|
|
1089
|
+
background-color: var(--vxe-ui-table-column-hover-current-background-color);
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1093
1094
|
.vxe-header--column,
|
|
1094
1095
|
.vxe-body--column,
|
|
1095
1096
|
.vxe-footer--column {
|
|
@@ -1135,6 +1136,9 @@ $btnThemeList: (
|
|
|
1135
1136
|
&.row--hover {
|
|
1136
1137
|
& > .vxe-body--column {
|
|
1137
1138
|
background-color: var(--vxe-ui-table-row-hover-background-color);
|
|
1139
|
+
&.col--current {
|
|
1140
|
+
background-color: var(--vxe-ui-table-column-current-background-color);
|
|
1141
|
+
}
|
|
1138
1142
|
}
|
|
1139
1143
|
&.row--stripe {
|
|
1140
1144
|
& > .vxe-body--column {
|
package/styles/theme/base.scss
CHANGED
|
@@ -36,8 +36,6 @@
|
|
|
36
36
|
--vxe-ui-table-row-height-mini: 36px;
|
|
37
37
|
--vxe-ui-table-row-line-height: 22px;
|
|
38
38
|
|
|
39
|
-
--vxe-ui-table-column-hover-background-color: #d7effb;
|
|
40
|
-
--vxe-ui-table-column-current-background-color: #e6f7ff;
|
|
41
39
|
--vxe-ui-table-column-icon-border-color: #c0c4cc;
|
|
42
40
|
--vxe-ui-table-column-icon-border-hover-color: #515A6E;
|
|
43
41
|
|
package/styles/theme/dark.scss
CHANGED
|
@@ -31,6 +31,9 @@
|
|
|
31
31
|
/*table*/
|
|
32
32
|
--vxe-ui-table-header-background-color: #28282a;
|
|
33
33
|
--vxe-ui-table-column-to-row-background-color: #28282a;
|
|
34
|
+
--vxe-ui-table-column-hover-background-color: #242f3b;
|
|
35
|
+
--vxe-ui-table-column-current-background-color: #18222c;
|
|
36
|
+
--vxe-ui-table-column-hover-current-background-color: #242f3b;
|
|
34
37
|
--vxe-ui-table-border-color: #37373a;
|
|
35
38
|
--vxe-ui-table-row-hover-background-color: #262727;
|
|
36
39
|
--vxe-ui-table-row-striped-background-color: #1D1D1D;
|
|
@@ -40,7 +43,7 @@
|
|
|
40
43
|
--vxe-ui-table-row-checkbox-checked-background-color: #604820;
|
|
41
44
|
--vxe-ui-table-row-hover-checkbox-checked-background-color: #6e5326;
|
|
42
45
|
--vxe-ui-table-row-current-background-color: #18222c;
|
|
43
|
-
--vxe-ui-table-row-hover-current-background-color: #
|
|
46
|
+
--vxe-ui-table-row-hover-current-background-color: #242f3b;
|
|
44
47
|
--vxe-ui-table-fixed-scrolling-box-shadow-color: rgba(0, 0, 0, 0.8);
|
|
45
48
|
--vxe-ui-table-drag-over-background-color:rgba(48, 48, 0, 0.3);
|
|
46
49
|
}
|
package/styles/theme/light.scss
CHANGED
|
@@ -27,6 +27,9 @@
|
|
|
27
27
|
/*table*/
|
|
28
28
|
--vxe-ui-table-header-background-color: #{light_variable.$vxe-ui-table-header-background-color};
|
|
29
29
|
--vxe-ui-table-column-to-row-background-color: #{light_variable.$vxe-ui-table-column-to-row-background-color};
|
|
30
|
+
--vxe-ui-table-column-hover-background-color: #{light_variable.$vxe-ui-table-column-hover-background-color};
|
|
31
|
+
--vxe-ui-table-column-current-background-color: #{light_variable.$vxe-ui-table-column-current-background-color};
|
|
32
|
+
--vxe-ui-table-column-hover-current-background-color: #{light_variable.$vxe-ui-table-column-hover-current-background-color};
|
|
30
33
|
--vxe-ui-table-border-color: #{light_variable.$vxe-ui-table-border-color};
|
|
31
34
|
--vxe-ui-table-row-hover-background-color: #{light_variable.$vxe-ui-table-row-hover-background-color};
|
|
32
35
|
--vxe-ui-table-row-striped-background-color: #{light_variable.$vxe-ui-table-row-striped-background-color};
|
package/styles/variable.scss
CHANGED
|
@@ -26,6 +26,9 @@ $vxe-ui-loading-background-color: rgba(255, 255, 255, 0.5) !default;
|
|
|
26
26
|
/*table*/
|
|
27
27
|
$vxe-ui-table-header-background-color: #f8f8f9 !default;
|
|
28
28
|
$vxe-ui-table-column-to-row-background-color: #f8f8f9 !default;
|
|
29
|
+
$vxe-ui-table-column-hover-background-color: #d7effb !default;
|
|
30
|
+
$vxe-ui-table-column-current-background-color: #e6f7ff !default;
|
|
31
|
+
$vxe-ui-table-column-hover-current-background-color: #d7effb !default;
|
|
29
32
|
$vxe-ui-table-border-color: #e8eaec !default;
|
|
30
33
|
$vxe-ui-table-row-hover-background-color: #f5f7fa !default;
|
|
31
34
|
$vxe-ui-table-row-striped-background-color: #fafafa !default;
|
|
@@ -38,4 +41,4 @@ $vxe-ui-table-row-current-background-color: #e6f7ff !default;
|
|
|
38
41
|
$vxe-ui-table-row-hover-current-background-color: #d7effb !default;
|
|
39
42
|
$vxe-ui-table-fixed-scrolling-box-shadow-color: rgba(0, 0, 0, 0.12) !default;
|
|
40
43
|
$vxe-ui-table-drag-over-background-color:rgba(255,255,200,0.3) !default;
|
|
41
|
-
|
|
44
|
+
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|