@ecan-bi/datav 1.6.42 → 1.6.43
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 +6751 -6637
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +49 -49
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -7
- package/types/common/echarts/Echarts.d.ts +239 -3
- package/types/container/flow-layout/FlowLayout.vue.d.ts +350 -0
- package/types/container/flow-layout/index.d.ts +351 -0
- package/types/container/flow-layout/props.d.ts +185 -0
- package/types/container/index.d.ts +1 -0
- package/types/control/date-picker/DatePicker.vue.d.ts +1 -1
- package/types/control/date-picker/index.d.ts +1 -1
- package/types/control/range-picker/RangePicker.vue.d.ts +2 -2
- package/types/control/range-picker/index.d.ts +2 -2
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +11 -2
- package/types/setting/provider-config/drill-modal/LastDetail.vue.d.ts +2 -2
- package/types/text/text/Text.vue.d.ts +1 -0
- package/types/text/text/index.d.ts +1 -0
- package/types/utils/util.d.ts +1 -0
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
export declare const EcanFlowLayout: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
layOutType: {
|
|
3
|
+
type?: import("vue").PropType<"col" | "row">;
|
|
4
|
+
default?: "col" | "row";
|
|
5
|
+
};
|
|
6
|
+
isFlex: {
|
|
7
|
+
type?: import("vue").PropType<boolean>;
|
|
8
|
+
default?: boolean;
|
|
9
|
+
};
|
|
10
|
+
isWrap: {
|
|
11
|
+
type?: import("vue").PropType<boolean>;
|
|
12
|
+
default?: boolean;
|
|
13
|
+
};
|
|
14
|
+
showOverflowX: {
|
|
15
|
+
type?: import("vue").PropType<boolean>;
|
|
16
|
+
default?: boolean;
|
|
17
|
+
};
|
|
18
|
+
showOverflowY: {
|
|
19
|
+
type?: import("vue").PropType<boolean>;
|
|
20
|
+
default?: boolean;
|
|
21
|
+
};
|
|
22
|
+
batchInsertColRow: {
|
|
23
|
+
type?: import("vue").PropType<null>;
|
|
24
|
+
default?: null;
|
|
25
|
+
};
|
|
26
|
+
id: {
|
|
27
|
+
type?: import("vue").PropType<string>;
|
|
28
|
+
default?: string;
|
|
29
|
+
};
|
|
30
|
+
name: {
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
33
|
+
};
|
|
34
|
+
keyName: {
|
|
35
|
+
type?: import("vue").PropType<string>;
|
|
36
|
+
default?: string;
|
|
37
|
+
};
|
|
38
|
+
type: {
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
41
|
+
};
|
|
42
|
+
width: {
|
|
43
|
+
type?: import("vue").PropType<string>;
|
|
44
|
+
default?: string;
|
|
45
|
+
};
|
|
46
|
+
height: {
|
|
47
|
+
type?: import("vue").PropType<string>;
|
|
48
|
+
default?: string;
|
|
49
|
+
};
|
|
50
|
+
position: {
|
|
51
|
+
type?: import("vue").PropType<string>;
|
|
52
|
+
default?: string;
|
|
53
|
+
};
|
|
54
|
+
top: {
|
|
55
|
+
type?: import("vue").PropType<string>;
|
|
56
|
+
default?: string;
|
|
57
|
+
};
|
|
58
|
+
left: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
62
|
+
zIndex: {
|
|
63
|
+
type?: import("vue").PropType<number>;
|
|
64
|
+
default?: number;
|
|
65
|
+
};
|
|
66
|
+
rotate: {
|
|
67
|
+
type?: import("vue").PropType<string>;
|
|
68
|
+
default?: string;
|
|
69
|
+
};
|
|
70
|
+
isShow: {
|
|
71
|
+
type?: import("vue").PropType<boolean>;
|
|
72
|
+
default?: boolean;
|
|
73
|
+
};
|
|
74
|
+
isRender: {
|
|
75
|
+
type?: import("vue").PropType<boolean>;
|
|
76
|
+
default?: boolean;
|
|
77
|
+
};
|
|
78
|
+
events: {
|
|
79
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
80
|
+
default?: import("../../utils/props").Events;
|
|
81
|
+
};
|
|
82
|
+
requestUrl: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
86
|
+
requestMethod: {
|
|
87
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
88
|
+
default?: import("../../utils/props").RequestMethod;
|
|
89
|
+
};
|
|
90
|
+
requestHeaders: {
|
|
91
|
+
type?: import("vue").PropType<string>;
|
|
92
|
+
default?: string;
|
|
93
|
+
};
|
|
94
|
+
isOpenRequestTimer: {
|
|
95
|
+
type?: import("vue").PropType<boolean>;
|
|
96
|
+
default?: boolean;
|
|
97
|
+
};
|
|
98
|
+
isViewRedrawing: {
|
|
99
|
+
type?: import("vue").PropType<boolean>;
|
|
100
|
+
default?: boolean;
|
|
101
|
+
};
|
|
102
|
+
requestInterval: {
|
|
103
|
+
type?: import("vue").PropType<number>;
|
|
104
|
+
default?: number;
|
|
105
|
+
};
|
|
106
|
+
requestParams: {
|
|
107
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
108
|
+
default?: import("../../utils/props").RequestParams;
|
|
109
|
+
};
|
|
110
|
+
requestSort: {
|
|
111
|
+
type?: import("vue").PropType<number>;
|
|
112
|
+
default?: number;
|
|
113
|
+
};
|
|
114
|
+
dataType: {
|
|
115
|
+
type?: import("vue").PropType<"indicator" | "request" | "component" | "static">;
|
|
116
|
+
default?: "indicator" | "request" | "component" | "static";
|
|
117
|
+
};
|
|
118
|
+
scale?: {
|
|
119
|
+
type?: import("vue").PropType<number>;
|
|
120
|
+
default?: number;
|
|
121
|
+
};
|
|
122
|
+
requestParamsMode: {
|
|
123
|
+
type?: import("vue").PropType<"2" | "1">;
|
|
124
|
+
default?: "2" | "1";
|
|
125
|
+
};
|
|
126
|
+
customRequestParams: {
|
|
127
|
+
type?: import("vue").PropType<string>;
|
|
128
|
+
default?: string;
|
|
129
|
+
};
|
|
130
|
+
dataSetParam?: {
|
|
131
|
+
type?: import("vue").PropType<any>;
|
|
132
|
+
default?: any;
|
|
133
|
+
};
|
|
134
|
+
requestType?: {
|
|
135
|
+
type?: import("vue").PropType<any>;
|
|
136
|
+
default?: any;
|
|
137
|
+
};
|
|
138
|
+
componentDoc?: {
|
|
139
|
+
type?: import("vue").PropType<null>;
|
|
140
|
+
default?: null;
|
|
141
|
+
};
|
|
142
|
+
extendData?: {
|
|
143
|
+
type?: import("vue").PropType<{
|
|
144
|
+
[key: string]: any;
|
|
145
|
+
}>;
|
|
146
|
+
default?: {
|
|
147
|
+
[key: string]: any;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
toolboxShow?: {
|
|
151
|
+
type?: import("vue").PropType<boolean>;
|
|
152
|
+
default?: boolean;
|
|
153
|
+
};
|
|
154
|
+
isShowIndDetail?: {
|
|
155
|
+
type?: import("vue").PropType<boolean>;
|
|
156
|
+
default?: boolean;
|
|
157
|
+
};
|
|
158
|
+
isShowTrend?: {
|
|
159
|
+
type?: import("vue").PropType<boolean>;
|
|
160
|
+
default?: boolean;
|
|
161
|
+
};
|
|
162
|
+
isShowSource?: {
|
|
163
|
+
type?: import("vue").PropType<boolean>;
|
|
164
|
+
default?: boolean;
|
|
165
|
+
};
|
|
166
|
+
indDetailIconColor?: {
|
|
167
|
+
type?: import("vue").PropType<string>;
|
|
168
|
+
default?: string;
|
|
169
|
+
};
|
|
170
|
+
indDetailIconFontSize?: {
|
|
171
|
+
type?: import("vue").PropType<string>;
|
|
172
|
+
default?: string;
|
|
173
|
+
};
|
|
174
|
+
}, {
|
|
175
|
+
style: import("vue").ComputedRef<any>;
|
|
176
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
177
|
+
layOutType: {
|
|
178
|
+
type?: import("vue").PropType<"col" | "row">;
|
|
179
|
+
default?: "col" | "row";
|
|
180
|
+
};
|
|
181
|
+
isFlex: {
|
|
182
|
+
type?: import("vue").PropType<boolean>;
|
|
183
|
+
default?: boolean;
|
|
184
|
+
};
|
|
185
|
+
isWrap: {
|
|
186
|
+
type?: import("vue").PropType<boolean>;
|
|
187
|
+
default?: boolean;
|
|
188
|
+
};
|
|
189
|
+
showOverflowX: {
|
|
190
|
+
type?: import("vue").PropType<boolean>;
|
|
191
|
+
default?: boolean;
|
|
192
|
+
};
|
|
193
|
+
showOverflowY: {
|
|
194
|
+
type?: import("vue").PropType<boolean>;
|
|
195
|
+
default?: boolean;
|
|
196
|
+
};
|
|
197
|
+
batchInsertColRow: {
|
|
198
|
+
type?: import("vue").PropType<null>;
|
|
199
|
+
default?: null;
|
|
200
|
+
};
|
|
201
|
+
id: {
|
|
202
|
+
type?: import("vue").PropType<string>;
|
|
203
|
+
default?: string;
|
|
204
|
+
};
|
|
205
|
+
name: {
|
|
206
|
+
type?: import("vue").PropType<string>;
|
|
207
|
+
default?: string;
|
|
208
|
+
};
|
|
209
|
+
keyName: {
|
|
210
|
+
type?: import("vue").PropType<string>;
|
|
211
|
+
default?: string;
|
|
212
|
+
};
|
|
213
|
+
type: {
|
|
214
|
+
type?: import("vue").PropType<string>;
|
|
215
|
+
default?: string;
|
|
216
|
+
};
|
|
217
|
+
width: {
|
|
218
|
+
type?: import("vue").PropType<string>;
|
|
219
|
+
default?: string;
|
|
220
|
+
};
|
|
221
|
+
height: {
|
|
222
|
+
type?: import("vue").PropType<string>;
|
|
223
|
+
default?: string;
|
|
224
|
+
};
|
|
225
|
+
position: {
|
|
226
|
+
type?: import("vue").PropType<string>;
|
|
227
|
+
default?: string;
|
|
228
|
+
};
|
|
229
|
+
top: {
|
|
230
|
+
type?: import("vue").PropType<string>;
|
|
231
|
+
default?: string;
|
|
232
|
+
};
|
|
233
|
+
left: {
|
|
234
|
+
type?: import("vue").PropType<string>;
|
|
235
|
+
default?: string;
|
|
236
|
+
};
|
|
237
|
+
zIndex: {
|
|
238
|
+
type?: import("vue").PropType<number>;
|
|
239
|
+
default?: number;
|
|
240
|
+
};
|
|
241
|
+
rotate: {
|
|
242
|
+
type?: import("vue").PropType<string>;
|
|
243
|
+
default?: string;
|
|
244
|
+
};
|
|
245
|
+
isShow: {
|
|
246
|
+
type?: import("vue").PropType<boolean>;
|
|
247
|
+
default?: boolean;
|
|
248
|
+
};
|
|
249
|
+
isRender: {
|
|
250
|
+
type?: import("vue").PropType<boolean>;
|
|
251
|
+
default?: boolean;
|
|
252
|
+
};
|
|
253
|
+
events: {
|
|
254
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
255
|
+
default?: import("../../utils/props").Events;
|
|
256
|
+
};
|
|
257
|
+
requestUrl: {
|
|
258
|
+
type?: import("vue").PropType<string>;
|
|
259
|
+
default?: string;
|
|
260
|
+
};
|
|
261
|
+
requestMethod: {
|
|
262
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
263
|
+
default?: import("../../utils/props").RequestMethod;
|
|
264
|
+
};
|
|
265
|
+
requestHeaders: {
|
|
266
|
+
type?: import("vue").PropType<string>;
|
|
267
|
+
default?: string;
|
|
268
|
+
};
|
|
269
|
+
isOpenRequestTimer: {
|
|
270
|
+
type?: import("vue").PropType<boolean>;
|
|
271
|
+
default?: boolean;
|
|
272
|
+
};
|
|
273
|
+
isViewRedrawing: {
|
|
274
|
+
type?: import("vue").PropType<boolean>;
|
|
275
|
+
default?: boolean;
|
|
276
|
+
};
|
|
277
|
+
requestInterval: {
|
|
278
|
+
type?: import("vue").PropType<number>;
|
|
279
|
+
default?: number;
|
|
280
|
+
};
|
|
281
|
+
requestParams: {
|
|
282
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
283
|
+
default?: import("../../utils/props").RequestParams;
|
|
284
|
+
};
|
|
285
|
+
requestSort: {
|
|
286
|
+
type?: import("vue").PropType<number>;
|
|
287
|
+
default?: number;
|
|
288
|
+
};
|
|
289
|
+
dataType: {
|
|
290
|
+
type?: import("vue").PropType<"indicator" | "request" | "component" | "static">;
|
|
291
|
+
default?: "indicator" | "request" | "component" | "static";
|
|
292
|
+
};
|
|
293
|
+
scale?: {
|
|
294
|
+
type?: import("vue").PropType<number>;
|
|
295
|
+
default?: number;
|
|
296
|
+
};
|
|
297
|
+
requestParamsMode: {
|
|
298
|
+
type?: import("vue").PropType<"2" | "1">;
|
|
299
|
+
default?: "2" | "1";
|
|
300
|
+
};
|
|
301
|
+
customRequestParams: {
|
|
302
|
+
type?: import("vue").PropType<string>;
|
|
303
|
+
default?: string;
|
|
304
|
+
};
|
|
305
|
+
dataSetParam?: {
|
|
306
|
+
type?: import("vue").PropType<any>;
|
|
307
|
+
default?: any;
|
|
308
|
+
};
|
|
309
|
+
requestType?: {
|
|
310
|
+
type?: import("vue").PropType<any>;
|
|
311
|
+
default?: any;
|
|
312
|
+
};
|
|
313
|
+
componentDoc?: {
|
|
314
|
+
type?: import("vue").PropType<null>;
|
|
315
|
+
default?: null;
|
|
316
|
+
};
|
|
317
|
+
extendData?: {
|
|
318
|
+
type?: import("vue").PropType<{
|
|
319
|
+
[key: string]: any;
|
|
320
|
+
}>;
|
|
321
|
+
default?: {
|
|
322
|
+
[key: string]: any;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
toolboxShow?: {
|
|
326
|
+
type?: import("vue").PropType<boolean>;
|
|
327
|
+
default?: boolean;
|
|
328
|
+
};
|
|
329
|
+
isShowIndDetail?: {
|
|
330
|
+
type?: import("vue").PropType<boolean>;
|
|
331
|
+
default?: boolean;
|
|
332
|
+
};
|
|
333
|
+
isShowTrend?: {
|
|
334
|
+
type?: import("vue").PropType<boolean>;
|
|
335
|
+
default?: boolean;
|
|
336
|
+
};
|
|
337
|
+
isShowSource?: {
|
|
338
|
+
type?: import("vue").PropType<boolean>;
|
|
339
|
+
default?: boolean;
|
|
340
|
+
};
|
|
341
|
+
indDetailIconColor?: {
|
|
342
|
+
type?: import("vue").PropType<string>;
|
|
343
|
+
default?: string;
|
|
344
|
+
};
|
|
345
|
+
indDetailIconFontSize?: {
|
|
346
|
+
type?: import("vue").PropType<string>;
|
|
347
|
+
default?: string;
|
|
348
|
+
};
|
|
349
|
+
}>>, {}>> & Record<string, any>;
|
|
350
|
+
export default EcanFlowLayout;
|
|
351
|
+
export * from './props';
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import { Props } from '../../utils/props';
|
|
2
|
+
export interface FlowLayoutProps extends Props {
|
|
3
|
+
layOutType: 'col' | 'row';
|
|
4
|
+
isFlex: boolean;
|
|
5
|
+
isWrap: boolean;
|
|
6
|
+
showOverflowX: boolean;
|
|
7
|
+
showOverflowY: boolean;
|
|
8
|
+
batchInsertColRow: null;
|
|
9
|
+
}
|
|
10
|
+
export declare const flowLayoutProps: FlowLayoutProps;
|
|
11
|
+
export declare const flowLayoutComponentProps: {
|
|
12
|
+
layOutType: {
|
|
13
|
+
type?: import("vue").PropType<"col" | "row">;
|
|
14
|
+
default?: "col" | "row";
|
|
15
|
+
};
|
|
16
|
+
isFlex: {
|
|
17
|
+
type?: import("vue").PropType<boolean>;
|
|
18
|
+
default?: boolean;
|
|
19
|
+
};
|
|
20
|
+
isWrap: {
|
|
21
|
+
type?: import("vue").PropType<boolean>;
|
|
22
|
+
default?: boolean;
|
|
23
|
+
};
|
|
24
|
+
showOverflowX: {
|
|
25
|
+
type?: import("vue").PropType<boolean>;
|
|
26
|
+
default?: boolean;
|
|
27
|
+
};
|
|
28
|
+
showOverflowY: {
|
|
29
|
+
type?: import("vue").PropType<boolean>;
|
|
30
|
+
default?: boolean;
|
|
31
|
+
};
|
|
32
|
+
batchInsertColRow: {
|
|
33
|
+
type?: import("vue").PropType<null>;
|
|
34
|
+
default?: null;
|
|
35
|
+
};
|
|
36
|
+
id: {
|
|
37
|
+
type?: import("vue").PropType<string>;
|
|
38
|
+
default?: string;
|
|
39
|
+
};
|
|
40
|
+
name: {
|
|
41
|
+
type?: import("vue").PropType<string>;
|
|
42
|
+
default?: string;
|
|
43
|
+
};
|
|
44
|
+
keyName: {
|
|
45
|
+
type?: import("vue").PropType<string>;
|
|
46
|
+
default?: string;
|
|
47
|
+
};
|
|
48
|
+
type: {
|
|
49
|
+
type?: import("vue").PropType<string>;
|
|
50
|
+
default?: string;
|
|
51
|
+
};
|
|
52
|
+
width: {
|
|
53
|
+
type?: import("vue").PropType<string>;
|
|
54
|
+
default?: string;
|
|
55
|
+
};
|
|
56
|
+
height: {
|
|
57
|
+
type?: import("vue").PropType<string>;
|
|
58
|
+
default?: string;
|
|
59
|
+
};
|
|
60
|
+
position: {
|
|
61
|
+
type?: import("vue").PropType<string>;
|
|
62
|
+
default?: string;
|
|
63
|
+
};
|
|
64
|
+
top: {
|
|
65
|
+
type?: import("vue").PropType<string>;
|
|
66
|
+
default?: string;
|
|
67
|
+
};
|
|
68
|
+
left: {
|
|
69
|
+
type?: import("vue").PropType<string>;
|
|
70
|
+
default?: string;
|
|
71
|
+
};
|
|
72
|
+
zIndex: {
|
|
73
|
+
type?: import("vue").PropType<number>;
|
|
74
|
+
default?: number;
|
|
75
|
+
};
|
|
76
|
+
rotate: {
|
|
77
|
+
type?: import("vue").PropType<string>;
|
|
78
|
+
default?: string;
|
|
79
|
+
};
|
|
80
|
+
isShow: {
|
|
81
|
+
type?: import("vue").PropType<boolean>;
|
|
82
|
+
default?: boolean;
|
|
83
|
+
};
|
|
84
|
+
isRender: {
|
|
85
|
+
type?: import("vue").PropType<boolean>;
|
|
86
|
+
default?: boolean;
|
|
87
|
+
};
|
|
88
|
+
events: {
|
|
89
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
90
|
+
default?: import('../../utils/props').Events;
|
|
91
|
+
};
|
|
92
|
+
requestUrl: {
|
|
93
|
+
type?: import("vue").PropType<string>;
|
|
94
|
+
default?: string;
|
|
95
|
+
};
|
|
96
|
+
requestMethod: {
|
|
97
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
98
|
+
default?: import('../../utils/props').RequestMethod;
|
|
99
|
+
};
|
|
100
|
+
requestHeaders: {
|
|
101
|
+
type?: import("vue").PropType<string>;
|
|
102
|
+
default?: string;
|
|
103
|
+
};
|
|
104
|
+
isOpenRequestTimer: {
|
|
105
|
+
type?: import("vue").PropType<boolean>;
|
|
106
|
+
default?: boolean;
|
|
107
|
+
};
|
|
108
|
+
isViewRedrawing: {
|
|
109
|
+
type?: import("vue").PropType<boolean>;
|
|
110
|
+
default?: boolean;
|
|
111
|
+
};
|
|
112
|
+
requestInterval: {
|
|
113
|
+
type?: import("vue").PropType<number>;
|
|
114
|
+
default?: number;
|
|
115
|
+
};
|
|
116
|
+
requestParams: {
|
|
117
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
118
|
+
default?: import('../../utils/props').RequestParams;
|
|
119
|
+
};
|
|
120
|
+
requestSort: {
|
|
121
|
+
type?: import("vue").PropType<number>;
|
|
122
|
+
default?: number;
|
|
123
|
+
};
|
|
124
|
+
dataType: {
|
|
125
|
+
type?: import("vue").PropType<"indicator" | "request" | "component" | "static">;
|
|
126
|
+
default?: "indicator" | "request" | "component" | "static";
|
|
127
|
+
};
|
|
128
|
+
scale?: {
|
|
129
|
+
type?: import("vue").PropType<number>;
|
|
130
|
+
default?: number;
|
|
131
|
+
};
|
|
132
|
+
requestParamsMode: {
|
|
133
|
+
type?: import("vue").PropType<"2" | "1">;
|
|
134
|
+
default?: "2" | "1";
|
|
135
|
+
};
|
|
136
|
+
customRequestParams: {
|
|
137
|
+
type?: import("vue").PropType<string>;
|
|
138
|
+
default?: string;
|
|
139
|
+
};
|
|
140
|
+
dataSetParam?: {
|
|
141
|
+
type?: import("vue").PropType<any>;
|
|
142
|
+
default?: any;
|
|
143
|
+
};
|
|
144
|
+
requestType?: {
|
|
145
|
+
type?: import("vue").PropType<any>;
|
|
146
|
+
default?: any;
|
|
147
|
+
};
|
|
148
|
+
componentDoc?: {
|
|
149
|
+
type?: import("vue").PropType<null>;
|
|
150
|
+
default?: null;
|
|
151
|
+
};
|
|
152
|
+
extendData?: {
|
|
153
|
+
type?: import("vue").PropType<{
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
}>;
|
|
156
|
+
default?: {
|
|
157
|
+
[key: string]: any;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
toolboxShow?: {
|
|
161
|
+
type?: import("vue").PropType<boolean>;
|
|
162
|
+
default?: boolean;
|
|
163
|
+
};
|
|
164
|
+
isShowIndDetail?: {
|
|
165
|
+
type?: import("vue").PropType<boolean>;
|
|
166
|
+
default?: boolean;
|
|
167
|
+
};
|
|
168
|
+
isShowTrend?: {
|
|
169
|
+
type?: import("vue").PropType<boolean>;
|
|
170
|
+
default?: boolean;
|
|
171
|
+
};
|
|
172
|
+
isShowSource?: {
|
|
173
|
+
type?: import("vue").PropType<boolean>;
|
|
174
|
+
default?: boolean;
|
|
175
|
+
};
|
|
176
|
+
indDetailIconColor?: {
|
|
177
|
+
type?: import("vue").PropType<string>;
|
|
178
|
+
default?: string;
|
|
179
|
+
};
|
|
180
|
+
indDetailIconFontSize?: {
|
|
181
|
+
type?: import("vue").PropType<string>;
|
|
182
|
+
default?: string;
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
export declare const flowLayoutEvents: any[];
|
|
@@ -206,7 +206,7 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
206
206
|
(value: number): import("dayjs").Dayjs;
|
|
207
207
|
};
|
|
208
208
|
day: {
|
|
209
|
-
():
|
|
209
|
+
(): number;
|
|
210
210
|
(value: number): import("dayjs").Dayjs;
|
|
211
211
|
};
|
|
212
212
|
hour: {
|
|
@@ -226,7 +226,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
226
226
|
(value: number): dayjs.Dayjs;
|
|
227
227
|
};
|
|
228
228
|
day: {
|
|
229
|
-
():
|
|
229
|
+
(): number;
|
|
230
230
|
(value: number): dayjs.Dayjs;
|
|
231
231
|
};
|
|
232
232
|
hour: {
|
|
@@ -309,7 +309,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
309
309
|
(value: number): dayjs.Dayjs;
|
|
310
310
|
};
|
|
311
311
|
day: {
|
|
312
|
-
():
|
|
312
|
+
(): number;
|
|
313
313
|
(value: number): dayjs.Dayjs;
|
|
314
314
|
};
|
|
315
315
|
hour: {
|
|
@@ -224,7 +224,7 @@ export declare const EcanRangePicker: import("../../utils/withInstall").SFCWithI
|
|
|
224
224
|
(value: number): import("dayjs").Dayjs;
|
|
225
225
|
};
|
|
226
226
|
day: {
|
|
227
|
-
():
|
|
227
|
+
(): number;
|
|
228
228
|
(value: number): import("dayjs").Dayjs;
|
|
229
229
|
};
|
|
230
230
|
hour: {
|
|
@@ -307,7 +307,7 @@ export declare const EcanRangePicker: import("../../utils/withInstall").SFCWithI
|
|
|
307
307
|
(value: number): import("dayjs").Dayjs;
|
|
308
308
|
};
|
|
309
309
|
day: {
|
|
310
|
-
():
|
|
310
|
+
(): number;
|
|
311
311
|
(value: number): import("dayjs").Dayjs;
|
|
312
312
|
};
|
|
313
313
|
hour: {
|
|
@@ -113,6 +113,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
113
113
|
dropDownMenuVisible: import("vue").Ref<boolean>;
|
|
114
114
|
toBeSelectedDims: any;
|
|
115
115
|
unitMap: any;
|
|
116
|
+
pageSizeOptions: {
|
|
117
|
+
label: string;
|
|
118
|
+
value: number;
|
|
119
|
+
}[];
|
|
120
|
+
pageSizeSelectRef: import("vue").Ref<any>;
|
|
121
|
+
pageSizeDropdownStyle: import("vue").Ref<{}>;
|
|
116
122
|
getContainer: () => Element;
|
|
117
123
|
toggleFullScreen: () => void;
|
|
118
124
|
onDetailCancel: () => void;
|
|
@@ -120,8 +126,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
120
126
|
type: any;
|
|
121
127
|
data: any;
|
|
122
128
|
}) => void;
|
|
123
|
-
handlePageChange: (current: number
|
|
124
|
-
handleTableChange: (_page: any, _filters: any, sorter: any) => void
|
|
129
|
+
handlePageChange: (current: number) => Promise<void>;
|
|
130
|
+
handleTableChange: (_page: any, _filters: any, sorter: any) => Promise<void>;
|
|
125
131
|
onCloseDetailModal: () => void;
|
|
126
132
|
onCloseModal: () => void;
|
|
127
133
|
onZoomModal: () => void;
|
|
@@ -130,6 +136,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
130
136
|
formatCellPercent: (text: any, column: any) => string;
|
|
131
137
|
handleExport: () => Promise<void>;
|
|
132
138
|
drillByDimension: (event: any, typeGuid: string) => void;
|
|
139
|
+
getPageSizeSelectContainer: () => Element;
|
|
140
|
+
pageSizeDropdownVisibleChange: (open: any) => void;
|
|
141
|
+
onPageSizeChange: (pageSize: number) => void;
|
|
133
142
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
134
143
|
theme: {
|
|
135
144
|
type: StringConstructor;
|
|
@@ -67,8 +67,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
67
67
|
downloading: import("vue").Ref<boolean>;
|
|
68
68
|
summaryList: import("vue").Ref<any[]>;
|
|
69
69
|
summaryHeight: import("vue").Ref<number>;
|
|
70
|
-
handleTableChange: (_page: any, _filters: any, sorter: any) => void
|
|
71
|
-
handlePageChange: (current: any, pageSize: any) => void
|
|
70
|
+
handleTableChange: (_page: any, _filters: any, sorter: any) => Promise<void>;
|
|
71
|
+
handlePageChange: (current: any, pageSize: any) => Promise<void>;
|
|
72
72
|
getContainer: () => Element;
|
|
73
73
|
onDetailCancel: () => void;
|
|
74
74
|
toggleFullScreen: () => void;
|
|
@@ -552,6 +552,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
552
552
|
onTransitionend?: (payload: TransitionEvent) => void;
|
|
553
553
|
onTransitionstart?: (payload: TransitionEvent) => void;
|
|
554
554
|
}>;
|
|
555
|
+
clickHandler: (e: MouseEvent) => void;
|
|
555
556
|
myText: import("vue").ComputedRef<string>;
|
|
556
557
|
loading: import("vue").Ref<boolean>;
|
|
557
558
|
click: () => void;
|
|
@@ -552,6 +552,7 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
552
552
|
onTransitionend?: (payload: TransitionEvent) => void;
|
|
553
553
|
onTransitionstart?: (payload: TransitionEvent) => void;
|
|
554
554
|
}>;
|
|
555
|
+
clickHandler: (e: MouseEvent) => void;
|
|
555
556
|
myText: import("vue").ComputedRef<string>;
|
|
556
557
|
loading: import("vue").Ref<boolean>;
|
|
557
558
|
click: () => void;
|
package/types/utils/util.d.ts
CHANGED
|
@@ -73,3 +73,4 @@ export declare function loopConditions(list: any[], field: string, flag: boolean
|
|
|
73
73
|
export declare function isThousandWithUnit(str: string): boolean;
|
|
74
74
|
export declare function isValidDateStr(str: string): boolean;
|
|
75
75
|
export declare function swapArrItem(arr: any[], i: number, j: number): any[];
|
|
76
|
+
export declare function estimateWidth(text: string, fontSize: string): number;
|