@quicktvui/quicktvui3 1.2.0-beta.3 → 1.2.0-beta.30
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 +1 -2
- package/dist/index.js +8 -9
- package/dist/src/animation/QtAnimationAPI.d.ts +3 -3
- package/dist/src/animation/types.d.ts +1 -0
- package/dist/src/app/QtAppIconAPI.d.ts +3 -3
- package/dist/src/base/QtBaseViewAPI.d.ts +45 -0
- package/dist/src/button/QtButtonAPI.d.ts +3 -3
- package/dist/src/button/index.vue.d.ts +21 -21
- package/dist/src/canvas/Gradient.d.ts +37 -0
- package/dist/src/canvas/QTCanvasView.d.ts +3 -0
- package/dist/src/canvas/QTICanvasView.d.ts +50 -0
- package/dist/src/canvas/QtCanvasViewAPI.d.ts +54 -0
- package/dist/src/classified-list-view/QtClassifiedListViewAPI.d.ts +3 -3
- package/dist/src/classified-list-view/index.vue.d.ts +19 -19
- package/dist/src/collapse/QtCollapseAPI.d.ts +3 -3
- package/dist/src/collapse/core/QTICollapseItem.d.ts +2 -2
- package/dist/src/collapse/index.vue.d.ts +18 -18
- package/dist/src/column/QtColumnAPI.d.ts +3 -3
- package/dist/src/grid-view/QtGridViewAPI.d.ts +3 -3
- package/dist/src/grid-view/index.vue.d.ts +31 -31
- package/dist/src/image/QtImageAPI.d.ts +3 -3
- package/dist/src/image/index.vue.d.ts +11 -11
- package/dist/src/index.d.ts +9 -5
- package/dist/src/list/useListView.d.ts +49 -0
- package/dist/src/list-indicator/QTIndicatorListViewComponent.d.ts +3 -0
- package/dist/src/list-indicator/QtIndicatorViewAPI.d.ts +15 -0
- package/dist/src/list-indicator/core/QTIIndicatorView.d.ts +11 -0
- package/dist/src/list-item/QtListItemAPI.d.ts +3 -3
- package/dist/src/list-view/QtListViewAPI.d.ts +3 -3
- package/dist/src/loading/QtLoadingAPI.d.ts +3 -3
- package/dist/src/long-image/QTILongImage.d.ts +12 -0
- package/dist/src/long-image/QTLongImage.d.ts +3 -0
- package/dist/src/long-image/QtLongImageAPI.d.ts +4 -0
- package/dist/src/long-image/index.vue.d.ts +191 -0
- package/dist/src/lottie/QTILottieView.d.ts +2 -0
- package/dist/src/lottie/QTLottieEvent.d.ts +5 -0
- package/dist/src/lottie/QtLottieViewAPI.d.ts +5 -3
- package/dist/src/nav-bar/QtNavBarAPI.d.ts +3 -3
- package/dist/src/nav-bar/index.vue.d.ts +16 -16
- package/dist/src/plugin/QtPluginViewAPI.d.ts +3 -3
- package/dist/src/poster/QtPosterAPI.d.ts +3 -3
- package/dist/src/poster/index.vue.d.ts +19 -16
- package/dist/src/progressbar/QtProgressBarAPI.d.ts +3 -3
- package/dist/src/qrcode/QtQRCodeAPI.d.ts +3 -3
- package/dist/src/qt/QtAPI.d.ts +68 -30
- package/dist/src/qtListen/qtDiff.d.ts +1 -1
- package/dist/src/replace-child/QtReplaceChildViewAPI.d.ts +3 -3
- package/dist/src/row/QtRowAPI.d.ts +3 -3
- package/dist/src/scroll-view/QtScrollViewAPI.d.ts +3 -3
- package/dist/src/section/index.vue.d.ts +11 -11
- package/dist/src/seekbar/QtSeekBarAPI.d.ts +3 -3
- package/dist/src/series/component/media-series.vue.d.ts +8 -8
- package/dist/src/series/index.vue.d.ts +20 -16
- package/dist/src/series/item/media-series-number-item.vue.d.ts +4 -4
- package/dist/src/series/item/media-series-text-item.vue.d.ts +4 -4
- package/dist/src/tab/index.vue.d.ts +22 -48
- package/dist/src/text/QtTextAPI.d.ts +3 -3
- package/dist/src/text/index.vue.d.ts +11 -11
- package/dist/src/ul/QtULAPI.d.ts +3 -3
- package/dist/src/utils/type.d.ts +1 -1
- package/dist/src/view/QtViewAPI.d.ts +3 -44
- package/dist/src/view/index.vue.d.ts +12 -12
- package/dist/src/waterfall/QtWaterfallAPI.d.ts +3 -3
- package/dist/src/waterfall/index.vue.d.ts +37 -24
- package/dist/src/waterfall/item/card-item.vue.d.ts +1 -1
- package/dist/src/waterfall/item/plugin-item.vue.d.ts +12 -12
- package/dist/src/waterfall/section/blank-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/card-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/end-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/flex-section.vue.d.ts +9 -6
- package/dist/src/waterfall/section/loading-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +6 -6
- package/dist/src/waterfall/section/section-title.vue.d.ts +4 -4
- package/dist/src/waterfall/section/vue-section.vue.d.ts +5 -5
- package/dist/src/webview/QtWebViewAPI.d.ts +3 -3
- package/dist/src/x5webview/QtX5WebViewAPI.d.ts +3 -3
- package/package.json +5 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QTWaterfallSectionType } from "../core/QTWaterfallSectionType";
|
|
2
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
|
|
3
3
|
plateTitleLeftMargin: {
|
|
4
4
|
type: NumberConstructor;
|
|
5
5
|
default: number;
|
|
@@ -8,7 +8,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
default: QTWaterfallSectionType;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
11
|
+
}>, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
12
12
|
plateTitleLeftMargin: {
|
|
13
13
|
type: NumberConstructor;
|
|
14
14
|
default: number;
|
|
@@ -17,8 +17,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
17
17
|
type: NumberConstructor;
|
|
18
18
|
default: QTWaterfallSectionType;
|
|
19
19
|
};
|
|
20
|
-
}
|
|
20
|
+
}>> & Readonly<{}>, {
|
|
21
21
|
plateTitleLeftMargin: number;
|
|
22
22
|
type: number;
|
|
23
|
-
}, {}>;
|
|
23
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
|
|
24
24
|
export default _default;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
|
|
2
2
|
blockFocusDirections: {
|
|
3
3
|
type: ArrayConstructor;
|
|
4
4
|
default: () => string[];
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {
|
|
7
7
|
onSectionBind: () => void;
|
|
8
|
-
},
|
|
8
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
9
|
blockFocusDirections: {
|
|
10
10
|
type: ArrayConstructor;
|
|
11
11
|
default: () => string[];
|
|
12
12
|
};
|
|
13
|
-
}
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
14
|
blockFocusDirections: unknown[];
|
|
15
|
-
}, {}>;
|
|
15
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTIWebView } from "./QTIWebView";
|
|
4
|
-
|
|
3
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
4
|
+
export interface QtWebViewAPI extends QtBaseViewAPI {
|
|
5
5
|
loadUrl(instance: string | Ref<QTIWebView | undefined>, url: string): void;
|
|
6
6
|
evaluateJavascript(instance: string | Ref<QTIWebView | undefined>, value: string): Promise<string | undefined | null>;
|
|
7
7
|
canGoBack(instance: string | Ref<QTIWebView | undefined>): void;
|
|
@@ -72,4 +72,4 @@ export interface QtWebViewAPI extends QtViewAPI {
|
|
|
72
72
|
removeJavaScriptInterface(instance: string | Ref<QTIWebView | undefined>): void;
|
|
73
73
|
initWebViewFocus(instance: string | Ref<QTIWebView | undefined>, delayTime: number, x: number, y: number): void;
|
|
74
74
|
}
|
|
75
|
-
export declare function createQtWebViewAPI(viewAPI:
|
|
75
|
+
export declare function createQtWebViewAPI(viewAPI: QtBaseViewAPI): QtWebViewAPI;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { QtViewAPI } from "../view/QtViewAPI";
|
|
2
1
|
import { Ref } from "@vue/reactivity";
|
|
3
2
|
import { QTIX5WebView } from "./QTIX5WebView";
|
|
4
|
-
|
|
3
|
+
import { QtBaseViewAPI } from "../base/QtBaseViewAPI";
|
|
4
|
+
export interface QtX5WebViewAPI extends QtBaseViewAPI {
|
|
5
5
|
loadUrl(instance: string | Ref<QTIX5WebView | undefined>, url: string): void;
|
|
6
6
|
evaluateJavascript(instance: string | Ref<QTIX5WebView | undefined>, value: string): Promise<string | undefined | null>;
|
|
7
7
|
canGoBack(instance: string | Ref<QTIX5WebView | undefined>): void;
|
|
@@ -72,4 +72,4 @@ export interface QtX5WebViewAPI extends QtViewAPI {
|
|
|
72
72
|
removeJavaScriptInterface(instance: string | Ref<QTIX5WebView | undefined>): void;
|
|
73
73
|
initWebViewFocus(instance: string | Ref<QTIX5WebView | undefined>, delayTime: number, x: number, y: number): void;
|
|
74
74
|
}
|
|
75
|
-
export declare function createQtX5WebViewAPI(viewAPI:
|
|
75
|
+
export declare function createQtX5WebViewAPI(viewAPI: QtBaseViewAPI): QtX5WebViewAPI;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quicktvui/quicktvui3",
|
|
3
|
-
"version": "1.2.0-beta.
|
|
3
|
+
"version": "1.2.0-beta.30",
|
|
4
4
|
"description": "ExtScreen framework",
|
|
5
5
|
"author": "ExtScreen Team",
|
|
6
6
|
"homepage": "http://extscreen.com",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"framework",
|
|
16
16
|
"compiler"
|
|
17
17
|
],
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"@extscreen/es3-core": "^1.1.24",
|
|
20
|
+
"@extscreen/es3-router": "^1.1.14"
|
|
21
|
+
},
|
|
18
22
|
"files": [
|
|
19
23
|
"dist",
|
|
20
24
|
"web-types.json"
|