impaktapps-ui-builder 1.0.98 → 1.0.100

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.
@@ -7859,6 +7859,7 @@ const buildPropertiesSection = function(type) {
7859
7859
  getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
7860
7860
  getInputField("selectKey", "Selection Key"),
7861
7861
  getMultiSelectField("filteringOptions", "Filtering Options"),
7862
+ getSelectField("maxPageSize", "Max Page Size"),
7862
7863
  buildWrapper("Tree Table Properties", [
7863
7864
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
7864
7865
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
@@ -7875,6 +7876,8 @@ const buildPropertiesSection = function(type) {
7875
7876
  break;
7876
7877
  case "Radio":
7877
7878
  uiSchema.elements = [
7879
+ getInputField("errorMessage", "Error Message"),
7880
+ emptyBox$1("Radio", { xs: 6, sm: 6, md: 8, lg: 9 }),
7878
7881
  getArrayControl("sectionLabels", "label", "Options Of Radio")
7879
7882
  ];
7880
7883
  break;
@@ -11152,6 +11155,9 @@ const buildTable = (config2, componentScope2) => {
11152
11155
  if (config2.selectKey) {
11153
11156
  table.config.main.selectKey = config2.selectKey;
11154
11157
  }
11158
+ if (config2.maxPageSize) {
11159
+ table.config.main.maxPageSize = config2.maxPageSize;
11160
+ }
11155
11161
  return table;
11156
11162
  };
11157
11163
  const Box = {
@@ -11807,8 +11813,7 @@ const RadioUiSchema = {
11807
11813
  layout: { xs: 12, sm: 6, md: 4, lg: 3 },
11808
11814
  main: {
11809
11815
  label: "Enabled",
11810
- options: ["YES", "NO"],
11811
- errorMessage: "Enabled is not marked as YES or NO"
11816
+ options: ["YES", "NO"]
11812
11817
  }
11813
11818
  }
11814
11819
  };
@@ -11825,6 +11830,9 @@ const buildRadio = (config2, componentScope2) => {
11825
11830
  if (config2.style) {
11826
11831
  Radio.config.style = JSON.parse(config2.style);
11827
11832
  }
11833
+ if (config2.errorMessage) {
11834
+ Radio.config.main.errorMessage = config2.errorMessage;
11835
+ }
11828
11836
  return Radio;
11829
11837
  };
11830
11838
  var emptyBox = {