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/lib/index.js CHANGED
@@ -4,5 +4,5 @@ export { default } from './preset';
4
4
  export * from './config-provider';
5
5
  export * from './directives';
6
6
  export * as plugins from './plugins';
7
- export const version = "2.0.1-beta.62";
7
+ export const version = "2.0.1-beta.63";
8
8
  window.__bkui_vue_version__ = version;
@@ -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))) {
@@ -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;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.62",
3
+ "version": "2.0.1-beta.63",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",