@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.
- package/dist/cjs/limel-flatpickr-adapter.cjs.entry.js +971 -647
- package/dist/cjs/limel-table.cjs.entry.js +3 -3
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +1 -1
- package/dist/collection/components/table/table.css +194 -151
- package/dist/collection/components/table/table.js +8 -8
- package/dist/esm/limel-flatpickr-adapter.entry.js +971 -647
- package/dist/esm/limel-table.entry.js +3 -3
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-87a8afd2.entry.js +16 -0
- package/dist/lime-elements/{p-2542b5a3.entry.js → p-ab88cc76.entry.js} +1 -1
- package/package.json +6 -6
- package/dist/lime-elements/p-75846313.entry.js +0 -16
|
@@ -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"
|
|
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;
|