@evercam/ui 0.0.58-beta.1 → 0.0.58-beta.12

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 (59) hide show
  1. package/README.md +2 -3
  2. package/dist/attributes.json +190 -0
  3. package/dist/index.mjs +3153 -19789
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/index.umd.js +23 -48
  6. package/dist/index.umd.js.map +1 -1
  7. package/dist/src/components/EExpandableMenu.vue.d.ts +27 -0
  8. package/dist/src/components/EGlobalSearch.vue.d.ts +31 -0
  9. package/dist/src/components/EHeatmapBar.vue.d.ts +19 -1
  10. package/dist/src/components/EHoursHeatmap.vue.d.ts +14 -1
  11. package/dist/src/components/EReadMore.vue.d.ts +1 -1
  12. package/dist/src/components/ESvgIcon.vue.d.ts +7 -0
  13. package/dist/src/components/ETimeline.vue.d.ts +1 -0
  14. package/dist/src/components/EVideoEmbed.vue.d.ts +10 -44
  15. package/dist/src/components/EVideoPlayer.vue.d.ts +18 -160
  16. package/dist/src/components/EZoomable.vue.d.ts +20 -47
  17. package/dist/src/components/charts/classNames.d.ts +7 -0
  18. package/dist/src/components/charts/utils.d.ts +3 -0
  19. package/dist/src/components/svg-icons/BaseIcon.vue.d.ts +10 -0
  20. package/dist/src/components/svg-icons/Bim.vue.d.ts +5 -0
  21. package/dist/src/components/svg-icons/Blur.vue.d.ts +5 -0
  22. package/dist/src/components/svg-icons/Compare.vue.d.ts +5 -0
  23. package/dist/src/components/svg-icons/ConcretePump.vue.d.ts +3 -0
  24. package/dist/src/components/svg-icons/DroneView.vue.d.ts +3 -0
  25. package/dist/src/components/svg-icons/Dumper.vue.d.ts +3 -0
  26. package/dist/src/components/svg-icons/Evercam.vue.d.ts +5 -0
  27. package/dist/src/components/svg-icons/EvercamLogo.vue.d.ts +3 -0
  28. package/dist/src/components/svg-icons/Excavator.vue.d.ts +3 -0
  29. package/dist/src/components/svg-icons/FlatbedSemiTrailer.vue.d.ts +3 -0
  30. package/dist/src/components/svg-icons/FreeDrawing.vue.d.ts +5 -0
  31. package/dist/src/components/svg-icons/IModel.vue.d.ts +3 -0
  32. package/dist/src/components/svg-icons/Inspection.vue.d.ts +5 -0
  33. package/dist/src/components/svg-icons/Loader.vue.d.ts +3 -0
  34. package/dist/src/components/svg-icons/MiniModel.vue.d.ts +3 -0
  35. package/dist/src/components/svg-icons/OtherTruck.vue.d.ts +3 -0
  36. package/dist/src/components/svg-icons/RoadVehicle.vue.d.ts +3 -0
  37. package/dist/src/components/svg-icons/Roller.vue.d.ts +3 -0
  38. package/dist/src/components/svg-icons/SemiTrailer.vue.d.ts +3 -0
  39. package/dist/src/components/svg-icons/SkidSteerLoader.vue.d.ts +3 -0
  40. package/dist/src/components/svg-icons/SmallTruck.vue.d.ts +3 -0
  41. package/dist/src/components/svg-icons/TankTruck.vue.d.ts +3 -0
  42. package/dist/src/components/svg-icons/The360.vue.d.ts +3 -0
  43. package/dist/src/components/svg-icons/TippingTruck.vue.d.ts +3 -0
  44. package/dist/src/components/svg-icons/TruckHead.vue.d.ts +3 -0
  45. package/dist/src/components/svg-icons/TruckMixer.vue.d.ts +3 -0
  46. package/dist/src/components/svg-icons/Worker.vue.d.ts +3 -0
  47. package/dist/src/components/svg-icons/ZohoCrm.vue.d.ts +5 -0
  48. package/dist/src/components/svg-icons/index.d.ts +15 -1
  49. package/dist/src/index.d.ts +138 -253
  50. package/dist/src/mixins/event-listeners.d.ts +15 -2
  51. package/dist/src/mixins/inactivity-listener.d.ts +11 -6
  52. package/dist/src/mixins/timeouts.d.ts +7 -1
  53. package/dist/src/types.d.ts +26 -1
  54. package/dist/src/utils.d.ts +2 -2
  55. package/dist/style.css +1 -1
  56. package/dist/styles.css +105 -0
  57. package/dist/tags.json +71 -1
  58. package/dist/web-types.json +398 -6
  59. package/package.json +5 -5
