@fluid-topics/ft-text-field 1.2.29 → 1.2.31

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,7 +10,7 @@ export declare class FtTextFieldSuggestion extends FtLitElement implements FtTex
10
10
  private container?;
11
11
  private assignedNodes;
12
12
  static styles: import("lit").CSSResult;
13
- render(): import("lit").TemplateResult<1>;
13
+ render(): import("lit-html").TemplateResult<1>;
14
14
  focus(options?: FocusOptions): void;
15
15
  click(): void;
16
16
  private confirmSuggestion;
@@ -43,7 +43,7 @@ export declare class FtTextField extends FtTextField_base implements FtTextField
43
43
  providedSuggestionsInDom: FtTextFieldSuggestion[];
44
44
  slottedSuggestions: FtTextFieldSuggestion[];
45
45
  focus(): void;
46
- protected render(): import("lit").TemplateResult<1>;
46
+ protected render(): import("lit-html").TemplateResult<1>;
47
47
  private resolveInputType;
48
48
  private renderSuggestions;
49
49
  private renderPasswordIcon;
@@ -181,8 +181,7 @@ class FtTextField extends toFtFormComponent(FtLitElement, "textbox") {
181
181
  super.update(props);
182
182
  if (props.has("value")
183
183
  || props.has("filterSuggestions")
184
- || props.has("suggestionsProvider")
185
- || props.has("hideSuggestions")) {
184
+ || props.has("suggestionsProvider")) {
186
185
  this.updateSuggestions();
187
186
  }
188
187
  if (props.has("value") && props.get("value") != null) {