@quicktvui/quicktvui3 1.2.0-beta.23 → 1.2.0-beta.25

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.
@@ -1,4 +1,12 @@
1
1
  import { QTIView } from '../view/QTIView';
2
2
  export interface QTILongImage extends QTIView {
3
3
  setSrc(url: string): void;
4
+ setZoomEnabled(value: boolean): void;
5
+ zoomIn(step: number): void;
6
+ zoomOut(step: number): void;
7
+ scrollDown(step: number): void;
8
+ scrollUp(step: number): void;
9
+ scrollLeft(step: number): void;
10
+ scrollRight(step: number): void;
11
+ scrollTo(offsetX: number, offsetY: number): void;
4
12
  }
@@ -48,10 +48,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
48
48
  type: StringConstructor;
49
49
  default: string;
50
50
  };
51
- setScaleEnabled: {
51
+ zoomEnabled: {
52
52
  type: BooleanConstructor;
53
53
  default: boolean;
54
54
  };
55
+ src: {
56
+ type: StringConstructor;
57
+ };
55
58
  }>, {
56
59
  dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
57
60
  requestFocus: (direction?: import("..").QTFocusDirection) => void;
@@ -89,10 +92,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
89
92
  clearMemoryFocused: () => void;
90
93
  showDialog: (show: boolean) => void;
91
94
  viewRef: import("vue").Ref<QTILongImage | undefined, QTILongImage | undefined>;
92
- setSrc: (url: any) => void;
93
- onLongImageChange: (success: boolean, message: string) => void;
95
+ setSrc: (url: string) => void;
96
+ setZoomEnabled: (value: boolean) => void;
97
+ zoomIn: (step: number) => void;
98
+ zoomOut: (step: number) => void;
99
+ scrollDown: (step: number) => void;
100
+ scrollUp: (step: number) => void;
101
+ scrollLeft: (step: number) => void;
102
+ scrollRight: (step: number) => void;
103
+ onLoad: (status: number, progress: number, message: string, width: number, height: number) => void;
104
+ onScroll: (direction: number, percent: number, isScroll: any, width: number, height: number) => void;
105
+ scrollTo: (offsetX: number, offsetY: number) => void;
94
106
  componentInitialized: import("vue").Ref<boolean, boolean>;
95
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onLongImageChange" | "onInitializeSuccess" | "onInitializeError")[], "onLongImageChange" | "onInitializeSuccess" | "onInitializeError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
107
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onLoad" | "onScroll" | "onInitializeSuccess" | "onInitializeError")[], "onLoad" | "onScroll" | "onInitializeSuccess" | "onInitializeError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
96
108
  size: {
97
109
  type: StringConstructor;
98
110
  default: string;
@@ -141,12 +153,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
141
153
  type: StringConstructor;
142
154
  default: string;
143
155
  };
144
- setScaleEnabled: {
156
+ zoomEnabled: {
145
157
  type: BooleanConstructor;
146
158
  default: boolean;
147
159
  };
160
+ src: {
161
+ type: StringConstructor;
162
+ };
148
163
  }>> & Readonly<{
149
- onOnLongImageChange?: ((...args: any[]) => any) | undefined;
164
+ onOnLoad?: ((...args: any[]) => any) | undefined;
165
+ onOnScroll?: ((...args: any[]) => any) | undefined;
150
166
  onOnInitializeSuccess?: ((...args: any[]) => any) | undefined;
151
167
  onOnInitializeError?: ((...args: any[]) => any) | undefined;
152
168
  }>, {
@@ -162,6 +178,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
162
178
  borderSize: number;
163
179
  sliderAssetsIcon: string;
164
180
  sliderNetworkIcon: string;
165
- setScaleEnabled: boolean;
181
+ zoomEnabled: boolean;
166
182
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
167
183
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.2.0-beta.23",
3
+ "version": "1.2.0-beta.25",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",