@quicktvui/quicktvui3 1.1.32-beta.5 → 1.1.32-beta.7

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.
@@ -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';
@@ -0,0 +1,4 @@
1
+ import { QTIView } from "../view/QTIView";
2
+ export interface QTIPluginView extends QTIView {
3
+ dispatchFunction(funName: string, params: Array<any>): Promise<any>;
4
+ }
@@ -0,0 +1,3 @@
1
+ import { ESApp } from "@extscreen/es3-vue";
2
+ declare function registerQTPluginView(app: ESApp): void;
3
+ export default registerQTPluginView;
@@ -35,6 +35,10 @@ declare const _default: import("vue").DefineComponent<{
35
35
  type: StringConstructor;
36
36
  required: false;
37
37
  };
38
+ floatTitleBgColor: {
39
+ type: ArrayConstructor;
40
+ default: () => string[];
41
+ };
38
42
  }, {
39
43
  dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
40
44
  requestFocus: () => void;
@@ -80,6 +84,10 @@ declare const _default: import("vue").DefineComponent<{
80
84
  type: StringConstructor;
81
85
  required: false;
82
86
  };
87
+ floatTitleBgColor: {
88
+ type: ArrayConstructor;
89
+ default: () => string[];
90
+ };
83
91
  }>>, {
84
92
  requestFirstFocus: boolean;
85
93
  loadDelay: number;
@@ -87,5 +95,6 @@ declare const _default: import("vue").DefineComponent<{
87
95
  templateKeyMap: Record<string, any>;
88
96
  borderRadius: number;
89
97
  rippleColor: string;
98
+ floatTitleBgColor: unknown[];
90
99
  }, {}>;
91
100
  export default _default;
@@ -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
  }
@@ -0,0 +1,5 @@
1
+ import { QTWaterfallItem } from "./QTWaterfallItem";
2
+ export interface QTWaterfallPluginItem extends QTWaterfallItem {
3
+ pluginKey: string;
4
+ [prop: string]: any;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { QTWaterfallSection } from "./QTWaterfallSection";
2
+ export interface QTWaterfallPluginSection extends QTWaterfallSection {
3
+ pluginKey: string;
4
+ [prop: string]: any;
5
+ }
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.1.32-beta.5",
3
+ "version": "1.1.32-beta.7",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",