@quicktvui/quicktvui3 1.2.0-beta.3 → 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.
Files changed (38) hide show
  1. package/dist/index.js +8 -9
  2. package/dist/src/button/index.vue.d.ts +21 -21
  3. package/dist/src/classified-list-view/index.vue.d.ts +19 -19
  4. package/dist/src/collapse/index.vue.d.ts +15 -15
  5. package/dist/src/grid-view/index.vue.d.ts +31 -31
  6. package/dist/src/image/index.vue.d.ts +11 -11
  7. package/dist/src/index.d.ts +1 -0
  8. package/dist/src/list-indicator/QTIndicatorListViewComponent.d.ts +3 -0
  9. package/dist/src/list-indicator/QtIndicatorViewAPI.d.ts +15 -0
  10. package/dist/src/list-indicator/core/QTIIndicatorView.d.ts +11 -0
  11. package/dist/src/lottie/QTILottieView.d.ts +2 -0
  12. package/dist/src/lottie/QTLottieEvent.d.ts +5 -0
  13. package/dist/src/lottie/QtLottieViewAPI.d.ts +2 -0
  14. package/dist/src/nav-bar/index.vue.d.ts +16 -16
  15. package/dist/src/poster/index.vue.d.ts +19 -16
  16. package/dist/src/qt/QtAPI.d.ts +2 -0
  17. package/dist/src/qtListen/qtDiff.d.ts +1 -1
  18. package/dist/src/section/index.vue.d.ts +11 -11
  19. package/dist/src/series/component/media-series.vue.d.ts +8 -8
  20. package/dist/src/series/index.vue.d.ts +20 -16
  21. package/dist/src/series/item/media-series-number-item.vue.d.ts +4 -4
  22. package/dist/src/series/item/media-series-text-item.vue.d.ts +4 -4
  23. package/dist/src/tab/index.vue.d.ts +22 -48
  24. package/dist/src/text/index.vue.d.ts +11 -11
  25. package/dist/src/utils/type.d.ts +1 -1
  26. package/dist/src/view/index.vue.d.ts +12 -12
  27. package/dist/src/waterfall/index.vue.d.ts +27 -17
  28. package/dist/src/waterfall/item/card-item.vue.d.ts +1 -1
  29. package/dist/src/waterfall/item/plugin-item.vue.d.ts +12 -12
  30. package/dist/src/waterfall/section/blank-section.vue.d.ts +1 -1
  31. package/dist/src/waterfall/section/card-section.vue.d.ts +1 -1
  32. package/dist/src/waterfall/section/end-section.vue.d.ts +1 -1
  33. package/dist/src/waterfall/section/flex-section.vue.d.ts +9 -6
  34. package/dist/src/waterfall/section/loading-section.vue.d.ts +1 -1
  35. package/dist/src/waterfall/section/plugin-section.vue.d.ts +6 -6
  36. package/dist/src/waterfall/section/section-title.vue.d.ts +4 -4
  37. package/dist/src/waterfall/section/vue-section.vue.d.ts +5 -5
  38. 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
  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[]) => void;
