@evercam/ui 0.0.55-beta.36 → 0.0.55-beta.38
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 +1 -0
- package/dist/attributes.json +37 -27
- package/dist/index.mjs +1953 -1463
- 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/ECompareSeparator.vue.d.ts +7 -0
- package/dist/src/components/ETimeline.vue.d.ts +1 -0
- package/dist/src/components/EToggleSwitch.vue.d.ts +34 -0
- package/dist/src/components/ETruncatedDiv.vue.d.ts +8 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +181 -15
- package/dist/src/components/EZoomable.vue.d.ts +73 -0
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/index.d.ts +295 -14
- package/dist/src/types.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +121 -0
- package/dist/tags.json +24 -12
- package/dist/web-types.json +131 -61
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -7,7 +7,13 @@ import ECol from './components/ECol.vue';
|
|
|
7
7
|
import EVideoPlayer from './components/EVideoPlayer.vue';
|
|
8
8
|
import ETimeline from './components/ETimeline.vue';
|
|
9
9
|
import EVideoEmbed from './components/EVideoEmbed.vue';
|
|
10
|
+
import EHeatmapBar from './components/EHeatmapBar.vue';
|
|
11
|
+
import EHoursHeatmap from './components/EHoursHeatmap.vue';
|
|
10
12
|
import EReadMore from './components/EReadMore.vue';
|
|
13
|
+
import ETruncatedDiv from './components/ETruncatedDiv.vue';
|
|
14
|
+
import ECompareSeparator from './components/ECompareSeparator.vue';
|
|
15
|
+
import EToggleSwitch from './components/EToggleSwitch.vue';
|
|
16
|
+
import EZoomable from './components/EZoomable.vue';
|
|
11
17
|
import { VueConstructor } from "vue";
|
|
12
18
|
export declare const components: {
|
|
13
19
|
EAvatar: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
@@ -119,7 +125,80 @@ export declare const components: {
|
|
|
119
125
|
xs: string | number | boolean;
|
|
120
126
|
xl: string | number | boolean;
|
|
121
127
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
122
|
-
EVideoPlayer: import("vue
|
|
128
|
+
EVideoPlayer: import("vue").DefineComponent<{
|
|
129
|
+
targetTimestamp: {
|
|
130
|
+
type: (StringConstructor | DateConstructor)[];
|
|
131
|
+
default: undefined;
|
|
132
|
+
};
|
|
133
|
+
sources: {
|
|
134
|
+
type: import("vue").PropType<string | import('./components/EVideoPlayer.vue').VideoSource[]>;
|
|
135
|
+
required: true;
|
|
136
|
+
};
|
|
137
|
+
videoListeners: {
|
|
138
|
+
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
139
|
+
default: () => {};
|
|
140
|
+
};
|
|
141
|
+
videoOptions: {
|
|
142
|
+
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
143
|
+
default: () => {};
|
|
144
|
+
};
|
|
145
|
+
isHls: {
|
|
146
|
+
type: BooleanConstructor;
|
|
147
|
+
default: boolean;
|
|
148
|
+
};
|
|
149
|
+
streamingToken: {
|
|
150
|
+
type: StringConstructor;
|
|
151
|
+
default: string;
|
|
152
|
+
};
|
|
153
|
+
pauseOnClick: {
|
|
154
|
+
type: BooleanConstructor;
|
|
155
|
+
default: boolean;
|
|
156
|
+
};
|
|
157
|
+
isHlsLoading: {
|
|
158
|
+
type: BooleanConstructor;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
161
|
+
isPlaying: {
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
default: boolean;
|
|
164
|
+
};
|
|
165
|
+
isZoomable: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
169
|
+
zoomableIgnorePointerEvents: {
|
|
170
|
+
type: BooleanConstructor;
|
|
171
|
+
default: boolean;
|
|
172
|
+
};
|
|
173
|
+
timezone: {
|
|
174
|
+
type: StringConstructor;
|
|
175
|
+
default: string;
|
|
176
|
+
};
|
|
177
|
+
playPauseAnimation: {
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
default: boolean;
|
|
180
|
+
};
|
|
181
|
+
disablePlayPauseAnimation: {
|
|
182
|
+
type: BooleanConstructor;
|
|
183
|
+
default: boolean;
|
|
184
|
+
};
|
|
185
|
+
isWebRtc: {
|
|
186
|
+
type: BooleanConstructor;
|
|
187
|
+
default: boolean;
|
|
188
|
+
};
|
|
189
|
+
withColoredLoader: {
|
|
190
|
+
type: BooleanConstructor;
|
|
191
|
+
default: boolean;
|
|
192
|
+
};
|
|
193
|
+
loaderSize: {
|
|
194
|
+
type: StringConstructor;
|
|
195
|
+
default: string;
|
|
196
|
+
};
|
|
197
|
+
withOverlayOnBackground: {
|
|
198
|
+
type: BooleanConstructor;
|
|
199
|
+
default: boolean;
|
|
200
|
+
};
|
|
201
|
+
}, {}, {
|
|
123
202
|
playing: boolean;
|
|
124
203
|
percentagePlayed: number;
|
|
125
204
|
videoLength: string;
|
|
@@ -134,10 +213,23 @@ export declare const components: {
|
|
|
134
213
|
isLoading: boolean;
|
|
135
214
|
isError: boolean;
|
|
136
215
|
player: import("hls.js").default;
|
|
216
|
+
playbackRetries: number;
|
|
217
|
+
preloadedSeconds: number;
|
|
218
|
+
preloadedInterval: {
|
|
219
|
+
start: string;
|
|
220
|
+
end: string;
|
|
221
|
+
};
|
|
222
|
+
}, {
|
|
223
|
+
sourceItems(): import('./components/EVideoPlayer.vue').VideoSource[];
|
|
224
|
+
hasStartedOrFinished(): boolean;
|
|
225
|
+
withControls(): "" | "hide";
|
|
137
226
|
}, {
|
|
138
227
|
initHls(): void;
|
|
228
|
+
onContainerClick(): void;
|
|
139
229
|
handle404Error(): void;
|
|
230
|
+
handleHlsError(_: import("hls.js").Events.ERROR, data: import("hls.js").ErrorData): void;
|
|
140
231
|
bindEvents(): void;
|
|
232
|
+
onProgress(): void;
|
|
141
233
|
unbindEvents(): void;
|
|
142
234
|
bindVideoEvent(which: string): void;
|
|
143
235
|
initializePlayer(): void;
|
|
@@ -149,9 +241,9 @@ export declare const components: {
|
|
|
149
241
|
handleScrubbingOnMouseEnd(e: MouseEvent): void;
|
|
150
242
|
handleEnded(): void;
|
|
151
243
|
handleLoading(): void;
|
|
152
|
-
play(): void
|
|
244
|
+
play(): Promise<void>;
|
|
153
245
|
pause(): void;
|
|
154
|
-
togglePlay(): void
|
|
246
|
+
togglePlay(): Promise<void>;
|
|
155
247
|
setPlaying(state: boolean): void;
|
|
156
248
|
seekToPercentage(percentage: number): void;
|
|
157
249
|
convertTimeToDuration(seconds: number): string;
|
|
@@ -164,18 +256,98 @@ export declare const components: {
|
|
|
164
256
|
skip(duration?: number): void;
|
|
165
257
|
toggleScrubbing(e: MouseEvent): Promise<void>;
|
|
166
258
|
handleKeyDown(e: KeyboardEvent): void;
|
|
167
|
-
}, {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
sources:
|
|
173
|
-
|
|
174
|
-
|
|
259
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
260
|
+
targetTimestamp: {
|
|
261
|
+
type: (StringConstructor | DateConstructor)[];
|
|
262
|
+
default: undefined;
|
|
263
|
+
};
|
|
264
|
+
sources: {
|
|
265
|
+
type: import("vue").PropType<string | import('./components/EVideoPlayer.vue').VideoSource[]>;
|
|
266
|
+
required: true;
|
|
267
|
+
};
|
|
268
|
+
videoListeners: {
|
|
269
|
+
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
270
|
+
default: () => {};
|
|
271
|
+
};
|
|
272
|
+
videoOptions: {
|
|
273
|
+
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
274
|
+
default: () => {};
|
|
275
|
+
};
|
|
276
|
+
isHls: {
|
|
277
|
+
type: BooleanConstructor;
|
|
278
|
+
default: boolean;
|
|
279
|
+
};
|
|
280
|
+
streamingToken: {
|
|
281
|
+
type: StringConstructor;
|
|
282
|
+
default: string;
|
|
283
|
+
};
|
|
284
|
+
pauseOnClick: {
|
|
285
|
+
type: BooleanConstructor;
|
|
286
|
+
default: boolean;
|
|
287
|
+
};
|
|
288
|
+
isHlsLoading: {
|
|
289
|
+
type: BooleanConstructor;
|
|
290
|
+
default: boolean;
|
|
291
|
+
};
|
|
292
|
+
isPlaying: {
|
|
293
|
+
type: BooleanConstructor;
|
|
294
|
+
default: boolean;
|
|
295
|
+
};
|
|
296
|
+
isZoomable: {
|
|
297
|
+
type: BooleanConstructor;
|
|
298
|
+
default: boolean;
|
|
299
|
+
};
|
|
300
|
+
zoomableIgnorePointerEvents: {
|
|
301
|
+
type: BooleanConstructor;
|
|
302
|
+
default: boolean;
|
|
303
|
+
};
|
|
304
|
+
timezone: {
|
|
305
|
+
type: StringConstructor;
|
|
306
|
+
default: string;
|
|
307
|
+
};
|
|
308
|
+
playPauseAnimation: {
|
|
309
|
+
type: BooleanConstructor;
|
|
310
|
+
default: boolean;
|
|
311
|
+
};
|
|
312
|
+
disablePlayPauseAnimation: {
|
|
313
|
+
type: BooleanConstructor;
|
|
314
|
+
default: boolean;
|
|
315
|
+
};
|
|
316
|
+
isWebRtc: {
|
|
317
|
+
type: BooleanConstructor;
|
|
318
|
+
default: boolean;
|
|
319
|
+
};
|
|
320
|
+
withColoredLoader: {
|
|
321
|
+
type: BooleanConstructor;
|
|
322
|
+
default: boolean;
|
|
323
|
+
};
|
|
324
|
+
loaderSize: {
|
|
325
|
+
type: StringConstructor;
|
|
326
|
+
default: string;
|
|
327
|
+
};
|
|
328
|
+
withOverlayOnBackground: {
|
|
329
|
+
type: BooleanConstructor;
|
|
330
|
+
default: boolean;
|
|
331
|
+
};
|
|
332
|
+
}>>, {
|
|
333
|
+
timezone: string;
|
|
334
|
+
isPlaying: boolean;
|
|
335
|
+
targetTimestamp: string | Date;
|
|
336
|
+
videoListeners: Partial<HTMLVideoElement>;
|
|
337
|
+
videoOptions: Partial<HTMLVideoElement>;
|
|
175
338
|
isHls: boolean;
|
|
176
339
|
streamingToken: string;
|
|
177
|
-
|
|
178
|
-
|
|
340
|
+
pauseOnClick: boolean;
|
|
341
|
+
isHlsLoading: boolean;
|
|
342
|
+
isZoomable: boolean;
|
|
343
|
+
zoomableIgnorePointerEvents: boolean;
|
|
344
|
+
playPauseAnimation: boolean;
|
|
345
|
+
disablePlayPauseAnimation: boolean;
|
|
346
|
+
isWebRtc: boolean;
|
|
347
|
+
withColoredLoader: boolean;
|
|
348
|
+
loaderSize: string;
|
|
349
|
+
withOverlayOnBackground: boolean;
|
|
350
|
+
}>;
|
|
179
351
|
ETimeline: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
180
352
|
tooltip: HTMLElement;
|
|
181
353
|
cursor: HTMLElement;
|
|
@@ -494,6 +666,7 @@ export declare const components: {
|
|
|
494
666
|
forbiddenIntervalColor: string;
|
|
495
667
|
focusedInterval: import('./types').TimelineInterval | undefined;
|
|
496
668
|
locked: boolean;
|
|
669
|
+
timezone: string | undefined;
|
|
497
670
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
498
671
|
EVideoEmbed: import("vue").DefineComponent<{
|
|
499
672
|
videoUrl: {
|
|
@@ -562,12 +735,120 @@ export declare const components: {
|
|
|
562
735
|
collapseText: string;
|
|
563
736
|
moreTextWithPlaceholder: string;
|
|
564
737
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
738
|
+
ETruncatedDiv: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
739
|
+
containerStyle: Record<string, any>;
|
|
740
|
+
}, {
|
|
741
|
+
width: string | number;
|
|
742
|
+
fixedWidth: boolean;
|
|
743
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
744
|
+
ECompareSeparator: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
745
|
+
separatorStyle: Record<string, any>;
|
|
746
|
+
}, {
|
|
747
|
+
xOffset: string | number;
|
|
748
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
749
|
+
EToggleSwitch: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
750
|
+
value: any;
|
|
751
|
+
}, {
|
|
752
|
+
getButtonClasses(optionValue: any): {
|
|
753
|
+
"e-bg-inherit": boolean;
|
|
754
|
+
"e-bg-brand-600": boolean;
|
|
755
|
+
"e-bg-gray-600": boolean;
|
|
756
|
+
"e-bg-[#629efc] e-text-gray-900 e-font-normal": boolean;
|
|
757
|
+
};
|
|
758
|
+
handleClick(value: any): void;
|
|
759
|
+
}, {
|
|
760
|
+
sizeClasses: {
|
|
761
|
+
container: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
762
|
+
button: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
763
|
+
text: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
764
|
+
};
|
|
765
|
+
containerClasses: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
766
|
+
textClasses: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
767
|
+
buttonBaseClasses: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
768
|
+
}, {
|
|
769
|
+
options: import('./components/EToggleSwitch.vue').EToggleSwitchOption[];
|
|
770
|
+
color: string;
|
|
771
|
+
size: import('./types').Size;
|
|
772
|
+
defaultValue: string | number | boolean;
|
|
773
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
774
|
+
EZoomable: import("vue").DefineComponent<{
|
|
775
|
+
ignorePointerEvents: {
|
|
776
|
+
type: BooleanConstructor;
|
|
777
|
+
default: boolean;
|
|
778
|
+
};
|
|
779
|
+
withOverlay: {
|
|
780
|
+
type: BooleanConstructor;
|
|
781
|
+
default: boolean;
|
|
782
|
+
};
|
|
783
|
+
disabled: {
|
|
784
|
+
type: BooleanConstructor;
|
|
785
|
+
default: boolean;
|
|
786
|
+
};
|
|
787
|
+
}, {}, {
|
|
788
|
+
scale: number;
|
|
789
|
+
minScale: number;
|
|
790
|
+
maxScale: number;
|
|
791
|
+
top: number;
|
|
792
|
+
left: number;
|
|
793
|
+
isPanning: boolean;
|
|
794
|
+
panStart: {
|
|
795
|
+
x: number;
|
|
796
|
+
y: number;
|
|
797
|
+
};
|
|
798
|
+
isPinching: boolean;
|
|
799
|
+
previousPinchDistance: number;
|
|
800
|
+
pinchDistance: number;
|
|
801
|
+
pointers: {};
|
|
802
|
+
transform: string;
|
|
803
|
+
}, {
|
|
804
|
+
contentStyle(): {
|
|
805
|
+
transform: string;
|
|
806
|
+
};
|
|
807
|
+
isZoomed(): boolean;
|
|
808
|
+
}, {
|
|
809
|
+
updateZoomScale(): void;
|
|
810
|
+
handleZoom(e: any): void;
|
|
811
|
+
handleMouseDown(e: any): void;
|
|
812
|
+
handleMouseUp(): void;
|
|
813
|
+
handleMouseLeave(): void;
|
|
814
|
+
handleMouseMove(e: any): void;
|
|
815
|
+
applyBoundsCorrection(): void;
|
|
816
|
+
updateTransform(): void;
|
|
817
|
+
getPointersDistance(a: any, b: any): number;
|
|
818
|
+
getPointersMidPoint(a: any, b: any): {
|
|
819
|
+
x: any;
|
|
820
|
+
y: any;
|
|
821
|
+
};
|
|
822
|
+
updatePointerEvent(e: any): void;
|
|
823
|
+
clearPointerEvent(e: any): void;
|
|
824
|
+
updatePinchDistance(): void;
|
|
825
|
+
handlePointerDown(e: any): void;
|
|
826
|
+
handlePointerMove(e: any): void;
|
|
827
|
+
handlePointerUp(e: any): void;
|
|
828
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
829
|
+
ignorePointerEvents: {
|
|
830
|
+
type: BooleanConstructor;
|
|
831
|
+
default: boolean;
|
|
832
|
+
};
|
|
833
|
+
withOverlay: {
|
|
834
|
+
type: BooleanConstructor;
|
|
835
|
+
default: boolean;
|
|
836
|
+
};
|
|
837
|
+
disabled: {
|
|
838
|
+
type: BooleanConstructor;
|
|
839
|
+
default: boolean;
|
|
840
|
+
};
|
|
841
|
+
}>>, {
|
|
842
|
+
ignorePointerEvents: boolean;
|
|
843
|
+
withOverlay: boolean;
|
|
844
|
+
disabled: boolean;
|
|
845
|
+
}>;
|
|
565
846
|
};
|
|
566
847
|
declare const _default: {
|
|
567
848
|
install(Vue: VueConstructor): void;
|
|
568
849
|
};
|
|
569
850
|
export default _default;
|
|
570
|
-
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EReadMore, };
|
|
851
|
+
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EHeatmapBar, EHoursHeatmap, EReadMore, ETruncatedDiv, ECompareSeparator, EToggleSwitch, EZoomable, };
|
|
571
852
|
export * from './constants';
|
|
572
853
|
export * from './types';
|
|
573
854
|
export * from './utils';
|
package/dist/src/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BadgeSizes, AvatarSizes, IconSizes, BadgeColors } from './constants';
|
|
1
|
+
import { BadgeSizes, AvatarSizes, IconSizes, BadgeColors, ToggleSwitchSizes } from './constants';
|
|
2
2
|
export declare enum Size {
|
|
3
3
|
dot = "dot",
|
|
4
4
|
xs = "xs",
|
|
@@ -28,6 +28,7 @@ export declare enum BaseColor {
|
|
|
28
28
|
export type TBadgeSize = (typeof BadgeSizes)[number];
|
|
29
29
|
export type TAvatarSize = (typeof AvatarSizes)[number];
|
|
30
30
|
export type TIconSize = (typeof IconSizes)[number];
|
|
31
|
+
export type TToggleSwitchSize = (typeof ToggleSwitchSizes)[number];
|
|
31
32
|
export type TBadgeColor = (typeof BadgeColors)[number];
|
|
32
33
|
export type TailwindColorClass = string;
|
|
33
34
|
export type FlexJustifyContent = "around" | "between" | "center" | "end" | "evenly" | "normal" | "start" | "stretch";
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.spinner-container[data-v-
|
|
1
|
+
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.e-transform-0[data-v-8921bc32]{transform-origin:0 0}.spinner-container[data-v-97ac1907]{position:absolute;background:linear-gradient(to top,rgba(0,0,0,.65),transparent);inset:0;display:flex;justify-content:center;align-items:center;vertical-align:middle}.video-container[data-v-97ac1907]{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;margin:0 auto}.video-container.full-screen[data-v-97ac1907]{max-width:initial;width:100%;max-height:100vh}video[data-v-97ac1907]{width:100%;height:inherit}.video-controls-container[data-v-97ac1907]{position:absolute;bottom:0;left:0;right:0;color:#fff;z-index:100;opacity:0;transition:opacity .15s ease-in-out}.hide[data-v-97ac1907]{display:none}.video-controls-container[data-v-97ac1907]:before{content:"";position:absolute;bottom:0;background:linear-gradient(to top,rgba(0,0,0,.75),transparent);width:100%;aspect-ratio:6 / 1;z-index:-1;pointer-events:none}.video-container:hover .video-controls-container[data-v-97ac1907],.video-container:focus-within .video-controls-container[data-v-97ac1907],.video-container.paused .video-controls-container[data-v-97ac1907]{opacity:1}.video-controls-container .controls[data-v-97ac1907]{display:flex;gap:.5rem;padding:.75rem 1rem;align-items:center;width:100%}.video-controls-container .controls button[data-v-97ac1907]{background:none;border:none;color:inherit;padding:0;height:32px;width:32px;font-size:1.35rem;cursor:pointer;opacity:.85;transition:opacity .15s ease-in-out}.video-controls-container .controls button[data-v-97ac1907]:hover{opacity:1}.duration-container[data-v-97ac1907]{display:flex;align-items:center;gap:.25rem;flex-grow:1}.video-container.captions .captions-btn[data-v-97ac1907]{border-bottom:3px solid #0090ff}.video-controls-container .controls button.wide-btn[data-v-97ac1907]{width:50px}.timeline-container[data-v-97ac1907]{width:100%;height:7px;margin-inline:.5rem;cursor:pointer;display:flex;align-items:center}.timeline[data-v-97ac1907]{background-color:#64646480;height:3px;width:100%;position:relative}.timeline[data-v-97ac1907]:before{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--preview-position) * 100%);background-color:#969696;display:none}.timeline[data-v-97ac1907]:after{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--progress-position) * 100%);background-color:#0090ff}.timeline .thumb-indicator[data-v-97ac1907]{--scale: 0;position:absolute;transform:translate(-50%) scale(var(--scale));height:200%;top:-50%;left:calc(var(--progress-position) * 100%);background-color:#0090ff;border-radius:50%;transition:transform .15s ease-in-out;aspect-ratio:1 / 1}.video-container.scrubbing .thumbnail-img[data-v-97ac1907]{display:block}.video-container.scrubbing .timeline[data-v-97ac1907]:before,.timeline-container:hover .timeline[data-v-97ac1907]:before{display:block}.video-container.scrubbing .thumb-indicator[data-v-97ac1907],.timeline-container:hover .thumb-indicator[data-v-97ac1907]{--scale: 1}.video-container.scrubbing .timeline[data-v-97ac1907],.timeline-container:hover .timeline[data-v-97ac1907]{height:100%}.e-tl-milestone{position:absolute;border-radius:10em;box-sizing:border-box}.e-tl-milestone-content{cursor:pointer}.e-tl-milestone--bullet{transform:translate(-50%,-50%)}.e-tl-milestone--bullet .e-tl-milestone-content{opacity:0;width:0;height:0;white-space:nowrap;pointer-events:none;cursor:pointer}.e-tl-milestone--bullet.e-tl-milestone--hovered{cursor:pointer;min-height:26px;padding:0 8px;border-radius:.5em}.e-tl-milestone--bullet.e-tl-milestone--hovered .e-tl-milestone-content{opacity:1;font-size:small;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.e-tl-milestone--bullet .e-tl-milestone-label{position:absolute;top:0;left:0;opacity:1;pointer-events:none;height:100%;width:100%}.e-tl-milestone--bullet.e-tl-milestone--hovered .e-tl-milestone-label{opacity:0}.e-tl-milestone--dot{transform:translateY(-50%)}.e-tl-milestone-dot--hovered .e-tl-milestone-dot-container{padding:0 3em;transform:translate(-50%);opacity:1}.e-tl-milestone-dot-line{position:absolute}.e-tl-milestone-dot-dot{position:absolute;border-radius:50%}.e-tl-milestone-dot-container{opacity:0;position:absolute;padding:0 .3em;transform:translate(-50%,-100%);cursor:pointer}.e-timeline svg{display:block}.e-timeline .x-axis-overview .domain,.e-timeline .x-axis-detailed .domain,.e-timeline .x-axis-overviewBackground .domain,.e-timeline .x-axis-detailedBackground .domain{display:none}.e-timeline .x-axis-detailedBackground .domain,.e-timeline .x-axis-detailedBackground text{display:none}.e-timeline .x-axis-overview>g.tick>line{opacity:.1;stroke-width:3;stroke-linecap:round}.e-timeline .x-axis-detailed>g.tick>line{opacity:.1;stroke-linecap:round}.e-timeline .x-axis-detailedBackground>g.tick>line{opacity:.075;stroke-linecap:round}.e-timeline--dark .tick line{stroke:#fff}.e-timeline--dark .tick text{fill:#fff}@keyframes moveGradient{0%{transform:translate(-50%)}to{transform:translate(100%)}}@keyframes pulse-rect{0%{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}50%{filter:saturate(.5) drop-shadow(0 0 0 #0000)}to{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}}@keyframes pulse-circle{0%{r:4px}50%{r:1px}to{r:4px}}.loading-indicator{animation:moveGradient 1.5s ease-in infinite}.line-graph-dot--active{animation:pulse-circle 1s ease-in-out infinite}.event-rect--hovered{animation:pulse-rect 1s ease-in-out infinite}@keyframes dash{0%{filter:saturate(1) drop-shadow(0 0 0 #0000)}50%{stroke-width:2px;filter:saturate(2.5) drop-shadow(0 0 0 #0006)}to{filter:saturate(1) drop-shadow(0 0 0 #0000)}}.line-graph-group--highlighted path{animation:dash 1s ease-in-out infinite}.e-timeline--dragging{cursor:ew-resize}.curtain{cursor:ew-resize;fill:#3332;stroke-width:1px;stroke:#3338;transition:stroke-width .2s}.e-timeline--dragging .curtain{stroke-width:3px}.e-timeline--dark .curtain{fill:#fff3;stroke:#fff7}.event-bar-hover-zone{cursor:pointer}.external-labels-container{position:absolute;top:-1.5em;left:0}.external-label{margin-right:.35em;border-width:.5px;border-radius:.2em}.external-label__content{cursor:pointer;font-size:.8em;font-weight:500;padding:0 .6em;line-height:1.4em}.marker-label{transition:transform .2s;transform:translateY(-32px);position:absolute;width:max-content}.marker-label-text{position:absolute;width:max-content;font-size:.8em;font-weight:500;padding:0 .75em;border-radius:.4em .4em .4em 0;box-shadow:0 0 5px -1px #000000f5}.marker-label-text:after{content:"";background:inherit;width:5px;height:5px;bottom:-5px;position:absolute;left:2px;clip-path:path("M 0,5 L 0,0 L 5,0 A 5,5 0 0 0 0,5")}.marker-label-text:before{content:"";background:inherit;height:20px;top:18px;position:absolute;width:2px;left:0}.marker{top:0;filter:saturate(.9)}.marker-line{position:absolute;width:2px;top:-24px;transition:top .2s,height .2s}.marker:hover{cursor:pointer;opacity:1;filter:saturate(1.1)}.marker:hover .marker-label{transform:translateY(-38px);height:61px;width:255px;padding-bottom:42px}.marker:hover .marker-label-text{box-shadow:2px 2px 11px -4px #000}.marker--hidden:hover .marker-label{transform:translateY(-54px)}.marker--draggable,.marker--draggable:hover{user-select:none;cursor:grab}.marker--dragged:hover{cursor:grabbing}.forbidden-interval{opacity:.2}.e-timeline-milestones{height:0}.video-embed[data-v-0ecf4a71]{position:relative;width:100%!important;padding-bottom:56.25%}.video-embed iframe[data-v-0ecf4a71]{position:absolute;top:0;left:0;width:100%;height:100%}.e-heatmap-bar__label{white-space:nowrap;width:6rem;min-width:6rem}.e-heatmap-bar__item{height:16px;margin:2px;position:relative;cursor:pointer;border-radius:2px;min-width:0}.e-heatmap-bar__item:hover{box-shadow:0 0 0 1.5px #5c6d97}.e-heatmap-bar__item--selected{box-shadow:0 0 0 2px #151e3a}.e-heatmap-bar__item__count{font-size:12px;color:#fff;font-weight:500}.e-heatmap-bar__item__count--light{color:#0a214bbd}.e-heatmap-bar__item__name{position:absolute;top:-25px}.e-heatmap-bar:not(.e-heatmap-bar--dense) .e-heatmap-bar__item{min-width:35px}.e-compare-separator__icon{position:absolute;width:40px;height:40px;top:50%;transform:translate(-50%,-50%);z-index:4;border-radius:50%;cursor:ew-resize;background:#1976d2;border:2px solid white;-webkit-box-shadow:0 0 8px 1px rgba(0,0,0,.3);-moz-box-shadow:0 0 8px 1px rgba(0,0,0,.3);box-shadow:0 0 8px 1px #0000004d}.e-compare-separator__line{position:absolute;top:0;width:3px;height:100%;background:white;transform:translate(-50%)}
|
package/dist/styles.css
CHANGED
|
@@ -212,9 +212,18 @@
|
|
|
212
212
|
.e-relative{
|
|
213
213
|
position: relative;
|
|
214
214
|
}
|
|
215
|
+
.e-inset-0{
|
|
216
|
+
inset: 0px;
|
|
217
|
+
}
|
|
215
218
|
.-e-left-2\/4{
|
|
216
219
|
left: -50%;
|
|
217
220
|
}
|
|
221
|
+
.e-bottom-0{
|
|
222
|
+
bottom: 0px;
|
|
223
|
+
}
|
|
224
|
+
.e-left-0{
|
|
225
|
+
left: 0px;
|
|
226
|
+
}
|
|
218
227
|
.e-right-0{
|
|
219
228
|
right: 0px;
|
|
220
229
|
}
|
|
@@ -224,9 +233,18 @@
|
|
|
224
233
|
.e-z-50{
|
|
225
234
|
z-index: 50;
|
|
226
235
|
}
|
|
236
|
+
.e-z-\[-1\]{
|
|
237
|
+
z-index: -1;
|
|
238
|
+
}
|
|
239
|
+
.e-z-\[5\]{
|
|
240
|
+
z-index: 5;
|
|
241
|
+
}
|
|
227
242
|
.e-m-2{
|
|
228
243
|
margin: 0.5rem;
|
|
229
244
|
}
|
|
245
|
+
.e-m-auto{
|
|
246
|
+
margin: auto;
|
|
247
|
+
}
|
|
230
248
|
.e-mx-auto{
|
|
231
249
|
margin-left: auto;
|
|
232
250
|
margin-right: auto;
|
|
@@ -252,6 +270,15 @@
|
|
|
252
270
|
.e-inline-flex{
|
|
253
271
|
display: inline-flex;
|
|
254
272
|
}
|
|
273
|
+
.e-hidden{
|
|
274
|
+
display: none;
|
|
275
|
+
}
|
|
276
|
+
.e-aspect-auto{
|
|
277
|
+
aspect-ratio: auto;
|
|
278
|
+
}
|
|
279
|
+
.e-aspect-video{
|
|
280
|
+
aspect-ratio: 16 / 9;
|
|
281
|
+
}
|
|
255
282
|
.e-h-10{
|
|
256
283
|
height: 2.5rem;
|
|
257
284
|
}
|
|
@@ -288,9 +315,18 @@
|
|
|
288
315
|
.e-h-8{
|
|
289
316
|
height: 2rem;
|
|
290
317
|
}
|
|
318
|
+
.e-h-auto{
|
|
319
|
+
height: auto;
|
|
320
|
+
}
|
|
291
321
|
.e-h-full{
|
|
292
322
|
height: 100%;
|
|
293
323
|
}
|
|
324
|
+
.e-h-min{
|
|
325
|
+
height: min-content;
|
|
326
|
+
}
|
|
327
|
+
.e-min-h-\[400px\]{
|
|
328
|
+
min-height: 400px;
|
|
329
|
+
}
|
|
294
330
|
.\!e-w-auto{
|
|
295
331
|
width: auto !important;
|
|
296
332
|
}
|
|
@@ -333,6 +369,9 @@
|
|
|
333
369
|
.e-w-auto{
|
|
334
370
|
width: auto;
|
|
335
371
|
}
|
|
372
|
+
.e-w-fit{
|
|
373
|
+
width: fit-content;
|
|
374
|
+
}
|
|
336
375
|
.e-w-full{
|
|
337
376
|
width: 100%;
|
|
338
377
|
}
|
|
@@ -615,9 +654,23 @@
|
|
|
615
654
|
.e-basis-full{
|
|
616
655
|
flex-basis: 100%;
|
|
617
656
|
}
|
|
657
|
+
.e-scale-150{
|
|
658
|
+
--tw-scale-x: 1.5;
|
|
659
|
+
--tw-scale-y: 1.5;
|
|
660
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
661
|
+
}
|
|
662
|
+
.e-cursor-grab{
|
|
663
|
+
cursor: grab;
|
|
664
|
+
}
|
|
665
|
+
.e-cursor-grabbing{
|
|
666
|
+
cursor: grabbing;
|
|
667
|
+
}
|
|
618
668
|
.e-cursor-pointer{
|
|
619
669
|
cursor: pointer;
|
|
620
670
|
}
|
|
671
|
+
.e-touch-none{
|
|
672
|
+
touch-action: none;
|
|
673
|
+
}
|
|
621
674
|
.e-select-none{
|
|
622
675
|
user-select: none;
|
|
623
676
|
}
|
|
@@ -741,6 +794,9 @@
|
|
|
741
794
|
.e-gap-3{
|
|
742
795
|
gap: 0.75rem;
|
|
743
796
|
}
|
|
797
|
+
.e-gap-6{
|
|
798
|
+
gap: 1.5rem;
|
|
799
|
+
}
|
|
744
800
|
.e-space-x-2 > :not([hidden]) ~ :not([hidden]){
|
|
745
801
|
--tw-space-x-reverse: 0;
|
|
746
802
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
@@ -776,6 +832,9 @@
|
|
|
776
832
|
.e-overflow-auto{
|
|
777
833
|
overflow: auto;
|
|
778
834
|
}
|
|
835
|
+
.e-overflow-hidden{
|
|
836
|
+
overflow: hidden;
|
|
837
|
+
}
|
|
779
838
|
.e-overflow-x-hidden{
|
|
780
839
|
overflow-x: hidden;
|
|
781
840
|
}
|
|
@@ -813,6 +872,10 @@
|
|
|
813
872
|
--tw-border-opacity: 1;
|
|
814
873
|
border-color: rgb(55 65 81 / var(--tw-border-opacity));
|
|
815
874
|
}
|
|
875
|
+
.e-bg-\[\#629efc\]{
|
|
876
|
+
--tw-bg-opacity: 1;
|
|
877
|
+
background-color: rgb(98 158 252 / var(--tw-bg-opacity));
|
|
878
|
+
}
|
|
816
879
|
.e-bg-amber-500{
|
|
817
880
|
--tw-bg-opacity: 1;
|
|
818
881
|
background-color: rgb(245 158 11 / var(--tw-bg-opacity));
|
|
@@ -821,6 +884,10 @@
|
|
|
821
884
|
--tw-bg-opacity: 1;
|
|
822
885
|
background-color: rgb(237 99 104 / var(--tw-bg-opacity));
|
|
823
886
|
}
|
|
887
|
+
.e-bg-brand-600{
|
|
888
|
+
--tw-bg-opacity: 1;
|
|
889
|
+
background-color: rgb(156 18 22 / var(--tw-bg-opacity));
|
|
890
|
+
}
|
|
824
891
|
.e-bg-cyan-500{
|
|
825
892
|
--tw-bg-opacity: 1;
|
|
826
893
|
background-color: rgb(6 182 212 / var(--tw-bg-opacity));
|
|
@@ -833,6 +900,10 @@
|
|
|
833
900
|
--tw-bg-opacity: 1;
|
|
834
901
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
835
902
|
}
|
|
903
|
+
.e-bg-gray-600{
|
|
904
|
+
--tw-bg-opacity: 1;
|
|
905
|
+
background-color: rgb(75 85 99 / var(--tw-bg-opacity));
|
|
906
|
+
}
|
|
836
907
|
.e-bg-gray-800{
|
|
837
908
|
--tw-bg-opacity: 1;
|
|
838
909
|
background-color: rgb(31 41 55 / var(--tw-bg-opacity));
|
|
@@ -845,6 +916,9 @@
|
|
|
845
916
|
--tw-bg-opacity: 1;
|
|
846
917
|
background-color: rgb(22 163 74 / var(--tw-bg-opacity));
|
|
847
918
|
}
|
|
919
|
+
.e-bg-inherit{
|
|
920
|
+
background-color: inherit;
|
|
921
|
+
}
|
|
848
922
|
.e-bg-lime-500{
|
|
849
923
|
--tw-bg-opacity: 1;
|
|
850
924
|
background-color: rgb(132 204 22 / var(--tw-bg-opacity));
|
|
@@ -857,6 +931,10 @@
|
|
|
857
931
|
--tw-bg-opacity: 1;
|
|
858
932
|
background-color: rgb(38 38 38 / var(--tw-bg-opacity));
|
|
859
933
|
}
|
|
934
|
+
.e-bg-primary{
|
|
935
|
+
--tw-bg-opacity: 1;
|
|
936
|
+
background-color: rgb(14 165 233 / var(--tw-bg-opacity));
|
|
937
|
+
}
|
|
860
938
|
.e-bg-purple-500{
|
|
861
939
|
--tw-bg-opacity: 1;
|
|
862
940
|
background-color: rgb(168 85 247 / var(--tw-bg-opacity));
|
|
@@ -879,6 +957,9 @@
|
|
|
879
957
|
.e-p-1{
|
|
880
958
|
padding: 0.25rem;
|
|
881
959
|
}
|
|
960
|
+
.e-p-1\.5{
|
|
961
|
+
padding: 0.375rem;
|
|
962
|
+
}
|
|
882
963
|
.e-p-2{
|
|
883
964
|
padding: 0.5rem;
|
|
884
965
|
}
|
|
@@ -903,6 +984,10 @@
|
|
|
903
984
|
padding-left: 1rem;
|
|
904
985
|
padding-right: 1rem;
|
|
905
986
|
}
|
|
987
|
+
.e-py-\[\.2rem\]{
|
|
988
|
+
padding-top: .2rem;
|
|
989
|
+
padding-bottom: .2rem;
|
|
990
|
+
}
|
|
906
991
|
.e-pb-2{
|
|
907
992
|
padding-bottom: 0.5rem;
|
|
908
993
|
}
|
|
@@ -969,6 +1054,9 @@
|
|
|
969
1054
|
.e-font-semibold{
|
|
970
1055
|
font-weight: 600;
|
|
971
1056
|
}
|
|
1057
|
+
.e-leading-3{
|
|
1058
|
+
line-height: .75rem;
|
|
1059
|
+
}
|
|
972
1060
|
.e-leading-6{
|
|
973
1061
|
line-height: 1.5rem;
|
|
974
1062
|
}
|
|
@@ -984,10 +1072,18 @@
|
|
|
984
1072
|
--tw-text-opacity: 1;
|
|
985
1073
|
color: rgb(96 165 250 / var(--tw-text-opacity));
|
|
986
1074
|
}
|
|
1075
|
+
.e-text-gray-100{
|
|
1076
|
+
--tw-text-opacity: 1;
|
|
1077
|
+
color: rgb(243 244 246 / var(--tw-text-opacity));
|
|
1078
|
+
}
|
|
987
1079
|
.e-text-gray-700{
|
|
988
1080
|
--tw-text-opacity: 1;
|
|
989
1081
|
color: rgb(55 65 81 / var(--tw-text-opacity));
|
|
990
1082
|
}
|
|
1083
|
+
.e-text-gray-900{
|
|
1084
|
+
--tw-text-opacity: 1;
|
|
1085
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
|
1086
|
+
}
|
|
991
1087
|
.e-text-green-500{
|
|
992
1088
|
--tw-text-opacity: 1;
|
|
993
1089
|
color: rgb(34 197 94 / var(--tw-text-opacity));
|
|
@@ -1036,6 +1132,11 @@
|
|
|
1036
1132
|
.e-underline-offset-8{
|
|
1037
1133
|
text-underline-offset: 8px;
|
|
1038
1134
|
}
|
|
1135
|
+
.e-shadow{
|
|
1136
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1137
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1138
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1139
|
+
}
|
|
1039
1140
|
.e-shadow-lg{
|
|
1040
1141
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1041
1142
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -1113,6 +1214,26 @@
|
|
|
1113
1214
|
.e-outline-offset-8{
|
|
1114
1215
|
outline-offset: 8px;
|
|
1115
1216
|
}
|
|
1217
|
+
.e-blur-video-poster{
|
|
1218
|
+
--tw-blur: blur(32px);
|
|
1219
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1220
|
+
}
|
|
1221
|
+
.e-transition{
|
|
1222
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1223
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1224
|
+
transition-duration: 150ms;
|
|
1225
|
+
}
|
|
1226
|
+
.e-transition-colors{
|
|
1227
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1228
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1229
|
+
transition-duration: 150ms;
|
|
1230
|
+
}
|
|
1231
|
+
.e-duration-200{
|
|
1232
|
+
transition-duration: 200ms;
|
|
1233
|
+
}
|
|
1234
|
+
.e-ease-in-out{
|
|
1235
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1236
|
+
}
|
|
1116
1237
|
@media (min-width: 640px){
|
|
1117
1238
|
|
|
1118
1239
|
.sm\:\!e-w-auto{
|