@quicktvui/quicktvui3 1.2.0-beta.65.4 → 1.2.0-beta.66

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.
@@ -139,7 +139,6 @@ export type { QTIAppIcon } from './app/QTIAppIcon';
139
139
  export type { QTIPluginView, QTPluginViewEvent } from './plugin/QTIPluginView';
140
140
  export { VirtualView } from './utils/VirtualView';
141
141
  export type { QTICanvasView } from './canvas/QTICanvasView';
142
- export type { QTIFileBrowse } from './file-browse/QTIFileBrowse';
143
142
  export type { QTILongImage } from './long-image/QTILongImage';
144
143
  export type { QTLongImageCenterChangeBean, QTLongImageDownloadChangeBean, QTLongImageLoadStatusChangeBean, QTLongImageScaleChangeBean, QTLongImageScrollChangeBean, QTLongImageShowChangeBean, } from './long-image/QTLongImageEventBean';
145
144
  export { LongImageScrollDirection, LongImageStatus } from './long-image/QTLongImageEventBean';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.2.0-beta.65.4",
3
+ "version": "1.2.0-beta.66",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTFileBrowseComponent(app: ESApp): void;
3
- export default registerQTFileBrowseComponent;
@@ -1,8 +0,0 @@
1
- import { QTIView } from '../view/QTIView';
2
- export interface QTIFileBrowse extends QTIView {
3
- init(): Promise<any>;
4
- canOpenFile(fileExtension: string): boolean;
5
- openFile(filePath: string, fileExtension: string): void;
6
- closeFile(): void;
7
- useCustomView(useCustom: boolean): void;
8
- }