@ecan-bi/datav 1.3.29 → 1.3.31
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.es.js +3795 -3601
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +30 -30
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/bar/Bar.vue.d.ts +18 -0
- package/types/graph/bar/index.d.ts +18 -0
- package/types/graph/bar/props.d.ts +10 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +18 -0
- package/types/graph/combo-graph/index.d.ts +18 -0
- package/types/graph/combo-graph/props.d.ts +10 -0
- package/types/graph/line/Line.vue.d.ts +18 -0
- package/types/graph/line/index.d.ts +18 -0
- package/types/graph/line/props.d.ts +12 -0
- package/types/text/counter/Counter.vue.d.ts +309 -0
- package/types/text/counter/index.d.ts +310 -0
- package/types/text/counter/props.d.ts +169 -0
- package/types/text/index.d.ts +1 -0
- package/types/text/text/Text.vue.d.ts +8 -0
- package/types/text/text/index.d.ts +8 -0
- package/types/text/text/props.d.ts +5 -0
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import { Props } from '../../utils/props';
|
|
2
|
+
export interface CounterProps extends Props {
|
|
3
|
+
digits: number;
|
|
4
|
+
counterBackgroundImage: string;
|
|
5
|
+
color: string;
|
|
6
|
+
unitInterval: number;
|
|
7
|
+
fontSize: string;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
fontStyle: string;
|
|
10
|
+
unitWidth: string;
|
|
11
|
+
unitHeight: string;
|
|
12
|
+
data: string;
|
|
13
|
+
graphicConfig: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
export declare const counterProps: CounterProps;
|
|
18
|
+
export declare const counterComponentProps: {
|
|
19
|
+
digits: {
|
|
20
|
+
type?: import("vue").PropType<number>;
|
|
21
|
+
default?: number;
|
|
22
|
+
};
|
|
23
|
+
counterBackgroundImage: {
|
|
24
|
+
type?: import("vue").PropType<string>;
|
|
25
|
+
default?: string;
|
|
26
|
+
};
|
|
27
|
+
color: {
|
|
28
|
+
type?: import("vue").PropType<string>;
|
|
29
|
+
default?: string;
|
|
30
|
+
};
|
|
31
|
+
unitInterval: {
|
|
32
|
+
type?: import("vue").PropType<number>;
|
|
33
|
+
default?: number;
|
|
34
|
+
};
|
|
35
|
+
fontSize: {
|
|
36
|
+
type?: import("vue").PropType<string>;
|
|
37
|
+
default?: string;
|
|
38
|
+
};
|
|
39
|
+
fontWeight: {
|
|
40
|
+
type?: import("vue").PropType<number>;
|
|
41
|
+
default?: number;
|
|
42
|
+
};
|
|
43
|
+
fontStyle: {
|
|
44
|
+
type?: import("vue").PropType<string>;
|
|
45
|
+
default?: string;
|
|
46
|
+
};
|
|
47
|
+
unitWidth: {
|
|
48
|
+
type?: import("vue").PropType<string>;
|
|
49
|
+
default?: string;
|
|
50
|
+
};
|
|
51
|
+
unitHeight: {
|
|
52
|
+
type?: import("vue").PropType<string>;
|
|
53
|
+
default?: string;
|
|
54
|
+
};
|
|
55
|
+
data: {
|
|
56
|
+
type?: import("vue").PropType<string>;
|
|
57
|
+
default?: string;
|
|
58
|
+
};
|
|
59
|
+
graphicConfig: {
|
|
60
|
+
type?: import("vue").PropType<{
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
}>;
|
|
63
|
+
default?: {
|
|
64
|
+
[key: string]: any;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
id: {
|
|
68
|
+
type?: import("vue").PropType<string>;
|
|
69
|
+
default?: string;
|
|
70
|
+
};
|
|
71
|
+
name: {
|
|
72
|
+
type?: import("vue").PropType<string>;
|
|
73
|
+
default?: string;
|
|
74
|
+
};
|
|
75
|
+
keyName: {
|
|
76
|
+
type?: import("vue").PropType<string>;
|
|
77
|
+
default?: string;
|
|
78
|
+
};
|
|
79
|
+
type: {
|
|
80
|
+
type?: import("vue").PropType<string>;
|
|
81
|
+
default?: string;
|
|
82
|
+
};
|
|
83
|
+
width: {
|
|
84
|
+
type?: import("vue").PropType<string>;
|
|
85
|
+
default?: string;
|
|
86
|
+
};
|
|
87
|
+
height: {
|
|
88
|
+
type?: import("vue").PropType<string>;
|
|
89
|
+
default?: string;
|
|
90
|
+
};
|
|
91
|
+
position: {
|
|
92
|
+
type?: import("vue").PropType<string>;
|
|
93
|
+
default?: string;
|
|
94
|
+
};
|
|
95
|
+
top: {
|
|
96
|
+
type?: import("vue").PropType<string>;
|
|
97
|
+
default?: string;
|
|
98
|
+
};
|
|
99
|
+
left: {
|
|
100
|
+
type?: import("vue").PropType<string>;
|
|
101
|
+
default?: string;
|
|
102
|
+
};
|
|
103
|
+
zIndex: {
|
|
104
|
+
type?: import("vue").PropType<number>;
|
|
105
|
+
default?: number;
|
|
106
|
+
};
|
|
107
|
+
rotate: {
|
|
108
|
+
type?: import("vue").PropType<string>;
|
|
109
|
+
default?: string;
|
|
110
|
+
};
|
|
111
|
+
isShow: {
|
|
112
|
+
type?: import("vue").PropType<boolean>;
|
|
113
|
+
default?: boolean;
|
|
114
|
+
};
|
|
115
|
+
isRender: {
|
|
116
|
+
type?: import("vue").PropType<boolean>;
|
|
117
|
+
default?: boolean;
|
|
118
|
+
};
|
|
119
|
+
events: {
|
|
120
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
121
|
+
default?: import('../../utils/props').Events;
|
|
122
|
+
};
|
|
123
|
+
requestUrl: {
|
|
124
|
+
type?: import("vue").PropType<string>;
|
|
125
|
+
default?: string;
|
|
126
|
+
};
|
|
127
|
+
requestMethod: {
|
|
128
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
129
|
+
default?: import('../../utils/props').RequestMethod;
|
|
130
|
+
};
|
|
131
|
+
requestHeaders: {
|
|
132
|
+
type?: import("vue").PropType<{
|
|
133
|
+
[key: string]: any;
|
|
134
|
+
}>;
|
|
135
|
+
default?: {
|
|
136
|
+
[key: string]: any;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
isOpenRequestTimer: {
|
|
140
|
+
type?: import("vue").PropType<boolean>;
|
|
141
|
+
default?: boolean;
|
|
142
|
+
};
|
|
143
|
+
requestInterval: {
|
|
144
|
+
type?: import("vue").PropType<number>;
|
|
145
|
+
default?: number;
|
|
146
|
+
};
|
|
147
|
+
requestParams: {
|
|
148
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
149
|
+
default?: import('../../utils/props').RequestParams;
|
|
150
|
+
};
|
|
151
|
+
requestSort: {
|
|
152
|
+
type?: import("vue").PropType<number>;
|
|
153
|
+
default?: number;
|
|
154
|
+
};
|
|
155
|
+
dataType: {
|
|
156
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
157
|
+
default?: "indicator" | "static" | "request";
|
|
158
|
+
};
|
|
159
|
+
scale?: {
|
|
160
|
+
type?: import("vue").PropType<number>;
|
|
161
|
+
default?: number;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
export interface CounterEvents {
|
|
165
|
+
refreshData: () => void;
|
|
166
|
+
click: () => void;
|
|
167
|
+
resetRecord: () => void;
|
|
168
|
+
}
|
|
169
|
+
export declare const counterEvents: Array<keyof CounterEvents>;
|
package/types/text/index.d.ts
CHANGED
|
@@ -167,6 +167,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
167
167
|
type?: import("vue").PropType<string>;
|
|
168
168
|
default?: string;
|
|
169
169
|
};
|
|
170
|
+
showEllipsis: {
|
|
171
|
+
type?: import("vue").PropType<boolean>;
|
|
172
|
+
default?: boolean;
|
|
173
|
+
};
|
|
170
174
|
id: {
|
|
171
175
|
type?: import("vue").PropType<string>;
|
|
172
176
|
default?: string;
|
|
@@ -440,6 +444,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
440
444
|
type?: import("vue").PropType<string>;
|
|
441
445
|
default?: string;
|
|
442
446
|
};
|
|
447
|
+
showEllipsis: {
|
|
448
|
+
type?: import("vue").PropType<boolean>;
|
|
449
|
+
default?: boolean;
|
|
450
|
+
};
|
|
443
451
|
id: {
|
|
444
452
|
type?: import("vue").PropType<string>;
|
|
445
453
|
default?: string;
|
|
@@ -167,6 +167,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
167
167
|
type?: import("vue").PropType<string>;
|
|
168
168
|
default?: string;
|
|
169
169
|
};
|
|
170
|
+
showEllipsis: {
|
|
171
|
+
type?: import("vue").PropType<boolean>;
|
|
172
|
+
default?: boolean;
|
|
173
|
+
};
|
|
170
174
|
id: {
|
|
171
175
|
type?: import("vue").PropType<string>;
|
|
172
176
|
default?: string;
|
|
@@ -440,6 +444,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
440
444
|
type?: import("vue").PropType<string>;
|
|
441
445
|
default?: string;
|
|
442
446
|
};
|
|
447
|
+
showEllipsis: {
|
|
448
|
+
type?: import("vue").PropType<boolean>;
|
|
449
|
+
default?: boolean;
|
|
450
|
+
};
|
|
443
451
|
id: {
|
|
444
452
|
type?: import("vue").PropType<string>;
|
|
445
453
|
default?: string;
|
|
@@ -44,6 +44,7 @@ export interface TextProps extends Props {
|
|
|
44
44
|
openCustomRequestData?: boolean;
|
|
45
45
|
customRequestName: string;
|
|
46
46
|
customRequestField: string;
|
|
47
|
+
showEllipsis: boolean;
|
|
47
48
|
}
|
|
48
49
|
export declare const textProps: TextProps;
|
|
49
50
|
export declare const textComponentProps: {
|
|
@@ -215,6 +216,10 @@ export declare const textComponentProps: {
|
|
|
215
216
|
type?: import("vue").PropType<string>;
|
|
216
217
|
default?: string;
|
|
217
218
|
};
|
|
219
|
+
showEllipsis: {
|
|
220
|
+
type?: import("vue").PropType<boolean>;
|
|
221
|
+
default?: boolean;
|
|
222
|
+
};
|
|
218
223
|
id: {
|
|
219
224
|
type?: import("vue").PropType<string>;
|
|
220
225
|
default?: string;
|