@ecan-bi/datav 1.2.22 → 1.2.24
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 +2517 -2438
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +27 -27
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +33 -4
- package/types/container/border/index.d.ts +33 -4
- package/types/container/border/props.d.ts +18 -3
- package/types/control/button/Button.vue.d.ts +3 -0
- package/types/control/button/index.d.ts +3 -0
- package/types/graph/bar/Bar.vue.d.ts +65 -6
- package/types/graph/bar/index.d.ts +65 -6
- package/types/graph/bar/props.d.ts +34 -4
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +9 -0
- package/types/graph/combo-graph/index.d.ts +9 -0
- package/types/graph/combo-graph/props.d.ts +5 -0
- package/types/graph/line/Line.vue.d.ts +48 -0
- package/types/graph/line/index.d.ts +48 -0
- package/types/graph/line/props.d.ts +30 -0
- package/types/graph/pie/Pie.vue.d.ts +27 -0
- package/types/graph/pie/index.d.ts +27 -0
- package/types/graph/pie/props.d.ts +15 -0
- package/types/graph/scatter/Scatter.vue.d.ts +9 -0
- package/types/graph/scatter/index.d.ts +9 -0
- package/types/graph/scatter/props.d.ts +5 -0
- package/types/setting/page-config/PageConfig.vue.d.ts +2 -2
- package/types/setting/page-config/index.d.ts +2 -2
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
- package/types/setting/provider-config/index.d.ts +16 -0
- package/types/setting/provider-config/props.d.ts +10 -0
- package/types/table/table/Table.vue.d.ts +9 -0
- package/types/table/table/index.d.ts +9 -0
- package/types/table/table/props.d.ts +5 -0
- package/types/text/text/Text.vue.d.ts +16 -0
- package/types/text/text/index.d.ts +16 -0
- package/types/text/text/props.d.ts +10 -0
|
@@ -75,6 +75,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
75
75
|
type?: import("vue").PropType<string>;
|
|
76
76
|
default?: string;
|
|
77
77
|
};
|
|
78
|
+
increaseColor: {
|
|
79
|
+
type?: import("vue").PropType<string>;
|
|
80
|
+
default?: string;
|
|
81
|
+
};
|
|
82
|
+
declineColor: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
78
86
|
id: {
|
|
79
87
|
type?: import("vue").PropType<string>;
|
|
80
88
|
default?: string;
|
|
@@ -251,6 +259,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
251
259
|
type?: import("vue").PropType<string>;
|
|
252
260
|
default?: string;
|
|
253
261
|
};
|
|
262
|
+
increaseColor: {
|
|
263
|
+
type?: import("vue").PropType<string>;
|
|
264
|
+
default?: string;
|
|
265
|
+
};
|
|
266
|
+
declineColor: {
|
|
267
|
+
type?: import("vue").PropType<string>;
|
|
268
|
+
default?: string;
|
|
269
|
+
};
|
|
254
270
|
id: {
|
|
255
271
|
type?: import("vue").PropType<string>;
|
|
256
272
|
default?: string;
|
|
@@ -75,6 +75,14 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
75
75
|
type?: import("vue").PropType<string>;
|
|
76
76
|
default?: string;
|
|
77
77
|
};
|
|
78
|
+
increaseColor: {
|
|
79
|
+
type?: import("vue").PropType<string>;
|
|
80
|
+
default?: string;
|
|
81
|
+
};
|
|
82
|
+
declineColor: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
78
86
|
id: {
|
|
79
87
|
type?: import("vue").PropType<string>;
|
|
80
88
|
default?: string;
|
|
@@ -251,6 +259,14 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
251
259
|
type?: import("vue").PropType<string>;
|
|
252
260
|
default?: string;
|
|
253
261
|
};
|
|
262
|
+
increaseColor: {
|
|
263
|
+
type?: import("vue").PropType<string>;
|
|
264
|
+
default?: string;
|
|
265
|
+
};
|
|
266
|
+
declineColor: {
|
|
267
|
+
type?: import("vue").PropType<string>;
|
|
268
|
+
default?: string;
|
|
269
|
+
};
|
|
254
270
|
id: {
|
|
255
271
|
type?: import("vue").PropType<string>;
|
|
256
272
|
default?: string;
|
|
@@ -20,6 +20,8 @@ export interface TextProps extends Props {
|
|
|
20
20
|
[key: string]: any;
|
|
21
21
|
};
|
|
22
22
|
percentageSide: string;
|
|
23
|
+
increaseColor: string;
|
|
24
|
+
declineColor: string;
|
|
23
25
|
}
|
|
24
26
|
export declare const textProps: TextProps;
|
|
25
27
|
export declare const textComponentProps: {
|
|
@@ -99,6 +101,14 @@ export declare const textComponentProps: {
|
|
|
99
101
|
type?: import("vue").PropType<string>;
|
|
100
102
|
default?: string;
|
|
101
103
|
};
|
|
104
|
+
increaseColor: {
|
|
105
|
+
type?: import("vue").PropType<string>;
|
|
106
|
+
default?: string;
|
|
107
|
+
};
|
|
108
|
+
declineColor: {
|
|
109
|
+
type?: import("vue").PropType<string>;
|
|
110
|
+
default?: string;
|
|
111
|
+
};
|
|
102
112
|
id: {
|
|
103
113
|
type?: import("vue").PropType<string>;
|
|
104
114
|
default?: string;
|