@quicktvui/quicktvui3 1.1.4 → 1.1.6
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/index.css +124 -21
- package/dist/index.js +2 -1
- package/dist/src/animation/QTIAnimation.d.ts +2 -1
- package/dist/src/base/QTIBaseView.d.ts +9 -0
- package/dist/src/base/useBaseView.d.ts +10 -0
- package/dist/src/button/QTIButton.d.ts +3 -0
- package/dist/src/button/index.vue.d.ts +5 -1
- package/dist/src/classified-list-view/core/{QTClassifiedListView.d.ts → QTIClassifiedListView.d.ts} +2 -1
- package/dist/src/classified-list-view/index.vue.d.ts +6 -0
- package/dist/src/collapse/core/QTICollapse.d.ts +2 -1
- package/dist/src/collapse/core/QTICollapseItem.d.ts +2 -1
- package/dist/src/collapse/index.vue.d.ts +7 -3
- package/dist/src/column/QTIColumn.d.ts +3 -0
- package/dist/src/dialog/QTIDialog.d.ts +3 -0
- package/dist/src/gradient/QTGradient.d.ts +13 -0
- package/dist/src/gradient/QTGradientOrientation.d.ts +10 -0
- package/dist/src/gradient/QTGradientShape.d.ts +6 -0
- package/dist/src/gradient/QTGradientType.d.ts +5 -0
- package/dist/src/grid-view/core/{QTGridView.d.ts → QTIGridView.d.ts} +2 -2
- package/dist/src/grid-view/index.vue.d.ts +3 -0
- package/dist/src/image/QTIImage.d.ts +3 -0
- package/dist/src/image/index.vue.d.ts +8 -1
- package/dist/src/index.d.ts +28 -3
- package/dist/src/list-view/core/QTIListView.d.ts +2 -2
- package/dist/src/loading/QTILoadingView.d.ts +3 -0
- package/dist/src/lottie/QTILottieView.d.ts +32 -0
- package/dist/src/lottie/QTLottieAsyncUpdates.d.ts +5 -0
- package/dist/src/lottie/QTLottieRenderMode.d.ts +5 -0
- package/dist/src/lottie/QTLottieRepeatMode.d.ts +5 -0
- package/dist/src/lottie/QTLottieView.d.ts +3 -0
- package/dist/src/nav-bar/QTINavBar.d.ts +2 -2
- package/dist/src/nav-bar/index.vue.d.ts +5 -0
- package/dist/src/poster/core/QTIPoster.d.ts +3 -0
- package/dist/src/poster/index.vue.d.ts +8 -2
- package/dist/src/progressbar/QTIProgressBar.d.ts +137 -130
- package/dist/src/qrcode/QTIQRCode.d.ts +3 -0
- package/dist/src/row/QTIRow.d.ts +3 -0
- package/dist/src/scroll-view/QTIScrollView.d.ts +5 -0
- package/dist/src/scroll-view/QTScrollView.d.ts +3 -0
- package/dist/src/section/index.vue.d.ts +8 -2
- package/dist/src/seekbar/QTISeekBar.d.ts +16 -9
- package/dist/src/seekbar/QTSeekBarGravity.d.ts +5 -0
- package/dist/src/seekbar/QTSeekBarIndicatorMode.d.ts +6 -0
- package/dist/src/seekbar/QTSeekBarMode.d.ts +4 -0
- package/dist/src/seekbar/QTSeekBarTickMarkGravity.d.ts +5 -0
- package/dist/src/seekbar/QTSeekBarTickMarkLayoutGravity.d.ts +4 -0
- package/dist/src/seekbar/QTSeekBarTickMarkMode.d.ts +4 -0
- package/dist/src/series/QTIMediaSeries.d.ts +2 -2
- package/dist/src/series/index.vue.d.ts +3 -0
- package/dist/src/tab/QTITab.d.ts +3 -2
- package/dist/src/tab/index.vue.d.ts +5 -18
- package/dist/src/text/QTIText.d.ts +3 -0
- package/dist/src/text/index.vue.d.ts +8 -1
- package/dist/src/view/QTIView.d.ts +2 -5
- package/dist/src/view/QTIViewVisibility.d.ts +5 -0
- package/dist/src/view/QTViewEvent.d.ts +3 -0
- package/dist/src/view/index.vue.d.ts +3 -1
- package/dist/src/waterfall/core/QTIWaterfall.d.ts +2 -2
- package/dist/src/waterfall/index.vue.d.ts +6 -19
- package/dist/src/webview/QTIWebView.d.ts +67 -66
- package/dist/src/x5webview/QTIX5WebView.d.ts +67 -69
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { QTAnimationInterpolator, QTAnimationPropertyName, QTAnimationRepeatMode, QTAnimationValueType, QTAnimatorId } from "./types";
|
|
2
|
-
|
|
2
|
+
import { QTIView } from "../view/QTIView";
|
|
3
|
+
export interface QTIAnimation extends QTIView {
|
|
3
4
|
setPivotX(pivotX: number): any;
|
|
4
5
|
setPivotY(pivotY: number): any;
|
|
5
6
|
resetPivot(): any;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ESIView } from "@extscreen/es3-component";
|
|
2
|
+
import { QTIViewVisibility } from "../view/QTIViewVisibility";
|
|
3
|
+
export interface QTIBaseView extends ESIView {
|
|
4
|
+
requestFocus(): void;
|
|
5
|
+
clearFocus(): void;
|
|
6
|
+
requestFocusDirectly(): void;
|
|
7
|
+
setVisibility(visibility: QTIViewVisibility): void;
|
|
8
|
+
dispatchFunctionBySid(sid: string, funcName: string, args: any[]): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { QTIViewVisibility } from "../view/QTIViewVisibility";
|
|
2
|
+
import { Ref } from "@vue/reactivity";
|
|
3
|
+
import { ESIView } from "@extscreen/es3-component";
|
|
4
|
+
export default function (viewRef: Ref<ESIView | undefined>): {
|
|
5
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
6
|
+
requestFocus: () => void;
|
|
7
|
+
clearFocus: () => void;
|
|
8
|
+
requestFocusDirectly: () => void;
|
|
9
|
+
setVisibility: (v: QTIViewVisibility) => void;
|
|
10
|
+
};
|
|
@@ -57,9 +57,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
focusIconStyle: ObjectConstructor;
|
|
58
58
|
iconParentStyle: ObjectConstructor;
|
|
59
59
|
}, {
|
|
60
|
-
|
|
60
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
61
61
|
requestFocus: () => void;
|
|
62
|
+
clearFocus: () => void;
|
|
62
63
|
requestFocusDirectly: () => void;
|
|
64
|
+
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
65
|
+
buttonRef: import("vue").Ref<any>;
|
|
66
|
+
focused: import("vue").Ref<boolean>;
|
|
63
67
|
onFocus: (e: any) => void;
|
|
64
68
|
onClick: (e: any) => void;
|
|
65
69
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "click")[], "focus" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
package/dist/src/classified-list-view/core/{QTClassifiedListView.d.ts → QTIClassifiedListView.d.ts}
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { QTClassifiedListViewItem } from "./QTClassifiedListViewItem";
|
|
2
|
-
|
|
2
|
+
import { QTIView } from "../../view/QTIView";
|
|
3
|
+
export interface QTIClassifiedListView extends QTIView {
|
|
3
4
|
init(itemList: Array<QTClassifiedListViewItem>): void;
|
|
4
5
|
scrollToIndex(index: number, anim: Boolean, offset: number): void;
|
|
5
6
|
setItemFocused(index: number): void;
|
|
@@ -26,6 +26,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
default: number;
|
|
27
27
|
};
|
|
28
28
|
}, {
|
|
29
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
30
|
+
requestFocus: () => void;
|
|
31
|
+
clearFocus: () => void;
|
|
32
|
+
requestFocusDirectly: () => void;
|
|
33
|
+
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
29
34
|
descendantFocusability: import("vue").Ref<number>;
|
|
30
35
|
content_list_view: import("vue").Ref<QTIListView | undefined>;
|
|
31
36
|
nav_list_view: import("vue").Ref<QTIListView | undefined>;
|
|
@@ -41,6 +46,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
46
|
onSItemFocused: (e: any) => void;
|
|
42
47
|
onFItemFocused: (e: any) => void;
|
|
43
48
|
updateItem: (position: number, data: QTClassifiedListViewItem) => void;
|
|
49
|
+
viewRef: import("vue").Ref<any>;
|
|
44
50
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "item-focused")[], "item-click" | "item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
51
|
className: {
|
|
46
52
|
type: StringConstructor;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { QTICollapseItem } from "./QTICollapseItem";
|
|
2
2
|
import { QTCollapse } from "./QTCollapse";
|
|
3
|
-
|
|
3
|
+
import { QTIView } from "../../view/QTIView";
|
|
4
|
+
export interface QTICollapse extends QTIView {
|
|
4
5
|
init(collapse: QTCollapse): void;
|
|
5
6
|
getItem(index: number): QTICollapseItem;
|
|
6
7
|
expandItem(index: number): void;
|
|
@@ -2,9 +2,12 @@ import { QTICollapseItem } from "./core/QTICollapseItem";
|
|
|
2
2
|
import { QTCollapse } from "./core/QTCollapse";
|
|
3
3
|
import { QTIAnimation } from "../animation/QTIAnimation";
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
6
|
+
requestFocus: () => void;
|
|
7
|
+
clearFocus: () => void;
|
|
8
|
+
requestFocusDirectly: () => void;
|
|
9
|
+
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
10
|
+
collapseItemComponentList: import("vue").Ref<any>;
|
|
8
11
|
initComponentRef: (el: QTICollapseItem, item: {
|
|
9
12
|
name: string;
|
|
10
13
|
}, index: number) => void;
|
|
@@ -18,6 +21,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
18
21
|
expand: () => void;
|
|
19
22
|
collapseWidth: import("vue").Ref<number>;
|
|
20
23
|
collapseHeight: import("vue").Ref<number>;
|
|
24
|
+
viewRef: import("vue").Ref<any>;
|
|
21
25
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
22
26
|
onOnCollapseItemExpand?: ((...args: any[]) => any) | undefined;
|
|
23
27
|
}, {}, {}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { QTGradientOrientation } from "./QTGradientOrientation";
|
|
2
|
+
import { QTGradientShape } from "./QTGradientShape";
|
|
3
|
+
import { QTGradientType } from "./QTGradientType";
|
|
4
|
+
export interface QTGradient {
|
|
5
|
+
type?: QTGradientType;
|
|
6
|
+
shape?: QTGradientShape;
|
|
7
|
+
orientation?: QTGradientOrientation;
|
|
8
|
+
colors: Array<string>;
|
|
9
|
+
gradientRadius?: number;
|
|
10
|
+
cornerRadius?: number;
|
|
11
|
+
cornerRadii4?: Array<number>;
|
|
12
|
+
cornerRadii8?: Array<number>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum QTGradientOrientation {
|
|
2
|
+
QT_GRADIENT_ORIENTATION_TOP_BOTTOM = 0,
|
|
3
|
+
QT_GRADIENT_ORIENTATION_TR_BL = 1,
|
|
4
|
+
QT_GRADIENT_ORIENTATION_RIGHT_LEFT = 2,
|
|
5
|
+
QT_GRADIENT_ORIENTATION_BR_TL = 3,
|
|
6
|
+
QT_GRADIENT_ORIENTATION_BOTTOM_TOP = 4,
|
|
7
|
+
QT_GRADIENT_ORIENTATION_BL_TR = 5,
|
|
8
|
+
QT_GRADIENT_ORIENTATION_LEFT_RIGHT = 6,
|
|
9
|
+
QT_GRADIENT_ORIENTATION_TL_BR = 7
|
|
10
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { QTGridViewItem } from "./QTGridViewItem";
|
|
2
|
-
import {
|
|
3
|
-
export interface
|
|
2
|
+
import { QTIView } from "../../view/QTIView";
|
|
3
|
+
export interface QTIGridView extends QTIView {
|
|
4
4
|
init(target: Array<QTGridViewItem>, isInit?: boolean): Array<QTGridViewItem>;
|
|
5
5
|
scrollToTop(): void;
|
|
6
6
|
clearFocus(): void;
|
|
@@ -61,6 +61,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
insertItem: (pos: number, data: Array<QTGridViewItem>) => void;
|
|
62
62
|
clearPostTask: () => void;
|
|
63
63
|
destroy: () => void;
|
|
64
|
+
requestFocus: () => void;
|
|
65
|
+
requestFocusDirectly: () => void;
|
|
66
|
+
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
64
67
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused")[], "item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
68
|
loadMore: {
|
|
66
69
|
type: FunctionConstructor;
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
declare const _default: import("
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
3
|
+
requestFocus: () => void;
|
|
4
|
+
clearFocus: () => void;
|
|
5
|
+
requestFocusDirectly: () => void;
|
|
6
|
+
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
7
|
+
viewRef: import("vue").Ref<any>;
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
9
|
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { arrangeChildren4ListView } from "./utils/utils";
|
|
2
2
|
export declare const QuickTVUI: (Vue: any) => void;
|
|
3
|
-
export type {
|
|
3
|
+
export type { QTIGridView } from './grid-view/core/QTIGridView';
|
|
4
4
|
export type { QTIListView } from './list-view/core/QTIListView';
|
|
5
5
|
export type { QTIView } from './view/QTIView';
|
|
6
|
+
export { QTIViewVisibility } from './view/QTIViewVisibility';
|
|
7
|
+
export type { QTViewEvent } from './view/QTViewEvent';
|
|
6
8
|
export type { QTFocusable } from './core/QTFocusable';
|
|
7
9
|
export type { QTFlexStyleCoordinate } from './core/QTFlexStyleCoordinate';
|
|
8
10
|
export type { QTFlexStyleMargin } from './core/QTFlexStyleMargin';
|
|
@@ -43,8 +45,8 @@ export type { QTListViewItemState } from './list-view/core/QTListViewItemState';
|
|
|
43
45
|
export type { QTGridViewItem } from './grid-view/core/QTGridViewItem';
|
|
44
46
|
export type { QTGridViewItemDecoration } from './grid-view/core/QTGridViewItemDecoration';
|
|
45
47
|
export type { QTGridViewItemFunctionParams } from './grid-view/core/QTGridViewItemFunctionParams';
|
|
46
|
-
export type { QTNavBarItem } from './nav-bar/QTNavBarItem';
|
|
47
48
|
export type { QTINavBar } from './nav-bar/QTINavBar';
|
|
49
|
+
export type { QTNavBarItem } from './nav-bar/QTNavBarItem';
|
|
48
50
|
export type { QTNavBar } from './nav-bar/QTNavBar';
|
|
49
51
|
export { QTNavBarItemType } from './nav-bar/QTNavBarItemType';
|
|
50
52
|
export type { QTITab } from './tab/QTITab';
|
|
@@ -55,13 +57,19 @@ export type { QTTabPage } from './tab/QTTabPage';
|
|
|
55
57
|
export { QTTabItemType } from './tab/QTTabItemType';
|
|
56
58
|
export { QTTabPageState } from './tab/QTTabPageState';
|
|
57
59
|
export type { QTTabEventParams } from './tab/QTTabEventParams';
|
|
58
|
-
export type {
|
|
60
|
+
export type { QTIClassifiedListView } from './classified-list-view/core/QTIClassifiedListView';
|
|
59
61
|
export type { QTClassifiedListViewItem } from './classified-list-view/core/QTClassifiedListViewItem';
|
|
60
62
|
export type { QTClassifiedListViewItemDecoration } from './classified-list-view/core/QTClassifiedListViewItemDecoration';
|
|
61
63
|
export { arrangeChildren4ListView };
|
|
62
64
|
export type { QTIWebView } from './webview/QTIWebView';
|
|
63
65
|
export type { QTIX5WebView } from './x5webview/QTIX5WebView';
|
|
64
66
|
export type { QTISeekBar } from './seekbar/QTISeekBar';
|
|
67
|
+
export { QTSeekBarMode } from './seekbar/QTSeekBarMode';
|
|
68
|
+
export { QTSeekBarGravity } from './seekbar/QTSeekBarGravity';
|
|
69
|
+
export { QTSeekBarIndicatorMode } from './seekbar/QTSeekBarIndicatorMode';
|
|
70
|
+
export { QTSeekBarTickMarkMode } from './seekbar/QTSeekBarTickMarkMode';
|
|
71
|
+
export { QTSeekBarTickMarkGravity } from './seekbar/QTSeekBarTickMarkGravity';
|
|
72
|
+
export { QTSeekBarTickMarkLayoutGravity } from './seekbar/QTSeekBarTickMarkLayoutGravity';
|
|
65
73
|
export type { QTIProgressBar } from './progressbar/QTIProgressBar';
|
|
66
74
|
export type { QTIAnimation } from './animation/QTIAnimation';
|
|
67
75
|
export { QTAnimationInterpolatorType, QTAnimationPropertyName, QTAnimationRepeatMode, QTAnimationValueType } from './animation/types';
|
|
@@ -78,3 +86,20 @@ export type { QTICollapse } from './collapse/core/QTICollapse';
|
|
|
78
86
|
export type { QTCollapse } from './collapse/core/QTCollapse';
|
|
79
87
|
export type { QTICollapseItem } from './collapse/core/QTICollapseItem';
|
|
80
88
|
export type { QTCollapseItem } from './collapse/core/QTCollapseItem';
|
|
89
|
+
export type { QTIScrollView } from './scroll-view/QTIScrollView';
|
|
90
|
+
export type { QTILottieView } from './lottie/QTILottieView';
|
|
91
|
+
export { QTLottieRepeatMode } from './lottie/QTLottieRepeatMode';
|
|
92
|
+
export { QTLottieAsyncUpdates } from './lottie/QTLottieAsyncUpdates';
|
|
93
|
+
export type { QTGradient } from './gradient/QTGradient';
|
|
94
|
+
export { QTGradientOrientation } from './gradient/QTGradientOrientation';
|
|
95
|
+
export { QTGradientShape } from './gradient/QTGradientShape';
|
|
96
|
+
export { QTGradientType } from './gradient/QTGradientType';
|
|
97
|
+
export type { QTIButton } from './button/QTIButton';
|
|
98
|
+
export type { QTIColumn } from './column/QTIColumn';
|
|
99
|
+
export type { QTIDialog } from './dialog/QTIDialog';
|
|
100
|
+
export type { QTIImage } from './image/QTIImage';
|
|
101
|
+
export type { QTILoadingView } from './loading/QTILoadingView';
|
|
102
|
+
export type { QTIPoster } from './poster/core/QTIPoster';
|
|
103
|
+
export type { QTIQRCode } from './qrcode/QTIQRCode';
|
|
104
|
+
export type { QTIRow } from './row/QTIRow';
|
|
105
|
+
export type { QTIText } from './text/QTIText';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { QTListViewItem } from "./QTListViewItem";
|
|
2
|
-
import {
|
|
3
|
-
export interface QTIListView extends
|
|
2
|
+
import { QTIView } from "../../view/QTIView";
|
|
3
|
+
export interface QTIListView extends QTIView {
|
|
4
4
|
init(target: Array<QTListViewItem>, isInit?: boolean): Array<QTListViewItem>;
|
|
5
5
|
scrollToTop(): void;
|
|
6
6
|
clearFocus(): void;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { QTLottieRepeatMode } from "./QTLottieRepeatMode";
|
|
2
|
+
import { QTLottieRenderMode } from "./QTLottieRenderMode";
|
|
3
|
+
import { QTLottieAsyncUpdates } from "./QTLottieAsyncUpdates";
|
|
4
|
+
import { QTIView } from "../view/QTIView";
|
|
5
|
+
export interface QTILottieView extends QTIView {
|
|
6
|
+
loadRaw(rawRes: string): void;
|
|
7
|
+
loadFile(fileName: string): void;
|
|
8
|
+
loadUrl(url: string): void;
|
|
9
|
+
loadCacheUrl(url: string, cacheKey: string): void;
|
|
10
|
+
setFallbackResource(res: number): void;
|
|
11
|
+
setAutoPlay(auto: boolean): void;
|
|
12
|
+
setLottieLoop(loop: boolean): void;
|
|
13
|
+
setRepeatMode(mode: QTLottieRepeatMode): void;
|
|
14
|
+
setRepeatCount(repeatCount: number): void;
|
|
15
|
+
setSpeed(speed: string): void;
|
|
16
|
+
setClipToCompositionBounds(clipToCompositionBounds: boolean): void;
|
|
17
|
+
setDefaultFontFileExtension(extension: string): void;
|
|
18
|
+
setImageAssetsFolder(imageAssetsFolder: string): void;
|
|
19
|
+
setProgress(progress: string): void;
|
|
20
|
+
enableMergePathsForKitKatAndAbove(enable: boolean): void;
|
|
21
|
+
setColorFilter(colorRes: string): void;
|
|
22
|
+
setRenderMode(renderModeOrdinal: QTLottieRenderMode): void;
|
|
23
|
+
setAsyncUpdate(asyncUpdatesOrdinal: QTLottieAsyncUpdates): void;
|
|
24
|
+
setIgnoreDisabledSystemAnimations(ignore: boolean): void;
|
|
25
|
+
setUseCompositionFrameRate(useCompositionFrameRate: boolean): void;
|
|
26
|
+
playAnimation(): void;
|
|
27
|
+
resumeAnimation(): void;
|
|
28
|
+
pauseAnimation(): void;
|
|
29
|
+
cancelAnimation(): void;
|
|
30
|
+
cacheComposition(cache: boolean): void;
|
|
31
|
+
removeAllListener(): void;
|
|
32
|
+
}
|
|
@@ -30,6 +30,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
default: string;
|
|
31
31
|
};
|
|
32
32
|
}, {
|
|
33
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
34
|
+
requestFocus: () => void;
|
|
35
|
+
clearFocus: () => void;
|
|
36
|
+
requestFocusDirectly: () => void;
|
|
37
|
+
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
33
38
|
navList: import("vue").Ref<QTIListView | undefined>;
|
|
34
39
|
focusColor: import("vue").Ref<string>;
|
|
35
40
|
textColor: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
requestFirstFocus: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -16,8 +16,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
16
16
|
default: () => null;
|
|
17
17
|
};
|
|
18
18
|
}, {
|
|
19
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
20
|
+
requestFocus: () => void;
|
|
21
|
+
clearFocus: () => void;
|
|
22
|
+
requestFocusDirectly: () => void;
|
|
23
|
+
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
19
24
|
mainTextShowOnState: string[];
|
|
20
|
-
|
|
25
|
+
viewRef: import("vue").Ref<any>;
|
|
26
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
27
|
requestFirstFocus: {
|
|
22
28
|
type: BooleanConstructor;
|
|
23
29
|
default: boolean;
|