@fluid-topics/ft-reader-metadata 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.
@@ -1,3 +1,2 @@
1
1
  export declare const FtReaderMetadataCssVariables: {};
2
2
  export declare const styles: import("lit").CSSResult;
3
- //# sourceMappingURL=ft-reader-metadata.css.d.ts.map
@@ -6,4 +6,3 @@ export const styles = css `
6
6
  display: inline-block;
7
7
  }
8
8
  `;
9
- //# sourceMappingURL=ft-reader-metadata.css.js.map
@@ -13,4 +13,3 @@ export declare class FtReaderMetadata extends FtReaderComponent implements FtRea
13
13
  private get valueText();
14
14
  private get tooltipText();
15
15
  }
16
- //# sourceMappingURL=ft-reader-metadata.d.ts.map
@@ -11,7 +11,7 @@ import { styles } from "./ft-reader-metadata.css";
11
11
  import { FtReaderComponent } from "@fluid-topics/ft-reader-context/build/registration";
12
12
  import { FtTooltip } from "@fluid-topics/ft-tooltip";
13
13
  import { FtChip } from "@fluid-topics/ft-chip";
14
- export class FtReaderMetadata extends FtReaderComponent {
14
+ class FtReaderMetadata extends FtReaderComponent {
15
15
  constructor() {
16
16
  super(...arguments);
17
17
  this.editorMode = false;
@@ -73,6 +73,6 @@ __decorate([
73
73
  property({ attribute: false })
74
74
  ], FtReaderMetadata.prototype, "editorMode", void 0);
75
75
  __decorate([
76
- redux((s, e) => { var _a, _b; return (_b = (_a = s.map) === null || _a === void 0 ? void 0 : _a.metadata) === null || _b === void 0 ? void 0 : _b.find(m => m.key === e.key); })
76
+ redux({ selector: (s, e) => { var _a, _b; return (_b = (_a = s.map) === null || _a === void 0 ? void 0 : _a.metadata) === null || _b === void 0 ? void 0 : _b.find(m => m.key === e.key); } })
77
77
  ], FtReaderMetadata.prototype, "metadata", void 0);
78
- //# sourceMappingURL=ft-reader-metadata.js.map
78
+ export { FtReaderMetadata };