@quicktvui/quicktvui3 1.1.33-beta.13 → 1.1.33-beta.15

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 (47) hide show
  1. package/dist/index.css +2 -2
  2. package/dist/index.js +1 -20
  3. package/dist/src/button/index.vue.d.ts +1 -1
  4. package/dist/src/classified-list-view/core/QTClassifiedListView.d.ts +10 -0
  5. package/dist/src/classified-list-view/index.vue.d.ts +1 -1
  6. package/dist/src/collapse/index.vue.d.ts +1 -1
  7. package/dist/src/core/QTFlexStyleSize.d.ts +0 -1
  8. package/dist/src/grid-view/core/QTGridView.d.ts +22 -0
  9. package/dist/src/grid-view/core/QTIGridView.d.ts +1 -1
  10. package/dist/src/grid-view/index.vue.d.ts +8 -10
  11. package/dist/src/image/index.vue.d.ts +1 -1
  12. package/dist/src/index.d.ts +0 -1
  13. package/dist/src/list-view/core/QTIListView.d.ts +1 -1
  14. package/dist/src/nav-bar/index.vue.d.ts +1 -1
  15. package/dist/src/poster/index.vue.d.ts +1 -1
  16. package/dist/src/section/index.vue.d.ts +1 -1
  17. package/dist/src/series/component/media-series.vue.d.ts +1 -1
  18. package/dist/src/series/index.vue.d.ts +1 -1
  19. package/dist/src/series/item/media-series-number-item.vue.d.ts +1 -1
  20. package/dist/src/series/item/media-series-text-item.vue.d.ts +1 -1
  21. package/dist/src/tab/QTITab.d.ts +0 -1
  22. package/dist/src/tab/QTTabDataManager.d.ts +0 -1
  23. package/dist/src/tab/index.vue.d.ts +2 -3
  24. package/dist/src/text/index.vue.d.ts +1 -1
  25. package/dist/src/view/index.vue.d.ts +1 -1
  26. package/dist/src/waterfall/core/QTIWaterfall.d.ts +1 -0
  27. package/dist/src/waterfall/core/QTWaterfallDataAdapter.d.ts +2 -2
  28. package/dist/src/waterfall/index.vue.d.ts +1 -26
  29. package/dist/src/waterfall/item/card-item.vue.d.ts +1 -1
  30. package/dist/src/waterfall/item/plugin-item.vue.d.ts +1 -1
  31. package/dist/src/waterfall/section/blank-section.vue.d.ts +1 -1
  32. package/dist/src/waterfall/section/card-section.vue.d.ts +1 -1
  33. package/dist/src/waterfall/section/end-section.vue.d.ts +1 -1
  34. package/dist/src/waterfall/section/flex-section.vue.d.ts +1 -1
  35. package/dist/src/waterfall/section/loading-section.vue.d.ts +1 -1
  36. package/dist/src/waterfall/section/plugin-section.vue.d.ts +1 -1
  37. package/dist/src/waterfall/section/section-title.vue.d.ts +1 -1
  38. package/dist/src/waterfall/section/vue-section.vue.d.ts +1 -1
  39. package/package.json +5 -2
  40. package/dist/src/qtListen/effect.d.ts +0 -17
  41. package/dist/src/qtListen/index.d.ts +0 -5
  42. package/dist/src/qtListen/qtArray.d.ts +0 -9
  43. package/dist/src/qtListen/qtDiff.d.ts +0 -2
  44. package/dist/src/qtListen/reactive.d.ts +0 -14
  45. package/dist/src/qtListen/ref.d.ts +0 -5
  46. package/dist/src/qtListen/types.d.ts +0 -45
  47. package/dist/src/qtListen/watch.d.ts +0 -16
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
66
66
  focused: import("vue").Ref<boolean>;
67
67
  onFocus: (e: any) => void;
68
68
  onClick: (e: any) => void;
