xgplayer 3.0.12-rc.0 → 3.0.13
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/CHANGELOG.md +5 -0
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/es/index.d.ts +2 -1
- package/es/index.js +1 -0
- package/es/index.umd.d.ts +2 -0
- package/es/index.umd.js +2 -0
- package/es/instManager.d.ts +58 -0
- package/es/instManager.js +151 -0
- package/es/lang/br.d.ts +91 -0
- package/es/lang/de.d.ts +91 -0
- package/es/lang/es.d.ts +91 -0
- package/es/lang/fr.d.ts +91 -0
- package/es/lang/id.d.ts +91 -0
- package/es/lang/it.d.ts +91 -0
- package/es/lang/kr.d.ts +91 -0
- package/es/lang/ms-my.d.ts +91 -0
- package/es/lang/ru.d.ts +91 -0
- package/es/lang/th.d.ts +91 -0
- package/es/lang/vn.d.ts +91 -0
- package/es/mediaProxy.d.ts +5 -0
- package/es/player.d.ts +28 -8
- package/es/player.js +45 -23
- package/es/plugin/basePlugin.d.ts +2 -2
- package/es/plugin/plugin.d.ts +6 -7
- package/es/plugin/plugin.js +1 -1
- package/es/plugin/pluginsManager.d.ts +0 -34
- package/es/plugin/pluginsManager.js +1 -49
- package/es/plugins/common/optionsIcon.d.ts +0 -1
- package/es/plugins/common/optionsIcon.js +1 -1
- package/es/plugins/controls/index.d.ts +0 -1
- package/es/plugins/controls/index.js +1 -1
- package/es/plugins/danmu/index.d.ts +1 -0
- package/es/plugins/definition/index.js +1 -1
- package/es/plugins/fpsDetect/index.d.ts +4 -1
- package/es/plugins/fullscreen/index.d.ts +11 -7
- package/es/plugins/fullscreen/index.js +0 -10
- package/es/plugins/heatmap/index.d.ts +4 -2
- package/es/plugins/heatmap/index.js +81 -28
- package/es/plugins/mobile/index.d.ts +6 -5
- package/es/plugins/mobile/touch.d.ts +8 -2
- package/es/plugins/netAdaption/index.d.ts +4 -1
- package/es/plugins/pip/index.d.ts +0 -1
- package/es/plugins/pip/index.js +9 -7
- package/es/plugins/playbackRate/index.js +1 -1
- package/es/plugins/poster/index.d.ts +0 -1
- package/es/plugins/poster/index.js +1 -1
- package/es/plugins/progress/index.d.ts +6 -7
- package/es/plugins/progress/index.js +2 -1
- package/es/plugins/progressPreview/index.d.ts +0 -1
- package/es/plugins/progressPreview/index.js +1 -1
- package/es/plugins/prompt/index.d.ts +5 -2
- package/es/plugins/prompt/index.js +3 -3
- package/es/plugins/replay/index.d.ts +0 -1
- package/es/plugins/replay/index.js +1 -1
- package/es/plugins/start/index.d.ts +0 -1
- package/es/plugins/start/index.js +1 -1
- package/es/plugins/testspeed/index.d.ts +4 -1
- package/es/plugins/time/index.d.ts +1 -2
- package/es/plugins/time/index.js +1 -1
- package/es/plugins/time/timesegments.d.ts +1 -1
- package/es/plugins/track/index.js +1 -1
- package/es/plugins/waitingTimeoutJump/index.d.ts +4 -1
- package/es/presets/default-en.d.ts +1 -2
- package/es/presets/default.d.ts +1 -2
- package/es/presets/mobile.d.ts +1 -2
- package/es/style/common/animation.scss +0 -0
- package/es/style/common/svg-url.scss +0 -0
- package/es/style/index.scss +0 -0
- package/es/style/variable.scss +0 -0
- package/es/utils/util.d.ts +3 -3
- package/es/version.js +1 -1
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xgplayer",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.13",
|
|
4
4
|
"description": "video player",
|
|
5
5
|
"main": "dist/index.min.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"registry": "https://registry.npmjs.org/",
|
|
18
18
|
"access": "public",
|
|
19
|
-
"tag": "
|
|
19
|
+
"tag": "latest"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"dist",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"delegate": "^3.2.0",
|
|
44
44
|
"downloadjs": "1.4.7",
|
|
45
45
|
"eventemitter3": "^4.0.7",
|
|
46
|
-
"xgplayer-subtitles": "3.0.
|
|
46
|
+
"xgplayer-subtitles": "3.0.13"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"core-js": ">=3.12.1"
|