@quicktvui/quicktvui3 1.1.35-beta.1 → 1.1.36-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +20 -1
- package/dist/src/button/index.vue.d.ts +1 -1
- package/dist/src/classified-list-view/index.vue.d.ts +1 -1
- package/dist/src/collapse/index.vue.d.ts +1 -1
- package/dist/src/core/QTFlexStyleSize.d.ts +1 -0
- package/dist/src/grid-view/core/QTIGridView.d.ts +1 -1
- package/dist/src/grid-view/index.vue.d.ts +10 -8
- package/dist/src/image/index.vue.d.ts +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/list-view/core/QTIListView.d.ts +1 -1
- package/dist/src/nav-bar/index.vue.d.ts +1 -1
- package/dist/src/poster/index.vue.d.ts +1 -1
- package/dist/src/qtListen/effect.d.ts +17 -0
- package/dist/src/qtListen/index.d.ts +5 -0
- package/dist/src/qtListen/qtArray.d.ts +9 -0
- package/dist/src/qtListen/qtDiff.d.ts +2 -0
- package/dist/src/qtListen/reactive.d.ts +14 -0
- package/dist/src/qtListen/ref.d.ts +5 -0
- package/dist/src/qtListen/types.d.ts +45 -0
- package/dist/src/qtListen/watch.d.ts +16 -0
- package/dist/src/section/index.vue.d.ts +1 -1
- package/dist/src/series/component/media-series.vue.d.ts +1 -1
- package/dist/src/series/index.vue.d.ts +1 -1
- package/dist/src/series/item/media-series-number-item.vue.d.ts +1 -1
- package/dist/src/series/item/media-series-text-item.vue.d.ts +1 -1
- package/dist/src/tab/QTITab.d.ts +1 -0
- package/dist/src/tab/QTTabDataManager.d.ts +1 -0
- package/dist/src/tab/index.vue.d.ts +3 -2
- package/dist/src/text/index.vue.d.ts +1 -1
- package/dist/src/view/index.vue.d.ts +1 -1
- package/dist/src/waterfall/core/QTWaterfallDataAdapter.d.ts +2 -2
- package/dist/src/waterfall/index.vue.d.ts +26 -1
- package/dist/src/waterfall/item/card-item.vue.d.ts +1 -1
- package/dist/src/waterfall/item/plugin-item.vue.d.ts +1 -1
- package/dist/src/waterfall/section/blank-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/card-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/end-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/flex-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/loading-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/section-title.vue.d.ts +1 -1
- package/dist/src/waterfall/section/vue-section.vue.d.ts +1 -1
- package/package.json +2 -5
- package/dist/src/classified-list-view/core/QTClassifiedListView.d.ts +0 -10
- package/dist/src/grid-view/core/QTGridView.d.ts +0 -22
|
@@ -1,10 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
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
|
-
}
|