44
- requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
45
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
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 | undefined) => void;
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[], delay: number) => void;
64
- setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
65
- setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
66
- setInitFocus: (sid: string, delay?: number | undefined) => void;
67
- setAutoFocus: (sid: string, delay?: number | undefined) => void;
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
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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;
@@ -28,6 +28,7 @@ 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";
31
32
  export interface QtAPI {
32
33
  view: QtViewAPI;
33
34
  webView: QtWebViewAPI;
@@ -59,5 +60,6 @@ export interface QtAPI {
59
60
  qrCode: QtQRCodeAPI;
60
61
  row: QtRowAPI;
61
62
  virtualView: QtVirtualViewAPI;
63
+ indicator: QtIndicatorViewAPI;
62
64
  }
63
65
  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, 'update' | 'insert' | 'delete' | 'add'>) => void;
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[]) => void;
3
- requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
4
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
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 | undefined) => void;
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[], delay: number) => void;
23
- setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
24
- setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
25
- setInitFocus: (sid: string, delay?: number | undefined) => void;
26
- setAutoFocus: (sid: string, delay?: number | undefined) => void;
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").ExtractPropTypes<{}>>, {}, {}>;
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,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
- }, unknown, {}, {}, 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<{
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;
@@ -4,7 +4,7 @@ import { QTMediaSeriesStyleType } from "./QTMediaSeriesStyleType";
4
4
  import { QTMediaSeriesGroup } from "./QTMediaSeriesGroup";
5
5
  import { QTMediaSeries } from "./QTMediaSeries";
6
6
  import { ESIMediaSeries } from "@extscreen/es3-component";
7
- declare const _default: import("vue").DefineComponent<{
7
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
8
  itemHeight: {
9
9
  type: NumberConstructor;
10
10
  default: number;
@@ -65,16 +65,16 @@ declare const _default: import("vue").DefineComponent<{
65
65
  type: NumberConstructor;
66
66
  default: number;
67
67
  };
68
- }, {
69
- isVip: import("vue").Ref<boolean>;
70
- seriesType: import("vue").Ref<QTMediaSeriesType>;
71
- params: import("vue").Ref<any>;
72
- commonParams: import("vue").Ref<any>;
73
- scrollParams: import("vue").Ref<any>;
74
- groupParams: import("vue").Ref<any>;
75
- mediaSeriesRef: import("vue").Ref<ESIMediaSeries | undefined>;
76
- show: import("vue").Ref<boolean>;
77
- height: import("vue").Ref<number>;
68
+ }>, {
69
+ isVip: import("vue").Ref<boolean, boolean>;
70
+ seriesType: import("vue").Ref<QTMediaSeriesType, QTMediaSeriesType>;
71
+ params: import("vue").Ref<any, any>;
72
+ commonParams: import("vue").Ref<any, any>;
73
+ scrollParams: import("vue").Ref<any, any>;
74
+ groupParams: import("vue").Ref<any, any>;
75
+ mediaSeriesRef: import("vue").Ref<ESIMediaSeries | undefined, ESIMediaSeries | undefined>;
76
+ show: import("vue").Ref<boolean, boolean>;
77
+ height: import("vue").Ref<number, number>;
78
78
  onLoadData: (event: any) => void;
79
79
  setInitData: (type: QTMediaSeriesType, group: QTMediaSeriesGroup, styleType: QTMediaSeriesStyleType, data: QTMediaSeriesData) => void;
80
80
  setPageData: (page: number, dataArray: Array<QTMediaSeries>) => void;
@@ -91,9 +91,9 @@ declare const _default: import("vue").DefineComponent<{
91
91
  blockRootFocus: () => void;
92
92
  unBlockRootFocus: () => void;
93
93
  clearFocus: () => void;
94
- requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
94
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
95
95
  setVisibility: (v: import("..").QTIViewVisibility) => void;
96
- }, unknown, {}, {}, 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<{
96
+ }, {}, {}, {}, 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<{
97
97
  itemHeight: {
98
98
  type: NumberConstructor;
99
99
  default: number;
@@ -154,12 +154,12 @@ declare const _default: import("vue").DefineComponent<{
154
154
  type: NumberConstructor;
155
155
  default: number;
156
156
  };
157
- }>> & {
157
+ }>> & Readonly<{
158
158
  "onLoad-data"?: ((...args: any[]) => any) | undefined;
159
159
  "onItem-click"?: ((...args: any[]) => any) | undefined;
160
160
  "onItem-focused"?: ((...args: any[]) => any) | undefined;
161
161
  "onGroup-item-focused"?: ((...args: any[]) => any) | undefined;
162
- }, {
162
+ }>, {
163
163
  itemHeight: number;
164
164
  gradientBackground: Record<string, any>;
165
165
  gradientFocusBackground: Record<string, any>;
@@ -170,5 +170,9 @@ declare const _default: import("vue").DefineComponent<{
170
170
  textVipColors: Record<string, any>;
171
171
  itemDivWidth: number;
172
172
  itemDivHeight: number;
173
- }, {}>;
173
+ }, {}, {
174
+ 'media-series-number-item': import("vue").DefineComponent<{}, {}, any>;
175
+ 'media-series-text-item': import("vue").DefineComponent<{}, {}, any>;
176
+ 'media-series': import("vue").DefineComponent<{}, {}, any>;
177
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
174
178
  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
  isVip: {
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
51
51
  selectColor: string;
52
52
  };
53
53
  };
54
- }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
54
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
55
55
  isVip: {
56
56
  type: BooleanConstructor;
57
57
  default: boolean;
@@ -104,7 +104,7 @@ declare const _default: import("vue").DefineComponent<{
104
104
  selectColor: string;
105
105
  };
106
106
  };
107
- }>>, {
107
+ }>> & Readonly<{}>, {
108
108
  isVip: boolean;
109
109
  gradientBackground: Record<string, any>;
110
110
  gradientFocusBackground: Record<string, any>;
@@ -113,5 +113,5 @@ declare const _default: import("vue").DefineComponent<{
113
113
  markVipColor: string;
114
114
  textColors: Record<string, any>;
115
115
  textVipColors: Record<string, any>;
116
- }, {}>;
116
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
117
117
  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
  isVip: {
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
@@ -59,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
59
59
  type: NumberConstructor;
60
60
  default: number;
61
61
  };
62
- }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
62
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
63
63
  isVip: {
64
64
  type: BooleanConstructor;
65
65
  default: boolean;
@@ -120,7 +120,7 @@ declare const _default: import("vue").DefineComponent<{
120
120
  type: NumberConstructor;
121
121
  default: number;
122
122
  };
123
- }>>, {
123
+ }>> & Readonly<{}>, {
124
124
  isVip: boolean;
125
125
  gradientBackground: Record<string, any>;
126
126
  gradientFocusBackground: Record<string, any>;
@@ -131,5 +131,5 @@ declare const _default: import("vue").DefineComponent<{
131
131
  textVipColors: Record<string, any>;
132
132
  itemWidth: number;
133
133
  itemHeight: number;
134
- }, {}>;
134
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
135
135
  export default _default;
@@ -9,7 +9,7 @@ import { QTTabPageState } from "./QTTabPageState";
9
9
  import { QTWaterfallSection } from "../waterfall/core/QTWaterfallSection";
10
10
  import { QTTabItem } from "./QTTabItem";
11
11
  import { QTPluginViewEvent } from "../plugin/QTIPluginView";
12
- declare const _default: import("vue").DefineComponent<{
12
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
13
13
  enablePlaceholder: {
14
14
  type: BooleanConstructor;
15
15
  default: boolean;
@@ -189,28 +189,15 @@ declare const _default: import("vue").DefineComponent<{
189
189
  };
190
190
  };
191
191
  tabs: {
192
- type: {
193
- (arrayLength: number): any[];
194
- (...items: any[]): any[];
195
- new (arrayLength: number): any[];
196
- new (...items: any[]): any[];
197
- isArray(arg: any): arg is any[];
198
- readonly prototype: any[];
199
- from<T>(arrayLike: ArrayLike<T>): T[];
200
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
201
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
202
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
203
- of<T_4>(...items: T_4[]): T_4[];
204
- readonly [Symbol.species]: ArrayConstructor;
205
- };
192
+ type: ArrayConstructor;
206
193
  default: () => never[];
207
194
  };
208
- }, {
209
- dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
210
- requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
211
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
195
+ }>, {
196
+ dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
197
+ requestFocus: (direction?: import("..").QTFocusDirection) => void;
198
+ requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
212
199
  clearFocus: () => void;
213
- requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
200
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
214
201
  setVisibility: (v: import("..").QTIViewVisibility) => void;
215
202
  requestRootLayout: () => void;
216
203
  requestLayout: () => void;
@@ -226,11 +213,11 @@ declare const _default: import("vue").DefineComponent<{
226
213
  setPosition: (x: number, y: number, z: number) => void;
227
214
  updateLayout: (width: number, height: number, x: number, y: number) => void;
228
215
  invalidate: () => void;
229
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams[], delay: number) => void;
230
- setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
231
- setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
232
- setInitFocus: (sid: string, delay?: number | undefined) => void;
233
- setAutoFocus: (sid: string, delay?: number | undefined) => void;
216
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
217
+ setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
218
+ setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
219
+ setInitFocus: (sid: string, delay?: number) => void;
220
+ setAutoFocus: (sid: string, delay?: number) => void;
234
221
  enabledAutofocus: (autofocus: boolean) => void;
235
222
  requestAutofocus: () => void;
236
223
  hasFocus: () => Promise<boolean>;
@@ -241,9 +228,9 @@ declare const _default: import("vue").DefineComponent<{
241
228
  requestChildFocusAtIndex: (position: number) => void;
242
229
  clearMemoryFocused: () => void;
243
230
  showDialog: (show: boolean) => void;
244
- tabs: import("vue").Ref<ESITab | undefined>;
245
- ifTabs: import("vue").Ref<boolean>;
246
- navBarRef: import("vue").Ref<QTINavBar | undefined>;
231
+ tabs: import("vue").Ref<ESITab | undefined, ESITab | undefined>;
232
+ ifTabs: import("vue").Ref<boolean, boolean>;
233
+ navBarRef: import("vue").Ref<QTINavBar | undefined, QTINavBar | undefined>;
247
234
  initTab: (tab: QTTab) => void;
248
235
  initPage: (w: QTWaterfall) => void;
249
236
  setPageState: (pageIndex: number, state: QTTabPageState) => void;
@@ -277,7 +264,7 @@ declare const _default: import("vue").DefineComponent<{
277
264
  cancelAll: () => void;
278
265
  translationLeft: () => void;
279
266
  translationRight: () => void;
280
- rootOpacity: import("vue").Ref<number>;
267
+ rootOpacity: import("vue").Ref<number, number>;
281
268
  onTabPageLoadData: (e: QTTabEvent) => void;
282
269
  onTabPageChanged: (e: QTTabEvent) => void;
283
270
  onTabEvent: (e: QTTabEvent) => void;
@@ -298,7 +285,7 @@ declare const _default: import("vue").DefineComponent<{
298
285
  onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
299
286
  onPluginLoadError: (event: QTPluginViewEvent) => void;
300
287
  getDataManager: () => import("./QTTabDataManager").QTTabDataManager;
301
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
288
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
302
289
  enablePlaceholder: {
303
290
  type: BooleanConstructor;
304
291
  default: boolean;
@@ -478,23 +465,10 @@ declare const _default: import("vue").DefineComponent<{
478
465
  };
479
466
  };
480
467
  tabs: {
481
- type: {
482
- (arrayLength: number): any[];
483
- (...items: any[]): any[];
484
- new (arrayLength: number): any[];
485
- new (...items: any[]): any[];
486
- isArray(arg: any): arg is any[];
487
- readonly prototype: any[];
488
- from<T>(arrayLike: ArrayLike<T>): T[];
489
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
490
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
491
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
492
- of<T_4>(...items: T_4[]): T_4[];
493
- readonly [Symbol.species]: ArrayConstructor;
494
- };
468
+ type: ArrayConstructor;
495
469
  default: () => never[];
496
470
  };
497
- }>> & {
471
+ }>> & Readonly<{
498
472
  onOnTabPageLoadData?: ((...args: any[]) => any) | undefined;
499
473
  onOnTabPageChanged?: ((...args: any[]) => any) | undefined;
500
474
  onOnTabEvent?: ((...args: any[]) => any) | undefined;
@@ -513,7 +487,7 @@ declare const _default: import("vue").DefineComponent<{
513
487
  onOnTabClick?: ((...args: any[]) => any) | undefined;
514
488
  onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
515
489
  onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
516
- }, {
490
+ }>, {
517
491
  enablePlaceholder: boolean;
518
492
  preloadNumber: number;
519
493
  tabNavBarClass: string;
@@ -551,6 +525,6 @@ declare const _default: import("vue").DefineComponent<{
551
525
  qtTabSectionEnable: Record<string, any>;
552
526
  tabConfig: Record<string, any>;
553
527
  waterfallConfig: Record<string, any>;
554
- tabs: any[];
555
- }, {}>;
528
+ tabs: unknown[];
529
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
556
530
  export default _default;
@@ -1,10 +1,10 @@
1
1
  import { QTTextSpan } from "./QTTextSpan";
2
2
  declare const _default: import("vue").DefineComponent<{}, {
3
- dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
4
- requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
5
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
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 | undefined) => void;
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[], delay: number) => void;
24
- setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
25
- setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
26
- setInitFocus: (sid: string, delay?: number | undefined) => void;
27
- setAutoFocus: (sid: string, delay?: number | undefined) => void;
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,10 +35,10 @@ 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
  setText: (text: string) => void;
40
40
  setTextSize: (size: number) => void;
41
41
  setTextColor: (color: string) => void;
42
42
  textSpan: (span: QTTextSpan) => void;
43
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
43
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
44
44
  export default _default;
@@ -1 +1 @@
1
- export declare const isString: (val: unknown) => boolean;
1
+ export declare const isString: (val: unknown) => val is string;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
3
- requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
4
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
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 | undefined) => void;
6
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
7
7
  setVisibility: (v: import("./QTIViewVisibility").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[], delay: number) => void;
23
- setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
24
- setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
25
- setInitFocus: (sid: string, delay?: number | undefined) => void;
26
- setAutoFocus: (sid: string, delay?: number | undefined) => void;
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>;
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<{}, {
34
34
  requestChildFocusAtIndex: (position: number) => void;
35
35
  clearMemoryFocused: () => void;
36
36
  showDialog: (show: boolean) => void;
37
- viewRef: import("vue").Ref<any>;
38
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
37
+ viewRef: import("vue").Ref<any, any>;
38
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").PublicProps, Readonly<{}> & Readonly<{
39
39
  onClearFocus?: ((...args: any[]) => any) | undefined;
40
- }, {}, {}>;
40
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
41
41
  export default _default;