impaktapps-ui-builder 0.0.1061 → 0.0.1063
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 +2 -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/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
package/package.json
CHANGED
|
@@ -363,7 +363,7 @@ const buildUiSchema = (config: any, store?: any) => {
|
|
|
363
363
|
enableColumnFilter: Object.keys(filterMap).length === 0 ? true : filterMap[cellElem.name] ?? false,
|
|
364
364
|
columnFilterModeOptions: config.filteringOptions,
|
|
365
365
|
enableSorting: config.enableSorting === "No" ? false : true,
|
|
366
|
-
columnKey:
|
|
366
|
+
columnKey: cellElem.columnKey
|
|
367
367
|
}
|
|
368
368
|
if (cellElem.type) {
|
|
369
369
|
return {
|
|
@@ -352,7 +352,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
352
352
|
}
|
|
353
353
|
},
|
|
354
354
|
callHandler: async function (eventType: string, functionParameters?: any) {
|
|
355
|
-
const path = funcParams.dynamicData?.tableButtonPath || funcParams.dynamicData.path.split(".")[
|
|
355
|
+
const path = funcParams.dynamicData?.tableButtonPath || funcParams.dynamicData.path.split(".")[ funcParams.dynamicData.path.split(".").length -1];
|
|
356
356
|
if (eventGroups?.[eventType]?.[path] !== undefined) {
|
|
357
357
|
Promise.all(eventGroups?.[eventType]?.[path].map((eventConfig) => {
|
|
358
358
|
executeEventsParameters.store.functionParameters = functionParameters
|