@ecan-bi/datav 1.0.51 → 1.0.54
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 +136 -79
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +135 -78
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +37 -35
- package/package.json +1 -1
- package/types/_utils/hooks/useValueFormatter.d.ts +1 -1
- package/types/container/border/Border.vue.d.ts +0 -1
- package/types/container/border/index.d.ts +0 -1
- package/types/container/border/props.d.ts +1 -1
- package/types/control/button/Button.vue.d.ts +36 -0
- package/types/control/button/index.d.ts +36 -0
- package/types/control/button/props.d.ts +20 -0
- package/types/graph/bar/Bar.vue.d.ts +194 -129
- package/types/graph/bar/index.d.ts +65 -0
- package/types/graph/bar/props.d.ts +30 -0
- package/types/table/table/Table.vue.d.ts +80 -0
- package/types/table/table/index.d.ts +80 -0
- package/types/table/table/props.d.ts +42 -0
- package/types/text/proportion/Proportion.vue.d.ts +45 -1
- package/types/text/proportion/index.d.ts +46 -2
- package/types/text/proportion/props.d.ts +24 -0
|
@@ -587,6 +587,34 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
587
587
|
layer: "2";
|
|
588
588
|
};
|
|
589
589
|
};
|
|
590
|
+
isUseHorizontalAxis: {
|
|
591
|
+
type?: undefined;
|
|
592
|
+
default?: undefined;
|
|
593
|
+
} | {
|
|
594
|
+
type: any;
|
|
595
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
596
|
+
[key: string]: any;
|
|
597
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
598
|
+
[key: string]: any;
|
|
599
|
+
chartType: "bar";
|
|
600
|
+
plugin: "1";
|
|
601
|
+
layer: "2";
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
axisInverse: {
|
|
605
|
+
type?: undefined;
|
|
606
|
+
default?: undefined;
|
|
607
|
+
} | {
|
|
608
|
+
type: any;
|
|
609
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
610
|
+
[key: string]: any;
|
|
611
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
612
|
+
[key: string]: any;
|
|
613
|
+
chartType: "bar";
|
|
614
|
+
plugin: "1";
|
|
615
|
+
layer: "2";
|
|
616
|
+
};
|
|
617
|
+
};
|
|
590
618
|
id: {
|
|
591
619
|
type?: undefined;
|
|
592
620
|
default?: undefined;
|
|
@@ -999,6 +1027,9 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
999
1027
|
data: {
|
|
1000
1028
|
[x: string]: any;
|
|
1001
1029
|
}[];
|
|
1030
|
+
inverse: string | number | boolean | {
|
|
1031
|
+
[key: string]: any;
|
|
1032
|
+
};
|
|
1002
1033
|
splitLine: {
|
|
1003
1034
|
show: string | number | boolean | {
|
|
1004
1035
|
[key: string]: any;
|
|
@@ -1029,6 +1060,12 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
1029
1060
|
};
|
|
1030
1061
|
yAxis: {
|
|
1031
1062
|
type: string;
|
|
1063
|
+
data: {
|
|
1064
|
+
[x: string]: any;
|
|
1065
|
+
}[];
|
|
1066
|
+
inverse: string | number | boolean | {
|
|
1067
|
+
[key: string]: any;
|
|
1068
|
+
};
|
|
1032
1069
|
splitLine: {
|
|
1033
1070
|
show: string | number | boolean | {
|
|
1034
1071
|
[key: string]: any;
|
|
@@ -1650,6 +1687,34 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
1650
1687
|
layer: "2";
|
|
1651
1688
|
};
|
|
1652
1689
|
};
|
|
1690
|
+
isUseHorizontalAxis: {
|
|
1691
|
+
type?: undefined;
|
|
1692
|
+
default?: undefined;
|
|
1693
|
+
} | {
|
|
1694
|
+
type: any;
|
|
1695
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
1696
|
+
[key: string]: any;
|
|
1697
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
1698
|
+
[key: string]: any;
|
|
1699
|
+
chartType: "bar";
|
|
1700
|
+
plugin: "1";
|
|
1701
|
+
layer: "2";
|
|
1702
|
+
};
|
|
1703
|
+
};
|
|
1704
|
+
axisInverse: {
|
|
1705
|
+
type?: undefined;
|
|
1706
|
+
default?: undefined;
|
|
1707
|
+
} | {
|
|
1708
|
+
type: any;
|
|
1709
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
1710
|
+
[key: string]: any;
|
|
1711
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
1712
|
+
[key: string]: any;
|
|
1713
|
+
chartType: "bar";
|
|
1714
|
+
plugin: "1";
|
|
1715
|
+
layer: "2";
|
|
1716
|
+
};
|
|
1717
|
+
};
|
|
1653
1718
|
id: {
|
|
1654
1719
|
type?: undefined;
|
|
1655
1720
|
default?: undefined;
|
|
@@ -47,6 +47,8 @@ export interface BarProps extends Props {
|
|
|
47
47
|
toolboxIconStyleBorderColor: string;
|
|
48
48
|
toolboxDownloadUrl: string;
|
|
49
49
|
toolboxInfoText: string;
|
|
50
|
+
isUseHorizontalAxis: boolean;
|
|
51
|
+
axisInverse: boolean;
|
|
50
52
|
}
|
|
51
53
|
export declare const barProps: BarProps;
|
|
52
54
|
export declare const barComponentProps: {
|
|
@@ -638,6 +640,34 @@ export declare const barComponentProps: {
|
|
|
638
640
|
layer: '2';
|
|
639
641
|
};
|
|
640
642
|
};
|
|
643
|
+
isUseHorizontalAxis: {
|
|
644
|
+
type?: undefined;
|
|
645
|
+
default?: undefined;
|
|
646
|
+
} | {
|
|
647
|
+
type: any;
|
|
648
|
+
default: string | number | boolean | string[] | import('../../_utils/props').Events | {
|
|
649
|
+
[key: string]: any;
|
|
650
|
+
} | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
|
|
651
|
+
[key: string]: any;
|
|
652
|
+
chartType: 'bar';
|
|
653
|
+
plugin: '1';
|
|
654
|
+
layer: '2';
|
|
655
|
+
};
|
|
656
|
+
};
|
|
657
|
+
axisInverse: {
|
|
658
|
+
type?: undefined;
|
|
659
|
+
default?: undefined;
|
|
660
|
+
} | {
|
|
661
|
+
type: any;
|
|
662
|
+
default: string | number | boolean | string[] | import('../../_utils/props').Events | {
|
|
663
|
+
[key: string]: any;
|
|
664
|
+
} | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
|
|
665
|
+
[key: string]: any;
|
|
666
|
+
chartType: 'bar';
|
|
667
|
+
plugin: '1';
|
|
668
|
+
layer: '2';
|
|
669
|
+
};
|
|
670
|
+
};
|
|
641
671
|
id: {
|
|
642
672
|
type?: undefined;
|
|
643
673
|
default?: undefined;
|
|
@@ -340,6 +340,46 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
340
340
|
[key: string]: any;
|
|
341
341
|
}[];
|
|
342
342
|
};
|
|
343
|
+
fontSize: {
|
|
344
|
+
type?: undefined;
|
|
345
|
+
default?: undefined;
|
|
346
|
+
} | {
|
|
347
|
+
type: any;
|
|
348
|
+
default: string | number | boolean | Events | {
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
} | import('../../_utils/props').RequestParams | {
|
|
351
|
+
[key: string]: any;
|
|
352
|
+
}[] | {
|
|
353
|
+
[key: string]: any;
|
|
354
|
+
chartType: "table";
|
|
355
|
+
plugin: "1";
|
|
356
|
+
layer: "1";
|
|
357
|
+
} | {
|
|
358
|
+
[key: string]: any;
|
|
359
|
+
}[] | {
|
|
360
|
+
[key: string]: any;
|
|
361
|
+
}[];
|
|
362
|
+
};
|
|
363
|
+
fontWeight: {
|
|
364
|
+
type?: undefined;
|
|
365
|
+
default?: undefined;
|
|
366
|
+
} | {
|
|
367
|
+
type: any;
|
|
368
|
+
default: string | number | boolean | Events | {
|
|
369
|
+
[key: string]: any;
|
|
370
|
+
} | import('../../_utils/props').RequestParams | {
|
|
371
|
+
[key: string]: any;
|
|
372
|
+
}[] | {
|
|
373
|
+
[key: string]: any;
|
|
374
|
+
chartType: "table";
|
|
375
|
+
plugin: "1";
|
|
376
|
+
layer: "1";
|
|
377
|
+
} | {
|
|
378
|
+
[key: string]: any;
|
|
379
|
+
}[] | {
|
|
380
|
+
[key: string]: any;
|
|
381
|
+
}[];
|
|
382
|
+
};
|
|
343
383
|
graphicConfig: {
|
|
344
384
|
type?: undefined;
|
|
345
385
|
default?: undefined;
|
|
@@ -1180,6 +1220,46 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1180
1220
|
[key: string]: any;
|
|
1181
1221
|
}[];
|
|
1182
1222
|
};
|
|
1223
|
+
fontSize: {
|
|
1224
|
+
type?: undefined;
|
|
1225
|
+
default?: undefined;
|
|
1226
|
+
} | {
|
|
1227
|
+
type: any;
|
|
1228
|
+
default: string | number | boolean | Events | {
|
|
1229
|
+
[key: string]: any;
|
|
1230
|
+
} | import('../../_utils/props').RequestParams | {
|
|
1231
|
+
[key: string]: any;
|
|
1232
|
+
}[] | {
|
|
1233
|
+
[key: string]: any;
|
|
1234
|
+
chartType: "table";
|
|
1235
|
+
plugin: "1";
|
|
1236
|
+
layer: "1";
|
|
1237
|
+
} | {
|
|
1238
|
+
[key: string]: any;
|
|
1239
|
+
}[] | {
|
|
1240
|
+
[key: string]: any;
|
|
1241
|
+
}[];
|
|
1242
|
+
};
|
|
1243
|
+
fontWeight: {
|
|
1244
|
+
type?: undefined;
|
|
1245
|
+
default?: undefined;
|
|
1246
|
+
} | {
|
|
1247
|
+
type: any;
|
|
1248
|
+
default: string | number | boolean | Events | {
|
|
1249
|
+
[key: string]: any;
|
|
1250
|
+
} | import('../../_utils/props').RequestParams | {
|
|
1251
|
+
[key: string]: any;
|
|
1252
|
+
}[] | {
|
|
1253
|
+
[key: string]: any;
|
|
1254
|
+
chartType: "table";
|
|
1255
|
+
plugin: "1";
|
|
1256
|
+
layer: "1";
|
|
1257
|
+
} | {
|
|
1258
|
+
[key: string]: any;
|
|
1259
|
+
}[] | {
|
|
1260
|
+
[key: string]: any;
|
|
1261
|
+
}[];
|
|
1262
|
+
};
|
|
1183
1263
|
graphicConfig: {
|
|
1184
1264
|
type?: undefined;
|
|
1185
1265
|
default?: undefined;
|
|
@@ -339,6 +339,46 @@ export declare const EcanTable: import("../../_utils/withInstall").SFCWithInstal
|
|
|
339
339
|
[key: string]: any;
|
|
340
340
|
}[];
|
|
341
341
|
};
|
|
342
|
+
fontSize: {
|
|
343
|
+
type?: undefined;
|
|
344
|
+
default?: undefined;
|
|
345
|
+
} | {
|
|
346
|
+
type: any;
|
|
347
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
348
|
+
[key: string]: any;
|
|
349
|
+
} | import("../../_utils/props").RequestParams | {
|
|
350
|
+
[key: string]: any;
|
|
351
|
+
}[] | {
|
|
352
|
+
[key: string]: any;
|
|
353
|
+
chartType: "table";
|
|
354
|
+
plugin: "1";
|
|
355
|
+
layer: "1";
|
|
356
|
+
} | {
|
|
357
|
+
[key: string]: any;
|
|
358
|
+
}[] | {
|
|
359
|
+
[key: string]: any;
|
|
360
|
+
}[];
|
|
361
|
+
};
|
|
362
|
+
fontWeight: {
|
|
363
|
+
type?: undefined;
|
|
364
|
+
default?: undefined;
|
|
365
|
+
} | {
|
|
366
|
+
type: any;
|
|
367
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
368
|
+
[key: string]: any;
|
|
369
|
+
} | import("../../_utils/props").RequestParams | {
|
|
370
|
+
[key: string]: any;
|
|
371
|
+
}[] | {
|
|
372
|
+
[key: string]: any;
|
|
373
|
+
chartType: "table";
|
|
374
|
+
plugin: "1";
|
|
375
|
+
layer: "1";
|
|
376
|
+
} | {
|
|
377
|
+
[key: string]: any;
|
|
378
|
+
}[] | {
|
|
379
|
+
[key: string]: any;
|
|
380
|
+
}[];
|
|
381
|
+
};
|
|
342
382
|
graphicConfig: {
|
|
343
383
|
type?: undefined;
|
|
344
384
|
default?: undefined;
|
|
@@ -1179,6 +1219,46 @@ export declare const EcanTable: import("../../_utils/withInstall").SFCWithInstal
|
|
|
1179
1219
|
[key: string]: any;
|
|
1180
1220
|
}[];
|
|
1181
1221
|
};
|
|
1222
|
+
fontSize: {
|
|
1223
|
+
type?: undefined;
|
|
1224
|
+
default?: undefined;
|
|
1225
|
+
} | {
|
|
1226
|
+
type: any;
|
|
1227
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
1228
|
+
[key: string]: any;
|
|
1229
|
+
} | import("../../_utils/props").RequestParams | {
|
|
1230
|
+
[key: string]: any;
|
|
1231
|
+
}[] | {
|
|
1232
|
+
[key: string]: any;
|
|
1233
|
+
chartType: "table";
|
|
1234
|
+
plugin: "1";
|
|
1235
|
+
layer: "1";
|
|
1236
|
+
} | {
|
|
1237
|
+
[key: string]: any;
|
|
1238
|
+
}[] | {
|
|
1239
|
+
[key: string]: any;
|
|
1240
|
+
}[];
|
|
1241
|
+
};
|
|
1242
|
+
fontWeight: {
|
|
1243
|
+
type?: undefined;
|
|
1244
|
+
default?: undefined;
|
|
1245
|
+
} | {
|
|
1246
|
+
type: any;
|
|
1247
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
1248
|
+
[key: string]: any;
|
|
1249
|
+
} | import("../../_utils/props").RequestParams | {
|
|
1250
|
+
[key: string]: any;
|
|
1251
|
+
}[] | {
|
|
1252
|
+
[key: string]: any;
|
|
1253
|
+
chartType: "table";
|
|
1254
|
+
plugin: "1";
|
|
1255
|
+
layer: "1";
|
|
1256
|
+
} | {
|
|
1257
|
+
[key: string]: any;
|
|
1258
|
+
}[] | {
|
|
1259
|
+
[key: string]: any;
|
|
1260
|
+
}[];
|
|
1261
|
+
};
|
|
1182
1262
|
graphicConfig: {
|
|
1183
1263
|
type?: undefined;
|
|
1184
1264
|
default?: undefined;
|
|
@@ -23,6 +23,8 @@ export interface TableProps extends Props {
|
|
|
23
23
|
actionList: {
|
|
24
24
|
[key: string]: any;
|
|
25
25
|
}[];
|
|
26
|
+
fontSize: string;
|
|
27
|
+
fontWeight: number;
|
|
26
28
|
graphicConfig: {
|
|
27
29
|
[key: string]: any;
|
|
28
30
|
chartType: 'table';
|
|
@@ -372,6 +374,46 @@ export declare const tableComponentProps: {
|
|
|
372
374
|
[key: string]: any;
|
|
373
375
|
}[];
|
|
374
376
|
};
|
|
377
|
+
fontSize: {
|
|
378
|
+
type?: undefined;
|
|
379
|
+
default?: undefined;
|
|
380
|
+
} | {
|
|
381
|
+
type: any;
|
|
382
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
383
|
+
[key: string]: any;
|
|
384
|
+
} | import('../../_utils/props').RequestParams | {
|
|
385
|
+
[key: string]: any;
|
|
386
|
+
}[] | {
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
chartType: 'table';
|
|
389
|
+
plugin: '1';
|
|
390
|
+
layer: '1';
|
|
391
|
+
} | {
|
|
392
|
+
[key: string]: any;
|
|
393
|
+
}[] | {
|
|
394
|
+
[key: string]: any;
|
|
395
|
+
}[];
|
|
396
|
+
};
|
|
397
|
+
fontWeight: {
|
|
398
|
+
type?: undefined;
|
|
399
|
+
default?: undefined;
|
|
400
|
+
} | {
|
|
401
|
+
type: any;
|
|
402
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
403
|
+
[key: string]: any;
|
|
404
|
+
} | import('../../_utils/props').RequestParams | {
|
|
405
|
+
[key: string]: any;
|
|
406
|
+
}[] | {
|
|
407
|
+
[key: string]: any;
|
|
408
|
+
chartType: 'table';
|
|
409
|
+
plugin: '1';
|
|
410
|
+
layer: '1';
|
|
411
|
+
} | {
|
|
412
|
+
[key: string]: any;
|
|
413
|
+
}[] | {
|
|
414
|
+
[key: string]: any;
|
|
415
|
+
}[];
|
|
416
|
+
};
|
|
375
417
|
graphicConfig: {
|
|
376
418
|
type?: undefined;
|
|
377
419
|
default?: undefined;
|
|
@@ -132,6 +132,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
132
132
|
[key: string]: any;
|
|
133
133
|
};
|
|
134
134
|
};
|
|
135
|
+
decimalFormat: {
|
|
136
|
+
type?: undefined;
|
|
137
|
+
default?: undefined;
|
|
138
|
+
} | {
|
|
139
|
+
type: any;
|
|
140
|
+
default: string | number | boolean | Events | {
|
|
141
|
+
[key: string]: any;
|
|
142
|
+
} | import('../../_utils/props').RequestParams | {
|
|
143
|
+
[key: string]: any;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
textDefaultValue: {
|
|
147
|
+
type?: undefined;
|
|
148
|
+
default?: undefined;
|
|
149
|
+
} | {
|
|
150
|
+
type: any;
|
|
151
|
+
default: string | number | boolean | Events | {
|
|
152
|
+
[key: string]: any;
|
|
153
|
+
} | import('../../_utils/props').RequestParams | {
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
135
157
|
id: {
|
|
136
158
|
type?: undefined;
|
|
137
159
|
default?: undefined;
|
|
@@ -378,7 +400,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
378
400
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
379
401
|
myWidth: import("vue").ComputedRef<number>;
|
|
380
402
|
text: import("vue").ComputedRef<string>;
|
|
381
|
-
value: import("vue").ComputedRef<number>;
|
|
403
|
+
value: import("vue").ComputedRef<string | number>;
|
|
382
404
|
loading: import("vue").Ref<boolean>;
|
|
383
405
|
click: () => void;
|
|
384
406
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -514,6 +536,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
514
536
|
[key: string]: any;
|
|
515
537
|
};
|
|
516
538
|
};
|
|
539
|
+
decimalFormat: {
|
|
540
|
+
type?: undefined;
|
|
541
|
+
default?: undefined;
|
|
542
|
+
} | {
|
|
543
|
+
type: any;
|
|
544
|
+
default: string | number | boolean | Events | {
|
|
545
|
+
[key: string]: any;
|
|
546
|
+
} | import('../../_utils/props').RequestParams | {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
};
|
|
549
|
+
};
|
|
550
|
+
textDefaultValue: {
|
|
551
|
+
type?: undefined;
|
|
552
|
+
default?: undefined;
|
|
553
|
+
} | {
|
|
554
|
+
type: any;
|
|
555
|
+
default: string | number | boolean | Events | {
|
|
556
|
+
[key: string]: any;
|
|
557
|
+
} | import('../../_utils/props').RequestParams | {
|
|
558
|
+
[key: string]: any;
|
|
559
|
+
};
|
|
560
|
+
};
|
|
517
561
|
id: {
|
|
518
562
|
type?: undefined;
|
|
519
563
|
default?: undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const EcanProportion: import(
|
|
1
|
+
export declare const EcanProportion: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
2
2
|
strokeColor: {
|
|
3
3
|
type?: undefined;
|
|
4
4
|
default?: undefined;
|
|
@@ -131,6 +131,28 @@ export declare const EcanProportion: import("../../_utils/withInstall").SFCWithI
|
|
|
131
131
|
[key: string]: any;
|
|
132
132
|
};
|
|
133
133
|
};
|
|
134
|
+
decimalFormat: {
|
|
135
|
+
type?: undefined;
|
|
136
|
+
default?: undefined;
|
|
137
|
+
} | {
|
|
138
|
+
type: any;
|
|
139
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
} | import("../../_utils/props").RequestParams | {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
textDefaultValue: {
|
|
146
|
+
type?: undefined;
|
|
147
|
+
default?: undefined;
|
|
148
|
+
} | {
|
|
149
|
+
type: any;
|
|
150
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
151
|
+
[key: string]: any;
|
|
152
|
+
} | import("../../_utils/props").RequestParams | {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
134
156
|
id: {
|
|
135
157
|
type?: undefined;
|
|
136
158
|
default?: undefined;
|
|
@@ -377,7 +399,7 @@ export declare const EcanProportion: import("../../_utils/withInstall").SFCWithI
|
|
|
377
399
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
378
400
|
myWidth: import("vue").ComputedRef<number>;
|
|
379
401
|
text: import("vue").ComputedRef<string>;
|
|
380
|
-
value: import("vue").ComputedRef<number>;
|
|
402
|
+
value: import("vue").ComputedRef<string | number>;
|
|
381
403
|
loading: import("vue").Ref<boolean>;
|
|
382
404
|
click: () => void;
|
|
383
405
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -513,6 +535,28 @@ export declare const EcanProportion: import("../../_utils/withInstall").SFCWithI
|
|
|
513
535
|
[key: string]: any;
|
|
514
536
|
};
|
|
515
537
|
};
|
|
538
|
+
decimalFormat: {
|
|
539
|
+
type?: undefined;
|
|
540
|
+
default?: undefined;
|
|
541
|
+
} | {
|
|
542
|
+
type: any;
|
|
543
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
544
|
+
[key: string]: any;
|
|
545
|
+
} | import("../../_utils/props").RequestParams | {
|
|
546
|
+
[key: string]: any;
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
textDefaultValue: {
|
|
550
|
+
type?: undefined;
|
|
551
|
+
default?: undefined;
|
|
552
|
+
} | {
|
|
553
|
+
type: any;
|
|
554
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
555
|
+
[key: string]: any;
|
|
556
|
+
} | import("../../_utils/props").RequestParams | {
|
|
557
|
+
[key: string]: any;
|
|
558
|
+
};
|
|
559
|
+
};
|
|
516
560
|
id: {
|
|
517
561
|
type?: undefined;
|
|
518
562
|
default?: undefined;
|
|
@@ -14,6 +14,8 @@ export interface ProportionProps extends Props {
|
|
|
14
14
|
fontWeight: number;
|
|
15
15
|
strokeTextWidth: string;
|
|
16
16
|
lineHeight: string;
|
|
17
|
+
decimalFormat: boolean;
|
|
18
|
+
textDefaultValue: string;
|
|
17
19
|
}
|
|
18
20
|
export declare const proportionProps: ProportionProps;
|
|
19
21
|
export declare const proportionComponentProps: {
|
|
@@ -149,6 +151,28 @@ export declare const proportionComponentProps: {
|
|
|
149
151
|
[key: string]: any;
|
|
150
152
|
};
|
|
151
153
|
};
|
|
154
|
+
decimalFormat: {
|
|
155
|
+
type?: undefined;
|
|
156
|
+
default?: undefined;
|
|
157
|
+
} | {
|
|
158
|
+
type: any;
|
|
159
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
160
|
+
[key: string]: any;
|
|
161
|
+
} | import('../../_utils/props').RequestParams | {
|
|
162
|
+
[key: string]: any;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
textDefaultValue: {
|
|
166
|
+
type?: undefined;
|
|
167
|
+
default?: undefined;
|
|
168
|
+
} | {
|
|
169
|
+
type: any;
|
|
170
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
171
|
+
[key: string]: any;
|
|
172
|
+
} | import('../../_utils/props').RequestParams | {
|
|
173
|
+
[key: string]: any;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
152
176
|
id: {
|
|
153
177
|
type?: undefined;
|
|
154
178
|
default?: undefined;
|