@fluid-topics/ft-search-bar 0.1.18 → 0.2.2
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.inline-styles.js +648 -825
- package/build/ft-search-bar.js +1 -3
- package/build/ft-search-bar.light.js +574 -730
- package/build/ft-search-bar.min.js +643 -820
- package/package.json +13 -14
package/build/ft-search-bar.js
CHANGED
|
@@ -20,7 +20,6 @@ import { FtChip } from "@fluid-topics/ft-chip";
|
|
|
20
20
|
import { FtSelect, FtSelectOption } from "@fluid-topics/ft-select";
|
|
21
21
|
import { FtSnapScroll } from "@fluid-topics/ft-snap-scroll";
|
|
22
22
|
import { FtTooltip } from "@fluid-topics/ft-tooltip";
|
|
23
|
-
import { Icon } from "@material/mwc-icon";
|
|
24
23
|
import { FtRipple } from "@fluid-topics/ft-ripple";
|
|
25
24
|
import { flatDeep } from "@fluid-topics/ft-filter/build/utils";
|
|
26
25
|
import { facetsCss, searchBarCss, selectedFiltersCss, suggestionsCss } from "./ft-search-bar.css";
|
|
@@ -507,7 +506,7 @@ export class FtSearchBar extends FtLitElement {
|
|
|
507
506
|
@keyup=${(e) => this.onSuggestKeyUp(e, query)}
|
|
508
507
|
@click=${(e) => this.onSuggestClick(e, query)}>
|
|
509
508
|
<ft-ripple></ft-ripple>
|
|
510
|
-
<
|
|
509
|
+
<ft-icon variant="material" part="suggestion-icon">history</ft-icon>
|
|
511
510
|
<ft-typography variant="body1">${query}</ft-typography>
|
|
512
511
|
<ft-button icon="close"
|
|
513
512
|
round
|
|
@@ -815,7 +814,6 @@ FtSearchBar.elementDefinitions = {
|
|
|
815
814
|
"ft-snap-scroll": FtSnapScroll,
|
|
816
815
|
"ft-tooltip": FtTooltip,
|
|
817
816
|
"ft-typography": FtTypography,
|
|
818
|
-
"mwc-icon": Icon,
|
|
819
817
|
};
|
|
820
818
|
FtSearchBar.styles = [
|
|
821
819
|
FtTypographyBody2,
|