@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.
Files changed (37) hide show
  1. package/dist/index.es.js +2517 -2438
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +27 -27
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +2 -2
  6. package/package.json +1 -1
  7. package/types/container/border/Border.vue.d.ts +33 -4
  8. package/types/container/border/index.d.ts +33 -4
  9. package/types/container/border/props.d.ts +18 -3
  10. package/types/control/button/Button.vue.d.ts +3 -0
  11. package/types/control/button/index.d.ts +3 -0
  12. package/types/graph/bar/Bar.vue.d.ts +65 -6
  13. package/types/graph/bar/index.d.ts +65 -6
  14. package/types/graph/bar/props.d.ts +34 -4
  15. package/types/graph/combo-graph/ComboGraph.vue.d.ts +9 -0
  16. package/types/graph/combo-graph/index.d.ts +9 -0
  17. package/types/graph/combo-graph/props.d.ts +5 -0
  18. package/types/graph/line/Line.vue.d.ts +48 -0
  19. package/types/graph/line/index.d.ts +48 -0
  20. package/types/graph/line/props.d.ts +30 -0
  21. package/types/graph/pie/Pie.vue.d.ts +27 -0
  22. package/types/graph/pie/index.d.ts +27 -0
  23. package/types/graph/pie/props.d.ts +15 -0
  24. package/types/graph/scatter/Scatter.vue.d.ts +9 -0
  25. package/types/graph/scatter/index.d.ts +9 -0
  26. package/types/graph/scatter/props.d.ts +5 -0
  27. package/types/setting/page-config/PageConfig.vue.d.ts +2 -2
  28. package/types/setting/page-config/index.d.ts +2 -2
  29. package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
  30. package/types/setting/provider-config/index.d.ts +16 -0
  31. package/types/setting/provider-config/props.d.ts +10 -0
  32. package/types/table/table/Table.vue.d.ts +9 -0
  33. package/types/table/table/index.d.ts +9 -0
  34. package/types/table/table/props.d.ts +5 -0
  35. package/types/text/text/Text.vue.d.ts +16 -0
  36. package/types/text/text/index.d.ts +16 -0
  37. 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;