@evercam/ui 0.0.58-beta.2 → 0.0.58-beta.5
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 +0 -2
- package/dist/attributes.json +153 -2
- package/dist/index.mjs +3026 -20596
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +2 -221
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EGlobalSearch.vue.d.ts +31 -0
- package/dist/src/components/EHeatmapBar.vue.d.ts +19 -1
- package/dist/src/components/EHoursHeatmap.vue.d.ts +14 -1
- package/dist/src/components/EReadMore.vue.d.ts +1 -1
- package/dist/src/components/EVideoEmbed.vue.d.ts +10 -44
- package/dist/src/components/EVideoPlayer.vue.d.ts +15 -159
- package/dist/src/components/EZoomable.vue.d.ts +20 -47
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/index.d.ts +102 -256
- package/dist/src/mixins/event-listeners.d.ts +7 -0
- package/dist/src/mixins/inactivity-listener.d.ts +7 -2
- package/dist/src/mixins/timeouts.d.ts +7 -1
- package/dist/src/types.d.ts +28 -1
- package/dist/src/utils.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/styles.css +90 -3
- package/dist/tags.json +49 -2
- package/dist/web-types.json +307 -10
- package/package.json +77 -78
- package/dist/src/components/ESvgIcon.vue.d.ts +0 -7
- package/dist/src/components/svg-icons/BaseIcon.vue.d.ts +0 -10
- package/dist/src/components/svg-icons/Bim.vue.d.ts +0 -5
- package/dist/src/components/svg-icons/Blur.vue.d.ts +0 -5
- package/dist/src/components/svg-icons/Compare.vue.d.ts +0 -5
- package/dist/src/components/svg-icons/ConcretePump.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/DroneView.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/Dumper.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/Evercam.vue.d.ts +0 -5
- package/dist/src/components/svg-icons/EvercamLogo.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/Excavator.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/FlatbedSemiTrailer.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/FreeDrawing.vue.d.ts +0 -5
- package/dist/src/components/svg-icons/IModel.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/Inspection.vue.d.ts +0 -5
- package/dist/src/components/svg-icons/Loader.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/MiniModel.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/OtherTruck.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/RoadVehicle.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/Roller.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/SemiTrailer.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/SkidSteerLoader.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/SmallTruck.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/TankTruck.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/The360.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/TippingTruck.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/TruckHead.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/TruckMixer.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/Worker.vue.d.ts +0 -3
- package/dist/src/components/svg-icons/ZohoCrm.vue.d.ts +0 -5
- package/dist/src/components/svg-icons/index.d.ts +0 -19
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -174,6 +174,92 @@
|
|
|
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
|
+
},
|
|
177
263
|
"ETimeline/events-groups": {
|
|
178
264
|
"type": "object",
|
|
179
265
|
"description": ""
|
|
@@ -360,6 +446,22 @@
|
|
|
360
446
|
"type": "string|any",
|
|
361
447
|
"description": ""
|
|
362
448
|
},
|
|
449
|
+
"EVideoEmbed/video-url": {
|
|
450
|
+
"type": "string",
|
|
451
|
+
"description": ""
|
|
452
|
+
},
|
|
453
|
+
"EVideoEmbed/platform": {
|
|
454
|
+
"type": "string",
|
|
455
|
+
"description": ""
|
|
456
|
+
},
|
|
457
|
+
"EVideoEmbed/iframe-listeners": {
|
|
458
|
+
"type": "object",
|
|
459
|
+
"description": ""
|
|
460
|
+
},
|
|
461
|
+
"EVideoEmbed/iframe-options": {
|
|
462
|
+
"type": "object",
|
|
463
|
+
"description": ""
|
|
464
|
+
},
|
|
363
465
|
"EHeatmapBar/items": {
|
|
364
466
|
"type": "array",
|
|
365
467
|
"description": ""
|
|
@@ -482,9 +584,58 @@
|
|
|
482
584
|
"description": "",
|
|
483
585
|
"default": null
|
|
484
586
|
},
|
|
485
|
-
"
|
|
587
|
+
"EZoomable/ignore-pointer-events": {
|
|
588
|
+
"type": "boolean",
|
|
589
|
+
"description": "",
|
|
590
|
+
"default": false
|
|
591
|
+
},
|
|
592
|
+
"EZoomable/with-overlay": {
|
|
593
|
+
"type": "boolean",
|
|
594
|
+
"description": "",
|
|
595
|
+
"default": true
|
|
596
|
+
},
|
|
597
|
+
"EZoomable/disabled": {
|
|
598
|
+
"type": "boolean",
|
|
599
|
+
"description": "",
|
|
600
|
+
"default": false
|
|
601
|
+
},
|
|
602
|
+
"EGlobalSearch/dark": {
|
|
603
|
+
"type": "boolean",
|
|
604
|
+
"description": "",
|
|
605
|
+
"default": false
|
|
606
|
+
},
|
|
607
|
+
"EGlobalSearch/items": {
|
|
608
|
+
"type": "array",
|
|
609
|
+
"description": ""
|
|
610
|
+
},
|
|
611
|
+
"EGlobalSearch/timezone": {
|
|
486
612
|
"type": "string",
|
|
487
613
|
"description": "",
|
|
488
|
-
"default": ""
|
|
614
|
+
"default": "Europe/Dublin"
|
|
615
|
+
},
|
|
616
|
+
"EGlobalSearch/converted-date-format": {
|
|
617
|
+
"type": "string",
|
|
618
|
+
"description": "",
|
|
619
|
+
"default": "YYYY-MM-DDTHH:mm:ss"
|
|
620
|
+
},
|
|
621
|
+
"EGlobalSearch/current-date-format": {
|
|
622
|
+
"type": "string",
|
|
623
|
+
"description": "",
|
|
624
|
+
"default": "YYYY-MM-DDTHH:mm:ssZ"
|
|
625
|
+
},
|
|
626
|
+
"EGlobalSearch/is-fixed-position": {
|
|
627
|
+
"type": "boolean",
|
|
628
|
+
"description": "",
|
|
629
|
+
"default": true
|
|
630
|
+
},
|
|
631
|
+
"EGlobalSearch/is-hidden": {
|
|
632
|
+
"type": "boolean",
|
|
633
|
+
"description": "",
|
|
634
|
+
"default": true
|
|
635
|
+
},
|
|
636
|
+
"EGlobalSearch/deep": {
|
|
637
|
+
"type": "boolean",
|
|
638
|
+
"description": "",
|
|
639
|
+
"default": true
|
|
489
640
|
}
|
|
490
641
|
}
|