@evercam/ui 0.0.65 → 1.0.0-137f13197

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.
Files changed (95) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/README.md +2 -2
  3. package/dist/attributes.json +801 -69
  4. package/dist/components/EActionButton.vue.d.ts +17 -0
  5. package/dist/components/EAvatar.vue.d.ts +2 -0
  6. package/dist/components/{EFlagIcon.vue.d.ts → ECard.vue.d.ts} +1 -1
  7. package/dist/components/ECheckbox.vue.d.ts +5 -0
  8. package/dist/components/ECopyToClipboardBtn.vue.d.ts +31 -0
  9. package/dist/components/EDialog.vue.d.ts +34 -0
  10. package/dist/components/EDivider.vue.d.ts +5 -0
  11. package/dist/components/EEvercamLogo.vue.d.ts +6 -0
  12. package/dist/components/EExpandableMenu.vue.d.ts +9 -8
  13. package/dist/components/EFadeTransition.vue.d.ts +7 -0
  14. package/dist/components/EFeedackButton.vue.d.ts +42 -0
  15. package/dist/components/EGlobalSearch.vue.d.ts +1 -1
  16. package/dist/components/EHeatmapBar.vue.d.ts +13 -2
  17. package/dist/components/EImagePlayer.vue.d.ts +127 -0
  18. package/dist/components/ELayout.vue.d.ts +32 -0
  19. package/dist/components/EPopover.vue.d.ts +17 -0
  20. package/dist/components/EPulsatingDot.vue.d.ts +19 -0
  21. package/dist/components/ERadioGroup.vue.d.ts +46 -0
  22. package/dist/components/ERangeSlider.vue.d.ts +31 -0
  23. package/dist/components/EReadMore.vue.d.ts +1 -0
  24. package/dist/components/ESchedulePicker.vue.d.ts +27 -0
  25. package/dist/components/ESelect.vue.d.ts +60 -0
  26. package/dist/components/ETabs.vue.d.ts +25 -0
  27. package/dist/components/EToggleSwitch.vue.d.ts +42 -17
  28. package/dist/components/ETooltip.vue.d.ts +16 -0
  29. package/dist/components/EVideoPlayer.vue.d.ts +5 -2
  30. package/dist/components/EVoiceInput.vue.d.ts +49 -0
  31. package/dist/components/EVoiceInputVolumeIndicator.vue.d.ts +13 -0
  32. package/dist/components/EZoomSlider.vue.d.ts +5 -0
  33. package/dist/components/EZoomableImg.vue.d.ts +160 -0
  34. package/dist/components/charts/ECursor.vue.d.ts +73 -0
  35. package/dist/components/charts/ECursorBehavior.vue.d.ts +21 -0
  36. package/dist/components/charts/ETimelineBarsChart.vue.d.ts +114 -0
  37. package/dist/components/charts/ETimelineForbiddenInterval.vue.d.ts +83 -0
  38. package/dist/components/charts/ETimelineGroupContainer.vue.d.ts +89 -0
  39. package/dist/components/charts/ETimelineLinesChart.vue.d.ts +105 -0
  40. package/dist/components/charts/ETimelineRectsChart.vue.d.ts +122 -0
  41. package/dist/components/charts/ETimelineRectsChartGroupedDots.vue.d.ts +83 -0
  42. package/dist/components/charts/ETimelineSVGDefs.vue.d.ts +24 -0
  43. package/dist/components/charts/EXAxis.vue.d.ts +82 -0
  44. package/dist/components/charts/EXAxisBackground.vue.d.ts +68 -0
  45. package/dist/components/charts/EXAxisDetailed.vue.d.ts +68 -0
  46. package/dist/components/charts/EXAxisOverview.vue.d.ts +68 -0
  47. package/dist/components/charts/EZoomBehavior.vue.d.ts +57 -0
  48. package/dist/components/charts/constants.d.ts +64 -0
  49. package/dist/components/chat/EChat.vue.d.ts +54 -0
  50. package/dist/components/chat/EChatBody.vue.d.ts +21 -0
  51. package/dist/components/chat/EChatFooter.vue.d.ts +9 -0
  52. package/dist/components/chat/EChatHeader.vue.d.ts +10 -0
  53. package/dist/components/chat/EChatInput.vue.d.ts +28 -0
  54. package/dist/components/chat/EChatMessage.vue.d.ts +39 -0
  55. package/dist/components/chat/EChatMessageActions.vue.d.ts +20 -0
  56. package/dist/components/chat/EChatSuggestionCard.vue.d.ts +13 -0
  57. package/dist/components/chat/EChatWrapper.vue.d.ts +9 -0
  58. package/dist/components/chat/EMarkdown.vue.d.ts +27 -0
  59. package/dist/components/chat/MarkdownProcessor.d.ts +59 -0
  60. package/dist/components/svgIcons/Brightness.vue.d.ts +5 -0
  61. package/dist/components/svgIcons/MarkUp.vue.d.ts +5 -0
  62. package/dist/components/svgIcons/Nerves.vue.d.ts +5 -0
  63. package/dist/components/svgIcons/Tag.vue.d.ts +6 -0
  64. package/dist/components/svgIcons/TagPlus.vue.d.ts +6 -0
  65. package/dist/components/svgIcons/index.d.ts +14 -2
  66. package/dist/components/{ETimeline.config.d.ts → timeline/ETimeline.config.d.ts} +1 -1
  67. package/dist/components/timeline/ETimeline.vue.d.ts +171 -0
  68. package/dist/components/timeline/ETimelineCursor.vue.d.ts +9 -0
  69. package/dist/components/timeline/ETimelineMarker.vue.d.ts +17 -0
  70. package/dist/components/timeline/ETimelineMarkers.vue.d.ts +31 -0
  71. package/dist/components/{ETimelineMilestone.vue.d.ts → timeline/ETimelineMilestone.vue.d.ts} +52 -17
  72. package/dist/components/timeline/ETimelineSelectedTimestampCursor.vue.d.ts +9 -0
  73. package/dist/constants.d.ts +8 -6
  74. package/dist/directives/clickOutside.d.ts +3 -0
  75. package/dist/directives/index.d.ts +3 -2
  76. package/dist/index.d.ts +777 -259
  77. package/dist/index.mjs +17188 -6229
  78. package/dist/index.mjs.map +1 -1
  79. package/dist/index.umd.js +70 -27
  80. package/dist/index.umd.js.map +1 -1
  81. package/dist/mixins/form-field.d.ts +12 -0
  82. package/dist/mixins/inactivity-listener.d.ts +5 -5
  83. package/dist/mixins/index.d.ts +4 -1
  84. package/dist/mixins/select-form-field.d.ts +44 -0
  85. package/dist/mixins/toggle-open.d.ts +14 -0
  86. package/dist/style.css +1 -1
  87. package/dist/styles.css +1 -38965
  88. package/dist/tags.json +242 -21
  89. package/dist/types.d.ts +152 -38
  90. package/dist/utils.d.ts +16 -0
  91. package/dist/web-types.json +1774 -174
  92. package/package.json +29 -10
  93. package/dist/components/ETimeline.vue.d.ts +0 -339
  94. package/dist/components/charts/classNames.d.ts +0 -7
  95. /package/dist/directives/{resize-observer.d.ts → resizeObserver.d.ts} +0 -0
