@internetarchive/collection-browser 3.5.2-webdev-8178.0 → 3.5.3-alpha-webdev8156.0

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.
Files changed (45) hide show
  1. package/.editorconfig +29 -29
  2. package/.github/workflows/ci.yml +27 -27
  3. package/.github/workflows/gh-pages-main.yml +39 -39
  4. package/.github/workflows/npm-publish.yml +39 -39
  5. package/.github/workflows/pr-preview.yml +38 -38
  6. package/.husky/pre-commit +4 -0
  7. package/.prettierignore +1 -1
  8. package/LICENSE +661 -661
  9. package/README.md +83 -83
  10. package/dist/src/app-root.js +606 -606
  11. package/dist/src/app-root.js.map +1 -1
  12. package/dist/src/collection-browser.js +8 -8
  13. package/dist/src/collection-browser.js.map +1 -1
  14. package/dist/src/data-source/collection-browser-query-state.d.ts +2 -1
  15. package/dist/src/data-source/collection-browser-query-state.js.map +1 -1
  16. package/dist/src/tiles/grid/collection-tile.js +77 -77
  17. package/dist/src/tiles/grid/collection-tile.js.map +1 -1
  18. package/dist/src/tiles/grid/item-tile.js +137 -137
  19. package/dist/src/tiles/grid/item-tile.js.map +1 -1
  20. package/dist/src/tiles/hover/hover-pane-controller.d.ts +8 -0
  21. package/dist/src/tiles/hover/hover-pane-controller.js +41 -29
  22. package/dist/src/tiles/hover/hover-pane-controller.js.map +1 -1
  23. package/dist/src/tiles/models.js.map +1 -1
  24. package/dist/src/tiles/tile-dispatcher.js +215 -215
  25. package/dist/src/tiles/tile-dispatcher.js.map +1 -1
  26. package/dist/test/collection-browser.test.js +1 -1
  27. package/dist/test/collection-browser.test.js.map +1 -1
  28. package/eslint.config.mjs +53 -53
  29. package/index.html +24 -24
  30. package/local.archive.org.cert +86 -86
  31. package/local.archive.org.key +27 -27
  32. package/package.json +119 -121
  33. package/renovate.json +6 -6
  34. package/src/app-root.ts +1140 -1140
  35. package/src/collection-browser.ts +9 -7
  36. package/src/data-source/collection-browser-query-state.ts +2 -1
  37. package/src/tiles/grid/collection-tile.ts +163 -163
  38. package/src/tiles/grid/item-tile.ts +340 -340
  39. package/src/tiles/hover/hover-pane-controller.ts +627 -613
  40. package/src/tiles/models.ts +1 -1
  41. package/src/tiles/tile-dispatcher.ts +517 -517
  42. package/test/collection-browser.test.ts +1 -1
  43. package/tsconfig.json +25 -25
  44. package/web-dev-server.config.mjs +30 -30
  45. package/web-test-runner.config.mjs +41 -52
@@ -1 +1 @@
1
- export type SimpleLayoutType = 'none' | 'stats-only' | 'snippets-only';
1
+ export type SimpleLayoutType = 'none' | 'stats-only' | 'snippets-only';