@ezuikit/player-theme 3.1.0-beta.1 → 3.1.0-beta.3
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/constant.js +6 -2
- package/dist/index.cjs +473 -257
- package/dist/index.esm.js +473 -257
- package/dist/index.umd.js +1287 -701
- package/dist/style.css +7 -3
- package/dist/style.js +2 -2
- package/dist/types/index.d.ts +67 -50
- package/package.json +3 -2
package/dist/constant.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @ezuikit/player-theme v3.1.0-beta.
|
|
3
|
-
* Copyright (c) 2026-
|
|
2
|
+
* @ezuikit/player-theme v3.1.0-beta.3
|
|
3
|
+
* Copyright (c) 2026-07-03 Ezviz-OpenBiz
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
@@ -162,6 +162,7 @@ var EVENTS = {
|
|
|
162
162
|
/** AI对话框状态变化 */ aichatChange: 'aichatChange',
|
|
163
163
|
/** 直播模式切换 */ liveChange: 'liveChange',
|
|
164
164
|
/** 回放下拉选择变化 */ recDropdownChange: 'recDropdownChange',
|
|
165
|
+
/** 录像列表面板状态变化 */ recListChange: 'recListChange',
|
|
165
166
|
/** 告警消息面板状态变化 */ alarmMessageChange: 'alarmMessageChange',
|
|
166
167
|
/** 动态切换日志配置 */ setLoggerOptions: 'setLoggerOptions',
|
|
167
168
|
records: 'records',
|
|
@@ -214,6 +215,9 @@ var EVENTS = {
|
|
|
214
215
|
/** 直播控件销毁 */ liveDestroy: 'Control.liveDestroy',
|
|
215
216
|
/** 回放下拉选择变化 */ recDropdownChange: 'Control.recDropdownChange',
|
|
216
217
|
/** 回放下拉控件销毁 */ recDropdownDestroy: 'Control.recDropdownDestroy',
|
|
218
|
+
/** 录像列表面板状态变化 */ recListChange: 'Control.recListChange',
|
|
219
|
+
recListCardClick: 'Control.recListCardClick',
|
|
220
|
+
/** 录像列表控件销毁 */ recListDestroy: 'Control.recListDestroy',
|
|
217
221
|
/** 告警消息面板开关 */ alarmMessageChange: 'Control.alarmMessageChange',
|
|
218
222
|
/** 告警消息面板销毁 */ alarmMessageDestroy: 'Control.alarmMessageDestroy',
|
|
219
223
|
/** 缩放比例改变 */ zoomChange: 'Control.zoomChange',
|