@quicktvui/quicktvui3 1.1.32-beta.6 → 1.1.32-beta.8
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 +30 -13
- package/dist/index.js +5 -5
- package/dist/src/index.d.ts +3 -0
- package/dist/src/plugin/QTIPluginView.d.ts +4 -0
- package/dist/src/plugin/QTPluginView.d.ts +3 -0
- package/dist/src/series/index.vue.d.ts +18 -0
- package/dist/src/series/item/media-series-text-item.vue.d.ts +18 -0
- 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/item/plugin-item.vue.d.ts +10 -0
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +16 -0
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -39,6 +39,8 @@ export type { QTWaterfallCardSection } from './waterfall/core/QTWaterfallCardSec
|
|
|
39
39
|
export type { QTWaterfallCardItem } from './waterfall/core/QTWaterfallCardItem';
|
|
40
40
|
export type { QTWaterfallCardPlaceHolder } from './waterfall/core/QTWaterfallCardPlaceHolder';
|
|
41
41
|
export { QTWaterfallVisibleType } from './waterfall/core/QTWaterfallVisibleType';
|
|
42
|
+
export type { QTWaterfallPluginSection } from './waterfall/core/QTWaterfallPluginSection';
|
|
43
|
+
export type { QTWaterfallPluginItem } from './waterfall/core/QTWaterfallPluginItem';
|
|
42
44
|
export type { QTListViewItem } from './list-view/core/QTListViewItem';
|
|
43
45
|
export type { QTListViewItemDecoration } from './list-view/core/QTListViewItemDecoration';
|
|
44
46
|
export type { QTListViewItemFunctionParams } from './list-view/core/QTListViewItemFunctionParams';
|
|
@@ -106,3 +108,4 @@ export type { QTIQRCode } from './qrcode/QTIQRCode';
|
|
|
106
108
|
export type { QTIRow } from './row/QTIRow';
|
|
107
109
|
export type { QTIText } from './text/QTIText';
|
|
108
110
|
export type { QTIAppIcon } from './app/QTIAppIcon';
|
|
111
|
+
export type { QTIPluginView } from './plugin/QTIPluginView';
|
|
@@ -57,6 +57,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
selectColor: string;
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
|
+
itemDivWidth: {
|
|
61
|
+
type: NumberConstructor;
|
|
62
|
+
default: number;
|
|
63
|
+
};
|
|
64
|
+
itemDivHeight: {
|
|
65
|
+
type: NumberConstructor;
|
|
66
|
+
default: number;
|
|
67
|
+
};
|
|
60
68
|
}, {
|
|
61
69
|
isVip: import("vue").Ref<boolean>;
|
|
62
70
|
seriesType: import("vue").Ref<QTMediaSeriesType>;
|
|
@@ -138,6 +146,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
138
146
|
selectColor: string;
|
|
139
147
|
};
|
|
140
148
|
};
|
|
149
|
+
itemDivWidth: {
|
|
150
|
+
type: NumberConstructor;
|
|
151
|
+
default: number;
|
|
152
|
+
};
|
|
153
|
+
itemDivHeight: {
|
|
154
|
+
type: NumberConstructor;
|
|
155
|
+
default: number;
|
|
156
|
+
};
|
|
141
157
|
}>> & {
|
|
142
158
|
"onLoad-data"?: ((...args: any[]) => any) | undefined;
|
|
143
159
|
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -152,5 +168,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
152
168
|
markVipColor: string;
|
|
153
169
|
textColors: Record<string, any>;
|
|
154
170
|
textVipColors: Record<string, any>;
|
|
171
|
+
itemDivWidth: number;
|
|
172
|
+
itemDivHeight: number;
|
|
155
173
|
}, {}>;
|
|
156
174
|
export default _default;
|
|
@@ -51,6 +51,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
selectColor: string;
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
|
+
itemWidth: {
|
|
55
|
+
type: NumberConstructor;
|
|
56
|
+
default: number;
|
|
57
|
+
};
|
|
58
|
+
itemHeight: {
|
|
59
|
+
type: NumberConstructor;
|
|
60
|
+
default: number;
|
|
61
|
+
};
|
|
54
62
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
63
|
isVip: {
|
|
56
64
|
type: BooleanConstructor;
|
|
@@ -104,6 +112,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
104
112
|
selectColor: string;
|
|
105
113
|
};
|
|
106
114
|
};
|
|
115
|
+
itemWidth: {
|
|
116
|
+
type: NumberConstructor;
|
|
117
|
+
default: number;
|
|
118
|
+
};
|
|
119
|
+
itemHeight: {
|
|
120
|
+
type: NumberConstructor;
|
|
121
|
+
default: number;
|
|
122
|
+
};
|
|
107
123
|
}>>, {
|
|
108
124
|
isVip: boolean;
|
|
109
125
|
gradientBackground: Record<string, any>;
|
|
@@ -113,5 +129,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
113
129
|
markVipColor: string;
|
|
114
130
|
textColors: Record<string, any>;
|
|
115
131
|
textVipColors: Record<string, any>;
|
|
132
|
+
itemWidth: number;
|
|
133
|
+
itemHeight: number;
|
|
116
134
|
}, {}>;
|
|
117
135
|
export default _default;
|
|
@@ -2,5 +2,6 @@ export declare enum QTWaterfallItemType {
|
|
|
2
2
|
QT_WATERFALL_ITEM_TYPE_POSTER = 10001,
|
|
3
3
|
QT_WATERFALL_ITEM_TYPE_TAB = 10002,
|
|
4
4
|
QT_WATERFALL_ITEM_TYPE_CARD = 10003,
|
|
5
|
-
QT_WATERFALL_ITEM_TYPE_BLANK = -10000
|
|
5
|
+
QT_WATERFALL_ITEM_TYPE_BLANK = -10000,
|
|
6
|
+
QT_WATERFALL_ITEM_TYPE_PLUGIN = 10004
|
|
6
7
|
}
|
|
@@ -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
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
onFocus: (e: any) => void;
|
|
3
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
4
|
+
requestFocus: () => void;
|
|
5
|
+
clearFocus: () => void;
|
|
6
|
+
requestFocusDirectly: () => void;
|
|
7
|
+
setVisibility: (v: import("../..").QTIViewVisibility) => void;
|
|
8
|
+
viewRef: import("vue").Ref<any>;
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
pluginKey: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, {
|
|
7
|
+
onFocus: (e: any) => 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<{
|
|
9
|
+
pluginKey: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
pluginKey: string;
|
|
15
|
+
}, {}>;
|
|
16
|
+
export default _default;
|