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

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 registerQTAnimationForAndroid(app: ESApp): void;
3
+ export default registerQTAnimationForAndroid;
@@ -0,0 +1,3 @@
1
+ import { ESApp } from '@extscreen/es3-vue';
2
+ declare function registerQTAnimationForHarmony(app: ESApp): void;
3
+ export default registerQTAnimationForHarmony;
@@ -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
+ }
@@ -36,7 +36,7 @@ export type { QTFlexStyleDecoration } from './core/QTFlexStyleDecoration';
36
36
  export type { QTFlexStyleBackground } from './core/QTFlexStyleBackground';
37
37
  export type { QTFlexStyleGradientBackground } from './core/QTFlexStyleGradientBackground';
38
38
  export type { QTFlexStyleText } from './core/QTFlexStyleText';
39
- export type { QTVisibility } from './core/QTVisibility';
39
+ export { QTVisibility } from './core/QTVisibility';
40
40
  export type { QTEventData } from './core/QTEventData';
41
41
  export type { QTLocation } from './core/QTLocation';
42
42
  export type { QTPoster } from './poster/core/QTPoster';
@@ -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';
@@ -0,0 +1,3 @@
1
+ import { ESApp } from '@extscreen/es3-vue';
2
+ declare function registerQTLottieViewForAndroid(app: ESApp): void;
3
+ export default registerQTLottieViewForAndroid;
@@ -0,0 +1,3 @@
1
+ import { ESApp } from '@extscreen/es3-vue';
2
+ declare function registerQTLottieViewForHarmony(app: ESApp): void;
3
+ export default registerQTLottieViewForHarmony;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.2.0-beta.66",
3
+ "version": "1.2.0-beta.67",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",
@@ -16,8 +16,6 @@
16
16
  "compiler"
17
17
  ],
18
18
  "peerDependencies": {
19
- "@extscreen/es3-core": "^1.1.24",
20
- "@extscreen/es3-router": "^1.1.14"
21
19
  },
22
20
  "files": [
23
21
  "dist",
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTAnimation(app: ESApp): void;
3
- export default registerQTAnimation;
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTLottieView(app: ESApp): void;
3
- export default registerQTLottieView;