@internetarchive/bookreader 5.0.0-5 → 5.0.0-50-a1
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/.eslintrc.js +17 -15
- package/.github/workflows/node.js.yml +77 -6
- package/.github/workflows/npm-publish.yml +6 -20
- package/.testcaferc.js +10 -0
- package/BookReader/BookReader.css +131 -339
- package/BookReader/BookReader.js +1 -1
- package/BookReader/BookReader.js.LICENSE.txt +24 -0
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +1493 -0
- package/BookReader/ia-bookreader-bundle.js.LICENSE.txt +17 -0
- package/BookReader/ia-bookreader-bundle.js.map +1 -0
- package/BookReader/icons/close-circle-dark.svg +1 -0
- package/BookReader/icons/magnify-minus.svg +1 -1
- package/BookReader/icons/magnify-plus.svg +1 -1
- package/BookReader/icons/pause.svg +1 -1
- package/BookReader/icons/playback-speed.svg +1 -1
- package/BookReader/icons/read-aloud.svg +1 -1
- package/BookReader/icons/voice.svg +1 -0
- package/BookReader/images/BRicons.svg +2 -2
- package/BookReader/images/books_graphic.svg +1 -1
- package/BookReader/images/icon_book.svg +1 -1
- package/BookReader/images/icon_gear.svg +1 -1
- package/BookReader/images/icon_info.svg +1 -1
- package/BookReader/images/icon_playback-rate.svg +1 -1
- package/BookReader/images/icon_search_button.svg +1 -1
- package/BookReader/images/icon_share.svg +1 -1
- package/BookReader/images/icon_speaker.svg +1 -1
- package/BookReader/images/icon_speaker_open.svg +1 -1
- package/BookReader/images/marker_chap-off.svg +1 -1
- package/BookReader/images/marker_chap-on.svg +1 -1
- package/BookReader/images/marker_srch-on.svg +1 -1
- package/BookReader/jquery-3.js +2 -0
- package/BookReader/jquery-3.js.LICENSE.txt +24 -0
- package/BookReader/plugins/plugin.archive_analytics.js +1 -1
- package/BookReader/plugins/plugin.archive_analytics.js.map +1 -1
- package/BookReader/plugins/plugin.autoplay.js +1 -1
- package/BookReader/plugins/plugin.autoplay.js.map +1 -1
- package/BookReader/plugins/plugin.chapters.js +1 -1
- package/BookReader/plugins/plugin.chapters.js.map +1 -1
- package/BookReader/plugins/plugin.iframe.js +1 -1
- package/BookReader/plugins/plugin.iframe.js.map +1 -1
- package/BookReader/plugins/plugin.mobile_nav.js +1 -1
- package/BookReader/plugins/plugin.mobile_nav.js.map +1 -1
- package/BookReader/plugins/plugin.resume.js +1 -1
- package/BookReader/plugins/plugin.resume.js.map +1 -1
- package/BookReader/plugins/plugin.search.js +1 -1
- package/BookReader/plugins/plugin.search.js.map +1 -1
- package/BookReader/plugins/plugin.text_selection.js +1 -1
- package/BookReader/plugins/plugin.text_selection.js.map +1 -1
- package/BookReader/plugins/plugin.tts.js +1 -1
- package/BookReader/plugins/plugin.tts.js.map +1 -1
- package/BookReader/plugins/plugin.url.js +1 -1
- package/BookReader/plugins/plugin.url.js.map +1 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js +1 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js.map +1 -1
- package/BookReader/webcomponents-bundle.js +3 -0
- package/BookReader/webcomponents-bundle.js.LICENSE.txt +9 -0
- package/BookReader/webcomponents-bundle.js.map +1 -0
- package/BookReaderDemo/BookReaderDemo.css +14 -1
- package/BookReaderDemo/IADemoBr.js +148 -0
- package/BookReaderDemo/demo-advanced.html +2 -2
- package/BookReaderDemo/demo-autoplay.html +2 -1
- package/BookReaderDemo/demo-embed-iframe-src.html +2 -1
- package/BookReaderDemo/demo-fullscreen-mobile.html +2 -1
- package/BookReaderDemo/demo-fullscreen.html +2 -1
- package/BookReaderDemo/demo-iiif.html +2 -1
- package/BookReaderDemo/demo-internetarchive.html +84 -17
- package/BookReaderDemo/demo-multiple.html +2 -1
- package/BookReaderDemo/demo-preview-pages.html +2 -1
- package/BookReaderDemo/demo-simple.html +2 -1
- package/BookReaderDemo/demo-vendor-fullscreen.html +2 -1
- package/BookReaderDemo/ia-multiple-volumes-manifest.js +170 -0
- package/BookReaderDemo/immersion-1up.html +2 -1
- package/BookReaderDemo/immersion-mode.html +2 -1
- package/BookReaderDemo/toggle_controls.html +2 -1
- package/BookReaderDemo/view_mode.html +2 -1
- package/BookReaderDemo/viewmode-cycle.html +2 -3
- package/CHANGELOG.md +202 -0
- package/README.md +14 -1
- package/babel.config.js +18 -0
- package/codecov.yml +6 -0
- package/index.html +3 -0
- package/jsconfig.json +19 -0
- package/package.json +66 -56
- package/renovate.json +52 -0
- package/scripts/preversion.js +4 -1
- package/src/BookNavigator/assets/bookmark-colors.js +1 -1
- package/src/BookNavigator/assets/button-base.js +9 -2
- package/src/BookNavigator/assets/ia-logo.js +17 -0
- package/src/BookNavigator/assets/icon_checkmark.js +1 -1
- package/src/BookNavigator/assets/icon_close.js +1 -1
- package/src/BookNavigator/assets/icon_sort_asc.js +5 -0
- package/src/BookNavigator/assets/icon_sort_desc.js +5 -0
- package/src/BookNavigator/assets/icon_sort_neutral.js +5 -0
- package/src/BookNavigator/assets/icon_volumes.js +11 -0
- package/src/BookNavigator/book-navigator.js +583 -0
- package/src/BookNavigator/bookmarks/bookmark-button.js +3 -2
- package/src/BookNavigator/bookmarks/bookmark-edit.js +3 -4
- package/src/BookNavigator/bookmarks/bookmarks-list.js +2 -3
- package/src/BookNavigator/bookmarks/bookmarks-loginCTA.js +3 -8
- package/src/BookNavigator/bookmarks/bookmarks-provider.js +21 -8
- package/src/BookNavigator/bookmarks/ia-bookmarks.js +102 -66
- package/src/BookNavigator/delete-modal-actions.js +1 -1
- package/src/BookNavigator/downloads/downloads-provider.js +36 -21
- package/src/BookNavigator/downloads/downloads.js +41 -25
- package/src/BookNavigator/search/a-search-result.js +18 -13
- package/src/BookNavigator/search/search-provider.js +80 -28
- package/src/BookNavigator/search/search-results.js +10 -18
- package/src/BookNavigator/sharing.js +27 -0
- package/src/BookNavigator/visual-adjustments/visual-adjustments-provider.js +11 -10
- package/src/BookNavigator/visual-adjustments/visual-adjustments.js +3 -3
- package/src/BookNavigator/volumes/volumes-provider.js +114 -0
- package/src/BookNavigator/volumes/volumes.js +188 -0
- package/src/BookReader/BookModel.js +0 -29
- package/src/BookReader/DebugConsole.js +3 -3
- package/src/BookReader/DragScrollable.js +233 -0
- package/src/BookReader/Mode1Up.js +51 -351
- package/src/BookReader/Mode1UpLit.js +441 -0
- package/src/BookReader/Mode2Up.js +120 -105
- package/src/BookReader/ModeSmoothZoom.js +179 -0
- package/src/BookReader/ModeThumb.js +17 -11
- package/src/BookReader/Navbar/Navbar.js +10 -36
- package/src/BookReader/PageContainer.js +69 -6
- package/src/BookReader/ReduceSet.js +1 -1
- package/src/BookReader/Toolbar/Toolbar.js +10 -37
- package/src/BookReader/options.js +10 -0
- package/src/BookReader/utils/HTMLDimensionsCacher.js +44 -0
- package/src/BookReader/utils/ScrollClassAdder.js +31 -0
- package/src/BookReader/utils.js +92 -13
- package/src/BookReader.js +431 -620
- package/src/assets/icons/close-circle-dark.svg +1 -0
- package/src/assets/icons/magnify-minus.svg +3 -7
- package/src/assets/icons/magnify-plus.svg +3 -7
- package/src/assets/icons/voice.svg +1 -0
- package/src/css/BookReader.scss +0 -12
- package/src/css/_BRComponent.scss +1 -1
- package/src/css/_BRmain.scss +19 -24
- package/src/css/_BRnav.scss +4 -26
- package/src/css/_BRpages.scss +35 -0
- package/src/css/_BRsearch.scss +25 -216
- package/src/css/_TextSelection.scss +14 -17
- package/src/css/_colorbox.scss +2 -2
- package/src/css/_controls.scss +17 -5
- package/src/css/_icons.scss +6 -0
- package/src/ia-bookreader/ia-bookreader.js +224 -0
- package/src/plugins/plugin.autoplay.js +4 -4
- package/src/plugins/plugin.chapters.js +28 -35
- package/src/plugins/plugin.mobile_nav.js +11 -10
- package/src/plugins/plugin.resume.js +3 -3
- package/src/plugins/plugin.text_selection.js +26 -39
- package/src/plugins/plugin.vendor-fullscreen.js +4 -4
- package/src/plugins/search/plugin.search.js +174 -116
- package/src/plugins/search/view.js +63 -179
- package/src/plugins/tts/AbstractTTSEngine.js +46 -37
- package/src/plugins/tts/FestivalTTSEngine.js +13 -14
- package/src/plugins/tts/PageChunk.js +15 -21
- package/src/plugins/tts/PageChunkIterator.js +8 -12
- package/src/plugins/tts/WebTTSEngine.js +66 -69
- package/src/plugins/tts/plugin.tts.js +92 -109
- package/src/plugins/tts/utils.js +0 -9
- package/src/plugins/url/UrlPlugin.js +184 -0
- package/src/plugins/{plugin.url.js → url/plugin.url.js} +28 -6
- package/src/util/manifestGenerator.js +0 -0
- package/tests/e2e/README.md +37 -0
- package/tests/e2e/autoplay.test.js +2 -2
- package/tests/e2e/base.test.js +7 -7
- package/tests/e2e/helpers/base.js +9 -3
- package/tests/e2e/helpers/debug.js +1 -1
- package/tests/e2e/helpers/desktopSearch.js +14 -13
- package/tests/e2e/helpers/mobileSearch.js +3 -3
- package/tests/e2e/helpers/params.js +17 -0
- package/tests/e2e/models/Navigation.js +13 -4
- package/tests/e2e/rightToLeft.test.js +4 -5
- package/tests/e2e/viewmode.test.js +38 -33
- package/tests/jest/BookNavigator/book-navigator.test.js +634 -0
- package/tests/jest/BookNavigator/bookmarks/bookmark-button.test.js +43 -0
- package/tests/{karma → jest}/BookNavigator/bookmarks/bookmark-edit.test.js +25 -26
- package/tests/{karma → jest}/BookNavigator/bookmarks/bookmarks-list.test.js +41 -42
- package/tests/jest/BookNavigator/bookmarks/ia-bookmarks.test.js +45 -0
- package/tests/jest/BookNavigator/downloads/downloads-provider.test.js +67 -0
- package/tests/jest/BookNavigator/downloads/downloads.test.js +53 -0
- package/tests/jest/BookNavigator/search/search-provider.test.js +167 -0
- package/tests/{karma/BookNavigator → jest/BookNavigator/search}/search-results.test.js +102 -58
- package/tests/jest/BookNavigator/sharing/sharing-provider.test.js +49 -0
- package/tests/jest/BookNavigator/visual-adjustments.test.js +200 -0
- package/tests/jest/BookNavigator/volumes/volumes-provider.test.js +184 -0
- package/tests/jest/BookNavigator/volumes/volumes.test.js +97 -0
- package/tests/{BookReader → jest/BookReader}/BookModel.test.js +34 -14
- package/tests/jest/BookReader/BookReaderPublicFunctions.test.js +176 -0
- package/tests/{BookReader → jest/BookReader}/DebugConsole.test.js +1 -1
- package/tests/{BookReader → jest/BookReader}/ImageCache.test.js +4 -4
- package/tests/jest/BookReader/Mode1UpLit.test.js +92 -0
- package/tests/{BookReader → jest/BookReader}/Mode2Up.test.js +36 -15
- package/tests/jest/BookReader/ModeSmoothZoom.test.js +149 -0
- package/tests/jest/BookReader/ModeThumb.test.js +71 -0
- package/tests/{BookReader → jest/BookReader}/Navbar/Navbar.test.js +7 -7
- package/tests/{BookReader → jest/BookReader}/PageContainer.test.js +88 -6
- package/tests/{BookReader → jest/BookReader}/ReduceSet.test.js +1 -1
- package/tests/{BookReader → jest/BookReader}/Toolbar/Toolbar.test.js +2 -2
- package/tests/jest/BookReader/utils/HTMLDimensionsCacher.test.js +59 -0
- package/tests/jest/BookReader/utils/ScrollClassAdder.test.js +49 -0
- package/tests/{BookReader → jest/BookReader}/utils/classes.test.js +1 -1
- package/tests/jest/BookReader/utils.test.js +186 -0
- package/tests/jest/BookReader.keyboard.test.js +190 -0
- package/tests/{BookReader.options.test.js → jest/BookReader.options.test.js} +9 -1
- package/tests/{BookReader.test.js → jest/BookReader.test.js} +18 -37
- package/tests/{plugins → jest/plugins}/plugin.archive_analytics.test.js +2 -2
- package/tests/{plugins → jest/plugins}/plugin.autoplay.test.js +4 -4
- package/tests/{plugins → jest/plugins}/plugin.chapters.test.js +10 -11
- package/tests/{plugins → jest/plugins}/plugin.iframe.test.js +2 -2
- package/tests/{plugins → jest/plugins}/plugin.mobile_nav.test.js +5 -5
- package/tests/{plugins → jest/plugins}/plugin.resume.test.js +3 -3
- package/tests/{plugins → jest/plugins}/plugin.text_selection.test.js +39 -47
- package/tests/{plugins → jest/plugins}/plugin.vendor-fullscreen.test.js +2 -2
- package/tests/{plugins → jest/plugins}/search/plugin.search.test.js +63 -47
- package/tests/{plugins → jest/plugins}/search/plugin.search.view.test.js +35 -6
- package/tests/{plugins → jest/plugins}/tts/AbstractTTSEngine.test.js +9 -9
- package/tests/{plugins → jest/plugins}/tts/FestivalTTSEngine.test.js +4 -4
- package/tests/{plugins → jest/plugins}/tts/PageChunk.test.js +1 -1
- package/tests/{plugins → jest/plugins}/tts/PageChunkIterator.test.js +3 -3
- package/tests/{plugins → jest/plugins}/tts/WebTTSEngine.test.js +1 -1
- package/tests/{plugins → jest/plugins}/tts/utils.test.js +3 -28
- package/tests/jest/plugins/url/UrlPlugin.test.js +190 -0
- package/tests/{plugins → jest/plugins/url}/plugin.url.test.js +33 -14
- package/tests/{util → jest/util}/browserSniffing.test.js +1 -1
- package/tests/{util → jest/util}/docCookies.test.js +1 -1
- package/tests/{util → jest/util}/strings.test.js +1 -1
- package/tests/{utils.js → jest/utils.js} +38 -0
- package/webpack.config.js +11 -5
- package/.babelrc +0 -12
- package/.dependabot/config.yml +0 -6
- package/.testcaferc.json +0 -5
- package/BookReader/bookreader-component-bundle.js +0 -1450
- package/BookReader/bookreader-component-bundle.js.LICENSE.txt +0 -38
- package/BookReader/bookreader-component-bundle.js.map +0 -1
- package/BookReader/jquery-1.10.1.js +0 -2
- package/BookReader/jquery-1.10.1.js.LICENSE.txt +0 -24
- package/BookReader/plugins/plugin.menu_toggle.js +0 -2
- package/BookReader/plugins/plugin.menu_toggle.js.map +0 -1
- package/BookReaderDemo/bookreader-template-bundle.js +0 -7178
- package/BookReaderDemo/demo-plugin-menu-toggle.html +0 -34
- package/karma.conf.js +0 -23
- package/src/BookNavigator/BookModel.js +0 -14
- package/src/BookNavigator/BookNavigator.js +0 -438
- package/src/BookNavigator/assets/book-loader.js +0 -27
- package/src/BookNavigator/br-fullscreen-mgr.js +0 -83
- package/src/BookReaderComponent/BookReaderComponent.js +0 -112
- package/src/ItemNavigator/ItemNavigator.js +0 -372
- package/src/ItemNavigator/providers/sharing.js +0 -29
- package/src/Layers/sharing/sharing-provider.js +0 -22
- package/src/dragscrollable-br.js +0 -261
- package/src/plugins/menu_toggle/plugin.menu_toggle.js +0 -324
- package/src/plugins/plugin.bookmarks.js +0 -50
- package/tests/BookReader/BookReaderPublicFunctions.test.js +0 -171
- package/tests/BookReader/Mode1Up.test.js +0 -164
- package/tests/BookReader/utils.test.js +0 -109
- package/tests/e2e/ia-production/ia-prod-base.js +0 -17
- package/tests/karma/BookNavigator/book-navigator.test.js +0 -132
- package/tests/karma/BookNavigator/visual-adjustments.test.js +0 -201
- package/tests/plugins/menu_toggle/plugin.menu_toggle.test.js +0 -68
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,205 @@
|
|
1
|
+
# 5.0.0-49
|
2
|
+
- Dev: remove class shims, v5 deprecations @cdrini
|
3
|
+
- Dev: update dependency (@open-wc/testing-helpers) @renovate
|
4
|
+
- Dev: e2e - remove ia test + export DesktopNav for external usage @iisa
|
5
|
+
|
6
|
+
# 5.0.0-48
|
7
|
+
- Fix: move analytics to sample bucket @iisa
|
8
|
+
- Dev: update dependencies (concurrently, jest) @renovate
|
9
|
+
|
10
|
+
# 5.0.0-47
|
11
|
+
- Fix: XSS vulnerability in search results @latonv
|
12
|
+
- Dev: Update jQuery to v3 **BREAKING** @cdrini
|
13
|
+
- If you were importing `BookReader/jquery-1.10.1.js` you will need to change it to `BookReader/jquery-3.js`
|
14
|
+
- Also ensure if other code was using this jquery that it works with jQuery 3!
|
15
|
+
- Dev: Update testing dependencies (jest, testcafe) @renovate
|
16
|
+
|
17
|
+
# 5.0.0-46
|
18
|
+
Fix: Leaf positioning during RTL fliip animation @latonv
|
19
|
+
Dev: dependency updates @renovate
|
20
|
+
Fix: Disable contextmenu for restricted books @iisa
|
21
|
+
|
22
|
+
# 5.0.0-45
|
23
|
+
# 5.0.0-44
|
24
|
+
Fix: dynamic `q=<term>` url parameter @iisa
|
25
|
+
Dev: dependency updates @renovate
|
26
|
+
|
27
|
+
# 5.0.0-43
|
28
|
+
Fix: search results panel display asserted page numbers @cdrini
|
29
|
+
Dev: dependency updates @renovate
|
30
|
+
Dev: node-fetch update @cdrini
|
31
|
+
|
32
|
+
# 5.0.0-42
|
33
|
+
Dev: update testing dependencies @renovate
|
34
|
+
Dev: update `<ia-item-navigator>` @iisa
|
35
|
+
|
36
|
+
# 5.0.0-40
|
37
|
+
Fix: Better search highlights @cdrini
|
38
|
+
Dev: update lit 2 components @iisa
|
39
|
+
Dev: update lit @renovate
|
40
|
+
|
41
|
+
# 5.0.0-39
|
42
|
+
Fix: Performance improvements to scroll/zooming when text layer is larger @cdrini
|
43
|
+
Fix: Update zoom in/out icons to match iconochive glyphs @pezvi
|
44
|
+
Dev: update dependencies @renovate
|
45
|
+
|
46
|
+
# 5.0.0-38
|
47
|
+
Dev: Add Renovate Bot @cdrini
|
48
|
+
Dev: Update node-fetch @cdrini
|
49
|
+
Fix: Search request promise err & fix tests @cdrini
|
50
|
+
Dev: Split node workflow into different jobs @cdrini
|
51
|
+
Dev: Give cache steps better names in GHA @cdrini
|
52
|
+
Dev: Update concurrently + Small speedup to build & test @cdrini
|
53
|
+
Dev: Renovate - Auto-update dev dependencies for minor/patch @cdrini
|
54
|
+
Fix: Better MS Edge voice selection @cdrini
|
55
|
+
Dev: Allow small drops in codecov coverage (< 0.5%) @cdrini
|
56
|
+
Dev: Renovate - add `^@internetarchive/icon-` @cdrini
|
57
|
+
|
58
|
+
# 5.0.0-37
|
59
|
+
Fix: Update all `.then()` to async/await @sancodes
|
60
|
+
Fix: Upgrade to Lit 2 @Aadilhassan
|
61
|
+
Dev: Update to Node v16.x @duggiefresh
|
62
|
+
Dev: Remove unused demo bundle @cdrini
|
63
|
+
Dev: Fix README broken link for plugin directory @duggiefresh
|
64
|
+
Dev: Update sharing options menu to lit2 @iisa
|
65
|
+
Dev: Remove package publishing from GHA @cdrini
|
66
|
+
|
67
|
+
# 5.0.0-36
|
68
|
+
Fix: Readaloud scrolls along with dext @cdrini
|
69
|
+
Dev: ES6 var to let/const updates @sancodes
|
70
|
+
Dev: ES6 async/await updates @sancodes
|
71
|
+
Dev: Re-enable testcafe tests in GH action @iisa
|
72
|
+
Fix: Search results bar clears and closes properly @iisa
|
73
|
+
|
74
|
+
# 5.0.0-35
|
75
|
+
Fix: global style leak specify colorbox styles @iisa
|
76
|
+
Fix: br menu reinits with shared ro load @iisa
|
77
|
+
Fix: url plugin does not rewrite with multiple slashes @iisa
|
78
|
+
|
79
|
+
# 5.0.0-34
|
80
|
+
Dev: update test dependencies @cdrini
|
81
|
+
Fix: Update hyphen stitching regex to include dangling "¬" @cdrini
|
82
|
+
Fix: pop open multiple files menu at proper width @iisa
|
83
|
+
|
84
|
+
# 5.0.0-33
|
85
|
+
Fix: restricted books get cover image @iisa
|
86
|
+
|
87
|
+
# 5.0.0-32
|
88
|
+
Fix: fetch bookmarks from service when logged in @iisa
|
89
|
+
Fix: adjust css to help shadydom render properly @iisa
|
90
|
+
# 5.0.0-31
|
91
|
+
Fix: modal loads into dom from `<ia-bookreader>` @iisa
|
92
|
+
|
93
|
+
# 5.0.0-30
|
94
|
+
- `<ia-bookreader>` is top-most web component @iisa
|
95
|
+
|
96
|
+
# 5.0.0-29
|
97
|
+
- import ia-item-navigator for menu management @iisa
|
98
|
+
- url plugin: suppress default state on load @dualcnhq
|
99
|
+
|
100
|
+
# 5.0.0-28
|
101
|
+
Dev: Refactor URLPlugin + sync volumes sorting state to URL @dualcnhq @cdrini
|
102
|
+
|
103
|
+
# 5.0.0-27
|
104
|
+
Dev: eslint fix for $.browser @homewardgamer
|
105
|
+
Fix: cache search inside requests @iisa
|
106
|
+
# 5.0.0-26
|
107
|
+
Fix: read aloud play/pause button @nsharma123
|
108
|
+
Dev: strict keyboard shortcuts @mc2
|
109
|
+
Dev: update IA demo page @iisa
|
110
|
+
|
111
|
+
# 5.0.0-24
|
112
|
+
Fix: book-nav side panel zoom out @mc2
|
113
|
+
Dev: refactor zoom code @mc2
|
114
|
+
|
115
|
+
# 5.0.0-23
|
116
|
+
Fix: Darken scrollbars in Safari @pezvi
|
117
|
+
Fix: Bookmarks service calls when reader is logged in @mc2
|
118
|
+
Dev: Move jest tests into separate directory @cdrini
|
119
|
+
|
120
|
+
# 5.0.0-22
|
121
|
+
- Dev: remove deprecated embed nav view, use standard default @iisa
|
122
|
+
|
123
|
+
# 5.0.0-21
|
124
|
+
- Dev: Toggle view=theater in fullscreen @mc2
|
125
|
+
|
126
|
+
# 5.0.0-20
|
127
|
+
- Feature: Add voice selection dropdown to ReadAloud! @mekarpeles
|
128
|
+
- Dev: Make jest support root-level imports with "@" @cdrini
|
129
|
+
- Dev: Make it easy to run e2e tests on archive.org/browserstack @cdrini
|
130
|
+
|
131
|
+
# 5.0.0-19
|
132
|
+
- Dev: Refactor dragscrollable from a jquery plugin to a JS class @cdrini
|
133
|
+
- Dev: Fix jquery eslint errors @cdrini
|
134
|
+
- Dev: Replace deprecated babel-eslint with successor @cdrini
|
135
|
+
- Fix: BR not working on iOS 9 / iOS 10! @cdrini, @iisa
|
136
|
+
- Added webcomponents, ResizeObserver polyfill
|
137
|
+
- ES5-ify lit node_modules
|
138
|
+
|
139
|
+
# 5.0.0-18
|
140
|
+
- Dev: Update a number of dependencies @cdrini
|
141
|
+
- Dev: Added eslint-plugin-no-jquery @soham4abc
|
142
|
+
- Feature: Add continuous pinch zooming for touch screens and trackpads! @cdrini
|
143
|
+
- This is a _big_ change to the codebase. It involved rewriting 1 up mode in LitElement. This means that BookReader now need webcomponents to function.
|
144
|
+
- Breaking changes (unlikely to be used by anyone):
|
145
|
+
- Most Mode1Up Bookreader global functions removed (unlikely to be used): `drawLeafsOnePage`, `onePageGetAutofitWidth`, `onePageGetAutofitHeight`, `onePageGetPageTop`, `onePageCalculateReductionFactors`, `centerX1up`, `centerY1up`
|
146
|
+
- Some Mode2Up cleanups: Removed `setClickHandler2UP`, `setMouseHandlers2UP`
|
147
|
+
- [Web components](https://caniuse.com/custom-elementsv1) now must be supported
|
148
|
+
- Reduction factors options no longer applies to 1up
|
149
|
+
|
150
|
+
# 5.0.0-17
|
151
|
+
- Fix: focus in a textarea disables keyboard shortcuts @cdrini
|
152
|
+
|
153
|
+
# 5.0.0-16
|
154
|
+
- Dev: remove unused menu toggle plugin @iisa
|
155
|
+
- Fix: Book nav loader safari update @iisa
|
156
|
+
|
157
|
+
# 5.0.0-15
|
158
|
+
- Fix: Typing -/+ in search box no longer zooms @cdrini
|
159
|
+
- Dev: Add script for updating dev deps @cdrini
|
160
|
+
- Refactor/Fix: Convert search/TTS highlights to use SVG layer @cdrini
|
161
|
+
- Fix TTS highlights not positioned correctly in Mode1Up
|
162
|
+
- Breaking changes (unlikely these are used by anyone):
|
163
|
+
- Remove public method `BookReader.prototype.keyboardNavigationIsDisabled`
|
164
|
+
- Remove public method `BookReader.util.sleep`
|
165
|
+
- Remove public method `BookReader.prototype.updateSearchHilites1UP`
|
166
|
+
- Remove public method `BookReader.prototype.updateSearchHilites2UP`
|
167
|
+
- Remove public attribute `BookReader.prototype.ttsHilites`
|
168
|
+
|
169
|
+
# 5.0.0-14
|
170
|
+
- Fix: Url search param `q=` updates dynamically @nsharma123
|
171
|
+
- Fix: Downloads menu text updates @dualcnhq
|
172
|
+
- Fix: Volumes updates - icons, labelling, open menu onload @iisa
|
173
|
+
|
174
|
+
# 5.0.0-13
|
175
|
+
- Enhancement: Add neutral state for sorting volumes @dualcnhq
|
176
|
+
- Enhancement: Update subfiles/volumes title sorting logic by filename -> title_asc -> title_desc order then back to filename @dualcnhq
|
177
|
+
- Fix: Volume item index count display @dualcnhq
|
178
|
+
|
179
|
+
|
180
|
+
# 5.0.0-12
|
181
|
+
- Fix: new side panel: sortable multiple volumes @dualcnhq @iisa
|
182
|
+
- Fix: sharing side panel can share subfile/volume @iisa
|
183
|
+
|
184
|
+
# 5.0.0-11
|
185
|
+
- Fix: standardize button style for download panel @nsharma123
|
186
|
+
# 5.0.0-10
|
187
|
+
- Fix: Make 1up default to full width (up to real world size) @cdrini
|
188
|
+
- Fix: Remove "page" from toolbar @cdrini
|
189
|
+
- Dev: Update menu slider @iisa
|
190
|
+
- Dev: Add semi-colons eslint rule @iisa
|
191
|
+
|
192
|
+
# 5.0.0-9
|
193
|
+
- Fix: search-inside results check for page's index via `leafNum` @nsharma123
|
194
|
+
# 5.0.0-8
|
195
|
+
- Fix: cancel search fix naming var @iisa
|
196
|
+
|
197
|
+
# 5.0.0-7
|
198
|
+
- Fix: cancel search @iisa
|
199
|
+
- Dev: remove dead css @cdrini
|
200
|
+
- Dev: GHA node_modules caching @cdrini
|
201
|
+
# 5.0.0-6
|
202
|
+
- Fix: Fullscreen toggle sets/unsets animating flag @iisa
|
1
203
|
# 5.0.0-5
|
2
204
|
- Fix: Book Nav: resize only when bookreader is not animating @iisa
|
3
205
|
- Fix: Web components register themselves at EOF @iisa
|
package/README.md
CHANGED
@@ -123,7 +123,7 @@ A peek in how to use/extend core functionality:
|
|
123
123
|
- plugin.url.js - automatically updates the browser url
|
124
124
|
- plugin.resume.js - uses cookies to remember the current page
|
125
125
|
- plugin.vendor-fullscreen.js - replaces fullscreen mode with vendor native fullscreen
|
126
|
-
- see plugin directory for current plugin files
|
126
|
+
- see [plugin directory for current plugin files](https://github.com/internetarchive/bookreader/tree/master/src/plugins)
|
127
127
|
|
128
128
|
### Embedding BookReader in an iFrame
|
129
129
|
|
@@ -149,6 +149,19 @@ The source JavaScript is written in ES6 (located in the `src/js` directory) and
|
|
149
149
|
|
150
150
|
Until the next major version bump, we have to store the build files inside the repo to maintain backwards compatibility. Please _DO NOT_ include these files in your PR. Anything in the `BookReader/` directory should not be committed.
|
151
151
|
|
152
|
+
### Developing icons
|
153
|
+
To see local icon package changes in bookreader, you'll need to install core-js into the icon package and link into bookreader.
|
154
|
+
|
155
|
+
Let's use `icon-share` as an example.
|
156
|
+
1. Confirm your icon package is working properly in the iaux-icons demo
|
157
|
+
2. Navigate to your icon package (`iaux-icons/packages/icon-share`) and run command: `npm install core-js`
|
158
|
+
- You shouldn't need to commit any of these core-js changes
|
159
|
+
3. From within your icon package directory run command: `npm link`
|
160
|
+
- You can use the command `npm ls -g` to confirm your local package now appears in the registry
|
161
|
+
4. Navigate to `/bookreader` and run command: `npm link @internetarchive/icon-share`
|
162
|
+
- You can use the command `npm ls |grep icon-share` to confirm icon-share is now a link to your local directory
|
163
|
+
5. You may now start a local server to see your changes by running command: `npm run serve-dev`
|
164
|
+
|
152
165
|
## Releases
|
153
166
|
|
154
167
|
To version bump the repo and prepare a release, run `npm version major|minor|patch` (following [semver](https://semver.org/)), then (something like) `git push origin HEAD --tags`. It'll automatically update the version number where it appears, build the files, and ask you to update the CHANGELOG.
|
package/babel.config.js
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
module.exports = {
|
2
|
+
presets: [
|
3
|
+
[
|
4
|
+
"@babel/preset-env",
|
5
|
+
process.env.NODE_ENV == 'test' ? { targets: {esmodules: true} } : {
|
6
|
+
targets: "> 2%, ie 11, edge 14, samsung > 9, OperaMini all, UCAndroid > 12, Safari >= 9",
|
7
|
+
useBuiltIns: "usage",
|
8
|
+
corejs: 3
|
9
|
+
}
|
10
|
+
]
|
11
|
+
],
|
12
|
+
plugins: [
|
13
|
+
["@babel/plugin-proposal-decorators", {decoratorsBeforeExport: true}],
|
14
|
+
["@babel/plugin-proposal-class-properties", {loose: true}],
|
15
|
+
["@babel/plugin-proposal-private-property-in-object", { loose: true }],
|
16
|
+
["@babel/plugin-proposal-private-methods", { loose: true }],
|
17
|
+
]
|
18
|
+
};
|
package/codecov.yml
CHANGED
package/index.html
CHANGED
@@ -18,12 +18,15 @@
|
|
18
18
|
<li><a href="BookReaderDemo/demo-preview-pages.html">Preview Pages</a></li>
|
19
19
|
<li><a href="BookReaderDemo/demo-embed.html">Embed</a></li>
|
20
20
|
<li><a href="BookReaderDemo/demo-multiple.html">Multiple on same page</a></li>
|
21
|
+
<!-- plugin.search.js -->
|
21
22
|
<li><a href="BookReaderDemo/demo-internetarchive.html?ocaid=theworksofplato01platiala">From Internet Archive</a></li>
|
23
|
+
<!-- plugin.search.js -->
|
22
24
|
<li><a href="BookReaderDemo/demo-internetarchive.html?ocaid=adventuresofoli00dick">From Internet Archive - a book with CHAPTERS</a></li>
|
23
25
|
<li><a href="BookReaderDemo/demo-iiif.html">IIIF</a></li>
|
24
26
|
<li><a href="BookReaderDemo/demo-autoplay.html">Autoplay (kiosk mode)</a></li>
|
25
27
|
<li><a href="BookReaderDemo/demo-plugin-menu-toggle.html">Plugin: Full screen menu toggle</a></li>
|
26
28
|
<li><a href="BookReaderDemo/immersion-mode.html">Start in immersion (fullscreen) mode</a></li>
|
29
|
+
<!-- plugin.search.js -->
|
27
30
|
<li><a href="BookReaderDemo/immersion-1up.html">Start in immersion mode on 1up default item</a></li>
|
28
31
|
<li><a href="BookReaderDemo/viewmode-cycle.html">Replace view mode buttons with view mode cycler</a></li>
|
29
32
|
</ul>
|
package/jsconfig.json
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"target": "es6",
|
4
|
+
"moduleResolution": "node",
|
5
|
+
"experimentalDecorators": true,
|
6
|
+
"baseUrl": ".",
|
7
|
+
"paths": {
|
8
|
+
"@/*": ["./*"]
|
9
|
+
}
|
10
|
+
},
|
11
|
+
"include": [
|
12
|
+
"src/**/*.js",
|
13
|
+
"tests/**/*.js",
|
14
|
+
],
|
15
|
+
"exclude": [
|
16
|
+
"node_modules",
|
17
|
+
"BookReader"
|
18
|
+
]
|
19
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@internetarchive/bookreader",
|
3
|
-
"version": "5.0.0-
|
3
|
+
"version": "5.0.0-50-a1",
|
4
4
|
"description": "The Internet Archive BookReader.",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -9,7 +9,7 @@
|
|
9
9
|
"publishConfig": {
|
10
10
|
"access": "public"
|
11
11
|
},
|
12
|
-
"module": "src/
|
12
|
+
"module": "src/ia-bookreader/ia-bookreader.js",
|
13
13
|
"keywords": [
|
14
14
|
"online",
|
15
15
|
"bookreader",
|
@@ -25,73 +25,82 @@
|
|
25
25
|
"homepage": "https://github.com/internetarchive/bookreader#readme",
|
26
26
|
"private": false,
|
27
27
|
"dependencies": {
|
28
|
-
"@internetarchive/ia-activity-indicator": "^0.0.
|
29
|
-
"@internetarchive/ia-
|
30
|
-
"@internetarchive/ia-
|
31
|
-
"@internetarchive/
|
32
|
-
"@internetarchive/icon-
|
33
|
-
"@internetarchive/icon-
|
34
|
-
"@internetarchive/icon-
|
35
|
-
"@internetarchive/icon-magnify-
|
36
|
-
"@internetarchive/icon-
|
37
|
-
"@internetarchive/icon-
|
38
|
-
"@internetarchive/
|
39
|
-
"
|
40
|
-
"
|
28
|
+
"@internetarchive/ia-activity-indicator": "^0.0.3",
|
29
|
+
"@internetarchive/ia-item-navigator": "^1.0.1",
|
30
|
+
"@internetarchive/ia-sharing-options": "^1.0.1",
|
31
|
+
"@internetarchive/icon-bookmark": "^1.3.2",
|
32
|
+
"@internetarchive/icon-dl": "^1.3.3",
|
33
|
+
"@internetarchive/icon-edit-pencil": "1.3.2",
|
34
|
+
"@internetarchive/icon-magnify-minus": "^1.3.3",
|
35
|
+
"@internetarchive/icon-magnify-plus": "^1.3.3",
|
36
|
+
"@internetarchive/icon-search": "^1.3.3",
|
37
|
+
"@internetarchive/icon-share": "^1.3.3",
|
38
|
+
"@internetarchive/icon-visual-adjustment": "^1.3.2",
|
39
|
+
"@internetarchive/modal-manager": "^0.2.3",
|
40
|
+
"@internetarchive/shared-resize-observer": "^0.2.0",
|
41
|
+
"lit": "^2.2.2"
|
41
42
|
},
|
42
43
|
"devDependencies": {
|
43
|
-
"@babel/core": "7.
|
44
|
-
"@babel/
|
45
|
-
"@
|
46
|
-
"@
|
47
|
-
"@
|
48
|
-
"
|
49
|
-
"
|
50
|
-
"
|
51
|
-
"
|
52
|
-
"
|
53
|
-
"
|
54
|
-
"
|
55
|
-
"
|
56
|
-
"
|
57
|
-
"
|
58
|
-
"
|
44
|
+
"@babel/core": "7.17.9",
|
45
|
+
"@babel/eslint-parser": "7.17.0",
|
46
|
+
"@babel/plugin-proposal-class-properties": "7.16.7",
|
47
|
+
"@babel/plugin-proposal-decorators": "7.17.9",
|
48
|
+
"@babel/preset-env": "7.16.11",
|
49
|
+
"@open-wc/testing-helpers": "^2.1.4",
|
50
|
+
"@types/jest": "^29.1.1",
|
51
|
+
"@webcomponents/webcomponentsjs": "^2.6.0",
|
52
|
+
"babel-loader": "8.2.5",
|
53
|
+
"codecov": "^3.8.3",
|
54
|
+
"concurrently": "7.4.0",
|
55
|
+
"core-js": "3.22.3",
|
56
|
+
"cpx2": "4.2.0",
|
57
|
+
"eslint": "^7.32.0",
|
58
|
+
"eslint-plugin-no-jquery": "^2.7.0",
|
59
|
+
"eslint-plugin-testcafe": "^0.2.1",
|
60
|
+
"hammerjs": "^2.0.8",
|
61
|
+
"http-server": "14.1.1",
|
62
|
+
"iso-language-codes": "1.1.0",
|
63
|
+
"jest": "^29.1.2",
|
64
|
+
"jest-environment-jsdom": "^29.1.2",
|
65
|
+
"jquery": "3.6.1",
|
59
66
|
"jquery-colorbox": "1.6.4",
|
60
67
|
"jquery-ui": "1.12.1",
|
61
68
|
"jquery-ui-touch-punch": "0.2.3",
|
62
69
|
"jquery.browser": "0.1.0",
|
63
70
|
"jquery.mmenu": "5.6.5",
|
64
|
-
"
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"
|
68
|
-
"
|
69
|
-
"sinon": "10.0.0",
|
71
|
+
"live-server": "1.2.2",
|
72
|
+
"node-fetch": "3.2.10",
|
73
|
+
"regenerator-runtime": "0.13.9",
|
74
|
+
"sass": "1.52.1",
|
75
|
+
"sinon": "^14.0.0",
|
70
76
|
"soundmanager2": "2.97.20170602",
|
71
|
-
"svgo": "2.
|
72
|
-
"testcafe": "
|
73
|
-
"
|
74
|
-
"webpack
|
77
|
+
"svgo": "2.8.0",
|
78
|
+
"testcafe": "^2.0.1",
|
79
|
+
"testcafe-browser-provider-browserstack": "^1.13.2-alpha.1",
|
80
|
+
"webpack": "5.51.1",
|
81
|
+
"webpack-cli": "4.9.2"
|
75
82
|
},
|
76
83
|
"jest": {
|
84
|
+
"testEnvironment": "jsdom",
|
85
|
+
"transformIgnorePatterns": [
|
86
|
+
"node_modules/(?!(lit-html|lit-element|lit|@lit|@internetarchive|@open-wc)/)"
|
87
|
+
],
|
88
|
+
"moduleNameMapper": {
|
89
|
+
"^@/(.*)$": "<rootDir>/$1"
|
90
|
+
},
|
77
91
|
"setupFiles": [
|
78
92
|
"./src/jquery-wrapper.js"
|
79
93
|
],
|
80
94
|
"roots": [
|
81
95
|
"<rootDir>/src/",
|
82
|
-
"<rootDir>/tests/"
|
83
|
-
]
|
84
|
-
"testPathIgnorePatterns": [
|
85
|
-
"<rootDir>/tests/e2e/",
|
86
|
-
"<rootDir>/tests/karma/"
|
87
|
-
],
|
88
|
-
"coverageDirectory": "<rootDir>/coverage-jest"
|
96
|
+
"<rootDir>/tests/jest/"
|
97
|
+
]
|
89
98
|
},
|
90
99
|
"scripts": {
|
91
100
|
"preversion": "npm run test && node scripts/preversion.js",
|
92
101
|
"version": "node scripts/version.js",
|
93
102
|
"postversion": "node scripts/postversion.js",
|
94
|
-
"build": "npm run clean &&
|
103
|
+
"build": "npm run clean && npx concurrently --group npm:build-js npm:build-css npm:build-assets",
|
95
104
|
"build-assets": "npx cpx \"src/assets/**/*\" BookReader && npx svgo -f BookReader/icons && npx svgo -f BookReader/images",
|
96
105
|
"build-assets:watch": "npx cpx --watch --verbose \"src/assets/**/*\" BookReader",
|
97
106
|
"build-js": "npx webpack",
|
@@ -104,13 +113,14 @@
|
|
104
113
|
"serve": "npx http-server . --port 8000",
|
105
114
|
"serve-live": "npx live-server . --port 8000 --watch=index.html,BookReader,BookReaderDemo",
|
106
115
|
"serve-dev": "npm run build-css && npx concurrently --kill-others npm:serve-live npm:build-*:watch",
|
107
|
-
"test": "
|
108
|
-
"test:
|
109
|
-
"test:e2e
|
110
|
-
"test
|
111
|
-
"test-
|
112
|
-
"test-
|
113
|
-
"
|
116
|
+
"test": "npx jest --coverage --colors",
|
117
|
+
"test:watch": "npx jest --watch",
|
118
|
+
"test:e2e": "npm run build && npx testcafe",
|
119
|
+
"test:e2e:dev": "npx testcafe --live --dev",
|
120
|
+
"DOCS:update:test-deps": "If CI succeeds, these should be good to update",
|
121
|
+
"update:test-deps": "npm i @babel/eslint-parser@latest @open-wc/testing-helpers@latest @types/jest@latest codecov@latest eslint@latest eslint-plugin-testcafe@latest jest@latest sinon@latest testcafe@latest",
|
122
|
+
"DOCS:update:build-deps": "These can cause strange changes, so do an npm run build + check file size (git diff --stat), and check the site is as expected",
|
123
|
+
"update:build-deps": "npm i @babel/core@latest @babel/preset-env@latest babel-loader@latest core-js@latest regenerator-runtime@latest sass@latest svgo@latest webpack@latest webpack-cli@latest",
|
114
124
|
"codecov": "npx codecov"
|
115
125
|
}
|
116
126
|
}
|
package/renovate.json
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
{
|
2
|
+
"extends": [
|
3
|
+
"config:base",
|
4
|
+
"schedule:monthly"
|
5
|
+
],
|
6
|
+
"packageRules": [
|
7
|
+
{
|
8
|
+
"matchPackageNames": [
|
9
|
+
"@babel/eslint-parser",
|
10
|
+
"@open-wc/testing-helpers",
|
11
|
+
"@types/jest",
|
12
|
+
"codecov",
|
13
|
+
"eslint",
|
14
|
+
"eslint-plugin-no-jquery",
|
15
|
+
"eslint-plugin-testcafe",
|
16
|
+
"jest",
|
17
|
+
"jest-environment-jsdom",
|
18
|
+
"sinon",
|
19
|
+
"testcafe"
|
20
|
+
],
|
21
|
+
"automerge": true
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"matchPackageNames": [
|
25
|
+
"concurrently",
|
26
|
+
"http-server",
|
27
|
+
"live-server",
|
28
|
+
"node-fetch"
|
29
|
+
],
|
30
|
+
"matchUpdateTypes": ["minor", "patch"],
|
31
|
+
"automerge": true
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"matchPackagePatterns": ["^@internetarchive/icon-"],
|
35
|
+
"groupName": "@internetarchive icons",
|
36
|
+
"rangeStrategy": "bump"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"matchPackagePatterns": ["*"],
|
40
|
+
"rangeStrategy": "bump"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"matchPackagePatterns": ["^actions/"],
|
44
|
+
"groupName": "GitHub Actions",
|
45
|
+
"automerge": true
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"matchPackagePatterns": ["^@internetarchive"],
|
49
|
+
"schedule": ["at any time"]
|
50
|
+
}
|
51
|
+
]
|
52
|
+
}
|
package/scripts/preversion.js
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
const { version: OLD_VERSION } = require('../package.json');
|
2
|
-
const fetch = require('node-fetch');
|
3
2
|
const OLD_RELEASE_URL = `https://api.github.com/repos/internetarchive/bookreader/releases/tags/v${OLD_VERSION}`;
|
4
3
|
|
5
4
|
async function main() {
|
5
|
+
// Need this because fetch is ESM-only, and we're on Node 16. Someday we should
|
6
|
+
// be able to move this up to the top without renaming this file to a .mjs or whatever
|
7
|
+
const {default: fetch} = await import('node-fetch');
|
8
|
+
|
6
9
|
const {created_at} = await fetch(OLD_RELEASE_URL).then(r => r.json());
|
7
10
|
const today = new Date().toISOString().slice(0, -5);
|
8
11
|
const searchUrl = 'https://github.com/internetarchive/bookreader/pulls?' + new URLSearchParams({
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { css } from 'lit
|
1
|
+
import { css } from 'lit';
|
2
2
|
|
3
3
|
export default css`
|
4
4
|
.ia-button {
|
@@ -24,8 +24,10 @@ export default css`
|
|
24
24
|
user-select: none;
|
25
25
|
}
|
26
26
|
|
27
|
-
.ia-button.link
|
27
|
+
.ia-button.link,
|
28
|
+
.ia-button.external {
|
28
29
|
min-height: unset;
|
30
|
+
text-decoration: none;
|
29
31
|
}
|
30
32
|
|
31
33
|
.ia-button:disabled,
|
@@ -51,4 +53,9 @@ export default css`
|
|
51
53
|
background-color: var(--primaryErrorCTAFill);
|
52
54
|
border-color: var(--primaryErrorCTABorder);
|
53
55
|
}
|
56
|
+
|
57
|
+
.ia-button.external {
|
58
|
+
background: var(--secondaryCTAFill);
|
59
|
+
border-color: var(--secondaryCTABorder);
|
60
|
+
}
|
54
61
|
`;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { svg } from 'lit';
|
2
|
+
|
3
|
+
export default svg`
|
4
|
+
<svg class="ia-logo" width="27" height="30" viewBox="0 0 27 30" xmlns="http://www.w3.org/2000/svg" aria-labelledby="logoTitleID logoDescID">
|
5
|
+
<title id="logoTitleID">Internet Archive logo</title>
|
6
|
+
<desc id="logoDescID">A line drawing of the Internet Archive headquarters building façade.</desc>
|
7
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
8
|
+
<mask id="mask-2" fill="white">
|
9
|
+
<path d="M26.6666667,28.6046512 L26.6666667,30 L0,30 L0.000283687943,28.6046512 L26.6666667,28.6046512 Z M25.6140351,26.5116279 L25.6140351,28.255814 L1.05263158,28.255814 L1.05263158,26.5116279 L25.6140351,26.5116279 Z M3.62469203,7.6744186 L3.91746909,7.82153285 L4.0639977,10.1739544 L4.21052632,13.9963932 L4.21052632,17.6725617 L4.0639977,22.255044 L4.03962296,25.3421929 L3.62469203,25.4651163 L2.16024641,25.4651163 L1.72094074,25.3421929 L1.55031755,22.255044 L1.40350877,17.6970339 L1.40350877,14.0211467 L1.55031755,10.1739544 L1.68423854,7.80887484 L1.98962322,7.6744186 L3.62469203,7.6744186 Z M24.6774869,7.6744186 L24.9706026,7.82153285 L25.1168803,10.1739544 L25.2631579,13.9963932 L25.2631579,17.6725617 L25.1168803,22.255044 L25.0927809,25.3421929 L24.6774869,25.4651163 L23.2130291,25.4651163 L22.7736357,25.3421929 L22.602418,22.255044 L22.4561404,17.6970339 L22.4561404,14.0211467 L22.602418,10.1739544 L22.7369262,7.80887484 L23.0420916,7.6744186 L24.6774869,7.6744186 Z M9.94042303,7.6744186 L10.2332293,7.82153285 L10.3797725,10.1739544 L10.5263158,13.9963932 L10.5263158,17.6725617 L10.3797725,22.255044 L10.3556756,25.3421929 L9.94042303,25.4651163 L8.47583122,25.4651163 L8.0362015,25.3421929 L7.86556129,22.255044 L7.71929825,17.6970339 L7.71929825,14.0211467 L7.86556129,10.1739544 L8.00005604,7.80887484 L8.30491081,7.6744186 L9.94042303,7.6744186 Z M18.0105985,7.6744186 L18.3034047,7.82153285 L18.449948,10.1739544 L18.5964912,13.9963932 L18.5964912,17.6725617 L18.449948,22.255044 L18.425851,25.3421929 L18.0105985,25.4651163 L16.5460067,25.4651163 L16.1066571,25.3421929 L15.9357367,22.255044 L15.7894737,17.6970339 L15.7894737,14.0211467 L15.9357367,10.1739544 L16.0702315,7.80887484 L16.3753664,7.6744186 L18.0105985,7.6744186 Z M25.6140351,4.53488372 L25.6140351,6.97674419 L1.05263158,6.97674419 L1.05263158,4.53488372 L25.6140351,4.53488372 Z M13.0806755,0 L25.9649123,2.93331338 L25.4484139,3.8372093 L0.771925248,3.8372093 L0,3.1041615 L13.0806755,0 Z" id="path-1"></path>
|
10
|
+
</mask>
|
11
|
+
<use fill="#FFFFFF" xlink:href="#path-1"></use>
|
12
|
+
<g mask="url(#mask-2)" fill="#FFFFFF">
|
13
|
+
<path d="M0,0 L26.6666667,0 L26.6666667,30 L0,30 L0,0 Z" id="swatch"></path>
|
14
|
+
</g>
|
15
|
+
</g>
|
16
|
+
</svg>
|
17
|
+
`;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { css } from 'lit
|
1
|
+
import { css } from 'lit';
|
2
2
|
|
3
3
|
// Original SVG object for reference
|
4
4
|
// <svg height="10" viewBox="0 0 13 10" width="13" xmlns="http://www.w3.org/2000/svg"><path d="m4.33333333 10-4.33333333-4.16666667 1.73333333-1.66666666 2.6 2.5 6.93333337-6.66666667 1.7333333 1.66666667z" fill="#fff" fill-rule="evenodd"/></svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import { css } from 'lit
|
1
|
+
import { css } from 'lit';
|
2
2
|
|
3
3
|
export default css`data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNDAgNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgYXJpYS1sYWJlbGxlZGJ5PSJjbG9zZVRpdGxlSUQgY2xvc2VEZXNjSUQiPjxwYXRoIGQ9Ik0yOS4xOTIgMTAuODA4YTEuNSAxLjUgMCAwMTAgMi4xMkwyMi4xMjIgMjBsNy4wNyA3LjA3MmExLjUgMS41IDAgMDEtMi4xMiAyLjEyMWwtNy4wNzMtNy4wNy03LjA3IDcuMDdhMS41IDEuNSAwIDAxLTIuMTIxLTIuMTJsNy4wNy03LjA3My03LjA3LTcuMDdhMS41IDEuNSAwIDAxMi4xMi0yLjEyMUwyMCAxNy44NzhsNy4wNzItNy4wN2ExLjUgMS41IDAgMDEyLjEyMSAweiIgY2xhc3M9ImZpbGwtY29sb3IiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==`;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { html } from 'lit';
|
2
|
+
|
3
|
+
export default html`
|
4
|
+
<svg name="sort-asc" height="18" viewBox="0 0 18 18" width="18" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="m2.32514544 8.30769231.7756949-2.08468003h2.92824822l.75630252 2.08468003h1.01809955l-2.70523594-6.92307693h-1.01809955l-2.69553976 6.92307693zm3.41305753-2.86037492h-2.34647705l1.17323853-3.22883h.01939237z" fill="#fff" fill-rule="nonzero"/><path d="m7.1689722 16.6153846v-.7756949h-4.4117647l4.29541047-5.3716871v-.77569491h-5.06140918v.77569491h3.97543633l-4.30510666 5.3716871v.7756949z" fill="#fff" fill-rule="nonzero"/><path d="m10.3846154 11.0769231 2.7692308 5.5384615 2.7692307-5.5384615m-2.7692307 4.1538461v-13.15384612" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.661538" transform="matrix(1 0 0 -1 0 18.692308)"/></g></svg>
|
5
|
+
`;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { html } from 'lit';
|
2
|
+
|
3
|
+
export default html`
|
4
|
+
<svg name="sort-desc" height="18" viewBox="0 0 18 18" width="18" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="m2.32514544 8.30769231.7756949-2.08468003h2.92824822l.75630252 2.08468003h1.01809955l-2.70523594-6.92307693h-1.01809955l-2.69553976 6.92307693zm3.41305753-2.86037492h-2.34647705l1.17323853-3.22883h.01939237z" fill="#fff" fill-rule="nonzero"/><path d="m7.1689722 16.6153846v-.7756949h-4.4117647l4.29541047-5.3716871v-.77569491h-5.06140918v.77569491h3.97543633l-4.30510666 5.3716871v.7756949z" fill="#fff" fill-rule="nonzero"/><path d="m10.3846154 11.0769231 2.7692308 5.5384615 2.7692307-5.5384615m-2.7692307 4.1538461v-13.15384612" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.661538"/></g></svg>
|
5
|
+
`;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { html } from 'lit';
|
2
|
+
|
3
|
+
export default html`
|
4
|
+
<svg name="sort-neutral" height="18" viewBox="0 0 18 18" width="18" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" fill-rule="evenodd"><path d="m2.32514544 8.30769231.7756949-2.08468003h2.92824822l.75630252 2.08468003h1.01809955l-2.70523594-6.92307693h-1.01809955l-2.69553976 6.92307693zm3.41305753-2.86037492h-2.34647705l1.17323853-3.22883h.01939237z" fill-rule="nonzero"/><path d="m7.1689722 16.6153846v-.7756949h-4.4117647l4.29541047-5.3716871v-.77569491h-5.06140918v.77569491h3.97543633l-4.30510666 5.3716871v.7756949z" fill-rule="nonzero"/><circle cx="13" cy="9" r="2"/></g></svg>
|
5
|
+
`;
|