package/README.md CHANGED
@@ -33,8 +33,8 @@ import { EBadge } from "@evercam/ui"
33
33
 
34
34
  export default {
35
35
  components: {
36
- EBadge
37
- }
36
+ EBadge,
37
+ },
38
38
  }
39
39
  </script>
40
40
  ```
@@ -46,5 +46,4 @@ You can preview the components and their stories by running the [Histoire](https
46
46
  `yarn story:dev`
47
47
  ..........
48
48
  //
49
-
50
49
  .
@@ -174,6 +174,101 @@
174
174
  "type": "boolean|string|number",
175
175
  "description": ""
176
176
  },
177
+ "EVideoPlayer/target-timestamp": {
178
+ "type": "string|date",
179
+ "description": ""
180
+ },
181
+ "EVideoPlayer/sources": {
182
+ "type": "array|string",
183
+ "description": ""
184
+ },
185
+ "EVideoPlayer/video-listeners": {
186
+ "type": "object",
187
+ "description": ""
188
+ },
189
+ "EVideoPlayer/video-options": {
190
+ "type": "object",
191
+ "description": ""
192
+ },
193
+ "EVideoPlayer/is-hls": {
194
+ "type": "boolean",
195
+ "description": "",
196
+ "default": false
197
+ },
198
+ "EVideoPlayer/streaming-token": {
199
+ "type": "string",
200
+ "description": "",
201
+ "default": ""
202
+ },
203
+ "EVideoPlayer/pause-on-click": {
204
+ "type": "boolean",
205
+ "description": "",
206
+ "default": true
207
+ },
208
+ "EVideoPlayer/is-hls-loading": {
209
+ "type": "boolean",
210
+ "description": "",
211
+ "default": false
212
+ },
213
+ "EVideoPlayer/is-playing": {
214
+ "type": "boolean",
215
+ "description": "",
216
+ "default": false
217
+ },
218
+ "EVideoPlayer/is-zoomable": {
219
+ "type": "boolean",
220
+ "description": "",
221
+ "default": false
222
+ },
223
+ "EVideoPlayer/zoomable-ignore-pointer-events": {
224
+ "type": "boolean",
225
+ "description": "",
226
+ "default": false
227
+ },
228
+ "EVideoPlayer/timezone": {
229
+ "type": "string",
230
+ "description": "",
231
+ "default": "UTC"
232
+ },
233
+ "EVideoPlayer/play-pause-animation": {
234
+ "type": "boolean",
235
+ "description": "",
236
+ "default": true
237
+ },
238
+ "EVideoPlayer/disable-play-pause-animation": {
239
+ "type": "boolean",
240
+ "description": "",
241
+ "default": false
242
+ },
243
+ "EVideoPlayer/is-web-rtc": {
244
+ "type": "boolean",
245
+ "description": "",
246
+ "default": false
247
+ },
248
+ "EVideoPlayer/with-colored-loader": {
249
+ "type": "boolean",
250
+ "description": "",
251
+ "default": false
252
+ },
253
+ "EVideoPlayer/loader-size": {
254
+ "type": "string",
255
+ "description": "",
256
+ "default": "7xl"
257
+ },
258
+ "EVideoPlayer/with-overlay-on-background": {
259
+ "type": "boolean",
260
+ "description": "",
261
+ "default": false
262
+ },
263
+ "EVideoPlayer/fallback-src": {
264
+ "type": "string",
265
+ "description": "",
266
+ "default": ""
267
+ },
268
+ "EVideoPlayer/hls-options": {
269
+ "type": "object",
270
+ "description": ""
271
+ },
177
272
  "ETimeline/events-groups": {
178
273
  "type": "object",
179
274
  "description": ""
@@ -360,6 +455,27 @@
360
455
  "type": "string|any",
361
456
  "description": ""
362
457
  },
458
+ "ETimeline/stop-click-propagation": {
459
+ "type": "boolean",
460
+ "description": "",
461
+ "default": false
462
+ },
463
+ "EVideoEmbed/video-url": {
464
+ "type": "string",
465
+ "description": ""
466
+ },
467
+ "EVideoEmbed/platform": {
468
+ "type": "string",
469
+ "description": ""
470
+ },
471
+ "EVideoEmbed/iframe-listeners": {
472
+ "type": "object",
473
+ "description": ""
474
+ },
475
+ "EVideoEmbed/iframe-options": {
476
+ "type": "object",
477
+ "description": ""
478
+ },
363
479
  "EHeatmapBar/items": {
364
480
  "type": "array",
365
481
  "description": ""
@@ -481,5 +597,79 @@
481
597
  "type": "string|number|boolean",
482
598
  "description": "",
483
599
  "default": null
600
+ },
601
+ "EExpandableMenu/padding": {
602
+ "type": "number",
603
+ "description": "",
604
+ "default": 4
605
+ },
606
+ "EExpandableMenu/direction": {
607
+ "type": "string",
608
+ "description": "",
609
+ "default": "top"
610
+ },
611
+ "EExpandableMenu/is-mobile": {
612
+ "type": "boolean",
613
+ "description": "",
614
+ "default": false
615
+ },
616
+ "EZoomable/ignore-pointer-events": {
617
+ "type": "boolean",
618
+ "description": "",
619
+ "default": false
620
+ },
621
+ "EZoomable/with-overlay": {
622
+ "type": "boolean",
623
+ "description": "",
624
+ "default": true
625
+ },
626
+ "EZoomable/disabled": {
627
+ "type": "boolean",
628
+ "description": "",
629
+ "default": false
630
+ },
631
+ "EGlobalSearch/dark": {
632
+ "type": "boolean",
633
+ "description": "",
634
+ "default": false
635
+ },
636
+ "EGlobalSearch/items": {
637
+ "type": "array",
638
+ "description": ""
639
+ },
640
+ "EGlobalSearch/timezone": {
641
+ "type": "string",
642
+ "description": "",
643
+ "default": "Europe/Dublin"
644
+ },
645
+ "EGlobalSearch/converted-date-format": {
646
+ "type": "string",
647
+ "description": "",
648
+ "default": "YYYY-MM-DDTHH:mm:ss"
649
+ },
650
+ "EGlobalSearch/current-date-format": {
651
+ "type": "string",
652
+ "description": "",
653
+ "default": "YYYY-MM-DDTHH:mm:ssZ"
654
+ },
655
+ "EGlobalSearch/is-fixed-position": {
656
+ "type": "boolean",
657
+ "description": "",
658
+ "default": true
659
+ },
660
+ "EGlobalSearch/is-hidden": {
661
+ "type": "boolean",
662
+ "description": "",
663
+ "default": true
664
+ },
665
+ "EGlobalSearch/deep": {
666
+ "type": "boolean",
667
+ "description": "",
668
+ "default": true
669
+ },
670
+ "ESvgIcon/icon": {
671
+ "type": "string",
672
+ "description": "",
673
+ "default": ""
484
674
  }
485
675
  }