impaktapps-ui-builder 0.0.101-alpha.281 → 0.0.101-alpha.282

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.101-alpha.281",
3
+ "version": "0.0.101-alpha.282",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -65,7 +65,7 @@ export default (funcParams: funcParamsProps) => {
65
65
  let executeEventsParameters: handlersProps = {
66
66
  config: {}, componentName: "",
67
67
  store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
68
- serviceHolder: { downloadFile, download: doDownload, ...funcParams.functionsProvider },
68
+ serviceHolder: { downloadFile, download: doDownload, ...funcParams.functionsProvider },eventGroups,
69
69
  functionsProvider: funcParams.functionsProvider, formDataHolder
70
70
  };
71
71
  return {
@@ -191,6 +191,7 @@ export default (funcParams: funcParamsProps) => {
191
191
  );
192
192
  const schema = pageData?.schema ?? { type: "object", properties: {} };
193
193
  const newEventGroups = extractEvents(config);
194
+ console.log("newEventGroups", newEventGroups,eventGroups)
194
195
  eventGroups = newEventGroups;
195
196
  executeEventsParameters = {
196
197
  config: {}, componentName: "",