@fluid-topics/ft-filterable-table 2.0.15 → 2.0.17

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.
@@ -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 };