@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.
@@ -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;
@@ -13,6 +13,7 @@ import type { LzcPlayer } from "video.js";
13
13
 
14
14
 
15
15
 
16
+
16
17
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
17
18
  onInit: {
18
19
  type: import("vue").PropType<(player: LzcPlayer) => void>;
@@ -43,4 +43,5 @@ export interface VideoInfo extends Doc {
43
43
  fromNetdisk: boolean;
44
44
  path: string | undefined;
45
45
  subtitles: Subtitle[] | undefined;
46
+ requestHistory?: boolean;
46
47
  }
@@ -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
  }, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazycatcloud/lzc-video-player",
3
- "version": "0.0.76",
3
+ "version": "0.0.78",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/lzc-video-player.js",