@internetarchive/collection-browser 0.3.1-alpha.3 → 0.3.2-alpha.1
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.d.ts +6 -0
- package/dist/src/collection-browser.js +346 -341
- package/dist/src/collection-browser.js.map +1 -1
- package/dist/src/collection-facets/facets-template.js +150 -150
- package/dist/src/collection-facets/facets-template.js.map +1 -1
- package/dist/src/collection-facets/more-facets-content.js +134 -134
- package/dist/src/collection-facets/more-facets-content.js.map +1 -1
- package/dist/src/collection-facets.d.ts +2 -0
- package/dist/src/collection-facets.js +158 -147
- package/dist/src/collection-facets.js.map +1 -1
- package/dist/src/models.js.map +1 -1
- package/dist/src/restoration-state-handler.js.map +1 -1
- package/dist/src/tiles/list/tile-list.js +204 -204
- package/dist/src/tiles/list/tile-list.js.map +1 -1
- package/dist/src/utils/format-count.js.map +1 -1
- package/dist/test/collection-browser.test.js +26 -26
- package/dist/test/collection-browser.test.js.map +1 -1
- package/dist/test/collection-facets.test.js +2 -2
- package/dist/test/collection-facets.test.js.map +1 -1
- package/package.json +1 -1
- package/src/collection-browser.ts +1539 -1530
- package/src/collection-facets/facets-template.ts +294 -294
- package/src/collection-facets/more-facets-content.ts +518 -518
- package/src/collection-facets.ts +582 -569
- package/src/models.ts +216 -216
- package/src/restoration-state-handler.ts +302 -302
- package/src/tiles/list/tile-list.ts +509 -509
- package/src/utils/format-count.ts +96 -96
- package/test/collection-browser.test.ts +490 -490
- package/test/collection-facets.test.ts +510 -510
|
@@ -65,6 +65,12 @@ export declare class CollectionBrowser extends LitElement implements InfiniteScr
|
|
|
65
65
|
private fullYearAggregationLoading;
|
|
66
66
|
private aggregations?;
|
|
67
67
|
private fullYearsHistogramAggregation;
|
|
68
|
+
/**
|
|
69
|
+
* The search type of the previous search (i.e., the currently displayed
|
|
70
|
+
* search results), which may differ from the one that is currently selected
|
|
71
|
+
* to be used for the next search.
|
|
72
|
+
*/
|
|
73
|
+
private previousSearchType?;
|
|
68
74
|
private totalResults?;
|
|
69
75
|
private mobileView;
|
|
70
76
|
private mobileFacetsVisible;
|