@fluid-topics/ft-filterable-table 2.0.15 → 2.0.16
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/build/ft-filterable-table.js +1 -2
- package/build/ft-filterable-table.light.js +144 -144
- package/build/ft-filterable-table.min.js +237 -237
- package/package.json +6 -6
|
@@ -18,7 +18,7 @@ import { styles } from "./ft-filterable-table.styles";
|
|
|
18
18
|
const DEFAULT_RENDER = (v) => html `${v}`;
|
|
19
19
|
const DEFAULT_COMPARATOR = (a, b) => a - b;
|
|
20
20
|
const DEFAULT_STRINGIFY = (v) => "" + v;
|
|
21
|
-
class FtFilterableTable extends FtLitElement {
|
|
21
|
+
export class FtFilterableTable extends FtLitElement {
|
|
22
22
|
constructor() {
|
|
23
23
|
// Don't scope components here or web components cannot be used in columns render method
|
|
24
24
|
// static elementDefinitions: ElementDefinitionsMap = {}
|
|
@@ -265,4 +265,3 @@ __decorate([
|
|
|
265
265
|
__decorate([
|
|
266
266
|
state()
|
|
267
267
|
], FtFilterableTable.prototype, "currentSort", void 0);
|
|
268
|
-
export { FtFilterableTable };
|