bkui-vue 2.0.1-beta.62 → 2.0.1-beta.63
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/index.js +1 -1
- package/lib/table/index.js +1 -1
- package/lib/table/table.css +6 -0
- package/lib/table/table.less +14 -0
- package/lib/table/table.variable.css +6 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
package/lib/table/index.js
CHANGED
@@ -24636,7 +24636,7 @@ var useSettings = function useSettings(props, ctx, columns, afterSetting) {
|
|
24636
24636
|
});
|
24637
24637
|
});
|
24638
24638
|
var setRowsBodyHeight = function setRowsBodyHeight() {
|
24639
|
-
if (props.height === '100%' || props.height === 'auto') {
|
24639
|
+
if (props.virtualEnabled && (props.height === '100%' || props.height === 'auto')) {
|
24640
24640
|
var rowsHeight = rows.getCurrentPageRowsHeight();
|
24641
24641
|
var bodyHeight = rowsHeight;
|
24642
24642
|
if (/^\d+\.?\d*(px)?$/.test("".concat(props.maxHeight))) {
|
package/lib/table/table.css
CHANGED
@@ -1688,6 +1688,12 @@
|
|
1688
1688
|
border-bottom: none;
|
1689
1689
|
border-left: none;
|
1690
1690
|
}
|
1691
|
+
.bk-table.bordered-none .bk-table-body table tbody tr td {
|
1692
|
+
border-top: none;
|
1693
|
+
border-right: 1px solid var(--table-bg-color);
|
1694
|
+
border-bottom: none;
|
1695
|
+
border-left: none;
|
1696
|
+
}
|
1691
1697
|
.bk-table .bk-table-fixed {
|
1692
1698
|
position: absolute;
|
1693
1699
|
top: 0;
|
package/lib/table/table.less
CHANGED
@@ -540,6 +540,20 @@
|
|
540
540
|
border-bottom: none;
|
541
541
|
border-left: none;
|
542
542
|
}
|
543
|
+
.@{bk-prefix}-table-body {
|
544
|
+
table {
|
545
|
+
tbody {
|
546
|
+
tr {
|
547
|
+
td {
|
548
|
+
border-top: none;
|
549
|
+
border-right: 1px solid @table-bg-color;
|
550
|
+
border-bottom: none;
|
551
|
+
border-left: none;
|
552
|
+
}
|
553
|
+
}
|
554
|
+
}
|
555
|
+
}
|
556
|
+
}
|
543
557
|
}
|
544
558
|
|
545
559
|
.@{bk-prefix}-table-fixed {
|
@@ -2078,6 +2078,12 @@
|
|
2078
2078
|
border-bottom: none;
|
2079
2079
|
border-left: none;
|
2080
2080
|
}
|
2081
|
+
.bk-table.bordered-none .bk-table-body table tbody tr td {
|
2082
|
+
border-top: none;
|
2083
|
+
border-right: 1px solid var(--table-bg-color);
|
2084
|
+
border-bottom: none;
|
2085
|
+
border-left: none;
|
2086
|
+
}
|
2081
2087
|
.bk-table .bk-table-fixed {
|
2082
2088
|
position: absolute;
|
2083
2089
|
top: 0;
|