@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.
- package/custom-elements.json +3 -3
- package/dist/krubble-components.bundled.js +2 -6
- package/dist/krubble-components.bundled.js.map +1 -1
- package/dist/krubble-components.bundled.min.js +3 -2
- package/dist/krubble-components.bundled.min.js.map +1 -1
- package/dist/krubble-components.umd.js +2 -6
- package/dist/krubble-components.umd.js.map +1 -1
- package/dist/krubble-components.umd.min.js +3 -2
- package/dist/krubble-components.umd.min.js.map +1 -1
- package/dist/table/table.d.ts.map +1 -1
- package/dist/table/table.js +2 -6
- package/dist/table/table.js.map +1 -1
- package/package.json +1 -1
|
@@ -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"
|
|
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 {
|