@quicktvui/quicktvui3 1.1.31 → 1.1.32-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +56 -21
- package/dist/index.js +5 -5
- package/dist/src/grid-view/core/QTIGridView.d.ts +1 -1
- package/dist/src/grid-view/index.vue.d.ts +9 -7
- package/dist/src/index.d.ts +5 -0
- package/dist/src/list-view/core/QTIListView.d.ts +1 -1
- package/dist/src/plugin/QTIPluginView.d.ts +9 -0
- package/dist/src/plugin/QTPluginView.d.ts +3 -0
- package/dist/src/poster/index.vue.d.ts +33 -0
- 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/series/QTMediaSeriesGroup.d.ts +2 -0
- package/dist/src/series/QTMediaSeriesGroupStyle.d.ts +57 -0
- package/dist/src/series/index.vue.d.ts +35 -0
- package/dist/src/series/item/media-series-number-item.vue.d.ts +17 -0
- package/dist/src/series/item/media-series-text-item.vue.d.ts +35 -0
- 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 +8 -2
- package/dist/src/waterfall/core/QTWaterfallDataAdapter.d.ts +2 -2
- package/dist/src/waterfall/core/QTWaterfallItemType.d.ts +2 -1
- package/dist/src/waterfall/core/QTWaterfallPluginItem.d.ts +5 -0
- package/dist/src/waterfall/core/QTWaterfallPluginSection.d.ts +5 -0
- package/dist/src/waterfall/core/QTWaterfallSectionType.d.ts +2 -1
- package/dist/src/waterfall/index.vue.d.ts +23 -1
- package/dist/src/waterfall/item/plugin-item.vue.d.ts +17 -0
- package/dist/src/waterfall/section/flex-section.vue.d.ts +9 -2
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +23 -0
- package/package.json +1 -1
|
@@ -9,5 +9,6 @@ export declare enum QTWaterfallSectionType {
|
|
|
9
9
|
QT_WATERFALL_SECTION_TYPE_CARD = 1006,
|
|
10
10
|
QT_WATERFALL_SECTION_TYPE_VUE = 1007,
|
|
11
11
|
QT_WATERFALL_SECTION_TYPE_END = -1001,
|
|
12
|
-
QT_WATERFALL_SECTION_TYPE_BLANK = -1000
|
|
12
|
+
QT_WATERFALL_SECTION_TYPE_BLANK = -1000,
|
|
13
|
+
QT_WATERFALL_SECTION_TYPE_PLUGIN = 1008
|
|
13
14
|
}
|
|
@@ -4,6 +4,7 @@ import { ESIListView } from "@extscreen/es3-component";
|
|
|
4
4
|
import { QTWaterfallItem } from "./core/QTWaterfallItem";
|
|
5
5
|
import { QTWaterfallEvent } from "./core/QTWaterfallEvent";
|
|
6
6
|
import { QTWaterfallVisibleType } from "./core/QTWaterfallVisibleType";
|
|
7
|
+
import { QTPluginViewEvent } from "../plugin/QTIPluginView";
|
|
7
8
|
declare const _default: import("vue").DefineComponent<{
|
|
8
9
|
enablePlaceholder: {
|
|
9
10
|
type: BooleanConstructor;
|
|
@@ -33,6 +34,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
34
|
type: NumberConstructor;
|
|
34
35
|
default: number;
|
|
35
36
|
};
|
|
37
|
+
listData: {
|
|
38
|
+
type: ArrayConstructor;
|
|
39
|
+
required: false;
|
|
40
|
+
};
|
|
41
|
+
pStype: {
|
|
42
|
+
type: ObjectConstructor;
|
|
43
|
+
default: () => {};
|
|
44
|
+
};
|
|
36
45
|
}, {
|
|
37
46
|
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
38
47
|
requestFocus: () => void;
|
|
@@ -82,7 +91,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
91
|
setListData: (data: any) => void;
|
|
83
92
|
onScrollYGreaterReference: () => void;
|
|
84
93
|
onScrollYLesserReference: () => void;
|
|
85
|
-
|
|
94
|
+
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
95
|
+
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
96
|
+
}, 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<{
|
|
86
97
|
enablePlaceholder: {
|
|
87
98
|
type: BooleanConstructor;
|
|
88
99
|
default: boolean;
|
|
@@ -111,6 +122,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
111
122
|
type: NumberConstructor;
|
|
112
123
|
default: number;
|
|
113
124
|
};
|
|
125
|
+
listData: {
|
|
126
|
+
type: ArrayConstructor;
|
|
127
|
+
required: false;
|
|
128
|
+
};
|
|
129
|
+
pStype: {
|
|
130
|
+
type: ObjectConstructor;
|
|
131
|
+
default: () => {};
|
|
132
|
+
};
|
|
114
133
|
}>> & {
|
|
115
134
|
onOnScroll?: ((...args: any[]) => any) | undefined;
|
|
116
135
|
onOnScrollStateChanged?: ((...args: any[]) => any) | undefined;
|
|
@@ -121,6 +140,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
140
|
onOnSectionDetached?: ((...args: any[]) => any) | undefined;
|
|
122
141
|
onOnScrollYGreaterReference?: ((...args: any[]) => any) | undefined;
|
|
123
142
|
onOnScrollYLesserReference?: ((...args: any[]) => any) | undefined;
|
|
143
|
+
onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
|
|
144
|
+
onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
|
|
124
145
|
}, {
|
|
125
146
|
enablePlaceholder: boolean;
|
|
126
147
|
blockFocusDirections: unknown[];
|
|
@@ -129,5 +150,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
129
150
|
customItemPool: Record<string, any>;
|
|
130
151
|
scrollYLesserReferenceValue: number;
|
|
131
152
|
scrollYGreaterReferenceValue: number;
|
|
153
|
+
pStype: Record<string, any>;
|
|
132
154
|
}, {}>;
|
|
133
155
|
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { QTPluginViewEvent } from "../../plugin/QTIPluginView";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
3
|
+
onFocus: (e: any) => void;
|
|
4
|
+
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
5
|
+
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
6
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
7
|
+
requestFocus: () => void;
|
|
8
|
+
clearFocus: () => void;
|
|
9
|
+
requestFocusDirectly: () => void;
|
|
10
|
+
setVisibility: (v: import("../..").QTIViewVisibility) => void;
|
|
11
|
+
viewRef: import("vue").Ref<any>;
|
|
12
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onPluginLoadSuccess" | "onPluginLoadError" | "focus")[], "onPluginLoadSuccess" | "onPluginLoadError" | "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
13
|
+
onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
}, {}, {}>;
|
|
17
|
+
export default _default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { QTWaterfallSectionType } from "../core/QTWaterfallSectionType";
|
|
2
2
|
import { QTWaterfallItemType } from "../core/QTWaterfallItemType";
|
|
3
|
+
import { QTPluginViewEvent } from "../../plugin/QTIPluginView";
|
|
3
4
|
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
4
5
|
enablePlaceholder: {
|
|
5
6
|
type: BooleanConstructor;
|
|
@@ -35,7 +36,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
35
36
|
};
|
|
36
37
|
}, {
|
|
37
38
|
onFocus: (e: any) => void;
|
|
38
|
-
|
|
39
|
+
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
40
|
+
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
41
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("onPluginLoadSuccess" | "onPluginLoadError" | "focus")[], "onPluginLoadSuccess" | "onPluginLoadError" | "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
39
42
|
enablePlaceholder: {
|
|
40
43
|
type: BooleanConstructor;
|
|
41
44
|
default: boolean;
|
|
@@ -68,7 +71,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
68
71
|
type: NumberConstructor;
|
|
69
72
|
default: number;
|
|
70
73
|
};
|
|
71
|
-
}
|
|
74
|
+
}>> & {
|
|
75
|
+
onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
|
|
77
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
78
|
+
}, {
|
|
72
79
|
enablePlaceholder: boolean;
|
|
73
80
|
plateData: string;
|
|
74
81
|
useDiff: boolean;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { QTPluginViewEvent } from "../../plugin/QTIPluginView";
|
|
2
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
3
|
+
pluginKey: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
}, {
|
|
8
|
+
onFocus: (e: any) => void;
|
|
9
|
+
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
10
|
+
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
11
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("onPluginLoadSuccess" | "onPluginLoadError" | "focus")[], "onPluginLoadSuccess" | "onPluginLoadError" | "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
12
|
+
pluginKey: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
}>> & {
|
|
17
|
+
onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
|
|
18
|
+
onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
}, {
|
|
21
|
+
pluginKey: string;
|
|
22
|
+
}, {}>;
|
|
23
|
+
export default _default;
|