@limetech/lime-elements 35.0.0-next.31 → 35.0.0-next.32

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.
@@ -433,18 +433,18 @@ export class Table {
433
433
  }
434
434
  render() {
435
435
  var _a;
436
- return (h("div", { id: "tabulator-container" },
436
+ return (h("div", { id: "tabulator-container", class: {
437
+ 'has-pagination': this.totalRows > this.pageSize,
438
+ 'has-aggregation': this.hasAggregation(this.columns),
439
+ 'has-movable-columns': this.movableColumns,
440
+ 'has-rowselector': this.selectable,
441
+ 'has-selection': (_a = this.tableSelection) === null || _a === void 0 ? void 0 : _a.hasSelection,
442
+ } },
437
443
  h("div", { id: "tabulator-loader", style: { display: this.loading ? 'flex' : 'none' } },
438
444
  h("limel-spinner", { size: "large" })),
439
445
  this.renderEmptyMessage(),
440
446
  this.renderSelectAll(),
441
- h("div", { id: "tabulator-table", class: {
442
- 'has-pagination': this.totalRows > this.pageSize,
443
- 'has-aggregation': this.hasAggregation(this.columns),
444
- 'has-movable-columns': this.movableColumns,
445
- 'has-rowselector': this.selectable,
446
- 'has-selection': (_a = this.tableSelection) === null || _a === void 0 ? void 0 : _a.hasSelection,
447
- } })));
447
+ h("div", { id: "tabulator-table" })));
448
448
  }
449
449
  renderSelectAll() {
450
450
  var _a, _b, _c;