@quicktvui/quicktvui3 3.0.0-alpha.7 → 3.0.0-alpha.8

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,3 @@
1
+ import { ESApp } from '@extscreen/es3-vue';
2
+ declare function registerQTFileBrowseComponent(app: ESApp): void;
3
+ export default registerQTFileBrowseComponent;
@@ -0,0 +1,8 @@
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
+ }
@@ -139,6 +139,7 @@ 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';
142
143
  export type { QTILongImage } from './long-image/QTILongImage';
143
144
  export type { QTLongImageCenterChangeBean, QTLongImageDownloadChangeBean, QTLongImageLoadStatusChangeBean, QTLongImageScaleChangeBean, QTLongImageScrollChangeBean, QTLongImageShowChangeBean, } from './long-image/QTLongImageEventBean';
144
145
  export { LongImageScrollDirection, LongImageStatus } from './long-image/QTLongImageEventBean';
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "3.0.0-alpha.7",
4
- "description": "ExtScreen framework",
5
- "author": "ExtScreen Team",
6
- "homepage": "http://extscreen.com",
3
+ "version": "3.0.0-alpha.8",
4
+ "description": "Quick TV framework",
5
+ "author": "Quick TV Team",
6
+ "homepage": "https://quicktvui.com",
7
7
  "license": "Apache-2.0",
8
8
  "entry": "dist/index.js",
9
9
  "main": "dist/index.js",
@@ -15,11 +15,24 @@
15
15
  "framework",
16
16
  "compiler"
17
17
  ],
18
+ "peerDependencies": {
19
+ },
18
20
  "files": [
19
21
  "dist",
20
22
  "web-types.json"
21
23
  ],
22
24
  "web-types": "web-types.json",
23
25
  "dependencies": {
26
+ "@extscreen/es3-audio-player": "~3.0.0-alpha.1",
27
+ "@extscreen/es3-audio-service-player": "~3.0.0-alpha.1",
28
+ "@extscreen/es3-component": "~3.0.0-alpha.1",
29
+ "@extscreen/es3-core": "~3.0.0-alpha.1",
30
+ "@extscreen/es3-player": "~3.0.0-alpha.2",
31
+ "@extscreen/es3-player-manager": "~3.0.0-alpha.1",
32
+ "@extscreen/es3-router": "~3.0.0-alpha.1",
33
+ "@extscreen/es3-soundpool-player": "~3.0.0-alpha.1",
34
+ "@extscreen/es3-video-player": "~3.0.0-alpha.1",
35
+ "@extscreen/es3-vue": "~3.0.0-alpha.10",
36
+ "@extscreen/es3-vue-style-parser": "~3.0.0-alpha.1"
24
37
  }
25
38
  }
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTLottieView(app: ESApp): void;
3
- export default registerQTLottieView;