@internetarchive/collection-browser 4.1.3-alpha-webdev8257.1 → 4.1.4
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/index.d.ts +0 -1
- package/dist/index.js.map +1 -1
- package/dist/src/app-root.d.ts +0 -8
- package/dist/src/app-root.js +614 -645
- package/dist/src/app-root.js.map +1 -1
- package/dist/src/collection-browser.d.ts +0 -3
- package/dist/src/collection-browser.js +790 -794
- package/dist/src/collection-browser.js.map +1 -1
- package/dist/src/tiles/models.d.ts +0 -14
- package/dist/src/tiles/models.js.map +1 -1
- package/dist/src/tiles/tile-dispatcher.d.ts +1 -12
- package/dist/src/tiles/tile-dispatcher.js +216 -333
- package/dist/src/tiles/tile-dispatcher.js.map +1 -1
- package/dist/test/collection-browser.test.js +261 -189
- package/dist/test/collection-browser.test.js.map +1 -1
- package/index.ts +28 -29
- package/package.json +1 -1
- package/src/app-root.ts +1166 -1201
- package/src/collection-browser.ts +3077 -3080
- package/src/tiles/models.ts +8 -24
- package/src/tiles/tile-dispatcher.ts +527 -652
- package/test/collection-browser.test.ts +2507 -2402
package/index.ts
CHANGED
|
@@ -1,29 +1,28 @@
|
|
|
1
|
-
export { CollectionBrowser } from './src/collection-browser';
|
|
2
|
-
export { CollectionBrowserDataSource } from './src/data-source/collection-browser-data-source';
|
|
3
|
-
export { CollectionBrowserDataSourceInterface } from './src/data-source/collection-browser-data-source-interface';
|
|
4
|
-
export { CollectionBrowserQueryState } from './src/data-source/collection-browser-query-state';
|
|
5
|
-
export { SortFilterBar } from './src/sort-filter-bar/sort-filter-bar';
|
|
6
|
-
export {
|
|
7
|
-
CollectionDisplayMode,
|
|
8
|
-
SortField,
|
|
9
|
-
TileModel,
|
|
10
|
-
FacetOption,
|
|
11
|
-
SelectedFacets,
|
|
12
|
-
getDefaultSelectedFacets,
|
|
13
|
-
} from './src/models';
|
|
14
|
-
export { CollectionBrowserLoadingTile } from './src/tiles/collection-browser-loading-tile';
|
|
15
|
-
export { CollectionTile } from './src/tiles/grid/collection-tile';
|
|
16
|
-
export { AccountTile } from './src/tiles/grid/account-tile';
|
|
17
|
-
export { ItemTile } from './src/tiles/grid/item-tile';
|
|
18
|
-
export { TileList } from './src/tiles/list/tile-list';
|
|
19
|
-
export { TileListCompact } from './src/tiles/list/tile-list-compact';
|
|
20
|
-
export { TileDispatcher } from './src/tiles/tile-dispatcher';
|
|
21
|
-
export { LayoutType } from './src/tiles/models';
|
|
22
|
-
export
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
export
|
|
29
|
-
export { SmartQueryHeuristicGroup } from './src/collection-facets/smart-facets/smart-facet-heuristics';
|
|
1
|
+
export { CollectionBrowser } from './src/collection-browser';
|
|
2
|
+
export { CollectionBrowserDataSource } from './src/data-source/collection-browser-data-source';
|
|
3
|
+
export { CollectionBrowserDataSourceInterface } from './src/data-source/collection-browser-data-source-interface';
|
|
4
|
+
export { CollectionBrowserQueryState } from './src/data-source/collection-browser-query-state';
|
|
5
|
+
export { SortFilterBar } from './src/sort-filter-bar/sort-filter-bar';
|
|
6
|
+
export {
|
|
7
|
+
CollectionDisplayMode,
|
|
8
|
+
SortField,
|
|
9
|
+
TileModel,
|
|
10
|
+
FacetOption,
|
|
11
|
+
SelectedFacets,
|
|
12
|
+
getDefaultSelectedFacets,
|
|
13
|
+
} from './src/models';
|
|
14
|
+
export { CollectionBrowserLoadingTile } from './src/tiles/collection-browser-loading-tile';
|
|
15
|
+
export { CollectionTile } from './src/tiles/grid/collection-tile';
|
|
16
|
+
export { AccountTile } from './src/tiles/grid/account-tile';
|
|
17
|
+
export { ItemTile } from './src/tiles/grid/item-tile';
|
|
18
|
+
export { TileList } from './src/tiles/list/tile-list';
|
|
19
|
+
export { TileListCompact } from './src/tiles/list/tile-list-compact';
|
|
20
|
+
export { TileDispatcher } from './src/tiles/tile-dispatcher';
|
|
21
|
+
export { LayoutType } from './src/tiles/models';
|
|
22
|
+
export {
|
|
23
|
+
SmartQueryHeuristic,
|
|
24
|
+
KeywordFacetMap,
|
|
25
|
+
SmartFacet,
|
|
26
|
+
} from './src/collection-facets/smart-facets/models';
|
|
27
|
+
export * from './src/collection-facets/smart-facets/heuristics/index';
|
|
28
|
+
export { SmartQueryHeuristicGroup } from './src/collection-facets/smart-facets/smart-facet-heuristics';
|
package/package.json
CHANGED