@quicktvui/quicktvui3 1.1.32 → 1.1.33-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.
- package/dist/index.css +57 -21
- package/dist/index.js +5 -5
- package/dist/src/grid-view/core/QTIGridView.d.ts +1 -1
- package/dist/src/grid-view/index.vue.d.ts +9 -7
- package/dist/src/index.d.ts +4 -0
- package/dist/src/list-view/core/QTIListView.d.ts +1 -1
- package/dist/src/plugin/QTIPluginView.d.ts +9 -0
- package/dist/src/plugin/QTPluginView.d.ts +3 -0
- package/dist/src/poster/index.vue.d.ts +33 -0
- package/dist/src/qtListen/effect.d.ts +17 -0
- package/dist/src/qtListen/index.d.ts +5 -0
- package/dist/src/qtListen/qtArray.d.ts +9 -0
- package/dist/src/qtListen/qtDiff.d.ts +2 -0
- package/dist/src/qtListen/reactive.d.ts +14 -0
- package/dist/src/qtListen/ref.d.ts +5 -0
- package/dist/src/qtListen/types.d.ts +45 -0
- package/dist/src/qtListen/watch.d.ts +16 -0
- package/dist/src/series/index.vue.d.ts +35 -0
- package/dist/src/series/item/media-series-number-item.vue.d.ts +17 -0
- package/dist/src/series/item/media-series-text-item.vue.d.ts +35 -0
- package/dist/src/tab/QTITab.d.ts +1 -0
- package/dist/src/tab/QTTabDataManager.d.ts +1 -0
- package/dist/src/tab/index.vue.d.ts +8 -2
- package/dist/src/waterfall/core/QTWaterfallDataAdapter.d.ts +2 -2
- package/dist/src/waterfall/core/QTWaterfallItemType.d.ts +2 -1
- package/dist/src/waterfall/core/QTWaterfallPluginItem.d.ts +5 -0
- package/dist/src/waterfall/core/QTWaterfallPluginSection.d.ts +5 -0
- package/dist/src/waterfall/core/QTWaterfallSectionType.d.ts +2 -1
- package/dist/src/waterfall/index.vue.d.ts +23 -1
- package/dist/src/waterfall/item/plugin-item.vue.d.ts +12 -0
- package/dist/src/waterfall/section/flex-section.vue.d.ts +4 -2
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
onFocus: (e: any) => void;
|
|
3
|
+
dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
|
|
4
|
+
requestFocus: () => void;
|
|
5
|
+
clearFocus: () => void;
|
|
6
|
+
requestFocusDirectly: () => void;
|
|
7
|
+
setVisibility: (v: import("../..").QTIViewVisibility) => void;
|
|
8
|
+
viewRef: import("vue").Ref<any>;
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
10
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
11
|
+
}, {}, {}>;
|
|
12
|
+
export default _default;
|
|
@@ -35,7 +35,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
35
35
|
};
|
|
36
36
|
}, {
|
|
37
37
|
onFocus: (e: any) => void;
|
|
38
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin,
|
|
38
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
39
39
|
enablePlaceholder: {
|
|
40
40
|
type: BooleanConstructor;
|
|
41
41
|
default: boolean;
|
|
@@ -68,7 +68,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
68
68
|
type: NumberConstructor;
|
|
69
69
|
default: number;
|
|
70
70
|
};
|
|
71
|
-
}
|
|
71
|
+
}>> & {
|
|
72
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
73
|
+
}, {
|
|
72
74
|
enablePlaceholder: boolean;
|
|
73
75
|
plateData: string;
|
|
74
76
|
useDiff: boolean;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
pluginKey: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, {
|
|
7
|
+
onFocus: (e: any) => void;
|
|
8
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "focus"[], "focus", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
|
+
pluginKey: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
}>> & {
|
|
14
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
}, {
|
|
16
|
+
pluginKey: string;
|
|
17
|
+
}, {}>;
|
|
18
|
+
export default _default;
|