@evercam/ui 0.0.62 → 0.0.63-Add-timeline-tests-1aaeb4ea7

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 (78) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +0 -2
  3. package/dist/attributes.json +530 -25
  4. package/dist/components/EActionButton.vue.d.ts +17 -0
  5. package/dist/components/EAvatar.vue.d.ts +2 -0
  6. package/dist/components/ECopyToClipboardBtn.vue.d.ts +31 -0
  7. package/dist/components/EDialog.vue.d.ts +3 -0
  8. package/dist/components/EEvercamLogo.vue.d.ts +6 -0
  9. package/dist/components/EExpandableMenu.vue.d.ts +10 -7
  10. package/dist/components/EFadeTransition.vue.d.ts +7 -0
  11. package/dist/components/EFeedackButton.vue.d.ts +38 -0
  12. package/dist/components/EFlagIcon.vue.d.ts +3 -0
  13. package/dist/components/EGlobalSearch.vue.d.ts +1 -0
  14. package/dist/components/EHeatmapBar.vue.d.ts +13 -2
  15. package/dist/components/EImagePlayer.vue.d.ts +127 -0
  16. package/dist/components/EImagesComparator.vue.d.ts +31 -0
  17. package/dist/components/ELayout.vue.d.ts +32 -0
  18. package/dist/components/EPulsatingDot.vue.d.ts +19 -0
  19. package/dist/components/ERadioGroup.vue.d.ts +22 -0
  20. package/dist/components/EToggleSwitch.vue.d.ts +11 -13
  21. package/dist/components/ETooltip.vue.d.ts +12 -0
  22. package/dist/components/EVideoPlayer.vue.d.ts +0 -1
  23. package/dist/components/EVoiceInput.vue.d.ts +49 -0
  24. package/dist/components/EVoiceInputVolumeIndicator.vue.d.ts +13 -0
  25. package/dist/components/EZoomSlider.vue.d.ts +5 -0
  26. package/dist/components/EZoomableImg.vue.d.ts +160 -0
  27. package/dist/components/charts/ECursor.vue.d.ts +74 -0
  28. package/dist/components/charts/ECursorBehavior.vue.d.ts +21 -0
  29. package/dist/components/charts/ETimelineGroupContainer.vue.d.ts +90 -0
  30. package/dist/components/charts/ETimelineRectsChart.vue.d.ts +111 -0
  31. package/dist/components/charts/ETimelineSVGDefs.vue.d.ts +3 -0
  32. package/dist/components/charts/EXAxis.vue.d.ts +83 -0
  33. package/dist/components/charts/EXAxisBackground.vue.d.ts +69 -0
  34. package/dist/components/charts/EXAxisDetailed.vue.d.ts +69 -0
  35. package/dist/components/charts/EXAxisOverview.vue.d.ts +69 -0
  36. package/dist/components/charts/EZoomBehavior.vue.d.ts +58 -0
  37. package/dist/components/charts/constants.d.ts +64 -0
  38. package/dist/components/chat/EChat.vue.d.ts +54 -0
  39. package/dist/components/chat/EChatBody.vue.d.ts +21 -0
  40. package/dist/components/chat/EChatFooter.vue.d.ts +9 -0
  41. package/dist/components/chat/EChatHeader.vue.d.ts +11 -0
  42. package/dist/components/chat/EChatInput.vue.d.ts +28 -0
  43. package/dist/components/chat/EChatMessage.vue.d.ts +38 -0
  44. package/dist/components/chat/EChatMessageActions.vue.d.ts +19 -0
  45. package/dist/components/chat/EChatSuggestionCard.vue.d.ts +13 -0
  46. package/dist/components/chat/EChatWrapper.vue.d.ts +9 -0
  47. package/dist/components/chat/EMarkdown.vue.d.ts +27 -0
  48. package/dist/components/chat/MarkdownProcessor.d.ts +59 -0
  49. package/dist/components/svgIcons/Robot.vue.d.ts +3 -0
  50. package/dist/components/svgIcons/Tag.vue.d.ts +6 -0
  51. package/dist/components/svgIcons/TagPlus.vue.d.ts +6 -0
  52. package/dist/components/svgIcons/index.d.ts +8 -2
  53. package/dist/components/{ETimeline.config.d.ts → timeline/ETimeline.config.d.ts} +1 -1
  54. package/dist/components/{ETimeline.vue.d.ts → timeline/ETimeline.vue.d.ts} +43 -139
  55. package/dist/components/timeline/ETimelineCursor.vue.d.ts +9 -0
  56. package/dist/components/timeline/ETimelineMarker.vue.d.ts +17 -0
  57. package/dist/components/timeline/ETimelineMarkers.vue.d.ts +31 -0
  58. package/dist/components/{ETimelineMilestone.vue.d.ts → timeline/ETimelineMilestone.vue.d.ts} +53 -17
  59. package/dist/components/timeline/ETimelineSelectedTimestampCursor.vue.d.ts +9 -0
  60. package/dist/constants.d.ts +4 -2
  61. package/dist/directives/clickOutside.d.ts +3 -0
  62. package/dist/directives/index.d.ts +3 -2
  63. package/dist/index.d.ts +604 -160
  64. package/dist/index.mjs +15505 -5592
  65. package/dist/index.mjs.map +1 -1
  66. package/dist/index.umd.js +22 -14
  67. package/dist/index.umd.js.map +1 -1
  68. package/dist/mixins/event-listeners.d.ts +2 -0
  69. package/dist/mixins/inactivity-listener.d.ts +10 -6
  70. package/dist/style.css +1 -1
  71. package/dist/styles.css +28386 -27327
  72. package/dist/tags.json +173 -9
  73. package/dist/types.d.ts +98 -5
  74. package/dist/utils.d.ts +9 -0
  75. package/dist/web-types.json +1181 -57
  76. package/package.json +30 -15
  77. package/dist/components/charts/classNames.d.ts +0 -7
  78. /package/dist/directives/{resize-observer.d.ts → resizeObserver.d.ts} +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,26 @@
