@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
@@ -5,7 +5,7 @@ import { QTWaterfallItem } from "./core/QTWaterfallItem";
5
5
  import { QTWaterfallEvent } from "./core/QTWaterfallEvent";
6
6
  import { QTWaterfallVisibleType } from "./core/QTWaterfallVisibleType";
7
7
  import { QTPluginViewEvent } from "../plugin/QTIPluginView";
8
- declare const _default: import("vue").DefineComponent<{
8
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
9
9
  enablePlaceholder: {
10
10
  type: BooleanConstructor;
11
11
  default: boolean;
@@ -69,12 +69,12 @@ declare const _default: import("vue").DefineComponent<{
69
69
  type: StringConstructor;
70
70
  required: false;
71
71
  };
72
- }, {
73
- dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
74
- requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
75
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
72
+ }>, {
73
+ dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
74
+ requestFocus: (direction?: import("..").QTFocusDirection) => void;
75
+ requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
76
76
  clearFocus: () => void;
77
- requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
77
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
78
78
  setVisibility: (v: import("..").QTIViewVisibility) => void;
79
79
  requestRootLayout: () => void;
80
80
  requestLayout: () => void;
@@ -90,11 +90,11 @@ declare const _default: import("vue").DefineComponent<{
90
90
  setPosition: (x: number, y: number, z: number) => void;
91
91
  updateLayout: (width: number, height: number, x: number, y: number) => void;
92
92
  invalidate: () => void;
93
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams[], delay: number) => void;
94
- setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
95
- setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
96
- setInitFocus: (sid: string, delay?: number | undefined) => void;
97
- setAutoFocus: (sid: string, delay?: number | undefined) => void;
93
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
94
+ setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
95
+ setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
96
+ setInitFocus: (sid: string, delay?: number) => void;
97
+ setAutoFocus: (sid: string, delay?: number) => void;
98
98
  enabledAutofocus: (autofocus: boolean) => void;
99
99
  requestAutofocus: () => void;
100
100
  hasFocus: () => Promise<boolean>;
@@ -105,8 +105,8 @@ declare const _default: import("vue").DefineComponent<{
105
105
  requestChildFocusAtIndex: (position: number) => void;
106
106
  clearMemoryFocused: () => void;
107
107
  showDialog: (show: boolean) => void;
108
- waterfallRef: import("vue").Ref<ESIListView | undefined>;
109
- visibleType: import("vue").Ref<QTWaterfallVisibleType>;
108
+ waterfallRef: import("vue").Ref<ESIListView | undefined, ESIListView | undefined>;
109
+ visibleType: import("vue").Ref<QTWaterfallVisibleType, QTWaterfallVisibleType>;
110
110
  init: (data: QTWaterfall) => void;
111
111
  getSectionList: () => Array<QTWaterfallSection>;
112
112
  setSectionList: (sectionList: Array<QTWaterfallSection>) => void;
@@ -149,7 +149,7 @@ declare const _default: import("vue").DefineComponent<{
149
149
  onScrollYLesserReference: () => void;
150
150
  onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
151
151
  onPluginLoadError: (event: QTPluginViewEvent) => void;
152
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
152
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
153
153
  enablePlaceholder: {
154
154
  type: BooleanConstructor;
155
155
  default: boolean;
@@ -213,7 +213,7 @@ declare const _default: import("vue").DefineComponent<{
213
213
  type: StringConstructor;
214
214
  required: false;
215
215
  };
216
- }>> & {
216
+ }>> & Readonly<{
217
217
  onOnScroll?: ((...args: any[]) => any) | undefined;
218
218
  onOnScrollStateChanged?: ((...args: any[]) => any) | undefined;
219
219
  onOnItemClick?: ((...args: any[]) => any) | undefined;
@@ -225,7 +225,7 @@ declare const _default: import("vue").DefineComponent<{
225
225
  onOnScrollYLesserReference?: ((...args: any[]) => any) | undefined;
226
226
  onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
227
227
  onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
228
- }, {
228
+ }>, {
229
229
  enablePlaceholder: boolean;
230
230
  blockFocusDirections: unknown[];
231
231
  vueSectionBlockFocusDirections: unknown[];
@@ -235,5 +235,15 @@ declare const _default: import("vue").DefineComponent<{
235
235
  scrollYGreaterReferenceValue: number;
236
236
  pStype: Record<string, any>;
237
237
  qtTabSectionEnable: Record<string, any>;
238
- }, {}>;
238
+ }, {}, {
239
+ 'flex-section': import("vue").DefineComponent<{}, {}, any>;
240
+ 'list-section': import("vue").DefineComponent<{}, {}, any>;
241
+ 'section-title': import("vue").DefineComponent<{}, {}, any>;
242
+ 'loading-section': import("vue").DefineComponent<{}, {}, any>;
243
+ 'end-section': import("vue").DefineComponent<{}, {}, any>;
244
+ 'blank-section': import("vue").DefineComponent<{}, {}, any>;
245
+ 'card-section': import("vue").DefineComponent<{}, {}, any>;
246
+ 'vue-section': import("vue").DefineComponent<{}, {}, any>;
247
+ 'plugin-section': import("vue").DefineComponent<{}, {}, any>;
248
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
239
249
  export default _default;
@@ -1,4 +1,4 @@
1
1
  declare const _default: import("@vue/runtime-core").DefineComponent<{}, {
2
2
  onFocus: (e: any) => void;
3
- }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
3
+ }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
4
4
  export default _default;
@@ -1,10 +1,10 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  onFocus: (e: any) => void;
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,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>;
39
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
38
+ viewRef: import("vue").Ref<any, any>;
39
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").PublicProps, Readonly<{}> & Readonly<{
40
40
  onFocus?: ((...args: any[]) => any) | undefined;
41
- }, {}, {}>;
41
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
42
42
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,4 +1,4 @@
1
1
  declare const _default: import("@vue/runtime-core").DefineComponent<{}, {
2
2
  onFocus: (e: any) => void;
3
- }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
3
+ }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
4
4
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import { QTWaterfallSectionType } from "../core/QTWaterfallSectionType";
2
2
  import { QTWaterfallItemType } from "../core/QTWaterfallItemType";
3
- declare const _default: import("@vue/runtime-core").DefineComponent<{
3
+ declare const _default: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
4
4
  enablePlaceholder: {
5
5
  type: BooleanConstructor;
6
6
  default: boolean;
@@ -41,9 +41,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
41
41
  cardItemEnable: boolean;
42
42
  };
43
43
  };
44
- }, {
44
+ }>, {
45
45
  onFocus: (e: any) => void;
46
- }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
46
+ }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
47
47
  enablePlaceholder: {
48
48
  type: BooleanConstructor;
49
49
  default: boolean;
@@ -84,9 +84,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
84
84
  cardItemEnable: boolean;
85
85
  };
86
86
  };
