@ezuikit/player-theme 3.1.5-beta.3 → 3.1.6-beta.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/dist/style.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
- * @ezuikit/player-theme v3.1.5-beta.3
3
- * Copyright (c) 2026-09-04 06:40:24 Ezviz-OpenBiz
2
+ * @ezuikit/player-theme v3.1.6-beta.1
3
+ * Copyright (c) 2026-09-16 19:24:27 Ezviz-OpenBiz
4
4
  * Released under the MIT License.
5
5
  */
6
6
  require("./style.css");
@@ -219,6 +219,10 @@ declare const EVENTS: {
219
219
  readonly dateChange: "Control.dateChange";
220
220
  /** 日期改变 */
221
221
  readonly dateMonthChange: "Control.dateMonthChange";
222
+ /** 日期面板展示的月份变化 */
223
+ readonly datePanelMonthChange: "Control.datePanelMonthChange";
224
+ /** 日期面板展示的年份变化 */
225
+ readonly datePanelYearChange: "Control.datePanelYearChange";
222
226
  /** 日期销毁 */
223
227
  readonly dateDestroy: "Control.datePanelDestroy";
224
228
  /** 时间面板展示隐藏变换 */
@@ -1505,7 +1509,7 @@ declare class Theme extends EventEmitter {
1505
1509
  readonly fullscreen: "fullscreen";
1506
1510
  readonly exitFullscreen: "exitFullscreen";
1507
1511
  readonly fullscreenChange: "fullscreenChange";
1508
- readonly resize: "resize"; /** 所有控件列表, 所有控件名称规则(`${iconId}Control`), 如音量控件 this.controls["volumeControl"] @since 0.0.1 */
1512
+ readonly resize: "resize";
1509
1513
  readonly orientationChange: "orientationChange";
1510
1514
  readonly audioCodecUnsupported: "audioCodecUnsupported";
1511
1515
  readonly changeTheme: "changeTheme";
@@ -1521,15 +1525,18 @@ declare class Theme extends EventEmitter {
1521
1525
  readonly recDropdownChange: "recDropdownChange";
1522
1526
  readonly recListChange: "recListChange";
1523
1527
  readonly alarmMessageChange: "alarmMessageChange";
1524
- readonly setLoggerOptions: "setLoggerOptions";
1528
+ readonly setLoggerOptions: "setLoggerOptions"; /**
1529
+ * 更多控件(footer more)
1530
+ * @since 0.0.1
1531
+ * @private
1532
+ */
1525
1533
  readonly records: "records";
1526
1534
  readonly ptzSpeedChange: "ptzSpeedChange";
1527
- /** 回放底部时间轴 @since 0.0.1 @private */
1528
1535
  readonly setVideoLevelList: "setVideoLevelList";
1529
1536
  readonly currentVideoLevel: "currentVideoLevel";
1530
1537
  readonly currentVideoLevelAuto: "currentVideoLevelAuto";
1531
1538
  readonly setAllDayRecTimes: "setAllDayRecTimes";
1532
- readonly getOSDTime: "getOSDTime"; /** @since 0.0.1 @private */
1539
+ readonly getOSDTime: "getOSDTime";
1533
1540
  readonly playbackEnd: "playbackEnd";
1534
1541
  readonly control: {
1535
1542
  readonly play: "Control.play";
@@ -1585,6 +1592,8 @@ declare class Theme extends EventEmitter {
1585
1592
  readonly datePanelOpenChange: "Control.datePanelOpenChange";
1586
1593
  readonly dateChange: "Control.dateChange";
1587
1594
  readonly dateMonthChange: "Control.dateMonthChange";
1595
+ readonly datePanelMonthChange: "Control.datePanelMonthChange";
1596
+ readonly datePanelYearChange: "Control.datePanelYearChange";
1588
1597
  readonly dateDestroy: "Control.datePanelDestroy";
1589
1598
  readonly timePanelOpenChange: "Control.timePanelOpenChange";
1590
1599
  readonly timeChange: "Control.timeChange";
@@ -3214,6 +3223,10 @@ interface ThemeEventMap {
3214
3223
  'Control.datePanelOpenChange': (open: boolean, date: Date) => void;
3215
3224
  'Control.dateChange': (date: Date) => void;
3216
3225
  'Control.dateMonthChange': (dates: string[]) => void;
3226
+ /** 日历面板展示的月份变化,`month` 格式 `YYYY-MM` */
3227
+ 'Control.datePanelMonthChange': (date: Date, month: string) => void;
3228
+ /** 日历面板展示的年份变化,`year` 格式 `YYYY` */
3229
+ 'Control.datePanelYearChange': (date: Date, year: string) => void;
3217
3230
  /** 日历控件销毁(注意其字符串值为 `Control.datePanelDestroy`) */
3218
3231
  'Control.datePanelDestroy': () => void;
3219
3232
  'Control.timePanelOpenChange': (open: boolean, time: string) => void;
package/package.json CHANGED
@@ -1,65 +1,65 @@
1
- {
2
- "name": "@ezuikit/player-theme",
3
- "version": "3.1.5-beta.3",
4
- "description": "player theme",
5
- "title": "theme",
6
- "main": "dist/index.cjs",
7
- "module": "dist/index.esm.js",
8
- "types": "dist/types/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/types/index.d.ts",
12
- "import": "./dist/index.esm.js",
13
- "require": "./dist/index.cjs",
14
- "default": "./dist/index.cjs"
15
- },
16
- "./dist/style.js": "./dist/style.js",
17
- "./dist/style": "./dist/style.js",
18
- "./dist/style.css": "./dist/style.css",
19
- "./dist/constant.js": "./dist/constant.js",
20
- "./dist/constant": "./dist/constant.js"
21
- },
22
- "files": [
23
- "dist",
24
- "!dist/*.map"
25
- ],
26
- "keywords": [
27
- "player",
28
- "theme",
29
- "ezuikit",
30
- "ezviz",
31
- "ezopen",
32
- "ui"
33
- ],
34
- "author": "Ezviz-OpenBiz",
35
- "license": "MIT",
36
- "dependencies": {
37
- "@ezuikit/utils-i18n": "^2.0.1",
38
- "@ezuikit/utils-logger": "^2.0.1",
39
- "@ezuikit/utils-tools": "^2.0.7",
40
- "@ezuikit/control-date-picker": "2.1.2-beta.1",
41
- "@ezuikit/control-time-line": "2.1.0",
42
- "@ezuikit/control-ptz": "1.0.0",
43
- "@ezuikit/control-rec-list-modal": "0.0.1",
44
- "@ezuikit/control-segment-progress": "0.0.1",
45
- "@ezuikit/control-zoom": "1.0.0-beta.4",
46
- "@juggle/resize-observer": "^3.4.0",
47
- "@skax/delegate": "4.0.2",
48
- "@skax/picker": "1.1.8",
49
- "deepmerge": "^4.3.1",
50
- "eventemitter3": "^5.0.1",
51
- "screenfull": "5.2.0"
52
- },
53
- "publishConfig": {
54
- "access": "public",
55
- "registry": "https://registry.npmjs.org/"
56
- },
57
- "repository": {
58
- "type": "git",
59
- "url": "git+https://github.com/Ezviz-OpenBiz/EZUIKit-player-theme.git"
60
- },
61
- "bugs": {
62
- "url": "https://github.com/Ezviz-OpenBiz/EZUIKit-player-theme/issues"
63
- },
64
- "homepage": "https://github.com/Ezviz-OpenBiz/EZUIKit-player-theme#readme"
65
- }
1
+ {
2
+ "name": "@ezuikit/player-theme",
3
+ "version": "3.1.6-beta.1",
4
+ "description": "player theme",
5
+ "title": "theme",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.esm.js",
8
+ "types": "dist/types/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/types/index.d.ts",
12
+ "import": "./dist/index.esm.js",
13
+ "require": "./dist/index.cjs",
14
+ "default": "./dist/index.cjs"
15
+ },
16
+ "./dist/style.js": "./dist/style.js",
17
+ "./dist/style": "./dist/style.js",
18
+ "./dist/style.css": "./dist/style.css",
19
+ "./dist/constant.js": "./dist/constant.js",
20
+ "./dist/constant": "./dist/constant.js"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "!dist/*.map"
25
+ ],
26
+ "keywords": [
27
+ "player",
28
+ "theme",
29
+ "ezuikit",
30
+ "ezviz",
31
+ "ezopen",
32
+ "ui"
33
+ ],
34
+ "author": "Ezviz-OpenBiz",
35
+ "license": "MIT",
36
+ "dependencies": {
37
+ "@ezuikit/utils-i18n": "^2.0.1",
38
+ "@ezuikit/utils-logger": "^2.1.0",
39
+ "@ezuikit/utils-tools": "^2.0.7",
40
+ "@ezuikit/control-date-picker": "2.1.2-beta.1",
41
+ "@ezuikit/control-time-line": "2.1.0",
42
+ "@ezuikit/control-ptz": "1.0.0",
43
+ "@ezuikit/control-rec-list-modal": "0.0.2",
44
+ "@ezuikit/control-segment-progress": "0.0.1",
45
+ "@ezuikit/control-zoom": "1.0.0-beta.4",
46
+ "@juggle/resize-observer": "^3.4.0",
47
+ "@skax/delegate": "4.0.2",
48
+ "@skax/picker": "1.1.8",
49
+ "deepmerge": "^4.3.1",
50
+ "eventemitter3": "^5.0.1",
51
+ "screenfull": "5.2.0"
52
+ },
53
+ "publishConfig": {
54
+ "access": "public",
55
+ "registry": "https://registry.npmjs.org/"
56
+ },
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "git+https://github.com/Ezviz-OpenBiz/EZUIKit-player-theme.git"
60
+ },
61
+ "bugs": {
62
+ "url": "https://github.com/Ezviz-OpenBiz/EZUIKit-player-theme/issues"
63
+ },
64
+ "homepage": "https://github.com/Ezviz-OpenBiz/EZUIKit-player-theme#readme"
65
+ }