@evercam/ui 0.0.53 → 0.0.54-beta.0
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 +44 -1
- package/dist/index.mjs +19361 -2055
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +27 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +54 -7
- package/dist/src/components/ETimelineMilestone.vue.d.ts +39 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +6 -1
- package/dist/src/index.d.ts +58 -7
- package/dist/src/types.d.ts +17 -2
- package/dist/style.css +1 -1
- package/dist/tags.json +11 -2
- package/dist/web-types.json +84 -3
- package/package.json +6 -2
package/dist/attributes.json
CHANGED
|
@@ -186,6 +186,21 @@
|
|
|
186
186
|
"type": "object",
|
|
187
187
|
"description": ""
|
|
188
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
|
+
},
|
|
189
204
|
"ETimeline/events-groups": {
|
|
190
205
|
"type": "object",
|
|
191
206
|
"description": ""
|
|
@@ -275,6 +290,14 @@
|
|
|
275
290
|
"description": "",
|
|
276
291
|
"default": 850000
|
|
277
292
|
},
|
|
293
|
+
"ETimeline/min-date": {
|
|
294
|
+
"type": "string",
|
|
295
|
+
"description": ""
|
|
296
|
+
},
|
|
297
|
+
"ETimeline/max-date": {
|
|
298
|
+
"type": "string",
|
|
299
|
+
"description": ""
|
|
300
|
+
},
|
|
278
301
|
"ETimeline/cursor-timestamp": {
|
|
279
302
|
"type": "string|any",
|
|
280
303
|
"description": ""
|
|
@@ -291,7 +314,7 @@
|
|
|
291
314
|
"ETimeline/pan-transition-duration": {
|
|
292
315
|
"type": "number",
|
|
293
316
|
"description": "",
|
|
294
|
-
"default":
|
|
317
|
+
"default": 800
|
|
295
318
|
},
|
|
296
319
|
"ETimeline/selected-date": {
|
|
297
320
|
"type": "string",
|
|
@@ -311,5 +334,25 @@
|
|
|
311
334
|
"type": "boolean",
|
|
312
335
|
"description": "",
|
|
313
336
|
"default": true
|
|
337
|
+
},
|
|
338
|
+
"ETimeline/fit-markers-on-change": {
|
|
339
|
+
"type": "boolean",
|
|
340
|
+
"description": "",
|
|
341
|
+
"default": false
|
|
342
|
+
},
|
|
343
|
+
"ETimeline/fit-markers-transition-duration": {
|
|
344
|
+
"type": "number",
|
|
345
|
+
"description": "",
|
|
346
|
+
"default": 800
|
|
347
|
+
},
|
|
348
|
+
"ETimeline/zoom-to-boundaries-transition-duration": {
|
|
349
|
+
"type": "number",
|
|
350
|
+
"description": "",
|
|
351
|
+
"default": 0
|
|
352
|
+
},
|
|
353
|
+
"ETimeline/milestone-bullet-size": {
|
|
354
|
+
"type": "number",
|
|
355
|
+
"description": "",
|
|
356
|
+
"default": 18
|
|
314
357
|
}
|
|
315
358
|
}
|