impaktapps-ui-builder 0.0.382 → 0.0.382456

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.
@@ -8409,7 +8409,7 @@ async function executeInBuiltFunctionHandler(params) {
8409
8409
  const makeFunc = eval(params.config.funcParametersCode);
8410
8410
  parameter = makeFunc(params.store, params.dynamicData, params.userValue, params.parentEventOutput, params.service);
8411
8411
  }
8412
- params.serviceHolder[params.config.inBuiltFunctionType](parameter, params.service);
8412
+ params.serviceHolder[params.config.inBuiltFunctionType](parameter);
8413
8413
  }
8414
8414
  async function executeCustomHandler(params) {
8415
8415
  const makeFunc = eval(params.config.eventCode);
@@ -9677,6 +9677,8 @@ var Button = {
9677
9677
  }
9678
9678
  };
9679
9679
  const buildButton = (config, componentScope) => {
9680
+ console.log("config : ", config);
9681
+ console.log("componentScope : ", componentScope);
9680
9682
  const button = _.cloneDeep(Button);
9681
9683
  if (config.buttonType) {
9682
9684
  button.options.widget = config.buttonType === "IconButton" ? "IconButton" : "Button";