@quicktvui/quicktvui3 1.2.0-beta.41 → 1.2.0-beta.43
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.
package/dist/src/index.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export type { QTClassifiedListViewItem } from './classified-list-view/core/QTCla
|
|
|
85
85
|
export type { QTClassifiedListViewItemDecoration } from './classified-list-view/core/QTClassifiedListViewItemDecoration';
|
|
86
86
|
export { arrangeChildren4ListView };
|
|
87
87
|
export type { QTIWebView } from './webview/QTIWebView';
|
|
88
|
-
export type { QTIX5WebView } from './x5webview/QTIX5WebView';
|
|
88
|
+
export type { QTIX5WebView, QTX5WebViewParams } from './x5webview/QTIX5WebView';
|
|
89
89
|
export type { QTISeekBar } from './seekbar/QTISeekBar';
|
|
90
90
|
export { QTSeekBarMode } from './seekbar/QTSeekBarMode';
|
|
91
91
|
export { QTSeekBarGravity } from './seekbar/QTSeekBarGravity';
|
|
@@ -10,6 +10,10 @@ import { QTWaterfallSection } from '../waterfall/core/QTWaterfallSection';
|
|
|
10
10
|
import { QTTabItem } from './QTTabItem';
|
|
11
11
|
import { QTPluginViewEvent } from '../plugin/QTIPluginView';
|
|
12
12
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
|
+
offScreenPageLimit: {
|
|
14
|
+
type: NumberConstructor;
|
|
15
|
+
default: number;
|
|
16
|
+
};
|
|
13
17
|
enablePlaceholder: {
|
|
14
18
|
type: BooleanConstructor;
|
|
15
19
|
default: boolean;
|
|
@@ -294,6 +298,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
294
298
|
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
295
299
|
getDataManager: () => import("./QTTabDataManager").QTTabDataManager;
|
|
296
300
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
301
|
+
offScreenPageLimit: {
|
|
302
|
+
type: NumberConstructor;
|
|
303
|
+
default: number;
|
|
304
|
+
};
|
|
297
305
|
enablePlaceholder: {
|
|
298
306
|
type: BooleanConstructor;
|
|
299
307
|
default: boolean;
|
|
@@ -504,6 +512,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
504
512
|
onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
|
|
505
513
|
onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
|
|
506
514
|
}>, {
|
|
515
|
+
offScreenPageLimit: number;
|
|
507
516
|
enablePlaceholder: boolean;
|
|
508
517
|
preloadNumber: number;
|
|
509
518
|
tabNavBarClass: string;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { QTIView } from '../view/QTIView';
|
|
2
|
+
export interface QTX5WebViewParams {
|
|
3
|
+
[prop: string]: any;
|
|
4
|
+
}
|
|
2
5
|
export interface QTIX5WebView extends QTIView {
|
|
6
|
+
initWebView(params?: QTX5WebViewParams): void;
|
|
3
7
|
loadUrl(url: string): void;
|
|
4
8
|
evaluateJavascript(value: string): Promise<string | undefined | null>;
|
|
5
9
|
canGoBack(): void;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Ref } from '@vue/reactivity';
|
|
2
|
-
import { QTIX5WebView } from './QTIX5WebView';
|
|
2
|
+
import { QTIX5WebView, QTX5WebViewParams } from './QTIX5WebView';
|
|
3
3
|
import { QtBaseViewAPI } from '../base/QtBaseViewAPI';
|
|
4
4
|
export interface QtX5WebViewAPI extends QtBaseViewAPI {
|
|
5
|
+
initWebView(instance: string | Ref<QTIX5WebView | undefined>, params?: QTX5WebViewParams): void;
|
|
5
6
|
loadUrl(instance: string | Ref<QTIX5WebView | undefined>, url: string): void;
|
|
6
7
|
evaluateJavascript(instance: string | Ref<QTIX5WebView | undefined>, value: string): Promise<string | undefined | null>;
|
|
7
8
|
canGoBack(instance: string | Ref<QTIX5WebView | undefined>): void;
|