@evercam/ui 1.0.0-4c126d0d4 → 1.0.0-cb42ba2ff

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 (52) hide show
  1. package/CHANGELOG.md +0 -1
  2. package/README.md +2 -0
  3. package/dist/attributes.json +199 -5
  4. package/dist/components/ECopyToClipboardBtn.vue.d.ts +2 -2
  5. package/dist/components/EDialog.vue.d.ts +2 -2
  6. package/dist/components/EDragResize.vue.d.ts +34 -0
  7. package/dist/components/EExpandableMenu.vue.d.ts +2 -2
  8. package/dist/components/EFeedackButton.vue.d.ts +2 -2
  9. package/dist/components/EGlobalSearch.vue.d.ts +2 -2
  10. package/dist/components/EHeatmapOverlay.vue.d.ts +21 -0
  11. package/dist/components/EImagePlayer.vue.d.ts +2 -2
  12. package/dist/components/EImagesComparator.vue.d.ts +32 -11
  13. package/dist/components/ELayout.vue.d.ts +1 -0
  14. package/dist/components/EPolygonOverlay.vue.d.ts +81 -0
  15. package/dist/components/EPopover.vue.d.ts +8 -2
  16. package/dist/components/ERadioGroup.vue.d.ts +7 -5
  17. package/dist/components/ESchedule.vue.d.ts +51 -0
  18. package/dist/components/ESelect.vue.d.ts +3 -3
  19. package/dist/components/EStepper.vue.d.ts +38 -0
  20. package/dist/components/EToggleSwitch.vue.d.ts +11 -5
  21. package/dist/components/EVideoPlayer.vue.d.ts +2 -1
  22. package/dist/components/EVoiceInput.vue.d.ts +2 -2
  23. package/dist/components/EZoomable.vue.d.ts +1 -0
  24. package/dist/components/EZoomableImg.vue.d.ts +2 -2
  25. package/dist/components/charts/ETimelineGroupContainer.vue.d.ts +1 -0
  26. package/dist/components/charts/EZoomBehavior.vue.d.ts +1 -0
  27. package/dist/components/chat/EChatInput.vue.d.ts +1 -0
  28. package/dist/components/svgIcons/Aconex.vue.d.ts +5 -0
  29. package/dist/components/svgIcons/AconexSmall.vue.d.ts +5 -0
  30. package/dist/components/svgIcons/Autodesk.vue.d.ts +5 -0
  31. package/dist/components/svgIcons/AutodeskSmall.vue.d.ts +5 -0
  32. package/dist/components/svgIcons/Back10.vue.d.ts +5 -0
  33. package/dist/components/svgIcons/Forward10.vue.d.ts +5 -0
  34. package/dist/components/svgIcons/Procore.vue.d.ts +5 -0
  35. package/dist/components/svgIcons/ProcoreSmall.vue.d.ts +5 -0
  36. package/dist/components/svgIcons/index.d.ts +16 -0
  37. package/dist/components/timeline/ETimeline.vue.d.ts +1 -169
  38. package/dist/index.d.ts +294 -206
  39. package/dist/index.mjs +6678 -5028
  40. package/dist/index.mjs.map +1 -1
  41. package/dist/index.umd.js +16 -16
  42. package/dist/index.umd.js.map +1 -1
  43. package/dist/mixins/event-listeners.d.ts +2 -2
  44. package/dist/mixins/inactivity-listener.d.ts +2 -2
  45. package/dist/mixins/select-form-field.d.ts +3 -3
  46. package/dist/mixins/toggle-open.d.ts +2 -2
  47. package/dist/style.css +1 -1
  48. package/dist/styles.css +1 -1
  49. package/dist/tags.json +71 -5
  50. package/dist/types.d.ts +79 -0
  51. package/dist/web-types.json +437 -6
  52. package/package.json +2 -2
package/dist/tags.json CHANGED
@@ -82,6 +82,7 @@
82
82
  "pause-on-click",
83
83
  "is-hls-loading",
84
84
  "is-playing",
85
+ "show-loading-animation",
85
86
  "is-zoomable",
86
87
  "zoomable-ignore-pointer-events",
87
88
  "timezone",
@@ -107,6 +108,7 @@
107
108
  "insert-zeros-at-interval",
108
109
  "flatten-line-graph-ends",
109
110
  "show-labels",
111
+ "label-width",
110
112
  "bar-height",
111
113
  "bar-ypadding",
112
114
  "chart-min-height",
@@ -128,7 +130,10 @@
128
130
  "stop-click-propagation",
129
131
  "tooltip-position",
130
132
  "max-domain-padding",
131
- "show-cursor"
133
+ "show-cursor",
134
+ "transition-duration",
135
+ "scaling-duration",
136
+ "highlight-milestone-on-match-timestamp"
132
137
  ],
133
138
  "description": ""
134
139
  },
@@ -192,11 +197,20 @@
192
197
  ],
193
198
  "description": ""
194
199
  },
200
+ "EDragResize": {
201
+ "attributes": [
202
+ "bounds",
203
+ "initial"
204
+ ],
205
+ "description": ""
206
+ },
195
207
  "EImagesComparator": {
196
208
  "attributes": [
197
209
  "before-image-src",
198
210
  "after-image-src",
199
- "is-loading"
211
+ "is-loading",
212
+ "mode",
213
+ "transparency"
200
214
  ],
201
215
  "description": ""
202
216
  },
@@ -213,7 +227,8 @@
213
227
  "multiple",
214
228
  "color",
215
229
  "size",
216
- "vertical"
230
+ "vertical",
231
+ "dark"
217
232
  ],
218
233
  "description": ""
219
234
  },
@@ -384,7 +399,8 @@
384
399
  "dark",
