@gcorevideo/player 2.22.24 → 2.22.25
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/assets/clappr-nerd-stats/clappr-nerd-stats.scss +11 -0
- package/dist/core.js +1 -1
- package/dist/index.css +953 -946
- package/dist/index.js +1 -1
- package/dist/plugins/index.css +724 -724
- package/package.json +1 -1
- package/rollup.config.js +28 -28
- package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +0 -3
- package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +1 -0
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
package/rollup.config.js
CHANGED
|
@@ -23,34 +23,34 @@ export default [
|
|
|
23
23
|
}
|
|
24
24
|
]
|
|
25
25
|
},
|
|
26
|
-
{
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
},
|
|
26
|
+
// {
|
|
27
|
+
// input: 'lib/index.plugins.js',
|
|
28
|
+
// plugins: [
|
|
29
|
+
// resolve(), // TODO check which aren't inlined in the bundle and put them here
|
|
30
|
+
// commonjs(),
|
|
31
|
+
// json(),
|
|
32
|
+
// polyfillNode(),
|
|
33
|
+
// sass({
|
|
34
|
+
// output: 'dist/plugins/index.css',
|
|
35
|
+
// verbose: true,
|
|
36
|
+
// }),
|
|
37
|
+
// string({
|
|
38
|
+
// include: [
|
|
39
|
+
// '**/*.ejs',
|
|
40
|
+
// '**/*.html',
|
|
41
|
+
// '**/*.svg',
|
|
42
|
+
// '**/*.worker.js',
|
|
43
|
+
// ],
|
|
44
|
+
// }),
|
|
45
|
+
// ],
|
|
46
|
+
// output: [
|
|
47
|
+
// {
|
|
48
|
+
// file: 'dist/plugins/index.js',
|
|
49
|
+
// format: 'es',
|
|
50
|
+
// generatedCode: 'es2015',
|
|
51
|
+
// }
|
|
52
|
+
// ]
|
|
53
|
+
// },
|
|
54
54
|
{
|
|
55
55
|
input: 'lib/index.js',
|
|
56
56
|
plugins: [
|
|
@@ -71,11 +71,8 @@ describe('BottomGear', () => {
|
|
|
71
71
|
})
|
|
72
72
|
describe('when clicked twice', () => {
|
|
73
73
|
beforeEach(() => {
|
|
74
|
-
console.log('display:%s', bottomGear.$el.find('#gear-options-wrapper').css('display'))
|
|
75
74
|
bottomGear.$el.find('#gear-button').click()
|
|
76
|
-
console.log('display:%s', bottomGear.$el.find('#gear-options-wrapper').css('display'))
|
|
77
75
|
bottomGear.$el.find('#gear-button').click()
|
|
78
|
-
console.log('display:%s', bottomGear.$el.find('#gear-options-wrapper').css('display'))
|
|
79
76
|
})
|
|
80
77
|
it('should collapse the gear menu', () => {
|
|
81
78
|
expect(bottomGear.$el.find('#gear-options-wrapper').css('display')).toBe(
|
|
@@ -5,6 +5,7 @@ import { createMockCore, createMockMediaControl } from '../../../testUtils.js'
|
|
|
5
5
|
import { ExtendedEvents } from '../../media-control/MediaControl.js'
|
|
6
6
|
|
|
7
7
|
import { LogTracer, Logger, setTracer } from '@gcorevideo/utils'
|
|
8
|
+
import { Events } from '@clappr/core'
|
|
8
9
|
// import { Events } from '@clappr/core';
|
|
9
10
|
|
|
10
11
|
// Logger.enable('*')
|