@quicktvui/quicktvui3 1.1.37-beta.9 → 1.1.38-beta.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.
|
@@ -171,6 +171,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
171
|
cardSectionEnable: boolean;
|
|
172
172
|
pluginSectionEnable: boolean;
|
|
173
173
|
vueSectionEnable: boolean;
|
|
174
|
+
itemStoreEnable: boolean;
|
|
174
175
|
};
|
|
175
176
|
};
|
|
176
177
|
}, {
|
|
@@ -235,7 +236,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
235
236
|
onTabClick: (e: QTTabItem) => void;
|
|
236
237
|
getCurrentPageIndex: () => number;
|
|
237
238
|
getCurrentTabIndex: () => Promise<number>;
|
|
238
|
-
loadContent: import("vue").Ref<boolean>;
|
|
239
239
|
insertPageData(tabPageIndex: number, sectionIndex: number, data: any[]): void;
|
|
240
240
|
onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
|
|
241
241
|
onPluginLoadError: (event: QTPluginViewEvent) => void;
|
|
@@ -402,6 +402,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
402
402
|
cardSectionEnable: boolean;
|
|
403
403
|
pluginSectionEnable: boolean;
|
|
404
404
|
vueSectionEnable: boolean;
|
|
405
|
+
itemStoreEnable: boolean;
|
|
405
406
|
};
|
|
406
407
|
};
|
|
407
408
|
}>> & {
|
|
@@ -8,6 +8,7 @@ export interface QTWaterfallSection extends QTListViewItem {
|
|
|
8
8
|
titleStyle?: QTWaterfallFlexStyle & QTFlexStyleText;
|
|
9
9
|
itemList: Array<QTWaterfallItem>;
|
|
10
10
|
style: QTWaterfallFlexStyle;
|
|
11
|
+
contentStyle?: QTWaterfallFlexStyle;
|
|
11
12
|
placeholder?: QTWaterfallPlaceholder;
|
|
12
13
|
[prop: string]: any;
|
|
13
14
|
}
|
|
@@ -61,6 +61,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
cardSectionEnable: boolean;
|
|
62
62
|
pluginSectionEnable: boolean;
|
|
63
63
|
vueSectionEnable: boolean;
|
|
64
|
+
itemStoreEnable: boolean;
|
|
64
65
|
};
|
|
65
66
|
};
|
|
66
67
|
tvItemListName: {
|
|
@@ -174,6 +175,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
174
175
|
cardSectionEnable: boolean;
|
|
175
176
|
pluginSectionEnable: boolean;
|
|
176
177
|
vueSectionEnable: boolean;
|
|
178
|
+
itemStoreEnable: boolean;
|
|
177
179
|
};
|
|
178
180
|
};
|
|
179
181
|
tvItemListName: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quicktvui/quicktvui3",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.38-beta.1",
|
|
4
4
|
"description": "ExtScreen framework",
|
|
5
5
|
"author": "ExtScreen Team",
|
|
6
6
|
"homepage": "http://extscreen.com",
|
|
@@ -18,5 +18,6 @@
|
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|
|
20
20
|
"web-types.json"
|
|
21
|
-
]
|
|
21
|
+
],
|
|
22
|
+
"web-types": "web-types.json"
|
|
22
23
|
}
|