@ecan-bi/datav 1.4.74 → 1.4.75
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 +3244 -3220
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +21 -21
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/line/Line.vue.d.ts +24 -0
- package/types/graph/line/index.d.ts +24 -0
- package/types/graph/line/props.d.ts +18 -0
- package/types/graph/radar/Radar.vue.d.ts +33 -0
- package/types/graph/radar/index.d.ts +33 -0
- package/types/graph/radar/props.d.ts +24 -0
package/package.json
CHANGED
|
@@ -449,6 +449,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
449
449
|
type?: import("vue").PropType<string>;
|
|
450
450
|
default?: string;
|
|
451
451
|
};
|
|
452
|
+
defaultRangeValue: {
|
|
453
|
+
type?: import("vue").PropType<boolean>;
|
|
454
|
+
default?: boolean;
|
|
455
|
+
};
|
|
456
|
+
startValue: {
|
|
457
|
+
type?: import("vue").PropType<string>;
|
|
458
|
+
default?: string;
|
|
459
|
+
};
|
|
460
|
+
endValue: {
|
|
461
|
+
type?: import("vue").PropType<string>;
|
|
462
|
+
default?: string;
|
|
463
|
+
};
|
|
452
464
|
position: {
|
|
453
465
|
type?: import("vue").PropType<string>;
|
|
454
466
|
default?: string;
|
|
@@ -1157,6 +1169,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1157
1169
|
type?: import("vue").PropType<string>;
|
|
1158
1170
|
default?: string;
|
|
1159
1171
|
};
|
|
1172
|
+
defaultRangeValue: {
|
|
1173
|
+
type?: import("vue").PropType<boolean>;
|
|
1174
|
+
default?: boolean;
|
|
1175
|
+
};
|
|
1176
|
+
startValue: {
|
|
1177
|
+
type?: import("vue").PropType<string>;
|
|
1178
|
+
default?: string;
|
|
1179
|
+
};
|
|
1180
|
+
endValue: {
|
|
1181
|
+
type?: import("vue").PropType<string>;
|
|
1182
|
+
default?: string;
|
|
1183
|
+
};
|
|
1160
1184
|
position: {
|
|
1161
1185
|
type?: import("vue").PropType<string>;
|
|
1162
1186
|
default?: string;
|
|
@@ -449,6 +449,18 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
449
449
|
type?: import("vue").PropType<string>;
|
|
450
450
|
default?: string;
|
|
451
451
|
};
|
|
452
|
+
defaultRangeValue: {
|
|
453
|
+
type?: import("vue").PropType<boolean>;
|
|
454
|
+
default?: boolean;
|
|
455
|
+
};
|
|
456
|
+
startValue: {
|
|
457
|
+
type?: import("vue").PropType<string>;
|
|
458
|
+
default?: string;
|
|
459
|
+
};
|
|
460
|
+
endValue: {
|
|
461
|
+
type?: import("vue").PropType<string>;
|
|
462
|
+
default?: string;
|
|
463
|
+
};
|
|
452
464
|
position: {
|
|
453
465
|
type?: import("vue").PropType<string>;
|
|
454
466
|
default?: string;
|
|
@@ -1157,6 +1169,18 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
1157
1169
|
type?: import("vue").PropType<string>;
|
|
1158
1170
|
default?: string;
|
|
1159
1171
|
};
|
|
1172
|
+
defaultRangeValue: {
|
|
1173
|
+
type?: import("vue").PropType<boolean>;
|
|
1174
|
+
default?: boolean;
|
|
1175
|
+
};
|
|
1176
|
+
startValue: {
|
|
1177
|
+
type?: import("vue").PropType<string>;
|
|
1178
|
+
default?: string;
|
|
1179
|
+
};
|
|
1180
|
+
endValue: {
|
|
1181
|
+
type?: import("vue").PropType<string>;
|
|
1182
|
+
default?: string;
|
|
1183
|
+
};
|
|
1160
1184
|
position: {
|
|
1161
1185
|
type?: import("vue").PropType<string>;
|
|
1162
1186
|
default?: string;
|
|
@@ -102,6 +102,9 @@ export interface LineProps extends Props {
|
|
|
102
102
|
tipText: string;
|
|
103
103
|
tipTextColor: string;
|
|
104
104
|
tipTextFontSize: string;
|
|
105
|
+
defaultRangeValue: boolean;
|
|
106
|
+
startValue: string;
|
|
107
|
+
endValue: string;
|
|
105
108
|
}
|
|
106
109
|
export declare const lineProps: {
|
|
107
110
|
id: string;
|
|
@@ -222,6 +225,9 @@ export declare const lineProps: {
|
|
|
222
225
|
tipText: string;
|
|
223
226
|
tipTextColor: string;
|
|
224
227
|
tipTextFontSize: string;
|
|
228
|
+
defaultRangeValue: boolean;
|
|
229
|
+
startValue: string;
|
|
230
|
+
endValue: string;
|
|
225
231
|
position: string;
|
|
226
232
|
zIndex: number;
|
|
227
233
|
isShow: boolean;
|
|
@@ -694,6 +700,18 @@ export declare const lineComponentProps: {
|
|
|
694
700
|
type?: import("vue").PropType<string>;
|
|
695
701
|
default?: string;
|
|
696
702
|
};
|
|
703
|
+
defaultRangeValue: {
|
|
704
|
+
type?: import("vue").PropType<boolean>;
|
|
705
|
+
default?: boolean;
|
|
706
|
+
};
|
|
707
|
+
startValue: {
|
|
708
|
+
type?: import("vue").PropType<string>;
|
|
709
|
+
default?: string;
|
|
710
|
+
};
|
|
711
|
+
endValue: {
|
|
712
|
+
type?: import("vue").PropType<string>;
|
|
713
|
+
default?: string;
|
|
714
|
+
};
|
|
697
715
|
position: {
|
|
698
716
|
type?: import("vue").PropType<string>;
|
|
699
717
|
default?: string;
|
|
@@ -285,6 +285,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
285
285
|
type?: import("vue").PropType<number>;
|
|
286
286
|
default?: number;
|
|
287
287
|
};
|
|
288
|
+
noDataTip: {
|
|
289
|
+
type?: import("vue").PropType<boolean>;
|
|
290
|
+
default?: boolean;
|
|
291
|
+
};
|
|
292
|
+
tipText: {
|
|
293
|
+
type?: import("vue").PropType<string>;
|
|
294
|
+
default?: string;
|
|
295
|
+
};
|
|
296
|
+
tipTextColor: {
|
|
297
|
+
type?: import("vue").PropType<string>;
|
|
298
|
+
default?: string;
|
|
299
|
+
};
|
|
300
|
+
tipTextFontSize: {
|
|
301
|
+
type?: import("vue").PropType<string>;
|
|
302
|
+
default?: string;
|
|
303
|
+
};
|
|
288
304
|
position: {
|
|
289
305
|
type?: import("vue").PropType<string>;
|
|
290
306
|
default?: string;
|
|
@@ -458,6 +474,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
458
474
|
onClose: () => void;
|
|
459
475
|
ecanModal: import("vue").Ref<any>;
|
|
460
476
|
echartRef: import("vue").Ref<any>;
|
|
477
|
+
emptyData: import("vue").Ref<boolean>;
|
|
461
478
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
462
479
|
id: {
|
|
463
480
|
type?: import("vue").PropType<string>;
|
|
@@ -745,6 +762,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
745
762
|
type?: import("vue").PropType<number>;
|
|
746
763
|
default?: number;
|
|
747
764
|
};
|
|
765
|
+
noDataTip: {
|
|
766
|
+
type?: import("vue").PropType<boolean>;
|
|
767
|
+
default?: boolean;
|
|
768
|
+
};
|
|
769
|
+
tipText: {
|
|
770
|
+
type?: import("vue").PropType<string>;
|
|
771
|
+
default?: string;
|
|
772
|
+
};
|
|
773
|
+
tipTextColor: {
|
|
774
|
+
type?: import("vue").PropType<string>;
|
|
775
|
+
default?: string;
|
|
776
|
+
};
|
|
777
|
+
tipTextFontSize: {
|
|
778
|
+
type?: import("vue").PropType<string>;
|
|
779
|
+
default?: string;
|
|
780
|
+
};
|
|
748
781
|
position: {
|
|
749
782
|
type?: import("vue").PropType<string>;
|
|
750
783
|
default?: string;
|
|
@@ -285,6 +285,22 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
|
|
|
285
285
|
type?: import("vue").PropType<number>;
|
|
286
286
|
default?: number;
|
|
287
287
|
};
|
|
288
|
+
noDataTip: {
|
|
289
|
+
type?: import("vue").PropType<boolean>;
|
|
290
|
+
default?: boolean;
|
|
291
|
+
};
|
|
292
|
+
tipText: {
|
|
293
|
+
type?: import("vue").PropType<string>;
|
|
294
|
+
default?: string;
|
|
295
|
+
};
|
|
296
|
+
tipTextColor: {
|
|
297
|
+
type?: import("vue").PropType<string>;
|
|
298
|
+
default?: string;
|
|
299
|
+
};
|
|
300
|
+
tipTextFontSize: {
|
|
301
|
+
type?: import("vue").PropType<string>;
|
|
302
|
+
default?: string;
|
|
303
|
+
};
|
|
288
304
|
position: {
|
|
289
305
|
type?: import("vue").PropType<string>;
|
|
290
306
|
default?: string;
|
|
@@ -458,6 +474,7 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
|
|
|
458
474
|
onClose: () => void;
|
|
459
475
|
ecanModal: import("vue").Ref<any>;
|
|
460
476
|
echartRef: import("vue").Ref<any>;
|
|
477
|
+
emptyData: import("vue").Ref<boolean>;
|
|
461
478
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
462
479
|
id: {
|
|
463
480
|
type?: import("vue").PropType<string>;
|
|
@@ -745,6 +762,22 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
|
|
|
745
762
|
type?: import("vue").PropType<number>;
|
|
746
763
|
default?: number;
|
|
747
764
|
};
|
|
765
|
+
noDataTip: {
|
|
766
|
+
type?: import("vue").PropType<boolean>;
|
|
767
|
+
default?: boolean;
|
|
768
|
+
};
|
|
769
|
+
tipText: {
|
|
770
|
+
type?: import("vue").PropType<string>;
|
|
771
|
+
default?: string;
|
|
772
|
+
};
|
|
773
|
+
tipTextColor: {
|
|
774
|
+
type?: import("vue").PropType<string>;
|
|
775
|
+
default?: string;
|
|
776
|
+
};
|
|
777
|
+
tipTextFontSize: {
|
|
778
|
+
type?: import("vue").PropType<string>;
|
|
779
|
+
default?: string;
|
|
780
|
+
};
|
|
748
781
|
position: {
|
|
749
782
|
type?: import("vue").PropType<string>;
|
|
750
783
|
default?: string;
|
|
@@ -59,6 +59,10 @@ export interface RadarProps extends Props {
|
|
|
59
59
|
gradientShow: boolean;
|
|
60
60
|
gradientColors: string[];
|
|
61
61
|
gradientOffset: number;
|
|
62
|
+
noDataTip: boolean;
|
|
63
|
+
tipText: string;
|
|
64
|
+
tipTextColor: string;
|
|
65
|
+
tipTextFontSize: string;
|
|
62
66
|
}
|
|
63
67
|
export declare const radarProps: {
|
|
64
68
|
id: string;
|
|
@@ -138,6 +142,10 @@ export declare const radarProps: {
|
|
|
138
142
|
gradientShow: boolean;
|
|
139
143
|
gradientColors: string[];
|
|
140
144
|
gradientOffset: number;
|
|
145
|
+
noDataTip: boolean;
|
|
146
|
+
tipText: string;
|
|
147
|
+
tipTextColor: string;
|
|
148
|
+
tipTextFontSize: string;
|
|
141
149
|
position: string;
|
|
142
150
|
zIndex: number;
|
|
143
151
|
isShow: boolean;
|
|
@@ -446,6 +454,22 @@ export declare const radarComponentProps: {
|
|
|
446
454
|
type?: import("vue").PropType<number>;
|
|
447
455
|
default?: number;
|
|
448
456
|
};
|
|
457
|
+
noDataTip: {
|
|
458
|
+
type?: import("vue").PropType<boolean>;
|
|
459
|
+
default?: boolean;
|
|
460
|
+
};
|
|
461
|
+
tipText: {
|
|
462
|
+
type?: import("vue").PropType<string>;
|
|
463
|
+
default?: string;
|
|
464
|
+
};
|
|
465
|
+
tipTextColor: {
|
|
466
|
+
type?: import("vue").PropType<string>;
|
|
467
|
+
default?: string;
|
|
468
|
+
};
|
|
469
|
+
tipTextFontSize: {
|
|
470
|
+
type?: import("vue").PropType<string>;
|
|
471
|
+
default?: string;
|
|
472
|
+
};
|
|
449
473
|
position: {
|
|
450
474
|
type?: import("vue").PropType<string>;
|
|
451
475
|
default?: string;
|