impaktapps-ui-builder 0.0.382-alpha.59 → 0.0.382-alpha.60

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.59",
3
+ "version": "0.0.382-alpha.60",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -119,6 +119,7 @@ export default (funcParams: funcParamsProps) => {
119
119
  },
120
120
  onChange: async function () {
121
121
  if (eventGroups.onChange) {
122
+ funcParams.dynamicData?.setLoading(true);
122
123
  const ChangeEventsKeysArray = Object.keys(eventGroups.onChange);
123
124
  Promise.all(ChangeEventsKeysArray.map(async (componentName: string) => {
124
125
  if (
@@ -134,6 +135,7 @@ export default (funcParams: funcParamsProps) => {
134
135
  }
135
136
  }
136
137
  }))
138
+ funcParams.dynamicData?.setLoading(false);
137
139
  }
138
140
  },
139
141
  updateConfigApiBody: async function (paramValue, apiBody) {