@fluid-topics/ft-reader-feedback 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.
@@ -9,4 +9,3 @@ export declare const FtReaderFeedbackCssVariables: {
9
9
  sectionTitleFontSize: import("@fluid-topics/ft-wc-utils").FtCssVariable;
10
10
  };
11
11
  export declare const styles: import("lit").CSSResult;
12
- //# sourceMappingURL=ft-reader-feedback.css.d.ts.map
@@ -88,4 +88,3 @@ export const styles = css `
88
88
  ${setVariable(FtButtonCssVariables.backgroundColor, FtReaderFeedbackCssVariables.sendFeedbackBackgroundColor)};
89
89
  }
90
90
  `;
91
- //# sourceMappingURL=ft-reader-feedback.css.js.map
@@ -23,7 +23,7 @@ export declare class FtReaderFeedback extends FtLitElementWithI18n implements Ft
23
23
  user?: FtUserProfile;
24
24
  feedbackInput: FtTextArea;
25
25
  feedbackMessage: string;
26
- iconVariant: FtIconVariants;
26
+ iconVariant?: FtIconVariants;
27
27
  emptyStarIcon?: string;
28
28
  filledStarIcon?: string;
29
29
  emptyLikeIcon?: string;
@@ -49,4 +49,3 @@ export declare class FtReaderFeedback extends FtLitElementWithI18n implements Ft
49
49
  private placeholderInEditor;
50
50
  clearFeedbackInput(): void;
51
51
  }
52
- //# sourceMappingURL=ft-reader-feedback.d.ts.map
@@ -15,18 +15,16 @@ import { FtSwitch, FtSwitchOption } from "@fluid-topics/ft-switch";
15
15
  import { FtTextArea } from "@fluid-topics/ft-text-area";
16
16
  import { repeat } from "lit/directives/repeat.js";
17
17
  import { FtButton } from "@fluid-topics/ft-button";
18
- import { FtIconVariants } from "@fluid-topics/ft-icon/build/ft-icon.properties";
19
18
  import { defaultMessages, feedback } from "./utils/IntegratedFeedbackComponentMessages";
20
19
  import { FtLitElementWithI18n } from "@fluid-topics/ft-i18n";
21
20
  import { defaultDesignerMessages, designer } from "./utils/InDesignerFeedbackComponentMessages";
22
- export class FtReaderFeedback extends FtLitElementWithI18n {
21
+ class FtReaderFeedback extends FtLitElementWithI18n {
23
22
  constructor() {
24
23
  super();
25
24
  this.editorMode = false;
26
25
  this.hideTitle = false;
27
26
  this.ratingAllowed = false;
28
27
  this.feedbackMessage = "";
29
- this.iconVariant = FtIconVariants.fluid_topics;
30
28
  this.emptyStarIcon = "STAR";
31
29
  this.filledStarIcon = "STAR_PLAIN";
32
30
  this.emptyLikeIcon = "THUMBS_UP";
@@ -284,4 +282,4 @@ __decorate([
284
282
  __decorate([
285
283
  property()
286
284
  ], FtReaderFeedback.prototype, "feedbackMailLinkBuilder", void 0);
287
- //# sourceMappingURL=ft-reader-feedback.js.map
285
+ export { FtReaderFeedback };