@evercam/ui 0.0.55-beta.22 → 0.0.55-beta.24
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 +129 -17
- package/dist/index.mjs +1223 -1311
- 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/EHeatmapBar.vue.d.ts +3 -0
- package/dist/src/components/EHoursHeatmap.vue.d.ts +3 -0
- package/dist/src/components/EReadMore.vue.d.ts +24 -0
- package/dist/src/components/ETimeline.vue.d.ts +20 -11
- package/dist/src/components/EVideoPlayer.vue.d.ts +15 -170
- package/dist/src/constants.d.ts +0 -1
- package/dist/src/index.d.ts +56 -258
- package/dist/src/types.d.ts +16 -9
- package/dist/style.css +1 -1
- package/dist/styles.css +16 -108
- package/dist/tags.json +48 -9
- package/dist/web-types.json +289 -39
- package/package.json +1 -1
- package/dist/src/components/EToggleSwitch.vue.d.ts +0 -34
- 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": ""
|
|
@@ -321,7 +345,7 @@
|
|
|
321
345
|
"description": "",
|
|
322
346
|
"default": false
|
|
323
347
|
},
|
|
324
|
-
"ETimeline/
|
|
348
|
+
"ETimeline/zoom-to-interval-transition-duration": {
|
|
325
349
|
"type": "number",
|
|
326
350
|
"description": "",
|
|
327
351
|
"default": 800
|
|
@@ -341,23 +365,111 @@
|
|
|
341
365
|
"description": "",
|
|
342
366
|
"default": true
|
|
343
367
|
},
|
|
344
|
-
"
|
|
368
|
+
"ETimeline/forbidden-intervals": {
|
|
369
|
+
"type": "array",
|
|
370
|
+
"description": ""
|
|
371
|
+
},
|
|
372
|
+
"ETimeline/forbidden-interval-color": {
|
|
373
|
+
"type": "string",
|
|
374
|
+
"description": "",
|
|
375
|
+
"default": "#ddd"
|
|
376
|
+
},
|
|
377
|
+
"ETimeline/focused-interval": {
|
|
378
|
+
"type": "object|any",
|
|
379
|
+
"description": ""
|
|
380
|
+
},
|
|
381
|
+
"ETimeline/locked": {
|
|
382
|
+
"type": "boolean",
|
|
383
|
+
"description": "",
|
|
384
|
+
"default": false
|
|
385
|
+
},
|
|
386
|
+
"EHeatmapBar/items": {
|
|
387
|
+
"type": "array",
|
|
388
|
+
"description": ""
|
|
389
|
+
},
|
|
390
|
+
"EHeatmapBar/selected-value": {
|
|
391
|
+
"type": "string|number",
|
|
392
|
+
"description": "",
|
|
393
|
+
"default": ""
|
|
394
|
+
},
|
|
395
|
+
"EHeatmapBar/show-counts": {
|
|
396
|
+
"type": "boolean",
|
|
397
|
+
"description": "",
|
|
398
|
+
"default": true
|
|
399
|
+
},
|
|
400
|
+
"EHeatmapBar/show-names": {
|
|
401
|
+
"type": "boolean",
|
|
402
|
+
"description": "",
|
|
403
|
+
"default": true
|
|
404
|
+
},
|
|
405
|
+
"EHeatmapBar/colors": {
|
|
345
406
|
"type": "array",
|
|
346
407
|
"description": ""
|
|
347
408
|
},
|
|
348
|
-
"
|
|
409
|
+
"EHeatmapBar/label": {
|
|
349
410
|
"type": "string",
|
|
350
411
|
"description": "",
|
|
351
|
-
"default": "
|
|
412
|
+
"default": ""
|
|
413
|
+
},
|
|
414
|
+
"EHeatmapBar/dense": {
|
|
415
|
+
"type": "boolean",
|
|
416
|
+
"description": "",
|
|
417
|
+
"default": false
|
|
352
418
|
},
|
|
353
|
-
"
|
|
419
|
+
"EHoursHeatmap/items": {
|
|
420
|
+
"type": "array",
|
|
421
|
+
"description": ""
|
|
422
|
+
},
|
|
423
|
+
"EHoursHeatmap/selected-hour": {
|
|
424
|
+
"type": "string|number",
|
|
425
|
+
"description": "",
|
|
426
|
+
"default": ""
|
|
427
|
+
},
|
|
428
|
+
"EHoursHeatmap/show-hours": {
|
|
429
|
+
"type": "boolean",
|
|
430
|
+
"description": "",
|
|
431
|
+
"default": true
|
|
432
|
+
},
|
|
433
|
+
"EHoursHeatmap/colors": {
|
|
434
|
+
"type": "array",
|
|
435
|
+
"description": ""
|
|
436
|
+
},
|
|
437
|
+
"EHoursHeatmap/label": {
|
|
354
438
|
"type": "string",
|
|
355
439
|
"description": "",
|
|
356
|
-
"default": "
|
|
440
|
+
"default": ""
|
|
441
|
+
},
|
|
442
|
+
"EHoursHeatmap/dense": {
|
|
443
|
+
"type": "boolean",
|
|
444
|
+
"description": "",
|
|
445
|
+
"default": false
|
|
446
|
+
},
|
|
447
|
+
"EReadMore/content": {
|
|
448
|
+
"type": "array|string",
|
|
449
|
+
"description": ""
|
|
450
|
+
},
|
|
451
|
+
"EReadMore/max-length": {
|
|
452
|
+
"type": "number",
|
|
453
|
+
"description": ""
|
|
454
|
+
},
|
|
455
|
+
"EReadMore/show-all": {
|
|
456
|
+
"type": "boolean",
|
|
457
|
+
"description": "",
|
|
458
|
+
"default": false
|
|
459
|
+
},
|
|
460
|
+
"EReadMore/expand-text": {
|
|
461
|
+
"type": "string",
|
|
462
|
+
"description": "",
|
|
463
|
+
"default": "see more..."
|
|
464
|
+
},
|
|
465
|
+
"EReadMore/collapse-text": {
|
|
466
|
+
"type": "string",
|
|
467
|
+
"description": "",
|
|
468
|
+
"default": "less"
|
|
357
469
|
},
|
|
358
|
-
"
|
|
359
|
-
"type": "string
|
|
470
|
+
"EReadMore/more-text-with-placeholder": {
|
|
471
|
+
"type": "string",
|
|
360
472
|
"description": "",
|
|
361
|
-
"default":
|
|
473
|
+
"default": "and {count} more..."
|
|
362
474
|
}
|
|
363
475
|
}
|