@evercam/ui 0.0.55-beta.12 → 0.0.55-beta.14
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 +63 -8
- package/dist/index.mjs +1156 -1034
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EHeatmapBar.vue.d.ts +3 -0
- package/dist/src/components/EHoursHeatmap.vue.d.ts +3 -0
- package/dist/src/components/ETimeline.vue.d.ts +9 -13
- package/dist/src/index.d.ts +10 -12
- package/dist/src/types.d.ts +8 -5
- package/dist/style.css +1 -1
- package/dist/styles.css +8 -0
- package/dist/tags.json +26 -4
- package/dist/web-types.json +155 -19
- package/package.json +1 -1
package/dist/attributes.json
CHANGED
|
@@ -280,11 +280,6 @@
|
|
|
280
280
|
"description": "",
|
|
281
281
|
"default": 60
|
|
282
282
|
},
|
|
283
|
-
"ETimeline/chart-min-label-height": {
|
|
284
|
-
"type": "number",
|
|
285
|
-
"description": "",
|
|
286
|
-
"default": 18
|
|
287
|
-
},
|
|
288
283
|
"ETimeline/min-zoom": {
|
|
289
284
|
"type": "number",
|
|
290
285
|
"description": "",
|
|
@@ -303,6 +298,14 @@
|
|
|
303
298
|
"type": "string",
|
|
304
299
|
"description": ""
|
|
305
300
|
},
|
|
301
|
+
"ETimeline/min-visible-date": {
|
|
302
|
+
"type": "string",
|
|
303
|
+
"description": ""
|
|
304
|
+
},
|
|
305
|
+
"ETimeline/max-visible-date": {
|
|
306
|
+
"type": "string",
|
|
307
|
+
"description": ""
|
|
308
|
+
},
|
|
306
309
|
"ETimeline/cursor-timestamp": {
|
|
307
310
|
"type": "string|any",
|
|
308
311
|
"description": ""
|
|
@@ -365,13 +368,65 @@
|
|
|
365
368
|
"description": "",
|
|
366
369
|
"default": true
|
|
367
370
|
},
|
|
368
|
-
"
|
|
371
|
+
"EHeatmapBar/items": {
|
|
372
|
+
"type": "array",
|
|
373
|
+
"description": ""
|
|
374
|
+
},
|
|
375
|
+
"EHeatmapBar/selected-value": {
|
|
376
|
+
"type": "string|number",
|
|
377
|
+
"description": "",
|
|
378
|
+
"default": ""
|
|
379
|
+
},
|
|
380
|
+
"EHeatmapBar/show-counts": {
|
|
381
|
+
"type": "boolean",
|
|
382
|
+
"description": "",
|
|
383
|
+
"default": true
|
|
384
|
+
},
|
|
385
|
+
"EHeatmapBar/show-names": {
|
|
386
|
+
"type": "boolean",
|
|
387
|
+
"description": "",
|
|
388
|
+
"default": true
|
|
389
|
+
},
|
|
390
|
+
"EHeatmapBar/colors": {
|
|
391
|
+
"type": "array",
|
|
392
|
+
"description": ""
|
|
393
|
+
},
|
|
394
|
+
"EHeatmapBar/label": {
|
|
395
|
+
"type": "string",
|
|
396
|
+
"description": "",
|
|
397
|
+
"default": ""
|
|
398
|
+
},
|
|
399
|
+
"EHeatmapBar/dense": {
|
|
400
|
+
"type": "boolean",
|
|
401
|
+
"description": "",
|
|
402
|
+
"default": false
|
|
403
|
+
},
|
|
404
|
+
"EHoursHeatmap/items": {
|
|
405
|
+
"type": "array",
|
|
406
|
+
"description": ""
|
|
407
|
+
},
|
|
408
|
+
"EHoursHeatmap/selected-hour": {
|
|
409
|
+
"type": "string|number",
|
|
410
|
+
"description": "",
|
|
411
|
+
"default": ""
|
|
412
|
+
},
|
|
413
|
+
"EHoursHeatmap/show-hours": {
|
|
414
|
+
"type": "boolean",
|
|
415
|
+
"description": "",
|
|
416
|
+
"default": true
|
|
417
|
+
},
|
|
418
|
+
"EHoursHeatmap/colors": {
|
|
369
419
|
"type": "array",
|
|
370
420
|
"description": ""
|
|
371
421
|
},
|
|
372
|
-
"
|
|
422
|
+
"EHoursHeatmap/label": {
|
|
373
423
|
"type": "string",
|
|
374
424
|
"description": "",
|
|
375
|
-
"default": "
|
|
425
|
+
"default": ""
|
|
426
|
+
},
|
|
427
|
+
"EHoursHeatmap/dense": {
|
|
428
|
+
"type": "boolean",
|
|
429
|
+
"description": "",
|
|
430
|
+
"default": false
|
|
376
431
|
}
|
|
377
432
|
}
|