@quicktvui/quicktvui3 1.1.1 → 1.1.2
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 +21 -124
- package/dist/index.js +1 -2
- package/dist/src/animation/QTIAnimation.d.ts +1 -2
- package/dist/src/button/index.vue.d.ts +1 -5
- package/dist/src/classified-list-view/core/{QTIClassifiedListView.d.ts → QTClassifiedListView.d.ts} +1 -2
- package/dist/src/classified-list-view/index.vue.d.ts +0 -6
- package/dist/src/collapse/core/QTICollapse.d.ts +1 -2
- package/dist/src/collapse/core/QTICollapseItem.d.ts +1 -2
- package/dist/src/collapse/index.vue.d.ts +3 -7
- package/dist/src/grid-view/core/{QTIGridView.d.ts → QTGridView.d.ts} +2 -2
- package/dist/src/grid-view/index.vue.d.ts +0 -3
- package/dist/src/image/index.vue.d.ts +1 -8
- package/dist/src/index.d.ts +3 -28
- package/dist/src/list-view/core/QTIListView.d.ts +2 -2
- package/dist/src/nav-bar/QTINavBar.d.ts +2 -2
- package/dist/src/nav-bar/index.vue.d.ts +0 -5
- package/dist/src/poster/index.vue.d.ts +2 -8
- package/dist/src/progressbar/QTIProgressBar.d.ts +130 -137
- package/dist/src/section/index.vue.d.ts +2 -8
- package/dist/src/seekbar/QTISeekBar.d.ts +9 -16
- package/dist/src/series/QTIMediaSeries.d.ts +2 -2
- package/dist/src/series/index.vue.d.ts +0 -3
- package/dist/src/tab/QTITab.d.ts +2 -3
- package/dist/src/tab/index.vue.d.ts +18 -5
- package/dist/src/text/index.vue.d.ts +1 -8
- package/dist/src/view/QTIView.d.ts +5 -2
- package/dist/src/view/index.vue.d.ts +1 -3
- package/dist/src/waterfall/core/QTIWaterfall.d.ts +2 -2
- package/dist/src/waterfall/index.vue.d.ts +19 -6
- package/dist/src/webview/QTIWebView.d.ts +66 -67
- package/dist/src/x5webview/QTIX5WebView.d.ts +69 -67
- package/package.json +1 -1
- package/dist/src/base/QTIBaseView.d.ts +0 -9
- package/dist/src/base/useBaseView.d.ts +0 -10
- package/dist/src/button/QTIButton.d.ts +0 -3
- package/dist/src/column/QTIColumn.d.ts +0 -3
- package/dist/src/dialog/QTIDialog.d.ts +0 -3
- package/dist/src/gradient/QTGradient.d.ts +0 -13
- package/dist/src/gradient/QTGradientOrientation.d.ts +0 -10
- package/dist/src/gradient/QTGradientShape.d.ts +0 -6
- package/dist/src/gradient/QTGradientType.d.ts +0 -5
- package/dist/src/image/QTIImage.d.ts +0 -3
- package/dist/src/loading/QTILoadingView.d.ts +0 -3
- package/dist/src/lottie/QTILottieView.d.ts +0 -32
- package/dist/src/lottie/QTLottieAsyncUpdates.d.ts +0 -5
- package/dist/src/lottie/QTLottieRenderMode.d.ts +0 -5
- package/dist/src/lottie/QTLottieRepeatMode.d.ts +0 -5
- package/dist/src/lottie/QTLottieView.d.ts +0 -3
- package/dist/src/poster/core/QTIPoster.d.ts +0 -3
- package/dist/src/qrcode/QTIQRCode.d.ts +0 -3
- package/dist/src/row/QTIRow.d.ts +0 -3
- package/dist/src/scroll-view/QTIScrollView.d.ts +0 -5
- package/dist/src/scroll-view/QTScrollView.d.ts +0 -3
- package/dist/src/seekbar/QTSeekBarGravity.d.ts +0 -5
- package/dist/src/seekbar/QTSeekBarIndicatorMode.d.ts +0 -6
- package/dist/src/seekbar/QTSeekBarMode.d.ts +0 -4
- package/dist/src/seekbar/QTSeekBarTickMarkGravity.d.ts +0 -5
- package/dist/src/seekbar/QTSeekBarTickMarkLayoutGravity.d.ts +0 -4
- package/dist/src/seekbar/QTSeekBarTickMarkMode.d.ts +0 -4
- package/dist/src/text/QTIText.d.ts +0 -3
- package/dist/src/view/QTIViewVisibility.d.ts +0 -5
- package/dist/src/view/QTViewEvent.d.ts +0 -3
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { QTAnimationInterpolator, QTAnimationPropertyName, QTAnimationRepeatMode, QTAnimationValueType, QTAnimatorId } from "./types";
|
|
2
|
-
|
|
3
|
-
export interface QTIAnimation extends QTIView {
|
|
2
|
+
export interface QTIAnimation {
|
|
4
3
|
setPivotX(pivotX: number): any;
|
|
5
4
|
setPivotY(pivotY: number): any;
|
|
6
5
|
resetPivot(): any;
|
|
@@ -57,13 +57,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
focusIconStyle: ObjectConstructor;
|
|
58
58
|
iconParentStyle: ObjectConstructor;
|
|
59
59
|
}, {
|
|
60
|
-
|
|
60
|
+
focused: import("vue").Ref<boolean>;
|
|
61
61
|
requestFocus: () => void;
|
|
62
|
-
clearFocus: () => void;
|
|
63
62
|
requestFocusDirectly: () => void;
|
|
64
|
-
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
65
|
-
buttonRef: import("vue").Ref<any>;
|
|
66
|
-
focused: import("vue").Ref<boolean>;
|
|
67
63
|
onFocus: (e: any) => void;
|
|
68
64
|
onClick: (e: any) => void;
|
|
69
65
|
}, 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/{QTIClassifiedListView.d.ts → QTClassifiedListView.d.ts}
RENAMED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { QTClassifiedListViewItem } from "./QTClassifiedListViewItem";
|
|
2
|
-
|
|
3
|
-
export interface QTIClassifiedListView extends QTIView {
|
|
2
|
+
export interface QTClassifiedListView {
|
|
4
3
|
init(itemList: Array<QTClassifiedListViewItem>): void;
|
|
5
4
|
scrollToIndex(index: number, anim: Boolean, offset: number): void;
|
|
6
5
|
setItemFocused(index: number): void;
|
|
@@ -26,11 +26,6 @@ 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;
|
|
34
29
|
descendantFocusability: import("vue").Ref<number>;
|
|
35
30
|
content_list_view: import("vue").Ref<QTIListView | undefined>;
|
|
36
31
|
nav_list_view: import("vue").Ref<QTIListView | undefined>;
|
|
@@ -46,7 +41,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
41
|
onSItemFocused: (e: any) => void;
|
|
47
42
|
onFItemFocused: (e: any) => void;
|
|
48
43
|
updateItem: (position: number, data: QTClassifiedListViewItem) => void;
|
|
49
|
-
viewRef: import("vue").Ref<any>;
|
|
50
44
|
}, 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<{
|
|
51
45
|
className: {
|
|
52
46
|
type: StringConstructor;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { QTICollapseItem } from "./QTICollapseItem";
|
|
2
2
|
import { QTCollapse } from "./QTCollapse";
|
|
3
|
-
|
|
4
|
-
export interface QTICollapse extends QTIView {
|
|
3
|
+
export interface QTICollapse {
|
|
5
4
|
init(collapse: QTCollapse): void;
|
|
6
5
|
getItem(index: number): QTICollapseItem;
|
|
7
6
|
expandItem(index: number): void;
|
|
@@ -2,12 +2,9 @@ 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
|
-
|
|
8
|
-
requestFocusDirectly: () => void;
|
|
9
|
-
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
10
|
-
collapseItemComponentList: import("vue").Ref<any>;
|
|
5
|
+
collapseItemComponentList: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
}>[] | undefined;
|
|
11
8
|
initComponentRef: (el: QTICollapseItem, item: {
|
|
12
9
|
name: string;
|
|
13
10
|
}, index: number) => void;
|
|
@@ -21,7 +18,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
21
18
|
expand: () => void;
|
|
22
19
|
collapseWidth: import("vue").Ref<number>;
|
|
23
20
|
collapseHeight: import("vue").Ref<number>;
|
|
24
|
-
viewRef: import("vue").Ref<any>;
|
|
25
21
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
26
22
|
onOnCollapseItemExpand?: ((...args: any[]) => any) | undefined;
|
|
27
23
|
}, {}, {}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { QTGridViewItem } from "./QTGridViewItem";
|
|
2
|
-
import {
|
|
3
|
-
export interface
|
|
2
|
+
import { ESIView } from "@extscreen/es3-component";
|
|
3
|
+
export interface QTGridView extends ESIView {
|
|
4
4
|
init(target: Array<QTGridViewItem>, isInit?: boolean): Array<QTGridViewItem>;
|
|
5
5
|
scrollToTop(): void;
|
|
6
6
|
clearFocus(): void;
|
|
@@ -61,9 +61,6 @@ 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;
|
|
67
64
|
}, 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<{
|
|
68
65
|
loadMore: {
|
|
69
66
|
type: FunctionConstructor;
|
|
@@ -1,9 +1,2 @@
|
|
|
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<{}>>, {}, {}>;
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
|
|
9
2
|
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { arrangeChildren4ListView } from "./utils/utils";
|
|
2
2
|
export declare const QuickTVUI: (Vue: any) => void;
|
|
3
|
-
export type {
|
|
3
|
+
export type { QTGridView } from './grid-view/core/QTGridView';
|
|
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';
|
|
8
6
|
export type { QTFocusable } from './core/QTFocusable';
|
|
9
7
|
export type { QTFlexStyleCoordinate } from './core/QTFlexStyleCoordinate';
|
|
10
8
|
export type { QTFlexStyleMargin } from './core/QTFlexStyleMargin';
|
|
@@ -45,8 +43,8 @@ export type { QTListViewItemState } from './list-view/core/QTListViewItemState';
|
|
|
45
43
|
export type { QTGridViewItem } from './grid-view/core/QTGridViewItem';
|
|
46
44
|
export type { QTGridViewItemDecoration } from './grid-view/core/QTGridViewItemDecoration';
|
|
47
45
|
export type { QTGridViewItemFunctionParams } from './grid-view/core/QTGridViewItemFunctionParams';
|
|
48
|
-
export type { QTINavBar } from './nav-bar/QTINavBar';
|
|
49
46
|
export type { QTNavBarItem } from './nav-bar/QTNavBarItem';
|
|
47
|
+
export type { QTINavBar } from './nav-bar/QTINavBar';
|
|
50
48
|
export type { QTNavBar } from './nav-bar/QTNavBar';
|
|
51
49
|
export { QTNavBarItemType } from './nav-bar/QTNavBarItemType';
|
|
52
50
|
export type { QTITab } from './tab/QTITab';
|
|
@@ -57,19 +55,13 @@ export type { QTTabPage } from './tab/QTTabPage';
|
|
|
57
55
|
export { QTTabItemType } from './tab/QTTabItemType';
|
|
58
56
|
export { QTTabPageState } from './tab/QTTabPageState';
|
|
59
57
|
export type { QTTabEventParams } from './tab/QTTabEventParams';
|
|
60
|
-
export type {
|
|
58
|
+
export type { QTClassifiedListView } from './classified-list-view/core/QTClassifiedListView';
|
|
61
59
|
export type { QTClassifiedListViewItem } from './classified-list-view/core/QTClassifiedListViewItem';
|
|
62
60
|
export type { QTClassifiedListViewItemDecoration } from './classified-list-view/core/QTClassifiedListViewItemDecoration';
|
|
63
61
|
export { arrangeChildren4ListView };
|
|
64
62
|
export type { QTIWebView } from './webview/QTIWebView';
|
|
65
63
|
export type { QTIX5WebView } from './x5webview/QTIX5WebView';
|
|
66
64
|
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';
|
|
73
65
|
export type { QTIProgressBar } from './progressbar/QTIProgressBar';
|
|
74
66
|
export type { QTIAnimation } from './animation/QTIAnimation';
|
|
75
67
|
export { QTAnimationInterpolatorType, QTAnimationPropertyName, QTAnimationRepeatMode, QTAnimationValueType } from './animation/types';
|
|
@@ -86,20 +78,3 @@ export type { QTICollapse } from './collapse/core/QTICollapse';
|
|
|
86
78
|
export type { QTCollapse } from './collapse/core/QTCollapse';
|
|
87
79
|
export type { QTICollapseItem } from './collapse/core/QTICollapseItem';
|
|
88
80
|
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 { ESIView } from "@extscreen/es3-component";
|
|
3
|
+
export interface QTIListView extends ESIView {
|
|
4
4
|
init(target: Array<QTListViewItem>, isInit?: boolean): Array<QTListViewItem>;
|
|
5
5
|
scrollToTop(): void;
|
|
6
6
|
clearFocus(): void;
|
|
@@ -30,11 +30,6 @@ 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;
|
|
38
33
|
navList: import("vue").Ref<QTIListView | undefined>;
|
|
39
34
|
focusColor: import("vue").Ref<string>;
|
|
40
35
|
textColor: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
2
|
requestFirstFocus: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -16,14 +16,8 @@ declare const _default: import("vue").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;
|
|
24
19
|
mainTextShowOnState: string[];
|
|
25
|
-
|
|
26
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
27
21
|
requestFirstFocus: {
|
|
28
22
|
type: BooleanConstructor;
|
|
29
23
|
default: boolean;
|
|
@@ -1,139 +1,132 @@
|
|
|
1
1
|
import { ESGradient } from "@extscreen/es3-component";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
setStepsWidth(stepsWidth: number): void;
|
|
133
|
-
setStepsHeight(stepsHeight: number): void;
|
|
134
|
-
setStepsRadius(stepsRadius: number): void;
|
|
135
|
-
setStepsColor(stepsColor: number): void;
|
|
136
|
-
setStepsAutoBonding(stepsAutoBonding: boolean): void;
|
|
137
|
-
setStepsDrawable(drawableArray: Array<ESGradient>): void;
|
|
138
|
-
setStepsUrl(urlArray: Array<string>): void;
|
|
2
|
+
export interface QTIProgressBar {
|
|
3
|
+
invalidateSeekBar(): any;
|
|
4
|
+
setFocusable(focusable: boolean): any;
|
|
5
|
+
setClickable(clickable: boolean): any;
|
|
6
|
+
requestFocus(): any;
|
|
7
|
+
requestLayout(): any;
|
|
8
|
+
invalidate(): any;
|
|
9
|
+
setVisible(visible: boolean): any;
|
|
10
|
+
setLeftSeekBarVisible(visible: boolean): any;
|
|
11
|
+
setRightSeekBarVisible(visible: boolean): any;
|
|
12
|
+
setSeekBarMode(mode: number): any;
|
|
13
|
+
setProgress(progress: number): any;
|
|
14
|
+
setSecondProgress(progress: number): any;
|
|
15
|
+
show(value: boolean): any;
|
|
16
|
+
setMaxProgress(progress: number): any;
|
|
17
|
+
setRangeProgress(leftValue: number, rightValue: number): any;
|
|
18
|
+
getProgress(): any;
|
|
19
|
+
getLeftProgress(): any;
|
|
20
|
+
getRightProgress(): any;
|
|
21
|
+
setRange(min: number, max: number, minInterval: number): any;
|
|
22
|
+
setGravity(gravity: number): any;
|
|
23
|
+
setProgressWidth(progressWidth: number): any;
|
|
24
|
+
setProgressHeight(progressHeight: number): any;
|
|
25
|
+
setProgressRadius(progressRadius: number): any;
|
|
26
|
+
setProgressColor(progressColor: number): any;
|
|
27
|
+
setProgressDefaultColor(defaultProgressColor: number): any;
|
|
28
|
+
setProgressDrawable(progressDrawable: ESGradient): any;
|
|
29
|
+
setProgressDefaultDrawable(progressDefaultDrawable: ESGradient): any;
|
|
30
|
+
setProgressUrl(progressUrl: string): any;
|
|
31
|
+
setProgressDefaultUrl(progressDefaultUrl: string): any;
|
|
32
|
+
showIndicator(showIndicator: boolean): any;
|
|
33
|
+
showLeftIndicator(showLeftIndicator: boolean): any;
|
|
34
|
+
showRightIndicator(showRightIndicator: boolean): any;
|
|
35
|
+
setIndicatorShowMode(indicatorShowMode: number): any;
|
|
36
|
+
setLeftIndicatorShowMode(indicatorShowMode: number): any;
|
|
37
|
+
setRightIndicatorShowMode(indicatorShowMode: number): any;
|
|
38
|
+
setIndicatorWidth(indicatorWidth: number): any;
|
|
39
|
+
setLeftIndicatorWidth(indicatorWidth: number): any;
|
|
40
|
+
setRightIndicatorWidth(indicatorWidth: number): any;
|
|
41
|
+
setIndicatorHeight(indicatorHeight: number): any;
|
|
42
|
+
setLeftIndicatorHeight(indicatorHeight: number): any;
|
|
43
|
+
setRightIndicatorHeight(indicatorHeight: number): any;
|
|
44
|
+
setIndicatorTextDecimalFormat(formatPattern: string): any;
|
|
45
|
+
setLeftIndicatorTextDecimalFormat(formatPattern: string): any;
|
|
46
|
+
setRightIndicatorTextDecimalFormat(formatPattern: string): any;
|
|
47
|
+
setIndicatorTextStringFormat(formatPattern: string): any;
|
|
48
|
+
setLeftIndicatorTextStringFormat(formatPattern: string): any;
|
|
49
|
+
setRightIndicatorTextStringFormat(formatPattern: string): any;
|
|
50
|
+
setIndicatorMargin(indicatorMargin: number): any;
|
|
51
|
+
setLeftIndicatorMargin(indicatorMargin: number): any;
|
|
52
|
+
setRightIndicatorMargin(indicatorMargin: number): any;
|
|
53
|
+
setIndicatorPaddingBottom(indicatorPaddingBottom: number): any;
|
|
54
|
+
setLeftIndicatorPaddingBottom(indicatorPaddingBottom: number): any;
|
|
55
|
+
setRightIndicatorPaddingBottom(indicatorPaddingBottom: number): any;
|
|
56
|
+
setIndicatorPaddingTop(indicatorPaddingTop: number): any;
|
|
57
|
+
setLeftIndicatorPaddingTop(indicatorPaddingTop: number): any;
|
|
58
|
+
setRightIndicatorPaddingTop(indicatorPaddingTop: number): any;
|
|
59
|
+
setIndicatorPaddingLeft(indicatorPaddingLeft: number): any;
|
|
60
|
+
setLeftIndicatorPaddingLeft(indicatorPaddingLeft: number): any;
|
|
61
|
+
setRightIndicatorPaddingLeft(indicatorPaddingLeft: number): any;
|
|
62
|
+
setIndicatorPaddingRight(indicatorPaddingRight: number): any;
|
|
63
|
+
setLeftIndicatorPaddingRight(indicatorPaddingRight: number): any;
|
|
64
|
+
setRightIndicatorPaddingRight(indicatorPaddingRight: number): any;
|
|
65
|
+
setIndicatorBackgroundColor(indicatorBackgroundColor: number): any;
|
|
66
|
+
setLeftIndicatorBackgroundColor(indicatorBackgroundColor: number): any;
|
|
67
|
+
setRightIndicatorBackgroundColor(indicatorBackgroundColor: number): any;
|
|
68
|
+
setIndicatorRadius(indicatorRadius: number): any;
|
|
69
|
+
setLeftIndicatorRadius(indicatorRadius: number): any;
|
|
70
|
+
setRightIndicatorRadius(indicatorRadius: number): any;
|
|
71
|
+
setIndicatorTextSize(indicatorTextSize: number): any;
|
|
72
|
+
setLeftIndicatorTextSize(indicatorTextSize: number): any;
|
|
73
|
+
setRightIndicatorTextSize(indicatorTextSize: number): any;
|
|
74
|
+
setIndicatorTextColor(indicatorTextColor: number): any;
|
|
75
|
+
setLeftIndicatorTextColor(indicatorTextColor: number): any;
|
|
76
|
+
setRightIndicatorTextColor(indicatorTextColor: number): any;
|
|
77
|
+
setIndicatorArrowSize(indicatorArrowSize: number): any;
|
|
78
|
+
setLeftIndicatorArrowSize(indicatorArrowSize: number): any;
|
|
79
|
+
setRightIndicatorArrowSize(indicatorArrowSize: number): any;
|
|
80
|
+
setIndicatorDrawable(indicatorDrawable: ESGradient): any;
|
|
81
|
+
setLeftIndicatorDrawable(leftIndicatorDrawable: ESGradient): any;
|
|
82
|
+
setRightIndicatorDrawable(rightIndicatorDrawable: ESGradient): any;
|
|
83
|
+
setIndicatorUrl(indicatorUrl: string): any;
|
|
84
|
+
setLeftIndicatorUrl(leftIndicatorUrl: string): any;
|
|
85
|
+
setRightIndicatorUrl(rightIndicatorUrl: string): any;
|
|
86
|
+
setThumbWidth(thumbWidth: number): any;
|
|
87
|
+
setLeftThumbWidth(thumbWidth: number): any;
|
|
88
|
+
setRightThumbWidth(thumbWidth: number): any;
|
|
89
|
+
setThumbHeight(thumbHeight: number): any;
|
|
90
|
+
setLeftThumbHeight(thumbHeight: number): any;
|
|
91
|
+
setRightThumbHeight(thumbHeight: number): any;
|
|
92
|
+
scaleThumb(): any;
|
|
93
|
+
scaleLeftThumb(): any;
|
|
94
|
+
scaleRightThumb(): any;
|
|
95
|
+
resetThumb(): any;
|
|
96
|
+
resetLeftThumb(): any;
|
|
97
|
+
resetRightThumb(): any;
|
|
98
|
+
setThumbScaleRatio(thumbScaleRatio: number): any;
|
|
99
|
+
setLeftThumbScaleRatio(thumbScaleRatio: number): any;
|
|
100
|
+
setRightThumbScaleRatio(thumbScaleRatio: number): any;
|
|
101
|
+
setThumbActivate(activate: boolean): any;
|
|
102
|
+
setLeftThumbActivate(activate: boolean): any;
|
|
103
|
+
setRightThumbActivate(activate: boolean): any;
|
|
104
|
+
setThumbDrawable(drawable: ESGradient): any;
|
|
105
|
+
setLeftThumbDrawable(drawable: ESGradient): any;
|
|
106
|
+
setRightThumbDrawable(drawable: ESGradient): any;
|
|
107
|
+
setThumbUrl(url: string): any;
|
|
108
|
+
setLeftThumbUrl(url: string): any;
|
|
109
|
+
setRightThumbUrl(url: string): any;
|
|
110
|
+
setThumbInactivatedDrawable(drawable: ESGradient): any;
|
|
111
|
+
setLeftThumbInactivatedDrawable(drawable: ESGradient): any;
|
|
112
|
+
setRightThumbInactivatedDrawable(drawable: ESGradient): any;
|
|
113
|
+
setThumbInactivatedUrl(url: string): any;
|
|
114
|
+
setLeftThumbInactivatedUrl(url: string): any;
|
|
115
|
+
setRightThumbInactivatedUrl(url: string): any;
|
|
116
|
+
setTickMarkMode(tickMarkMode: number): any;
|
|
117
|
+
setTickMarkGravity(tickMarkGravity: number): any;
|
|
118
|
+
setTickMarkLayoutGravity(tickMarkLayoutGravity: number): any;
|
|
119
|
+
setTickMarkTextArray(tickMarkTextArray: Array<string>): any;
|
|
120
|
+
setTickMarkTextMargin(tickMarkTextMargin: number): any;
|
|
121
|
+
setTickMarkTextSize(tickMarkTextSize: number): any;
|
|
122
|
+
setTickMarkTextColor(tickMarkTextColor: number): any;
|
|
123
|
+
setTickMarkInRangeTextColor(tickMarkInRangeTextColor: number): any;
|
|
124
|
+
setSteps(steps: number): any;
|
|
125
|
+
setStepsWidth(stepsWidth: number): any;
|
|
126
|
+
setStepsHeight(stepsHeight: number): any;
|
|
127
|
+
setStepsRadius(stepsRadius: number): any;
|
|
128
|
+
setStepsColor(stepsColor: number): any;
|
|
129
|
+
setStepsAutoBonding(stepsAutoBonding: boolean): any;
|
|
130
|
+
setStepsDrawable(drawableArray: Array<ESGradient>): any;
|
|
131
|
+
setStepsUrl(urlArray: Array<string>): any;
|
|
139
132
|
}
|
|
@@ -1,10 +1,4 @@
|
|
|
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;
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {
|
|
7
2
|
onSectionBind: () => void;
|
|
8
|
-
|
|
9
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
3
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
|
|
10
4
|
export default _default;
|
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
import { ESGradient } from "@extscreen/es3-component";
|
|
2
|
-
|
|
3
|
-
import { QTSeekBarGravity } from "./QTSeekBarGravity";
|
|
4
|
-
import { QTSeekBarIndicatorMode } from "./QTSeekBarIndicatorMode";
|
|
5
|
-
import { QTSeekBarTickMarkMode } from "./QTSeekBarTickMarkMode";
|
|
6
|
-
import { QTSeekBarTickMarkGravity } from "./QTSeekBarTickMarkGravity";
|
|
7
|
-
import { QTSeekBarTickMarkLayoutGravity } from "./QTSeekBarTickMarkLayoutGravity";
|
|
8
|
-
import { QTIView } from "../view/QTIView";
|
|
9
|
-
export interface QTISeekBar extends QTIView {
|
|
2
|
+
export interface QTISeekBar {
|
|
10
3
|
setProgress(p: number): void;
|
|
11
4
|
setMaxProgress(value: number): void;
|
|
12
5
|
resetSeekbar(): void;
|
|
@@ -22,13 +15,13 @@ export interface QTISeekBar extends QTIView {
|
|
|
22
15
|
setVisible(visible: boolean): void;
|
|
23
16
|
setLeftSeekBarVisible(visible: boolean): void;
|
|
24
17
|
setRightSeekBarVisible(visible: boolean): void;
|
|
25
|
-
setSeekBarMode(mode:
|
|
18
|
+
setSeekBarMode(mode: number): void;
|
|
26
19
|
setRangeProgress(leftValue: number, rightValue: number): void;
|
|
27
20
|
getProgress(): void;
|
|
28
21
|
getLeftProgress(): void;
|
|
29
22
|
getRightProgress(): void;
|
|
30
23
|
setRange(min: number, max: number, minInterval: number): void;
|
|
31
|
-
setGravity(gravity:
|
|
24
|
+
setGravity(gravity: number): void;
|
|
32
25
|
setProgressWidth(progressWidth: number): void;
|
|
33
26
|
setProgressHeight(progressHeight: number): void;
|
|
34
27
|
setProgressRadius(progressRadius: number): void;
|
|
@@ -41,9 +34,9 @@ export interface QTISeekBar extends QTIView {
|
|
|
41
34
|
showIndicator(showIndicator: boolean): void;
|
|
42
35
|
showLeftIndicator(showLeftIndicator: boolean): void;
|
|
43
36
|
showRightIndicator(showRightIndicator: boolean): void;
|
|
44
|
-
setIndicatorShowMode(indicatorShowMode:
|
|
45
|
-
setLeftIndicatorShowMode(indicatorShowMode:
|
|
46
|
-
setRightIndicatorShowMode(indicatorShowMode:
|
|
37
|
+
setIndicatorShowMode(indicatorShowMode: number): void;
|
|
38
|
+
setLeftIndicatorShowMode(indicatorShowMode: number): void;
|
|
39
|
+
setRightIndicatorShowMode(indicatorShowMode: number): void;
|
|
47
40
|
setIndicatorWidth(indicatorWidth: number): void;
|
|
48
41
|
setLeftIndicatorWidth(indicatorWidth: number): void;
|
|
49
42
|
setRightIndicatorWidth(indicatorWidth: number): void;
|
|
@@ -122,9 +115,9 @@ export interface QTISeekBar extends QTIView {
|
|
|
122
115
|
setThumbInactivatedUrl(url: string): void;
|
|
123
116
|
setLeftThumbInactivatedUrl(url: string): void;
|
|
124
117
|
setRightThumbInactivatedUrl(url: string): void;
|
|
125
|
-
setTickMarkMode(tickMarkMode:
|
|
126
|
-
setTickMarkGravity(tickMarkGravity:
|
|
127
|
-
setTickMarkLayoutGravity(tickMarkLayoutGravity:
|
|
118
|
+
setTickMarkMode(tickMarkMode: number): void;
|
|
119
|
+
setTickMarkGravity(tickMarkGravity: number): void;
|
|
120
|
+
setTickMarkLayoutGravity(tickMarkLayoutGravity: number): void;
|
|
128
121
|
setTickMarkTextArray(tickMarkTextArray: Array<string>): void;
|
|
129
122
|
setTickMarkTextMargin(tickMarkTextMargin: number): void;
|
|
130
123
|
setTickMarkTextSize(tickMarkTextSize: number): void;
|