@quicktvui/quicktvui3 3.0.5 → 3.0.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.
@@ -148,5 +148,6 @@ export { QTLongImagePositionType } from './long-image/QTLongImagePositionType';
148
148
  export { QTLongImageOrientation } from './long-image/QTLongImageOrientation';
149
149
  export { CanvasGradient } from './canvas/CanvasGradient';
150
150
  export type { GradientInput, RadialGradient, LinearGradient, GradientStop, Position2DWithRadius, Position2D, GradientType, } from './canvas/CanvasGradient';
151
- export type { Size } from './pro/types/ProTypes';
152
- export type { SeriesStyleType, SeriesItem } from './pro/types/Series';
151
+ export type { Size, VueSectionProp } from './pro/types/ProTypes';
152
+ export type { SeriesItemLoad } from './pro/types/Series';
153
+ export { SeriesStyleType } from './pro/types/Series';
@@ -40,6 +40,24 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
40
40
  required: false;
41
41
  default: number;
42
42
  };
43
+ seriesListName: {
44
+ type: StringConstructor;
45
+ required: false;
46
+ default: string;
47
+ };
48
+ groupListName: {
49
+ type: StringConstructor;
50
+ required: false;
51
+ default: string;
52
+ };
53
+ seriesListUpName: {
54
+ type: StringConstructor;
55
+ required: false;
56
+ };
57
+ groupListDownName: {
58
+ type: StringConstructor;
59
+ required: false;
60
+ };
43
61
  onLoadPageData: {
44
62
  type: FunctionConstructor;
45
63
  required: false;
@@ -87,6 +105,24 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
87
105
  required: false;
88
106
  default: number;
89
107
  };
108
+ seriesListName: {
109
+ type: StringConstructor;
110
+ required: false;
111
+ default: string;
112
+ };
113
+ groupListName: {
114
+ type: StringConstructor;
115
+ required: false;
116
+ default: string;
117
+ };
118
+ seriesListUpName: {
119
+ type: StringConstructor;
120
+ required: false;
121
+ };
122
+ groupListDownName: {
123
+ type: StringConstructor;
124
+ required: false;
125
+ };
90
126
  onLoadPageData: {
91
127
  type: FunctionConstructor;
92
128
  required: false;
@@ -105,5 +141,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
105
141
  pageSize: number;
106
142
  itemWidth: number;
107
143
  itemHeight: number;
144
+ seriesListName: string;
145
+ groupListName: string;
108
146
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
109
147
  export default _default;
@@ -0,0 +1,41 @@
1
+ import { Size, VueSectionProp } from './types/ProTypes';
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ size: {
4
+ type: () => Size;
5
+ default: () => {
6
+ width: number;
7
+ height: number;
8
+ };
9
+ };
10
+ backgroundColor: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ vueSections: {
15
+ type: () => VueSectionProp[];
16
+ default: () => never[];
17
+ };
18
+ }>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
19
+ [key: string]: any;
20
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
+ size: {
22
+ type: () => Size;
23
+ default: () => {
24
+ width: number;
25
+ height: number;
26
+ };
27
+ };
28
+ backgroundColor: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ vueSections: {
33
+ type: () => VueSectionProp[];
34
+ default: () => never[];
35
+ };
36
+ }>> & Readonly<{}>, {
37
+ size: Size;
38
+ backgroundColor: string;
39
+ vueSections: VueSectionProp[];
40
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
41
+ export default _default;
@@ -2,3 +2,7 @@ export interface Size {
2
2
  width: number;
3
3
  height: number;
4
4
  }
5
+ export interface VueSectionProp {
6
+ slotName: string;
7
+ height: number;
8
+ }
@@ -7,7 +7,7 @@ export declare enum SeriesStyleType {
7
7
  }
8
8
  export interface SeriesItem {
9
9
  type: number;
10
- text?: string;
10
+ episode: number;
11
11
  title?: string;
12
12
  subtitle?: string;
13
13
  imageUrl?: string;
@@ -20,3 +20,10 @@ export interface SeriesItem {
20
20
  };
21
21
  [key: string]: any;
22
22
  }
23
+ export interface SeriesItemLoad {
24
+ title?: string;
25
+ subtitle?: string;
26
+ imageUrl?: string;
27
+ corner?: string;
28
+ [key: string]: any;
29
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "3.0.5",
3
+ "version": "3.0.7",
4
4
  "description": "Quick TV framework",
5
5
  "author": "Quick TV Team",
6
6
  "homepage": "https://quicktvui.com",