@ecan-bi/datav 1.2.78 → 1.2.80
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 +4051 -3927
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +31 -31
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +10 -2
- package/types/container/border/index.d.ts +10 -2
- package/types/container/border/props.d.ts +5 -0
- package/types/container/modal/Modal.vue.d.ts +8 -0
- package/types/container/modal/index.d.ts +8 -0
- package/types/container/modal/props.d.ts +5 -0
- package/types/graph/line/Line.vue.d.ts +9 -0
- package/types/graph/line/index.d.ts +9 -0
- package/types/graph/line/props.d.ts +6 -0
- package/types/graph/radar/Radar.vue.d.ts +9 -0
- package/types/graph/radar/index.d.ts +9 -0
- package/types/graph/radar/props.d.ts +6 -0
- package/types/graph/scatter/Scatter.vue.d.ts +9 -0
- package/types/graph/scatter/index.d.ts +9 -0
- package/types/graph/scatter/props.d.ts +5 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
- package/types/setting/provider-config/index.d.ts +16 -0
- package/types/setting/provider-config/props.d.ts +11 -0
- package/types/table/table/Table.vue.d.ts +26 -1
- package/types/table/table/index.d.ts +26 -1
- package/types/table/table/props.d.ts +15 -0
- package/types/text/text/Text.vue.d.ts +33 -0
- package/types/text/text/index.d.ts +33 -0
- package/types/text/text/props.d.ts +20 -0
- package/types/utils/mobileUtils.d.ts +3 -0
|
@@ -7,6 +7,9 @@ export interface ProviderConfig {
|
|
|
7
7
|
[key: string]: string[];
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
combinationMap: {
|
|
11
|
+
[key: string]: any[];
|
|
12
|
+
};
|
|
10
13
|
width: string;
|
|
11
14
|
height: string;
|
|
12
15
|
}
|
|
@@ -36,6 +39,14 @@ export declare const providerConfigComponentProps: {
|
|
|
36
39
|
};
|
|
37
40
|
};
|
|
38
41
|
};
|
|
42
|
+
combinationMap: {
|
|
43
|
+
type?: import("vue").PropType<{
|
|
44
|
+
[key: string]: any[];
|
|
45
|
+
}>;
|
|
46
|
+
default?: {
|
|
47
|
+
[key: string]: any[];
|
|
48
|
+
};
|
|
49
|
+
};
|
|
39
50
|
width: {
|
|
40
51
|
type?: import("vue").PropType<string>;
|
|
41
52
|
default?: string;
|
|
@@ -55,6 +55,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
55
55
|
type?: import("vue").PropType<string>;
|
|
56
56
|
default?: string;
|
|
57
57
|
};
|
|
58
|
+
cellFontColor: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
58
62
|
borderColor: {
|
|
59
63
|
type?: import("vue").PropType<string>;
|
|
60
64
|
default?: string;
|
|
@@ -87,6 +91,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
87
91
|
type?: import("vue").PropType<string>;
|
|
88
92
|
default?: string;
|
|
89
93
|
};
|
|
94
|
+
headerFontColor: {
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
97
|
+
};
|
|
90
98
|
headerFontWeight: {
|
|
91
99
|
type?: import("vue").PropType<number>;
|
|
92
100
|
default?: number;
|
|
@@ -151,6 +159,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
151
159
|
type?: import("vue").PropType<boolean>;
|
|
152
160
|
default?: boolean;
|
|
153
161
|
};
|
|
162
|
+
hideTableHeader: {
|
|
163
|
+
type?: import("vue").PropType<boolean>;
|
|
164
|
+
default?: boolean;
|
|
165
|
+
};
|
|
154
166
|
id: {
|
|
155
167
|
type?: import("vue").PropType<string>;
|
|
156
168
|
default?: string;
|
|
@@ -279,9 +291,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
279
291
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
280
292
|
pageSize: import("vue").Ref<number>;
|
|
281
293
|
tableRef: import("vue").Ref<any>;
|
|
282
|
-
headerBgColor: import("vue").ComputedRef<string>;
|
|
283
294
|
rowClassName: (_record: any, index: number) => any;
|
|
284
295
|
tableHeight: import("vue").ComputedRef<string>;
|
|
296
|
+
tableHeaderBgColor: import("vue").ComputedRef<string>;
|
|
297
|
+
tableBodyBgColor: import("vue").ComputedRef<string>;
|
|
285
298
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
286
299
|
columns: {
|
|
287
300
|
type?: import("vue").PropType<{
|
|
@@ -339,6 +352,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
339
352
|
type?: import("vue").PropType<string>;
|
|
340
353
|
default?: string;
|
|
341
354
|
};
|
|
355
|
+
cellFontColor: {
|
|
356
|
+
type?: import("vue").PropType<string>;
|
|
357
|
+
default?: string;
|
|
358
|
+
};
|
|
342
359
|
borderColor: {
|
|
343
360
|
type?: import("vue").PropType<string>;
|
|
344
361
|
default?: string;
|
|
@@ -371,6 +388,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
371
388
|
type?: import("vue").PropType<string>;
|
|
372
389
|
default?: string;
|
|
373
390
|
};
|
|
391
|
+
headerFontColor: {
|
|
392
|
+
type?: import("vue").PropType<string>;
|
|
393
|
+
default?: string;
|
|
394
|
+
};
|
|
374
395
|
headerFontWeight: {
|
|
375
396
|
type?: import("vue").PropType<number>;
|
|
376
397
|
default?: number;
|
|
@@ -435,6 +456,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
435
456
|
type?: import("vue").PropType<boolean>;
|
|
436
457
|
default?: boolean;
|
|
437
458
|
};
|
|
459
|
+
hideTableHeader: {
|
|
460
|
+
type?: import("vue").PropType<boolean>;
|
|
461
|
+
default?: boolean;
|
|
462
|
+
};
|
|
438
463
|
id: {
|
|
439
464
|
type?: import("vue").PropType<string>;
|
|
440
465
|
default?: string;
|
|
@@ -55,6 +55,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
55
55
|
type?: import("vue").PropType<string>;
|
|
56
56
|
default?: string;
|
|
57
57
|
};
|
|
58
|
+
cellFontColor: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
58
62
|
borderColor: {
|
|
59
63
|
type?: import("vue").PropType<string>;
|
|
60
64
|
default?: string;
|
|
@@ -87,6 +91,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
87
91
|
type?: import("vue").PropType<string>;
|
|
88
92
|
default?: string;
|
|
89
93
|
};
|
|
94
|
+
headerFontColor: {
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
97
|
+
};
|
|
90
98
|
headerFontWeight: {
|
|
91
99
|
type?: import("vue").PropType<number>;
|
|
92
100
|
default?: number;
|
|
@@ -151,6 +159,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
151
159
|
type?: import("vue").PropType<boolean>;
|
|
152
160
|
default?: boolean;
|
|
153
161
|
};
|
|
162
|
+
hideTableHeader: {
|
|
163
|
+
type?: import("vue").PropType<boolean>;
|
|
164
|
+
default?: boolean;
|
|
165
|
+
};
|
|
154
166
|
id: {
|
|
155
167
|
type?: import("vue").PropType<string>;
|
|
156
168
|
default?: string;
|
|
@@ -279,9 +291,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
279
291
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
280
292
|
pageSize: import("vue").Ref<number>;
|
|
281
293
|
tableRef: import("vue").Ref<any>;
|
|
282
|
-
headerBgColor: import("vue").ComputedRef<string>;
|
|
283
294
|
rowClassName: (_record: any, index: number) => any;
|
|
284
295
|
tableHeight: import("vue").ComputedRef<string>;
|
|
296
|
+
tableHeaderBgColor: import("vue").ComputedRef<string>;
|
|
297
|
+
tableBodyBgColor: import("vue").ComputedRef<string>;
|
|
285
298
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
286
299
|
columns: {
|
|
287
300
|
type?: import("vue").PropType<{
|
|
@@ -339,6 +352,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
339
352
|
type?: import("vue").PropType<string>;
|
|
340
353
|
default?: string;
|
|
341
354
|
};
|
|
355
|
+
cellFontColor: {
|
|
356
|
+
type?: import("vue").PropType<string>;
|
|
357
|
+
default?: string;
|
|
358
|
+
};
|
|
342
359
|
borderColor: {
|
|
343
360
|
type?: import("vue").PropType<string>;
|
|
344
361
|
default?: string;
|
|
@@ -371,6 +388,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
371
388
|
type?: import("vue").PropType<string>;
|
|
372
389
|
default?: string;
|
|
373
390
|
};
|
|
391
|
+
headerFontColor: {
|
|
392
|
+
type?: import("vue").PropType<string>;
|
|
393
|
+
default?: string;
|
|
394
|
+
};
|
|
374
395
|
headerFontWeight: {
|
|
375
396
|
type?: import("vue").PropType<number>;
|
|
376
397
|
default?: number;
|
|
@@ -435,6 +456,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
435
456
|
type?: import("vue").PropType<boolean>;
|
|
436
457
|
default?: boolean;
|
|
437
458
|
};
|
|
459
|
+
hideTableHeader: {
|
|
460
|
+
type?: import("vue").PropType<boolean>;
|
|
461
|
+
default?: boolean;
|
|
462
|
+
};
|
|
438
463
|
id: {
|
|
439
464
|
type?: import("vue").PropType<string>;
|
|
440
465
|
default?: string;
|
|
@@ -16,6 +16,7 @@ export interface TableProps extends Props {
|
|
|
16
16
|
simple: boolean;
|
|
17
17
|
pageSizeShow: boolean;
|
|
18
18
|
cellBackgroundColor: string;
|
|
19
|
+
cellFontColor: string;
|
|
19
20
|
borderColor: string;
|
|
20
21
|
paginationPageSize: number;
|
|
21
22
|
isUseAction: boolean;
|
|
@@ -25,6 +26,7 @@ export interface TableProps extends Props {
|
|
|
25
26
|
[key: string]: any;
|
|
26
27
|
}[];
|
|
27
28
|
headerFontSize: string;
|
|
29
|
+
headerFontColor: string;
|
|
28
30
|
headerFontWeight: number;
|
|
29
31
|
fontSize: string;
|
|
30
32
|
fontWeight: number;
|
|
@@ -42,6 +44,7 @@ export interface TableProps extends Props {
|
|
|
42
44
|
isSummaryFixed: boolean;
|
|
43
45
|
isPageBottom: boolean;
|
|
44
46
|
isShowTotal: boolean;
|
|
47
|
+
hideTableHeader: boolean;
|
|
45
48
|
}
|
|
46
49
|
export declare const tableProps: TableProps;
|
|
47
50
|
export declare const tableComponentProps: {
|
|
@@ -101,6 +104,10 @@ export declare const tableComponentProps: {
|
|
|
101
104
|
type?: import("vue").PropType<string>;
|
|
102
105
|
default?: string;
|
|
103
106
|
};
|
|
107
|
+
cellFontColor: {
|
|
108
|
+
type?: import("vue").PropType<string>;
|
|
109
|
+
default?: string;
|
|
110
|
+
};
|
|
104
111
|
borderColor: {
|
|
105
112
|
type?: import("vue").PropType<string>;
|
|
106
113
|
default?: string;
|
|
@@ -133,6 +140,10 @@ export declare const tableComponentProps: {
|
|
|
133
140
|
type?: import("vue").PropType<string>;
|
|
134
141
|
default?: string;
|
|
135
142
|
};
|
|
143
|
+
headerFontColor: {
|
|
144
|
+
type?: import("vue").PropType<string>;
|
|
145
|
+
default?: string;
|
|
146
|
+
};
|
|
136
147
|
headerFontWeight: {
|
|
137
148
|
type?: import("vue").PropType<number>;
|
|
138
149
|
default?: number;
|
|
@@ -197,6 +208,10 @@ export declare const tableComponentProps: {
|
|
|
197
208
|
type?: import("vue").PropType<boolean>;
|
|
198
209
|
default?: boolean;
|
|
199
210
|
};
|
|
211
|
+
hideTableHeader: {
|
|
212
|
+
type?: import("vue").PropType<boolean>;
|
|
213
|
+
default?: boolean;
|
|
214
|
+
};
|
|
200
215
|
id: {
|
|
201
216
|
type?: import("vue").PropType<string>;
|
|
202
217
|
default?: string;
|
|
@@ -139,6 +139,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
139
139
|
type?: import("vue").PropType<string>;
|
|
140
140
|
default?: string;
|
|
141
141
|
};
|
|
142
|
+
gradientShow: {
|
|
143
|
+
type?: import("vue").PropType<boolean>;
|
|
144
|
+
default?: boolean;
|
|
145
|
+
};
|
|
146
|
+
gradientColor: {
|
|
147
|
+
type?: import("vue").PropType<string>;
|
|
148
|
+
default?: string;
|
|
149
|
+
};
|
|
150
|
+
gradientOffset: {
|
|
151
|
+
type?: import("vue").PropType<number>;
|
|
152
|
+
default?: number;
|
|
153
|
+
};
|
|
154
|
+
gradientAngle: {
|
|
155
|
+
type?: import("vue").PropType<string>;
|
|
156
|
+
default?: string;
|
|
157
|
+
};
|
|
142
158
|
id: {
|
|
143
159
|
type?: import("vue").PropType<string>;
|
|
144
160
|
default?: string;
|
|
@@ -238,6 +254,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
238
254
|
click: () => void;
|
|
239
255
|
textIndent: import("vue").ComputedRef<string>;
|
|
240
256
|
vFontSize: import("vue").ComputedRef<string>;
|
|
257
|
+
gradientStyle: import("vue").ComputedRef<any>;
|
|
241
258
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
242
259
|
text: {
|
|
243
260
|
type?: import("vue").PropType<string>;
|
|
@@ -379,6 +396,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
379
396
|
type?: import("vue").PropType<string>;
|
|
380
397
|
default?: string;
|
|
381
398
|
};
|
|
399
|
+
gradientShow: {
|
|
400
|
+
type?: import("vue").PropType<boolean>;
|
|
401
|
+
default?: boolean;
|
|
402
|
+
};
|
|
403
|
+
gradientColor: {
|
|
404
|
+
type?: import("vue").PropType<string>;
|
|
405
|
+
default?: string;
|
|
406
|
+
};
|
|
407
|
+
gradientOffset: {
|
|
408
|
+
type?: import("vue").PropType<number>;
|
|
409
|
+
default?: number;
|
|
410
|
+
};
|
|
411
|
+
gradientAngle: {
|
|
412
|
+
type?: import("vue").PropType<string>;
|
|
413
|
+
default?: string;
|
|
414
|
+
};
|
|
382
415
|
id: {
|
|
383
416
|
type?: import("vue").PropType<string>;
|
|
384
417
|
default?: string;
|
|
@@ -139,6 +139,22 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
139
139
|
type?: import("vue").PropType<string>;
|
|
140
140
|
default?: string;
|
|
141
141
|
};
|
|
142
|
+
gradientShow: {
|
|
143
|
+
type?: import("vue").PropType<boolean>;
|
|
144
|
+
default?: boolean;
|
|
145
|
+
};
|
|
146
|
+
gradientColor: {
|
|
147
|
+
type?: import("vue").PropType<string>;
|
|
148
|
+
default?: string;
|
|
149
|
+
};
|
|
150
|
+
gradientOffset: {
|
|
151
|
+
type?: import("vue").PropType<number>;
|
|
152
|
+
default?: number;
|
|
153
|
+
};
|
|
154
|
+
gradientAngle: {
|
|
155
|
+
type?: import("vue").PropType<string>;
|
|
156
|
+
default?: string;
|
|
157
|
+
};
|
|
142
158
|
id: {
|
|
143
159
|
type?: import("vue").PropType<string>;
|
|
144
160
|
default?: string;
|
|
@@ -238,6 +254,7 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
238
254
|
click: () => void;
|
|
239
255
|
textIndent: import("vue").ComputedRef<string>;
|
|
240
256
|
vFontSize: import("vue").ComputedRef<string>;
|
|
257
|
+
gradientStyle: import("vue").ComputedRef<any>;
|
|
241
258
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
242
259
|
text: {
|
|
243
260
|
type?: import("vue").PropType<string>;
|
|
@@ -379,6 +396,22 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
379
396
|
type?: import("vue").PropType<string>;
|
|
380
397
|
default?: string;
|
|
381
398
|
};
|
|
399
|
+
gradientShow: {
|
|
400
|
+
type?: import("vue").PropType<boolean>;
|
|
401
|
+
default?: boolean;
|
|
402
|
+
};
|
|
403
|
+
gradientColor: {
|
|
404
|
+
type?: import("vue").PropType<string>;
|
|
405
|
+
default?: string;
|
|
406
|
+
};
|
|
407
|
+
gradientOffset: {
|
|
408
|
+
type?: import("vue").PropType<number>;
|
|
409
|
+
default?: number;
|
|
410
|
+
};
|
|
411
|
+
gradientAngle: {
|
|
412
|
+
type?: import("vue").PropType<string>;
|
|
413
|
+
default?: string;
|
|
414
|
+
};
|
|
382
415
|
id: {
|
|
383
416
|
type?: import("vue").PropType<string>;
|
|
384
417
|
default?: string;
|
|
@@ -37,6 +37,10 @@ export interface TextProps extends Props {
|
|
|
37
37
|
targetRule: string;
|
|
38
38
|
targetValue: string;
|
|
39
39
|
notExpectColor: string;
|
|
40
|
+
gradientShow: boolean;
|
|
41
|
+
gradientColor: string;
|
|
42
|
+
gradientOffset: number;
|
|
43
|
+
gradientAngle: string;
|
|
40
44
|
}
|
|
41
45
|
export declare const textProps: TextProps;
|
|
42
46
|
export declare const textComponentProps: {
|
|
@@ -180,6 +184,22 @@ export declare const textComponentProps: {
|
|
|
180
184
|
type?: import("vue").PropType<string>;
|
|
181
185
|
default?: string;
|
|
182
186
|
};
|
|
187
|
+
gradientShow: {
|
|
188
|
+
type?: import("vue").PropType<boolean>;
|
|
189
|
+
default?: boolean;
|
|
190
|
+
};
|
|
191
|
+
gradientColor: {
|
|
192
|
+
type?: import("vue").PropType<string>;
|
|
193
|
+
default?: string;
|
|
194
|
+
};
|
|
195
|
+
gradientOffset: {
|
|
196
|
+
type?: import("vue").PropType<number>;
|
|
197
|
+
default?: number;
|
|
198
|
+
};
|
|
199
|
+
gradientAngle: {
|
|
200
|
+
type?: import("vue").PropType<string>;
|
|
201
|
+
default?: string;
|
|
202
|
+
};
|
|
183
203
|
id: {
|
|
184
204
|
type?: import("vue").PropType<string>;
|
|
185
205
|
default?: string;
|