@evercam/ui 0.0.45-beta.5 → 0.0.45-beta.6
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 +47 -47
- package/dist/attributes.json +5 -0
- package/dist/index.mjs +6980 -1375
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EVideoPlayer.vue.d.ts +4 -1
- package/dist/src/index.d.ts +3 -46
- package/dist/style.css +1 -1
- package/dist/styles.css +3211 -3211
- package/dist/tags.json +1 -0
- package/dist/web-types.json +11 -12
- package/package.json +76 -76
- package/dist/src/components/EVideoEmbed.vue.d.ts +0 -45
|
@@ -2,7 +2,9 @@ import Vue from "vue";
|
|
|
2
2
|
export type VideoSource = {
|
|
3
3
|
type: string;
|
|
4
4
|
src: string;
|
|
5
|
+
srcObject?: MediaStream;
|
|
5
6
|
};
|
|
7
|
+
export type MediaType = "video" | "webRtc" | "ptz" | "hls";
|
|
6
8
|
export declare const VIDEO_PLAYER_EVENTS: string[];
|
|
7
9
|
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>>, {
|
|
8
10
|
playing: boolean;
|
|
@@ -19,7 +21,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
19
21
|
isLoading: boolean;
|
|
20
22
|
isError: boolean;
|
|
21
23
|
}, {
|
|
22
|
-
handle404Error(): void;
|
|
24
|
+
handle404Error(e: any): void;
|
|
23
25
|
bindEvents(): void;
|
|
24
26
|
unbindEvents(): void;
|
|
25
27
|
bindVideoEvent(which: string): void;
|
|
@@ -53,6 +55,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
53
55
|
hasStartedOrFinished: boolean;
|
|
54
56
|
withControls: "" | "hide";
|
|
55
57
|
}, {
|
|
58
|
+
type: string;
|
|
56
59
|
sources: string | VideoSource[];
|
|
57
60
|
videoListeners: {};
|
|
58
61
|
videoOptions: {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import ERow from './components/ERow.vue';
|
|
|
6
6
|
import ECol from './components/ECol.vue';
|
|
7
7
|
import EVideoPlayer from './components/EVideoPlayer.vue';
|
|
8
8
|
import ETimeline from './components/ETimeline.vue';
|
|
9
|
-
import EVideoEmbed from './components/EVideoEmbed.vue';
|
|
10
9
|
import { VueConstructor } from "vue";
|
|
11
10
|
export declare const components: {
|
|
12
11
|
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>>, {
|
|
@@ -133,7 +132,7 @@ export declare const components: {
|
|
|
133
132
|
isLoading: boolean;
|
|
134
133
|
isError: boolean;
|
|
135
134
|
}, {
|
|
136
|
-
handle404Error(): void;
|
|
135
|
+
handle404Error(e: any): void;
|
|
137
136
|
bindEvents(): void;
|
|
138
137
|
unbindEvents(): void;
|
|
139
138
|
bindVideoEvent(which: string): void;
|
|
@@ -167,6 +166,7 @@ export declare const components: {
|
|
|
167
166
|
hasStartedOrFinished: boolean;
|
|
168
167
|
withControls: "" | "hide";
|
|
169
168
|
}, {
|
|
169
|
+
type: string;
|
|
170
170
|
sources: string | import('./components/EVideoPlayer.vue').VideoSource[];
|
|
171
171
|
videoListeners: {};
|
|
172
172
|
videoOptions: {};
|
|
@@ -357,55 +357,12 @@ export declare const components: {
|
|
|
357
357
|
maxZoom: number;
|
|
358
358
|
cursorTimestamp: string | undefined;
|
|
359
359
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
360
|
-
EVideoEmbed: import("vue").DefineComponent<{
|
|
361
|
-
videoUrl: {
|
|
362
|
-
type: StringConstructor;
|
|
363
|
-
required: true;
|
|
364
|
-
};
|
|
365
|
-
platform: {
|
|
366
|
-
type: import("vue").PropType<"youtube" | "vimeo">;
|
|
367
|
-
required: true;
|
|
368
|
-
validator: (value: string) => boolean;
|
|
369
|
-
};
|
|
370
|
-
iframeListeners: {
|
|
371
|
-
type: import("vue").PropType<Partial<HTMLIFrameElement>>;
|
|
372
|
-
default: () => {};
|
|
373
|
-
};
|
|
374
|
-
iframeOptions: {
|
|
375
|
-
type: ObjectConstructor;
|
|
376
|
-
default: () => {};
|
|
377
|
-
};
|
|
378
|
-
}, {}, {}, {
|
|
379
|
-
videoId(): string | undefined;
|
|
380
|
-
embedUrl(): string;
|
|
381
|
-
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
382
|
-
videoUrl: {
|
|
383
|
-
type: StringConstructor;
|
|
384
|
-
required: true;
|
|
385
|
-
};
|
|
386
|
-
platform: {
|
|
387
|
-
type: import("vue").PropType<"youtube" | "vimeo">;
|
|
388
|
-
required: true;
|
|
389
|
-
validator: (value: string) => boolean;
|
|
390
|
-
};
|
|
391
|
-
iframeListeners: {
|
|
392
|
-
type: import("vue").PropType<Partial<HTMLIFrameElement>>;
|
|
393
|
-
default: () => {};
|
|
394
|
-
};
|
|
395
|
-
iframeOptions: {
|
|
396
|
-
type: ObjectConstructor;
|
|
397
|
-
default: () => {};
|
|
398
|
-
};
|
|
399
|
-
}>>, {
|
|
400
|
-
iframeListeners: Partial<HTMLIFrameElement>;
|
|
401
|
-
iframeOptions: Record<string, any>;
|
|
402
|
-
}>;
|
|
403
360
|
};
|
|
404
361
|
declare const _default: {
|
|
405
362
|
install(Vue: VueConstructor): void;
|
|
406
363
|
};
|
|
407
364
|
export default _default;
|
|
408
|
-
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline
|
|
365
|
+
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline };
|
|
409
366
|
export * from './constants';
|
|
410
367
|
export * from './types';
|
|
411
368
|
export * from './utils';
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-spinner[data-v-
|
|
1
|
+
.e-spinner[data-v-f6962f4a]{vertical-align:center}.e-spinner__primary[data-v-f6962f4a],.e-spinner__secondary[data-v-f6962f4a]{stroke-width:0;animation:fade-f6962f4a;animation-iteration-count:infinite}@keyframes fade-f6962f4a{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-9bce97aa]{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-9bce97aa]{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;margin:0 auto}.video-container.full-screen[data-v-9bce97aa]{max-width:initial;width:100%;max-height:100vh}video[data-v-9bce97aa]{width:100%;height:inherit}.video-controls-container[data-v-9bce97aa]{position:absolute;bottom:0;left:0;right:0;color:#fff;z-index:100;opacity:0;transition:opacity .15s ease-in-out}.hide[data-v-9bce97aa]{display:none}.video-controls-container[data-v-9bce97aa]: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-9bce97aa],.video-container:focus-within .video-controls-container[data-v-9bce97aa],.video-container.paused .video-controls-container[data-v-9bce97aa]{opacity:1}.video-controls-container .controls[data-v-9bce97aa]{display:flex;gap:.5rem;padding:.75rem 1rem;align-items:center;width:100%}.video-controls-container .controls button[data-v-9bce97aa]{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-9bce97aa]:hover{opacity:1}.duration-container[data-v-9bce97aa]{display:flex;align-items:center;gap:.25rem;flex-grow:1}.video-container.captions .captions-btn[data-v-9bce97aa]{border-bottom:3px solid red}.video-controls-container .controls button.wide-btn[data-v-9bce97aa]{width:50px}.timeline-container[data-v-9bce97aa]{width:100%;height:7px;margin-inline:.5rem;cursor:pointer;display:flex;align-items:center}.timeline[data-v-9bce97aa]{background-color:#64646480;height:3px;width:100%;position:relative}.timeline[data-v-9bce97aa]: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-9bce97aa]:after{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--progress-position) * 100%);background-color:red}.timeline .thumb-indicator[data-v-9bce97aa]{--scale: 0;position:absolute;transform:translate(-50%) scale(var(--scale));height:200%;top:-50%;left:calc(var(--progress-position) * 100%);background-color:red;border-radius:50%;transition:transform .15s ease-in-out;aspect-ratio:1 / 1}.video-container.scrubbing .thumbnail-img[data-v-9bce97aa]{display:block}.video-container.scrubbing .timeline[data-v-9bce97aa]:before,.timeline-container:hover .timeline[data-v-9bce97aa]:before{display:block}.video-container.scrubbing .thumb-indicator[data-v-9bce97aa],.timeline-container:hover .thumb-indicator[data-v-9bce97aa]{--scale: 1}.video-container.scrubbing .timeline[data-v-9bce97aa],.timeline-container:hover .timeline[data-v-9bce97aa]{height:100%}.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}
|