@fluid-topics/ft-search-bar 1.0.62 → 1.1.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.
- package/build/ft-search-bar.d.ts +6 -6
- package/build/ft-search-bar.light.js +424 -418
- package/build/ft-search-bar.min.js +642 -621
- package/build/managers/DesktopSearchBarManager.d.ts +1 -1
- package/build/managers/FacetsChipsManager.d.ts +1 -1
- package/build/managers/MobileSearchBarManager.d.ts +1 -1
- package/build/managers/SuggestManager.d.ts +1 -1
- package/package.json +16 -16
package/build/ft-search-bar.d.ts
CHANGED
|
@@ -73,12 +73,12 @@ export declare class FtSearchBar extends FtLitElement implements FtSearchBarProp
|
|
|
73
73
|
focus(): void;
|
|
74
74
|
focusInput(): void;
|
|
75
75
|
clear(): void;
|
|
76
|
-
protected render(): import("lit
|
|
77
|
-
protected renderSearchBar(): import("lit
|
|
78
|
-
renderMobileFacets(): import("lit
|
|
76
|
+
protected render(): import("lit").TemplateResult<1>;
|
|
77
|
+
protected renderSearchBar(): import("lit").TemplateResult<1>;
|
|
78
|
+
renderMobileFacets(): import("lit").TemplateResult<1>;
|
|
79
79
|
private getContentLocaleRadioGroup;
|
|
80
|
-
renderDesktopMenu(): import("lit
|
|
81
|
-
renderFacetsActions(): import("lit
|
|
80
|
+
renderDesktopMenu(): import("lit").TemplateResult<1> | typeof nothing;
|
|
81
|
+
renderFacetsActions(): import("lit").TemplateResult<1>;
|
|
82
82
|
private renderDesktopClearFilters;
|
|
83
83
|
private renderDesktopFacets;
|
|
84
84
|
protected firstUpdated(props: PropertyValues): Promise<void>;
|
|
@@ -110,5 +110,5 @@ export declare class FtSearchBar extends FtLitElement implements FtSearchBarProp
|
|
|
110
110
|
private clearFilters;
|
|
111
111
|
querySelector(selectors: string): HTMLElement | null;
|
|
112
112
|
querySelectorAll(selectors: string): NodeListOf<HTMLElement>;
|
|
113
|
-
renderDesktopFloatingMenu(): import("lit
|
|
113
|
+
renderDesktopFloatingMenu(): import("lit").TemplateResult<1> | typeof nothing;
|
|
114
114
|
}
|