@internetarchive/bookreader 5.0.0-40 → 5.0.0-40-a1
Sign up to get free protection for your applications and to get access to all the features.
- package/BookReader/BookReader.css +6 -39
- package/BookReader/BookReader.js +1 -1
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +185 -55
- package/BookReader/ia-bookreader-bundle.js.LICENSE.txt +25 -0
- package/BookReader/ia-bookreader-bundle.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.tts.js +1 -1
- package/BookReader/plugins/plugin.tts.js.map +1 -1
- package/CHANGELOG.md +0 -5
- package/package.json +2 -2
- package/src/BookNavigator/search/search-provider.js +8 -6
- package/src/BookReader/PageContainer.js +2 -14
- package/src/BookReader/utils.js +0 -24
- package/src/BookReader.js +4 -2
- package/src/css/_BRsearch.scss +5 -18
- package/src/plugins/search/plugin.search.js +14 -60
- package/src/plugins/search/view.js +7 -1
- package/src/plugins/tts/FestivalTTSEngine.js +1 -1
- package/src/plugins/tts/WebTTSEngine.js +1 -2
- package/src/plugins/tts/utils.js +9 -0
- package/tests/jest/BookReader/BookReaderPublicFunctions.test.js +1 -1
- package/tests/jest/BookReader/PageContainer.test.js +0 -9
- package/tests/jest/BookReader/utils.test.js +0 -50
- package/tests/jest/plugins/tts/utils.test.js +25 -0
- package/tests/karma/BookNavigator/search/search-provider.test.js +17 -0
@@ -1,3 +1,17 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
|
4
|
+
* This code may only be used under the BSD style license found at
|
5
|
+
* http://polymer.github.io/LICENSE.txt
|
6
|
+
* The complete set of authors may be found at
|
7
|
+
* http://polymer.github.io/AUTHORS.txt
|
8
|
+
* The complete set of contributors may be found at
|
9
|
+
* http://polymer.github.io/CONTRIBUTORS.txt
|
10
|
+
* Code distributed by Google as part of the polymer project is also
|
11
|
+
* subject to an additional IP rights grant found at
|
12
|
+
* http://polymer.github.io/PATENTS.txt
|
13
|
+
*/
|
14
|
+
|
1
15
|
/**
|
2
16
|
* @license
|
3
17
|
* Copyright 2017 Google LLC
|
@@ -15,3 +29,14 @@
|
|
15
29
|
* Copyright 2020 Google LLC
|
16
30
|
* SPDX-License-Identifier: BSD-3-Clause
|
17
31
|
*/
|
32
|
+
|
33
|
+
/**
|
34
|
+
@license
|
35
|
+
Copyright (c) 2019 The Polymer Project Authors. All rights reserved.
|
36
|
+
This code may only be used under the BSD style license found at
|
37
|
+
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
|
38
|
+
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
|
39
|
+
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
|
40
|
+
part of the polymer project is also subject to an additional IP rights grant
|
41
|
+
found at http://polymer.github.io/PATENTS.txt
|
42
|
+
*/
|