@ezuikit/player-theme 1.0.1-alpha.0 → 2.0.0-beta.2
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/index.js +6804 -4485
- package/dist/index.mjs +6800 -4480
- package/dist/index.umd.js +2186 -1774
- package/dist/style.js +2 -2
- package/dist/types/index.d.ts +3 -1
- package/package.json +4 -3
package/dist/style.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1022,6 +1022,8 @@ declare class Content extends EventEmitter {
|
|
|
1022
1022
|
private _scaleMode?;
|
|
1023
1023
|
private _originWidth;
|
|
1024
1024
|
private _originHeight;
|
|
1025
|
+
private _width;
|
|
1026
|
+
private _height;
|
|
1025
1027
|
constructor(options: ContentOptions);
|
|
1026
1028
|
/**
|
|
1027
1029
|
* 重新画面区域
|
|
@@ -2543,5 +2545,5 @@ declare class Utils {
|
|
|
2543
2545
|
static resizeObserver(node: Element, callback?: (entries: ResizeObserverEntry[], observer: ResizeObserver) => void): CleanUpResizeObserver;
|
|
2544
2546
|
}
|
|
2545
2547
|
|
|
2546
|
-
export { Control, Fullscreen, Loading, Message, Play, Poster, Rec,
|
|
2548
|
+
export { Control, Fullscreen, Loading, Message, Play, Poster, Rec, Utils, Volume, Theme as default };
|
|
2547
2549
|
export type { CleanUpResizeObserver, CleanUpScreenOrientationFun, ControlItem, ControlOptions, FooterOptions, FullscreenOptions, HeaderOptions, IThemeData, IThemeDataItem, LoadingOptions, MessageOptions, PlayOptions, PosterOptions, RecOptions, ScreenOrientation, ThemeOptions, VolumeOptions };
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ezuikit/player-theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"description": "player theme",
|
|
5
5
|
"title": "theme",
|
|
6
|
-
"main": "dist/index.
|
|
6
|
+
"main": "dist/index.mjs",
|
|
7
7
|
"types": "dist/types/index.d.ts",
|
|
8
|
-
"module": "dist/index.mjs",
|
|
9
8
|
"scripts": {
|
|
10
9
|
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.mjs --watch",
|
|
11
10
|
"build": "npm run clean && cross-env NODE_ENV=production rollup --config rollup.config.mjs",
|
|
@@ -19,6 +18,8 @@
|
|
|
19
18
|
"keywords": [
|
|
20
19
|
"player",
|
|
21
20
|
"theme",
|
|
21
|
+
"ezuikit",
|
|
22
|
+
"ezviz",
|
|
22
23
|
"ui"
|
|
23
24
|
],
|
|
24
25
|
"author": "Ezviz-OpenBiz",
|