@fluid-topics/ft-filterable-table 0.3.71 → 1.0.0-alpha.0

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.
@@ -10,4 +10,3 @@ export declare const FtFilterableTableCssVariables: {
10
10
  contentFont: import("@fluid-topics/ft-wc-utils").FtCssVariable;
11
11
  };
12
12
  export declare const styles: import("lit").CSSResult;
13
- //# sourceMappingURL=ft-filterable-table.css.d.ts.map
@@ -124,4 +124,3 @@ export const styles = css `
124
124
  visibility: hidden;
125
125
  }
126
126
  `;
127
- //# sourceMappingURL=ft-filterable-table.css.js.map
@@ -27,4 +27,3 @@ export declare class FtFilterableTable<T extends Record<string, any>> extends Ft
27
27
  private getValue;
28
28
  private getValueAsString;
29
29
  }
30
- //# sourceMappingURL=ft-filterable-table.d.ts.map
@@ -18,7 +18,7 @@ import { styles } from "./ft-filterable-table.css";
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
- export class FtFilterableTable extends FtLitElement {
21
+ 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 = {}
@@ -150,6 +150,7 @@ export class FtFilterableTable extends FtLitElement {
150
150
  round
151
151
  dense
152
152
  class="${((_a = column.sortable) !== null && _a !== void 0 ? _a : true) ? "" : "hidden"}"
153
+ iconVariant="material"
153
154
  icon="${sortIcon}"
154
155
  label="Sort ${column.title}"
155
156
  @click=${sort}
@@ -234,4 +235,4 @@ __decorate([
234
235
  __decorate([
235
236
  state()
236
237
  ], FtFilterableTable.prototype, "currentSort", void 0);
237
- //# sourceMappingURL=ft-filterable-table.js.map
238
+ export { FtFilterableTable };