impaktapps-ui-builder 0.0.97-alpha.16 → 0.0.97-alpha.18

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.
@@ -16,7 +16,7 @@ export declare const BarGraph: {
16
16
  };
17
17
  style: {
18
18
  containerStyle: {};
19
- labelStyle: {};
19
+ barStyle: {};
20
20
  };
21
21
  };
22
22
  };
@@ -37,7 +37,10 @@ export declare const PieGraph: {
37
37
  type: string;
38
38
  legendLabels: any;
39
39
  };
40
- style: {};
40
+ style: {
41
+ containerStyle: {};
42
+ pieStyle: {};
43
+ };
41
44
  };
42
45
  };
43
46
  export declare const LineGraph: {
@@ -59,8 +62,6 @@ export declare const LineGraph: {
59
62
  };
60
63
  style: {
61
64
  containerStyle: {};
62
- headerStyle: {};
63
- labelStyle: {};
64
65
  lineStyle: {};
65
66
  };
66
67
  };
@@ -83,7 +84,8 @@ export declare const HorizontalBarGraph: {
83
84
  legendLabels: any;
84
85
  };
85
86
  style: {
86
- labelStyle: {};
87
+ containerStyle: {};
88
+ barStyle: {};
87
89
  };
88
90
  };
89
91
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.97-alpha.16",
3
+ "version": "0.0.97-alpha.18",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -22,7 +22,7 @@ const buildHorizontalBarGraph = (config:any,componentScope:string) => {
22
22
  horizontalBarGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
23
23
  }
24
24
  if (config.pieArcColors) {
25
- horizontalBarGraph.config.style.lineStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
25
+ horizontalBarGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
26
26
  }
27
27
  if (config.xAxisValue) {
28
28
  horizontalBarGraph.config.main.xAxisValue = config.xAxisValue;
@@ -20,7 +20,7 @@ export const buildStackbarGraph = (config:any,componentScope:string) => {
20
20
  barGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
21
21
  }
22
22
  if (config.pieArcColors) {
23
- barGraph.config.style.lineStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
23
+ barGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
24
24
  }
25
25
  if (config.xAxisValue) {
26
26
  barGraph.config.main.xAxisValue = config.xAxisValue;
@@ -10,7 +10,7 @@ export const BarGraph = {
10
10
  main: {
11
11
  legendLabels: null
12
12
  },
13
- style: { containerStyle: {},labelStyle:{} }
13
+ style: { containerStyle: {},barStyle:{} }
14
14
  },
15
15
  };
16
16
 
@@ -26,7 +26,10 @@ export const PieGraph = {
26
26
  type: "PieGraph",
27
27
  legendLabels: null
28
28
  },
29
- style:{}
29
+ style:{
30
+ containerStyle: {},
31
+ pieStyle: {},
32
+ }
30
33
  },
31
34
  };
32
35
  export const LineGraph = {
@@ -43,8 +46,6 @@ export const LineGraph = {
43
46
  },
44
47
  style: {
45
48
  containerStyle: {},
46
- headerStyle: {},
47
- labelStyle: {},
48
49
  lineStyle: {},
49
50
  },
50
51
  },
@@ -63,7 +64,8 @@ export const HorizontalBarGraph = {
63
64
  legendLabels: null
64
65
  },
65
66
  style:{
66
- labelStyle:{}
67
+ containerStyle: {},
68
+ barStyle: {},
67
69
  }
68
70
  },
69
71
  };