385
400
  "label",
386
401
  "panel-side",
387
- "panel-classes"
402
+ "panel-classes",
403
+ "auto-position"
388
404
  ],
389
405
  "description": ""
390
406
  },
@@ -410,7 +426,9 @@
410
426
  "set-initial-value",
411
427
  "multiple",
412
428
  "dark",
413
- "with-description"
429
+ "with-description",
430
+ "with-icon",
431
+ "items-wrapper-classes"
414
432
  ],
415
433
  "description": ""
416
434
  },
@@ -473,5 +491,53 @@
473
491
  "step"
474
492
  ],
475
493
  "description": ""
494
+ },
495
+ "ESchedule": {
496
+ "attributes": [
497
+ "schedule",
498
+ "templates",
499
+ "with-template-selector"
500
+ ],
501
+ "description": ""
502
+ },
503
+ "EStepper": {
504
+ "attributes": [
505
+ "steps",
506
+ "initial-step",
507
+ "dark",
508
+ "orientation"
509
+ ],
510
+ "description": ""
511
+ },
512
+ "EHeatmapOverlay": {
513
+ "attributes": [
514
+ "points",
515
+ "radius",
516
+ "opacity",
517
+ "max",
518
+ "scheme",
519
+ "clamp"
520
+ ],
521
+ "description": ""
522
+ },
523
+ "EPolygonOverlay": {
524
+ "attributes": [
525
+ "polygons",
526
+ "is-read-only",
527
+ "use-mask",
528
+ "straight-line",
529
+ "value",
530
+ "is-rectangle",
531
+ "show-clear-button",
532
+ "node-size",
533
+ "line-color",
534
+ "fill-color",
535
+ "hover-fill-color",
536
+ "hover-line-color",
537
+ "scale",
538
+ "image-width",
539
+ "image-height"
540
+ ],
541
+ "description": ""
476
542
  }
477
543
  }
package/dist/types.d.ts CHANGED
@@ -17,6 +17,11 @@ export declare enum Days {
17
17
  export type Schedule = {
18
18
  [day in Days]: string[];
19
19
  };
20
+ export type Point = {
21
+ x: number;
22
+ y: number;
23
+ };
24
+ export type Polygon = Point[];
20
25
  export declare enum Size {
21
26
  Dot = "dot",
22
27
  TwoXs = "2xs",
@@ -140,6 +145,7 @@ export type TimelineEventsGroup = {
140
145
  label: string;
141
146
  color: string;
142
147
  bgColor?: string;
148
+ preserveColors?: boolean;
143
149
  isLoading?: Boolean;
144
150
  isHidden?: Boolean;
145
151
  chartType?: TimelineChartType;
@@ -152,6 +158,7 @@ export type TimelineEventsGroup = {
152
158
  groupOverlappingDots?: boolean;
153
159
  bottom?: boolean;
154
160
  barBorderRadius?: number;
161
+ forceChartUpdate?: boolean;
155
162
  };
156
163
  /**
157
164
  * {@link TimelineEventsGroup}
@@ -318,8 +325,80 @@ export type ESelectionGroupOption = {
318
325
  };
319
326
  export type ERadioGroupOption = ESelectionGroupOption & {
320
327
  description?: string;
328
+ icon?: string;
321
329
  };
322
330
  export type EToggleSwitchOption = ESelectionGroupOption;
323
331
  export type CssClassMap = Record<string, boolean>;
332
+ export declare enum CompareMode {
333
+ Window = "window",
334
+ Curtain = "curtain",
335
+ Transparency = "transparency"
336
+ }
337
+ export type Step = {
338
+ title: string;
339
+ description?: string;
340
+ icon?: string;
341
+ completedIcon?: string;
342
+ component?: unknown;
343
+ };
344
+ export type TimeSegment = {
345
+ startTime: string;
346
+ endTime: string;
347
+ };
348
+ export type DaySchedule = {
349
+ day: number;
350
+ segments: TimeSegment[];
351
+ };
352
+ export type ScheduleData = {
353
+ [key: string]: string[];
354
+ };
355
+ export type SegmentRect = {
356
+ top: number;
357
+ left: number;
358
+ width: number;
359
+ height: number;
360
+ };
361
+ export type TimeComponents = {
362
+ hours: number;
363
+ minutes: number;
364
+ };
365
+ export type ScheduleTemplate = {
366
+ label: string;
367
+ value: string;
368
+ };
369
+ export type ScheduleEditType = "move" | "resize-left" | "resize-right";
370
+ export type ScheduleEditingState = {
371
+ dayIndex: number;
372
+ segmentIndex: number;
373
+ type: ScheduleEditType;
374
+ startMouseX: number;
375
+ origStartFrac: number;
376
+ origEndFrac: number;
377
+ origStartTime: string;
378
+ origEndTime: string;
379
+ isMultiDay: boolean;
380
+ };
381
+ export type ScheduleCreatingState = {
382
+ startDayIndex: number;
383
+ currentDayIndex: number;
384
+ startFrac: number;
385
+ currentFrac: number;
386
+ isMultiDay: boolean;
387
+ };
388
+ export type HeatmapPoint = {
389
+ point: [number, number];
390
+ count: number;
391
+ };
392
+ export declare enum HeatmapColorScheme {
393
+ Turbo = "turbo",
394
+ Inferno = "inferno",
395
+ Magma = "magma",
396
+ Plasma = "plasma",
397
+ Viridis = "viridis",
398
+ Cividis = "cividis",
399
+ Warm = "warm",
400
+ Cool = "cool",
401
+ CubeHelix = "cubehelix"
402
+ }
324
403
  declare const _default: {};
325
404
  export default _default;