@@ -29,6 +29,11 @@
29
29
  "description": "",
30
30
  "default": ""
31
31
  },
32
+ "EAvatar/background-classes": {
33
+ "type": "string",
34
+ "description": "",
35
+ "default": "e-bg-gradient-to-r e-from-purple-500 e-to-indigo-500"
36
+ },
32
37
  "EBadge/text": {
33
38
  "type": "string",
34
39
  "description": "",
@@ -195,7 +200,17 @@
195
200
  "description": "",
196
201
  "default": false
197
202
  },
198
- "EVideoPlayer/streaming-token": {
203
+ "EVideoPlayer/is-edge-video": {
204
+ "type": "boolean",
205
+ "description": "",
206
+ "default": false
207
+ },
208
+ "EVideoPlayer/edge-streaming-token": {
209
+ "type": "string",
210
+ "description": "",
211
+ "default": ""
212
+ },
213
+ "EVideoPlayer/auth-token": {
199
214
  "type": "string",
200
215
  "description": "",
201
216
  "default": ""
@@ -215,6 +230,11 @@
215
230
  "description": "",
216
231
  "default": false
217
232
  },
233
+ "EVideoPlayer/show-loading-animation": {
234
+ "type": "boolean",
235
+ "description": "",
236
+ "default": false
237
+ },
218
238
  "EVideoPlayer/is-zoomable": {
219
239
  "type": "boolean",
220
240
  "description": "",
@@ -253,7 +273,7 @@
253
273
  "EVideoPlayer/loader-size": {
254
274
  "type": "string",
255
275
  "description": "",
256
- "default": "7xl"
276
+ "default": "SevenXl"
257
277
  },
258
278
  "EVideoPlayer/with-overlay-on-background": {
259
279
  "type": "boolean",
@@ -271,11 +291,8 @@
271
291
  },
272
292
  "ETimeline/events-groups": {
273
293
  "type": "object",
274
- "description": ""
275
- },
276
- "ETimeline/x-axes-config": {
277
- "type": "object",
278
- "description": ""
294
+ "description": "",
295
+ "default": null
279
296
  },
280
297
  "ETimeline/dark": {
281
298
  "type": "boolean",
@@ -299,11 +316,6 @@
299
316
  "description": "",
300
317
  "default": true
301
318
  },
302
- "ETimeline/disable-zoom": {
303
- "type": "boolean",
304
- "description": "",
305
- "default": false
306
- },
307
319
  "ETimeline/insert-zeros-at-interval": {
308
320
  "type": "string",
309
321
  "description": ""
@@ -313,21 +325,11 @@
313
325
  "description": "",
314
326
  "default": true
315
327
  },
316
- "ETimeline/curtains": {
317
- "type": "boolean",
318
- "description": "",
319
- "default": false
320
- },
321
328
  "ETimeline/show-labels": {
322
329
  "type": "boolean",
323
330
  "description": "",
324
331
  "default": true
325
332
  },
326
- "ETimeline/rect-min-width": {
327
- "type": "number",
328
- "description": "",
329
- "default": 1
330
- },
331
333
  "ETimeline/bar-height": {
332
334
  "type": "number",
333
335
  "description": "",
@@ -338,11 +340,6 @@
338
340
  "description": "",
339
341
  "default": 0
340
342
  },
341
- "ETimeline/bar-xpadding": {
342
- "type": "number",
343
- "description": "",
344
- "default": 0
345
- },
346
343
  "ETimeline/chart-min-height": {
347
344
  "type": "number",
348
345
  "description": "",
@@ -353,16 +350,6 @@
353
350
  "description": "",
354
351
  "default": 18
355
352
  },
356
- "ETimeline/min-zoom": {
357
- "type": "number",
358
- "description": "",
359
- "default": 0.0001
360
- },
361
- "ETimeline/max-zoom": {
362
- "type": "number",
363
- "description": "",
364
- "default": 850000
365
- },
366
353
  "ETimeline/min-date": {
367
354
  "type": "string",
368
355
  "description": ""
@@ -371,34 +358,16 @@
371
358
  "type": "string",
372
359
  "description": ""
373
360
  },
374
- "ETimeline/cursor-timestamp": {
375
- "type": "string|any",
376
- "description": ""
377
- },
378
- "ETimeline/selected-class": {
379
- "type": "string|any",
380
- "description": ""
381
- },
382
361
  "ETimeline/pan-on-date-click": {
383
362
  "type": "boolean",
384
363
  "description": "",
385
364
  "default": false
386
365
  },
387
- "ETimeline/pan-transition-duration": {
388
- "type": "number",
389
- "description": "",
390
- "default": 800
391
- },
392
366
  "ETimeline/selected-date": {
393
367
  "type": "string",
394
368
  "description": "",
395
369
  "default": ""
396
370
  },
397
- "ETimeline/auto-resize": {
398
- "type": "boolean",
399
- "description": "",
400
- "default": true
401
- },
402
371
  "ETimeline/markers": {
403
372
  "type": "array",
404
373
  "description": ""
@@ -413,16 +382,6 @@
413
382
  "description": "",
414
383
  "default": false
415
384
  },
416
- "ETimeline/zoom-to-interval-transition-duration": {
417
- "type": "number",
418
- "description": "",
419
- "default": 800
420
- },
421
- "ETimeline/zoom-to-boundaries-transition-duration": {
422
- "type": "number",
423
- "description": "",
424
- "default": 0
425
- },
426
385
  "ETimeline/milestone-bullet-size": {
427
386
  "type": "number",
428
387
  "description": "",
@@ -465,6 +424,16 @@
465
424
  "description": "",
466
425
  "default": "top"
467
426
  },
427
+ "ETimeline/max-domain-padding": {
428
+ "type": "number",
429
+ "description": "",
430
+ "default": 0
431
+ },
432
+ "ETimeline/show-cursor": {
433
+ "type": "boolean",
434
+ "description": "",
435
+ "default": true
436
+ },
468
437
  "EVideoEmbed/video-url": {
469
438
  "type": "string",
470
439
  "description": ""
@@ -495,6 +464,11 @@
495
464
  "description": "",
496
465
  "default": true
497
466
  },
467
+ "EHeatmapBar/names-only": {
468
+ "type": "boolean",
469
+ "description": "",
470
+ "default": false
471
+ },
498
472
  "EHeatmapBar/show-names": {
499
473
  "type": "boolean",
500
474
  "description": "",
@@ -504,6 +478,10 @@
504
478
  "type": "array",
505
479
  "description": ""
506
480
  },
481
+ "EHeatmapBar/colors-dark": {
482
+ "type": "array",
483
+ "description": ""
484
+ },
507
485
  "EHeatmapBar/label": {
508
486
  "type": "string",
509
487
  "description": "",
@@ -514,6 +492,11 @@
514
492
  "description": "",
515
493
  "default": false
516
494
  },
495
+ "EHeatmapBar/dark": {
496
+ "type": "boolean",
497
+ "description": "",
498
+ "default": false
499
+ },
517
500
  "EHoursHeatmap/items": {
518
501
  "type": "array",
519
502
  "description": ""
@@ -570,6 +553,11 @@
570
553
  "description": "",
571
554
  "default": "and {count} more..."
572
555
  },
556
+ "EReadMore/one-per-line": {
557
+ "type": "boolean",
558
+ "description": "",
559
+ "default": false
560
+ },
573
561
  "ETruncatedDiv/width": {
574
562
  "type": "string|number",
575
563
  "description": ""
@@ -599,10 +587,49 @@
599
587
  "description": "",
600
588
  "default": false
601
589
  },
590
+ "EToggleSwitch/value": {
591
+ "type": "string|number|boolean|object|array",
592
+ "description": "",
593
+ "default": ""
594
+ },
595
+ "EToggleSwitch/label": {
596
+ "type": "string",
597
+ "description": "",
598
+ "default": ""
599
+ },
600
+ "EToggleSwitch/disabled": {
601
+ "type": "boolean",
602
+ "description": "",
603
+ "default": false
604
+ },
605
+ "EToggleSwitch/type": {
606
+ "type": "string",
607
+ "description": "",
608
+ "default": "text"
609
+ },
610
+ "EToggleSwitch/required": {
611
+ "type": "boolean",
612
+ "description": "",
613
+ "default": false
614
+ },
615
+ "EToggleSwitch/errors": {
616
+ "type": "array",
617
+ "description": ""
618
+ },
602
619
  "EToggleSwitch/options": {
603
620
  "type": "array",
604
621
  "description": ""
605
622
  },
623
+ "EToggleSwitch/set-initial-value": {
624
+ "type": "boolean",
625
+ "description": "",
626
+ "default": true
627
+ },
628
+ "EToggleSwitch/multiple": {
629
+ "type": "boolean",
630
+ "description": "",
631
+ "default": false
632
+ },
606
633
  "EToggleSwitch/color": {
607
634
  "type": "string",
608
635
  "description": "",
@@ -613,10 +640,10 @@
613
640
  "description": "",
614
641
  "default": "sm"
615
642
  },
616
- "EToggleSwitch/default-value": {
617
- "type": "string|number|boolean",
643
+ "EToggleSwitch/vertical": {
644
+ "type": "boolean",
618
645
  "description": "",
619
- "default": null
646
+ "default": false
620
647
  },
621
648
  "EExpandableMenu/padding": {
622
649
  "type": "number",
@@ -692,8 +719,713 @@
692
719
  "description": "",
693
720
  "default": ""
694
721
  },
695
- "EFlagIcon/code": {
722
+ "EImagePlayer/frames": {
723
+ "type": "array",
724
+ "description": ""
725
+ },
726
+ "EImagePlayer/time-per-frame": {
727
+ "type": "number",
728
+ "description": "",
729
+ "default": 500
730
+ },
731
+ "EImagePlayer/is-playing": {
732
+ "type": "boolean",
733
+ "description": "",
734
+ "default": false
735
+ },
736
+ "EImagePlayer/frame-index": {
737
+ "type": "number",
738
+ "description": "",
739
+ "default": 0
740
+ },
741
+ "EImagePlayer/height": {
742
+ "type": "string|number",
743
+ "description": "",
744
+ "default": 0
745
+ },
746
+ "EImagePlayer/initial-quality": {
747
+ "type": "string|number",
748
+ "description": "",
749
+ "default": "auto"
750
+ },
751
+ "EImagePlayer/preload": {
752
+ "type": "boolean",
753
+ "description": "",
754
+ "default": true
755
+ },
756
+ "EImagePlayer/preload-size": {
757
+ "type": "number",
758
+ "description": "",
759
+ "default": 10
760
+ },
761
+ "EImagePlayer/reset-index-on-frames-change": {
762
+ "type": "boolean",
763
+ "description": "",
764
+ "default": false
765
+ },
766
+ "EImagePlayer/preload-while-playing": {
767
+ "type": "boolean",
768
+ "description": "",
769
+ "default": true
770
+ },
771
+ "EImagePlayer/with-controls": {
772
+ "type": "boolean",
773
+ "description": "",
774
+ "default": true
775
+ },
776
+ "EImagePlayer/play-on-click": {
777
+ "type": "boolean",
778
+ "description": "",
779
+ "default": true
780
+ },
781
+ "EImagePlayer/disable-play-pause-animation": {
782
+ "type": "boolean",
783
+ "description": "",
784
+ "default": false
785
+ },
786
+ "EImagePlayer/disable-play-button": {
787
+ "type": "boolean",
788
+ "description": "",
789
+ "default": false
790
+ },
791
+ "EImagePlayer/is-live": {
792
+ "type": "boolean",
793
+ "description": "",
794
+ "default": false
795
+ },
796
+ "EImagePlayer/selected-snapshot-quality": {
797
+ "type": "string|number",
798
+ "description": "",
799
+ "default": "auto"
800
+ },
801
+ "EImagePlayer/placeholder-image": {
802
+ "type": "string",
803
+ "description": "",
804
+ "default": ""
805
+ },
806
+ "EImagePlayer/is-mobile": {
807
+ "type": "boolean",
808
+ "description": "",
809
+ "default": false
810
+ },
811
+ "EImagePlayer/is-zoomable": {
812
+ "type": "boolean",
813
+ "description": "",
814
+ "default": true
815
+ },
816
+ "EImagePlayer/is-annotation-active": {
817
+ "type": "boolean",
818
+ "description": "",
819
+ "default": false
820
+ },
821
+ "EImagePlayer/aspect-ratio": {
822
+ "type": "number",
823
+ "description": "",
824
+ "default": null
825
+ },
826
+ "EImagePlayer/preloading-queue-id": {
827
+ "type": "number",
828
+ "description": "",
829
+ "default": 0
830
+ },
831
+ "EZoomableImg/src": {
832
+ "type": "string",
833
+ "description": "",
834
+ "default": ""
835
+ },
836
+ "EZoomableImg/alt": {
696
837
  "type": "string",
838
+ "description": "",
839
+ "default": ""
840
+ },
841
+ "EZoomableImg/allow-zoom": {
842
+ "type": "boolean",
843
+ "description": "",
844
+ "default": true
845
+ },
846
+ "EZoomableImg/img-props": {
847
+ "type": "object",
848
+ "description": ""
849
+ },
850
+ "EZoomableImg/slider": {
851
+ "type": "boolean",
852
+ "description": "",
853
+ "default": true
854
+ },
855
+ "EZoomableImg/disabled": {
856
+ "type": "boolean",
857
+ "description": "",
858
+ "default": false
859
+ },
860
+ "EZoomableImg/hide-content-on-blur": {
861
+ "type": "boolean",
862
+ "description": "",
863
+ "default": true
864
+ },
865
+ "EZoomableImg/initial-params": {
866
+ "type": "object",
867
+ "description": ""
868
+ },
869
+ "EZoomableImg/embedded": {
870
+ "type": "boolean",
871
+ "description": "",
872
+ "default": false
873
+ },
874
+ "EZoomableImg/overlay-style": {
875
+ "type": "object",
876
+ "description": ""
877
+ },
878
+ "EZoomableImg/foreground-style": {
879
+ "type": "object",
697
880
  "description": ""
881
+ },
882
+ "EZoomableImg/pan": {
883
+ "type": "boolean",
884
+ "description": "",
885
+ "default": true
886
+ },
887
+ "EZoomableImg/slot-transition": {
888
+ "type": "boolean",
889
+ "description": "",
890
+ "default": true
891
+ },
892
+ "EZoomableImg/height": {
893
+ "type": "string|number",
894
+ "description": ""
895
+ },
896
+ "EZoomableImg/is-calendar-active": {
897
+ "type": "boolean",
898
+ "description": "",
899
+ "default": false
900
+ },
901
+ "EZoomableImg/blur-background": {
902
+ "type": "boolean",
903
+ "description": "",
904
+ "default": false
905
+ },
906
+ "EZoomableImg/cover": {
907
+ "type": "boolean",
908
+ "description": "",
909
+ "default": false
910
+ },
911
+ "EZoomableImg/is-widget": {
912
+ "type": "boolean",
913
+ "description": "",
914
+ "default": false
915
+ },
916
+ "EZoomableImg/is-annotation-active": {
917
+ "type": "boolean",
918
+ "description": "",
919
+ "default": false
920
+ },
921
+ "EZoomableImg/is-mobile": {
922
+ "type": "boolean",
923
+ "description": "",
924
+ "default": false
925
+ },
926
+ "EZoomableImg/placeholder-image": {
927
+ "type": "string",
928
+ "description": "",
929
+ "default": ""
930
+ },
931
+ "EZoomableImg/show-miniature": {
932
+ "type": "boolean",
933
+ "description": "",
934
+ "default": false
935
+ },
936
+ "EZoomableImg/miniature-width": {
937
+ "type": "number",
938
+ "description": "",
939
+ "default": 150
940
+ },
941
+ "EZoomSlider/dark": {
942
+ "type": "boolean",
943
+ "description": "",
944
+ "default": true
945
+ },
946
+ "EActionButton/tooltip-text": {
947
+ "type": "string",
948
+ "description": "",
949
+ "default": null
950
+ },
951
+ "EActionButton/tooltip-color": {
952
+ "type": "string",
953
+ "description": "",
954
+ "default": "default"
955
+ },
956
+ "EActionButton/tooltip-position": {
957
+ "type": "string",
958
+ "description": "",
959
+ "default": "top"
960
+ },
961
+ "EActionButton/button-classes": {
962
+ "type": "string|object|array",
963
+ "description": "",
964
+ "default": null
965
+ },
966
+ "EActionButton/icon": {
967
+ "type": "string",
968
+ "description": "",
969
+ "default": null
970
+ },
971
+ "EActionButton/icon-size": {
972
+ "type": "string",
973
+ "description": "",
974
+ "default": "sm"
975
+ },
976
+ "EActionButton/icon-color": {
977
+ "type": "string",
978
+ "description": "",
979
+ "default": "default"
980
+ },
981
+ "EActionButton/dark": {
982
+ "type": "boolean",
983
+ "description": "",
984
+ "default": true
985
+ },
986
+ "ETooltip/text": {
987
+ "type": "string",
988
+ "description": ""
989
+ },
990
+ "ETooltip/position": {
991
+ "type": "string",
992
+ "description": "",
993
+ "default": "top"
994
+ },
995
+ "ETooltip/color": {
996
+ "type": "string",
997
+ "description": "",
998
+ "default": "default"
999
+ },
1000
+ "ETooltip/dark": {
1001
+ "type": "boolean",
1002
+ "description": "",
1003
+ "default": false
1004
+ },
1005
+ "ELayout/height": {
1006
+ "type": "string|number",
1007
+ "description": "",
1008
+ "default": null
1009
+ },
1010
+ "ELayout/with-overlay": {
1011
+ "type": "boolean",
1012
+ "description": "",
1013
+ "default": false
1014
+ },
1015
+ "EChat/dark": {
1016
+ "type": "boolean",
1017
+ "description": "",
1018
+ "default": false
1019
+ },
1020
+ "EChat/messages": {
1021
+ "type": "array",
1022
+ "description": ""
1023
+ },
1024
+ "EChat/user": {
1025
+ "type": "string",
1026
+ "description": "",
1027
+ "default": "You"
1028
+ },
1029
+ "EChat/embedded": {
1030
+ "type": "boolean",
1031
+ "description": "",
1032
+ "default": false
1033
+ },
1034
+ "EChat/show-header": {
1035
+ "type": "boolean",
1036
+ "description": "",
1037
+ "default": true
1038
+ },
1039
+ "EChat/inline-footer": {
1040
+ "type": "boolean",
1041
+ "description": "",
1042
+ "default": false
1043
+ },
1044
+ "EChat/height": {
1045
+ "type": "string",
1046
+ "description": ""
1047
+ },
1048
+ "EChat/width": {
1049
+ "type": "string",
1050
+ "description": ""
1051
+ },
1052
+ "EChat/show-user-avatar": {
1053
+ "type": "boolean",
1054
+ "description": "",
1055
+ "default": true
1056
+ },
1057
+ "EChat/show-copilot-avatar": {
1058
+ "type": "boolean",
1059
+ "description": "",
1060
+ "default": true
1061
+ },
1062
+ "EChat/readonly": {
1063
+ "type": "boolean",
1064
+ "description": "",
1065
+ "default": false
1066
+ },
1067
+ "EChat/is-loading": {
1068
+ "type": "boolean",
1069
+ "description": "",
1070
+ "default": false
1071
+ },
1072
+ "EChat/is-disabled": {
1073
+ "type": "boolean",
1074
+ "description": "",
1075
+ "default": false
1076
+ },
1077
+ "EChat/header-text": {
1078
+ "type": "string",
1079
+ "description": "",
1080
+ "default": "Evercam Copilot"
1081
+ },
1082
+ "EChat/input-placeholder": {
1083
+ "type": "string",
1084
+ "description": "",
1085
+ "default": "Message Copilot"
1086
+ },
1087
+ "EChat/loading-message": {
1088
+ "type": "string",
1089
+ "description": "",
1090
+ "default": ""
1091
+ },
1092
+ "EChat/suggestions": {
1093
+ "type": "array",
1094
+ "description": ""
1095
+ },
1096
+ "EChat/exposed-regexes": {
1097
+ "type": "array",
1098
+ "description": ""
1099
+ },
1100
+ "EChat/e-markdown-props": {
1101
+ "type": "object",
1102
+ "description": ""
1103
+ },
1104
+ "EChat/silence-timeout": {
1105
+ "type": "number",
1106
+ "description": "",
1107
+ "default": 1500
1108
+ },
1109
+ "ECopyToClipboardBtn/text": {
1110
+ "type": "function|string|number",
1111
+ "description": ""
1112
+ },
1113
+ "ECopyToClipboardBtn/button-text": {
1114
+ "type": "string",
1115
+ "description": "",
1116
+ "default": ""
1117
+ },
1118
+ "ECopyToClipboardBtn/button-classes": {
1119
+ "type": "string|object|array",
1120
+ "description": "",
1121
+ "default": null
1122
+ },
1123
+ "ECopyToClipboardBtn/description": {
1124
+ "type": "string",
1125
+ "description": "",
1126
+ "default": "Copy"
1127
+ },
1128
+ "ECopyToClipboardBtn/icon-type": {
1129
+ "type": "string",
1130
+ "description": "",
1131
+ "default": "far fa-copy"
1132
+ },
1133
+ "ECopyToClipboardBtn/text-only-button": {
1134
+ "type": "boolean",
1135
+ "description": "",
1136
+ "default": false
1137
+ },
1138
+ "ECopyToClipboardBtn/dark": {
1139
+ "type": "boolean",
1140
+ "description": "",
1141
+ "default": true
1142
+ },
1143
+ "EPopover/dark": {
1144
+ "type": "boolean",
1145
+ "description": "",
1146
+ "default": false
1147
+ },
1148
+ "EPopover/label": {
1149
+ "type": "string",
1150
+ "description": "",
1151
+ "default": "Click to open"
1152
+ },
1153
+ "EPopover/panel-side": {
1154
+ "type": "string",
1155
+ "description": "",
1156
+ "default": "center"
1157
+ },
1158
+ "EPopover/panel-classes": {
1159
+ "type": "object|string|array",
1160
+ "description": ""
1161
+ },
1162
+ "EVoiceRecorderToText/value": {
1163
+ "type": "string",
1164
+ "description": "",
1165
+ "default": ""
1166
+ },
1167
+ "EVoiceRecorderToText/dark": {
1168
+ "type": "boolean",
1169
+ "description": "",
1170
+ "default": false
1171
+ },
1172
+ "EVoiceRecorderToText/disabled": {
1173
+ "type": "boolean",
1174
+ "description": "",
1175
+ "default": false
1176
+ },
1177
+ "EVoiceRecorderToText/icon-size": {
1178
+ "type": "number",
1179
+ "description": "",
1180
+ "default": 10
1181
+ },
1182
+ "EVoiceRecorderToText/silence-timeout": {
1183
+ "type": "number",
1184
+ "description": "",
1185
+ "default": 1500
1186
+ },
1187
+ "ERadioGroup/value": {
1188
+ "type": "string|number|boolean|object|array",
1189
+ "description": "",
1190
+ "default": ""
1191
+ },
1192
+ "ERadioGroup/label": {
1193
+ "type": "string",
1194
+ "description": "",
1195
+ "default": ""
1196
+ },
1197
+ "ERadioGroup/disabled": {
1198
+ "type": "boolean",
1199
+ "description": "",
1200
+ "default": false
1201
+ },
1202
+ "ERadioGroup/type": {
1203
+ "type": "string",
1204
+ "description": "",
1205
+ "default": "text"
1206
+ },
1207
+ "ERadioGroup/required": {
1208
+ "type": "boolean",
1209
+ "description": "",
1210
+ "default": false
1211
+ },
1212
+ "ERadioGroup/errors": {
1213
+ "type": "array",
1214
+ "description": ""
1215
+ },
1216
+ "ERadioGroup/options": {
1217
+ "type": "array",
1218
+ "description": ""
1219
+ },
1220
+ "ERadioGroup/set-initial-value": {
1221
+ "type": "boolean",
1222
+ "description": "",
1223
+ "default": true
1224
+ },
1225
+ "ERadioGroup/multiple": {
1226
+ "type": "boolean",
1227
+ "description": "",
1228
+ "default": false
1229
+ },
1230
+ "ERadioGroup/dark": {
1231
+ "type": "boolean",
1232
+ "description": "",
1233
+ "default": false
1234
+ },
1235
+ "ERadioGroup/with-description": {
1236
+ "type": "boolean",
1237
+ "description": "",
1238
+ "default": true
1239
+ },
1240
+ "ESelect/value": {
1241
+ "type": "string|number|boolean|object|array",
1242
+ "description": "",
1243
+ "default": ""
1244
+ },
1245
+ "ESelect/label": {
1246
+ "type": "string",
1247
+ "description": "",
1248
+ "default": "Select an option"
1249
+ },
1250
+ "ESelect/disabled": {
1251
+ "type": "boolean",
1252
+ "description": "",
1253
+ "default": false
1254
+ },
1255
+ "ESelect/type": {
1256
+ "type": "string",
1257
+ "description": "",
1258
+ "default": "text"
1259
+ },
1260
+ "ESelect/required": {
1261
+ "type": "boolean",
1262
+ "description": "",
1263
+ "default": false
1264
+ },
1265
+ "ESelect/errors": {
1266
+ "type": "array",
1267
+ "description": ""
1268
+ },
1269
+ "ESelect/options": {
1270
+ "type": "array",
1271
+ "description": ""
1272
+ },
1273
+ "ESelect/set-initial-value": {
1274
+ "type": "boolean",
1275
+ "description": "",
1276
+ "default": true
1277
+ },
1278
+ "ESelect/multiple": {
1279
+ "type": "boolean",
1280
+ "description": "",
1281
+ "default": false
1282
+ },
1283
+ "ESelect/dark": {
1284
+ "type": "boolean",
1285
+ "description": "",
1286
+ "default": false
1287
+ },
1288
+ "ESelect/with-select-all": {
1289
+ "type": "boolean",
1290
+ "description": "",
1291
+ "default": false
1292
+ },
1293
+ "ESelect/custom-selection-label": {
1294
+ "type": "string",
1295
+ "description": "",
1296
+ "default": ""
1297
+ },
1298
+ "ESelect/name": {
1299
+ "type": "string",
1300
+ "description": "",
1301
+ "default": "Items"
1302
+ },
1303
+ "ESelect/with-checkbox": {
1304
+ "type": "boolean",
1305
+ "description": "",
1306
+ "default": false
1307
+ },
1308
+ "ESelect/searchable": {
1309
+ "type": "boolean",
1310
+ "description": "",
1311
+ "default": false
1312
+ },
1313
+ "ESelect/search-placeholder": {
1314
+ "type": "string",
1315
+ "description": "",
1316
+ "default": "Type to search..."
1317
+ },
1318
+ "ESelect/with-search-query-visible": {
1319
+ "type": "boolean",
1320
+ "description": "",
1321
+ "default": false
1322
+ },
1323
+ "ETabs/value": {
1324
+ "type": "string|number|boolean|object|array",
1325
+ "description": "",
1326
+ "default": ""
1327
+ },
1328
+ "ETabs/label": {
1329
+ "type": "string",
1330
+ "description": "",
1331
+ "default": ""
1332
+ },
1333
+ "ETabs/disabled": {
1334
+ "type": "boolean",
1335
+ "description": "",
1336
+ "default": false
1337
+ },
1338
+ "ETabs/type": {
1339
+ "type": "string",
1340
+ "description": "",
1341
+ "default": "text"
1342
+ },
1343
+ "ETabs/required": {
1344
+ "type": "boolean",
1345
+ "description": "",
1346
+ "default": false
1347
+ },
1348
+ "ETabs/errors": {
1349
+ "type": "array",
1350
+ "description": ""
1351
+ },
1352
+ "ETabs/dark": {
1353
+ "type": "boolean",
1354
+ "description": "",
1355
+ "default": false
1356
+ },
1357
+ "ETabs/vertical": {
1358
+ "type": "boolean",
1359
+ "description": "",
1360
+ "default": false
1361
+ },
1362
+ "ETabs/active-class": {
1363
+ "type": "string",
1364
+ "description": "",
1365
+ "default": null
1366
+ },
1367
+ "ECard/title": {
1368
+ "type": "string|any",
1369
+ "description": ""
1370
+ },
1371
+ "ECard/width": {
1372
+ "type": "number|string|any",
1373
+ "description": ""
1374
+ },
1375
+ "ECard/height": {
1376
+ "type": "number|string|any",
1377
+ "description": ""
1378
+ },
1379
+ "ECard/image-size": {
1380
+ "type": "number|string|any",
1381
+ "description": "",
1382
+ "default": 100
1383
+ },
1384
+ "ECard/image-padding": {
1385
+ "type": "number",
1386
+ "description": "",
1387
+ "default": 0
1388
+ },
1389
+ "ECard/image": {
1390
+ "type": "string|any",
1391
+ "description": ""
1392
+ },
1393
+ "ECard/blur-background": {
1394
+ "type": "boolean",
1395
+ "description": "",
1396
+ "default": false
1397
+ },
1398
+ "ECard/image-translation": {
1399
+ "type": "number|any",
1400
+ "description": ""
1401
+ },
1402
+ "ECard/dark": {
1403
+ "type": "boolean",
1404
+ "description": "",
1405
+ "default": false
1406
+ },
1407
+ "ESchedulePicker/schedule-type": {
1408
+ "type": "string",
1409
+ "description": "",
1410
+ "default": "continuous"
1411
+ },
1412
+ "ESchedulePicker/preload-schedule": {
1413
+ "type": "object|string",
1414
+ "description": ""
1415
+ },
1416
+ "ESchedulePicker/edit-mode": {
1417
+ "type": "boolean",
1418
+ "description": "",
1419
+ "default": true
1420
+ },
1421
+ "ESchedulePicker/dark": {
1422
+ "type": "boolean",
1423
+ "description": "",
1424
+ "default": false
1425
+ },
1426
+ "ESchedulePicker/step": {
1427
+ "type": "number",
1428
+ "description": "",
1429
+ "default": 15
698
1430
  }
699
1431
  }