@ecan-bi/datav 1.4.6 → 1.4.8
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 +2682 -2636
- 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/control/radio/Radio.vue.d.ts +10 -0
- package/types/control/radio/index.d.ts +10 -0
- package/types/control/radio/props.d.ts +5 -0
- package/types/graph/scatter/Scatter.vue.d.ts +8 -0
- package/types/graph/scatter/index.d.ts +8 -0
- package/types/graph/scatter/props.d.ts +5 -0
- package/types/table/table/Table.vue.d.ts +1 -1
- package/types/table/table/index.d.ts +1 -1
- package/types/text/list/List.vue.d.ts +1 -1
- package/types/text/list/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -64,6 +64,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
64
64
|
type?: import("vue").PropType<boolean>;
|
|
65
65
|
default?: boolean;
|
|
66
66
|
};
|
|
67
|
+
radioMode: {
|
|
68
|
+
type?: import("vue").PropType<"native" | "custom">;
|
|
69
|
+
default?: "native" | "custom";
|
|
70
|
+
};
|
|
67
71
|
id: {
|
|
68
72
|
type?: import("vue").PropType<string>;
|
|
69
73
|
default?: string;
|
|
@@ -190,7 +194,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
190
194
|
display: string;
|
|
191
195
|
height: string;
|
|
192
196
|
lineHeight: string;
|
|
197
|
+
fontSize: string;
|
|
193
198
|
} | {
|
|
199
|
+
fontSize: string;
|
|
194
200
|
display?: undefined;
|
|
195
201
|
height?: undefined;
|
|
196
202
|
lineHeight?: undefined;
|
|
@@ -263,6 +269,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
263
269
|
type?: import("vue").PropType<boolean>;
|
|
264
270
|
default?: boolean;
|
|
265
271
|
};
|
|
272
|
+
radioMode: {
|
|
273
|
+
type?: import("vue").PropType<"native" | "custom">;
|
|
274
|
+
default?: "native" | "custom";
|
|
275
|
+
};
|
|
266
276
|
id: {
|
|
267
277
|
type?: import("vue").PropType<string>;
|
|
268
278
|
default?: string;
|
|
@@ -63,6 +63,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
63
63
|
type?: import("vue").PropType<boolean>;
|
|
64
64
|
default?: boolean;
|
|
65
65
|
};
|
|
66
|
+
radioMode: {
|
|
67
|
+
type?: import("vue").PropType<"native" | "custom">;
|
|
68
|
+
default?: "native" | "custom";
|
|
69
|
+
};
|
|
66
70
|
id: {
|
|
67
71
|
type?: import("vue").PropType<string>;
|
|
68
72
|
default?: string;
|
|
@@ -189,7 +193,9 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
189
193
|
display: string;
|
|
190
194
|
height: string;
|
|
191
195
|
lineHeight: string;
|
|
196
|
+
fontSize: string;
|
|
192
197
|
} | {
|
|
198
|
+
fontSize: string;
|
|
193
199
|
display?: undefined;
|
|
194
200
|
height?: undefined;
|
|
195
201
|
lineHeight?: undefined;
|
|
@@ -262,6 +268,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
262
268
|
type?: import("vue").PropType<boolean>;
|
|
263
269
|
default?: boolean;
|
|
264
270
|
};
|
|
271
|
+
radioMode: {
|
|
272
|
+
type?: import("vue").PropType<"native" | "custom">;
|
|
273
|
+
default?: "native" | "custom";
|
|
274
|
+
};
|
|
265
275
|
id: {
|
|
266
276
|
type?: import("vue").PropType<string>;
|
|
267
277
|
default?: string;
|
|
@@ -24,6 +24,7 @@ export interface RadioProps extends Props {
|
|
|
24
24
|
};
|
|
25
25
|
tabTextAlign: '' | 'center';
|
|
26
26
|
selectFirstOption: boolean;
|
|
27
|
+
radioMode: 'native' | 'custom';
|
|
27
28
|
}
|
|
28
29
|
export declare const radioProps: RadioProps;
|
|
29
30
|
export declare const radioComponentProps: {
|
|
@@ -91,6 +92,10 @@ export declare const radioComponentProps: {
|
|
|
91
92
|
type?: import("vue").PropType<boolean>;
|
|
92
93
|
default?: boolean;
|
|
93
94
|
};
|
|
95
|
+
radioMode: {
|
|
96
|
+
type?: import("vue").PropType<"native" | "custom">;
|
|
97
|
+
default?: "native" | "custom";
|
|
98
|
+
};
|
|
94
99
|
id: {
|
|
95
100
|
type?: import("vue").PropType<string>;
|
|
96
101
|
default?: string;
|
|
@@ -329,6 +329,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
329
329
|
type?: import("vue").PropType<boolean>;
|
|
330
330
|
default?: boolean;
|
|
331
331
|
};
|
|
332
|
+
crossShow: {
|
|
333
|
+
type?: import("vue").PropType<boolean>;
|
|
334
|
+
default?: boolean;
|
|
335
|
+
};
|
|
332
336
|
id: {
|
|
333
337
|
type?: import("vue").PropType<string>;
|
|
334
338
|
default?: string;
|
|
@@ -956,6 +960,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
956
960
|
type?: import("vue").PropType<boolean>;
|
|
957
961
|
default?: boolean;
|
|
958
962
|
};
|
|
963
|
+
crossShow: {
|
|
964
|
+
type?: import("vue").PropType<boolean>;
|
|
965
|
+
default?: boolean;
|
|
966
|
+
};
|
|
959
967
|
id: {
|
|
960
968
|
type?: import("vue").PropType<string>;
|
|
961
969
|
default?: string;
|
|
@@ -329,6 +329,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
329
329
|
type?: import("vue").PropType<boolean>;
|
|
330
330
|
default?: boolean;
|
|
331
331
|
};
|
|
332
|
+
crossShow: {
|
|
333
|
+
type?: import("vue").PropType<boolean>;
|
|
334
|
+
default?: boolean;
|
|
335
|
+
};
|
|
332
336
|
id: {
|
|
333
337
|
type?: import("vue").PropType<string>;
|
|
334
338
|
default?: string;
|
|
@@ -956,6 +960,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
956
960
|
type?: import("vue").PropType<boolean>;
|
|
957
961
|
default?: boolean;
|
|
958
962
|
};
|
|
963
|
+
crossShow: {
|
|
964
|
+
type?: import("vue").PropType<boolean>;
|
|
965
|
+
default?: boolean;
|
|
966
|
+
};
|
|
959
967
|
id: {
|
|
960
968
|
type?: import("vue").PropType<string>;
|
|
961
969
|
default?: string;
|
|
@@ -88,6 +88,7 @@ export interface ScatterProps extends Props {
|
|
|
88
88
|
yAxisMax: number;
|
|
89
89
|
yAxisMin: number;
|
|
90
90
|
xAxisLabelShow: boolean;
|
|
91
|
+
crossShow: boolean;
|
|
91
92
|
}
|
|
92
93
|
export declare const scatterProps: ScatterProps;
|
|
93
94
|
export declare const scatterComponentProps: {
|
|
@@ -421,6 +422,10 @@ export declare const scatterComponentProps: {
|
|
|
421
422
|
type?: import("vue").PropType<boolean>;
|
|
422
423
|
default?: boolean;
|
|
423
424
|
};
|
|
425
|
+
crossShow: {
|
|
426
|
+
type?: import("vue").PropType<boolean>;
|
|
427
|
+
default?: boolean;
|
|
428
|
+
};
|
|
424
429
|
id: {
|
|
425
430
|
type?: import("vue").PropType<string>;
|
|
426
431
|
default?: string;
|
|
@@ -361,7 +361,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
361
361
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
362
362
|
pagination: import("vue").ComputedRef<any>;
|
|
363
363
|
formatFn: (value: string | number, column: any) => string | number;
|
|
364
|
-
contrastClass: (format: "" | "boolean" | "progress" | "
|
|
364
|
+
contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals") => "" | "upDown";
|
|
365
365
|
tableChange: ({ current }: {
|
|
366
366
|
current: number;
|
|
367
367
|
}, _filters: any, sorter: any) => void;
|
|
@@ -361,7 +361,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
361
361
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
362
362
|
pagination: import("vue").ComputedRef<any>;
|
|
363
363
|
formatFn: (value: string | number, column: any) => string | number;
|
|
364
|
-
contrastClass: (format: "" | "boolean" | "progress" | "
|
|
364
|
+
contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals") => "" | "upDown";
|
|
365
365
|
tableChange: ({ current }: {
|
|
366
366
|
current: number;
|
|
367
367
|
}, _filters: any, sorter: any) => void;
|
|
@@ -234,7 +234,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
234
234
|
}, {
|
|
235
235
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
236
236
|
formatFn: (value: string | number, column: any) => any;
|
|
237
|
-
contrastClass: (value: string | number, format: "" | "progress" | "
|
|
237
|
+
contrastClass: (value: string | number, format: "" | "progress" | "custom" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
|
|
238
238
|
dataSource: import("vue").Ref<{
|
|
239
239
|
[key: string]: any;
|
|
240
240
|
}[]>;
|
|
@@ -234,7 +234,7 @@ export declare const EcanList: import("../../utils/withInstall").SFCWithInstall<
|
|
|
234
234
|
}, {
|
|
235
235
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
236
236
|
formatFn: (value: string | number, column: any) => any;
|
|
237
|
-
contrastClass: (value: string | number, format: "" | "progress" | "
|
|
237
|
+
contrastClass: (value: string | number, format: "" | "progress" | "custom" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
|
|
238
238
|
dataSource: import("vue").Ref<{
|
|
239
239
|
[key: string]: any;
|
|
240
240
|
}[]>;
|