@tmesoft/data-screen-set 0.0.7 → 0.0.8
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.
|
@@ -5,15 +5,15 @@ import { ExtractPropTypes } from 'vue';
|
|
|
5
5
|
import { PropType } from 'vue';
|
|
6
6
|
import { PublicProps } from 'vue';
|
|
7
7
|
|
|
8
|
-
declare enum CardType {
|
|
8
|
+
export declare enum CardType {
|
|
9
9
|
'数据卡' = "data-target",
|
|
10
10
|
'自定义卡' = "target"
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
declare interface CustomListPage {
|
|
13
|
+
export declare interface CustomListPage {
|
|
14
14
|
id: number;
|
|
15
15
|
bigScreenVersionId: number;
|
|
16
|
-
type:
|
|
16
|
+
type: EbigScreenCustomCard;
|
|
17
17
|
name: string;
|
|
18
18
|
list: any[];
|
|
19
19
|
swiperTime?: number;
|
|
@@ -22,7 +22,7 @@ declare interface CustomListPage {
|
|
|
22
22
|
isEdit: boolean;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
declare const
|
|
25
|
+
export declare const DataScreenSet: DefineComponent<ExtractPropTypes< {
|
|
26
26
|
customCardCoordinateList: {
|
|
27
27
|
type: {
|
|
28
28
|
(arrayLength: number): {
|
|
@@ -248,15 +248,14 @@ detail: IbigScreenCoordinate;
|
|
|
248
248
|
activeId: number;
|
|
249
249
|
activeType: CardType;
|
|
250
250
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
251
|
-
export default _default;
|
|
252
251
|
|
|
253
|
-
declare const enum
|
|
252
|
+
export declare const enum EbigScreenCustomCard {
|
|
254
253
|
'图片' = 1,
|
|
255
254
|
'视频' = 2,
|
|
256
255
|
'文本' = 3
|
|
257
256
|
}
|
|
258
257
|
|
|
259
|
-
declare interface IbigScreenCoordinate {
|
|
258
|
+
export declare interface IbigScreenCoordinate {
|
|
260
259
|
left: number;
|
|
261
260
|
width: number;
|
|
262
261
|
top: number;
|