impaktapps-ui-builder 0.0.101-alpha.263 → 0.0.101-alpha.265
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 +5 -4
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +1 -0
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
package/package.json
CHANGED
|
@@ -367,7 +367,7 @@ const buildUiSchema = (config: any, store?: any) => {
|
|
|
367
367
|
}
|
|
368
368
|
if (cellElem.elementType == "tableHeader") {
|
|
369
369
|
const headerElem = buildUiSchema(cellElem, store);
|
|
370
|
-
tableHeaderElements.push(headerElem);
|
|
370
|
+
tableHeaderElements.push({widget:headerElem});
|
|
371
371
|
return false;
|
|
372
372
|
}
|
|
373
373
|
const tableElem = {
|
|
@@ -383,8 +383,8 @@ const buildUiSchema = (config: any, store?: any) => {
|
|
|
383
383
|
|
|
384
384
|
})
|
|
385
385
|
elements.elements = rowElements;
|
|
386
|
-
elements.config.
|
|
387
|
-
elements.config.main.headerIcons = tableHeaderElements;
|
|
386
|
+
elements.config.action = tableActionElement;
|
|
387
|
+
elements.config.main.headerIcons.elements = tableHeaderElements;
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
else if (config.type == "Array") {
|
|
@@ -285,7 +285,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
285
285
|
{ key: "searchValue", value: param.serachValue },
|
|
286
286
|
{ key: "currentValue", value: param.currentValue }
|
|
287
287
|
]
|
|
288
|
-
const response = await this.callExecuteEvents(param, apiBody);
|
|
288
|
+
const response = await this.callExecuteEvents(param, apiBody,"onLoad");
|
|
289
289
|
return response?.data;
|
|
290
290
|
}
|
|
291
291
|
},
|