@kodaris/krubble-components 1.0.64 → 1.0.65

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.
@@ -5976,13 +5976,8 @@ let KRTable = class KRTable extends i$2 {
5976
5976
  }
5977
5977
  /** Renders the scrollable data grid with column headers and rows. */
5978
5978
  _renderTable() {
5979
- const wrapperStyle = {};
5980
- if (this.variant === 'card') {
5981
- // Reserve space for header row + pageSize data rows to prevent layout shift
5982
- wrapperStyle['min-height'] = `${48 + (this._pageSize * 48)}px`;
5983
- }
5984
5979
  return b `
5985
- <div class="wrapper" style=${o$1(wrapperStyle)}>
5980
+ <div class="wrapper">
5986
5981
  <div class="overlay-left"></div>
5987
5982
  <div class="overlay-right"></div>
5988
5983
  ${this._renderStatus()}
@@ -6954,6 +6949,7 @@ KRTable.styles = [krBaseCSS, i$5 `
6954
6949
  :host(.kr-table--card) .wrapper {
6955
6950
  flex: none;
6956
6951
  overflow: visible;
6952
+ min-height: 200px;
6957
6953
  }
6958
6954
 
6959
6955
  :host(.kr-table--card) .content {