impaktapps-ui-builder 0.0.313 → 0.0.314

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.313",
3
+ "version": "0.0.314",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -97,7 +97,7 @@ export default (funcParams: funcParamsProps) => {
97
97
  },
98
98
  onFileDownload:async () =>{
99
99
  const path = funcParams.dynamicData?.tableButtonPath || funcParams.dynamicData.path.split(".")[0];
100
- for (const eventConfig of eventGroups?.onFileDownload[path]) {
100
+ for (const eventConfig of eventGroups?.onDownload[path]) {
101
101
  await executeEvents({
102
102
  ...executeEventsParameters,
103
103
  config: eventConfig,
@@ -107,7 +107,7 @@ export default (funcParams: funcParamsProps) => {
107
107
  },
108
108
  onFileUpload:async () =>{
109
109
  const path = funcParams.dynamicData?.tableButtonPath || funcParams.dynamicData.path.split(".")[0];
110
- for (const eventConfig of eventGroups?.onFileUpload[path]) {
110
+ for (const eventConfig of eventGroups?.onUpload[path]) {
111
111
  await executeEvents({
112
112
  ...executeEventsParameters,
113
113
  config: eventConfig,