@clickview/reports 0.0.2-dev.2 → 0.0.2-rc.0
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/dist/bundles.json +2 -2
- package/dist/css/1-reports-2075650b5e.chunk.css +16 -0
- package/dist/css/reports-app-5c8a0d5da0.css +45 -0
- package/dist/en.json +1 -1
- package/dist/scripts/1-2b31538f14-reports.chunk.js +1 -0
- package/dist/scripts/2-c8c354b8c0-reports.chunk.js +1 -0
- package/dist/scripts/3-b01f7b432e-reports.chunk.js +1 -0
- package/dist/scripts/4-c7fc2911e5-reports.chunk.js +1 -0
- package/dist/scripts/5-8a0ecc848d-reports.chunk.js +1 -0
- package/dist/scripts/reports-app-315d9e9b73.min.js +378 -0
- package/package.json +3 -7
- package/tooling/externals.js +1 -2
- package/dist/css/11-reports-74c9a42f03.chunk.css +0 -2
- package/dist/css/12-reports-74c9a42f03.chunk.css +0 -2
- package/dist/css/2-reports-8ef526bc74.chunk.css +0 -8
- package/dist/css/5-reports-3affbe91d0.chunk.css +0 -84
- package/dist/css/6-reports-656d11eb5d.chunk.css +0 -6
- package/dist/css/7-reports-3f71e5f85a.chunk.css +0 -10
- package/dist/css/8-reports-742cb438e5.chunk.css +0 -6
- package/dist/css/9-reports-7c59dcb964.chunk.css +0 -6
- package/dist/css/reports-app-c2e91d7241.css +0 -59
- package/dist/scripts/0-1e4c0b5eb9-reports.chunk.js +0 -1
- package/dist/scripts/1-b35f8a09fb-reports.chunk.js +0 -1
- package/dist/scripts/10-38e429650c-reports.chunk.js +0 -1
- package/dist/scripts/11-c63b1134e6-reports.chunk.js +0 -1
- package/dist/scripts/12-2329ffd92d-reports.chunk.js +0 -1
- package/dist/scripts/13-b3e42309c7-reports.chunk.js +0 -1
- package/dist/scripts/14-0903627f22-reports.chunk.js +0 -1
- package/dist/scripts/15-808d11ec5c-reports.chunk.js +0 -1
- package/dist/scripts/2-81d7178059-reports.chunk.js +0 -1
- package/dist/scripts/4-5285b07356-reports.chunk.js +0 -88
- package/dist/scripts/5-d961897ef1-reports.chunk.js +0 -1
- package/dist/scripts/6-687ac1a2b0-reports.chunk.js +0 -1
- package/dist/scripts/7-0e9ab45794-reports.chunk.js +0 -1
- package/dist/scripts/8-7f04f03332-reports.chunk.js +0 -1
- package/dist/scripts/9-ddf5e0bbc1-reports.chunk.js +0 -1
- package/dist/scripts/reports-app-eaa891590a.min.js +0 -378
- package/typings/libs/videojs-contrib-quality-levels.d.ts +0 -29
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import videojs from 'video.js';
|
|
2
|
-
|
|
3
|
-
declare module 'video.js' {
|
|
4
|
-
export interface VideoJsPlayer {
|
|
5
|
-
qualityLevels(): QualityLevelList;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module 'videojs-contrib-quality-levels' {
|
|
10
|
-
export interface QualityLevelList extends videojs.EventTarget {
|
|
11
|
-
[id: string]: QualityLevel;
|
|
12
|
-
selectedIndex: number;
|
|
13
|
-
length: number;
|
|
14
|
-
addQualityLevel(representation: Representation): QualityLevel;
|
|
15
|
-
removeQualityLevel(qualityLevel: QualityLevel): QualityLevel;
|
|
16
|
-
getQualityLevelById(id: string): QualityLevel;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface QualityLevel {
|
|
20
|
-
id: string;
|
|
21
|
-
label: string;
|
|
22
|
-
enabled: boolean;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface Representation {
|
|
26
|
-
id: string;
|
|
27
|
-
enabled(enabled: boolean): boolean;
|
|
28
|
-
}
|
|
29
|
-
}
|