@quicktvui/quicktvui3 1.0.18 → 1.0.19
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 +268 -268
- package/dist/index.js +1 -1
- package/dist/src/tab/index.vue.d.ts +18 -0
- package/package.json +21 -21
|
@@ -99,6 +99,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
99
99
|
type: NumberConstructor;
|
|
100
100
|
default: number;
|
|
101
101
|
};
|
|
102
|
+
duration: {
|
|
103
|
+
type: NumberConstructor;
|
|
104
|
+
default: number;
|
|
105
|
+
};
|
|
106
|
+
interpolatorType: {
|
|
107
|
+
type: NumberConstructor;
|
|
108
|
+
default: number;
|
|
109
|
+
};
|
|
102
110
|
}, {
|
|
103
111
|
tabs: import("vue").Ref<ESITab | undefined>;
|
|
104
112
|
ifTabs: import("vue").Ref<boolean>;
|
|
@@ -242,6 +250,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
242
250
|
type: NumberConstructor;
|
|
243
251
|
default: number;
|
|
244
252
|
};
|
|
253
|
+
duration: {
|
|
254
|
+
type: NumberConstructor;
|
|
255
|
+
default: number;
|
|
256
|
+
};
|
|
257
|
+
interpolatorType: {
|
|
258
|
+
type: NumberConstructor;
|
|
259
|
+
default: number;
|
|
260
|
+
};
|
|
245
261
|
}>> & {
|
|
246
262
|
onOnTabPageLoadData?: ((...args: any[]) => any) | undefined;
|
|
247
263
|
onOnTabPageChanged?: ((...args: any[]) => any) | undefined;
|
|
@@ -281,5 +297,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
281
297
|
initTranslation: number;
|
|
282
298
|
rightTranslation: number;
|
|
283
299
|
leftTranslation: number;
|
|
300
|
+
duration: number;
|
|
301
|
+
interpolatorType: number;
|
|
284
302
|
}, {}>;
|
|
285
303
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@quicktvui/quicktvui3",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "ExtScreen framework",
|
|
5
|
-
"author": "ExtScreen Team",
|
|
6
|
-
"homepage": "http://extscreen.com",
|
|
7
|
-
"license": "Apache-2.0",
|
|
8
|
-
"entry": "dist/index.js",
|
|
9
|
-
"main": "dist/index.js",
|
|
10
|
-
"module": "dist/index.js",
|
|
11
|
-
"types": "dist/src/index.d.ts",
|
|
12
|
-
"keywords": [
|
|
13
|
-
"native",
|
|
14
|
-
"web",
|
|
15
|
-
"framework",
|
|
16
|
-
"compiler"
|
|
17
|
-
],
|
|
18
|
-
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
]
|
|
21
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@quicktvui/quicktvui3",
|
|
3
|
+
"version": "1.0.19",
|
|
4
|
+
"description": "ExtScreen framework",
|
|
5
|
+
"author": "ExtScreen Team",
|
|
6
|
+
"homepage": "http://extscreen.com",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"entry": "dist/index.js",
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"module": "dist/index.js",
|
|
11
|
+
"types": "dist/src/index.d.ts",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"native",
|
|
14
|
+
"web",
|
|
15
|
+
"framework",
|
|
16
|
+
"compiler"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
]
|
|
21
|
+
}
|