@tmesoft/data-screen-set 1.0.1 → 1.0.3
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/data-screen-set-lib.d.ts +30 -18
- package/dist/data-screen-set-lib.es.js +2499 -2479
- package/dist/data-screen-set-lib.umd.js +16 -16
- package/package.json +1 -1
|
@@ -5,24 +5,7 @@ import { ExtractPropTypes } from 'vue';
|
|
|
5
5
|
import { PropType } from 'vue';
|
|
6
6
|
import { PublicProps } from 'vue';
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
'数据卡' = "data-target",
|
|
10
|
-
'自定义卡' = "target"
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export declare interface CustomListPage {
|
|
14
|
-
id: number;
|
|
15
|
-
bigScreenVersionId: number;
|
|
16
|
-
type: EbigScreenCustomCard;
|
|
17
|
-
name: string;
|
|
18
|
-
list: any[];
|
|
19
|
-
swiperTime?: number;
|
|
20
|
-
isLoop?: boolean;
|
|
21
|
-
volume?: boolean;
|
|
22
|
-
isEdit: boolean;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export declare const DataScreenSet: DefineComponent<ExtractPropTypes< {
|
|
8
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes< {
|
|
26
9
|
customCardCoordinateList: {
|
|
27
10
|
type: {
|
|
28
11
|
(arrayLength: number): {
|
|
@@ -249,6 +232,35 @@ activeId: number;
|
|
|
249
232
|
activeType: CardType;
|
|
250
233
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
251
234
|
|
|
235
|
+
declare function __VLS_template(): {
|
|
236
|
+
default?(_: {}): any;
|
|
237
|
+
};
|
|
238
|
+
|
|
239
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
240
|
+
new (): {
|
|
241
|
+
$slots: S;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
|
|
245
|
+
export declare enum CardType {
|
|
246
|
+
'数据卡' = "data-target",
|
|
247
|
+
'自定义卡' = "target"
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export declare interface CustomListPage {
|
|
251
|
+
id: number;
|
|
252
|
+
bigScreenVersionId: number;
|
|
253
|
+
type: EbigScreenCustomCard;
|
|
254
|
+
name: string;
|
|
255
|
+
list: any[];
|
|
256
|
+
swiperTime?: number;
|
|
257
|
+
isLoop?: boolean;
|
|
258
|
+
volume?: boolean;
|
|
259
|
+
isEdit: boolean;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
export declare const DataScreenSet: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
263
|
+
|
|
252
264
|
export declare enum EbigScreenCustomCard {
|
|
253
265
|
'图集' = 1,
|
|
254
266
|
'视频' = 2,
|