@quicktvui/quicktvui3 1.2.0-beta.40 → 1.2.0-beta.42
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.
|
@@ -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;
|
|
@@ -2,6 +2,7 @@ import { QTIView } from '../view/QTIView';
|
|
|
2
2
|
export interface QTIWebView extends QTIView {
|
|
3
3
|
loadUrl(url: string): void;
|
|
4
4
|
evaluateJavascript(value: string): Promise<string | undefined | null>;
|
|
5
|
+
setUserAgent(value: string): void;
|
|
5
6
|
canGoBack(): void;
|
|
6
7
|
goBack(): void;
|
|
7
8
|
canGoForward(): void;
|
|
@@ -4,6 +4,7 @@ import { QtBaseViewAPI } from '../base/QtBaseViewAPI';
|
|
|
4
4
|
export interface QtWebViewAPI extends QtBaseViewAPI {
|
|
5
5
|
loadUrl(instance: string | Ref<QTIWebView | undefined>, url: string): void;
|
|
6
6
|
evaluateJavascript(instance: string | Ref<QTIWebView | undefined>, value: string): Promise<string | undefined | null>;
|
|
7
|
+
setUserAgent(instance: string | Ref<QTIWebView | undefined>, value: string): void;
|
|
7
8
|
canGoBack(instance: string | Ref<QTIWebView | undefined>): void;
|
|
8
9
|
goBack(instance: string | Ref<QTIWebView | undefined>): void;
|
|
9
10
|
canGoForward(instance: string | Ref<QTIWebView | undefined>): void;
|