@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.
@@ -5982,13 +5982,8 @@
5982
5982
  }
5983
5983
  /** Renders the scrollable data grid with column headers and rows. */
5984
5984
  _renderTable() {
5985
- const wrapperStyle = {};
5986
- if (this.variant === 'card') {
5987
- // Reserve space for header row + pageSize data rows to prevent layout shift
5988
- wrapperStyle['min-height'] = `${48 + (this._pageSize * 48)}px`;
5989
- }
5990
5985
  return b `
5991
- <div class="wrapper" style=${o$1(wrapperStyle)}>
5986
+ <div class="wrapper">
5992
5987
  <div class="overlay-left"></div>
5993
5988
  <div class="overlay-right"></div>
5994
5989
  ${this._renderStatus()}
@@ -6960,6 +6955,7 @@
6960
6955
  :host(.kr-table--card) .wrapper {
6961
6956
  flex: none;
6962
6957
  overflow: visible;
6958
+ min-height: 200px;
6963
6959
  }
6964
6960
 
6965
6961
  :host(.kr-table--card) .content {