@fluid-topics/ft-filterable-table 0.3.70 → 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.
@@ -1,5 +1,5 @@
1
1
  import { TemplateResult } from "lit";
2
- export declare type Getter<T> = (o: T) => any;
2
+ export type Getter<T> = (o: T) => any;
3
3
  export interface ColumnConfiguration<T> {
4
4
  title: string | TemplateResult;
5
5
  getter: string | Getter<T>;
@@ -27,4 +27,3 @@ export interface FtFilterableTableProperties<T extends Record<string, any>> {
27
27
  sort?: Sort;
28
28
  stickyHeaders: boolean;
29
29
  }
30
- //# sourceMappingURL=ft-filterable-table.properties.d.ts.map
@@ -3,4 +3,3 @@ export class RowClickEvent extends CustomEvent {
3
3
  super("row-click", { detail: data });
4
4
  }
5
5
  }
6
- //# sourceMappingURL=ft-filterable-table.properties.js.map
package/build/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  export * from "./ft-filterable-table.css";
2
2
  export * from "./ft-filterable-table.properties";
3
3
  export * from "./ft-filterable-table";
4
- //# sourceMappingURL=index.d.ts.map
package/build/index.js CHANGED
@@ -4,4 +4,3 @@ export * from "./ft-filterable-table.css";
4
4
  export * from "./ft-filterable-table.properties";
5
5
  export * from "./ft-filterable-table";
6
6
  customElement("ft-filterable-table")(FtFilterableTable);
7
- //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-filterable-table",
3
- "version": "0.3.70",
3
+ "version": "1.0.0-alpha.0",
4
4
  "description": "A dynamic table with filters",
5
5
  "keywords": [
6
6
  "Lit"
@@ -22,11 +22,11 @@
22
22
  "test": "echo \"Error: run tests from root\" && exit 1"
23
23
  },
24
24
  "dependencies": {
25
- "@fluid-topics/ft-button": "0.3.70",
26
- "@fluid-topics/ft-select": "0.3.70",
27
- "@fluid-topics/ft-text-field": "0.3.70",
28
- "@fluid-topics/ft-wc-utils": "0.3.70",
29
- "lit": "2.2.8"
25
+ "@fluid-topics/ft-button": "1.0.0-alpha.0",
26
+ "@fluid-topics/ft-select": "1.0.0-alpha.0",
27
+ "@fluid-topics/ft-text-field": "1.0.0-alpha.0",
28
+ "@fluid-topics/ft-wc-utils": "1.0.0-alpha.0",
29
+ "lit": "2.7.2"
30
30
  },
31
- "gitHead": "f196cbccc700d904e13deb5c40e2f4f5121d9bb9"
31
+ "gitHead": "e20baae36b79d721b948090d552affaf92c4f12f"
32
32
  }