impaktapps-ui-builder 0.0.382-alpha.47 → 0.0.382-alpha.49

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.
@@ -92,28 +92,7 @@ export declare const HorizontalBarGraph: {
92
92
  };
93
93
  config: {
94
94
  main: {
95
- header: string;
96
95
  type: string;
97
- bottomLabel: string;
98
- leftLabel: string;
99
- axisLeft: boolean;
100
- axisBottom: boolean;
101
- hideBottomTicks: boolean;
102
- hideLeftTicks: boolean;
103
- hideLeftAxisLine: boolean;
104
- hideBottomAxisLine: boolean;
105
- bottomAxisWidth: string;
106
- };
107
- style: {
108
- containerStyle: {
109
- width: string;
110
- };
111
- headerStyle: {};
112
- tooltipStyle: {};
113
- labelStyle: {};
114
- barStyle: {
115
- color: string;
116
- };
117
96
  };
118
97
  };
119
98
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.47",
3
+ "version": "0.0.382-alpha.49",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -8,7 +8,7 @@ export const buildStackbarGraph = (config:any,componentScope:string) => {
8
8
  barGraph.config.layout = createLayoutFormat(config.layout);
9
9
  }
10
10
  if (config.legendHide) {
11
- barGraph.config.main.legendAvailable = false;
11
+ barGraph.config.main.legendAvailable = config.legendHide;
12
12
  }
13
13
  barGraph.config.main.type = config.graphType;
14
14
  barGraph.config.main.header = config.heading;
@@ -164,28 +164,28 @@ export const HorizontalBarGraph = {
164
164
  },
165
165
  config: {
166
166
  main: {
167
- header: " ",
167
+ // header: " ",
168
168
  type: "HorizontalBarGraph",
169
- bottomLabel: " ",
170
- leftLabel: "Value",
171
- axisLeft: false,
172
- axisBottom: true,
173
- hideBottomTicks: false,
174
- hideLeftTicks: false,
175
- hideLeftAxisLine: true,
176
- hideBottomAxisLine: false,
177
- bottomAxisWidth: "10px",
178
- },
179
- style: {
180
- containerStyle: {
181
- width:"100%"
182
- },
183
- headerStyle: {},
184
- tooltipStyle: {},
185
- labelStyle: {},
186
- barStyle: {
187
- color: "#6c5efb",
188
- },
169
+ // bottomLabel: " ",
170
+ // leftLabel: "Value",
171
+ // axisLeft: false,
172
+ // axisBottom: true,
173
+ // hideBottomTicks: false,
174
+ // hideLeftTicks: false,
175
+ // hideLeftAxisLine: true,
176
+ // hideBottomAxisLine: false,
177
+ // bottomAxisWidth: "10px",
189
178
  },
179
+ // style: {
180
+ // containerStyle: {
181
+ // width:"100%"
182
+ // },
183
+ // headerStyle: {},
184
+ // tooltipStyle: {},
185
+ // labelStyle: {},
186
+ // barStyle: {
187
+ // color: "#6c5efb",
188
+ // },
189
+ // },
190
190
  },
191
191
  };