69
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "click")[], "focus" | "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
69
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "click")[], "focus" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
70
70
  size: {
71
71
  type: StringConstructor;
72
72
  default: string;
@@ -0,0 +1,10 @@
1
+ import { QTClassifiedListViewItem } from "./QTClassifiedListViewItem";
2
+ export interface QTClassifiedListView {
3
+ init(itemList: Array<QTClassifiedListViewItem>): void;
4
+ scrollToIndex(index: number, anim: Boolean, offset: number): void;
5
+ setItemFocused(index: number): void;
6
+ scrollToFocused(index: number): void;
7
+ setItemSelected(index: number, b: boolean): void;
8
+ scrollToSelected(index: number, b: boolean): void;
9
+ updateItem(position: number, data: QTClassifiedListViewItem): void;
10
+ }
@@ -47,7 +47,7 @@ declare const _default: import("vue").DefineComponent<{
47
47
  onFItemFocused: (e: any) => void;
48
48
  updateItem: (position: number, data: QTClassifiedListViewItem) => void;
49
49
  viewRef: import("vue").Ref<any>;
50
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "item-focused")[], "item-click" | "item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
50
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "item-focused")[], "item-click" | "item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
51
51
  className: {
52
52
  type: StringConstructor;
53
53
  default: string;
@@ -22,7 +22,7 @@ declare const _default: import("vue").DefineComponent<{}, {
22
22
  collapseWidth: import("vue").Ref<number>;
23
23
  collapseHeight: import("vue").Ref<number>;
24
24
  viewRef: import("vue").Ref<any>;
25
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
25
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
26
26
  onOnCollapseItemExpand?: ((...args: any[]) => any) | undefined;
27
27
  }, {}, {}>;
28
28
  export default _default;
@@ -1,5 +1,4 @@
1
1
  export interface QTFlexStyleSize {
2
2
  width?: number;
3
3
  height?: number;
4
- minHeight?: number;
5
4
  }
@@ -0,0 +1,22 @@
1
+ import { QTGridViewItem } from "./QTGridViewItem";
2
+ import { ESIView } from "@extscreen/es3-component";
3
+ export interface QTGridView extends ESIView {
4
+ init(target: Array<QTGridViewItem>, isInit?: boolean): Array<QTGridViewItem>;
5
+ scrollToTop(): void;
6
+ clearFocus(): void;
7
+ stopPage(): void;
8
+ restartPage(): void;
9
+ blockRootFocus(): void;
10
+ unBlockRootFocus(): void;
11
+ setDisplay(value: Boolean): void;
12
+ scrollToPosition(index: number): void;
13
+ scrollToIndex(y: number, anim: Boolean, offset: number): void;
14
+ setItemFocused(pos: number): void;
15
+ scrollToFocused(pos: number): void;
16
+ setItemSelected(pos: number, b: boolean): void;
17
+ scrollToSelected(pos: number, b: boolean): void;
18
+ setInitPosition(position: number): void;
19
+ setListData(itemList: Array<QTGridViewItem>): void;
20
+ clearPostTask(): void;
21
+ destroy(): void;
22
+ }
@@ -4,7 +4,7 @@ export interface QTIGridView extends QTIView {
4
4
  init(target: Array<QTGridViewItem>, isInit?: boolean): Array<QTGridViewItem>;
5
5
  scrollToTop(): void;
6
6
  clearFocus(): void;
7
- stopPage(isTip?: boolean): void;
7
+ stopPage(): void;
8
8
  restartPage(): void;
9
9
  blockRootFocus(): void;
10
10
  unBlockRootFocus(): void;
@@ -14,7 +14,6 @@ declare const _default: import("vue").DefineComponent<{
14
14
  };
15
15
  pageSize: {
16
16
  type: NumberConstructor;
17
- default: number;
18
17
  };
19
18
  preloadNo: {
20
19
  type: NumberConstructor;
@@ -41,10 +40,11 @@ declare const _default: import("vue").DefineComponent<{
41
40
  };
42
41
  listData: {
43
42
  type: ArrayConstructor;
44
- required: false;
43
+ default: () => never[];
45
44
  };
46
45
  }, {
47
46
  tv_list: import("vue").Ref<any>;
47
+ apkVersion: import("vue").Ref<number>;
48
48
  init: (target: Array<QTGridViewItem>, isInit?: boolean) => Array<QTGridViewItem>;
49
49
  onItemClick: (e: any) => void;
50
50
  onItemBind: (e: any) => void;
@@ -54,7 +54,7 @@ declare const _default: import("vue").DefineComponent<{
54
54
  onItemUnbind: (e: any) => void;
55
55
  onScroll: (e: any) => void;
56
56
  onScrollStateChanged: (e: any) => void;
57
- stopPage: (isTip?: boolean) => void;
57
+ stopPage: () => void;
58
58
  scrollToTop: () => void;
59
59
  clearFocus: () => void;
60
60
  blockRootFocus: () => void;
@@ -66,17 +66,16 @@ declare const _default: import("vue").DefineComponent<{
66
66
  scrollToFocused: (pos: number) => void;
67
67
  setItemSelected: (pos: number, b: boolean) => void;
68
68
  scrollToSelected: (pos: number, b: boolean) => void;
69
+ updateItemProps: (pos: number, name: string, dataObj: object) => void;
69
70
  setInitPosition: (pos: number) => void;
70
71
  setListData: (dataArr: Array<QTGridViewItem>) => void;
72
+ insertItem: (pos: number, data: Array<QTGridViewItem>) => void;
71
73
  clearPostTask: () => void;
72
74
  destroy: () => void;
73
75
  requestFocus: () => void;
74
76
  requestFocusDirectly: () => void;
75
77
  setVisibility: (v: import("..").QTIViewVisibility) => void;
76
- apkVersion: import("vue").Ref<number>;
77
- updateItemProps: (pos: number, name: string, dataObj: object) => void;
78
- insertItem: (pos: number, data: Array<QTGridViewItem>) => void;
79
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused")[], "item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
78
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused")[], "item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
80
79
  loadMore: {
81
80
  type: FunctionConstructor;
82
81
  default: () => number[];
@@ -91,7 +90,6 @@ declare const _default: import("vue").DefineComponent<{
91
90
  };
92
91
  pageSize: {
93
92
  type: NumberConstructor;
94
- default: number;
95
93
  };
96
94
  preloadNo: {
97
95
  type: NumberConstructor;
@@ -118,7 +116,7 @@ declare const _default: import("vue").DefineComponent<{
118
116
  };
119
117
  listData: {
120
118
  type: ArrayConstructor;
121
- required: false;
119
+ default: () => never[];
122
120
  };
123
121
  }>> & {
124
122
  "onItem-click"?: ((...args: any[]) => any) | undefined;
@@ -131,11 +129,11 @@ declare const _default: import("vue").DefineComponent<{
131
129
  loadMore: Function;
132
130
  openPage: boolean;
133
131
  spanCount: number;
134
- pageSize: number;
135
132
  preloadNo: number;
136
133
  defaultFocus: number;
137
134
  areaWidth: number;
138
135
  blockFocusDirections: unknown[];
139
136
  loadingDecoration: Record<string, any>;
137
+ listData: unknown[];
140
138
  }, {}>;
141
139
  export default _default;
@@ -5,5 +5,5 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  requestFocusDirectly: () => void;
6
6
  setVisibility: (v: import("..").QTIViewVisibility) => void;
7
7
  viewRef: import("vue").Ref<any>;
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
@@ -1,5 +1,4 @@
1
1
  import { arrangeChildren4ListView } from "./utils/utils";
2
- export { qtRef, qtWatchAll, qtGetParent } from "./qtListen/index";
3
2
  export declare const QuickTVUI: (Vue: any) => void;
4
3
  export type { QTIGridView } from './grid-view/core/QTIGridView';
5
4
  export type { QTIListView } from './list-view/core/QTIListView';
@@ -4,7 +4,7 @@ export interface QTIListView extends QTIView {
4
4
  init(target: Array<QTListViewItem>, isInit?: boolean): Array<QTListViewItem>;
5
5
  scrollToTop(): void;
6
6
  clearFocus(): void;
7
- stopPage(isTip?: boolean): void;
7
+ stopPage(): void;
8
8
  blockRootFocus(): void;
9
9
  unBlockRootFocus(): void;
10
10
  setDisplay(value: Boolean): void;
@@ -60,7 +60,7 @@ declare const _default: import("vue").DefineComponent<{
60
60
  scrollToPosition: (index: any) => void;
61
61
  scrollToTop: () => void;
62
62
  init: (navBar: QTNavBar) => void;
63
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
63
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
64
64
  textKey: {
65
65
  type: StringConstructor;
66
66
  default: string;
@@ -47,7 +47,7 @@ declare const _default: import("vue").DefineComponent<{
47
47
  setVisibility: (v: import("..").QTIViewVisibility) => void;
48
48
  mainTextShowOnState: string[];
49
49
  viewRef: import("vue").Ref<any>;
50
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
50
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
51
51
  requestFirstFocus: {
52
52
  type: BooleanConstructor;
53
53
  default: boolean;
@@ -6,5 +6,5 @@ declare const _default: import("vue").DefineComponent<{}, {
6
6
  setVisibility: (v: import("..").QTIViewVisibility) => void;
7
7
  onSectionBind: () => void;
8
8
  viewRef: import("vue").Ref<any>;
9
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
10
10
  export default _default;
@@ -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
+ }, 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").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
44
44
  customItem: {
45
45
  type: BooleanConstructor;
46
46
  default: boolean;
@@ -93,7 +93,7 @@ declare const _default: import("vue").DefineComponent<{
93
93
  clearFocus: () => void;
94
94
  requestFocusDirectly: () => 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
+ }, 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").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
97
97
  itemHeight: {
98
98
  type: NumberConstructor;
99
99
  default: number;
@@ -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
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
55
55
  isVip: {
56
56
  type: BooleanConstructor;
57
57
  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
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
63
63
  isVip: {
64
64
  type: BooleanConstructor;
65
65
  default: boolean;
@@ -14,7 +14,6 @@ export interface QTITab extends QTIView {
14
14
  getCurrentPageIndex(): number;
15
15
  setPageData(pageIndex: number, tabPage: QTTabPageData): void;
16
16
  addPageData(pageIndex: number, tabPageData: QTTabPageData, deleteCount: number): void;
17
- insertPageData(tabPageIndex: number, sectionIndex: number, data: any[]): void;
18
17
  updatePageData(pageIndex: number, tabPageData: QTTabPageData): void;
19
18
  updatePageSection(pageIndex: number, sectionIndex: number, section: QTWaterfallSection): void;
20
19
  deletePageSection(pageIndex: number, sectionIndex: number, count: number): void;
@@ -10,7 +10,6 @@ export interface QTTabDataManager {
10
10
  setPageDataState(pageIndex: number, page: QTTabPageDataState): void;
11
11
  getTabPageDataState(pageIndex: number): QTTabPageDataState | undefined;
12
12
  getSectionList(pageIndex: number): Array<QTWaterfallSection>;
13
- insertSectionList(pageIndex: number, sectionIndex: number, sections: Array<QTWaterfallSection>): QTTabIndex;
14
13
  addSectionList(pageIndex: number, sections: Array<QTWaterfallSection>, deleteCount: number): QTTabIndex;
15
14
  deleteSection(pageIndex: number, sectionIndex: number, count: number): QTTabIndex;
16
15
  updateSectionList(pageIndex: number, sectionList: Array<QTWaterfallSection>): QTTabIndex;
@@ -221,7 +221,7 @@ declare const _default: import("vue").DefineComponent<{
221
221
  onTabPageLoadData: (e: QTTabEvent) => void;
222
222
  onTabPageChanged: (e: QTTabEvent) => void;
223
223
  onTabEvent: (e: QTTabEvent) => void;
224
- onWaterfallItemClick: (sectionIndex: number, itemIndex: number, item: QTWaterfallItem, e: any) => void;
224
+ onWaterfallItemClick: (sectionIndex: number, itemIndex: number, item: QTWaterfallItem) => void;
225
225
  onWaterfallItemFocused: (sectionIndex: number, itemIndex: number, isFocused: boolean, item: QTWaterfallItem) => void;
226
226
  onWaterfallSectionBind: (pageIndex: number, sectionIndex: number) => void;
227
227
  onWaterfallSectionAttached: (pageIndex: number, sectionIndex: number) => void;
@@ -234,11 +234,10 @@ declare const _default: import("vue").DefineComponent<{
234
234
  onTabClick: (e: QTTabItem) => void;
235
235
  getCurrentPageIndex: () => number;
236
236
  getCurrentTabIndex: () => Promise<number>;
237
- insertPageData(tabPageIndex: number, sectionIndex: number, data: any[]): void;
238
237
  onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
239
238
  onPluginLoadError: (event: QTPluginViewEvent) => void;
240
239
  getDataManager(): import("./QTTabDataManager").QTTabDataManager;
241
- }, 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<{
240
+ }, 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").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
242
241
  enablePlaceholder: {
243
242
  type: BooleanConstructor;
244
243
  default: boolean;
@@ -5,5 +5,5 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  requestFocusDirectly: () => void;
6
6
  setVisibility: (v: import("..").QTIViewVisibility) => void;
7
7
  viewRef: import("vue").Ref<any>;
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
9
  export default _default;
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  requestFocusDirectly: () => void;
6
6
  setVisibility: (v: import("./QTIViewVisibility").QTIViewVisibility) => void;
7
7
  viewRef: import("vue").Ref<any>;
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
9
9
  onClearFocus?: ((...args: any[]) => any) | undefined;
10
10
  }, {}, {}>;
11
11
  export default _default;
@@ -21,5 +21,6 @@ export interface QTIWaterfall extends QTIView {
21
21
  resumePostTask(): void;
22
22
  destroy(): void;
23
23
  scrollToTop(): void;
24
+ scrollToFocus(): void;
24
25
  setListData(): void;
25
26
  }
@@ -1,5 +1,5 @@
1
1
  import { QTWaterfallItem } from "./QTWaterfallItem";
2
2
  import { QTWaterfall } from "./QTWaterfall";
3
3
  import { QTWaterfallSection } from "./QTWaterfallSection";
4
- export declare function generateSectionList(waterfall: QTWaterfall, sectionList: Array<QTWaterfallSection>, isResetSection?: boolean): Array<QTWaterfallItem>;
5
- export declare function generateSection(waterfall: QTWaterfall, section: QTWaterfallSection, isResetSection?: boolean): QTWaterfallSection;
4
+ export declare function generateSectionList(waterfall: QTWaterfall, sectionList: Array<QTWaterfallSection>): Array<QTWaterfallItem>;
5
+ export declare function generateSection(waterfall: QTWaterfall, section: QTWaterfallSection): QTWaterfallSection;
@@ -34,14 +34,6 @@ declare const _default: import("vue").DefineComponent<{
34
34
  type: NumberConstructor;
35
35
  default: number;
36
36
  };
37
- listData: {
38
- type: ArrayConstructor;
39
- required: false;
40
- };
41
- pStype: {
42
- type: ObjectConstructor;
43
- default: () => {};
44
- };
45
37
  qtTabSectionEnable: {
46
38
  type: ObjectConstructor;
47
39
  default: () => {
@@ -63,10 +55,6 @@ declare const _default: import("vue").DefineComponent<{
63
55
  vueSectionEnable: boolean;
64
56
  };
65
57
  };
66
- tvItemListName: {
67
- type: StringConstructor;
68
- required: false;
69
- };
70
58
  }, {
71
59
  dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
72
60
  requestFocus: () => void;
@@ -118,7 +106,7 @@ declare const _default: import("vue").DefineComponent<{
118
106
  onScrollYLesserReference: () => void;
119
107
  onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
120
108
  onPluginLoadError: (event: QTPluginViewEvent) => void;
121
- }, 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<{
109
+ }, 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").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
122
110
  enablePlaceholder: {
123
111
  type: BooleanConstructor;
124
112
  default: boolean;
@@ -147,14 +135,6 @@ declare const _default: import("vue").DefineComponent<{
147
135
  type: NumberConstructor;
148
136
  default: number;
149
137
  };
150
- listData: {
151
- type: ArrayConstructor;
152
- required: false;
153
- };
154
- pStype: {
155
- type: ObjectConstructor;
156
- default: () => {};
157
- };
158
138
  qtTabSectionEnable: {
159
139
  type: ObjectConstructor;
160
140
  default: () => {
@@ -176,10 +156,6 @@ declare const _default: import("vue").DefineComponent<{
176
156
  vueSectionEnable: boolean;
177
157
  };
178
158
  };
179
- tvItemListName: {
180
- type: StringConstructor;
181
- required: false;
182
- };
183
159
  }>> & {
184
160
  onOnScroll?: ((...args: any[]) => any) | undefined;
185
161
  onOnScrollStateChanged?: ((...args: any[]) => any) | undefined;
@@ -200,7 +176,6 @@ declare const _default: import("vue").DefineComponent<{
200
176
  customItemPool: Record<string, any>;
201
177
  scrollYLesserReferenceValue: number;
202
178
  scrollYGreaterReferenceValue: number;
203
- pStype: Record<string, any>;
204
179
  qtTabSectionEnable: Record<string, any>;
205
180
  }, {}>;
206
181
  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").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
4
4
  export default _default;
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{}, {
6
6
  requestFocusDirectly: () => void;
7
7
  setVisibility: (v: import("../..").QTIViewVisibility) => void;
8
8
  viewRef: import("vue").Ref<any>;
9
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
9
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
10
10
  onFocus?: ((...args: any[]) => any) | undefined;
11
11
  }, {}, {}>;
12
12
  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").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
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").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
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").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -43,7 +43,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
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
+ }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
47
47
  enablePlaceholder: {
48
48
  type: BooleanConstructor;
49
49
  default: boolean;
@@ -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").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -5,7 +5,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
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
+ }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
9
9
  pluginKey: {
10
10
  type: StringConstructor;
11
11
  default: string;
@@ -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
+ }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
12
12
  plateTitleLeftMargin: {
13
13
  type: NumberConstructor;
14
14
  default: number;
@@ -5,7 +5,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
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
+ }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
9
9
  blockFocusDirections: {
10
10
  type: ArrayConstructor;
11
11
  default: () => string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.1.33-beta.13",
3
+ "version": "1.1.33-beta.15",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",
@@ -17,5 +17,8 @@
17
17
  ],
18
18
  "files": [
19
19
  "dist"
20
- ]
20
+ ],
21
+ "dependencies": {
22
+ "@quicktvui/quicktvui3": "file:quicktvui-quicktvui3-1.1.33-beta.14.tgz"
23
+ }
21
24
  }
@@ -1,17 +0,0 @@
1
- export type TrunFn = (target?: any, prop?: any, newValue?: any, type?: any, oldValue?: any, oldTarget?: any) => void;
2
- export declare class QtReactiveEffect {
3
- fn: TrunFn;
4
- scheduler?: TrunFn | undefined;
5
- active: boolean;
6
- deeps: Set<any>[];
7
- constructor(fn: TrunFn, scheduler?: TrunFn | undefined);
8
- run(): void;
9
- stop(): void;
10
- }
11
- export declare function qtIsTracking(): boolean;
12
- export declare function qtClearupTrack(target: any): void;
13
- export declare function qtTrack(target: any, key: any): void;
14
- export declare function qtTrackEffects(dep: Set<object>): void;
15
- export declare function qtTrigger(target: any, prop: any, newValue: any, type?: any, oldValue?: any): void;
16
- export declare function qtTriggerEffects(effects: any, target?: any, prop?: any, newValue?: any, type?: any, oldValue?: any): any;
17
- export declare function qtEffect(fn: TrunFn): any;
@@ -1,5 +0,0 @@
1
- export { qtEffect } from "./effect";
2
- export { qtGetParent } from "./reactive";
3
- export { qtRef } from "./ref";
4
- export { qtWatchAll } from './watch';
5
- export { qtLongestSequenceSplit, qtFilterChangeMap } from './types';
@@ -1,9 +0,0 @@
1
- declare class QtArray extends Array {
2
- shift(): any;
3
- unshift(...items: any[]): number;
4
- push(...items: any[]): number;
5
- splice(start: number, deleteCount: number, ...items: any[]): any[];
6
- pop(): any;
7
- concat(items: any[]): any[];
8
- }
9
- export default QtArray;
@@ -1,2 +0,0 @@
1
- import type { IQtWatchOptions } from './watch';
2
- export declare const qtDiff: (oldt: any[], newt: any[], options: IQtWatchOptions) => void;
@@ -1,14 +0,0 @@
1
- export declare const enum emReactiveFlags {
2
- IS_REACTIVE = "__v_isReactive",
3
- WATCH_ALL = "__ls_watchAll",
4
- WATCH_RAW = "__v_raw",
5
- RESET_REF_VALUE = "__ls_reset_ref_value",
6
- NEW_SET = "__ls_new_set",
7
- qtPath = "__qt_path",
8
- qtRoot = "__qt_root",
9
- qtArrDeth = "__qt_arr_deth"
10
- }
11
- export declare const isTrackProp: (target: object, prop: string | symbol) => boolean;
12
- export declare const qtGetParent: (root: object, paths: any[], layer: number) => Record<any, any> | undefined;
13
- export declare function qtReactive(data: object, parent?: any, path?: any): any;
14
- export declare function qtToReactive(value: any, parent?: any, path?: any): any;
@@ -1,5 +0,0 @@
1
- export interface IQtRef<T = any> {
2
- value: T;
3
- [k: string]: any;
4
- }
5
- export declare function qtRef<T extends Array<any>>(value?: T): IQtRef<T>;