@internetarchive/collection-browser 1.14.11-alpha.5 → 1.14.11-alpha.6
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 +4 -1
- package/dist/src/collection-browser.js.map +1 -1
- package/dist/src/models.d.ts +1 -4
- package/dist/src/models.js +36 -36
- package/dist/src/models.js.map +1 -1
- package/dist/src/sort-filter-bar/sort-filter-bar.js +5 -15
- package/dist/src/sort-filter-bar/sort-filter-bar.js.map +1 -1
- package/package.json +1 -1
- package/src/collection-browser.ts +4 -1
- package/src/models.ts +36 -36
- package/src/sort-filter-bar/sort-filter-bar.ts +5 -15
|
@@ -37,7 +37,7 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
|
|
|
37
37
|
this.clearResultsOnEmptyQuery = false;
|
|
38
38
|
this.collectionPagePath = '/details/';
|
|
39
39
|
this.parentCollections = [];
|
|
40
|
-
this.isLoansTab =
|
|
40
|
+
this.isLoansTab = false;
|
|
41
41
|
/** describes where this component is being used */
|
|
42
42
|
this.searchContext = analyticsCategories.default;
|
|
43
43
|
this.pageContext = 'search';
|
|
@@ -456,6 +456,9 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
|
|
|
456
456
|
@creatorLetterChanged=${this.creatorLetterSelected}
|
|
457
457
|
.showLoans=${this.isLoansTab}
|
|
458
458
|
>
|
|
459
|
+
<!-- <slot name="cb-loans-topbar-slot"></slot> -->
|
|
460
|
+
<!-- <div slot="cb-loans-topbar-slot">something hereeeee</div> -->
|
|
461
|
+
<slot name="cb-loans-topbar-slot"></slot>
|
|
459
462
|
</sort-filter-bar>
|
|
460
463
|
`;
|
|
461
464
|
}
|