@lazycatcloud/lzc-video-player 0.0.76 → 0.0.78
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/dist/{browser-ponyfill.cfc80d10.js → browser-ponyfill.dd7090db.js} +1 -1
- package/dist/{lzc-video-player.2c1b2751.js → lzc-video-player.8615df0e.js} +4776 -4717
- package/dist/lzc-video-player.js +1 -1
- package/dist/src/components/Video/components/LzcPlaylistPrev.d.ts +10 -0
- package/dist/src/components/Video/index.vue.d.ts +1 -0
- package/dist/src/model.d.ts +1 -0
- package/dist/src/stores/playlist.d.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { LzcPlayer } from "video.js";
|
|
2
|
+
declare const Button: typeof import("video.js/dist/types/component").default;
|
|
3
|
+
declare class LzcPlaylistPrev extends Button {
|
|
4
|
+
private store;
|
|
5
|
+
constructor(player: LzcPlayer, options?: any);
|
|
6
|
+
createEl(): Element;
|
|
7
|
+
dispose(): void;
|
|
8
|
+
handleClick(): void;
|
|
9
|
+
}
|
|
10
|
+
export default LzcPlaylistPrev;
|
package/dist/src/model.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export declare const useHistoryInfo: () => import("pinia").Store<"historyInfo",
|
|
|
40
40
|
is_external: boolean;
|
|
41
41
|
path: string;
|
|
42
42
|
}[] | undefined;
|
|
43
|
+
requestHistory?: boolean | undefined;
|
|
43
44
|
_id: string;
|
|
44
45
|
}[];
|
|
45
46
|
ready: {
|
|
@@ -69,6 +70,7 @@ export declare const useHistoryInfo: () => import("pinia").Store<"historyInfo",
|
|
|
69
70
|
is_external: boolean;
|
|
70
71
|
path: string;
|
|
71
72
|
}[] | undefined;
|
|
73
|
+
requestHistory?: boolean | undefined;
|
|
72
74
|
_id: string;
|
|
73
75
|
} | undefined;
|
|
74
76
|
getHistoryInfoByPath(state: {
|
|
@@ -106,6 +108,7 @@ export declare const useHistoryInfo: () => import("pinia").Store<"historyInfo",
|
|
|
106
108
|
is_external: boolean;
|
|
107
109
|
path: string;
|
|
108
110
|
}[] | undefined;
|
|
111
|
+
requestHistory?: boolean | undefined;
|
|
109
112
|
_id: string;
|
|
110
113
|
}[];
|
|
111
114
|
ready: {
|
|
@@ -135,6 +138,7 @@ export declare const useHistoryInfo: () => import("pinia").Store<"historyInfo",
|
|
|
135
138
|
is_external: boolean;
|
|
136
139
|
path: string;
|
|
137
140
|
}[] | undefined;
|
|
141
|
+
requestHistory?: boolean | undefined;
|
|
138
142
|
_id: string;
|
|
139
143
|
} | undefined;
|
|
140
144
|
}, {
|