@internetarchive/collection-browser 3.4.1-alpha-webdev7761.2 → 3.4.1-alpha-webdev7761.3
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 +7 -0
- package/dist/src/collection-browser.js.map +1 -1
- package/dist/src/combo-box/caret-closed.js +8 -11
- package/dist/src/combo-box/caret-closed.js.map +1 -1
- package/dist/src/combo-box/caret-open.js +8 -11
- package/dist/src/combo-box/caret-open.js.map +1 -1
- package/dist/src/combo-box/clear.d.ts +2 -0
- package/dist/src/combo-box/clear.js +11 -0
- package/dist/src/combo-box/clear.js.map +1 -0
- package/dist/src/combo-box/ia-combo-box.d.ts +40 -9
- package/dist/src/combo-box/ia-combo-box.js +189 -84
- package/dist/src/combo-box/ia-combo-box.js.map +1 -1
- package/dist/src/combo-box/models.d.ts +14 -0
- package/dist/src/combo-box/models.js +31 -0
- package/dist/src/combo-box/models.js.map +1 -1
- package/package.json +1 -1
- package/src/collection-browser.ts +7 -0
- package/src/combo-box/caret-closed.ts +8 -11
- package/src/combo-box/caret-open.ts +8 -11
- package/src/combo-box/clear.ts +11 -0
- package/src/combo-box/ia-combo-box.ts +193 -79
- package/src/combo-box/models.ts +30 -0
|
@@ -1077,6 +1077,7 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
|
|
|
1077
1077
|
id="tv-networks"
|
|
1078
1078
|
class="tv-filter-dropdown"
|
|
1079
1079
|
placeholder="Filter by Network"
|
|
1080
|
+
clearable
|
|
1080
1081
|
wrap-arrow-keys
|
|
1081
1082
|
sort
|
|
1082
1083
|
.options=${networks.map((n, i) => ({ id: `network-${i}`, text: n }))}
|
|
@@ -1093,6 +1094,7 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
|
|
|
1093
1094
|
class="tv-filter-dropdown"
|
|
1094
1095
|
placeholder="Filter by Show"
|
|
1095
1096
|
max-autocomplete-entries="500"
|
|
1097
|
+
clearable
|
|
1096
1098
|
wrap-arrow-keys
|
|
1097
1099
|
sort
|
|
1098
1100
|
.options=${shows.map((s, i) => ({ id: `show-${i}`, text: s }))}
|
|
@@ -2343,6 +2345,11 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
|
|
|
2343
2345
|
padding: 7px;
|
|
2344
2346
|
}
|
|
2345
2347
|
|
|
2348
|
+
.tv-filter-dropdown::part(clear-button) {
|
|
2349
|
+
flex: 0 0 26px;
|
|
2350
|
+
--combo-box-clear-icon-size: 14px;
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2346
2353
|
#facets-container {
|
|
2347
2354
|
position: relative;
|
|
2348
2355
|
max-height: 0;
|