1
+ # Changelog
2
+
3
+ ## 0.0.58-preview-evercam-ui-ci-8a95cf24a (2024-04-04)
4
+
5
+ - updating package version to 0.0.58-preview-evercam-ui-ci-8a95cf24a ([0d10b1294](https://github.com/evercam/evercam-frontend/commit/0d10b1294b3cfc824d0dd63090bdeb1caeb00c24))
6
+ - trigger new build ([8a95cf24a](https://github.com/evercam/evercam-frontend/commit/8a95cf24ad763ab2f4df098bf1c26b60772eea66))
7
+ - updating @evercam/ui to 0.0.58-preview-evercam-ui-ci-d73244c2c ([0d337b326](https://github.com/evercam/evercam-frontend/commit/0d337b326d4021e849d976a1b19a9bffe9518edc))
8
+ - updating @evercam/ui to 0.0.58-preview-evercam-ui-ci-d73244c2c ([ae32eb977](https://github.com/evercam/evercam-frontend/commit/ae32eb9774dce7c7db0f9afeb934cc55be03eea4))
9
+ - updating package version to 0.0.58-preview-evercam-ui-ci-d73244c2c ([2c7f9738a](https://github.com/evercam/evercam-frontend/commit/2c7f9738a697adc10b789b0ec1cd13864afd6d0b))
10
+ - trigger a build ([d73244c2c](https://github.com/evercam/evercam-frontend/commit/d73244c2c410d9bcc7df67abe84f4ac219fbc85d))
11
+ - trigger build ([6ba99d20a](https://github.com/evercam/evercam-frontend/commit/6ba99d20a84aeee97cab918dc1f0207c7c68d624))
12
+ - trigger build ([162216864](https://github.com/evercam/evercam-frontend/commit/1622168643afefad3bf51978616c44371a42a645))
13
+ - updating @evercam/ui to 0.0.58-preview-evercam-ui-ci-1581e3229 ([2ab9d4eda](https://github.com/evercam/evercam-frontend/commit/2ab9d4eda6f9999c394a3038f6945a22d8ab8968))
14
+ - updating package version to 0.0.58-preview-evercam-ui-ci-1581e3229 ([01f2a9f6b](https://github.com/evercam/evercam-frontend/commit/01f2a9f6b43e6a3778a638dcc0dc8e541d1e5a3d))
15
+ - fix it ([1581e3229](https://github.com/evercam/evercam-frontend/commit/1581e322926ee979f505b27f5e950c7e534a4182))
16
+ - updating @evercam/ui to 0.0.58-preview-evercam-ui-ci-00c612b81 ([ebe811d26](https://github.com/evercam/evercam-frontend/commit/ebe811d2656741da27c56d52a59c58aa0bcbc11e))
17
+ - Update changelog for 0.0.58-preview-evercam-ui-ci-00c612b81 ([fa028fa2c](https://github.com/evercam/evercam-frontend/commit/fa028fa2cbc62539053320d0cd657b31b6bdda4f))
18
+ - updating package version to 0.0.58-preview-evercam-ui-ci-00c612b81 ([b0c521577](https://github.com/evercam/evercam-frontend/commit/b0c5215773e22c06ae410a0974e6baf020374b27))
19
+ - feat: create release script for evercam-ui ([00c612b81](https://github.com/evercam/evercam-frontend/commit/00c612b81e68653aaf6bc9dcfd5a098426089811))
20
+
21
+ ## 0.0.58-preview-evercam-ui-ci-00c612b81 (2024-04-04)
22
+
23
+ - updating package version to 0.0.58-preview-evercam-ui-ci-00c612b81 ([b0c521577](https://github.com/evercam/evercam-frontend/commit/b0c5215773e22c06ae410a0974e6baf020374b27))
24
+ - feat: create release script for evercam-ui ([00c612b81](https://github.com/evercam/evercam-frontend/commit/00c612b81e68653aaf6bc9dcfd5a098426089811))
25
+
26
+ // trigger a release
package/README.md CHANGED
@@ -44,5 +44,3 @@ export default {
44
44
  You can preview the components and their stories by running the [Histoire](https://histoire.dev) sever:
45
45
 
46
46
  `yarn story:dev`
47
- ..........
48
- //
@@ -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": "",
@@ -271,11 +276,8 @@
271
276
  },
272
277
  "ETimeline/events-groups": {
273
278
  "type": "object",
274
- "description": ""
275
- },
276
- "ETimeline/x-axes-config": {
277
- "type": "object",
278
- "description": ""
279
+ "description": "",
280
+ "default": null
279
281
  },
280
282
  "ETimeline/dark": {
281
283
  "type": "boolean",
@@ -313,11 +315,6 @@
313
315
  "description": "",
314
316
  "default": true
315
317
  },
316
- "ETimeline/curtains": {
317
- "type": "boolean",
318
- "description": "",
319
- "default": false
320
- },
321
318
  "ETimeline/show-labels": {
322
319
  "type": "boolean",
323
320
  "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,10 +358,6 @@
371
358
  "type": "string",
372
359
  "description": ""
373
360
  },
374
- "ETimeline/cursor-timestamp": {
375
- "type": "string|any",
376
- "description": ""
377
- },
378
361
  "ETimeline/selected-class": {
379
362
  "type": "string|any",
380
363
  "description": ""
@@ -460,6 +443,21 @@
460
443
  "description": "",
461
444
  "default": false
462
445
  },
446
+ "ETimeline/tooltip-position": {
447
+ "type": "string",
448
+ "description": "",
449
+ "default": "top"
450
+ },
451
+ "ETimeline/max-domain-padding": {
452
+ "type": "number",
453
+ "description": "",
454
+ "default": 0
455
+ },
456
+ "ETimeline/show-cursor": {
457
+ "type": "boolean",
458
+ "description": "",
459
+ "default": true
460
+ },
463
461
  "EVideoEmbed/video-url": {
464
462
  "type": "string",
465
463
  "description": ""
@@ -490,6 +488,11 @@
490
488
  "description": "",
491
489
  "default": true
492
490
  },
491
+ "EHeatmapBar/names-only": {
492
+ "type": "boolean",
493
+ "description": "",
494
+ "default": false
495
+ },
493
496
  "EHeatmapBar/show-names": {
494
497
  "type": "boolean",
495
498
  "description": "",
@@ -499,6 +502,10 @@
499
502
  "type": "array",
500
503
  "description": ""
501
504
  },
505
+ "EHeatmapBar/colors-dark": {
506
+ "type": "array",
507
+ "description": ""
508
+ },
502
509
  "EHeatmapBar/label": {
503
510
  "type": "string",
504
511
  "description": "",
@@ -509,6 +516,11 @@
509
516
  "description": "",
510
517
  "default": false
511
518
  },
519
+ "EHeatmapBar/dark": {
520
+ "type": "boolean",
521
+ "description": "",
522
+ "default": false
523
+ },
512
524
  "EHoursHeatmap/items": {
513
525
  "type": "array",
514
526
  "description": ""
@@ -579,6 +591,21 @@
579
591
  "description": "",
580
592
  "default": 50
581
593
  },
594
+ "EImagesComparator/before-image-src": {
595
+ "type": "string",
596
+ "description": "",
597
+ "default": null
598
+ },
599
+ "EImagesComparator/after-image-src": {
600
+ "type": "string",
601
+ "description": "",
602
+ "default": null
603
+ },
604
+ "EImagesComparator/is-loading": {
605
+ "type": "boolean",
606
+ "description": "",
607
+ "default": false
608
+ },
582
609
  "EToggleSwitch/options": {
583
610
  "type": "array",
584
611
  "description": ""
@@ -593,11 +620,16 @@
593
620
  "description": "",
594
621
  "default": "sm"
595
622
  },
596
- "EToggleSwitch/default-value": {
623
+ "EToggleSwitch/value": {
597
624
  "type": "string|number|boolean",
598
625
  "description": "",
599
626
  "default": null
600
627
  },
628
+ "EToggleSwitch/disabled": {
629
+ "type": "boolean",
630
+ "description": "",
631
+ "default": false
632
+ },
601
633
  "EExpandableMenu/padding": {
602
634
  "type": "number",
603
635
  "description": "",
@@ -671,5 +703,478 @@
671
703
  "type": "string",
672
704
  "description": "",
673
705
  "default": ""
706
+ },
707
+ "EFlagIcon/code": {
708
+ "type": "string",
709
+ "description": ""
710
+ },
711
+ "EImagePlayer/frames": {
712
+ "type": "array",
713
+ "description": ""
714
+ },
715
+ "EImagePlayer/time-per-frame": {
716
+ "type": "number",
717
+ "description": "",
718
+ "default": 500
719
+ },
720
+ "EImagePlayer/is-playing": {
721
+ "type": "boolean",
722
+ "description": "",
723
+ "default": false
724
+ },
725
+ "EImagePlayer/frame-index": {
726
+ "type": "number",
727
+ "description": "",
728
+ "default": 0
729
+ },
730
+ "EImagePlayer/height": {
731
+ "type": "string|number",
732
+ "description": "",
733
+ "default": 0
734
+ },
735
+ "EImagePlayer/initial-quality": {
736
+ "type": "string|number",
737
+ "description": "",
738
+ "default": "auto"
739
+ },
740
+ "EImagePlayer/preload": {
741
+ "type": "boolean",
742
+ "description": "",
743
+ "default": true
744
+ },
745
+ "EImagePlayer/preload-size": {
746
+ "type": "number",
747
+ "description": "",
748
+ "default": 10
749
+ },
750
+ "EImagePlayer/reset-index-on-frames-change": {
751
+ "type": "boolean",
752
+ "description": "",
753
+ "default": false
754
+ },
755
+ "EImagePlayer/preload-while-playing": {
756
+ "type": "boolean",
757
+ "description": "",
758
+ "default": true
759
+ },
760
+ "EImagePlayer/with-controls": {
761
+ "type": "boolean",
762
+ "description": "",
763
+ "default": true
764
+ },
765
+ "EImagePlayer/play-on-click": {
766
+ "type": "boolean",
767
+ "description": "",
768
+ "default": true
769
+ },
770
+ "EImagePlayer/disable-play-pause-animation": {
771
+ "type": "boolean",
772
+ "description": "",
773
+ "default": false
774
+ },
775
+ "EImagePlayer/disable-play-button": {
776
+ "type": "boolean",
777
+ "description": "",
778
+ "default": false
779
+ },
780
+ "EImagePlayer/is-live": {
781
+ "type": "boolean",
782
+ "description": "",
783
+ "default": false
784
+ },
785
+ "EImagePlayer/selected-snapshot-quality": {
786
+ "type": "string|number",
787
+ "description": "",
788
+ "default": "auto"
789
+ },
790
+ "EImagePlayer/placeholder-image": {
791
+ "type": "string",
792
+ "description": "",
793
+ "default": ""
794
+ },
795
+ "EImagePlayer/is-mobile": {
796
+ "type": "boolean",
797
+ "description": "",
798
+ "default": false
799
+ },
800
+ "EImagePlayer/is-zoomable": {
801
+ "type": "boolean",
802
+ "description": "",
803
+ "default": true
804
+ },
805
+ "EImagePlayer/is-annotation-active": {
806
+ "type": "boolean",
807
+ "description": "",
808
+ "default": false
809
+ },
810
+ "EImagePlayer/aspect-ratio": {
811
+ "type": "number",
812
+ "description": "",
813
+ "default": null
814
+ },
815
+ "EImagePlayer/preloading-queue-id": {
816
+ "type": "number",
817
+ "description": "",
818
+ "default": 0
819
+ },
820
+ "EZoomableImg/src": {
821
+ "type": "string",
822
+ "description": "",
823
+ "default": ""
824
+ },
825
+ "EZoomableImg/alt": {
826
+ "type": "string",
827
+ "description": "",
828
+ "default": ""
829
+ },
830
+ "EZoomableImg/allow-zoom": {
831
+ "type": "boolean",
832
+ "description": "",
833
+ "default": true
834
+ },
835
+ "EZoomableImg/img-props": {
836
+ "type": "object",
837
+ "description": ""
838
+ },
839
+ "EZoomableImg/slider": {
840
+ "type": "boolean",
841
+ "description": "",
842
+ "default": true
843
+ },
844
+ "EZoomableImg/disabled": {
845
+ "type": "boolean",
846
+ "description": "",
847
+ "default": false
848
+ },
849
+ "EZoomableImg/hide-content-on-blur": {
850
+ "type": "boolean",
851
+ "description": "",
852
+ "default": true
853
+ },
854
+ "EZoomableImg/initial-params": {
855
+ "type": "object",
856
+ "description": ""
857
+ },
858
+ "EZoomableImg/embedded": {
859
+ "type": "boolean",
860
+ "description": "",
861
+ "default": false
862
+ },
863
+ "EZoomableImg/overlay-style": {
864
+ "type": "object",
865
+ "description": ""
866
+ },
867
+ "EZoomableImg/foreground-style": {
868
+ "type": "object",
869
+ "description": ""
870
+ },
871
+ "EZoomableImg/pan": {
872
+ "type": "boolean",
873
+ "description": "",
874
+ "default": true
875
+ },
876
+ "EZoomableImg/slot-transition": {
877
+ "type": "boolean",
878
+ "description": "",
879
+ "default": true
880
+ },
881
+ "EZoomableImg/height": {
882
+ "type": "string|number",
883
+ "description": ""
884
+ },
885
+ "EZoomableImg/is-calendar-active": {
886
+ "type": "boolean",
887
+ "description": "",
888
+ "default": false
889
+ },
890
+ "EZoomableImg/blur-background": {
891
+ "type": "boolean",
892
+ "description": "",
893
+ "default": false
894
+ },
895
+ "EZoomableImg/cover": {
896
+ "type": "boolean",
897
+ "description": "",
898
+ "default": false
899
+ },
900
+ "EZoomableImg/is-widget": {
901
+ "type": "boolean",
902
+ "description": "",
903
+ "default": false
904
+ },
905
+ "EZoomableImg/is-annotation-active": {
906
+ "type": "boolean",
907
+ "description": "",
908
+ "default": false
909
+ },
910
+ "EZoomableImg/is-mobile": {
911
+ "type": "boolean",
912
+ "description": "",
913
+ "default": false
914
+ },
915
+ "EZoomableImg/placeholder-image": {
916
+ "type": "string",
917
+ "description": "",
918
+ "default": ""
919
+ },
920
+ "EZoomableImg/show-miniature": {
921
+ "type": "boolean",
922
+ "description": "",
923
+ "default": false
924
+ },
925
+ "EZoomableImg/miniature-width": {
926
+ "type": "number",
927
+ "description": "",
928
+ "default": 150
929
+ },
930
+ "EZoomSlider/dark": {
931
+ "type": "boolean",
932
+ "description": "",
933
+ "default": true
934
+ },
935
+ "EActionButton/tooltip-text": {
936
+ "type": "string",
937
+ "description": "",
938
+ "default": null
939
+ },
940
+ "EActionButton/tooltip-color": {
941
+ "type": "string",
942
+ "description": "",
943
+ "default": "default"
944
+ },
945
+ "EActionButton/tooltip-position": {
946
+ "type": "string",
947
+ "description": "",
948
+ "default": "top"
949
+ },
950
+ "EActionButton/button-classes": {
951
+ "type": "string|object|array",
952
+ "description": "",
953
+ "default": null
954
+ },
955
+ "EActionButton/icon": {
956
+ "type": "string",
957
+ "description": "",
958
+ "default": null
959
+ },
960
+ "EActionButton/icon-size": {
961
+ "type": "string",
962
+ "description": "",
963
+ "default": "sm"
964
+ },
965
+ "EActionButton/icon-color": {
966
+ "type": "string",
967
+ "description": "",
968
+ "default": "default"
969
+ },
970
+ "EActionButton/dark": {
971
+ "type": "boolean",
972
+ "description": "",
973
+ "default": true
974
+ },
975
+ "ETooltip/text": {
976
+ "type": "string",
977
+ "description": ""
978
+ },
979
+ "ETooltip/position": {
980
+ "type": "string",
981
+ "description": "",
982
+ "default": "top"
983
+ },
984
+ "ETooltip/color": {
985
+ "type": "string",
986
+ "description": "",
987
+ "default": "default"
988
+ },
989
+ "ETooltip/dark": {
990
+ "type": "boolean",
991
+ "description": "",
992
+ "default": false
993
+ },
994
+ "ELayout/height": {
995
+ "type": "string|number",
996
+ "description": "",
997
+ "default": null
998
+ },
999
+ "ELayout/with-overlay": {
1000
+ "type": "boolean",
1001
+ "description": "",
1002
+ "default": false
1003
+ },
1004
+ "EChat/dark": {
1005
+ "type": "boolean",
1006
+ "description": "",
1007
+ "default": false
1008
+ },
1009
+ "EChat/messages": {
1010
+ "type": "array",
1011
+ "description": ""
1012
+ },
1013
+ "EChat/user": {
1014
+ "type": "string",
1015
+ "description": "",
1016
+ "default": "You"
1017
+ },
1018
+ "EChat/embedded": {
1019
+ "type": "boolean",
1020
+ "description": "",
1021
+ "default": false
1022
+ },
1023
+ "EChat/show-header": {
1024
+ "type": "boolean",
1025
+ "description": "",
1026
+ "default": true
1027
+ },
1028
+ "EChat/inline-footer": {
1029
+ "type": "boolean",
1030
+ "description": "",
1031
+ "default": false
1032
+ },
1033
+ "EChat/height": {
1034
+ "type": "string",
1035
+ "description": ""
1036
+ },
1037
+ "EChat/width": {
1038
+ "type": "string",
1039
+ "description": ""
1040
+ },
1041
+ "EChat/show-user-avatar": {
1042
+ "type": "boolean",
1043
+ "description": "",
1044
+ "default": true
1045
+ },
1046
+ "EChat/show-copilot-avatar": {
1047
+ "type": "boolean",
1048
+ "description": "",
1049
+ "default": true
1050
+ },
1051
+ "EChat/readonly": {
1052
+ "type": "boolean",
1053
+ "description": "",
1054
+ "default": false
1055
+ },
1056
+ "EChat/is-loading": {
1057
+ "type": "boolean",
1058
+ "description": "",
1059
+ "default": false
1060
+ },
1061
+ "EChat/is-disabled": {
1062
+ "type": "boolean",
1063
+ "description": "",
1064
+ "default": false
1065
+ },
1066
+ "EChat/header-text": {
1067
+ "type": "string",
1068
+ "description": "",
1069
+ "default": "Evercam Copilot"
1070
+ },
1071
+ "EChat/input-placeholder": {
1072
+ "type": "string",
1073
+ "description": "",
1074
+ "default": "Message Copilot"
1075
+ },
1076
+ "EChat/loading-message": {
1077
+ "type": "string",
1078
+ "description": "",
1079
+ "default": ""
1080
+ },
1081
+ "EChat/suggestions": {
1082
+ "type": "array",
1083
+ "description": ""
1084
+ },
1085
+ "EChat/exposed-regexes": {
1086
+ "type": "array",
1087
+ "description": ""
1088
+ },
1089
+ "EChat/e-markdown-props": {
1090
+ "type": "object",
1091
+ "description": ""
1092
+ },
1093
+ "EChat/silence-timeout": {
1094
+ "type": "number",
1095
+ "description": "",
1096
+ "default": 1500
1097
+ },
1098
+ "ECopyToClipboardBtn/text": {
1099
+ "type": "function|string|number",
1100
+ "description": ""
1101
+ },
1102
+ "ECopyToClipboardBtn/button-text": {
1103
+ "type": "string",
1104
+ "description": "",
1105
+ "default": ""
1106
+ },
1107
+ "ECopyToClipboardBtn/button-classes": {
1108
+ "type": "string|object|array",
1109
+ "description": "",
1110
+ "default": null
1111
+ },
1112
+ "ECopyToClipboardBtn/description": {
1113
+ "type": "string",
1114
+ "description": "",
1115
+ "default": "Copy"
1116
+ },
1117
+ "ECopyToClipboardBtn/icon-type": {
1118
+ "type": "string",
1119
+ "description": "",
1120
+ "default": "far fa-copy"
1121
+ },
1122
+ "ECopyToClipboardBtn/text-only-button": {
1123
+ "type": "boolean",
1124
+ "description": "",
1125
+ "default": false
1126
+ },
1127
+ "ECopyToClipboardBtn/dark": {
1128
+ "type": "boolean",
1129
+ "description": "",
1130
+ "default": true
1131
+ },
1132
+ "EVoiceRecorderToText/value": {
1133
+ "type": "string",
1134
+ "description": "",
1135
+ "default": ""
1136
+ },
1137
+ "EVoiceRecorderToText/dark": {
1138
+ "type": "boolean",
1139
+ "description": "",
1140
+ "default": false
1141
+ },
1142
+ "EVoiceRecorderToText/disabled": {
1143
+ "type": "boolean",
1144
+ "description": "",
1145
+ "default": false
1146
+ },
1147
+ "EVoiceRecorderToText/icon-size": {
1148
+ "type": "number",
1149
+ "description": "",
1150
+ "default": 10
1151
+ },
1152
+ "EVoiceRecorderToText/silence-timeout": {
1153
+ "type": "number",
1154
+ "description": "",
1155
+ "default": 1500
1156
+ },
1157
+ "ERadioGroup/dark": {
1158
+ "type": "boolean",
1159
+ "description": "",
1160
+ "default": false
1161
+ },
1162
+ "ERadioGroup/value": {
1163
+ "type": "number|string|boolean",
1164
+ "description": ""
1165
+ },
1166
+ "ERadioGroup/options": {
1167
+ "type": "array",
1168
+ "description": ""
1169
+ },
1170
+ "ERadioGroup/disabled": {
1171
+ "type": "boolean",
1172
+ "description": "",
1173
+ "default": false
1174
+ },
1175
+ "ERadioGroup/with-description": {
1176
+ "type": "boolean",
1177
+ "description": "",
1178
+ "default": true
674
1179
  }
675
1180
  }
@@ -0,0 +1,17 @@
1
+ import Vue from "vue";
2
+ import { Size } from '../types';
3
+ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
4
+ withTooltip: boolean;
5
+ buttonClassesContainsBg: boolean;
6
+ buttonStyle: string | string[];
7
+ }, {
8
+ tooltipText: string;
9
+ tooltipColor: string;
10
+ tooltipPosition: string;
11
+ buttonClasses: any;
12
+ icon: string;
13
+ iconSize: Size;
14
+ iconColor: string;
15
+ dark: boolean;
16
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
17
+ export default _default;
@@ -2,6 +2,7 @@ import Vue from "vue";
2
2
  import { BaseColor, Size } from '../types';
3
3
  declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
4
4
  sizes: {
5
+ "2xs": string;
5
6
  xs: string;
6
7
  sm: string;
7
8
  base: string;
@@ -18,5 +19,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
18
19
  badgeText: string;
19
20
  badgeSize: Size;
20
21
  image: string;
22
+ backgroundClasses: string;
21
23
  }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
22
24
  export default _default;