@ecan-bi/datav 1.0.92 → 1.0.94
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 +126 -118
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +126 -118
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +17 -17
- package/package.json +2 -1
- package/types/container/tabs/Tabs.vue.d.ts +56 -0
- package/types/container/tabs/index.d.ts +56 -0
- package/types/container/tabs/props.d.ts +32 -0
- package/types/graph/bar/Bar.vue.d.ts +149 -0
- package/types/graph/bar/index.d.ts +149 -0
- package/types/graph/bar/props.d.ts +75 -0
- package/types/map/map/Map.vue.d.ts +1 -1
- package/types/map/map/index.d.ts +1 -1
- package/types/table/table/Table.vue.d.ts +0 -47
- package/types/table/table/index.d.ts +0 -47
- package/types/table/table/props.d.ts +0 -21
|
@@ -17,6 +17,9 @@ export interface BarProps extends Props {
|
|
|
17
17
|
xAxisLineStyleColor: string;
|
|
18
18
|
xAxisTickShow: boolean;
|
|
19
19
|
xAxisLabelFormatter: string;
|
|
20
|
+
yAxisLabelWidth: number | undefined;
|
|
21
|
+
yAxisLabelOverflow: 'none' | 'truncate' | 'break' | 'breakAll';
|
|
22
|
+
yAxisLabelRotate: number;
|
|
20
23
|
yAxisSplitLineShow: boolean;
|
|
21
24
|
xAxisSplitLineStyleColor: string;
|
|
22
25
|
yAxisSplitLineStyleColor: string;
|
|
@@ -52,6 +55,8 @@ export interface BarProps extends Props {
|
|
|
52
55
|
toolboxInfoText: string;
|
|
53
56
|
isUseHorizontalAxis: boolean;
|
|
54
57
|
axisInverse: boolean;
|
|
58
|
+
xAxisInverse: boolean;
|
|
59
|
+
yAxisInverse: boolean;
|
|
55
60
|
isStack: boolean;
|
|
56
61
|
}
|
|
57
62
|
export declare const barProps: BarProps;
|
|
@@ -294,6 +299,48 @@ export declare const barComponentProps: {
|
|
|
294
299
|
layer: '2';
|
|
295
300
|
};
|
|
296
301
|
};
|
|
302
|
+
yAxisLabelWidth: {
|
|
303
|
+
type?: undefined;
|
|
304
|
+
default?: undefined;
|
|
305
|
+
} | {
|
|
306
|
+
type: any;
|
|
307
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
308
|
+
[key: string]: any;
|
|
309
|
+
} | import('../../utils/props').RequestParams | {
|
|
310
|
+
[key: string]: any;
|
|
311
|
+
chartType: 'bar';
|
|
312
|
+
plugin: '1';
|
|
313
|
+
layer: '2';
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
yAxisLabelOverflow: {
|
|
317
|
+
type?: undefined;
|
|
318
|
+
default?: undefined;
|
|
319
|
+
} | {
|
|
320
|
+
type: any;
|
|
321
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
322
|
+
[key: string]: any;
|
|
323
|
+
} | import('../../utils/props').RequestParams | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
chartType: 'bar';
|
|
326
|
+
plugin: '1';
|
|
327
|
+
layer: '2';
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
yAxisLabelRotate: {
|
|
331
|
+
type?: undefined;
|
|
332
|
+
default?: undefined;
|
|
333
|
+
} | {
|
|
334
|
+
type: any;
|
|
335
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
} | import('../../utils/props').RequestParams | {
|
|
338
|
+
[key: string]: any;
|
|
339
|
+
chartType: 'bar';
|
|
340
|
+
plugin: '1';
|
|
341
|
+
layer: '2';
|
|
342
|
+
};
|
|
343
|
+
};
|
|
297
344
|
yAxisSplitLineShow: {
|
|
298
345
|
type?: undefined;
|
|
299
346
|
default?: undefined;
|
|
@@ -714,6 +761,34 @@ export declare const barComponentProps: {
|
|
|
714
761
|
layer: '2';
|
|
715
762
|
};
|
|
716
763
|
};
|
|
764
|
+
xAxisInverse: {
|
|
765
|
+
type?: undefined;
|
|
766
|
+
default?: undefined;
|
|
767
|
+
} | {
|
|
768
|
+
type: any;
|
|
769
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
770
|
+
[key: string]: any;
|
|
771
|
+
} | import('../../utils/props').RequestParams | {
|
|
772
|
+
[key: string]: any;
|
|
773
|
+
chartType: 'bar';
|
|
774
|
+
plugin: '1';
|
|
775
|
+
layer: '2';
|
|
776
|
+
};
|
|
777
|
+
};
|
|
778
|
+
yAxisInverse: {
|
|
779
|
+
type?: undefined;
|
|
780
|
+
default?: undefined;
|
|
781
|
+
} | {
|
|
782
|
+
type: any;
|
|
783
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
784
|
+
[key: string]: any;
|
|
785
|
+
} | import('../../utils/props').RequestParams | {
|
|
786
|
+
[key: string]: any;
|
|
787
|
+
chartType: 'bar';
|
|
788
|
+
plugin: '1';
|
|
789
|
+
layer: '2';
|
|
790
|
+
};
|
|
791
|
+
};
|
|
717
792
|
isStack: {
|
|
718
793
|
type?: undefined;
|
|
719
794
|
default?: undefined;
|
package/types/map/map/index.d.ts
CHANGED
|
@@ -199,26 +199,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
199
199
|
[key: string]: any;
|
|
200
200
|
}[];
|
|
201
201
|
};
|
|
202
|
-
headerBackgroundColor: {
|
|
203
|
-
type?: undefined;
|
|
204
|
-
default?: undefined;
|
|
205
|
-
} | {
|
|
206
|
-
type: any;
|
|
207
|
-
default: string | number | boolean | import("../../utils/props").Events | {
|
|
208
|
-
[key: string]: any;
|
|
209
|
-
} | import("../../utils/props").RequestParams | {
|
|
210
|
-
[key: string]: any;
|
|
211
|
-
}[] | {
|
|
212
|
-
[key: string]: any;
|
|
213
|
-
chartType: "table";
|
|
214
|
-
plugin: "1";
|
|
215
|
-
layer: "1";
|
|
216
|
-
} | {
|
|
217
|
-
[key: string]: any;
|
|
218
|
-
}[] | {
|
|
219
|
-
[key: string]: any;
|
|
220
|
-
}[];
|
|
221
|
-
};
|
|
222
202
|
cellBackgroundColor: {
|
|
223
203
|
type?: undefined;
|
|
224
204
|
default?: undefined;
|
|
@@ -908,13 +888,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
908
888
|
customRow: (record: any) => {
|
|
909
889
|
onClick: () => void;
|
|
910
890
|
};
|
|
911
|
-
customHeaderRow: () => {
|
|
912
|
-
style: {
|
|
913
|
-
backgroundColor: string | number | boolean | {
|
|
914
|
-
[key: string]: any;
|
|
915
|
-
};
|
|
916
|
-
};
|
|
917
|
-
};
|
|
918
891
|
pagination: import("vue").ComputedRef<{
|
|
919
892
|
simple: string | number | boolean | {
|
|
920
893
|
[key: string]: any;
|
|
@@ -1148,26 +1121,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1148
1121
|
[key: string]: any;
|
|
1149
1122
|
}[];
|
|
1150
1123
|
};
|
|
1151
|
-
headerBackgroundColor: {
|
|
1152
|
-
type?: undefined;
|
|
1153
|
-
default?: undefined;
|
|
1154
|
-
} | {
|
|
1155
|
-
type: any;
|
|
1156
|
-
default: string | number | boolean | import("../../utils/props").Events | {
|
|
1157
|
-
[key: string]: any;
|
|
1158
|
-
} | import("../../utils/props").RequestParams | {
|
|
1159
|
-
[key: string]: any;
|
|
1160
|
-
}[] | {
|
|
1161
|
-
[key: string]: any;
|
|
1162
|
-
chartType: "table";
|
|
1163
|
-
plugin: "1";
|
|
1164
|
-
layer: "1";
|
|
1165
|
-
} | {
|
|
1166
|
-
[key: string]: any;
|
|
1167
|
-
}[] | {
|
|
1168
|
-
[key: string]: any;
|
|
1169
|
-
}[];
|
|
1170
|
-
};
|
|
1171
1124
|
cellBackgroundColor: {
|
|
1172
1125
|
type?: undefined;
|
|
1173
1126
|
default?: undefined;
|
|
@@ -199,26 +199,6 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
199
199
|
[key: string]: any;
|
|
200
200
|
}[];
|
|
201
201
|
};
|
|
202
|
-
headerBackgroundColor: {
|
|
203
|
-
type?: undefined;
|
|
204
|
-
default?: undefined;
|
|
205
|
-
} | {
|
|
206
|
-
type: any;
|
|
207
|
-
default: string | number | boolean | import("../../utils/props").Events | {
|
|
208
|
-
[key: string]: any;
|
|
209
|
-
} | import("../../utils/props").RequestParams | {
|
|
210
|
-
[key: string]: any;
|
|
211
|
-
}[] | {
|
|
212
|
-
[key: string]: any;
|
|
213
|
-
chartType: "table";
|
|
214
|
-
plugin: "1";
|
|
215
|
-
layer: "1";
|
|
216
|
-
} | {
|
|
217
|
-
[key: string]: any;
|
|
218
|
-
}[] | {
|
|
219
|
-
[key: string]: any;
|
|
220
|
-
}[];
|
|
221
|
-
};
|
|
222
202
|
cellBackgroundColor: {
|
|
223
203
|
type?: undefined;
|
|
224
204
|
default?: undefined;
|
|
@@ -908,13 +888,6 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
908
888
|
customRow: (record: any) => {
|
|
909
889
|
onClick: () => void;
|
|
910
890
|
};
|
|
911
|
-
customHeaderRow: () => {
|
|
912
|
-
style: {
|
|
913
|
-
backgroundColor: string | number | boolean | {
|
|
914
|
-
[key: string]: any;
|
|
915
|
-
};
|
|
916
|
-
};
|
|
917
|
-
};
|
|
918
891
|
pagination: import("vue").ComputedRef<{
|
|
919
892
|
simple: string | number | boolean | {
|
|
920
893
|
[key: string]: any;
|
|
@@ -1148,26 +1121,6 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
1148
1121
|
[key: string]: any;
|
|
1149
1122
|
}[];
|
|
1150
1123
|
};
|
|
1151
|
-
headerBackgroundColor: {
|
|
1152
|
-
type?: undefined;
|
|
1153
|
-
default?: undefined;
|
|
1154
|
-
} | {
|
|
1155
|
-
type: any;
|
|
1156
|
-
default: string | number | boolean | import("../../utils/props").Events | {
|
|
1157
|
-
[key: string]: any;
|
|
1158
|
-
} | import("../../utils/props").RequestParams | {
|
|
1159
|
-
[key: string]: any;
|
|
1160
|
-
}[] | {
|
|
1161
|
-
[key: string]: any;
|
|
1162
|
-
chartType: "table";
|
|
1163
|
-
plugin: "1";
|
|
1164
|
-
layer: "1";
|
|
1165
|
-
} | {
|
|
1166
|
-
[key: string]: any;
|
|
1167
|
-
}[] | {
|
|
1168
|
-
[key: string]: any;
|
|
1169
|
-
}[];
|
|
1170
|
-
};
|
|
1171
1124
|
cellBackgroundColor: {
|
|
1172
1125
|
type?: undefined;
|
|
1173
1126
|
default?: undefined;
|
|
@@ -14,7 +14,6 @@ export interface TableProps extends Props {
|
|
|
14
14
|
paginationShow: boolean;
|
|
15
15
|
paginationPosition: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
|
|
16
16
|
simple: boolean;
|
|
17
|
-
headerBackgroundColor: string;
|
|
18
17
|
cellBackgroundColor: string;
|
|
19
18
|
borderColor: string;
|
|
20
19
|
paginationPageSize: number;
|
|
@@ -237,26 +236,6 @@ export declare const tableComponentProps: {
|
|
|
237
236
|
[key: string]: any;
|
|
238
237
|
}[];
|
|
239
238
|
};
|
|
240
|
-
headerBackgroundColor: {
|
|
241
|
-
type?: undefined;
|
|
242
|
-
default?: undefined;
|
|
243
|
-
} | {
|
|
244
|
-
type: any;
|
|
245
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
246
|
-
[key: string]: any;
|
|
247
|
-
} | import('../../utils/props').RequestParams | {
|
|
248
|
-
[key: string]: any;
|
|
249
|
-
}[] | {
|
|
250
|
-
[key: string]: any;
|
|
251
|
-
chartType: 'table';
|
|
252
|
-
plugin: '1';
|
|
253
|
-
layer: '1';
|
|
254
|
-
} | {
|
|
255
|
-
[key: string]: any;
|
|
256
|
-
}[] | {
|
|
257
|
-
[key: string]: any;
|
|
258
|
-
}[];
|
|
259
|
-
};
|
|
260
239
|
cellBackgroundColor: {
|
|
261
240
|
type?: undefined;
|
|
262
241
|
default?: undefined;
|