impaktapps-ui-builder 0.0.90 → 0.0.92

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.
@@ -7350,7 +7350,8 @@ const getTextArea = (scope, heading, hideButton, layout) => {
7350
7350
  main: {
7351
7351
  heading,
7352
7352
  minRows: 8,
7353
- hideButton
7353
+ hideButton,
7354
+ enableCodeEditor: true
7354
7355
  }
7355
7356
  }
7356
7357
  };
@@ -7456,8 +7457,8 @@ const buildPropertiesSection = function(type) {
7456
7457
  case "TextArea":
7457
7458
  uiSchema.elements = [
7458
7459
  getInputField("placeholder", "Placeholder"),
7459
- emptyBox$1("TextAreaEmpty1", { xs: 6, sm: 6, md: 4, lg: 4 }),
7460
- emptyBox$1("TextAreaEmpty2", { xs: 0, sm: 0, md: 4, lg: 4 })
7460
+ getRadioInputField("enableCodeEditor", "Enable Code Editor", ["YES", "NO"]),
7461
+ getInputField("codeEditorLanguage", "Enter Code Language")
7461
7462
  ];
7462
7463
  break;
7463
7464
  case "SpeedoMeter":
@@ -9268,7 +9269,7 @@ function executeCustomHandler(params) {
9268
9269
  }
9269
9270
  }
9270
9271
  function mergeFormdata(handlerResponse, componentName, eventConfig, store2, service2, formDataHolder) {
9271
- if (eventConfig.type === "Select" && (handlerResponse == null ? void 0 : handlerResponse.data) && !_.isEmpty(handlerResponse == null ? void 0 : handlerResponse.data)) {
9272
+ if (eventConfig.type === "Select" && (handlerResponse == null ? void 0 : handlerResponse.data)) {
9272
9273
  store2.setSchema((pre) => {
9273
9274
  var _a;
9274
9275
  return {
@@ -9282,7 +9283,7 @@ function mergeFormdata(handlerResponse, componentName, eventConfig, store2, serv
9282
9283
  }
9283
9284
  };
9284
9285
  });
9285
- } else if (eventConfig.type === "MultipleSelect" && (handlerResponse == null ? void 0 : handlerResponse.data) && !_.isEmpty(handlerResponse == null ? void 0 : handlerResponse.data)) {
9286
+ } else if (eventConfig.type === "MultipleSelect" && (handlerResponse == null ? void 0 : handlerResponse.data)) {
9286
9287
  store2.setSchema((pre) => {
9287
9288
  var _a;
9288
9289
  return {
@@ -9481,9 +9482,10 @@ var service = (funcParams) => {
9481
9482
  }
9482
9483
  const config = pageData == null ? void 0 : pageData.config;
9483
9484
  const uiSchema = pageData == null ? void 0 : pageData.uiSchema;
9484
- new CustomEvent("pageNameChanged", {
9485
+ const event2 = new CustomEvent("pageNameChanged", {
9485
9486
  detail: { pageName: config.label }
9486
9487
  });
9488
+ window.dispatchEvent(event2);
9487
9489
  const theme = (_b = (_a = funcParams == null ? void 0 : funcParams.store) == null ? void 0 : _a.theme) == null ? void 0 : _b.myTheme;
9488
9490
  uiSchema.elements.push(
9489
9491
  {
@@ -11227,6 +11229,12 @@ const buildTextArea = (config, componentScope) => {
11227
11229
  if (config.placeholder) {
11228
11230
  textArea.config.main.placeholder = config.placeholder;
11229
11231
  }
11232
+ if (config.enableCodeEditor) {
11233
+ textArea.config.main.enableCodeEditor = config.enableCodeEditor === "YES" ? true : false;
11234
+ }
11235
+ if (config.codeEditorLanguage) {
11236
+ textArea.config.main.codeEditorLanguage = config.codeEditorLanguage;
11237
+ }
11230
11238
  textArea.scope = componentScope;
11231
11239
  return textArea;
11232
11240
  };