impaktapps-ui-builder 0.0.409-f → 0.0.409-h

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.
@@ -7037,7 +7037,8 @@ const buildPropertiesSection = function(type) {
7037
7037
  uiSchema.elements = [
7038
7038
  getRadioInputField("divider", "Divider", ["YES", "No"]),
7039
7039
  getRadioInputField("isAccordion", "Accordion", ["YES", "No"]),
7040
- EmptyBox
7040
+ getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),
7041
+ getInputField("rowSpacing", "Row Spacing")
7041
7042
  ];
7042
7043
  break;
7043
7044
  case "TabSection":
@@ -9719,7 +9720,7 @@ var WrapperSection = {
9719
9720
  type: "WrapperLayout",
9720
9721
  config: {
9721
9722
  main: {
9722
- label: "Default Label",
9723
+ rowSpacing: 3,
9723
9724
  divider: true
9724
9725
  },
9725
9726
  defaultStyle: true
@@ -9732,6 +9733,9 @@ const buildWrapperSection = (config, componentScope) => {
9732
9733
  wrapper.config.main.label = config.label;
9733
9734
  wrapper.config.main.divider = config.divider === "YES" ? true : false;
9734
9735
  wrapper.config.main.isAccordion = config.isAccordion === "YES" ? true : false;
9736
+ if (config.defaultStyle) {
9737
+ wrapper.config.defaultStyle = config.defaultStyle === "YES" ? true : false;
9738
+ }
9735
9739
  if (config.style) {
9736
9740
  wrapper.config.style = JSON.parse(config.style);
9737
9741
  }