@quicktvui/quicktvui3 1.1.32-beta.1 → 1.1.32-beta.11
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 +57 -21
- package/dist/index.js +5 -5
- package/dist/src/index.d.ts +3 -0
- 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/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/index.vue.d.ts +6 -1
- 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 +6 -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 +2 -5
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, QTPluginViewEvent } from './plugin/QTIPluginView';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { QTIView } from "../view/QTIView";
|
|
2
|
+
export interface QTIPluginView extends QTIView {
|
|
3
|
+
dispatchFunction(funName: string, params: Array<any>): Promise<any>;
|
|
4
|
+
}
|
|
5
|
+
export interface QTPluginViewEvent {
|
|
6
|
+
sid?: string;
|
|
7
|
+
errorCode?: number;
|
|
8
|
+
errorMessage?: string;
|
|
9
|
+
}
|
|
@@ -23,6 +23,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
type: StringConstructor;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
+
focusBgColor: {
|
|
27
|
+
type: ObjectConstructor;
|
|
28
|
+
required: false;
|
|
29
|
+
};
|
|
30
|
+
focusTitleColor: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
required: false;
|
|
33
|
+
};
|
|
34
|
+
focusSubTitleColor: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
required: false;
|
|
37
|
+
};
|
|
38
|
+
floatTitleBgColor: {
|
|
39
|
+
type: ArrayConstructor;
|
|
40
|
+
default: () => string[];
|
|
41
|
+
};
|
|
26
42
|
}, {
|
|
27
43
|
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
28
44
|
requestFocus: () => void;
|
|
@@ -56,6 +72,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
72
|
type: StringConstructor;
|
|
57
73
|
default: string;
|
|
58
74
|
};
|
|
75
|
+
focusBgColor: {
|
|
76
|
+
type: ObjectConstructor;
|
|
77
|
+
required: false;
|
|
78
|
+
};
|
|
79
|
+
focusTitleColor: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
required: false;
|
|
82
|
+
};
|
|
83
|
+
focusSubTitleColor: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
required: false;
|
|
86
|
+
};
|
|
87
|
+
floatTitleBgColor: {
|
|
88
|
+
type: ArrayConstructor;
|
|
89
|
+
default: () => string[];
|
|
90
|
+
};
|
|
59
91
|
}>>, {
|
|
60
92
|
requestFirstFocus: boolean;
|
|
61
93
|
loadDelay: number;
|
|
@@ -63,5 +95,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
63
95
|
templateKeyMap: Record<string, any>;
|
|
64
96
|
borderRadius: number;
|
|
65
97
|
rippleColor: string;
|
|
98
|
+
floatTitleBgColor: unknown[];
|
|
66
99
|
}, {}>;
|
|
67
100
|
export default _default;
|
|
@@ -17,6 +17,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
cornerRadius: number;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
+
gradientFocusBackground: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
default: () => {
|
|
23
|
+
colors: string[];
|
|
24
|
+
orientation: number;
|
|
25
|
+
cornerRadius: number;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
20
28
|
iconGradientBackground: {
|
|
21
29
|
type: ObjectConstructor;
|
|
22
30
|
default: () => {
|
|
@@ -49,6 +57,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
57
|
selectColor: string;
|
|
50
58
|
};
|
|
51
59
|
};
|
|
60
|
+
itemDivWidth: {
|
|
61
|
+
type: NumberConstructor;
|
|
62
|
+
default: number;
|
|
63
|
+
};
|
|
64
|
+
itemDivHeight: {
|
|
65
|
+
type: NumberConstructor;
|
|
66
|
+
default: number;
|
|
67
|
+
};
|
|
52
68
|
}, {
|
|
53
69
|
isVip: import("vue").Ref<boolean>;
|
|
54
70
|
seriesType: import("vue").Ref<QTMediaSeriesType>;
|
|
@@ -90,6 +106,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
90
106
|
cornerRadius: number;
|
|
91
107
|
};
|
|
92
108
|
};
|
|
109
|
+
gradientFocusBackground: {
|
|
110
|
+
type: ObjectConstructor;
|
|
111
|
+
default: () => {
|
|
112
|
+
colors: string[];
|
|
113
|
+
orientation: number;
|
|
114
|
+
cornerRadius: number;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
93
117
|
iconGradientBackground: {
|
|
94
118
|
type: ObjectConstructor;
|
|
95
119
|
default: () => {
|
|
@@ -122,6 +146,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
146
|
selectColor: string;
|
|
123
147
|
};
|
|
124
148
|
};
|
|
149
|
+
itemDivWidth: {
|
|
150
|
+
type: NumberConstructor;
|
|
151
|
+
default: number;
|
|
152
|
+
};
|
|
153
|
+
itemDivHeight: {
|
|
154
|
+
type: NumberConstructor;
|
|
155
|
+
default: number;
|
|
156
|
+
};
|
|
125
157
|
}>> & {
|
|
126
158
|
"onLoad-data"?: ((...args: any[]) => any) | undefined;
|
|
127
159
|
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -130,10 +162,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
130
162
|
}, {
|
|
131
163
|
itemHeight: number;
|
|
132
164
|
gradientBackground: Record<string, any>;
|
|
165
|
+
gradientFocusBackground: Record<string, any>;
|
|
133
166
|
iconGradientBackground: Record<string, any>;
|
|
134
167
|
markColor: string;
|
|
135
168
|
markVipColor: string;
|
|
136
169
|
textColors: Record<string, any>;
|
|
137
170
|
textVipColors: Record<string, any>;
|
|
171
|
+
itemDivWidth: number;
|
|
172
|
+
itemDivHeight: number;
|
|
138
173
|
}, {}>;
|
|
139
174
|
export default _default;
|
|
@@ -11,6 +11,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
cornerRadius: number;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
+
gradientFocusBackground: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => {
|
|
17
|
+
colors: string[];
|
|
18
|
+
orientation: number;
|
|
19
|
+
cornerRadius: number;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
14
22
|
iconGradientBackground: {
|
|
15
23
|
type: ObjectConstructor;
|
|
16
24
|
default: () => {
|
|
@@ -56,6 +64,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
64
|
cornerRadius: number;
|
|
57
65
|
};
|
|
58
66
|
};
|
|
67
|
+
gradientFocusBackground: {
|
|
68
|
+
type: ObjectConstructor;
|
|
69
|
+
default: () => {
|
|
70
|
+
colors: string[];
|
|
71
|
+
orientation: number;
|
|
72
|
+
cornerRadius: number;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
59
75
|
iconGradientBackground: {
|
|
60
76
|
type: ObjectConstructor;
|
|
61
77
|
default: () => {
|
|
@@ -91,6 +107,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
107
|
}>>, {
|
|
92
108
|
isVip: boolean;
|
|
93
109
|
gradientBackground: Record<string, any>;
|
|
110
|
+
gradientFocusBackground: Record<string, any>;
|
|
94
111
|
iconGradientBackground: Record<string, any>;
|
|
95
112
|
markColor: string;
|
|
96
113
|
markVipColor: string;
|
|
@@ -11,6 +11,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
cornerRadius: number;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
+
gradientFocusBackground: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => {
|
|
17
|
+
colors: string[];
|
|
18
|
+
orientation: number;
|
|
19
|
+
cornerRadius: number;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
14
22
|
iconGradientBackground: {
|
|
15
23
|
type: ObjectConstructor;
|
|
16
24
|
default: () => {
|
|
@@ -43,6 +51,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
43
51
|
selectColor: string;
|
|
44
52
|
};
|
|
45
53
|
};
|
|
54
|
+
itemWidth: {
|
|
55
|
+
type: NumberConstructor;
|
|
56
|
+
default: number;
|
|
57
|
+
};
|
|
58
|
+
itemHeight: {
|
|
59
|
+
type: NumberConstructor;
|
|
60
|
+
default: number;
|
|
61
|
+
};
|
|
46
62
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
63
|
isVip: {
|
|
48
64
|
type: BooleanConstructor;
|
|
@@ -56,6 +72,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
72
|
cornerRadius: number;
|
|
57
73
|
};
|
|
58
74
|
};
|
|
75
|
+
gradientFocusBackground: {
|
|
76
|
+
type: ObjectConstructor;
|
|
77
|
+
default: () => {
|
|
78
|
+
colors: string[];
|
|
79
|
+
orientation: number;
|
|
80
|
+
cornerRadius: number;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
59
83
|
iconGradientBackground: {
|
|
60
84
|
type: ObjectConstructor;
|
|
61
85
|
default: () => {
|
|
@@ -88,13 +112,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
112
|
selectColor: string;
|
|
89
113
|
};
|
|
90
114
|
};
|
|
115
|
+
itemWidth: {
|
|
116
|
+
type: NumberConstructor;
|
|
117
|
+
default: number;
|
|
118
|
+
};
|
|
119
|
+
itemHeight: {
|
|
120
|
+
type: NumberConstructor;
|
|
121
|
+
default: number;
|
|
122
|
+
};
|
|
91
123
|
}>>, {
|
|
92
124
|
isVip: boolean;
|
|
93
125
|
gradientBackground: Record<string, any>;
|
|
126
|
+
gradientFocusBackground: Record<string, any>;
|
|
94
127
|
iconGradientBackground: Record<string, any>;
|
|
95
128
|
markColor: string;
|
|
96
129
|
markVipColor: string;
|
|
97
130
|
textColors: Record<string, any>;
|
|
98
131
|
textVipColors: Record<string, any>;
|
|
132
|
+
itemWidth: number;
|
|
133
|
+
itemHeight: number;
|
|
99
134
|
}, {}>;
|
|
100
135
|
export default _default;
|
|
@@ -8,6 +8,7 @@ import { QTWaterfallItem } from "../waterfall/core/QTWaterfallItem";
|
|
|
8
8
|
import { QTTabPageState } from "./QTTabPageState";
|
|
9
9
|
import { QTWaterfallSection } from "../waterfall/core/QTWaterfallSection";
|
|
10
10
|
import { QTTabItem } from "./QTTabItem";
|
|
11
|
+
import { QTPluginViewEvent } from "../plugin/QTIPluginView";
|
|
11
12
|
declare const _default: import("vue").DefineComponent<{
|
|
12
13
|
enablePlaceholder: {
|
|
13
14
|
type: BooleanConstructor;
|
|
@@ -213,7 +214,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
213
214
|
getCurrentPageIndex: () => number;
|
|
214
215
|
getCurrentTabIndex: () => Promise<number>;
|
|
215
216
|
insertPageData(tabPageIndex: number, sectionIndex: number, data: any[]): void;
|
|
216
|
-
|
|
217
|
+
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
218
|
+
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
219
|
+
}, 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<{
|
|
217
220
|
enablePlaceholder: {
|
|
218
221
|
type: BooleanConstructor;
|
|
219
222
|
default: boolean;
|
|
@@ -372,6 +375,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
372
375
|
onOnTabPageScrollToEnd?: ((...args: any[]) => any) | undefined;
|
|
373
376
|
onOnTabPageScrollToStart?: ((...args: any[]) => any) | undefined;
|
|
374
377
|
onOnTabClick?: ((...args: any[]) => any) | undefined;
|
|
378
|
+
onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
|
|
379
|
+
onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
|
|
375
380
|
}, {
|
|
376
381
|
enablePlaceholder: boolean;
|
|
377
382
|
preloadNumber: number;
|
|
@@ -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
|
}
|
|
@@ -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;
|
|
@@ -90,7 +91,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
90
91
|
setListData: (data: any) => void;
|
|
91
92
|
onScrollYGreaterReference: () => void;
|
|
92
93
|
onScrollYLesserReference: () => void;
|
|
93
|
-
|
|
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<{
|
|
94
97
|
enablePlaceholder: {
|
|
95
98
|
type: BooleanConstructor;
|
|
96
99
|
default: boolean;
|
|
@@ -137,6 +140,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
137
140
|
onOnSectionDetached?: ((...args: any[]) => any) | undefined;
|
|
138
141
|
onOnScrollYGreaterReference?: ((...args: any[]) => any) | undefined;
|
|
139
142
|
onOnScrollYLesserReference?: ((...args: any[]) => any) | undefined;
|
|
143
|
+
onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
|
|
144
|
+
onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
|
|
140
145
|
}, {
|
|
141
146
|
enablePlaceholder: boolean;
|
|
142
147
|
blockFocusDirections: unknown[];
|
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quicktvui/quicktvui3",
|
|
3
|
-
"version": "1.1.32-beta.
|
|
3
|
+
"version": "1.1.32-beta.11",
|
|
4
4
|
"description": "ExtScreen framework",
|
|
5
5
|
"author": "ExtScreen Team",
|
|
6
6
|
"homepage": "http://extscreen.com",
|
|
@@ -17,8 +17,5 @@
|
|
|
17
17
|
],
|
|
18
18
|
"files": [
|
|
19
19
|
"dist"
|
|
20
|
-
]
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"@extscreen/es3-component": "^1.0.20"
|
|
23
|
-
}
|
|
20
|
+
]
|
|
24
21
|
}
|