@quicktvui/quicktvui3 1.1.30 → 1.1.31-beta.2

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.
@@ -33,6 +33,14 @@ declare const _default: import("vue").DefineComponent<{
33
33
  type: NumberConstructor;
34
34
  default: number;
35
35
  };
36
+ listData: {
37
+ type: ArrayConstructor;
38
+ required: false;
39
+ };
40
+ pStype: {
41
+ type: ObjectConstructor;
42
+ default: () => {};
43
+ };
36
44
  }, {
37
45
  dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
38
46
  requestFocus: () => void;
@@ -111,6 +119,14 @@ declare const _default: import("vue").DefineComponent<{
111
119
  type: NumberConstructor;
112
120
  default: number;
113
121
  };
122
+ listData: {
123
+ type: ArrayConstructor;
124
+ required: false;
125
+ };
126
+ pStype: {
127
+ type: ObjectConstructor;
128
+ default: () => {};
129
+ };
114
130
  }>> & {
115
131
  onOnScroll?: ((...args: any[]) => any) | undefined;
116
132
  onOnScrollStateChanged?: ((...args: any[]) => any) | undefined;
@@ -129,5 +145,6 @@ declare const _default: import("vue").DefineComponent<{
129
145
  customItemPool: Record<string, any>;
130
146
  scrollYLesserReferenceValue: number;
131
147
  scrollYGreaterReferenceValue: number;
148
+ pStype: Record<string, any>;
132
149
  }, {}>;
133
150
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.1.30",
3
+ "version": "1.1.31-beta.2",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",
@@ -9,7 +9,6 @@
9
9
  "main": "dist/index.js",
10
10
  "module": "dist/index.js",
11
11
  "types": "dist/src/index.d.ts",
12
- "style": "dist/index.css",
13
12
  "keywords": [
14
13
  "native",
15
14
  "web",
@@ -17,7 +16,9 @@
17
16
  "compiler"
18
17
  ],
19
18
  "files": [
20
- "dist",
21
- "global.d.ts"
22
- ]
19
+ "dist"
20
+ ],
21
+ "dependencies": {
22
+ "@extscreen/es3-component": "^1.0.20"
23
+ }
23
24
  }
package/global.d.ts DELETED
@@ -1,12 +0,0 @@
1
- // GlobalComponents for Volar
2
- export {};
3
-
4
- declare module "@vue/runtime-core" {
5
- export interface GlobalComponents {
6
- "QtRow": typeof import('@quicktvui/quicktvui3')['Row']
7
- "QtText": typeof import('@quicktvui/quicktvui3')['Text']
8
- }
9
- }
10
-
11
-
12
-