@evercam/ui 1.0.0-b654e23ba → 1.0.0-e84bebf49
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 +2 -0
- package/dist/attributes.json +206 -6
- package/dist/components/ECopyToClipboardBtn.vue.d.ts +2 -2
- package/dist/components/EDialog.vue.d.ts +2 -2
- package/dist/components/EDragResize.vue.d.ts +34 -0
- package/dist/components/EExpandableMenu.vue.d.ts +2 -2
- package/dist/components/EFeedackButton.vue.d.ts +2 -2
- package/dist/components/EGlobalSearch.vue.d.ts +2 -2
- package/dist/components/EHeatmapOverlay.vue.d.ts +21 -0
- package/dist/components/EImagePlayer.vue.d.ts +2 -2
- package/dist/components/EImagesComparator.vue.d.ts +32 -11
- package/dist/components/ELayout.vue.d.ts +1 -0
- package/dist/components/ELazy.vue.d.ts +23 -0
- package/dist/components/EPolygonOverlay.vue.d.ts +81 -0
- package/dist/components/EPopover.vue.d.ts +8 -2
- package/dist/components/ERadioGroup.vue.d.ts +7 -5
- package/dist/components/ESchedule.vue.d.ts +51 -0
- package/dist/components/ESelect.vue.d.ts +3 -3
- package/dist/components/EStepper.vue.d.ts +38 -0
- package/dist/components/EToggleSwitch.vue.d.ts +11 -5
- package/dist/components/EVideoPlayer.vue.d.ts +2 -1
- package/dist/components/EVoiceInput.vue.d.ts +2 -2
- package/dist/components/EZoomable.vue.d.ts +2 -0
- package/dist/components/EZoomableImg.vue.d.ts +2 -2
- package/dist/components/charts/ETimelineGroupContainer.vue.d.ts +1 -0
- package/dist/components/charts/EZoomBehavior.vue.d.ts +1 -0
- package/dist/components/chat/EChatInput.vue.d.ts +1 -0
- package/dist/components/svgIcons/Aconex.vue.d.ts +5 -0
- package/dist/components/svgIcons/AconexSmall.vue.d.ts +5 -0
- package/dist/components/svgIcons/Autodesk.vue.d.ts +5 -0
- package/dist/components/svgIcons/AutodeskSmall.vue.d.ts +5 -0
- package/dist/components/svgIcons/Back10.vue.d.ts +5 -0
- package/dist/components/svgIcons/Forward10.vue.d.ts +5 -0
- package/dist/components/svgIcons/Procore.vue.d.ts +5 -0
- package/dist/components/svgIcons/ProcoreSmall.vue.d.ts +5 -0
- package/dist/components/svgIcons/index.d.ts +16 -0
- package/dist/components/timeline/ETimeline.vue.d.ts +1 -169
- package/dist/index.d.ts +295 -206
- package/dist/index.mjs +6938 -5145
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +16 -16
- package/dist/index.umd.js.map +1 -1
- package/dist/mixins/event-listeners.d.ts +2 -2
- package/dist/mixins/inactivity-listener.d.ts +3 -3
- package/dist/mixins/select-form-field.d.ts +3 -3
- package/dist/mixins/timeouts.d.ts +1 -1
- package/dist/mixins/toggle-open.d.ts +2 -2
- package/dist/style.css +1 -1
- package/dist/styles.css +1 -1
- package/dist/tags.json +72 -5
- package/dist/types.d.ts +79 -0
- package/dist/web-types.json +447 -7
- package/package.json +2 -2
- package/CHANGELOG.md +0 -40
package/dist/tags.json
CHANGED
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
},
|
|
72
72
|
"EVideoPlayer": {
|
|
73
73
|
"attributes": [
|
|
74
|
+
"with-zoom-buttons",
|
|
74
75
|
"target-timestamp",
|
|
75
76
|
"sources",
|
|
76
77
|
"video-listeners",
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
"insert-zeros-at-interval",
|
|
109
110
|
"flatten-line-graph-ends",
|
|
110
111
|
"show-labels",
|
|
112
|
+
"label-width",
|
|
111
113
|
"bar-height",
|
|
112
114
|
"bar-ypadding",
|
|
113
115
|
"chart-min-height",
|
|
@@ -129,7 +131,10 @@
|
|
|
129
131
|
"stop-click-propagation",
|
|
130
132
|
"tooltip-position",
|
|
131
133
|
"max-domain-padding",
|
|
132
|
-
"show-cursor"
|
|
134
|
+
"show-cursor",
|
|
135
|
+
"transition-duration",
|
|
136
|
+
"scaling-duration",
|
|
137
|
+
"highlight-milestone-on-match-timestamp"
|
|
133
138
|
],
|
|
134
139
|
"description": ""
|
|
135
140
|
},
|
|
@@ -193,11 +198,20 @@
|
|
|
193
198
|
],
|
|
194
199
|
"description": ""
|
|
195
200
|
},
|
|
201
|
+
"EDragResize": {
|
|
202
|
+
"attributes": [
|
|
203
|
+
"bounds",
|
|
204
|
+
"initial"
|
|
205
|
+
],
|
|
206
|
+
"description": ""
|
|
207
|
+
},
|
|
196
208
|
"EImagesComparator": {
|
|
197
209
|
"attributes": [
|
|
198
210
|
"before-image-src",
|
|
199
211
|
"after-image-src",
|
|
200
|
-
"is-loading"
|
|
212
|
+
"is-loading",
|
|
213
|
+
"mode",
|
|
214
|
+
"transparency"
|
|
201
215
|
],
|
|
202
216
|
"description": ""
|
|
203
217
|
},
|
|
@@ -214,7 +228,8 @@
|
|
|
214
228
|
"multiple",
|
|
215
229
|
"color",
|
|
216
230
|
"size",
|
|
217
|
-
"vertical"
|
|
231
|
+
"vertical",
|
|
232
|
+
"dark"
|
|
218
233
|
],
|
|
219
234
|
"description": ""
|
|
220
235
|
},
|
|
@@ -229,6 +244,7 @@
|
|
|
229
244
|
"EZoomable": {
|
|
230
245
|
"attributes": [
|
|
231
246
|
"ignore-pointer-events",
|
|
247
|
+
"with-zoom-buttons",
|
|
232
248
|
"with-overlay",
|
|
233
249
|
"disabled"
|
|
234
250
|
],
|
|
@@ -385,7 +401,8 @@
|
|
|
385
401
|
"dark",
|
|
386
402
|
"label",
|
|
387
403
|
"panel-side",
|
|
388
|
-
"panel-classes"
|
|
404
|
+
"panel-classes",
|
|
405
|
+
"auto-position"
|
|
389
406
|
],
|
|
390
407
|
"description": ""
|
|
391
408
|
},
|
|
@@ -411,7 +428,9 @@
|
|
|
411
428
|
"set-initial-value",
|
|
412
429
|
"multiple",
|
|
413
430
|
"dark",
|
|
414
|
-
"with-description"
|
|
431
|
+
"with-description",
|
|
432
|
+
"with-icon",
|
|
433
|
+
"items-wrapper-classes"
|
|
415
434
|
],
|
|
416
435
|
"description": ""
|
|
417
436
|
},
|
|
@@ -474,5 +493,53 @@
|
|
|
474
493
|
"step"
|
|
475
494
|
],
|
|
476
495
|
"description": ""
|
|
496
|
+
},
|
|
497
|
+
"ESchedule": {
|
|
498
|
+
"attributes": [
|
|
499
|
+
"schedule",
|
|
500
|
+
"templates",
|
|
501
|
+
"with-template-selector"
|
|
502
|
+
],
|
|
503
|
+
"description": ""
|
|
504
|
+
},
|
|
505
|
+
"EStepper": {
|
|
506
|
+
"attributes": [
|
|
507
|
+
"steps",
|
|
508
|
+
"initial-step",
|
|
509
|
+
"dark",
|
|
510
|
+
"orientation"
|
|
511
|
+
],
|
|
512
|
+
"description": ""
|
|
513
|
+
},
|
|
514
|
+
"EHeatmapOverlay": {
|
|
515
|
+
"attributes": [
|
|
516
|
+
"points",
|
|
517
|
+
"radius",
|
|
518
|
+
"opacity",
|
|
519
|
+
"max",
|
|
520
|
+
"scheme",
|
|
521
|
+
"clamp"
|
|
522
|
+
],
|
|
523
|
+
"description": ""
|
|
524
|
+
},
|
|
525
|
+
"EPolygonOverlay": {
|
|
526
|
+
"attributes": [
|
|
527
|
+
"polygons",
|
|
528
|
+
"is-read-only",
|
|
529
|
+
"use-mask",
|
|
530
|
+
"straight-line",
|
|
531
|
+
"value",
|
|
532
|
+
"is-rectangle",
|
|
533
|
+
"show-clear-button",
|
|
534
|
+
"node-size",
|
|
535
|
+
"line-color",
|
|
536
|
+
"fill-color",
|
|
537
|
+
"hover-fill-color",
|
|
538
|
+
"hover-line-color",
|
|
539
|
+
"scale",
|
|
540
|
+
"image-width",
|
|
541
|
+
"image-height"
|
|
542
|
+
],
|
|
543
|
+
"description": ""
|
|
477
544
|
}
|
|
478
545
|
}
|
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;
|