impaktapps-ui-builder 0.0.83 → 0.0.85

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,8 +7350,7 @@ const getTextArea = (scope, heading, hideButton, layout) => {
7350
7350
  main: {
7351
7351
  heading,
7352
7352
  minRows: 8,
7353
- hideButton,
7354
- enableCodeEditor: true
7353
+ hideButton
7355
7354
  }
7356
7355
  }
7357
7356
  };
@@ -7457,8 +7456,8 @@ const buildPropertiesSection = function(type) {
7457
7456
  case "TextArea":
7458
7457
  uiSchema.elements = [
7459
7458
  getInputField("placeholder", "Placeholder"),
7460
- getRadioInputField("enableCodeEditor", "Enable Code Editor", ["YES", "NO"]),
7461
- getInputField("codeEditorLanguage", "Enter Code Language")
7459
+ emptyBox$1("TextAreaEmpty1", { xs: 6, sm: 6, md: 4, lg: 4 }),
7460
+ emptyBox$1("TextAreaEmpty2", { xs: 0, sm: 0, md: 4, lg: 4 })
7462
7461
  ];
7463
7462
  break;
7464
7463
  case "SpeedoMeter":
@@ -7575,10 +7574,10 @@ const buildPropertiesSection = function(type) {
7575
7574
  getRadioInputField("disableFullScreenToggle", "Disable Full Screen", ["YES", "NO"]),
7576
7575
  getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
7577
7576
  getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
7577
+ getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
7578
7578
  getInputField("selectKey", "Selection Key"),
7579
7579
  getMultiSelectField("filteringOptions", "Filtering Options"),
7580
7580
  emptyBox$1("LazyLoadingTableEmpty1", { xs: 6, sm: 0, md: 4, lg: 4 }),
7581
- emptyBox$1("LazyLoadingTableEmpty1", { xs: 6, sm: 0, md: 4, lg: 4 }),
7582
7581
  buildWrapper("Tree Table Properties", [
7583
7582
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
7584
7583
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
@@ -10756,6 +10755,9 @@ const buildTable = (config, componentScope) => {
10756
10755
  if (config.disableDownloadFile) {
10757
10756
  table.config.main.disableDownloadFile = config.disableDownloadFile === "YES" ? true : false;
10758
10757
  }
10758
+ if (config.disablePagination) {
10759
+ table.config.main.disablePagination = config.disablePagination === "YES" ? true : false;
10760
+ }
10759
10761
  if (config.Table_Download_Keys_Name) {
10760
10762
  table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map((e) => e.KeyName);
10761
10763
  }
@@ -10803,6 +10805,9 @@ const buildLazyLoadingTable = (config, componentScope) => {
10803
10805
  if (config.disableDownloadFile) {
10804
10806
  table.config.main.disableDownloadFile = config.disableDownloadFile === "YES" ? true : false;
10805
10807
  }
10808
+ if (config.disablePagination) {
10809
+ table.config.main.disablePagination = config.disablePagination === "YES" ? true : false;
10810
+ }
10806
10811
  if (config.Table_Download_Keys_Name) {
10807
10812
  table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map((e) => e.KeyName);
10808
10813
  }
@@ -11287,12 +11292,6 @@ const buildTextArea = (config, componentScope) => {
11287
11292
  if (config.placeholder) {
11288
11293
  textArea.config.main.placeholder = config.placeholder;
11289
11294
  }
11290
- if (config.enableCodeEditor) {
11291
- textArea.config.main.enableCodeEditor = config.enableCodeEditor === "YES" ? true : false;
11292
- }
11293
- if (config.codeEditorLanguage) {
11294
- textArea.config.main.codeEditorLanguage = config.codeEditorLanguage;
11295
- }
11296
11295
  textArea.scope = componentScope;
11297
11296
  return textArea;
11298
11297
  };