bloom-player 2.19.8 → 2.20.0-alpha.1
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/README.md +11 -11
- package/dist/{bloomPlayer-C9uip0ge.css → bloomPlayer-DHiLPE1q.css} +1 -1
- package/dist/bloomPlayer.Bmk9o7f9.js +7995 -0
- package/dist/bloomplayer.htm +2 -2
- package/lib/narration.d.ts +6 -6
- package/lib/shared.es.js +5680 -5788
- package/lib/shared.es.js.map +1 -1
- package/package.json +3 -2
- package/dist/bloomPlayer.CbFoMc1O.js +0 -8060
package/dist/bloomplayer.htm
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<head>
|
|
8
8
|
<meta charset="UTF-8" />
|
|
9
9
|
<!-- At build time, we replace this with the actual css file -->
|
|
10
|
-
<link rel="stylesheet" href="bloomPlayer-
|
|
10
|
+
<link rel="stylesheet" href="bloomPlayer-DHiLPE1q.css">
|
|
11
11
|
</head>
|
|
12
12
|
|
|
13
13
|
<!-- About the background-color here... the bloomPlayer.js will set the background color
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
<!-- At build time, we replace the target of this script tag to point at the
|
|
20
20
|
the bloom player bundle with the cache-busting hash in its name. -->
|
|
21
|
-
<script src="bloomPlayer.
|
|
21
|
+
<script src="bloomPlayer.Bmk9o7f9.js"></script>
|
|
22
22
|
</body>
|
|
23
23
|
|
|
24
24
|
|
package/lib/narration.d.ts
CHANGED
|
@@ -6,12 +6,12 @@ export interface ISetHighlightParams {
|
|
|
6
6
|
oldElement?: Element | null | undefined;
|
|
7
7
|
}
|
|
8
8
|
export declare enum PlaybackMode {
|
|
9
|
-
NewPage = 0
|
|
10
|
-
NewPageMediaPaused = 1
|
|
11
|
-
VideoPlaying = 2
|
|
12
|
-
VideoPaused = 3
|
|
13
|
-
AudioPlaying = 4
|
|
14
|
-
AudioPaused = 5
|
|
9
|
+
NewPage = 0,// starting a new page ready to play
|
|
10
|
+
NewPageMediaPaused = 1,// starting a new page in the "paused" state
|
|
11
|
+
VideoPlaying = 2,// video is playing
|
|
12
|
+
VideoPaused = 3,// video is paused
|
|
13
|
+
AudioPlaying = 4,// narration and/or animation are playing (or possibly finished)
|
|
14
|
+
AudioPaused = 5,// narration and/or animation are paused
|
|
15
15
|
MediaFinished = 6
|
|
16
16
|
}
|
|
17
17
|
export declare let currentPlaybackMode: PlaybackMode;
|