@evercam/ui 1.0.0-b654e23ba → 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.
- package/README.md +2 -0
- package/dist/attributes.json +194 -5
- 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/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 +1 -1
- package/dist/components/EVoiceInput.vue.d.ts +2 -2
- package/dist/components/EZoomable.vue.d.ts +1 -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 +293 -206
- package/dist/index.mjs +6678 -5032
- 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 +2 -2
- package/dist/mixins/select-form-field.d.ts +3 -3
- 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 +70 -5
- package/dist/types.d.ts +79 -0
- package/dist/web-types.json +428 -6
- package/package.json +2 -2
package/dist/tags.json
CHANGED
|
@@ -108,6 +108,7 @@
|
|
|
108
108
|
"insert-zeros-at-interval",
|
|
109
109
|
"flatten-line-graph-ends",
|
|
110
110
|
"show-labels",
|
|
111
|
+
"label-width",
|
|
111
112
|
"bar-height",
|
|
112
113
|
"bar-ypadding",
|
|
113
114
|
"chart-min-height",
|
|
@@ -129,7 +130,10 @@
|
|
|
129
130
|
"stop-click-propagation",
|
|
130
131
|
"tooltip-position",
|
|
131
132
|
"max-domain-padding",
|
|
132
|
-
"show-cursor"
|
|
133
|
+
"show-cursor",
|
|
134
|
+
"transition-duration",
|
|
135
|
+
"scaling-duration",
|
|
136
|
+
"highlight-milestone-on-match-timestamp"
|
|
133
137
|
],
|
|
134
138
|
"description": ""
|
|
135
139
|
},
|
|
@@ -193,11 +197,20 @@
|
|
|
193
197
|
],
|
|
194
198
|
"description": ""
|
|
195
199
|
},
|
|
200
|
+
"EDragResize": {
|
|
201
|
+
"attributes": [
|
|
202
|
+
"bounds",
|
|
203
|
+
"initial"
|
|
204
|
+
],
|
|
205
|
+
"description": ""
|
|
206
|
+
},
|
|
196
207
|
"EImagesComparator": {
|
|
197
208
|
"attributes": [
|
|
198
209
|
"before-image-src",
|
|
199
210
|
"after-image-src",
|
|
200
|
-
"is-loading"
|
|
211
|
+
"is-loading",
|
|
212
|
+
"mode",
|
|
213
|
+
"transparency"
|
|
201
214
|
],
|
|
202
215
|
"description": ""
|
|
203
216
|
},
|
|
@@ -214,7 +227,8 @@
|
|
|
214
227
|
"multiple",
|
|
215
228
|
"color",
|
|
216
229
|
"size",
|
|
217
|
-
"vertical"
|
|
230
|
+
"vertical",
|
|
231
|
+
"dark"
|
|
218
232
|
],
|
|
219
233
|
"description": ""
|
|
220
234
|
},
|
|
@@ -385,7 +399,8 @@
|
|
|
385
399
|
"dark",
|
|
386
400
|
"label",
|
|
387
401
|
"panel-side",
|
|
388
|
-
"panel-classes"
|
|
402
|
+
"panel-classes",
|
|
403
|
+
"auto-position"
|
|
389
404
|
],
|
|
390
405
|
"description": ""
|
|
391
406
|
},
|
|
@@ -411,7 +426,9 @@
|
|
|
411
426
|
"set-initial-value",
|
|
412
427
|
"multiple",
|
|
413
428
|
"dark",
|
|
414
|
-
"with-description"
|
|
429
|
+
"with-description",
|
|
430
|
+
"with-icon",
|
|
431
|
+
"items-wrapper-classes"
|
|
415
432
|
],
|
|
416
433
|
"description": ""
|
|
417
434
|
},
|
|
@@ -474,5 +491,53 @@
|
|
|
474
491
|
"step"
|
|
475
492
|
],
|
|
476
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": ""
|
|
477
542
|
}
|
|
478
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;
|