vxe-table 4.7.67 → 4.7.68
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/grid/style.css +1 -0
- package/es/grid/style.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/src/body.js +5 -4
- package/es/table/src/header.js +3 -2
- package/es/table/src/table.js +4 -0
- package/es/table/style.css +12 -0
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +2 -2
- package/es/ui/src/log.js +1 -1
- package/es/vxe-grid/style.css +1 -0
- package/es/vxe-grid/style.min.css +1 -1
- package/es/vxe-table/style.css +12 -0
- package/es/vxe-table/style.min.css +1 -1
- package/lib/grid/style/style.css +1 -0
- package/lib/grid/style/style.min.css +1 -1
- package/lib/index.umd.js +16 -10
- 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/body.js +5 -4
- package/lib/table/src/body.min.js +1 -1
- package/lib/table/src/header.js +4 -3
- package/lib/table/src/header.min.js +1 -1
- package/lib/table/src/table.js +4 -0
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/style/style.css +12 -0
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +2 -2
- 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-grid/style/style.css +1 -0
- package/lib/vxe-grid/style/style.min.css +1 -1
- package/lib/vxe-table/style/style.css +12 -0
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/table/src/body.ts +5 -4
- package/packages/table/src/header.ts +4 -3
- package/packages/table/src/table.ts +4 -0
- package/styles/components/grid.scss +1 -0
- package/styles/components/table-module/custom.scss +1 -0
- package/styles/components/table-module/export.scss +1 -0
- package/styles/components/table-module/filter.scss +1 -0
- package/styles/components/table.scss +9 -0
- package/styles/theme/base.scss +1 -0
- /package/es/{iconfont.1724210671876.ttf → iconfont.1724292790389.ttf} +0 -0
- /package/es/{iconfont.1724210671876.woff → iconfont.1724292790389.woff} +0 -0
- /package/es/{iconfont.1724210671876.woff2 → iconfont.1724292790389.woff2} +0 -0
- /package/lib/{iconfont.1724210671876.ttf → iconfont.1724292790389.ttf} +0 -0
- /package/lib/{iconfont.1724210671876.woff → iconfont.1724292790389.woff} +0 -0
- /package/lib/{iconfont.1724210671876.woff2 → iconfont.1724292790389.woff2} +0 -0
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
.vxe-table--fixed-right-body-wrapper {
|
|
43
43
|
overflow-y: auto;
|
|
44
44
|
overflow-x: auto;
|
|
45
|
+
outline: 0;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
/*默认的渲染*/
|
|
@@ -529,12 +530,14 @@
|
|
|
529
530
|
.vxe-table--footer-wrapper {
|
|
530
531
|
overflow-x: hidden;
|
|
531
532
|
overflow-y: hidden;
|
|
533
|
+
outline: 0;
|
|
532
534
|
}
|
|
533
535
|
&:not(.is--empty) {
|
|
534
536
|
&.is--footer {
|
|
535
537
|
&.is--scroll-x {
|
|
536
538
|
.vxe-table--body-wrapper {
|
|
537
539
|
overflow-x: scroll;
|
|
540
|
+
outline: 0;
|
|
538
541
|
}
|
|
539
542
|
}
|
|
540
543
|
}
|
|
@@ -909,8 +912,10 @@
|
|
|
909
912
|
overflow: hidden;
|
|
910
913
|
background-color: inherit;
|
|
911
914
|
transition: 0.3s box-shadow;
|
|
915
|
+
outline: 0;
|
|
912
916
|
.vxe-table--body-wrapper {
|
|
913
917
|
overflow-x: hidden;
|
|
918
|
+
outline: 0;
|
|
914
919
|
}
|
|
915
920
|
}
|
|
916
921
|
.vxe-table--fixed-left-wrapper {
|
|
@@ -949,6 +954,7 @@
|
|
|
949
954
|
&.fixed-right--wrapper {
|
|
950
955
|
position: absolute;
|
|
951
956
|
top: 0;
|
|
957
|
+
outline: 0;
|
|
952
958
|
}
|
|
953
959
|
&.fixed-left--wrapper {
|
|
954
960
|
left: 0;
|
|
@@ -1111,6 +1117,7 @@
|
|
|
1111
1117
|
z-index: 1;
|
|
1112
1118
|
&.is--ellipsis {
|
|
1113
1119
|
overflow: auto;
|
|
1120
|
+
outline: 0;
|
|
1114
1121
|
}
|
|
1115
1122
|
}
|
|
1116
1123
|
|
|
@@ -1219,6 +1226,7 @@
|
|
|
1219
1226
|
overflow: hidden;
|
|
1220
1227
|
width: 100%;
|
|
1221
1228
|
pointer-events: none;
|
|
1229
|
+
outline: 0;
|
|
1222
1230
|
}
|
|
1223
1231
|
.vxe-table--empty-block {
|
|
1224
1232
|
display: none;
|
|
@@ -1470,6 +1478,7 @@ div.vxe-table--tooltip-wrapper {
|
|
|
1470
1478
|
margin-top: -1px;
|
|
1471
1479
|
&.body--wrapper{
|
|
1472
1480
|
overflow-x: auto;
|
|
1481
|
+
outline: 0;
|
|
1473
1482
|
}
|
|
1474
1483
|
}
|
|
1475
1484
|
|
package/styles/theme/base.scss
CHANGED
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
--vxe-ui-table-cell-dirty-insert-color: #19A15F;
|
|
58
58
|
--vxe-ui-table-cell-area-border-color: var(--vxe-ui-font-primary-color);
|
|
59
59
|
--vxe-ui-table-cell-area-border-width: 1px;
|
|
60
|
+
--vxe-ui-table-cell-area-status-border-width: var(--vxe-ui-table-cell-area-border-width);
|
|
60
61
|
--vxe-ui-table-cell-main-area-extension-border-color: #fff;
|
|
61
62
|
--vxe-ui-table-cell-main-area-extension-background-color: var(--vxe-ui-font-primary-color);
|
|
62
63
|
--vxe-ui-table-cell-extend-area-border-width: 2px;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|