@internetarchive/bookreader 5.0.0-77-alpha → 5.0.0-78

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 5.0.0-78
2
+ - Fix: Add button outline to some of the controls @cdrini
3
+
4
+ # 5.0.0-77
5
+ - Fix: side panels - show downloads before visual adjustments @iisa
6
+
1
7
  # 5.0.0-76
2
8
  - Fix: Update bookNavigator shortcut menu ordering @dualcnhq
3
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@internetarchive/bookreader",
3
- "version": "5.0.0-77-alpha",
3
+ "version": "5.0.0-78",
4
4
  "description": "The Internet Archive BookReader.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,7 +26,7 @@
26
26
  "private": false,
27
27
  "dependencies": {
28
28
  "@internetarchive/ia-activity-indicator": "^0.0.4",
29
- "@internetarchive/ia-item-navigator": "^2.0.3",
29
+ "@internetarchive/ia-item-navigator": "^2.1.0",
30
30
  "@internetarchive/icon-bookmark": "^1.3.4",
31
31
  "@internetarchive/icon-dl": "^1.3.4",
32
32
  "@internetarchive/icon-edit-pencil": "^1.3.4",
@@ -46,7 +46,7 @@
46
46
  "@babel/plugin-proposal-decorators": "7.23.3",
47
47
  "@babel/preset-env": "7.23.3",
48
48
  "@open-wc/testing-helpers": "3.0.0",
49
- "@types/jest": "29.5.10",
49
+ "@types/jest": "29.5.11",
50
50
  "@webcomponents/webcomponentsjs": "^2.6.0",
51
51
  "babel-loader": "9.1.3",
52
52
  "codecov": "^3.8.3",
@@ -71,10 +71,7 @@ export class BookNavigator extends LitElement {
71
71
  'volumes',
72
72
  'chapters',
73
73
  'search',
74
- 'downloads',
75
- 'bookmarks',
76
- 'visualAdjustments',
77
- 'share'
74
+ 'bookmarks'
78
75
  ];
79
76
  }
80
77
 
@@ -316,7 +313,7 @@ export class BookNavigator extends LitElement {
316
313
 
317
314
  if (this.shouldShowDownloadsMenu()) {
318
315
  downloads?.update(this.downloadableTypes);
319
- availableMenus.splice(1, 0, downloads);
316
+ availableMenus.splice(-2, 0, downloads);
320
317
  }
321
318
 
322
319
  const event = new CustomEvent(
@@ -20,9 +20,6 @@
20
20
  font-weight: 700;
21
21
  color: #dedede;
22
22
  }
23
- a {
24
- outline: none;
25
- }
26
23
  button {
27
24
  cursor: pointer;
28
25
  }
@@ -103,7 +103,7 @@
103
103
  border: none;
104
104
  border-radius: 2px;
105
105
  background: transparent;
106
- outline: none;
106
+
107
107
  @media (hover: hover) {
108
108
  /* styles to apply on devices that support hover */
109
109
  &:hover .BRtooltip {
@@ -164,7 +164,6 @@
164
164
  max-width: 160px;
165
165
  height: 100%;
166
166
  color: white;
167
- outline: none;
168
167
  border: none;
169
168
  padding: 3px 0px 3px 10px;
170
169
  margin: 0;