@bridgeline-digital/hawksearch-handlebars-ui 2.0.0 → 2.1.0-beta.3

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.
@@ -47,11 +47,11 @@ import { BaseComponent } from '../../base.component';
47
47
  * @category Recommendations
48
48
  */
49
49
  export declare class RecommendationsComponent extends BaseComponent<RecommendationsComponentConfig, RecommendationsWidget, RecommendationsComponentModel> {
50
+ static get observedAttributes(): Array<string>;
50
51
  protected componentName: keyof HawkSearchComponents;
51
52
  protected defaultHtml: any;
52
53
  protected bindFromEvent: boolean;
53
- protected eventFilter: string | undefined;
54
- private get widgetId();
54
+ private widgetId;
55
55
  private get carousel();
56
56
  private get carouselPosition();
57
57
  private get displayType();
@@ -69,6 +69,7 @@ export declare class RecommendationsComponent extends BaseComponent<Recommendati
69
69
  constructor();
70
70
  connectedCallback(): void;
71
71
  disconnectedCallback(): void;
72
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
72
73
  protected renderContent(): boolean;
73
74
  protected getContentModel(): RecommendationsComponentModel;
74
75
  protected bindChildElements(): void;
@@ -25,9 +25,13 @@ export declare class SearchFieldComponent extends BaseComponent<SearchFieldCompo
25
25
  protected defaultHtml: any;
26
26
  protected bindFromEvent: boolean;
27
27
  private clickEventHandler;
28
+ private defaultAutocompleteResponse?;
29
+ private previousAutocompleteResponse?;
30
+ private previousValue;
28
31
  connectedCallback(): void;
29
32
  disconnectedCallback(): void;
30
33
  protected getContentModel(): SearchFieldComponentModel;
31
34
  protected onRender(): void;
32
35
  private toggleAutocomplete;
36
+ private displayDefaultAutocomplete;
33
37
  }