87
- }>> & {
87
+ }>> & Readonly<{
88
88
  onFocus?: ((...args: any[]) => any) | undefined;
89
- }, {
89
+ }>, {
90
90
  enablePlaceholder: boolean;
91
91
  plateData: string;
92
92
  useDiff: boolean;
@@ -96,5 +96,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
96
96
  currentPageIndex: number;
97
97
  itemFocusScale: number;
98
98
  flexSection: Record<string, any>;
99
- }, {}>;
99
+ }, {}, {
100
+ 'card-item': import("@vue/runtime-core").DefineComponent<{}, {}, any>;
101
+ 'qt-plugin-item': import("@vue/runtime-core").DefineComponent<{}, {}, any>;
102
+ }, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
100
103
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,18 +1,18 @@
1
- declare const _default: import("@vue/runtime-core").DefineComponent<{
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2
2
  pluginKey: {
3
3
  type: StringConstructor;
4
4
  default: string;
5
5
  };
6
- }, {
6
+ }>, {
7
7
  onFocus: (e: any) => void;
8
- }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
8
+ }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
9
9
  pluginKey: {
10
10
  type: StringConstructor;
11
11
  default: string;
12
12
  };
13
- }>> & {
13
+ }>> & Readonly<{
14
14
  onFocus?: ((...args: any[]) => any) | undefined;
15
- }, {
15
+ }>, {
16
16
  pluginKey: string;
17
- }, {}>;
17
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
18
18
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { QTWaterfallSectionType } from "../core/QTWaterfallSectionType";
2
- declare const _default: import("@vue/runtime-core").DefineComponent<{
2
+ declare const _default: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
3
3
  plateTitleLeftMargin: {
4
4
  type: NumberConstructor;
5
5
  default: number;
@@ -8,7 +8,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
8
8
  type: NumberConstructor;
9
9
  default: QTWaterfallSectionType;
10
10
  };
11
- }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
11
+ }>, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
12
12
  plateTitleLeftMargin: {
13
13
  type: NumberConstructor;
14
14
  default: number;
@@ -17,8 +17,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
17
17
  type: NumberConstructor;
18
18
  default: QTWaterfallSectionType;
19
19
  };
20
- }>>, {
20
+ }>> & Readonly<{}>, {
21
21
  plateTitleLeftMargin: number;
22
22
  type: number;
23
- }, {}>;
23
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
24
24
  export default _default;
@@ -1,16 +1,16 @@
1
- declare const _default: import("@vue/runtime-core").DefineComponent<{
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2
2
  blockFocusDirections: {
3
3
  type: ArrayConstructor;
4
4
  default: () => string[];
5
5
  };
6
- }, {
6
+ }>, {
7
7
  onSectionBind: () => void;
8
- }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
8
+ }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
9
9
  blockFocusDirections: {
10
10
  type: ArrayConstructor;
11
11
  default: () => string[];
12
12
  };
13
- }>>, {
13
+ }>> & Readonly<{}>, {
14
14
  blockFocusDirections: unknown[];
15
- }, {}>;
15
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
16
16
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.2.0-beta.3",
3
+ "version": "1.2.0-beta.5",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",