@quicktvui/quicktvui3 1.2.0-beta.4 → 1.2.0-beta.5
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.js +8 -9
- package/dist/src/button/index.vue.d.ts +21 -21
- package/dist/src/classified-list-view/index.vue.d.ts +19 -19
- package/dist/src/collapse/index.vue.d.ts +15 -15
- package/dist/src/grid-view/index.vue.d.ts +31 -31
- package/dist/src/image/index.vue.d.ts +11 -11
- package/dist/src/nav-bar/index.vue.d.ts +16 -16
- package/dist/src/poster/index.vue.d.ts +19 -16
- package/dist/src/qtListen/qtDiff.d.ts +1 -1
- package/dist/src/section/index.vue.d.ts +11 -11
- package/dist/src/series/component/media-series.vue.d.ts +8 -8
- package/dist/src/series/index.vue.d.ts +20 -16
- package/dist/src/series/item/media-series-number-item.vue.d.ts +4 -4
- package/dist/src/series/item/media-series-text-item.vue.d.ts +4 -4
- package/dist/src/tab/index.vue.d.ts +22 -48
- package/dist/src/text/index.vue.d.ts +11 -11
- package/dist/src/utils/type.d.ts +1 -1
- package/dist/src/view/index.vue.d.ts +12 -12
- package/dist/src/waterfall/index.vue.d.ts +27 -17
- package/dist/src/waterfall/item/card-item.vue.d.ts +1 -1
- package/dist/src/waterfall/item/plugin-item.vue.d.ts +12 -12
- package/dist/src/waterfall/section/blank-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/card-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/end-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/flex-section.vue.d.ts +9 -6
- package/dist/src/waterfall/section/loading-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +6 -6
- package/dist/src/waterfall/section/section-title.vue.d.ts +4 -4
- package/dist/src/waterfall/section/vue-section.vue.d.ts +5 -5
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
size: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
@@ -56,12 +56,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
56
|
iconStyle: ObjectConstructor;
|
|
57
57
|
focusIconStyle: ObjectConstructor;
|
|
58
58
|
iconParentStyle: ObjectConstructor;
|
|
59
|
-
}
|
|
60
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
61
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
62
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
59
|
+
}>, {
|
|
60
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
61
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
62
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
63
63
|
clearFocus: () => void;
|
|
64
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
64
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
65
65
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
66
66
|
requestRootLayout: () => void;
|
|
67
67
|
requestLayout: () => void;
|
|
@@ -77,11 +77,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
77
|
setPosition: (x: number, y: number, z: number) => void;
|
|
78
78
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
79
79
|
invalidate: () => void;
|
|
80
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
81
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
82
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
83
|
-
setInitFocus: (sid: string, delay?: number
|
|
84
|
-
setAutoFocus: (sid: string, delay?: number
|
|
80
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
81
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
82
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
83
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
84
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
85
85
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
86
86
|
requestAutofocus: () => void;
|
|
87
87
|
hasFocus: () => Promise<boolean>;
|
|
@@ -92,11 +92,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
92
|
requestChildFocusAtIndex: (position: number) => void;
|
|
93
93
|
clearMemoryFocused: () => void;
|
|
94
94
|
showDialog: (show: boolean) => void;
|
|
95
|
-
buttonRef: import("vue").Ref<any>;
|
|
96
|
-
focused: import("vue").Ref<boolean>;
|
|
95
|
+
buttonRef: import("vue").Ref<any, any>;
|
|
96
|
+
focused: import("vue").Ref<boolean, boolean>;
|
|
97
97
|
onFocus: (e: any) => void;
|
|
98
98
|
onClick: (e: any) => void;
|
|
99
|
-
},
|
|
99
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "click")[], "focus" | "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
100
100
|
size: {
|
|
101
101
|
type: StringConstructor;
|
|
102
102
|
default: string;
|
|
@@ -154,10 +154,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
154
154
|
iconStyle: ObjectConstructor;
|
|
155
155
|
focusIconStyle: ObjectConstructor;
|
|
156
156
|
iconParentStyle: ObjectConstructor;
|
|
157
|
-
}>> & {
|
|
157
|
+
}>> & Readonly<{
|
|
158
158
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
159
159
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
160
|
-
}
|
|
160
|
+
}>, {
|
|
161
|
+
disabled: boolean;
|
|
162
|
+
circle: boolean;
|
|
163
|
+
round: boolean;
|
|
164
|
+
square: boolean;
|
|
161
165
|
size: string;
|
|
162
166
|
itemType: number;
|
|
163
167
|
focusBorder: boolean;
|
|
@@ -170,9 +174,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
170
174
|
gradientFocusBackground: Record<string, any>;
|
|
171
175
|
gradientSelectedBackground: Record<string, any>;
|
|
172
176
|
gradientBackground: Record<string, any>;
|
|
173
|
-
|
|
174
|
-
circle: boolean;
|
|
175
|
-
round: boolean;
|
|
176
|
-
square: boolean;
|
|
177
|
-
}, {}>;
|
|
177
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
178
178
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { QTClassifiedListViewItem } from "./core/QTClassifiedListViewItem";
|
|
2
2
|
import { QTIListView } from "../list-view/core/QTIListView";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
className: {
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
@@ -25,12 +25,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
25
25
|
type: NumberConstructor;
|
|
26
26
|
default: number;
|
|
27
27
|
};
|
|
28
|
-
}
|
|
29
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
30
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
31
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
28
|
+
}>, {
|
|
29
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
30
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
31
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
32
32
|
clearFocus: () => void;
|
|
33
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
33
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
34
34
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
35
35
|
requestRootLayout: () => void;
|
|
36
36
|
requestLayout: () => void;
|
|
@@ -46,11 +46,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
46
|
setPosition: (x: number, y: number, z: number) => void;
|
|
47
47
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
48
48
|
invalidate: () => void;
|
|
49
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
50
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
51
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
52
|
-
setInitFocus: (sid: string, delay?: number
|
|
53
|
-
setAutoFocus: (sid: string, delay?: number
|
|
49
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
50
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
51
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
52
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
53
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
54
54
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
55
55
|
requestAutofocus: () => void;
|
|
56
56
|
hasFocus: () => Promise<boolean>;
|
|
@@ -61,9 +61,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
requestChildFocusAtIndex: (position: number) => void;
|
|
62
62
|
clearMemoryFocused: () => void;
|
|
63
63
|
showDialog: (show: boolean) => void;
|
|
64
|
-
descendantFocusability: import("vue").Ref<number>;
|
|
65
|
-
content_list_view: import("vue").Ref<QTIListView | undefined>;
|
|
66
|
-
nav_list_view: import("vue").Ref<QTIListView | undefined>;
|
|
64
|
+
descendantFocusability: import("vue").Ref<number, number>;
|
|
65
|
+
content_list_view: import("vue").Ref<QTIListView | undefined, QTIListView | undefined>;
|
|
66
|
+
nav_list_view: import("vue").Ref<QTIListView | undefined, QTIListView | undefined>;
|
|
67
67
|
init: (itemList: Array<QTClassifiedListViewItem>) => void;
|
|
68
68
|
onItemBind: () => void;
|
|
69
69
|
onSItemClick: (e: any) => void;
|
|
@@ -76,8 +76,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
76
76
|
onSItemFocused: (e: any) => void;
|
|
77
77
|
onFItemFocused: (e: any) => void;
|
|
78
78
|
updateItem: (position: number, data: QTClassifiedListViewItem) => void;
|
|
79
|
-
viewRef: import("vue").Ref<any>;
|
|
80
|
-
},
|
|
79
|
+
viewRef: import("vue").Ref<any, any>;
|
|
80
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "item-focused")[], "item-click" | "item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
81
81
|
className: {
|
|
82
82
|
type: StringConstructor;
|
|
83
83
|
default: string;
|
|
@@ -102,15 +102,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
102
|
type: NumberConstructor;
|
|
103
103
|
default: number;
|
|
104
104
|
};
|
|
105
|
-
}>> & {
|
|
105
|
+
}>> & Readonly<{
|
|
106
106
|
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
107
107
|
"onItem-focused"?: ((...args: any[]) => any) | undefined;
|
|
108
|
-
}
|
|
108
|
+
}>, {
|
|
109
109
|
className: string;
|
|
110
110
|
classNavName: string;
|
|
111
111
|
currentFocusIndex: number;
|
|
112
112
|
focusScale: number;
|
|
113
113
|
navType: number;
|
|
114
114
|
yOffest: number;
|
|
115
|
-
}, {}>;
|
|
115
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
116
116
|
export default _default;
|
|
@@ -2,11 +2,11 @@ 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
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
6
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
7
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
5
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
6
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
7
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
8
8
|
clearFocus: () => void;
|
|
9
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
9
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
10
10
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
11
11
|
requestRootLayout: () => void;
|
|
12
12
|
requestLayout: () => void;
|
|
@@ -22,11 +22,11 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
22
22
|
setPosition: (x: number, y: number, z: number) => void;
|
|
23
23
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
24
24
|
invalidate: () => void;
|
|
25
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
26
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
27
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
28
|
-
setInitFocus: (sid: string, delay?: number
|
|
29
|
-
setAutoFocus: (sid: string, delay?: number
|
|
25
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
26
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
27
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
28
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
29
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
30
30
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
31
31
|
requestAutofocus: () => void;
|
|
32
32
|
hasFocus: () => Promise<boolean>;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
37
37
|
requestChildFocusAtIndex: (position: number) => void;
|
|
38
38
|
clearMemoryFocused: () => void;
|
|
39
39
|
showDialog: (show: boolean) => void;
|
|
40
|
-
collapseItemComponentList: import("vue").Ref<any>;
|
|
40
|
+
collapseItemComponentList: import("vue").Ref<any, any>;
|
|
41
41
|
initComponentRef: (el: QTICollapseItem, item: {
|
|
42
42
|
name: string;
|
|
43
43
|
}, index: number) => void;
|
|
@@ -49,10 +49,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
49
49
|
expandItem: (index: number) => void;
|
|
50
50
|
collapse: () => void;
|
|
51
51
|
expand: () => void;
|
|
52
|
-
collapseWidth: import("vue").Ref<number>;
|
|
53
|
-
collapseHeight: import("vue").Ref<number>;
|
|
54
|
-
viewRef: import("vue").Ref<any>;
|
|
55
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").PublicProps, Readonly<
|
|
52
|
+
collapseWidth: import("vue").Ref<number, number>;
|
|
53
|
+
collapseHeight: import("vue").Ref<number, number>;
|
|
54
|
+
viewRef: import("vue").Ref<any, any>;
|
|
55
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
56
56
|
onOnCollapseItemExpand?: ((...args: any[]) => any) | undefined;
|
|
57
|
-
}, {}, {}>;
|
|
57
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
58
58
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QTListViewItem } from "../list-view/core/QTListViewItem";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
loadMore: {
|
|
4
4
|
type: FunctionConstructor;
|
|
5
5
|
default: () => number[];
|
|
@@ -43,13 +43,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
43
43
|
type: ArrayConstructor;
|
|
44
44
|
required: false;
|
|
45
45
|
};
|
|
46
|
-
}
|
|
46
|
+
}>, {
|
|
47
47
|
init: (target: Array<QTListViewItem>, isInit?: boolean) => Array<QTListViewItem>;
|
|
48
48
|
onItemClick: (e: any) => void;
|
|
49
49
|
onItemBind: (e: any) => void;
|
|
50
50
|
onItemFocused: (e: any) => void;
|
|
51
51
|
restartPage: () => void;
|
|
52
|
-
isRestartPage: import("vue").Ref<boolean>;
|
|
52
|
+
isRestartPage: import("vue").Ref<boolean, boolean>;
|
|
53
53
|
onItemUnbind: (e: any) => void;
|
|
54
54
|
onScroll: (e: any) => void;
|
|
55
55
|
onScrollStateChanged: (e: any) => void;
|
|
@@ -59,27 +59,27 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
setItemSelected: (pos: number, b: boolean) => void;
|
|
60
60
|
scrollToSelected: (pos: number, b: boolean) => void;
|
|
61
61
|
setInitPosition: (pos: number) => void;
|
|
62
|
-
apkVersion: import("vue").Ref<number>;
|
|
62
|
+
apkVersion: import("vue").Ref<number, number>;
|
|
63
63
|
updateItemProps: (pos: number, name: string, dataObj: object) => void;
|
|
64
64
|
insertItem: (pos: number, data: Array<QTListViewItem>) => void;
|
|
65
|
-
scrollToIndex: (x: number, y: number, animated?: boolean
|
|
65
|
+
scrollToIndex: (x: number, y: number, animated?: boolean, duration?: number, offset?: number) => void;
|
|
66
66
|
startScroll: (position: import("..").QTListInitPosition) => void;
|
|
67
|
-
setSelectChildPosition: (position: number, changeTargetFocusChild?: boolean
|
|
67
|
+
setSelectChildPosition: (position: number, changeTargetFocusChild?: boolean) => void;
|
|
68
68
|
scrollToPositionWithOffset: (position: number, offset: number, animated: boolean) => void;
|
|
69
69
|
scrollToPositionWithOffsetInfiniteMode: (position: number, offset: number, animated: boolean) => void;
|
|
70
|
-
scrollToPosition: (position: number, offset?: number
|
|
70
|
+
scrollToPosition: (position: number, offset?: number) => void;
|
|
71
71
|
refreshListData: () => void;
|
|
72
|
-
updateItemTraverse: (position: number, data?: QTListViewItem
|
|
72
|
+
updateItemTraverse: (position: number, data?: QTListViewItem, traverse?: boolean) => void;
|
|
73
73
|
requestItemLayout: (position: number) => void;
|
|
74
|
-
updateItemRange: (position: number, count: number, itemList: QTListViewItem
|
|
75
|
-
insertItemRange: (position: number, itemList: QTListViewItem
|
|
74
|
+
updateItemRange: (position: number, count: number, itemList: Array<QTListViewItem>) => void;
|
|
75
|
+
insertItemRange: (position: number, itemList: Array<QTListViewItem>) => void;
|
|
76
76
|
updateItemMatched: (params: import("..").QTNativeParams, data: QTListViewItem) => void;
|
|
77
77
|
updateItemMatchedByKey: (idKey: string, params: import("..").QTNativeParams, data: QTListViewItem) => void;
|
|
78
78
|
deleteItemRange: (position: number, count: number) => void;
|
|
79
|
-
setListData: (itemList: QTListViewItem
|
|
80
|
-
setListDataWithParams: (itemList: QTListViewItem
|
|
81
|
-
addListData: (itemList: QTListViewItem
|
|
82
|
-
addListDataWithParams: (itemList: QTListViewItem
|
|
79
|
+
setListData: (itemList: Array<QTListViewItem>) => void;
|
|
80
|
+
setListDataWithParams: (itemList: Array<QTListViewItem>, autoChangeVisible: boolean, useDiff: boolean) => void;
|
|
81
|
+
addListData: (itemList: Array<QTListViewItem>) => void;
|
|
82
|
+
addListDataWithParams: (itemList: Array<QTListViewItem>, deleteCount: number) => void;
|
|
83
83
|
destroy: () => void;
|
|
84
84
|
recycle: () => void;
|
|
85
85
|
scrollToTop: () => void;
|
|
@@ -91,22 +91,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
91
|
notifyRestoreInstance: () => void;
|
|
92
92
|
dispatchItemFunction: (params: import("../core/QTNativeParams").QTNativeArray) => void;
|
|
93
93
|
clearPostTask: () => void;
|
|
94
|
-
clearPostTaskByCate: (data: number
|
|
94
|
+
clearPostTaskByCate: (data: Array<number>) => void;
|
|
95
95
|
clearData: () => void;
|
|
96
96
|
pausePostTask: () => void;
|
|
97
97
|
resumePostTask: () => void;
|
|
98
98
|
requestLayoutManual: () => void;
|
|
99
99
|
setSpanCount: (spanCount: number) => void;
|
|
100
100
|
searchReplaceItem: (id: string, item: QTListViewItem) => void;
|
|
101
|
-
setCustomStateEnableOnFocus: (id: string, params: string
|
|
101
|
+
setCustomStateEnableOnFocus: (id: string, params: Array<Array<string>>) => void;
|
|
102
102
|
setItemCustomState: (position: number, state: string, on: boolean) => void;
|
|
103
|
-
dispatchItemFunctionWithPromise: (position: number, targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
103
|
+
dispatchItemFunctionWithPromise: (position: number, targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>) => Promise<import("..").QTNativeParams>;
|
|
104
104
|
getScrollOffset: () => Promise<import("..").QTPosition>;
|
|
105
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
106
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
107
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
105
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
106
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
107
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
108
108
|
clearFocus: () => void;
|
|
109
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
109
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
110
110
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
111
111
|
requestRootLayout: () => void;
|
|
112
112
|
requestLayout: () => void;
|
|
@@ -122,11 +122,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
122
|
setPosition: (x: number, y: number, z: number) => void;
|
|
123
123
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
124
124
|
invalidate: () => void;
|
|
125
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
126
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
127
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
128
|
-
setInitFocus: (sid: string, delay?: number
|
|
129
|
-
setAutoFocus: (sid: string, delay?: number
|
|
125
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
126
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
127
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
128
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
129
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
130
130
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
131
131
|
requestAutofocus: () => void;
|
|
132
132
|
hasFocus: () => Promise<boolean>;
|
|
@@ -137,8 +137,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
137
137
|
requestChildFocusAtIndex: (position: number) => void;
|
|
138
138
|
clearMemoryFocused: () => void;
|
|
139
139
|
showDialog: (show: boolean) => void;
|
|
140
|
-
tv_list: import("vue").Ref<any>;
|
|
141
|
-
},
|
|
140
|
+
tv_list: import("vue").Ref<any, any>;
|
|
141
|
+
}, {}, {}, {}, 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").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
142
142
|
loadMore: {
|
|
143
143
|
type: FunctionConstructor;
|
|
144
144
|
default: () => number[];
|
|
@@ -182,14 +182,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
182
182
|
type: ArrayConstructor;
|
|
183
183
|
required: false;
|
|
184
184
|
};
|
|
185
|
-
}>> & {
|
|
185
|
+
}>> & Readonly<{
|
|
186
186
|
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
187
187
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
188
188
|
"onItem-unbind"?: ((...args: any[]) => any) | undefined;
|
|
189
189
|
"onScroll-state-changed"?: ((...args: any[]) => any) | undefined;
|
|
190
190
|
"onItem-bind"?: ((...args: any[]) => any) | undefined;
|
|
191
191
|
"onItem-focused"?: ((...args: any[]) => any) | undefined;
|
|
192
|
-
}
|
|
192
|
+
}>, {
|
|
193
193
|
loadMore: Function;
|
|
194
194
|
openPage: boolean;
|
|
195
195
|
spanCount: number;
|
|
@@ -199,5 +199,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
199
199
|
areaWidth: number;
|
|
200
200
|
blockFocusDirections: unknown[];
|
|
201
201
|
loadingDecoration: Record<string, any>;
|
|
202
|
-
}, {}>;
|
|
202
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
203
203
|
export default _default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { QTImageResizeMode } from "./QTImageResizeMode";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
3
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
4
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
5
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
3
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
4
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
5
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
6
6
|
clearFocus: () => void;
|
|
7
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
7
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
8
8
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
9
9
|
requestRootLayout: () => void;
|
|
10
10
|
requestLayout: () => void;
|
|
@@ -20,11 +20,11 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
20
20
|
setPosition: (x: number, y: number, z: number) => void;
|
|
21
21
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
22
22
|
invalidate: () => void;
|
|
23
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
24
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
25
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
26
|
-
setInitFocus: (sid: string, delay?: number
|
|
27
|
-
setAutoFocus: (sid: string, delay?: number
|
|
23
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
24
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
25
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
26
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
27
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
28
28
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
29
29
|
requestAutofocus: () => void;
|
|
30
30
|
hasFocus: () => Promise<boolean>;
|
|
@@ -35,8 +35,8 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
35
35
|
requestChildFocusAtIndex: (position: number) => void;
|
|
36
36
|
clearMemoryFocused: () => void;
|
|
37
37
|
showDialog: (show: boolean) => void;
|
|
38
|
-
viewRef: import("vue").Ref<any>;
|
|
38
|
+
viewRef: import("vue").Ref<any, any>;
|
|
39
39
|
setSrc: (url: string) => void;
|
|
40
40
|
resizeMode: (mode: QTImageResizeMode) => void;
|
|
41
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
41
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
42
42
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { QTIListView } from "../list-view/core/QTIListView";
|
|
2
2
|
import { QTNavBar } from "./QTNavBar";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
textKey: {
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
@@ -45,12 +45,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
45
|
type: BooleanConstructor;
|
|
46
46
|
default: boolean;
|
|
47
47
|
};
|
|
48
|
-
}
|
|
49
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
50
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
51
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
48
|
+
}>, {
|
|
49
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
50
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
51
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
52
52
|
clearFocus: () => void;
|
|
53
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
53
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
54
54
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
55
55
|
requestRootLayout: () => void;
|
|
56
56
|
requestLayout: () => void;
|
|
@@ -66,11 +66,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
66
|
setPosition: (x: number, y: number, z: number) => void;
|
|
67
67
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
68
68
|
invalidate: () => void;
|
|
69
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
70
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
71
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
72
|
-
setInitFocus: (sid: string, delay?: number
|
|
73
|
-
setAutoFocus: (sid: string, delay?: number
|
|
69
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
70
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
71
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
72
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
73
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
74
74
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
75
75
|
requestAutofocus: () => void;
|
|
76
76
|
hasFocus: () => Promise<boolean>;
|
|
@@ -81,8 +81,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
81
81
|
requestChildFocusAtIndex: (position: number) => void;
|
|
82
82
|
clearMemoryFocused: () => void;
|
|
83
83
|
showDialog: (show: boolean) => void;
|
|
84
|
-
navList: import("vue").Ref<QTIListView | undefined>;
|
|
85
|
-
focusColor: import("vue").Ref<string>;
|
|
84
|
+
navList: import("vue").Ref<QTIListView | undefined, QTIListView | undefined>;
|
|
85
|
+
focusColor: import("vue").Ref<string, string>;
|
|
86
86
|
textColor: {
|
|
87
87
|
normal: string;
|
|
88
88
|
focused: string;
|
|
@@ -94,7 +94,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
94
94
|
scrollToPosition: (index: any) => void;
|
|
95
95
|
scrollToTop: () => void;
|
|
96
96
|
init: (navBar: QTNavBar) => void;
|
|
97
|
-
},
|
|
97
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
98
98
|
textKey: {
|
|
99
99
|
type: StringConstructor;
|
|
100
100
|
default: string;
|
|
@@ -139,7 +139,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
139
139
|
type: BooleanConstructor;
|
|
140
140
|
default: boolean;
|
|
141
141
|
};
|
|
142
|
-
}
|
|
142
|
+
}>> & Readonly<{}>, {
|
|
143
143
|
textKey: string;
|
|
144
144
|
itemGap: number;
|
|
145
145
|
horizontal: boolean;
|
|
@@ -151,5 +151,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
151
151
|
verticalFadingEdgeEnabled: boolean;
|
|
152
152
|
fadingEdgeLength: number;
|
|
153
153
|
tabEnable: boolean;
|
|
154
|
-
}, {}>;
|
|
154
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
155
155
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
requestFirstFocus: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -39,12 +39,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
39
39
|
type: ArrayConstructor;
|
|
40
40
|
default: () => string[];
|
|
41
41
|
};
|
|
42
|
-
}
|
|
43
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
44
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
45
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
42
|
+
}>, {
|
|
43
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
44
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
45
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
46
46
|
clearFocus: () => void;
|
|
47
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
47
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
48
48
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
49
49
|
requestRootLayout: () => void;
|
|
50
50
|
requestLayout: () => void;
|
|
@@ -60,11 +60,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
60
60
|
setPosition: (x: number, y: number, z: number) => void;
|
|
61
61
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
62
62
|
invalidate: () => void;
|
|
63
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
64
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
65
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
66
|
-
setInitFocus: (sid: string, delay?: number
|
|
67
|
-
setAutoFocus: (sid: string, delay?: number
|
|
63
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
64
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
65
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
66
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
67
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
68
68
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
69
69
|
requestAutofocus: () => void;
|
|
70
70
|
hasFocus: () => Promise<boolean>;
|
|
@@ -76,8 +76,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
76
76
|
clearMemoryFocused: () => void;
|
|
77
77
|
showDialog: (show: boolean) => void;
|
|
78
78
|
mainTextShowOnState: string[];
|
|
79
|
-
viewRef: import("vue").Ref<any>;
|
|
80
|
-
},
|
|
79
|
+
viewRef: import("vue").Ref<any, any>;
|
|
80
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
81
81
|
requestFirstFocus: {
|
|
82
82
|
type: BooleanConstructor;
|
|
83
83
|
default: boolean;
|
|
@@ -118,13 +118,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
118
118
|
type: ArrayConstructor;
|
|
119
119
|
default: () => string[];
|
|
120
120
|
};
|
|
121
|
-
}
|
|
121
|
+
}>> & Readonly<{}>, {
|
|
122
122
|
requestFirstFocus: boolean;
|
|
123
|
-
loadDelay: number;
|
|
124
123
|
type: number;
|
|
124
|
+
loadDelay: number;
|
|
125
125
|
templateKeyMap: Record<string, any>;
|
|
126
126
|
borderRadius: number;
|
|
127
127
|
rippleColor: string;
|
|
128
128
|
floatTitleBgColor: unknown[];
|
|
129
|
-
}, {}
|
|
129
|
+
}, {}, {
|
|
130
|
+
'qt-poster-corner-title': import("vue").DefineComponent<{}, {}, any>;
|
|
131
|
+
'qt-poster-focus-title': import("vue").DefineComponent<{}, {}, any>;
|
|
132
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
130
133
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { IQtWatchOptions } from './watch';
|
|
2
|
-
export declare const qtDiff: (oldt: any[], newt: any[], options: Pick<IQtWatchOptions,
|
|
2
|
+
export declare const qtDiff: (oldt: any[], newt: any[], options: Pick<IQtWatchOptions, "update" | "insert" | "delete" | "add">) => void;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams
|
|
3
|
-
requestFocus: (direction?: import("..").QTFocusDirection
|
|
4
|
-
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection
|
|
2
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
|
|
3
|
+
requestFocus: (direction?: import("..").QTFocusDirection) => void;
|
|
4
|
+
requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
|
|
5
5
|
clearFocus: () => void;
|
|
6
|
-
requestFocusDirectly: (direction?: import("..").QTFocusDirection
|
|
6
|
+
requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
|
|
7
7
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
8
8
|
requestRootLayout: () => void;
|
|
9
9
|
requestLayout: () => void;
|
|
@@ -19,11 +19,11 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
19
19
|
setPosition: (x: number, y: number, z: number) => void;
|
|
20
20
|
updateLayout: (width: number, height: number, x: number, y: number) => void;
|
|
21
21
|
invalidate: () => void;
|
|
22
|
-
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams
|
|
23
|
-
setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName
|
|
24
|
-
setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName
|
|
25
|
-
setInitFocus: (sid: string, delay?: number
|
|
26
|
-
setAutoFocus: (sid: string, delay?: number
|
|
22
|
+
dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
|
|
23
|
+
setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
24
|
+
setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
|
|
25
|
+
setInitFocus: (sid: string, delay?: number) => void;
|
|
26
|
+
setAutoFocus: (sid: string, delay?: number) => void;
|
|
27
27
|
enabledAutofocus: (autofocus: boolean) => void;
|
|
28
28
|
requestAutofocus: () => void;
|
|
29
29
|
hasFocus: () => Promise<boolean>;
|
|
@@ -35,6 +35,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
35
35
|
clearMemoryFocused: () => void;
|
|
36
36
|
showDialog: (show: boolean) => void;
|
|
37
37
|
onSectionBind: () => void;
|
|
38
|
-
viewRef: import("vue").Ref<any>;
|
|
39
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
38
|
+
viewRef: import("vue").Ref<any, any>;
|
|
39
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
40
40
|
export default _default;
|