@evercam/ui 0.0.52-beta.9 → 0.0.53-beta.2
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/dist/attributes.json +38 -0
- package/dist/index.mjs +18967 -1969
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +27 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +42 -5
- package/dist/src/components/EVideoPlayer.vue.d.ts +6 -1
- package/dist/src/index.d.ts +46 -5
- package/dist/src/types.d.ts +8 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +9 -3
- package/dist/tags.json +10 -2
- package/dist/web-types.json +77 -2
- package/package.json +5 -2
package/dist/attributes.json
CHANGED
|
@@ -186,6 +186,21 @@
|
|
|
186
186
|
"type": "object",
|
|
187
187
|
"description": ""
|
|
188
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
|
+
},
|
|
189
204
|
"ETimeline/events-groups": {
|
|
190
205
|
"type": "object",
|
|
191
206
|
"description": ""
|
|
@@ -279,6 +294,10 @@
|
|
|
279
294
|
"type": "string|any",
|
|
280
295
|
"description": ""
|
|
281
296
|
},
|
|
297
|
+
"ETimeline/selected-class": {
|
|
298
|
+
"type": "string|any",
|
|
299
|
+
"description": ""
|
|
300
|
+
},
|
|
282
301
|
"ETimeline/pan-on-date-click": {
|
|
283
302
|
"type": "boolean",
|
|
284
303
|
"description": "",
|
|
@@ -288,5 +307,24 @@
|
|
|
288
307
|
"type": "number",
|
|
289
308
|
"description": "",
|
|
290
309
|
"default": 500
|
|
310
|
+
},
|
|
311
|
+
"ETimeline/selected-date": {
|
|
312
|
+
"type": "string",
|
|
313
|
+
"description": "",
|
|
314
|
+
"default": ""
|
|
315
|
+
},
|
|
316
|
+
"ETimeline/auto-resize": {
|
|
317
|
+
"type": "boolean",
|
|
318
|
+
"description": "",
|
|
319
|
+
"default": true
|
|
320
|
+
},
|
|
321
|
+
"ETimeline/markers": {
|
|
322
|
+
"type": "array",
|
|
323
|
+
"description": ""
|
|
324
|
+
},
|
|
325
|
+
"ETimeline/sticky-markers": {
|
|
326
|
+
"type": "boolean",
|
|
327
|
+
"description": "",
|
|
328
|
+
"default": true
|
|
291
329
|
}
|
|
292
330
|
}
|