@internetarchive/collection-browser 2.12.1-alpha-webdev5427.5 → 2.12.1-alpha-webdev5427.7
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/dist/src/collection-browser.js +3 -3
- package/dist/src/collection-browser.js.map +1 -1
- package/dist/src/collection-facets/more-facets-content.d.ts +1 -0
- package/dist/src/collection-facets/more-facets-content.js +16 -1
- package/dist/src/collection-facets/more-facets-content.js.map +1 -1
- package/dist/src/collection-facets.js +1 -0
- package/dist/src/collection-facets.js.map +1 -1
- package/dist/src/data-source/collection-browser-data-source.js +16 -11
- package/dist/src/data-source/collection-browser-data-source.js.map +1 -1
- package/dist/src/models.js +14 -14
- package/dist/src/models.js.map +1 -1
- package/dist/src/restoration-state-handler.js +8 -3
- package/dist/src/restoration-state-handler.js.map +1 -1
- package/package.json +1 -1
- package/src/collection-browser.ts +3 -3
- package/src/collection-facets/more-facets-content.ts +16 -1
- package/src/collection-facets.ts +1 -0
- package/src/data-source/collection-browser-data-source.ts +27 -15
- package/src/models.ts +26 -27
- package/src/restoration-state-handler.ts +8 -1
|
@@ -877,8 +877,6 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
|
|
|
877
877
|
: defaultFacetDisplayOrder;
|
|
878
878
|
const facets = html `
|
|
879
879
|
<collection-facets
|
|
880
|
-
@facetsChanged=${this.facetsChanged}
|
|
881
|
-
@histogramDateRangeUpdated=${this.histogramDateRangeUpdated}
|
|
882
880
|
.collectionPagePath=${this.collectionPagePath}
|
|
883
881
|
.parentCollections=${this.dataSource.parentCollections}
|
|
884
882
|
.pageSpecifierParams=${this.dataSource.pageSpecifierParams}
|
|
@@ -903,13 +901,15 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
|
|
|
903
901
|
.filterMap=${this.dataSource.filterMap}
|
|
904
902
|
.isManageView=${this.isManageView}
|
|
905
903
|
.modalManager=${this.modalManager}
|
|
904
|
+
.analyticsHandler=${this.analyticsHandler}
|
|
906
905
|
.facetDisplayOrder=${facetDisplayOrder}
|
|
907
906
|
.isTvSearch=${shouldUseTvInterface}
|
|
908
907
|
?collapsableFacets=${this.mobileView}
|
|
909
908
|
?facetsLoading=${this.facetsLoading}
|
|
910
909
|
?fullYearAggregationLoading=${this.facetsLoading}
|
|
911
910
|
@facetClick=${this.facetClickHandler}
|
|
912
|
-
|
|
911
|
+
@facetsChanged=${this.facetsChanged}
|
|
912
|
+
@histogramDateRangeUpdated=${this.histogramDateRangeUpdated}
|
|
913
913
|
>
|
|
914
914
|
</collection-facets>
|
|
915
915
|
`;
|