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

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 registerQTAnimation(app: ESApp): void;
3
+ export default registerQTAnimation;
@@ -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 { QTVisibility } from './core/QTVisibility';
39
+ export type { 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,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';
@@ -5,5 +5,6 @@ export declare enum QTLongImageScaleType {
5
5
  ZOOM_TYPE_CENTER_CUSTOM_ABSOLUTE = 3,
6
6
  ZOOM_TYPE_CENTER_CUSTOM_RELATIVE = 4,
7
7
  ZOOM_TYPE_CENTER_WIDTH_FIXED = 5,
8
- ZOOM_TYPE_CENTER_HEIGHT_FIXED = 6
8
+ ZOOM_TYPE_CENTER_HEIGHT_FIXED = 6,
9
+ ZOOM_TYPE_CENTER_MATCH = 7
9
10
  }
@@ -0,0 +1,3 @@
1
+ import { ESApp } from '@extscreen/es3-vue';
2
+ declare function registerQTLottieView(app: ESApp): void;
3
+ export default registerQTLottieView;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.2.0-beta.67",
3
+ "version": "1.2.0-beta.68",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",
@@ -16,6 +16,8 @@
16
16
  "compiler"
17
17
  ],
18
18
  "peerDependencies": {
19
+ "@extscreen/es3-core": "^1.1.24",
20
+ "@extscreen/es3-router": "^1.1.14"
19
21
  },
20
22
  "files": [
21
23
  "dist",
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTAnimationForAndroid(app: ESApp): void;
3
- export default registerQTAnimationForAndroid;
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTAnimationForHarmony(app: ESApp): void;
3
- export default registerQTAnimationForHarmony;
@@ -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
- }
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTLottieViewForAndroid(app: ESApp): void;
3
- export default registerQTLottieViewForAndroid;
@@ -1,3 +0,0 @@
1
- import { ESApp } from '@extscreen/es3-vue';
2
- declare function registerQTLottieViewForHarmony(app: ESApp): void;
3
- export default registerQTLottieViewForHarmony;