@icos-desktop/react-components 0.1.14 → 0.1.16
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/README.md +7 -1
- package/build/index.d.ts +22 -1
- package/build/index.esm.js +4 -4
- package/build/index.js +4 -4
- package/build/index.umd.js +4 -4
- package/build/libs/h5player/h5player.min.js +313 -0
- package/build/libs/h5player/playctrl1/DecodeWorker.js +642 -0
- package/build/libs/h5player/playctrl1/Decoder.js +1 -0
- package/build/libs/h5player/playctrl1simd/DecodeWorker.js +642 -0
- package/build/libs/h5player/playctrl1simd/Decoder.js +1 -0
- package/build/libs/h5player/playctrl2/Decoder.js +21 -0
- package/build/libs/h5player/playctrl2/Decoder.wasm +0 -0
- package/build/libs/h5player/playctrl2/Decoder.worker.js +1 -0
- package/build/libs/h5player/playctrl3/Decoder.js +21 -0
- package/build/libs/h5player/playctrl3/Decoder.wasm +0 -0
- package/build/libs/h5player/playctrl3/Decoder.worker.js +1 -0
- package/build/libs/h5player/talk/AudioInterCom.js +21 -0
- package/build/libs/h5player/talk/AudioInterCom.wasm +0 -0
- package/build/libs/h5player/talkW/AudioInterCom.js +21 -0
- package/build/libs/h5player/talkW/AudioInterCom.wasm +0 -0
- package/build/libs/h5player/talkW/AudioInterCom.worker.js +1 -0
- package/build/libs/h5player/transform/libSystemTransform.js +6525 -0
- package/build/libs/h5player/transform/libSystemTransform.wasm +0 -0
- package/build/libs/h5player/transform/systemTransform-worker.js +120 -0
- package/package.json +5 -2
package/README.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
1
|
# ICOS Desktop React Components
|
2
2
|
|
3
|
-
|
3
|
+
|
4
|
+

|
5
|
+
|
6
|
+
ICOS 前端组件库
|
7
|
+
|
8
|
+
- NPM 地址:https://www.npmjs.com/package/@icos-desktop/react-components
|
9
|
+
- 文档地址:http://11.51.204.130/icos-desktop/
|
package/build/index.d.ts
CHANGED
@@ -142,11 +142,32 @@ interface VideoControlProps {
|
|
142
142
|
declare const VideoControl: React.FC<VideoControlProps>;
|
143
143
|
|
144
144
|
interface VideoPlayerProps {
|
145
|
+
/**
|
146
|
+
* 视频播放器库路径
|
147
|
+
*/
|
148
|
+
libsPath?: {
|
149
|
+
cityeyes?: string;
|
150
|
+
h5player?: string;
|
151
|
+
};
|
152
|
+
/**
|
153
|
+
* 视频播放地址
|
154
|
+
*/
|
145
155
|
url?: string;
|
156
|
+
/**
|
157
|
+
* 实体唯一编码,用于视频控制
|
158
|
+
*/
|
146
159
|
senseGlobalCode?: string;
|
147
|
-
|
160
|
+
/**
|
161
|
+
* 视频通道 id
|
162
|
+
*/
|
148
163
|
channelId?: string;
|
164
|
+
/**
|
165
|
+
* 播放器类型
|
166
|
+
*/
|
149
167
|
videoPlayerType?: 'cityeyes' | 'h5player';
|
168
|
+
/**
|
169
|
+
* 视频源类型
|
170
|
+
*/
|
150
171
|
videoStreamSource?: 'cityeyes' | 'hikvision' | 'custom';
|
151
172
|
}
|
152
173
|
|