@evercam/ui 0.0.33 → 0.0.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 +47 -47
- package/dist/attributes.json +25 -1
- package/dist/index.mjs +229 -154
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EVideoPlayer.vue.d.ts +6 -4
- package/dist/src/index.d.ts +7 -3
- package/dist/style.css +1 -1
- package/dist/styles.css +3146 -3140
- package/dist/tags.json +10 -0
- package/dist/web-types.json +61 -2
- package/package.json +71 -71
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
|
-
export type
|
|
2
|
+
export type VideoSource = {
|
|
3
3
|
type: string;
|
|
4
4
|
src: string;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
6
|
export declare const VIDEO_PLAYER_EVENTS: string[];
|
|
7
7
|
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
8
|
playing: boolean;
|
|
@@ -17,7 +17,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
17
17
|
isFullscreen: boolean;
|
|
18
18
|
isFinished: boolean;
|
|
19
19
|
isLoading: boolean;
|
|
20
|
+
isError: boolean;
|
|
20
21
|
}, {
|
|
22
|
+
handle404Error(): void;
|
|
21
23
|
bindEvents(): void;
|
|
22
24
|
unbindEvents(): void;
|
|
23
25
|
bindVideoEvent(which: string): void;
|
|
@@ -47,11 +49,11 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
47
49
|
toggleScrubbing(e: MouseEvent): Promise<void>;
|
|
48
50
|
handleKeyDown(e: KeyboardEvent): void;
|
|
49
51
|
}, {
|
|
50
|
-
|
|
52
|
+
sourceItems: VideoSource[];
|
|
51
53
|
hasStartedOrFinished: boolean;
|
|
52
54
|
withControls: "" | "hide";
|
|
53
55
|
}, {
|
|
54
|
-
sources:
|
|
56
|
+
sources: string | VideoSource[];
|
|
55
57
|
videoListeners: {};
|
|
56
58
|
videoOptions: {};
|
|
57
59
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import ESpinner from './components/ESpinner.vue';
|
|
|
5
5
|
import ERow from './components/ERow.vue';
|
|
6
6
|
import ECol from './components/ECol.vue';
|
|
7
7
|
import EVideoPlayer from './components/EVideoPlayer.vue';
|
|
8
|
+
import ECountryFlag from './components/ECountryFlag.vue';
|
|
8
9
|
import { VueConstructor } from "vue";
|
|
9
10
|
export declare const components: {
|
|
10
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>>, {
|
|
@@ -129,7 +130,9 @@ export declare const components: {
|
|
|
129
130
|
isFullscreen: boolean;
|
|
130
131
|
isFinished: boolean;
|
|
131
132
|
isLoading: boolean;
|
|
133
|
+
isError: boolean;
|
|
132
134
|
}, {
|
|
135
|
+
handle404Error(): void;
|
|
133
136
|
bindEvents(): void;
|
|
134
137
|
unbindEvents(): void;
|
|
135
138
|
bindVideoEvent(which: string): void;
|
|
@@ -159,20 +162,21 @@ export declare const components: {
|
|
|
159
162
|
toggleScrubbing(e: MouseEvent): Promise<void>;
|
|
160
163
|
handleKeyDown(e: KeyboardEvent): void;
|
|
161
164
|
}, {
|
|
162
|
-
|
|
165
|
+
sourceItems: import('./components/EVideoPlayer.vue').VideoSource[];
|
|
163
166
|
hasStartedOrFinished: boolean;
|
|
164
167
|
withControls: "" | "hide";
|
|
165
168
|
}, {
|
|
166
|
-
sources: import('./components/EVideoPlayer.vue').
|
|
169
|
+
sources: string | import('./components/EVideoPlayer.vue').VideoSource[];
|
|
167
170
|
videoListeners: {};
|
|
168
171
|
videoOptions: {};
|
|
169
172
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
173
|
+
ECountryFlag: any;
|
|
170
174
|
};
|
|
171
175
|
declare const _default: {
|
|
172
176
|
install(Vue: VueConstructor): void;
|
|
173
177
|
};
|
|
174
178
|
export default _default;
|
|
175
|
-
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer };
|
|
179
|
+
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ECountryFlag };
|
|
176
180
|
export * from './constants';
|
|
177
181
|
export * from './types';
|
|
178
182
|
export * from './utils';
|