@quicktvui/quicktvui3 1.1.25-beta.18 → 1.1.25-beta.20

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.
@@ -15,6 +15,14 @@ declare const _default: import("vue").DefineComponent<{
15
15
  type: ObjectConstructor;
16
16
  default: () => null;
17
17
  };
18
+ borderRadius: {
19
+ type: NumberConstructor;
20
+ default: number;
21
+ };
22
+ rippleColor: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
18
26
  }, {
19
27
  dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
20
28
  requestFocus: () => void;
@@ -40,10 +48,20 @@ declare const _default: import("vue").DefineComponent<{
40
48
  type: ObjectConstructor;
41
49
  default: () => null;
42
50
  };
51
+ borderRadius: {
52
+ type: NumberConstructor;
53
+ default: number;
54
+ };
55
+ rippleColor: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
43
59
  }>>, {
44
60
  requestFirstFocus: boolean;
45
61
  loadDelay: number;
46
62
  type: number;
47
63
  templateKeyMap: Record<string, any>;
64
+ borderRadius: number;
65
+ rippleColor: string;
48
66
  }, {}>;
49
67
  export default _default;
@@ -9,6 +9,46 @@ declare const _default: import("vue").DefineComponent<{
9
9
  type: NumberConstructor;
10
10
  default: number;
11
11
  };
12
+ gradientBackground: {
13
+ type: ObjectConstructor;
14
+ default: () => {
15
+ colors: string[];
16
+ orientation: number;
17
+ cornerRadius: number;
18
+ };
19
+ };
20
+ iconGradientBackground: {
21
+ type: ObjectConstructor;
22
+ default: () => {
23
+ colors: string[];
24
+ cornerRadius: number;
25
+ orientation: number;
26
+ };
27
+ };
28
+ markColor: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ markVipColor: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ textColors: {
37
+ type: ObjectConstructor;
38
+ default: () => {
39
+ color: string;
40
+ focusColor: string;
41
+ selectColor: string;
42
+ };
43
+ };
44
+ textVipColors: {
45
+ type: ObjectConstructor;
46
+ default: () => {
47
+ color: string;
48
+ focusColor: string;
49
+ selectColor: string;
50
+ };
51
+ };
12
52
  }, {
13
53
  isVip: import("vue").Ref<boolean>;
14
54
  seriesType: import("vue").Ref<QTMediaSeriesType>;
@@ -42,6 +82,46 @@ declare const _default: import("vue").DefineComponent<{
42
82
  type: NumberConstructor;
43
83
  default: number;
44
84
  };
85
+ gradientBackground: {
86
+ type: ObjectConstructor;
87
+ default: () => {
88
+ colors: string[];
89
+ orientation: number;
90
+ cornerRadius: number;
91
+ };
92
+ };
93
+ iconGradientBackground: {
94
+ type: ObjectConstructor;
95
+ default: () => {
96
+ colors: string[];
97
+ cornerRadius: number;
98
+ orientation: number;
99
+ };
100
+ };
101
+ markColor: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ markVipColor: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
109
+ textColors: {
110
+ type: ObjectConstructor;
111
+ default: () => {
112
+ color: string;
113
+ focusColor: string;
114
+ selectColor: string;
115
+ };
116
+ };
117
+ textVipColors: {
118
+ type: ObjectConstructor;
119
+ default: () => {
120
+ color: string;
121
+ focusColor: string;
122
+ selectColor: string;
123
+ };
124
+ };
45
125
  }>> & {
46
126
  "onLoad-data"?: ((...args: any[]) => any) | undefined;
47
127
  "onItem-click"?: ((...args: any[]) => any) | undefined;
@@ -49,5 +129,11 @@ declare const _default: import("vue").DefineComponent<{
49
129
  "onGroup-item-focused"?: ((...args: any[]) => any) | undefined;
50
130
  }, {
51
131
  itemHeight: number;
132
+ gradientBackground: Record<string, any>;
133
+ iconGradientBackground: Record<string, any>;
134
+ markColor: string;
135
+ markVipColor: string;
136
+ textColors: Record<string, any>;
137
+ textVipColors: Record<string, any>;
52
138
  }, {}>;
53
139
  export default _default;
@@ -3,12 +3,98 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
5
5
  };
