@quicktvui/quicktvui3 1.2.0-beta.2 → 1.2.0-beta.21
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 +1 -2
- package/dist/index.js +8 -9
- package/dist/src/animation/QtAnimationAPI.d.ts +3 -3
- package/dist/src/animation/types.d.ts +1 -0
- package/dist/src/app/QtAppIconAPI.d.ts +3 -3
- package/dist/src/base/QtBaseViewAPI.d.ts +45 -0
- package/dist/src/button/QtButtonAPI.d.ts +3 -3
- package/dist/src/button/index.vue.d.ts +21 -21
- package/dist/src/classified-list-view/QtClassifiedListViewAPI.d.ts +3 -3
- package/dist/src/classified-list-view/index.vue.d.ts +19 -19
- package/dist/src/collapse/QtCollapseAPI.d.ts +3 -3
- package/dist/src/collapse/core/QTICollapseItem.d.ts +2 -2
- package/dist/src/collapse/index.vue.d.ts +18 -18
- package/dist/src/column/QtColumnAPI.d.ts +3 -3
- package/dist/src/grid-view/QtGridViewAPI.d.ts +3 -3
- package/dist/src/grid-view/index.vue.d.ts +31 -31
- package/dist/src/image/QtImageAPI.d.ts +3 -3
- package/dist/src/image/index.vue.d.ts +11 -11
- package/dist/src/index.d.ts +2 -0
- package/dist/src/list/useListView.d.ts +49 -0
- package/dist/src/list-indicator/QTIndicatorListViewComponent.d.ts +3 -0
- package/dist/src/list-indicator/QtIndicatorViewAPI.d.ts +15 -0
- package/dist/src/list-indicator/core/QTIIndicatorView.d.ts +11 -0
- package/dist/src/list-item/QtListItemAPI.d.ts +3 -3
- package/dist/src/list-view/QtListViewAPI.d.ts +3 -3
- package/dist/src/loading/QtLoadingAPI.d.ts +3 -3
- package/dist/src/lottie/QTILottieView.d.ts +2 -0
- package/dist/src/lottie/QTLottieEvent.d.ts +5 -0
- package/dist/src/lottie/QtLottieViewAPI.d.ts +5 -3
- package/dist/src/nav-bar/QtNavBarAPI.d.ts +3 -3
- package/dist/src/nav-bar/index.vue.d.ts +16 -16
- package/dist/src/plugin/QtPluginViewAPI.d.ts +3 -3
- package/dist/src/poster/QtPosterAPI.d.ts +3 -3
- package/dist/src/poster/index.vue.d.ts +19 -16
- package/dist/src/progressbar/QtProgressBarAPI.d.ts +3 -3
- package/dist/src/qrcode/QtQRCodeAPI.d.ts +3 -3
- package/dist/src/qt/QtAPI.d.ts +36 -0
- package/dist/src/qtListen/qtDiff.d.ts +1 -1
- package/dist/src/replace-child/QtReplaceChildViewAPI.d.ts +3 -3
- package/dist/src/row/QtRowAPI.d.ts +3 -3
- package/dist/src/scroll-view/QtScrollViewAPI.d.ts +3 -3
- package/dist/src/section/index.vue.d.ts +11 -11
- package/dist/src/seekbar/QtSeekBarAPI.d.ts +3 -3
- 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/QtTextAPI.d.ts +3 -3
- package/dist/src/text/index.vue.d.ts +11 -11
- package/dist/src/ul/QtULAPI.d.ts +3 -3
- package/dist/src/utils/type.d.ts +1 -1
- package/dist/src/view/QtViewAPI.d.ts +3 -44
- package/dist/src/view/index.vue.d.ts +12 -12
- package/dist/src/waterfall/QtWaterfallAPI.d.ts +3 -3
- package/dist/src/waterfall/index.vue.d.ts +37 -24
- 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/dist/src/webview/QtWebViewAPI.d.ts +3 -3
- package/dist/src/x5webview/QtX5WebViewAPI.d.ts +3 -3
- package/package.json +5 -1
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Ref } from "@vue/reactivity";
|
|
2
|
+
import { QTIListView } from "../list-view/core/QTIListView";
|
|
3
|
+
import { QTListInitPosition } from "./QTListInitPosition";
|
|
4
|
+
import { QTListViewItem } from "../list-view/core/QTListViewItem";
|
|
5
|
+
import { QTNativeArray, QTNativeMap, QTNativeParams } from "../core/QTNativeParams";
|
|
6
|
+
import { QTPosition } from "../core/QTPosition";
|
|
7
|
+
export default function (viewRef: Ref<QTIListView | undefined>): {
|
|
8
|
+
scrollToIndex: (x: number, y: number, animated?: boolean, duration?: number, offset?: number) => void;
|
|
9
|
+
startScroll: (position: QTListInitPosition) => void;
|
|
10
|
+
setSelectChildPosition: (position: number, changeTargetFocusChild?: boolean) => void;
|
|
11
|
+
scrollToPositionWithOffset: (position: number, offset: number, animated: boolean) => void;
|
|
12
|
+
scrollToPositionWithOffsetInfiniteMode: (position: number, offset: number, animated: boolean) => void;
|
|
13
|
+
scrollToPosition: (position: number, offset?: number) => void;
|
|
14
|
+
refreshListData: () => void;
|
|
15
|
+
updateItemTraverse: (position: number, data?: QTListViewItem, traverse?: boolean) => void;
|
|
16
|
+
requestItemLayout: (position: number) => void;
|
|
17
|
+
updateItemRange: (position: number, count: number, itemList: Array<QTListViewItem>) => void;
|
|
18
|
+
insertItemRange: (position: number, itemList: Array<QTListViewItem>) => void;
|
|
19
|
+
updateItemMatched: (params: QTNativeParams, data: QTListViewItem) => void;
|
|
20
|
+
updateItemMatchedByKey: (idKey: string, params: QTNativeParams, data: QTListViewItem) => void;
|
|
21
|
+
deleteItemRange: (position: number, count: number) => void;
|
|
22
|
+
setListData: (itemList: Array<QTListViewItem>) => void;
|
|
23
|
+
setListDataWithParams: (itemList: Array<QTListViewItem>, autoChangeVisible: boolean, useDiff: boolean) => void;
|
|
24
|
+
addListData: (itemList: Array<QTListViewItem>) => void;
|
|
25
|
+
addListDataWithParams: (itemList: Array<QTListViewItem>, deleteCount: number) => void;
|
|
26
|
+
destroy: () => void;
|
|
27
|
+
recycle: () => void;
|
|
28
|
+
scrollToTop: () => void;
|
|
29
|
+
scrollToFocus: (position: number, scrollOffset: number, delay: number, target: string) => void;
|
|
30
|
+
prepareForRecycle: () => void;
|
|
31
|
+
setDisplay: (display: boolean) => void;
|
|
32
|
+
changeDisplayState: (display: boolean, autoDataState: boolean) => void;
|
|
33
|
+
notifySaveInstance: () => void;
|
|
34
|
+
notifyRestoreInstance: () => void;
|
|
35
|
+
updateItemProps: (name: string, position: number, dataToUpdate: QTNativeMap, updateView: boolean) => void;
|
|
36
|
+
dispatchItemFunction: (params: QTNativeArray) => void;
|
|
37
|
+
clearPostTask: () => void;
|
|
38
|
+
clearPostTaskByCate: (data: Array<number>) => void;
|
|
39
|
+
clearData: () => void;
|
|
40
|
+
pausePostTask: () => void;
|
|
41
|
+
resumePostTask: () => void;
|
|
42
|
+
requestLayoutManual: () => void;
|
|
43
|
+
setSpanCount: (spanCount: number) => void;
|
|
44
|
+
searchReplaceItem: (id: string, item: QTListViewItem) => void;
|
|
45
|
+
setCustomStateEnableOnFocus: (id: string, params: Array<Array<string>>) => void;
|
|
46
|
+
setItemCustomState: (position: number, state: string, on: boolean) => void;
|
|
47
|
+
dispatchItemFunctionWithPromise: (position: number, targetName: string, functionTargetName: string, params: Array<QTNativeParams>) => Promise<QTNativeParams>;
|
|
48
|
+
getScrollOffset: () => Promise<QTPosition>;
|
|
49
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { QtBaseListViewAPI } from "../list/QtBaseListViewAPI";
|
|
2
|
+
import { QTListViewItem } from "../list-view/core/QTListViewItem";
|
|
3
|
+
import { Ref } from "@vue/reactivity";
|
|
4
|
+
import { QTIIndicatorView } from "./core/QTIIndicatorView";
|
|
5
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
6
|
+
export interface QtIndicatorViewAPI extends QtBaseViewAPI, QtBaseListViewAPI {
|
|
7
|
+
init(instance: Ref<QTIIndicatorView | undefined>, target: Array<QTListViewItem>, isInit?: boolean): Array<QTListViewItem>;
|
|
8
|
+
stopPage(instance: Ref<QTIIndicatorView | undefined>, isTip?: boolean): void;
|
|
9
|
+
setItemFocused(instance: Ref<QTIIndicatorView | undefined>, position: number): void;
|
|
10
|
+
scrollToFocused(instance: Ref<QTIIndicatorView | undefined>, position: number): void;
|
|
11
|
+
setItemSelected(instance: Ref<QTIIndicatorView | undefined>, position: number, requestFocus: boolean): void;
|
|
12
|
+
scrollToSelected(instance: Ref<QTIIndicatorView | undefined>, position: number, requestFocus: boolean): void;
|
|
13
|
+
setIndicatorType(instance: Ref<QTIIndicatorView | undefined>, type: number): void;
|
|
14
|
+
}
|
|
15
|
+
export declare function createQtIndicatorViewAPI(viewAPI: QtBaseViewAPI, listViewAPI: QtBaseListViewAPI): QtIndicatorViewAPI;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { QTListViewItem } from "../../list-view/core/QTListViewItem";
|
|
2
|
+
import { QTIBaseListView } from "../../list/QTIBaseListView";
|
|
3
|
+
export interface QTIIndicatorView extends QTIBaseListView {
|
|
4
|
+
init(target: Array<QTListViewItem>, isInit?: boolean): Array<QTListViewItem>;
|
|
5
|
+
stopPage(isTip?: boolean): void;
|
|
6
|
+
setItemFocused(position: number): void;
|
|
7
|
+
scrollToFocused(position: number): void;
|
|
8
|
+
setItemSelected(position: number, b: boolean): void;
|
|
9
|
+
scrollToSelected(position: number, b: boolean): void;
|
|
10
|
+
setIndicatorType(type: number): void;
|
|
11
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTIListItem } from "./QTIListItem";
|
|
4
|
-
|
|
3
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
4
|
+
export interface QtListItemAPI extends QtBaseViewAPI {
|
|
5
5
|
updateItem(instance: string | Ref<QTIListItem | undefined>, posInList: number, data: Object): any;
|
|
6
6
|
dispatchItemFunction(instance: string | Ref<QTIListItem | undefined>, position: number, name: string, funcName: string, params: any): any;
|
|
7
7
|
updateItemProps(instance: string | Ref<QTIListItem | undefined>, position: number, name: string, toUpdateMap: Object): any;
|
|
8
8
|
batch(instance: string | Ref<QTIListItem | undefined>, position: number): any;
|
|
9
9
|
}
|
|
10
|
-
export declare function createQtListItemAPI(viewAPI:
|
|
10
|
+
export declare function createQtListItemAPI(viewAPI: QtBaseViewAPI): QtListItemAPI;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { QtBaseListViewAPI } from "../list/QtBaseListViewAPI";
|
|
3
2
|
import { QTListViewItem } from "./core/QTListViewItem";
|
|
4
3
|
import { Ref } from "@vue/reactivity";
|
|
5
4
|
import { QTIListView } from "./core/QTIListView";
|
|
6
|
-
|
|
5
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
6
|
+
export interface QtListViewAPI extends QtBaseViewAPI, QtBaseListViewAPI {
|
|
7
7
|
init(instance: Ref<QTIListView | undefined>, target: Array<QTListViewItem>, isInit?: boolean): Array<QTListViewItem>;
|
|
8
8
|
stopPage(instance: Ref<QTIListView | undefined>, isTip?: boolean): void;
|
|
9
9
|
setItemFocused(instance: Ref<QTIListView | undefined>, position: number): void;
|
|
@@ -11,4 +11,4 @@ export interface QtListViewAPI extends QtViewAPI, QtBaseListViewAPI {
|
|
|
11
11
|
setItemSelected(instance: Ref<QTIListView | undefined>, position: number, requestFocus: boolean): void;
|
|
12
12
|
scrollToSelected(instance: Ref<QTIListView | undefined>, position: number, requestFocus: boolean): void;
|
|
13
13
|
}
|
|
14
|
-
export declare function createQtListViewAPI(viewAPI:
|
|
14
|
+
export declare function createQtListViewAPI(viewAPI: QtBaseViewAPI, listViewAPI: QtBaseListViewAPI): QtListViewAPI;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface QtLoadingAPI extends
|
|
1
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
2
|
+
export interface QtLoadingAPI extends QtBaseViewAPI {
|
|
3
3
|
}
|
|
4
|
-
export declare function createQtLoadingAPI(viewAPI:
|
|
4
|
+
export declare function createQtLoadingAPI(viewAPI: QtBaseViewAPI): QtLoadingAPI;
|
|
@@ -5,6 +5,8 @@ import { QTIView } from "../view/QTIView";
|
|
|
5
5
|
export interface QTILottieView extends QTIView {
|
|
6
6
|
loadRaw(rawRes: string): void;
|
|
7
7
|
loadFile(fileName: string): void;
|
|
8
|
+
loadJsonFile(fileName: string): void;
|
|
9
|
+
loadZipFile(filePath: string, keyCache: string): void;
|
|
8
10
|
loadUrl(url: string): void;
|
|
9
11
|
loadCacheUrl(url: string, cacheKey: string): void;
|
|
10
12
|
setFallbackResource(res: number): void;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTILottieView } from "./QTILottieView";
|
|
4
3
|
import { QTLottieRepeatMode } from "./QTLottieRepeatMode";
|
|
5
4
|
import { QTLottieRenderMode } from "./QTLottieRenderMode";
|
|
6
5
|
import { QTLottieAsyncUpdates } from "./QTLottieAsyncUpdates";
|
|
7
|
-
|
|
6
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
7
|
+
export interface QtLottieViewAPI extends QtBaseViewAPI {
|
|
8
8
|
loadRaw(instance: string | Ref<QTILottieView | undefined>, rawRes: string): void;
|
|
9
9
|
loadFile(instance: string | Ref<QTILottieView | undefined>, fileName: string): void;
|
|
10
|
+
loadJsonFile(instance: string | Ref<QTILottieView | undefined>, fileName: string): void;
|
|
11
|
+
loadZipFile(instance: string | Ref<QTILottieView | undefined>, filePath: string, keyCache: string): void;
|
|
10
12
|
loadUrl(instance: string | Ref<QTILottieView | undefined>, url: string): void;
|
|
11
13
|
loadCacheUrl(instance: string | Ref<QTILottieView | undefined>, url: string, cacheKey: string): void;
|
|
12
14
|
setFallbackResource(instance: string | Ref<QTILottieView | undefined>, res: number): void;
|
|
@@ -32,4 +34,4 @@ export interface QtLottieViewAPI extends QtViewAPI {
|
|
|
32
34
|
cacheComposition(instance: string | Ref<QTILottieView | undefined>, cache: boolean): void;
|
|
33
35
|
removeAllListener(instance: string | Ref<QTILottieView | undefined>): void;
|
|
34
36
|
}
|
|
35
|
-
export declare function createQtLottieViewAPI(viewAPI:
|
|
37
|
+
export declare function createQtLottieViewAPI(viewAPI: QtBaseViewAPI): QtLottieViewAPI;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTNavBar } from "./QTNavBar";
|
|
4
3
|
import { QTINavBar } from "./QTINavBar";
|
|
5
|
-
|
|
4
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
5
|
+
export interface QtNavBarAPI extends QtBaseViewAPI {
|
|
6
6
|
init(instance: Ref<QTINavBar | undefined>, navBar: QTNavBar): void;
|
|
7
7
|
scrollToPosition(instance: Ref<QTINavBar | undefined>, index: number): void;
|
|
8
8
|
scrollToTop(instance: Ref<QTINavBar | undefined>): void;
|
|
9
9
|
}
|
|
10
|
-
export declare function createQtNavBarAPI(viewAPI:
|
|
10
|
+
export declare function createQtNavBarAPI(viewAPI: QtBaseViewAPI): QtNavBarAPI;
|
|
@@ -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,7 +1,7 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTIPluginView } from "./QTIPluginView";
|
|
4
|
-
|
|
3
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
4
|
+
export interface QtPluginViewAPI extends QtBaseViewAPI {
|
|
5
5
|
dispatchFunction(instance: string | Ref<QTIPluginView | undefined>, funName: string, params: Array<any>): Promise<any>;
|
|
6
6
|
}
|
|
7
|
-
export declare function createQtPluginViewAPI(viewAPI:
|
|
7
|
+
export declare function createQtPluginViewAPI(viewAPI: QtBaseViewAPI): QtPluginViewAPI;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface QtPosterAPI extends
|
|
1
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
2
|
+
export interface QtPosterAPI extends QtBaseViewAPI {
|
|
3
3
|
}
|
|
4
|
-
export declare function createQtPosterAPI(viewAPI:
|
|
4
|
+
export declare function createQtPosterAPI(viewAPI: QtBaseViewAPI): QtPosterAPI;
|
|
@@ -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,4 +1,3 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTSeekBarMode } from "../seekbar/QTSeekBarMode";
|
|
4
3
|
import { QTSeekBarGravity } from "../seekbar/QTSeekBarGravity";
|
|
@@ -8,7 +7,8 @@ import { QTSeekBarTickMarkMode } from "../seekbar/QTSeekBarTickMarkMode";
|
|
|
8
7
|
import { QTSeekBarTickMarkGravity } from "../seekbar/QTSeekBarTickMarkGravity";
|
|
9
8
|
import { QTSeekBarTickMarkLayoutGravity } from "../seekbar/QTSeekBarTickMarkLayoutGravity";
|
|
10
9
|
import { QTIProgressBar } from "./QTIProgressBar";
|
|
11
|
-
|
|
10
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
11
|
+
export interface QtProgressBarAPI extends QtBaseViewAPI {
|
|
12
12
|
invalidateProgressBar(instance: string | Ref<QTIProgressBar | undefined>): void;
|
|
13
13
|
setFocusable(instance: string | Ref<QTIProgressBar | undefined>, focusable: boolean): void;
|
|
14
14
|
setClickable(instance: string | Ref<QTIProgressBar | undefined>, clickable: boolean): void;
|
|
@@ -136,4 +136,4 @@ export interface QtProgressBarAPI extends QtViewAPI {
|
|
|
136
136
|
setStepsDrawable(instance: string | Ref<QTIProgressBar | undefined>, drawableArray: Array<ESGradient>): void;
|
|
137
137
|
setStepsUrl(instance: string | Ref<QTIProgressBar | undefined>, urlArray: Array<string>): void;
|
|
138
138
|
}
|
|
139
|
-
export declare function createQtProgressBarAPI(viewAPI:
|
|
139
|
+
export declare function createQtProgressBarAPI(viewAPI: QtBaseViewAPI): QtProgressBarAPI;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface QtQRCodeAPI extends
|
|
1
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
2
|
+
export interface QtQRCodeAPI extends QtBaseViewAPI {
|
|
3
3
|
}
|
|
4
|
-
export declare function createQtQRCodeAPI(viewAPI:
|
|
4
|
+
export declare function createQtQRCodeAPI(viewAPI: QtBaseViewAPI): QtQRCodeAPI;
|
package/dist/src/qt/QtAPI.d.ts
CHANGED
|
@@ -28,7 +28,13 @@ import { QtPosterAPI } from "../poster/QtPosterAPI";
|
|
|
28
28
|
import { QtQRCodeAPI } from "../qrcode/QtQRCodeAPI";
|
|
29
29
|
import { QtRowAPI } from "../row/QtRowAPI";
|
|
30
30
|
import { QtVirtualViewAPI } from "../utils/QtVirtualViewAPI";
|
|
31
|
+
import { QtIndicatorViewAPI } from "../list-indicator/QtIndicatorViewAPI";
|
|
32
|
+
import { ES, ESActionBar, ESAppList, ESAudio, ESBrightness, ESBroadcast, ESContentProvider, ESDevelop, ESDevice, ESDisplay, ESDownload, ESEventBus, ESFocus, ESIAC, ESLocalStorage, ESLocation, ESLog, ESLogUpload, ESNetwork, ESPermission, ESPlugin, ESPower, ESRuntime, ESService, ESShareData, ESToast, ESUpload, ESUsbDevice, ESXLog } from "@extscreen/es3-core";
|
|
31
33
|
export interface QtAPI {
|
|
34
|
+
div: QtViewAPI;
|
|
35
|
+
img: QtViewAPI;
|
|
36
|
+
li: QtViewAPI;
|
|
37
|
+
p: QtViewAPI;
|
|
32
38
|
view: QtViewAPI;
|
|
33
39
|
webView: QtWebViewAPI;
|
|
34
40
|
listView: QtListViewAPI;
|
|
@@ -59,5 +65,35 @@ export interface QtAPI {
|
|
|
59
65
|
qrCode: QtQRCodeAPI;
|
|
60
66
|
row: QtRowAPI;
|
|
61
67
|
virtualView: QtVirtualViewAPI;
|
|
68
|
+
indicator: QtIndicatorViewAPI;
|
|
69
|
+
log: ESLog;
|
|
70
|
+
es: ES;
|
|
71
|
+
develop: ESDevelop;
|
|
72
|
+
toast: ESToast;
|
|
73
|
+
storage: ESLocalStorage;
|
|
74
|
+
device: ESDevice;
|
|
75
|
+
display: ESDisplay;
|
|
76
|
+
network: ESNetwork;
|
|
77
|
+
appList: ESAppList;
|
|
78
|
+
power: ESPower;
|
|
79
|
+
permission: ESPermission;
|
|
80
|
+
usbDevice: ESUsbDevice;
|
|
81
|
+
broadcast: ESBroadcast;
|
|
82
|
+
audio: ESAudio;
|
|
83
|
+
shareData: ESShareData;
|
|
84
|
+
runtime: ESRuntime;
|
|
85
|
+
plugin: ESPlugin;
|
|
86
|
+
download: ESDownload;
|
|
87
|
+
upload: ESUpload;
|
|
88
|
+
actionBar: ESActionBar;
|
|
89
|
+
iac: ESIAC;
|
|
90
|
+
location: ESLocation;
|
|
91
|
+
focus: ESFocus;
|
|
92
|
+
provider: ESContentProvider;
|
|
93
|
+
eventBus: ESEventBus;
|
|
94
|
+
xlog: ESXLog;
|
|
95
|
+
logUpload: ESLogUpload;
|
|
96
|
+
brightness: ESBrightness;
|
|
97
|
+
service: ESService;
|
|
62
98
|
}
|
|
63
99
|
export declare function createQtAPI(): QtAPI;
|
|
@@ -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,7 +1,7 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTIReplaceChildView } from "./QTIReplaceChildView";
|
|
4
|
-
|
|
3
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
4
|
+
export interface QtReplaceChildViewAPI extends QtBaseViewAPI {
|
|
5
5
|
setChildSID(instance: string | Ref<QTIReplaceChildView | undefined>, sid: string): void;
|
|
6
6
|
}
|
|
7
|
-
export declare function createQtReplaceChildViewAPI(viewAPI:
|
|
7
|
+
export declare function createQtReplaceChildViewAPI(viewAPI: QtBaseViewAPI): QtReplaceChildViewAPI;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface QtRowAPI extends
|
|
1
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
2
|
+
export interface QtRowAPI extends QtBaseViewAPI {
|
|
3
3
|
}
|
|
4
|
-
export declare function createQtRowAPI(viewAPI:
|
|
4
|
+
export declare function createQtRowAPI(viewAPI: QtBaseViewAPI): QtRowAPI;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTIScrollView } from "./QTIScrollView";
|
|
4
|
-
|
|
3
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
4
|
+
export interface QtScrollViewAPI extends QtBaseViewAPI {
|
|
5
5
|
scrollTo(instance: string | Ref<QTIScrollView | undefined>, x: number, y: number): void;
|
|
6
6
|
scrollToWithOptions(instance: string | Ref<QTIScrollView | undefined>, x: number, y: number, duration: number): void;
|
|
7
7
|
}
|
|
8
|
-
export declare function createQtScrollViewAPI(viewAPI:
|
|
8
|
+
export declare function createQtScrollViewAPI(viewAPI: QtBaseViewAPI): QtScrollViewAPI;
|
|
@@ -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;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTSeekBarMode } from "../seekbar/QTSeekBarMode";
|
|
4
3
|
import { QTSeekBarGravity } from "../seekbar/QTSeekBarGravity";
|
|
@@ -8,7 +7,8 @@ import { QTSeekBarTickMarkMode } from "../seekbar/QTSeekBarTickMarkMode";
|
|
|
8
7
|
import { QTSeekBarTickMarkGravity } from "../seekbar/QTSeekBarTickMarkGravity";
|
|
9
8
|
import { QTSeekBarTickMarkLayoutGravity } from "../seekbar/QTSeekBarTickMarkLayoutGravity";
|
|
10
9
|
import { QTISeekBar } from "./QTISeekBar";
|
|
11
|
-
|
|
10
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
11
|
+
export interface QtSeekBarAPI extends QtBaseViewAPI {
|
|
12
12
|
resetSeekbar(instance: Ref<QTISeekBar | undefined>): void;
|
|
13
13
|
startSeek(instance: Ref<QTISeekBar | undefined>, forward: boolean): void;
|
|
14
14
|
stopSeek(instance: Ref<QTISeekBar | undefined>): void;
|
|
@@ -139,4 +139,4 @@ export interface QtSeekBarAPI extends QtViewAPI {
|
|
|
139
139
|
setStepsDrawable(instance: string | Ref<QTISeekBar | undefined>, drawableArray: Array<ESGradient>): void;
|
|
140
140
|
setStepsUrl(instance: string | Ref<QTISeekBar | undefined>, urlArray: Array<string>): void;
|
|
141
141
|
}
|
|
142
|
-
export declare function createQtSeekBarAPI(viewAPI:
|
|
142
|
+
export declare function createQtSeekBarAPI(viewAPI: QtBaseViewAPI): QtSeekBarAPI;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ESIMediaSeries } from "@extscreen/es3-component";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
customItem: {
|
|
4
4
|
type: BooleanConstructor;
|
|
5
5
|
default: boolean;
|
|
@@ -24,9 +24,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
type: ObjectConstructor;
|
|
25
25
|
default: () => {};
|
|
26
26
|
};
|
|
27
|
-
}
|
|
28
|
-
selectSeries: import("vue").Ref<ESIMediaSeries | undefined>;
|
|
29
|
-
showOld: import("vue").Ref<boolean>;
|
|
27
|
+
}>, {
|
|
28
|
+
selectSeries: import("vue").Ref<ESIMediaSeries | undefined, ESIMediaSeries | undefined>;
|
|
29
|
+
showOld: import("vue").Ref<boolean, boolean>;
|
|
30
30
|
onLoadData: (event: any) => void;
|
|
31
31
|
setPageData: (page: any, data: any) => void;
|
|
32
32
|
setInitData: (totalCount: any, pageSize: any) => void;
|
|
@@ -40,7 +40,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
setup: () => void;
|
|
41
41
|
setGroupSelected: (position: any) => void;
|
|
42
42
|
release: () => void;
|
|
43
|
-
},
|
|
43
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
44
|
customItem: {
|
|
45
45
|
type: BooleanConstructor;
|
|
46
46
|
default: boolean;
|
|
@@ -65,17 +65,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
65
|
type: ObjectConstructor;
|
|
66
66
|
default: () => {};
|
|
67
67
|
};
|
|
68
|
-
}>> & {
|
|
68
|
+
}>> & Readonly<{
|
|
69
69
|
"onLoad-data"?: ((...args: any[]) => any) | undefined;
|
|
70
70
|
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
71
71
|
"onItem-focused"?: ((...args: any[]) => any) | undefined;
|
|
72
72
|
"onGroup-item-focused"?: ((...args: any[]) => any) | undefined;
|
|
73
|
-
}
|
|
73
|
+
}>, {
|
|
74
74
|
customItem: boolean;
|
|
75
75
|
initParam: Record<string, any>;
|
|
76
76
|
height: number;
|
|
77
77
|
scrollParam: Record<string, any>;
|
|
78
78
|
groupParam: Record<string, any>;
|
|
79
79
|
commonParam: Record<string, any>;
|
|
80
|
-
}, {}>;
|
|
80
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
81
81
|
export default _default;
|