@ecan-bi/datav 1.3.88 → 1.3.89
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 +4060 -3918
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +24 -24
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/radio/Radio.vue.d.ts +8 -0
- package/types/control/radio/index.d.ts +8 -0
- package/types/control/radio/props.d.ts +5 -0
- package/types/map/map/Map.vue.d.ts +109 -0
- package/types/map/map/index.d.ts +109 -0
- package/types/map/map/props.d.ts +65 -0
package/package.json
CHANGED
|
@@ -36,6 +36,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
36
|
type?: import("vue").PropType<string>;
|
|
37
37
|
default?: string;
|
|
38
38
|
};
|
|
39
|
+
tabVerticalPadding: {
|
|
40
|
+
type?: import("vue").PropType<string>;
|
|
41
|
+
default?: string;
|
|
42
|
+
};
|
|
39
43
|
tabBarGutter: {
|
|
40
44
|
type?: import("vue").PropType<string>;
|
|
41
45
|
default?: string;
|
|
@@ -227,6 +231,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
227
231
|
type?: import("vue").PropType<string>;
|
|
228
232
|
default?: string;
|
|
229
233
|
};
|
|
234
|
+
tabVerticalPadding: {
|
|
235
|
+
type?: import("vue").PropType<string>;
|
|
236
|
+
default?: string;
|
|
237
|
+
};
|
|
230
238
|
tabBarGutter: {
|
|
231
239
|
type?: import("vue").PropType<string>;
|
|
232
240
|
default?: string;
|
|
@@ -35,6 +35,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
35
35
|
type?: import("vue").PropType<string>;
|
|
36
36
|
default?: string;
|
|
37
37
|
};
|
|
38
|
+
tabVerticalPadding: {
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
41
|
+
};
|
|
38
42
|
tabBarGutter: {
|
|
39
43
|
type?: import("vue").PropType<string>;
|
|
40
44
|
default?: string;
|
|
@@ -226,6 +230,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
226
230
|
type?: import("vue").PropType<string>;
|
|
227
231
|
default?: string;
|
|
228
232
|
};
|
|
233
|
+
tabVerticalPadding: {
|
|
234
|
+
type?: import("vue").PropType<string>;
|
|
235
|
+
default?: string;
|
|
236
|
+
};
|
|
229
237
|
tabBarGutter: {
|
|
230
238
|
type?: import("vue").PropType<string>;
|
|
231
239
|
default?: string;
|
|
@@ -16,6 +16,7 @@ export interface RadioProps extends Props {
|
|
|
16
16
|
tabColor: string;
|
|
17
17
|
tabFontSize: string;
|
|
18
18
|
tabHorizontalPadding: string;
|
|
19
|
+
tabVerticalPadding: string;
|
|
19
20
|
tabBarGutter: string;
|
|
20
21
|
tabFlexDirection: 'row' | 'column';
|
|
21
22
|
graphicConfig: {
|
|
@@ -61,6 +62,10 @@ export declare const radioComponentProps: {
|
|
|
61
62
|
type?: import("vue").PropType<string>;
|
|
62
63
|
default?: string;
|
|
63
64
|
};
|
|
65
|
+
tabVerticalPadding: {
|
|
66
|
+
type?: import("vue").PropType<string>;
|
|
67
|
+
default?: string;
|
|
68
|
+
};
|
|
64
69
|
tabBarGutter: {
|
|
65
70
|
type?: import("vue").PropType<string>;
|
|
66
71
|
default?: string;
|
|
@@ -171,6 +171,58 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
171
171
|
[key: string]: any;
|
|
172
172
|
}[];
|
|
173
173
|
};
|
|
174
|
+
legendShow: {
|
|
175
|
+
type?: import("vue").PropType<boolean>;
|
|
176
|
+
default?: boolean;
|
|
177
|
+
};
|
|
178
|
+
legendTextStyleColor: {
|
|
179
|
+
type?: import("vue").PropType<string>;
|
|
180
|
+
default?: string;
|
|
181
|
+
};
|
|
182
|
+
legendLeft: {
|
|
183
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
184
|
+
default?: "left" | "right";
|
|
185
|
+
};
|
|
186
|
+
legendTop: {
|
|
187
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
188
|
+
default?: "top" | "bottom";
|
|
189
|
+
};
|
|
190
|
+
legendOrient: {
|
|
191
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
192
|
+
default?: "vertical" | "horizontal";
|
|
193
|
+
};
|
|
194
|
+
mapLegendType: {
|
|
195
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
196
|
+
default?: "circle" | "rect";
|
|
197
|
+
};
|
|
198
|
+
legendTextShow: {
|
|
199
|
+
type?: import("vue").PropType<boolean>;
|
|
200
|
+
default?: boolean;
|
|
201
|
+
};
|
|
202
|
+
legendTitle: {
|
|
203
|
+
type?: import("vue").PropType<string>;
|
|
204
|
+
default?: string;
|
|
205
|
+
};
|
|
206
|
+
legendTitleColor: {
|
|
207
|
+
type?: import("vue").PropType<string>;
|
|
208
|
+
default?: string;
|
|
209
|
+
};
|
|
210
|
+
legendTitleFontSize: {
|
|
211
|
+
type?: import("vue").PropType<string>;
|
|
212
|
+
default?: string;
|
|
213
|
+
};
|
|
214
|
+
legendFrontText: {
|
|
215
|
+
type?: import("vue").PropType<string>;
|
|
216
|
+
default?: string;
|
|
217
|
+
};
|
|
218
|
+
legendAfterText: {
|
|
219
|
+
type?: import("vue").PropType<string>;
|
|
220
|
+
default?: string;
|
|
221
|
+
};
|
|
222
|
+
legendBoxShadow: {
|
|
223
|
+
type?: import("vue").PropType<string>;
|
|
224
|
+
default?: string;
|
|
225
|
+
};
|
|
174
226
|
id: {
|
|
175
227
|
type?: import("vue").PropType<string>;
|
|
176
228
|
default?: string;
|
|
@@ -368,8 +420,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
368
420
|
isLoadedData: import("vue").Ref<boolean>;
|
|
369
421
|
geoBackgroundImageRef: import("vue").Ref<any>;
|
|
370
422
|
myGeoBackgroundImage: import("vue").ComputedRef<string>;
|
|
423
|
+
mapLegendStyle: import("vue").ComputedRef<any>;
|
|
424
|
+
legendContainerStyle: import("vue").ComputedRef<any>;
|
|
425
|
+
mapLegendList: import("vue").ComputedRef<any[]>;
|
|
426
|
+
hiddenLegendKey: import("vue").Ref<any[]>;
|
|
371
427
|
customClick: () => void;
|
|
372
428
|
onMouseOver: (data?: any) => void;
|
|
429
|
+
handleToggleVisible: (key: string) => void;
|
|
373
430
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
374
431
|
mapJson: {
|
|
375
432
|
type?: import("vue").PropType<{
|
|
@@ -543,6 +600,58 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
543
600
|
[key: string]: any;
|
|
544
601
|
}[];
|
|
545
602
|
};
|
|
603
|
+
legendShow: {
|
|
604
|
+
type?: import("vue").PropType<boolean>;
|
|
605
|
+
default?: boolean;
|
|
606
|
+
};
|
|
607
|
+
legendTextStyleColor: {
|
|
608
|
+
type?: import("vue").PropType<string>;
|
|
609
|
+
default?: string;
|
|
610
|
+
};
|
|
611
|
+
legendLeft: {
|
|
612
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
613
|
+
default?: "left" | "right";
|
|
614
|
+
};
|
|
615
|
+
legendTop: {
|
|
616
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
617
|
+
default?: "top" | "bottom";
|
|
618
|
+
};
|
|
619
|
+
legendOrient: {
|
|
620
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
621
|
+
default?: "vertical" | "horizontal";
|
|
622
|
+
};
|
|
623
|
+
mapLegendType: {
|
|
624
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
625
|
+
default?: "circle" | "rect";
|
|
626
|
+
};
|
|
627
|
+
legendTextShow: {
|
|
628
|
+
type?: import("vue").PropType<boolean>;
|
|
629
|
+
default?: boolean;
|
|
630
|
+
};
|
|
631
|
+
legendTitle: {
|
|
632
|
+
type?: import("vue").PropType<string>;
|
|
633
|
+
default?: string;
|
|
634
|
+
};
|
|
635
|
+
legendTitleColor: {
|
|
636
|
+
type?: import("vue").PropType<string>;
|
|
637
|
+
default?: string;
|
|
638
|
+
};
|
|
639
|
+
legendTitleFontSize: {
|
|
640
|
+
type?: import("vue").PropType<string>;
|
|
641
|
+
default?: string;
|
|
642
|
+
};
|
|
643
|
+
legendFrontText: {
|
|
644
|
+
type?: import("vue").PropType<string>;
|
|
645
|
+
default?: string;
|
|
646
|
+
};
|
|
647
|
+
legendAfterText: {
|
|
648
|
+
type?: import("vue").PropType<string>;
|
|
649
|
+
default?: string;
|
|
650
|
+
};
|
|
651
|
+
legendBoxShadow: {
|
|
652
|
+
type?: import("vue").PropType<string>;
|
|
653
|
+
default?: string;
|
|
654
|
+
};
|
|
546
655
|
id: {
|
|
547
656
|
type?: import("vue").PropType<string>;
|
|
548
657
|
default?: string;
|
package/types/map/map/index.d.ts
CHANGED
|
@@ -171,6 +171,58 @@ export declare const EcanMap: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
171
171
|
[key: string]: any;
|
|
172
172
|
}[];
|
|
173
173
|
};
|
|
174
|
+
legendShow: {
|
|
175
|
+
type?: import("vue").PropType<boolean>;
|
|
176
|
+
default?: boolean;
|
|
177
|
+
};
|
|
178
|
+
legendTextStyleColor: {
|
|
179
|
+
type?: import("vue").PropType<string>;
|
|
180
|
+
default?: string;
|
|
181
|
+
};
|
|
182
|
+
legendLeft: {
|
|
183
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
184
|
+
default?: "left" | "right";
|
|
185
|
+
};
|
|
186
|
+
legendTop: {
|
|
187
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
188
|
+
default?: "top" | "bottom";
|
|
189
|
+
};
|
|
190
|
+
legendOrient: {
|
|
191
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
192
|
+
default?: "vertical" | "horizontal";
|
|
193
|
+
};
|
|
194
|
+
mapLegendType: {
|
|
195
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
196
|
+
default?: "circle" | "rect";
|
|
197
|
+
};
|
|
198
|
+
legendTextShow: {
|
|
199
|
+
type?: import("vue").PropType<boolean>;
|
|
200
|
+
default?: boolean;
|
|
201
|
+
};
|
|
202
|
+
legendTitle: {
|
|
203
|
+
type?: import("vue").PropType<string>;
|
|
204
|
+
default?: string;
|
|
205
|
+
};
|
|
206
|
+
legendTitleColor: {
|
|
207
|
+
type?: import("vue").PropType<string>;
|
|
208
|
+
default?: string;
|
|
209
|
+
};
|
|
210
|
+
legendTitleFontSize: {
|
|
211
|
+
type?: import("vue").PropType<string>;
|
|
212
|
+
default?: string;
|
|
213
|
+
};
|
|
214
|
+
legendFrontText: {
|
|
215
|
+
type?: import("vue").PropType<string>;
|
|
216
|
+
default?: string;
|
|
217
|
+
};
|
|
218
|
+
legendAfterText: {
|
|
219
|
+
type?: import("vue").PropType<string>;
|
|
220
|
+
default?: string;
|
|
221
|
+
};
|
|
222
|
+
legendBoxShadow: {
|
|
223
|
+
type?: import("vue").PropType<string>;
|
|
224
|
+
default?: string;
|
|
225
|
+
};
|
|
174
226
|
id: {
|
|
175
227
|
type?: import("vue").PropType<string>;
|
|
176
228
|
default?: string;
|
|
@@ -368,8 +420,13 @@ export declare const EcanMap: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
368
420
|
isLoadedData: import("vue").Ref<boolean>;
|
|
369
421
|
geoBackgroundImageRef: import("vue").Ref<any>;
|
|
370
422
|
myGeoBackgroundImage: import("vue").ComputedRef<string>;
|
|
423
|
+
mapLegendStyle: import("vue").ComputedRef<any>;
|
|
424
|
+
legendContainerStyle: import("vue").ComputedRef<any>;
|
|
425
|
+
mapLegendList: import("vue").ComputedRef<any[]>;
|
|
426
|
+
hiddenLegendKey: import("vue").Ref<any[]>;
|
|
371
427
|
customClick: () => void;
|
|
372
428
|
onMouseOver: (data?: any) => void;
|
|
429
|
+
handleToggleVisible: (key: string) => void;
|
|
373
430
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
374
431
|
mapJson: {
|
|
375
432
|
type?: import("vue").PropType<{
|
|
@@ -543,6 +600,58 @@ export declare const EcanMap: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
543
600
|
[key: string]: any;
|
|
544
601
|
}[];
|
|
545
602
|
};
|
|
603
|
+
legendShow: {
|
|
604
|
+
type?: import("vue").PropType<boolean>;
|
|
605
|
+
default?: boolean;
|
|
606
|
+
};
|
|
607
|
+
legendTextStyleColor: {
|
|
608
|
+
type?: import("vue").PropType<string>;
|
|
609
|
+
default?: string;
|
|
610
|
+
};
|
|
611
|
+
legendLeft: {
|
|
612
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
613
|
+
default?: "left" | "right";
|
|
614
|
+
};
|
|
615
|
+
legendTop: {
|
|
616
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
617
|
+
default?: "top" | "bottom";
|
|
618
|
+
};
|
|
619
|
+
legendOrient: {
|
|
620
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
621
|
+
default?: "vertical" | "horizontal";
|
|
622
|
+
};
|
|
623
|
+
mapLegendType: {
|
|
624
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
625
|
+
default?: "circle" | "rect";
|
|
626
|
+
};
|
|
627
|
+
legendTextShow: {
|
|
628
|
+
type?: import("vue").PropType<boolean>;
|
|
629
|
+
default?: boolean;
|
|
630
|
+
};
|
|
631
|
+
legendTitle: {
|
|
632
|
+
type?: import("vue").PropType<string>;
|
|
633
|
+
default?: string;
|
|
634
|
+
};
|
|
635
|
+
legendTitleColor: {
|
|
636
|
+
type?: import("vue").PropType<string>;
|
|
637
|
+
default?: string;
|
|
638
|
+
};
|
|
639
|
+
legendTitleFontSize: {
|
|
640
|
+
type?: import("vue").PropType<string>;
|
|
641
|
+
default?: string;
|
|
642
|
+
};
|
|
643
|
+
legendFrontText: {
|
|
644
|
+
type?: import("vue").PropType<string>;
|
|
645
|
+
default?: string;
|
|
646
|
+
};
|
|
647
|
+
legendAfterText: {
|
|
648
|
+
type?: import("vue").PropType<string>;
|
|
649
|
+
default?: string;
|
|
650
|
+
};
|
|
651
|
+
legendBoxShadow: {
|
|
652
|
+
type?: import("vue").PropType<string>;
|
|
653
|
+
default?: string;
|
|
654
|
+
};
|
|
546
655
|
id: {
|
|
547
656
|
type?: import("vue").PropType<string>;
|
|
548
657
|
default?: string;
|
package/types/map/map/props.d.ts
CHANGED
|
@@ -48,6 +48,19 @@ export interface MapProps extends Props {
|
|
|
48
48
|
mapAreaStyleConfig: {
|
|
49
49
|
[key: string]: any;
|
|
50
50
|
}[];
|
|
51
|
+
legendShow: boolean;
|
|
52
|
+
legendTextStyleColor: string;
|
|
53
|
+
legendLeft: 'left' | 'right';
|
|
54
|
+
legendTop: 'top' | 'bottom';
|
|
55
|
+
legendOrient: 'vertical' | 'horizontal';
|
|
56
|
+
mapLegendType: 'rect' | 'circle';
|
|
57
|
+
legendTextShow: boolean;
|
|
58
|
+
legendTitle: string;
|
|
59
|
+
legendTitleColor: string;
|
|
60
|
+
legendTitleFontSize: string;
|
|
61
|
+
legendFrontText: string;
|
|
62
|
+
legendAfterText: string;
|
|
63
|
+
legendBoxShadow: string;
|
|
51
64
|
}
|
|
52
65
|
export declare const mapProps: MapProps;
|
|
53
66
|
export declare const mapComponentProps: {
|
|
@@ -223,6 +236,58 @@ export declare const mapComponentProps: {
|
|
|
223
236
|
[key: string]: any;
|
|
224
237
|
}[];
|
|
225
238
|
};
|
|
239
|
+
legendShow: {
|
|
240
|
+
type?: import("vue").PropType<boolean>;
|
|
241
|
+
default?: boolean;
|
|
242
|
+
};
|
|
243
|
+
legendTextStyleColor: {
|
|
244
|
+
type?: import("vue").PropType<string>;
|
|
245
|
+
default?: string;
|
|
246
|
+
};
|
|
247
|
+
legendLeft: {
|
|
248
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
249
|
+
default?: "left" | "right";
|
|
250
|
+
};
|
|
251
|
+
legendTop: {
|
|
252
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
253
|
+
default?: "top" | "bottom";
|
|
254
|
+
};
|
|
255
|
+
legendOrient: {
|
|
256
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
257
|
+
default?: "vertical" | "horizontal";
|
|
258
|
+
};
|
|
259
|
+
mapLegendType: {
|
|
260
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
261
|
+
default?: "circle" | "rect";
|
|
262
|
+
};
|
|
263
|
+
legendTextShow: {
|
|
264
|
+
type?: import("vue").PropType<boolean>;
|
|
265
|
+
default?: boolean;
|
|
266
|
+
};
|
|
267
|
+
legendTitle: {
|
|
268
|
+
type?: import("vue").PropType<string>;
|
|
269
|
+
default?: string;
|
|
270
|
+
};
|
|
271
|
+
legendTitleColor: {
|
|
272
|
+
type?: import("vue").PropType<string>;
|
|
273
|
+
default?: string;
|
|
274
|
+
};
|
|
275
|
+
legendTitleFontSize: {
|
|
276
|
+
type?: import("vue").PropType<string>;
|
|
277
|
+
default?: string;
|
|
278
|
+
};
|
|
279
|
+
legendFrontText: {
|
|
280
|
+
type?: import("vue").PropType<string>;
|
|
281
|
+
default?: string;
|
|
282
|
+
};
|
|
283
|
+
legendAfterText: {
|
|
284
|
+
type?: import("vue").PropType<string>;
|
|
285
|
+
default?: string;
|
|
286
|
+
};
|
|
287
|
+
legendBoxShadow: {
|
|
288
|
+
type?: import("vue").PropType<string>;
|
|
289
|
+
default?: string;
|
|
290
|
+
};
|
|
226
291
|
id: {
|
|
227
292
|
type?: import("vue").PropType<string>;
|
|
228
293
|
default?: string;
|