@quicktvui/quicktvui3 1.1.33 → 1.1.35-alpha.1
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 +2 -2
- package/dist/index.js +1 -20
- package/dist/src/button/index.vue.d.ts +1 -1
- package/dist/src/classified-list-view/core/QTClassifiedListView.d.ts +10 -0
- package/dist/src/classified-list-view/index.vue.d.ts +1 -1
- package/dist/src/collapse/index.vue.d.ts +1 -1
- package/dist/src/grid-view/core/QTGridView.d.ts +22 -0
- package/dist/src/grid-view/index.vue.d.ts +1 -1
- package/dist/src/image/index.vue.d.ts +1 -1
- package/dist/src/index.d.ts +2 -0
- package/dist/src/nav-bar/index.vue.d.ts +1 -1
- package/dist/src/poster/index.vue.d.ts +1 -1
- package/dist/src/section/index.vue.d.ts +1 -1
- package/dist/src/series/DataAdapter.d.ts +1 -1
- package/dist/src/series/QTMediaSeriesData.d.ts +2 -0
- package/dist/src/series/QTMediaSeriesDataStyle.d.ts +4 -0
- package/dist/src/series/component/media-series.vue.d.ts +1 -1
- package/dist/src/series/index.vue.d.ts +1 -1
- package/dist/src/series/item/media-series-number-item.vue.d.ts +1 -1
- package/dist/src/series/item/media-series-text-item.vue.d.ts +1 -1
- package/dist/src/tab/QTITab.d.ts +2 -0
- package/dist/src/tab/QTTabDataManager.d.ts +1 -1
- package/dist/src/tab/index.vue.d.ts +45 -1
- package/dist/src/text/index.vue.d.ts +1 -1
- package/dist/src/utils/VirtualView.d.ts +10 -0
- package/dist/src/view/index.vue.d.ts +1 -1
- package/dist/src/waterfall/core/QTIWaterfall.d.ts +1 -0
- package/dist/src/waterfall/index.vue.d.ts +44 -1
- package/dist/src/waterfall/item/card-item.vue.d.ts +1 -1
- package/dist/src/waterfall/item/plugin-item.vue.d.ts +1 -1
- 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 +18 -1
- package/dist/src/waterfall/section/loading-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +1 -1
- package/dist/src/waterfall/section/section-title.vue.d.ts +1 -1
- package/dist/src/waterfall/section/vue-section.vue.d.ts +1 -1
- package/package.json +5 -2
- package/dist/src/utils/index.d.ts +0 -1
- package/dist/src/utils/objects.d.ts +0 -1
- package/dist/src/utils/types.d.ts +0 -8
- package/dist/src/utils/vue/index.d.ts +0 -4
- package/dist/src/utils/vue/install.d.ts +0 -6
- package/dist/src/utils/vue/props/index.d.ts +0 -3
- package/dist/src/utils/vue/props/runtime.d.ts +0 -9
- package/dist/src/utils/vue/props/types.d.ts +0 -38
- package/dist/src/utils/vue/props/util.d.ts +0 -8
- package/dist/src/utils/vue/refs.d.ts +0 -3
- package/dist/src/utils/vue/typescript.d.ts +0 -5
|
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
66
|
focused: import("vue").Ref<boolean>;
|
|
67
67
|
onFocus: (e: any) => void;
|
|
68
68
|
onClick: (e: any) => void;
|
|
69
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "click")[], "focus" | "click", import("vue").
|
|
69
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "click")[], "focus" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
70
70
|
size: {
|
|
71
71
|
type: StringConstructor;
|
|
72
72
|
default: string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { QTClassifiedListViewItem } from "./QTClassifiedListViewItem";
|
|
2
|
+
export interface QTClassifiedListView {
|
|
3
|
+
init(itemList: Array<QTClassifiedListViewItem>): void;
|
|
4
|
+
scrollToIndex(index: number, anim: Boolean, offset: number): void;
|
|
5
|
+
setItemFocused(index: number): void;
|
|
6
|
+
scrollToFocused(index: number): void;
|
|
7
|
+
setItemSelected(index: number, b: boolean): void;
|
|
8
|
+
scrollToSelected(index: number, b: boolean): void;
|
|
9
|
+
updateItem(position: number, data: QTClassifiedListViewItem): void;
|
|
10
|
+
}
|
|
@@ -47,7 +47,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
onFItemFocused: (e: any) => void;
|
|
48
48
|
updateItem: (position: number, data: QTClassifiedListViewItem) => void;
|
|
49
49
|
viewRef: import("vue").Ref<any>;
|
|
50
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "item-focused")[], "item-click" | "item-focused", import("vue").
|
|
50
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "item-focused")[], "item-click" | "item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
51
|
className: {
|
|
52
52
|
type: StringConstructor;
|
|
53
53
|
default: string;
|
|
@@ -22,7 +22,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
22
22
|
collapseWidth: import("vue").Ref<number>;
|
|
23
23
|
collapseHeight: import("vue").Ref<number>;
|
|
24
24
|
viewRef: import("vue").Ref<any>;
|
|
25
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").
|
|
25
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onCollapseItemExpand"[], "onCollapseItemExpand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
26
26
|
onOnCollapseItemExpand?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}, {}, {}>;
|
|
28
28
|
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { QTGridViewItem } from "./QTGridViewItem";
|
|
2
|
+
import { ESIView } from "@extscreen/es3-component";
|
|
3
|
+
export interface QTGridView extends ESIView {
|
|
4
|
+
init(target: Array<QTGridViewItem>, isInit?: boolean): Array<QTGridViewItem>;
|
|
5
|
+
scrollToTop(): void;
|
|
6
|
+
clearFocus(): void;
|
|
7
|
+
stopPage(): void;
|
|
8
|
+
restartPage(): void;
|
|
9
|
+
blockRootFocus(): void;
|
|
10
|
+
unBlockRootFocus(): void;
|
|
11
|
+
setDisplay(value: Boolean): void;
|
|
12
|
+
scrollToPosition(index: number): void;
|
|
13
|
+
scrollToIndex(y: number, anim: Boolean, offset: number): void;
|
|
14
|
+
setItemFocused(pos: number): void;
|
|
15
|
+
scrollToFocused(pos: number): void;
|
|
16
|
+
setItemSelected(pos: number, b: boolean): void;
|
|
17
|
+
scrollToSelected(pos: number, b: boolean): void;
|
|
18
|
+
setInitPosition(position: number): void;
|
|
19
|
+
setListData(itemList: Array<QTGridViewItem>): void;
|
|
20
|
+
clearPostTask(): void;
|
|
21
|
+
destroy(): void;
|
|
22
|
+
}
|
|
@@ -75,7 +75,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
75
|
requestFocus: () => void;
|
|
76
76
|
requestFocusDirectly: () => void;
|
|
77
77
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
78
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused")[], "item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused", import("vue").
|
|
78
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused")[], "item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
79
79
|
loadMore: {
|
|
80
80
|
type: FunctionConstructor;
|
|
81
81
|
default: () => number[];
|
|
@@ -5,5 +5,5 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
requestFocusDirectly: () => void;
|
|
6
6
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
7
7
|
viewRef: import("vue").Ref<any>;
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
9
9
|
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export type { QTIMediaSeries } from './series/QTIMediaSeries';
|
|
|
80
80
|
export type { QTMediaSeries } from './series/QTMediaSeries';
|
|
81
81
|
export type { QTMediaSeriesGroup } from './series/QTMediaSeriesGroup';
|
|
82
82
|
export type { QTMediaSeriesGroupStyle } from './series/QTMediaSeriesGroupStyle';
|
|
83
|
+
export type { QTMediaSeriesDataStyle } from './series/QTMediaSeriesDataStyle';
|
|
83
84
|
export type { QTMediaSeriesData } from './series/QTMediaSeriesData';
|
|
84
85
|
export type { QTMediaSeriesEvent } from './series/QTMediaSeriesEvent';
|
|
85
86
|
export { QTMediaSeriesType } from './series/QTMediaSeriesType';
|
|
@@ -108,3 +109,4 @@ export type { QTIRow } from './row/QTIRow';
|
|
|
108
109
|
export type { QTIText } from './text/QTIText';
|
|
109
110
|
export type { QTIAppIcon } from './app/QTIAppIcon';
|
|
110
111
|
export type { QTIPluginView, QTPluginViewEvent } from './plugin/QTIPluginView';
|
|
112
|
+
export { VirtualView } from './utils/VirtualView';
|
|
@@ -60,7 +60,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
60
60
|
scrollToPosition: (index: any) => void;
|
|
61
61
|
scrollToTop: () => void;
|
|
62
62
|
init: (navBar: QTNavBar) => void;
|
|
63
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
63
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
64
|
textKey: {
|
|
65
65
|
type: StringConstructor;
|
|
66
66
|
default: string;
|
|
@@ -47,7 +47,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
48
48
|
mainTextShowOnState: string[];
|
|
49
49
|
viewRef: import("vue").Ref<any>;
|
|
50
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
50
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
51
|
requestFirstFocus: {
|
|
52
52
|
type: BooleanConstructor;
|
|
53
53
|
default: boolean;
|
|
@@ -6,5 +6,5 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
6
6
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
7
7
|
onSectionBind: () => void;
|
|
8
8
|
viewRef: import("vue").Ref<any>;
|
|
9
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
10
10
|
export default _default;
|
|
@@ -22,7 +22,7 @@ export declare function buildCommonParams(type: QTMediaSeriesType, group: QTMedi
|
|
|
22
22
|
contentHeight?: undefined;
|
|
23
23
|
} | undefined;
|
|
24
24
|
export declare function buildLeftRightParams(type: QTMediaSeriesType, group: QTMediaSeriesGroup, styleType: QTMediaSeriesStyleType, data: QTMediaSeriesData): any;
|
|
25
|
-
export declare function buildMediaSeriesContentHeight(type: QTMediaSeriesType, group: QTMediaSeriesGroup, styleType: QTMediaSeriesStyleType, data: QTMediaSeriesData):
|
|
25
|
+
export declare function buildMediaSeriesContentHeight(type: QTMediaSeriesType, group: QTMediaSeriesGroup, styleType: QTMediaSeriesStyleType, data: QTMediaSeriesData): number;
|
|
26
26
|
export declare function buildMediaSeriesHeight(type: QTMediaSeriesType, group: QTMediaSeriesGroup, styleType: QTMediaSeriesStyleType, data: QTMediaSeriesData): number;
|
|
27
27
|
export declare function buildSeriesLeftRightHeight(type: QTMediaSeriesType, group: QTMediaSeriesGroup, styleType: QTMediaSeriesStyleType, data: QTMediaSeriesData, params: any): any;
|
|
28
28
|
export declare function buildSeriesNumberData(page: number, pageSize: number, dataArray: Array<QTMediaSeries>): Array<QTMediaSeries>;
|
|
@@ -40,7 +40,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
setup: () => void;
|
|
41
41
|
setGroupSelected: (position: any) => void;
|
|
42
42
|
release: () => void;
|
|
43
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").
|
|
43
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
44
|
customItem: {
|
|
45
45
|
type: BooleanConstructor;
|
|
46
46
|
default: boolean;
|
|
@@ -93,7 +93,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
93
|
clearFocus: () => void;
|
|
94
94
|
requestFocusDirectly: () => void;
|
|
95
95
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
96
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").
|
|
96
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
97
97
|
itemHeight: {
|
|
98
98
|
type: NumberConstructor;
|
|
99
99
|
default: number;
|
|
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
selectColor: string;
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
54
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
55
|
isVip: {
|
|
56
56
|
type: BooleanConstructor;
|
|
57
57
|
default: boolean;
|
|
@@ -59,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
type: NumberConstructor;
|
|
60
60
|
default: number;
|
|
61
61
|
};
|
|
62
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
62
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
63
|
isVip: {
|
|
64
64
|
type: BooleanConstructor;
|
|
65
65
|
default: boolean;
|
package/dist/src/tab/QTITab.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { QTWaterfallSection } from "../waterfall/core/QTWaterfallSection";
|
|
|
6
6
|
import { QTWaterfallItem } from "../waterfall/core/QTWaterfallItem";
|
|
7
7
|
import { QTTabPage } from "./QTTabPage";
|
|
8
8
|
import { QTIView } from "../view/QTIView";
|
|
9
|
+
import { QTTabDataManager } from "./QTTabDataManager";
|
|
9
10
|
export interface QTITab extends QTIView {
|
|
10
11
|
initTab(tab: QTTab): void;
|
|
11
12
|
initPage(waterfall: QTTabPage): void;
|
|
@@ -44,4 +45,5 @@ export interface QTITab extends QTIView {
|
|
|
44
45
|
translationRight(): void;
|
|
45
46
|
destroy(): void;
|
|
46
47
|
cancelAll(): void;
|
|
48
|
+
getDataManager(): QTTabDataManager;
|
|
47
49
|
}
|
|
@@ -10,7 +10,7 @@ export interface QTTabDataManager {
|
|
|
10
10
|
setPageDataState(pageIndex: number, page: QTTabPageDataState): void;
|
|
11
11
|
getTabPageDataState(pageIndex: number): QTTabPageDataState | undefined;
|
|
12
12
|
getSectionList(pageIndex: number): Array<QTWaterfallSection>;
|
|
13
|
-
addSectionList(pageIndex: number, sections: Array<QTWaterfallSection
|
|
13
|
+
addSectionList(pageIndex: number, sections: Array<QTWaterfallSection>, deleteCount: number): QTTabIndex;
|
|
14
14
|
deleteSection(pageIndex: number, sectionIndex: number, count: number): QTTabIndex;
|
|
15
15
|
updateSectionList(pageIndex: number, sectionList: Array<QTWaterfallSection>): QTTabIndex;
|
|
16
16
|
updateSection(pageIndex: number, sectionIndex: number, section: QTWaterfallSection): QTTabIndex;
|
|
@@ -151,6 +151,27 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
151
151
|
type: NumberConstructor;
|
|
152
152
|
default: number;
|
|
153
153
|
};
|
|
154
|
+
qtTabSectionEnable: {
|
|
155
|
+
type: ObjectConstructor;
|
|
156
|
+
default: () => {
|
|
157
|
+
flexSectionEnable: boolean;
|
|
158
|
+
flexSection: {
|
|
159
|
+
qtPosterEnable: boolean;
|
|
160
|
+
qtPluginItemEnable: boolean;
|
|
161
|
+
cardItemEnable: boolean;
|
|
162
|
+
};
|
|
163
|
+
listSectionEnable: boolean;
|
|
164
|
+
listSection: {
|
|
165
|
+
qtPosterEnable: boolean;
|
|
166
|
+
};
|
|
167
|
+
loadingSectionEnable: boolean;
|
|
168
|
+
endSectionEnable: boolean;
|
|
169
|
+
blankSectionEnable: boolean;
|
|
170
|
+
cardSectionEnable: boolean;
|
|
171
|
+
pluginSectionEnable: boolean;
|
|
172
|
+
vueSectionEnable: boolean;
|
|
173
|
+
};
|
|
174
|
+
};
|
|
154
175
|
}, {
|
|
155
176
|
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
156
177
|
requestFocus: () => void;
|
|
@@ -215,7 +236,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
215
236
|
getCurrentTabIndex: () => Promise<number>;
|
|
216
237
|
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
217
238
|
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
218
|
-
|
|
239
|
+
getDataManager(): import("./QTTabDataManager").QTTabDataManager;
|
|
240
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
219
241
|
enablePlaceholder: {
|
|
220
242
|
type: BooleanConstructor;
|
|
221
243
|
default: boolean;
|
|
@@ -357,6 +379,27 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
357
379
|
type: NumberConstructor;
|
|
358
380
|
default: number;
|
|
359
381
|
};
|
|
382
|
+
qtTabSectionEnable: {
|
|
383
|
+
type: ObjectConstructor;
|
|
384
|
+
default: () => {
|
|
385
|
+
flexSectionEnable: boolean;
|
|
386
|
+
flexSection: {
|
|
387
|
+
qtPosterEnable: boolean;
|
|
388
|
+
qtPluginItemEnable: boolean;
|
|
389
|
+
cardItemEnable: boolean;
|
|
390
|
+
};
|
|
391
|
+
listSectionEnable: boolean;
|
|
392
|
+
listSection: {
|
|
393
|
+
qtPosterEnable: boolean;
|
|
394
|
+
};
|
|
395
|
+
loadingSectionEnable: boolean;
|
|
396
|
+
endSectionEnable: boolean;
|
|
397
|
+
blankSectionEnable: boolean;
|
|
398
|
+
cardSectionEnable: boolean;
|
|
399
|
+
pluginSectionEnable: boolean;
|
|
400
|
+
vueSectionEnable: boolean;
|
|
401
|
+
};
|
|
402
|
+
};
|
|
360
403
|
}>> & {
|
|
361
404
|
onOnTabPageLoadData?: ((...args: any[]) => any) | undefined;
|
|
362
405
|
onOnTabPageChanged?: ((...args: any[]) => any) | undefined;
|
|
@@ -411,5 +454,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
411
454
|
horizontalFadingEdgeEnabled: boolean;
|
|
412
455
|
verticalFadingEdgeEnabled: boolean;
|
|
413
456
|
fadingEdgeLength: number;
|
|
457
|
+
qtTabSectionEnable: Record<string, any>;
|
|
414
458
|
}, {}>;
|
|
415
459
|
export default _default;
|
|
@@ -5,5 +5,5 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
requestFocusDirectly: () => void;
|
|
6
6
|
setVisibility: (v: import("..").QTIViewVisibility) => void;
|
|
7
7
|
viewRef: import("vue").Ref<any>;
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
9
9
|
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const VirtualView: {
|
|
2
|
+
callUIModule(sid: string, fnName: string, params: any): void;
|
|
3
|
+
callUIModuleAsync(sid: string, fnName: string, params: Array<any>, maxTime?: number): Promise<unknown>;
|
|
4
|
+
call(sid: string, fnName: string, params: Array<any>): void;
|
|
5
|
+
callAsync(sid: string, fnName: string, params: Array<any>, maxTime?: number): Promise<unknown>;
|
|
6
|
+
tvCall(tvsid: string, sid: string, fnName: string, params: Array<any>): void;
|
|
7
|
+
tvCallAsync(tvsid: string, sid: string, fnName: string, params: Array<any>, maxTime?: number): Promise<unknown>;
|
|
8
|
+
updateChild(tvsid: string, sid: string, data: object): void;
|
|
9
|
+
updateBySid(sid: string, data: object): void;
|
|
10
|
+
};
|
|
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
requestFocusDirectly: () => void;
|
|
6
6
|
setVisibility: (v: import("./QTIViewVisibility").QTIViewVisibility) => void;
|
|
7
7
|
viewRef: import("vue").Ref<any>;
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
9
9
|
onClearFocus?: ((...args: any[]) => any) | undefined;
|
|
10
10
|
}, {}, {}>;
|
|
11
11
|
export default _default;
|
|
@@ -34,6 +34,27 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
34
|
type: NumberConstructor;
|
|
35
35
|
default: number;
|
|
36
36
|
};
|
|
37
|
+
qtTabSectionEnable: {
|
|
38
|
+
type: ObjectConstructor;
|
|
39
|
+
default: () => {
|
|
40
|
+
flexSectionEnable: boolean;
|
|
41
|
+
flexSection: {
|
|
42
|
+
qtPosterEnable: boolean;
|
|
43
|
+
qtPluginItemEnable: boolean;
|
|
44
|
+
cardItemEnable: boolean;
|
|
45
|
+
};
|
|
46
|
+
listSectionEnable: boolean;
|
|
47
|
+
listSection: {
|
|
48
|
+
qtPosterEnable: boolean;
|
|
49
|
+
};
|
|
50
|
+
loadingSectionEnable: boolean;
|
|
51
|
+
endSectionEnable: boolean;
|
|
52
|
+
blankSectionEnable: boolean;
|
|
53
|
+
cardSectionEnable: boolean;
|
|
54
|
+
pluginSectionEnable: boolean;
|
|
55
|
+
vueSectionEnable: boolean;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
37
58
|
}, {
|
|
38
59
|
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
39
60
|
requestFocus: () => void;
|
|
@@ -85,7 +106,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
106
|
onScrollYLesserReference: () => void;
|
|
86
107
|
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
87
108
|
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
88
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").
|
|
109
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
89
110
|
enablePlaceholder: {
|
|
90
111
|
type: BooleanConstructor;
|
|
91
112
|
default: boolean;
|
|
@@ -114,6 +135,27 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
114
135
|
type: NumberConstructor;
|
|
115
136
|
default: number;
|
|
116
137
|
};
|
|
138
|
+
qtTabSectionEnable: {
|
|
139
|
+
type: ObjectConstructor;
|
|
140
|
+
default: () => {
|
|
141
|
+
flexSectionEnable: boolean;
|
|
142
|
+
flexSection: {
|
|
143
|
+
qtPosterEnable: boolean;
|
|
144
|
+
qtPluginItemEnable: boolean;
|
|
145
|
+
cardItemEnable: boolean;
|
|
146
|
+
};
|
|
147
|
+
listSectionEnable: boolean;
|
|
148
|
+
listSection: {
|
|
149
|
+
qtPosterEnable: boolean;
|
|
150
|
+
};
|
|
151
|
+
loadingSectionEnable: boolean;
|
|
152
|
+
endSectionEnable: boolean;
|
|
153
|
+
blankSectionEnable: boolean;
|
|
154
|
+
cardSectionEnable: boolean;
|
|
155
|
+
pluginSectionEnable: boolean;
|
|
156
|
+
vueSectionEnable: boolean;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
117
159
|
}>> & {
|
|
118
160
|
onOnScroll?: ((...args: any[]) => any) | undefined;
|
|
119
161
|
onOnScrollStateChanged?: ((...args: any[]) => any) | undefined;
|
|
@@ -134,5 +176,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
134
176
|
customItemPool: Record<string, any>;
|
|
135
177
|
scrollYLesserReferenceValue: number;
|
|
136
178
|
scrollYGreaterReferenceValue: number;
|
|
179
|
+
qtTabSectionEnable: Record<string, any>;
|
|
137
180
|
}, {}>;
|
|
138
181
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {
|
|
2
2
|
onFocus: (e: any) => void;
|
|
3
|
-
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").
|
|
3
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
|
|
4
4
|
export default _default;
|
|
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
6
6
|
requestFocusDirectly: () => void;
|
|
7
7
|
setVisibility: (v: import("../..").QTIViewVisibility) => void;
|
|
8
8
|
viewRef: import("vue").Ref<any>;
|
|
9
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
10
10
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}, {}, {}>;
|
|
12
12
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {
|
|
2
2
|
onFocus: (e: any) => void;
|
|
3
|
-
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").
|
|
3
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
|
|
4
4
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -33,9 +33,17 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
33
33
|
type: NumberConstructor;
|
|
34
34
|
default: number;
|
|
35
35
|
};
|
|
36
|
+
flexSection: {
|
|
37
|
+
type: ObjectConstructor;
|
|
38
|
+
default: () => {
|
|
39
|
+
qtPosterEnable: boolean;
|
|
40
|
+
qtPluginItemEnable: boolean;
|
|
41
|
+
cardItemEnable: boolean;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
36
44
|
}, {
|
|
37
45
|
onFocus: (e: any) => void;
|
|
38
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").
|
|
46
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
39
47
|
enablePlaceholder: {
|
|
40
48
|
type: BooleanConstructor;
|
|
41
49
|
default: boolean;
|
|
@@ -68,6 +76,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
68
76
|
type: NumberConstructor;
|
|
69
77
|
default: number;
|
|
70
78
|
};
|
|
79
|
+
flexSection: {
|
|
80
|
+
type: ObjectConstructor;
|
|
81
|
+
default: () => {
|
|
82
|
+
qtPosterEnable: boolean;
|
|
83
|
+
qtPluginItemEnable: boolean;
|
|
84
|
+
cardItemEnable: boolean;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
71
87
|
}>> & {
|
|
72
88
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
73
89
|
}, {
|
|
@@ -79,5 +95,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
79
95
|
standItemType: number;
|
|
80
96
|
currentPageIndex: number;
|
|
81
97
|
itemFocusScale: number;
|
|
98
|
+
flexSection: Record<string, any>;
|
|
82
99
|
}, {}>;
|
|
83
100
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -5,7 +5,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
5
5
|
};
|
|
6
6
|
}, {
|
|
7
7
|
onFocus: (e: any) => void;
|
|
8
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").
|
|
8
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
9
|
pluginKey: {
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
default: string;
|
|
@@ -8,7 +8,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
default: QTWaterfallSectionType;
|
|
10
10
|
};
|
|
11
|
-
}, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").
|
|
11
|
+
}, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
12
12
|
plateTitleLeftMargin: {
|
|
13
13
|
type: NumberConstructor;
|
|
14
14
|
default: number;
|
|
@@ -5,7 +5,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
5
5
|
};
|
|
6
6
|
}, {
|
|
7
7
|
onSectionBind: () => void;
|
|
8
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").
|
|
8
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
9
|
blockFocusDirections: {
|
|
10
10
|
type: ArrayConstructor;
|
|
11
11
|
default: () => string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quicktvui/quicktvui3",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.35-alpha.1",
|
|
4
4
|
"description": "ExtScreen framework",
|
|
5
5
|
"author": "ExtScreen Team",
|
|
6
6
|
"homepage": "http://extscreen.com",
|
|
@@ -17,5 +17,8 @@
|
|
|
17
17
|
],
|
|
18
18
|
"files": [
|
|
19
19
|
"dist"
|
|
20
|
-
]
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@quicktvui/quicktvui3": "file:quicktvui-quicktvui3-1.1.33-beta.14.tgz"
|
|
23
|
+
}
|
|
21
24
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './vue';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { hasOwn } from '@vue/shared';
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export { isArray, isFunction, isObject, isString, isDate, isPromise, isSymbol, } from '@vue/shared';
|
|
2
|
-
export { isVNode } from 'vue';
|
|
3
|
-
export declare const isUndefined: (val: any) => val is undefined;
|
|
4
|
-
export declare const isBoolean: (val: any) => val is boolean;
|
|
5
|
-
export declare const isNumber: (val: any) => val is number;
|
|
6
|
-
export declare const isEmpty: (val: unknown) => boolean;
|
|
7
|
-
export declare const isElement: (e: unknown) => e is Element;
|
|
8
|
-
export declare const isStringNumber: (val: string) => boolean;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { Directive } from 'vue';
|
|
2
|
-
import type { SFCInstallWithContext, SFCWithInstall } from './typescript';
|
|
3
|
-
export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E) => SFCWithInstall<T> & E;
|
|
4
|
-
export declare const withInstallFunction: <T>(fn: T, name: string) => SFCInstallWithContext<T>;
|
|
5
|
-
export declare const withInstallDirective: <T extends Directive>(directive: T, name: string) => SFCWithInstall<T>;
|
|
6
|
-
export declare const withNoopInstall: <T>(component: T) => SFCWithInstall<T>;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { PropType } from 'vue';
|
|
2
|
-
import type { EpProp, EpPropConvert, EpPropFinalized, EpPropInput, EpPropMergeType, IfEpProp, IfNativePropType, NativePropType } from './types';
|
|
3
|
-
export declare const epPropKey = "__epPropKey";
|
|
4
|
-
export declare const definePropType: <T>(val: any) => PropType<T>;
|
|
5
|
-
export declare const isEpProp: (val: unknown) => val is EpProp<any, any, any>;
|
|
6
|
-
export declare const buildProp: <Type = never, Value = never, Validator = never, Default extends EpPropMergeType<Type, Value, Validator> = never, Required extends boolean = false>(prop: EpPropInput<Type, Value, Validator, Default, Required>, key?: string) => EpPropFinalized<Type, Value, Validator, Default, Required>;
|
|
7
|
-
export declare const buildProps: <Props extends Record<string, {
|
|
8
|
-
__epPropKey: true;
|
|
9
|
-
} | NativePropType | EpPropInput<any, any, any, any, any>>>(props: Props) => { [K in keyof Props]: IfEpProp<Props[K], Props[K], IfNativePropType<Props[K], Props[K], EpPropConvert<Props[K]>>>; };
|