@evercam/ui 0.0.55-beta.34 → 0.0.55-beta.35
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 +0 -1
- package/dist/attributes.json +39 -13
- package/dist/index.mjs +1272 -1637
- 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/ETruncatedDiv.vue.d.ts +8 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +15 -197
- package/dist/src/constants.d.ts +0 -1
- package/dist/src/index.d.ts +25 -285
- package/dist/src/types.d.ts +1 -9
- package/dist/style.css +1 -1
- package/dist/styles.css +6 -110
- package/dist/tags.json +22 -6
- package/dist/web-types.json +99 -35
- package/package.json +1 -1
- package/dist/src/components/EToggleSwitch.vue.d.ts +0 -34
- package/dist/src/components/EZoomable.vue.d.ts +0 -73
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import Vue from "vue";
|
|
2
|
+
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
3
|
+
separatorStyle: Record<string, any>;
|
|
4
|
+
}, {
|
|
5
|
+
xOffset: string | number;
|
|
6
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
7
|
+
export default _default;
|
|
@@ -320,5 +320,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
320
320
|
forbiddenIntervalColor: string;
|
|
321
321
|
focusedInterval: TimelineInterval | undefined;
|
|
322
322
|
locked: boolean;
|
|
323
|
+
timezone: string | undefined;
|
|
323
324
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
324
325
|
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import Vue from "vue";
|
|
2
|
+
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
3
|
+
containerStyle: Record<string, any>;
|
|
4
|
+
}, {
|
|
5
|
+
width: string | number;
|
|
6
|
+
fixedWidth: boolean;
|
|
7
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
8
|
+
export default _default;
|
|
@@ -1,95 +1,11 @@
|
|
|
1
|
-
import Hls
|
|
2
|
-
import
|
|
1
|
+
import Hls from "hls.js";
|
|
2
|
+
import Vue from "vue";
|
|
3
3
|
export type VideoSource = {
|
|
4
4
|
type: string;
|
|
5
5
|
src: string;
|
|
6
6
|
};
|
|
7
7
|
export declare const VIDEO_PLAYER_EVENTS: string[];
|
|
8
|
-
|
|
9
|
-
_240 = 240,
|
|
10
|
-
_480 = 480,
|
|
11
|
-
_640 = 640,
|
|
12
|
-
_720 = 720,
|
|
13
|
-
_1080 = 1080
|
|
14
|
-
}
|
|
15
|
-
declare const _default: import("vue").DefineComponent<{
|
|
16
|
-
targetTimestamp: {
|
|
17
|
-
type: (StringConstructor | DateConstructor)[];
|
|
18
|
-
default: undefined;
|
|
19
|
-
};
|
|
20
|
-
sources: {
|
|
21
|
-
type: PropType<string | VideoSource[]>;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
videoListeners: {
|
|
25
|
-
type: PropType<Partial<HTMLVideoElement>>;
|
|
26
|
-
default: () => {};
|
|
27
|
-
};
|
|
28
|
-
videoOptions: {
|
|
29
|
-
type: PropType<Partial<HTMLVideoElement>>;
|
|
30
|
-
default: () => {};
|
|
31
|
-
};
|
|
32
|
-
isHls: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
default: boolean;
|
|
35
|
-
};
|
|
36
|
-
streamingToken: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
pauseOnClick: {
|
|
41
|
-
type: BooleanConstructor;
|
|
42
|
-
default: boolean;
|
|
43
|
-
};
|
|
44
|
-
isHlsLoading: {
|
|
45
|
-
type: BooleanConstructor;
|
|
46
|
-
default: boolean;
|
|
47
|
-
};
|
|
48
|
-
isPlaying: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
selectedResolution: {
|
|
53
|
-
type: PropType<EdgeVideoResolution | undefined>;
|
|
54
|
-
default: undefined;
|
|
55
|
-
};
|
|
56
|
-
isZoomable: {
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
zoomableIgnorePointerEvents: {
|
|
61
|
-
type: BooleanConstructor;
|
|
62
|
-
default: boolean;
|
|
63
|
-
};
|
|
64
|
-
timezone: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
playPauseAnimation: {
|
|
69
|
-
type: BooleanConstructor;
|
|
70
|
-
default: boolean;
|
|
71
|
-
};
|
|
72
|
-
disablePlayPauseAnimation: {
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
default: boolean;
|
|
75
|
-
};
|
|
76
|
-
isWebRtc: {
|
|
77
|
-
type: BooleanConstructor;
|
|
78
|
-
default: boolean;
|
|
79
|
-
};
|
|
80
|
-
withColoredLoader: {
|
|
81
|
-
type: BooleanConstructor;
|
|
82
|
-
default: boolean;
|
|
83
|
-
};
|
|
84
|
-
loaderSize: {
|
|
85
|
-
type: StringConstructor;
|
|
86
|
-
default: string;
|
|
87
|
-
};
|
|
88
|
-
withOverlayOnBackground: {
|
|
89
|
-
type: BooleanConstructor;
|
|
90
|
-
default: boolean;
|
|
91
|
-
};
|
|
92
|
-
}, {}, {
|
|
8
|
+
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
93
9
|
playing: boolean;
|
|
94
10
|
percentagePlayed: number;
|
|
95
11
|
videoLength: string;
|
|
@@ -104,23 +20,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
104
20
|
isLoading: boolean;
|
|
105
21
|
isError: boolean;
|
|
106
22
|
player: Hls;
|
|
107
|
-
playbackRetries: number;
|
|
108
|
-
preloadedSeconds: number;
|
|
109
|
-
preloadedInterval: {
|
|
110
|
-
start: string;
|
|
111
|
-
end: string;
|
|
112
|
-
};
|
|
113
|
-
}, {
|
|
114
|
-
sourceItems(): VideoSource[];
|
|
115
|
-
hasStartedOrFinished(): boolean;
|
|
116
|
-
withControls(): "" | "hide";
|
|
117
23
|
}, {
|
|
118
24
|
initHls(): void;
|
|
119
|
-
onContainerClick(): void;
|
|
120
25
|
handle404Error(): void;
|
|
121
|
-
handleHlsError(_: Events.ERROR, data: ErrorData): void;
|
|
122
26
|
bindEvents(): void;
|
|
123
|
-
onProgress(): void;
|
|
124
27
|
unbindEvents(): void;
|
|
125
28
|
bindVideoEvent(which: string): void;
|
|
126
29
|
initializePlayer(): void;
|
|
@@ -132,9 +35,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
132
35
|
handleScrubbingOnMouseEnd(e: MouseEvent): void;
|
|
133
36
|
handleEnded(): void;
|
|
134
37
|
handleLoading(): void;
|
|
135
|
-
play():
|
|
38
|
+
play(): void;
|
|
136
39
|
pause(): void;
|
|
137
|
-
togglePlay():
|
|
40
|
+
togglePlay(): void;
|
|
138
41
|
setPlaying(state: boolean): void;
|
|
139
42
|
seekToPercentage(percentage: number): void;
|
|
140
43
|
convertTimeToDuration(seconds: number): string;
|
|
@@ -147,101 +50,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
147
50
|
skip(duration?: number): void;
|
|
148
51
|
toggleScrubbing(e: MouseEvent): Promise<void>;
|
|
149
52
|
handleKeyDown(e: KeyboardEvent): void;
|
|
150
|
-
},
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
sources:
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
};
|
|
159
|
-
videoListeners: {
|
|
160
|
-
type: PropType<Partial<HTMLVideoElement>>;
|
|
161
|
-
default: () => {};
|
|
162
|
-
};
|
|
163
|
-
videoOptions: {
|
|
164
|
-
type: PropType<Partial<HTMLVideoElement>>;
|
|
165
|
-
default: () => {};
|
|
166
|
-
};
|
|
167
|
-
isHls: {
|
|
168
|
-
type: BooleanConstructor;
|
|
169
|
-
default: boolean;
|
|
170
|
-
};
|
|
171
|
-
streamingToken: {
|
|
172
|
-
type: StringConstructor;
|
|
173
|
-
default: string;
|
|
174
|
-
};
|
|
175
|
-
pauseOnClick: {
|
|
176
|
-
type: BooleanConstructor;
|
|
177
|
-
default: boolean;
|
|
178
|
-
};
|
|
179
|
-
isHlsLoading: {
|
|
180
|
-
type: BooleanConstructor;
|
|
181
|
-
default: boolean;
|
|
182
|
-
};
|
|
183
|
-
isPlaying: {
|
|
184
|
-
type: BooleanConstructor;
|
|
185
|
-
default: boolean;
|
|
186
|
-
};
|
|
187
|
-
selectedResolution: {
|
|
188
|
-
type: PropType<EdgeVideoResolution | undefined>;
|
|
189
|
-
default: undefined;
|
|
190
|
-
};
|
|
191
|
-
isZoomable: {
|
|
192
|
-
type: BooleanConstructor;
|
|
193
|
-
default: boolean;
|
|
194
|
-
};
|
|
195
|
-
zoomableIgnorePointerEvents: {
|
|
196
|
-
type: BooleanConstructor;
|
|
197
|
-
default: boolean;
|
|
198
|
-
};
|
|
199
|
-
timezone: {
|
|
200
|
-
type: StringConstructor;
|
|
201
|
-
default: string;
|
|
202
|
-
};
|
|
203
|
-
playPauseAnimation: {
|
|
204
|
-
type: BooleanConstructor;
|
|
205
|
-
default: boolean;
|
|
206
|
-
};
|
|
207
|
-
disablePlayPauseAnimation: {
|
|
208
|
-
type: BooleanConstructor;
|
|
209
|
-
default: boolean;
|
|
210
|
-
};
|
|
211
|
-
isWebRtc: {
|
|
212
|
-
type: BooleanConstructor;
|
|
213
|
-
default: boolean;
|
|
214
|
-
};
|
|
215
|
-
withColoredLoader: {
|
|
216
|
-
type: BooleanConstructor;
|
|
217
|
-
default: boolean;
|
|
218
|
-
};
|
|
219
|
-
loaderSize: {
|
|
220
|
-
type: StringConstructor;
|
|
221
|
-
default: string;
|
|
222
|
-
};
|
|
223
|
-
withOverlayOnBackground: {
|
|
224
|
-
type: BooleanConstructor;
|
|
225
|
-
default: boolean;
|
|
226
|
-
};
|
|
227
|
-
}>>, {
|
|
228
|
-
timezone: string;
|
|
229
|
-
isPlaying: boolean;
|
|
230
|
-
targetTimestamp: string | Date;
|
|
231
|
-
videoListeners: Partial<HTMLVideoElement>;
|
|
232
|
-
videoOptions: Partial<HTMLVideoElement>;
|
|
53
|
+
}, {
|
|
54
|
+
sourceItems: VideoSource[];
|
|
55
|
+
hasStartedOrFinished: boolean;
|
|
56
|
+
withControls: "" | "hide";
|
|
57
|
+
}, {
|
|
58
|
+
sources: string | VideoSource[];
|
|
59
|
+
videoListeners: {};
|
|
60
|
+
videoOptions: {};
|
|
233
61
|
isHls: boolean;
|
|
234
62
|
streamingToken: string;
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
selectedResolution: EdgeVideoResolution | undefined;
|
|
238
|
-
isZoomable: boolean;
|
|
239
|
-
zoomableIgnorePointerEvents: boolean;
|
|
240
|
-
playPauseAnimation: boolean;
|
|
241
|
-
disablePlayPauseAnimation: boolean;
|
|
242
|
-
isWebRtc: boolean;
|
|
243
|
-
withColoredLoader: boolean;
|
|
244
|
-
loaderSize: string;
|
|
245
|
-
withOverlayOnBackground: boolean;
|
|
246
|
-
}>;
|
|
63
|
+
isLiveView: boolean;
|
|
64
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
247
65
|
export default _default;
|
package/dist/src/constants.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ export declare const Colors: any;
|
|
|
5
5
|
export declare const BadgeSizes: readonly [Size.dot, Size.xs, Size.sm, Size.md, Size.lg, Size.xl];
|
|
6
6
|
export declare const AvatarSizes: readonly [Size.xs, Size.sm, Size.md, Size.lg, Size.xl, (typeof Size)["2xl"]];
|
|
7
7
|
export declare const IconSizes: readonly [Size.xs, Size.sm, Size.md, Size.md, Size.lg, Size.xl, (typeof Size)["2xl"], (typeof Size)["3xl"], (typeof Size)["4xl"], (typeof Size)["5xl"], (typeof Size)["6xl"], (typeof Size)["7xl"], (typeof Size)["8xl"], (typeof Size)["9xl"]];
|
|
8
|
-
export declare const ToggleSwitchSizes: readonly [Size.sm, Size.md, Size.md, Size.lg];
|
|
9
8
|
export declare const BadgeColors: readonly [BaseColor.warning, BaseColor.error, BaseColor.info, BaseColor.success, BaseColor.primary, BaseColor.default];
|
|
10
9
|
export declare const EVENTS: string[];
|
|
11
10
|
declare const _default: {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ import EVideoEmbed from './components/EVideoEmbed.vue';
|
|
|
10
10
|
import EHeatmapBar from './components/EHeatmapBar.vue';
|
|
11
11
|
import EHoursHeatmap from './components/EHoursHeatmap.vue';
|
|
12
12
|
import EReadMore from './components/EReadMore.vue';
|
|
13
|
-
import
|
|
14
|
-
import
|
|
13
|
+
import ETruncatedDiv from './components/ETruncatedDiv.vue';
|
|
14
|
+
import ECompareSeparator from './components/ECompareSeparator.vue';
|
|
15
15
|
import { VueConstructor } from "vue";
|
|
16
16
|
export declare const components: {
|
|
17
17
|
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>>, {
|
|
@@ -123,84 +123,7 @@ export declare const components: {
|
|
|
123
123
|
xs: string | number | boolean;
|
|
124
124
|
xl: string | number | boolean;
|
|
125
125
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
126
|
-
EVideoPlayer: import("vue").
|
|
127
|
-
targetTimestamp: {
|
|
128
|
-
type: (StringConstructor | DateConstructor)[];
|
|
129
|
-
default: undefined;
|
|
130
|
-
};
|
|
131
|
-
sources: {
|
|
132
|
-
type: import("vue").PropType<string | import('./components/EVideoPlayer.vue').VideoSource[]>;
|
|
133
|
-
required: true;
|
|
134
|
-
};
|
|
135
|
-
videoListeners: {
|
|
136
|
-
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
137
|
-
default: () => {};
|
|
138
|
-
};
|
|
139
|
-
videoOptions: {
|
|
140
|
-
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
141
|
-
default: () => {};
|
|
142
|
-
};
|
|
143
|
-
isHls: {
|
|
144
|
-
type: BooleanConstructor;
|
|
145
|
-
default: boolean;
|
|
146
|
-
};
|
|
147
|
-
streamingToken: {
|
|
148
|
-
type: StringConstructor;
|
|
149
|
-
default: string;
|
|
150
|
-
};
|
|
151
|
-
pauseOnClick: {
|
|
152
|
-
type: BooleanConstructor;
|
|
153
|
-
default: boolean;
|
|
154
|
-
};
|
|
155
|
-
isHlsLoading: {
|
|
156
|
-
type: BooleanConstructor;
|
|
157
|
-
default: boolean;
|
|
158
|
-
};
|
|
159
|
-
isPlaying: {
|
|
160
|
-
type: BooleanConstructor;
|
|
161
|
-
default: boolean;
|
|
162
|
-
};
|
|
163
|
-
selectedResolution: {
|
|
164
|
-
type: import("vue").PropType<import('./components/EVideoPlayer.vue').EdgeVideoResolution | undefined>;
|
|
165
|
-
default: undefined;
|
|
166
|
-
};
|
|
167
|
-
isZoomable: {
|
|
168
|
-
type: BooleanConstructor;
|
|
169
|
-
default: boolean;
|
|
170
|
-
};
|
|
171
|
-
zoomableIgnorePointerEvents: {
|
|
172
|
-
type: BooleanConstructor;
|
|
173
|
-
default: boolean;
|
|
174
|
-
};
|
|
175
|
-
timezone: {
|
|
176
|
-
type: StringConstructor;
|
|
177
|
-
default: string;
|
|
178
|
-
};
|
|
179
|
-
playPauseAnimation: {
|
|
180
|
-
type: BooleanConstructor;
|
|
181
|
-
default: boolean;
|
|
182
|
-
};
|
|
183
|
-
disablePlayPauseAnimation: {
|
|
184
|
-
type: BooleanConstructor;
|
|
185
|
-
default: boolean;
|
|
186
|
-
};
|
|
187
|
-
isWebRtc: {
|
|
188
|
-
type: BooleanConstructor;
|
|
189
|
-
default: boolean;
|
|
190
|
-
};
|
|
191
|
-
withColoredLoader: {
|
|
192
|
-
type: BooleanConstructor;
|
|
193
|
-
default: boolean;
|
|
194
|
-
};
|
|
195
|
-
loaderSize: {
|
|
196
|
-
type: StringConstructor;
|
|
197
|
-
default: string;
|
|
198
|
-
};
|
|
199
|
-
withOverlayOnBackground: {
|
|
200
|
-
type: BooleanConstructor;
|
|
201
|
-
default: boolean;
|
|
202
|
-
};
|
|
203
|
-
}, {}, {
|
|
126
|
+
EVideoPlayer: 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>>, {
|
|
204
127
|
playing: boolean;
|
|
205
128
|
percentagePlayed: number;
|
|
206
129
|
videoLength: string;
|
|
@@ -215,23 +138,10 @@ export declare const components: {
|
|
|
215
138
|
isLoading: boolean;
|
|
216
139
|
isError: boolean;
|
|
217
140
|
player: import("hls.js").default;
|
|
218
|
-
playbackRetries: number;
|
|
219
|
-
preloadedSeconds: number;
|
|
220
|
-
preloadedInterval: {
|
|
221
|
-
start: string;
|
|
222
|
-
end: string;
|
|
223
|
-
};
|
|
224
|
-
}, {
|
|
225
|
-
sourceItems(): import('./components/EVideoPlayer.vue').VideoSource[];
|
|
226
|
-
hasStartedOrFinished(): boolean;
|
|
227
|
-
withControls(): "" | "hide";
|
|
228
141
|
}, {
|
|
229
142
|
initHls(): void;
|
|
230
|
-
onContainerClick(): void;
|
|
231
143
|
handle404Error(): void;
|
|
232
|
-
handleHlsError(_: import("hls.js").Events.ERROR, data: import("hls.js").ErrorData): void;
|
|
233
144
|
bindEvents(): void;
|
|
234
|
-
onProgress(): void;
|
|
235
145
|
unbindEvents(): void;
|
|
236
146
|
bindVideoEvent(which: string): void;
|
|
237
147
|
initializePlayer(): void;
|
|
@@ -243,9 +153,9 @@ export declare const components: {
|
|
|
243
153
|
handleScrubbingOnMouseEnd(e: MouseEvent): void;
|
|
244
154
|
handleEnded(): void;
|
|
245
155
|
handleLoading(): void;
|
|
246
|
-
play():
|
|
156
|
+
play(): void;
|
|
247
157
|
pause(): void;
|
|
248
|
-
togglePlay():
|
|
158
|
+
togglePlay(): void;
|
|
249
159
|
setPlaying(state: boolean): void;
|
|
250
160
|
seekToPercentage(percentage: number): void;
|
|
251
161
|
convertTimeToDuration(seconds: number): string;
|
|
@@ -258,103 +168,18 @@ export declare const components: {
|
|
|
258
168
|
skip(duration?: number): void;
|
|
259
169
|
toggleScrubbing(e: MouseEvent): Promise<void>;
|
|
260
170
|
handleKeyDown(e: KeyboardEvent): void;
|
|
261
|
-
},
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
sources:
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
};
|
|
270
|
-
videoListeners: {
|
|
271
|
-
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
272
|
-
default: () => {};
|
|
273
|
-
};
|
|
274
|
-
videoOptions: {
|
|
275
|
-
type: import("vue").PropType<Partial<HTMLVideoElement>>;
|
|
276
|
-
default: () => {};
|
|
277
|
-
};
|
|
278
|
-
isHls: {
|
|
279
|
-
type: BooleanConstructor;
|
|
280
|
-
default: boolean;
|
|
281
|
-
};
|
|
282
|
-
streamingToken: {
|
|
283
|
-
type: StringConstructor;
|
|
284
|
-
default: string;
|
|
285
|
-
};
|
|
286
|
-
pauseOnClick: {
|
|
287
|
-
type: BooleanConstructor;
|
|
288
|
-
default: boolean;
|
|
289
|
-
};
|
|
290
|
-
isHlsLoading: {
|
|
291
|
-
type: BooleanConstructor;
|
|
292
|
-
default: boolean;
|
|
293
|
-
};
|
|
294
|
-
isPlaying: {
|
|
295
|
-
type: BooleanConstructor;
|
|
296
|
-
default: boolean;
|
|
297
|
-
};
|
|
298
|
-
selectedResolution: {
|
|
299
|
-
type: import("vue").PropType<import('./components/EVideoPlayer.vue').EdgeVideoResolution | undefined>;
|
|
300
|
-
default: undefined;
|
|
301
|
-
};
|
|
302
|
-
isZoomable: {
|
|
303
|
-
type: BooleanConstructor;
|
|
304
|
-
default: boolean;
|
|
305
|
-
};
|
|
306
|
-
zoomableIgnorePointerEvents: {
|
|
307
|
-
type: BooleanConstructor;
|
|
308
|
-
default: boolean;
|
|
309
|
-
};
|
|
310
|
-
timezone: {
|
|
311
|
-
type: StringConstructor;
|
|
312
|
-
default: string;
|
|
313
|
-
};
|
|
314
|
-
playPauseAnimation: {
|
|
315
|
-
type: BooleanConstructor;
|
|
316
|
-
default: boolean;
|
|
317
|
-
};
|
|
318
|
-
disablePlayPauseAnimation: {
|
|
319
|
-
type: BooleanConstructor;
|
|
320
|
-
default: boolean;
|
|
321
|
-
};
|
|
322
|
-
isWebRtc: {
|
|
323
|
-
type: BooleanConstructor;
|
|
324
|
-
default: boolean;
|
|
325
|
-
};
|
|
326
|
-
withColoredLoader: {
|
|
327
|
-
type: BooleanConstructor;
|
|
328
|
-
default: boolean;
|
|
329
|
-
};
|
|
330
|
-
loaderSize: {
|
|
331
|
-
type: StringConstructor;
|
|
332
|
-
default: string;
|
|
333
|
-
};
|
|
334
|
-
withOverlayOnBackground: {
|
|
335
|
-
type: BooleanConstructor;
|
|
336
|
-
default: boolean;
|
|
337
|
-
};
|
|
338
|
-
}>>, {
|
|
339
|
-
timezone: string;
|
|
340
|
-
isPlaying: boolean;
|
|
341
|
-
targetTimestamp: string | Date;
|
|
342
|
-
videoListeners: Partial<HTMLVideoElement>;
|
|
343
|
-
videoOptions: Partial<HTMLVideoElement>;
|
|
171
|
+
}, {
|
|
172
|
+
sourceItems: import('./components/EVideoPlayer.vue').VideoSource[];
|
|
173
|
+
hasStartedOrFinished: boolean;
|
|
174
|
+
withControls: "" | "hide";
|
|
175
|
+
}, {
|
|
176
|
+
sources: string | import('./components/EVideoPlayer.vue').VideoSource[];
|
|
177
|
+
videoListeners: {};
|
|
178
|
+
videoOptions: {};
|
|
344
179
|
isHls: boolean;
|
|
345
180
|
streamingToken: string;
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
selectedResolution: import('./components/EVideoPlayer.vue').EdgeVideoResolution | undefined;
|
|
349
|
-
isZoomable: boolean;
|
|
350
|
-
zoomableIgnorePointerEvents: boolean;
|
|
351
|
-
playPauseAnimation: boolean;
|
|
352
|
-
disablePlayPauseAnimation: boolean;
|
|
353
|
-
isWebRtc: boolean;
|
|
354
|
-
withColoredLoader: boolean;
|
|
355
|
-
loaderSize: string;
|
|
356
|
-
withOverlayOnBackground: boolean;
|
|
357
|
-
}>;
|
|
181
|
+
isLiveView: boolean;
|
|
182
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
358
183
|
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>>, {
|
|
359
184
|
tooltip: HTMLElement;
|
|
360
185
|
cursor: HTMLElement;
|
|
@@ -673,6 +498,7 @@ export declare const components: {
|
|
|
673
498
|
forbiddenIntervalColor: string;
|
|
674
499
|
focusedInterval: import('./types').TimelineInterval | undefined;
|
|
675
500
|
locked: boolean;
|
|
501
|
+
timezone: string | undefined;
|
|
676
502
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
677
503
|
EVideoEmbed: import("vue").DefineComponent<{
|
|
678
504
|
videoUrl: {
|
|
@@ -741,109 +567,23 @@ export declare const components: {
|
|
|
741
567
|
collapseText: string;
|
|
742
568
|
moreTextWithPlaceholder: string;
|
|
743
569
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
744
|
-
|
|
745
|
-
|
|
570
|
+
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, {
|
|
571
|
+
containerStyle: Record<string, any>;
|
|
746
572
|
}, {
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
"e-bg-brand-600": boolean;
|
|
750
|
-
"e-bg-gray-600": boolean;
|
|
751
|
-
"e-bg-[#629efc] e-text-gray-900 e-font-normal": boolean;
|
|
752
|
-
};
|
|
753
|
-
handleClick(value: any): void;
|
|
754
|
-
}, {
|
|
755
|
-
sizeClasses: {
|
|
756
|
-
container: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
757
|
-
button: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
758
|
-
text: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
759
|
-
};
|
|
760
|
-
containerClasses: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
761
|
-
textClasses: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
762
|
-
buttonBaseClasses: import('./components/EToggleSwitch.vue').CssClassMap;
|
|
763
|
-
}, {
|
|
764
|
-
options: import('./components/EToggleSwitch.vue').EToggleSwitchOption[];
|
|
765
|
-
color: string;
|
|
766
|
-
size: import('./types').Size;
|
|
767
|
-
defaultValue: string | number | boolean;
|
|
573
|
+
width: string | number;
|
|
574
|
+
fixedWidth: boolean;
|
|
768
575
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
type: BooleanConstructor;
|
|
772
|
-
default: boolean;
|
|
773
|
-
};
|
|
774
|
-
withOverlay: {
|
|
775
|
-
type: BooleanConstructor;
|
|
776
|
-
default: boolean;
|
|
777
|
-
};
|
|
778
|
-
disabled: {
|
|
779
|
-
type: BooleanConstructor;
|
|
780
|
-
default: boolean;
|
|
781
|
-
};
|
|
782
|
-
}, {}, {
|
|
783
|
-
scale: number;
|
|
784
|
-
minScale: number;
|
|
785
|
-
maxScale: number;
|
|
786
|
-
top: number;
|
|
787
|
-
left: number;
|
|
788
|
-
isPanning: boolean;
|
|
789
|
-
panStart: {
|
|
790
|
-
x: number;
|
|
791
|
-
y: number;
|
|
792
|
-
};
|
|
793
|
-
isPinching: boolean;
|
|
794
|
-
previousPinchDistance: number;
|
|
795
|
-
pinchDistance: number;
|
|
796
|
-
pointers: {};
|
|
797
|
-
transform: string;
|
|
576
|
+
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, {
|
|
577
|
+
separatorStyle: Record<string, any>;
|
|
798
578
|
}, {
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
};
|
|
802
|
-
isZoomed(): boolean;
|
|
803
|
-
}, {
|
|
804
|
-
updateZoomScale(): void;
|
|
805
|
-
handleZoom(e: any): void;
|
|
806
|
-
handleMouseDown(e: any): void;
|
|
807
|
-
handleMouseUp(): void;
|
|
808
|
-
handleMouseLeave(): void;
|
|
809
|
-
handleMouseMove(e: any): void;
|
|
810
|
-
applyBoundsCorrection(): void;
|
|
811
|
-
updateTransform(): void;
|
|
812
|
-
getPointersDistance(a: any, b: any): number;
|
|
813
|
-
getPointersMidPoint(a: any, b: any): {
|
|
814
|
-
x: any;
|
|
815
|
-
y: any;
|
|
816
|
-
};
|
|
817
|
-
updatePointerEvent(e: any): void;
|
|
818
|
-
clearPointerEvent(e: any): void;
|
|
819
|
-
updatePinchDistance(): void;
|
|
820
|
-
handlePointerDown(e: any): void;
|
|
821
|
-
handlePointerMove(e: any): void;
|
|
822
|
-
handlePointerUp(e: any): void;
|
|
823
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
824
|
-
ignorePointerEvents: {
|
|
825
|
-
type: BooleanConstructor;
|
|
826
|
-
default: boolean;
|
|
827
|
-
};
|
|
828
|
-
withOverlay: {
|
|
829
|
-
type: BooleanConstructor;
|
|
830
|
-
default: boolean;
|
|
831
|
-
};
|
|
832
|
-
disabled: {
|
|
833
|
-
type: BooleanConstructor;
|
|
834
|
-
default: boolean;
|
|
835
|
-
};
|
|
836
|
-
}>>, {
|
|
837
|
-
ignorePointerEvents: boolean;
|
|
838
|
-
withOverlay: boolean;
|
|
839
|
-
disabled: boolean;
|
|
840
|
-
}>;
|
|
579
|
+
xOffset: string | number;
|
|
580
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
841
581
|
};
|
|
842
582
|
declare const _default: {
|
|
843
583
|
install(Vue: VueConstructor): void;
|
|
844
584
|
};
|
|
845
585
|
export default _default;
|
|
846
|
-
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EHeatmapBar, EHoursHeatmap, EReadMore,
|
|
586
|
+
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EHeatmapBar, EHoursHeatmap, EReadMore, ETruncatedDiv, ECompareSeparator, };
|
|
847
587
|
export * from './constants';
|
|
848
588
|
export * from './types';
|
|
849
589
|
export * from './utils';
|
package/dist/src/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BadgeSizes, AvatarSizes, IconSizes, BadgeColors
|
|
1
|
+
import { BadgeSizes, AvatarSizes, IconSizes, BadgeColors } from './constants';
|
|
2
2
|
export declare enum Size {
|
|
3
3
|
dot = "dot",
|
|
4
4
|
xs = "xs",
|
|
@@ -25,17 +25,9 @@ export declare enum BaseColor {
|
|
|
25
25
|
brand = "brand",
|
|
26
26
|
default = "default"
|
|
27
27
|
}
|
|
28
|
-
export declare enum ImageQuality {
|
|
29
|
-
_360 = "360",
|
|
30
|
-
_480 = "480",
|
|
31
|
-
_720 = "720",
|
|
32
|
-
_1080 = "1080",
|
|
33
|
-
auto = "auto"
|
|
34
|
-
}
|
|
35
28
|
export type TBadgeSize = (typeof BadgeSizes)[number];
|
|
36
29
|
export type TAvatarSize = (typeof AvatarSizes)[number];
|
|
37
30
|
export type TIconSize = (typeof IconSizes)[number];
|
|
38
|
-
export type TToggleSwitchSize = (typeof ToggleSwitchSizes)[number];
|
|
39
31
|
export type TBadgeColor = (typeof BadgeColors)[number];
|
|
40
32
|
export type TailwindColorClass = string;
|
|
41
33
|
export type FlexJustifyContent = "around" | "between" | "center" | "end" | "evenly" | "normal" | "start" | "stretch";
|