@evercam/ui 0.0.55-beta.4 → 0.0.55-beta.40
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 +3 -0
- package/dist/attributes.json +298 -36
- package/dist/index.mjs +3725 -2356
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ECompareSeparator.vue.d.ts +7 -0
- package/dist/src/components/EGlobalSearch.vue.d.ts +29 -0
- package/dist/src/components/EHeatmapBar.vue.d.ts +3 -0
- package/dist/src/components/EHoursHeatmap.vue.d.ts +3 -0
- package/dist/src/components/EInput.vue.d.ts +3 -0
- package/dist/src/components/EReadMore.vue.d.ts +24 -0
- package/dist/src/components/ETimeline.vue.d.ts +32 -11
- package/dist/src/components/ETimelineMilestone.vue.d.ts +2 -2
- package/dist/src/components/EToggleSwitch.vue.d.ts +34 -0
- package/dist/src/components/ETruncatedDiv.vue.d.ts +8 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +181 -15
- package/dist/src/components/EZoomable.vue.d.ts +73 -0
- package/dist/src/components/styles/input.d.ts +140 -0
- package/dist/src/constants.d.ts +2 -0
- package/dist/src/index.d.ts +380 -24
- package/dist/src/mixins/event-listeners.d.ts +13 -0
- package/dist/src/mixins/inactivity-listener.d.ts +25 -0
- package/dist/src/mixins/index.d.ts +4 -0
- package/dist/src/mixins/timeouts.d.ts +8 -0
- package/dist/src/types.d.ts +30 -1
- package/dist/src/utils.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +409 -0
- package/dist/tags.json +104 -15
- package/dist/web-types.json +688 -80
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -174,33 +174,6 @@
|
|
|
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
|
-
},
|
|
204
177
|
"ETimeline/events-groups": {
|
|
205
178
|
"type": "object",
|
|
206
179
|
"description": ""
|
|
@@ -280,6 +253,11 @@
|
|
|
280
253
|
"description": "",
|
|
281
254
|
"default": 60
|
|
282
255
|
},
|
|
256
|
+
"ETimeline/chart-min-label-height": {
|
|
257
|
+
"type": "number",
|
|
258
|
+
"description": "",
|
|
259
|
+
"default": 18
|
|
260
|
+
},
|
|
283
261
|
"ETimeline/min-zoom": {
|
|
284
262
|
"type": "number",
|
|
285
263
|
"description": "",
|
|
@@ -298,14 +276,6 @@
|
|
|
298
276
|
"type": "string",
|
|
299
277
|
"description": ""
|
|
300
278
|
},
|
|
301
|
-
"ETimeline/min-visible-date": {
|
|
302
|
-
"type": "string",
|
|
303
|
-
"description": ""
|
|
304
|
-
},
|
|
305
|
-
"ETimeline/max-visible-date": {
|
|
306
|
-
"type": "string",
|
|
307
|
-
"description": ""
|
|
308
|
-
},
|
|
309
279
|
"ETimeline/cursor-timestamp": {
|
|
310
280
|
"type": "string|any",
|
|
311
281
|
"description": ""
|
|
@@ -348,7 +318,7 @@
|
|
|
348
318
|
"description": "",
|
|
349
319
|
"default": false
|
|
350
320
|
},
|
|
351
|
-
"ETimeline/
|
|
321
|
+
"ETimeline/zoom-to-interval-transition-duration": {
|
|
352
322
|
"type": "number",
|
|
353
323
|
"description": "",
|
|
354
324
|
"default": 800
|
|
@@ -362,5 +332,297 @@
|
|
|
362
332
|
"type": "number",
|
|
363
333
|
"description": "",
|
|
364
334
|
"default": 18
|
|
335
|
+
},
|
|
336
|
+
"ETimeline/milestones-first": {
|
|
337
|
+
"type": "boolean",
|
|
338
|
+
"description": "",
|
|
339
|
+
"default": true
|
|
340
|
+
},
|
|
341
|
+
"ETimeline/forbidden-intervals": {
|
|
342
|
+
"type": "array",
|
|
343
|
+
"description": ""
|
|
344
|
+
},
|
|
345
|
+
"ETimeline/forbidden-interval-color": {
|
|
346
|
+
"type": "string",
|
|
347
|
+
"description": "",
|
|
348
|
+
"default": "#ddd"
|
|
349
|
+
},
|
|
350
|
+
"ETimeline/focused-interval": {
|
|
351
|
+
"type": "object|any",
|
|
352
|
+
"description": ""
|
|
353
|
+
},
|
|
354
|
+
"ETimeline/locked": {
|
|
355
|
+
"type": "boolean",
|
|
356
|
+
"description": "",
|
|
357
|
+
"default": false
|
|
358
|
+
},
|
|
359
|
+
"ETimeline/timezone": {
|
|
360
|
+
"type": "string|any",
|
|
361
|
+
"description": ""
|
|
362
|
+
},
|
|
363
|
+
"EHeatmapBar/items": {
|
|
364
|
+
"type": "array",
|
|
365
|
+
"description": ""
|
|
366
|
+
},
|
|
367
|
+
"EHeatmapBar/selected-value": {
|
|
368
|
+
"type": "string|number",
|
|
369
|
+
"description": "",
|
|
370
|
+
"default": ""
|
|
371
|
+
},
|
|
372
|
+
"EHeatmapBar/show-counts": {
|
|
373
|
+
"type": "boolean",
|
|
374
|
+
"description": "",
|
|
375
|
+
"default": true
|
|
376
|
+
},
|
|
377
|
+
"EHeatmapBar/show-names": {
|
|
378
|
+
"type": "boolean",
|
|
379
|
+
"description": "",
|
|
380
|
+
"default": true
|
|
381
|
+
},
|
|
382
|
+
"EHeatmapBar/colors": {
|
|
383
|
+
"type": "array",
|
|
384
|
+
"description": ""
|
|
385
|
+
},
|
|
386
|
+
"EHeatmapBar/label": {
|
|
387
|
+
"type": "string",
|
|
388
|
+
"description": "",
|
|
389
|
+
"default": ""
|
|
390
|
+
},
|
|
391
|
+
"EHeatmapBar/dense": {
|
|
392
|
+
"type": "boolean",
|
|
393
|
+
"description": "",
|
|
394
|
+
"default": false
|
|
395
|
+
},
|
|
396
|
+
"EHoursHeatmap/items": {
|
|
397
|
+
"type": "array",
|
|
398
|
+
"description": ""
|
|
399
|
+
},
|
|
400
|
+
"EHoursHeatmap/selected-hour": {
|
|
401
|
+
"type": "string|number",
|
|
402
|
+
"description": "",
|
|
403
|
+
"default": ""
|
|
404
|
+
},
|
|
405
|
+
"EHoursHeatmap/show-hours": {
|
|
406
|
+
"type": "boolean",
|
|
407
|
+
"description": "",
|
|
408
|
+
"default": true
|
|
409
|
+
},
|
|
410
|
+
"EHoursHeatmap/colors": {
|
|
411
|
+
"type": "array",
|
|
412
|
+
"description": ""
|
|
413
|
+
},
|
|
414
|
+
"EHoursHeatmap/label": {
|
|
415
|
+
"type": "string",
|
|
416
|
+
"description": "",
|
|
417
|
+
"default": ""
|
|
418
|
+
},
|
|
419
|
+
"EHoursHeatmap/dense": {
|
|
420
|
+
"type": "boolean",
|
|
421
|
+
"description": "",
|
|
422
|
+
"default": false
|
|
423
|
+
},
|
|
424
|
+
"EReadMore/content": {
|
|
425
|
+
"type": "array|string",
|
|
426
|
+
"description": ""
|
|
427
|
+
},
|
|
428
|
+
"EReadMore/max-length": {
|
|
429
|
+
"type": "number",
|
|
430
|
+
"description": ""
|
|
431
|
+
},
|
|
432
|
+
"EReadMore/show-all": {
|
|
433
|
+
"type": "boolean",
|
|
434
|
+
"description": "",
|
|
435
|
+
"default": false
|
|
436
|
+
},
|
|
437
|
+
"EReadMore/expand-text": {
|
|
438
|
+
"type": "string",
|
|
439
|
+
"description": "",
|
|
440
|
+
"default": "see more..."
|
|
441
|
+
},
|
|
442
|
+
"EReadMore/collapse-text": {
|
|
443
|
+
"type": "string",
|
|
444
|
+
"description": "",
|
|
445
|
+
"default": "less"
|
|
446
|
+
},
|
|
447
|
+
"EReadMore/more-text-with-placeholder": {
|
|
448
|
+
"type": "string",
|
|
449
|
+
"description": "",
|
|
450
|
+
"default": "and {count} more..."
|
|
451
|
+
},
|
|
452
|
+
"ETruncatedDiv/width": {
|
|
453
|
+
"type": "string|number",
|
|
454
|
+
"description": ""
|
|
455
|
+
},
|
|
456
|
+
"ETruncatedDiv/fixed-width": {
|
|
457
|
+
"type": "boolean",
|
|
458
|
+
"description": "",
|
|
459
|
+
"default": false
|
|
460
|
+
},
|
|
461
|
+
"ECompareSeparator/x-offset": {
|
|
462
|
+
"type": "number|string",
|
|
463
|
+
"description": "",
|
|
464
|
+
"default": 50
|
|
465
|
+
},
|
|
466
|
+
"EToggleSwitch/options": {
|
|
467
|
+
"type": "array",
|
|
468
|
+
"description": ""
|
|
469
|
+
},
|
|
470
|
+
"EToggleSwitch/color": {
|
|
471
|
+
"type": "string",
|
|
472
|
+
"description": "",
|
|
473
|
+
"default": "brand"
|
|
474
|
+
},
|
|
475
|
+
"EToggleSwitch/size": {
|
|
476
|
+
"type": "string",
|
|
477
|
+
"description": "",
|
|
478
|
+
"default": "sm"
|
|
479
|
+
},
|
|
480
|
+
"EToggleSwitch/default-value": {
|
|
481
|
+
"type": "string|number|boolean",
|
|
482
|
+
"description": "",
|
|
483
|
+
"default": null
|
|
484
|
+
},
|
|
485
|
+
"EInput/type": {
|
|
486
|
+
"type": "string",
|
|
487
|
+
"description": "",
|
|
488
|
+
"default": "text"
|
|
489
|
+
},
|
|
490
|
+
"EInput/dark": {
|
|
491
|
+
"type": "boolean",
|
|
492
|
+
"description": "",
|
|
493
|
+
"default": false
|
|
494
|
+
},
|
|
495
|
+
"EInput/id": {
|
|
496
|
+
"type": "string",
|
|
497
|
+
"description": "",
|
|
498
|
+
"default": null
|
|
499
|
+
},
|
|
500
|
+
"EInput/name": {
|
|
501
|
+
"type": "string",
|
|
502
|
+
"description": "",
|
|
503
|
+
"default": null
|
|
504
|
+
},
|
|
505
|
+
"EInput/placeholder": {
|
|
506
|
+
"type": "string",
|
|
507
|
+
"description": "",
|
|
508
|
+
"default": null
|
|
509
|
+
},
|
|
510
|
+
"EInput/required": {
|
|
511
|
+
"type": "boolean",
|
|
512
|
+
"description": "",
|
|
513
|
+
"default": false
|
|
514
|
+
},
|
|
515
|
+
"EInput/disabled": {
|
|
516
|
+
"type": "boolean",
|
|
517
|
+
"description": "",
|
|
518
|
+
"default": false
|
|
519
|
+
},
|
|
520
|
+
"EInput/autofocus": {
|
|
521
|
+
"type": "boolean",
|
|
522
|
+
"description": "",
|
|
523
|
+
"default": false
|
|
524
|
+
},
|
|
525
|
+
"EInput/autofocus-delay": {
|
|
526
|
+
"type": "number",
|
|
527
|
+
"description": "",
|
|
528
|
+
"default": 100
|
|
529
|
+
},
|
|
530
|
+
"EInput/icon": {
|
|
531
|
+
"type": "string",
|
|
532
|
+
"description": "",
|
|
533
|
+
"default": null
|
|
534
|
+
},
|
|
535
|
+
"EInput/trailing": {
|
|
536
|
+
"type": "boolean",
|
|
537
|
+
"description": "",
|
|
538
|
+
"default": false
|
|
539
|
+
},
|
|
540
|
+
"EInput/leading": {
|
|
541
|
+
"type": "boolean",
|
|
542
|
+
"description": "",
|
|
543
|
+
"default": false
|
|
544
|
+
},
|
|
545
|
+
"EInput/rounded": {
|
|
546
|
+
"type": "boolean",
|
|
547
|
+
"description": "",
|
|
548
|
+
"default": true
|
|
549
|
+
},
|
|
550
|
+
"EInput/loading": {
|
|
551
|
+
"type": "boolean",
|
|
552
|
+
"description": "",
|
|
553
|
+
"default": false
|
|
554
|
+
},
|
|
555
|
+
"EInput/loading-position": {
|
|
556
|
+
"type": "string",
|
|
557
|
+
"description": "",
|
|
558
|
+
"default": "right"
|
|
559
|
+
},
|
|
560
|
+
"EInput/padded": {
|
|
561
|
+
"type": "boolean",
|
|
562
|
+
"description": "",
|
|
563
|
+
"default": true
|
|
564
|
+
},
|
|
565
|
+
"EInput/size": {
|
|
566
|
+
"type": "string",
|
|
567
|
+
"description": "",
|
|
568
|
+
"default": "sm"
|
|
569
|
+
},
|
|
570
|
+
"EInput/color": {
|
|
571
|
+
"type": "string",
|
|
572
|
+
"description": "",
|
|
573
|
+
"default": "default"
|
|
574
|
+
},
|
|
575
|
+
"EInput/variant": {
|
|
576
|
+
"type": "string",
|
|
577
|
+
"description": ""
|
|
578
|
+
},
|
|
579
|
+
"EInput/input-class": {
|
|
580
|
+
"type": "string",
|
|
581
|
+
"description": "",
|
|
582
|
+
"default": null
|
|
583
|
+
},
|
|
584
|
+
"EInput/model-value": {
|
|
585
|
+
"type": "string|number",
|
|
586
|
+
"description": "",
|
|
587
|
+
"default": null
|
|
588
|
+
},
|
|
589
|
+
"EGlobalSearch/dark": {
|
|
590
|
+
"type": "boolean",
|
|
591
|
+
"description": "",
|
|
592
|
+
"default": false
|
|
593
|
+
},
|
|
594
|
+
"EGlobalSearch/items": {
|
|
595
|
+
"type": "array",
|
|
596
|
+
"description": ""
|
|
597
|
+
},
|
|
598
|
+
"EGlobalSearch/timezone": {
|
|
599
|
+
"type": "string",
|
|
600
|
+
"description": "",
|
|
601
|
+
"default": "Europe/Dublin"
|
|
602
|
+
},
|
|
603
|
+
"EGlobalSearch/converted-date-format": {
|
|
604
|
+
"type": "string",
|
|
605
|
+
"description": "",
|
|
606
|
+
"default": "YYYY-MM-DDTHH:mm:ss"
|
|
607
|
+
},
|
|
608
|
+
"EGlobalSearch/current-date-format": {
|
|
609
|
+
"type": "string",
|
|
610
|
+
"description": "",
|
|
611
|
+
"default": "YYYY-MM-DDTHH:mm:ssZ"
|
|
612
|
+
},
|
|
613
|
+
"EGlobalSearch/is-fixed-position": {
|
|
614
|
+
"type": "boolean",
|
|
615
|
+
"description": "",
|
|
616
|
+
"default": true
|
|
617
|
+
},
|
|
618
|
+
"EGlobalSearch/is-hidden": {
|
|
619
|
+
"type": "boolean",
|
|
620
|
+
"description": "",
|
|
621
|
+
"default": true
|
|
622
|
+
},
|
|
623
|
+
"EGlobalSearch/deep": {
|
|
624
|
+
"type": "boolean",
|
|
625
|
+
"description": "",
|
|
626
|
+
"default": true
|
|
365
627
|
}
|
|
366
628
|
}
|