@internetarchive/bookreader 5.0.0-40-a1 → 5.0.0-40
Sign up to get free protection for your applications and to get access to all the features.
- package/BookReader/BookReader.css +39 -6
- package/BookReader/BookReader.js +1 -1
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +55 -185
- package/BookReader/ia-bookreader-bundle.js.LICENSE.txt +0 -25
- 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 +5 -0
- package/package.json +2 -2
- package/src/BookNavigator/search/search-provider.js +6 -8
- package/src/BookReader/PageContainer.js +14 -2
- package/src/BookReader/utils.js +24 -0
- package/src/BookReader.js +2 -4
- package/src/css/_BRsearch.scss +18 -5
- package/src/plugins/search/plugin.search.js +60 -14
- package/src/plugins/search/view.js +1 -7
- package/src/plugins/tts/FestivalTTSEngine.js +1 -1
- package/src/plugins/tts/WebTTSEngine.js +2 -1
- package/src/plugins/tts/utils.js +0 -9
- package/tests/jest/BookReader/BookReaderPublicFunctions.test.js +1 -1
- package/tests/jest/BookReader/PageContainer.test.js +9 -0
- package/tests/jest/BookReader/utils.test.js +50 -0
- package/tests/jest/plugins/tts/utils.test.js +0 -25
- package/tests/karma/BookNavigator/search/search-provider.test.js +0 -17
@@ -1,17 +1,3 @@
|
|
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
|
-
|
15
1
|
/**
|
16
2
|
* @license
|
17
3
|
* Copyright 2017 Google LLC
|
@@ -29,14 +15,3 @@
|
|
29
15
|
* Copyright 2020 Google LLC
|
30
16
|
* SPDX-License-Identifier: BSD-3-Clause
|
31
17
|
*/
|
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
|
-
*/
|