@internetarchive/bookreader 5.0.0-75 → 5.0.0-77-alpha
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/BookReader/BookReader.js +14343 -2
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +1 -1
- package/BookReader/ia-bookreader-bundle.js.map +1 -1
- package/CHANGELOG.md +3 -0
- package/package.json +1 -1
- package/src/BookNavigator/book-navigator.js +5 -2
- package/tests/jest/BookNavigator/book-navigator.test.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
@@ -67,11 +67,14 @@ export class BookNavigator extends LitElement {
|
|
67
67
|
* sets exit FS button (`this.fullscreenBranding1)
|
68
68
|
* when `br.options.enableFSLogoShortcut`
|
69
69
|
*/
|
70
|
-
'chapters',
|
71
70
|
'fullscreen',
|
72
71
|
'volumes',
|
72
|
+
'chapters',
|
73
73
|
'search',
|
74
|
-
'
|
74
|
+
'downloads',
|
75
|
+
'bookmarks',
|
76
|
+
'visualAdjustments',
|
77
|
+
'share'
|
75
78
|
];
|
76
79
|
}
|
77
80
|
|
@@ -321,9 +321,9 @@ describe('<book-navigator>', () => {
|
|
321
321
|
test('has specific order of menu shortcuts to show', () => {
|
322
322
|
const el = fixtureSync(container());
|
323
323
|
expect(el.shortcutOrder).toEqual([
|
324
|
-
'chapters',
|
325
324
|
'fullscreen',
|
326
325
|
'volumes',
|
326
|
+
'chapters',
|
327
327
|
'search',
|
328
328
|
'bookmarks'
|
329
329
|
]);
|