@evercam/ui 0.0.55-beta.11 → 0.0.55-beta.12
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 +41 -8
- package/dist/index.mjs +2805 -3786
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +13 -13
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +13 -9
- package/dist/src/components/EVideoPlayer.vue.d.ts +14 -253
- package/dist/src/index.d.ts +25 -361
- package/dist/src/types.d.ts +6 -7
- package/dist/style.css +1 -1
- package/dist/styles.css +0 -335
- package/dist/tags.json +15 -3
- package/dist/web-types.json +88 -41
- package/package.json +1 -1
- package/dist/src/components/EToggleSwitch.vue.d.ts +0 -49
- package/dist/src/components/EVideoPlayerActions.vue.d.ts +0 -193
- package/dist/src/components/EVideoPlayerControls.vue.d.ts +0 -146
- package/dist/src/components/EVideoPlayerProgressBar.vue.d.ts +0 -100
- package/dist/src/components/EVideoPlayerThumbnailPreview.vue.d.ts +0 -68
- package/dist/src/components/EZoomable.vue.d.ts +0 -64
package/dist/attributes.json
CHANGED
|
@@ -174,6 +174,33 @@
|
|
|
174
174
|
"type": "boolean|string|number",
|
|
175
175
|
"description": ""
|
|
176
176
|
},
|
|
177
|
+
"EVideoPlayer/sources": {
|
|
178
|
+
"type": "array|string",
|
|
179
|
+
"description": ""
|
|
180
|
+
},
|
|
181
|
+
"EVideoPlayer/video-listeners": {
|
|
182
|
+
"type": "object",
|
|
183
|
+
"description": ""
|
|
184
|
+
},
|
|
185
|
+
"EVideoPlayer/video-options": {
|
|
186
|
+
"type": "object",
|
|
187
|
+
"description": ""
|
|
188
|
+
},
|
|
189
|
+
"EVideoPlayer/is-hls": {
|
|
190
|
+
"type": "boolean",
|
|
191
|
+
"description": "",
|
|
192
|
+
"default": false
|
|
193
|
+
},
|
|
194
|
+
"EVideoPlayer/streaming-token": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"description": "",
|
|
197
|
+
"default": ""
|
|
198
|
+
},
|
|
199
|
+
"EVideoPlayer/is-live-view": {
|
|
200
|
+
"type": "boolean",
|
|
201
|
+
"description": "",
|
|
202
|
+
"default": false
|
|
203
|
+
},
|
|
177
204
|
"ETimeline/events-groups": {
|
|
178
205
|
"type": "object",
|
|
179
206
|
"description": ""
|
|
@@ -253,6 +280,11 @@
|
|
|
253
280
|
"description": "",
|
|
254
281
|
"default": 60
|
|
255
282
|
},
|
|
283
|
+
"ETimeline/chart-min-label-height": {
|
|
284
|
+
"type": "number",
|
|
285
|
+
"description": "",
|
|
286
|
+
"default": 18
|
|
287
|
+
},
|
|
256
288
|
"ETimeline/min-zoom": {
|
|
257
289
|
"type": "number",
|
|
258
290
|
"description": "",
|
|
@@ -271,14 +303,6 @@
|
|
|
271
303
|
"type": "string",
|
|
272
304
|
"description": ""
|
|
273
305
|
},
|
|
274
|
-
"ETimeline/min-visible-date": {
|
|
275
|
-
"type": "string",
|
|
276
|
-
"description": ""
|
|
277
|
-
},
|
|
278
|
-
"ETimeline/max-visible-date": {
|
|
279
|
-
"type": "string",
|
|
280
|
-
"description": ""
|
|
281
|
-
},
|
|
282
306
|
"ETimeline/cursor-timestamp": {
|
|
283
307
|
"type": "string|any",
|
|
284
308
|
"description": ""
|
|
@@ -340,5 +364,14 @@
|
|
|
340
364
|
"type": "boolean",
|
|
341
365
|
"description": "",
|
|
342
366
|
"default": true
|
|
367
|
+
},
|
|
368
|
+
"ETimeline/forbidden-intervals": {
|
|
369
|
+
"type": "array",
|
|
370
|
+
"description": ""
|
|
371
|
+
},
|
|
372
|
+
"ETimeline/forbidden-interval-color": {
|
|
373
|
+
"type": "string",
|
|
374
|
+
"description": "",
|
|
375
|
+
"default": "#ddd"
|
|
343
376
|
}
|
|
344
377
|
}
|