6
+ gradientBackground: {
7
+ type: ObjectConstructor;
8
+ default: () => {
9
+ colors: string[];
10
+ orientation: number;
11
+ cornerRadius: number;
12
+ };
13
+ };
14
+ iconGradientBackground: {
15
+ type: ObjectConstructor;
16
+ default: () => {
17
+ colors: string[];
18
+ cornerRadius: number;
19
+ orientation: number;
20
+ };
21
+ };
22
+ markColor: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ markVipColor: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ textColors: {
31
+ type: ObjectConstructor;
32
+ default: () => {
33
+ color: string;
34
+ focusColor: string;
35
+ selectColor: string;
36
+ };
37
+ };
38
+ textVipColors: {
39
+ type: ObjectConstructor;
40
+ default: () => {
41
+ color: string;
42
+ focusColor: string;
43
+ selectColor: string;
44
+ };
45
+ };
6
46
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
47
  isVip: {
8
48
  type: BooleanConstructor;
9
49
  default: boolean;
10
50
  };
51
+ gradientBackground: {
52
+ type: ObjectConstructor;
53
+ default: () => {
54
+ colors: string[];
55
+ orientation: number;
56
+ cornerRadius: number;
57
+ };
58
+ };
59
+ iconGradientBackground: {
60
+ type: ObjectConstructor;
61
+ default: () => {
62
+ colors: string[];
63
+ cornerRadius: number;
64
+ orientation: number;
65
+ };
66
+ };
67
+ markColor: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ markVipColor: {
72
+ type: StringConstructor;
73
+ default: string;
74
+ };
75
+ textColors: {
76
+ type: ObjectConstructor;
77
+ default: () => {
78
+ color: string;
79
+ focusColor: string;
80
+ selectColor: string;
81
+ };
82
+ };
83
+ textVipColors: {
84
+ type: ObjectConstructor;
85
+ default: () => {
86
+ color: string;
87
+ focusColor: string;
88
+ selectColor: string;
89
+ };
90
+ };
11
91
  }>>, {
12
92
  isVip: boolean;
93
+ gradientBackground: Record<string, any>;
94
+ iconGradientBackground: Record<string, any>;
95
+ markColor: string;
96
+ markVipColor: string;
97
+ textColors: Record<string, any>;
98
+ textVipColors: Record<string, any>;
13
99
  }, {}>;
14
100
  export default _default;
@@ -3,12 +3,98 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
5
5
  };
6
+ gradientBackground: {
7
+ type: ObjectConstructor;
8
+ default: () => {
9
+ colors: string[];
10
+ orientation: number;
11
+ cornerRadius: number;
12
+ };
13
+ };
14
+ iconGradientBackground: {
15
+ type: ObjectConstructor;
16
+ default: () => {
17
+ colors: string[];
18
+ cornerRadius: number;
19
+ orientation: number;
20
+ };
21
+ };
22
+ markColor: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ markVipColor: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ textColors: {
31
+ type: ObjectConstructor;
32
+ default: () => {
33
+ color: string;
34
+ focusColor: string;
35
+ selectColor: string;
36
+ };
37
+ };
38
+ textVipColors: {
39
+ type: ObjectConstructor;
40
+ default: () => {
41
+ color: string;
42
+ focusColor: string;
43
+ selectColor: string;
44
+ };
45
+ };
6
46
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
47
  isVip: {
8
48
  type: BooleanConstructor;
9
49
  default: boolean;
10
50
  };
51
+ gradientBackground: {
52
+ type: ObjectConstructor;
53
+ default: () => {
54
+ colors: string[];
55
+ orientation: number;
56
+ cornerRadius: number;
57
+ };
58
+ };
59
+ iconGradientBackground: {
60
+ type: ObjectConstructor;
61
+ default: () => {
62
+ colors: string[];
63
+ cornerRadius: number;
64
+ orientation: number;
65
+ };
66
+ };
67
+ markColor: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ markVipColor: {
72
+ type: StringConstructor;
73
+ default: string;
74
+ };
75
+ textColors: {
76
+ type: ObjectConstructor;
77
+ default: () => {
78
+ color: string;
79
+ focusColor: string;
80
+ selectColor: string;
81
+ };
82
+ };
83
+ textVipColors: {
84
+ type: ObjectConstructor;
85
+ default: () => {
86
+ color: string;
87
+ focusColor: string;
88
+ selectColor: string;
89
+ };
90
+ };
11
91
  }>>, {
12
92
  isVip: boolean;
93
+ gradientBackground: Record<string, any>;
94
+ iconGradientBackground: Record<string, any>;
95
+ markColor: string;
96
+ markVipColor: string;
97
+ textColors: Record<string, any>;
98
+ textVipColors: Record<string, any>;
13
99
  }, {}>;
14
100
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.1.25-beta.18",
3
+ "version": "1.1.25-beta.20",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",