@evercam/ui 1.0.0-preview-fix-evercam-ui-publish-script-fe11a6a72 → 1.0.0-preview-add-loading-if-webrtc-stream-disconnect-cd8feea30
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/attributes.json +5 -0
- package/dist/components/EVideoPlayer.vue.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +164 -160
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tags.json +1 -0
- package/dist/web-types.json +10 -1
- package/package.json +1 -1
package/dist/attributes.json
CHANGED
|
@@ -230,6 +230,11 @@
|
|
|
230
230
|
"description": "",
|
|
231
231
|
"default": false
|
|
232
232
|
},
|
|
233
|
+
"EVideoPlayer/show-loading-animation": {
|
|
234
|
+
"type": "boolean",
|
|
235
|
+
"description": "",
|
|
236
|
+
"default": false
|
|
237
|
+
},
|
|
233
238
|
"EVideoPlayer/is-zoomable": {
|
|
234
239
|
"type": "boolean",
|
|
235
240
|
"description": "",
|
|
@@ -76,6 +76,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
76
76
|
pauseOnClick: boolean;
|
|
77
77
|
isHlsLoading: boolean;
|
|
78
78
|
isPlaying: boolean;
|
|
79
|
+
showLoadingAnimation: boolean;
|
|
79
80
|
isZoomable: boolean;
|
|
80
81
|
zoomableIgnorePointerEvents: boolean;
|
|
81
82
|
timezone: string;
|
package/dist/index.d.ts
CHANGED