impaktapps-ui-builder 0.0.382-alpha.551 → 0.0.382-alpha.553

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.
@@ -168,7 +168,14 @@ export declare const HorizontalBarGraph: {
168
168
  };
169
169
  headerStyle: {};
170
170
  tooltipStyle: {};
171
- labelStyle: {};
171
+ labelStyle: {
172
+ margin: {
173
+ top: number;
174
+ left: number;
175
+ right: number;
176
+ bottom: number;
177
+ };
178
+ };
172
179
  barStyle: {
173
180
  color: string;
174
181
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.551",
3
+ "version": "0.0.382-alpha.553",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -182,7 +182,9 @@ export const HorizontalBarGraph = {
182
182
  },
183
183
  headerStyle: {},
184
184
  tooltipStyle: {},
185
- labelStyle: {},
185
+ labelStyle: {
186
+ margin: { top: 10, left: 180, right: 40, bottom: 40 }
187
+ },
186
188
  barStyle: {
187
189
  color: "#6c5efb",
188
190
  },
@@ -66,7 +66,9 @@ export default (funcParams: funcParamsProps) => {
66
66
  };
67
67
  return {
68
68
  setPage: async function () {
69
- funcParams.store.setFormdata({});
69
+ funcParams.store.setFormdata((prev) => {
70
+ return {}
71
+ });
70
72
  executeEventsParameters = {
71
73
  config: {}, componentName: "",
72
74
  store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,