@fluid-topics/ft-search-facet 1.3.30 → 1.3.32
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-facet.js +2 -1
- package/build/ft-search-facet.light.js +263 -264
- package/build/ft-search-facet.min.js +265 -273
- package/package.json +8 -8
package/build/ft-search-facet.js
CHANGED
|
@@ -16,7 +16,7 @@ import { withI18n } from "@fluid-topics/ft-i18n";
|
|
|
16
16
|
import { searchFacetContext } from "./SearchFacetMessages";
|
|
17
17
|
import { ftAppInfoStore } from "@fluid-topics/ft-app-context";
|
|
18
18
|
import { ClearAllFiltersEvent } from "@fluid-topics/ft-search-context";
|
|
19
|
-
import { FtTreeSelector } from "@fluid-topics/ft-tree-selector";
|
|
19
|
+
import { FtTreeSelector, FtTreeSelectorModes } from "@fluid-topics/ft-tree-selector";
|
|
20
20
|
import { FacetHelper } from "./FacetHelper";
|
|
21
21
|
import { FtButton } from "@fluid-topics/ft-button";
|
|
22
22
|
class FtSearchFacet extends withI18n(FtSearchComponent) {
|
|
@@ -99,6 +99,7 @@ class FtSearchFacet extends withI18n(FtSearchComponent) {
|
|
|
99
99
|
<ft-tree-selector
|
|
100
100
|
part="tree-selector"
|
|
101
101
|
.exportpartsPrefixes=${["filter"]}
|
|
102
|
+
mode="${FtTreeSelectorModes.manual}"
|
|
102
103
|
data="${tree}"
|
|
103
104
|
label="${facet.label}"
|
|
104
105
|
expandLabel="${searchFacetContext.messages.expandLabel()}"
|