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.
- package/dist/impaktapps-ui-builder.es.js +6 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +8 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +3 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +3 -1
|
@@ -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
|
@@ -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,
|