impaktapps-ui-builder 0.0.409-g → 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.
@@ -6693,18 +6693,6 @@ const EventSection = {
6693
6693
  }
6694
6694
  ]
6695
6695
  };
6696
- var emptyBox = {
6697
- type: "Control",
6698
- scope: "#/properties/emptyBox",
6699
- options: {
6700
- widget: "EmptyBox"
6701
- },
6702
- config: {
6703
- layout: { xs: 12, sm: 12, md: 5.5, lg: 5.5 },
6704
- main: {},
6705
- style: {}
6706
- }
6707
- };
6708
6696
  const EmptyBox = {
6709
6697
  type: "Control",
6710
6698
  scope: `#/properties/empty`,
@@ -7050,7 +7038,7 @@ const buildPropertiesSection = function(type) {
7050
7038
  getRadioInputField("divider", "Divider", ["YES", "No"]),
7051
7039
  getRadioInputField("isAccordion", "Accordion", ["YES", "No"]),
7052
7040
  getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),
7053
- emptyBox
7041
+ getInputField("rowSpacing", "Row Spacing")
7054
7042
  ];
7055
7043
  break;
7056
7044
  case "TabSection":
@@ -9732,7 +9720,7 @@ var WrapperSection = {
9732
9720
  type: "WrapperLayout",
9733
9721
  config: {
9734
9722
  main: {
9735
- label: "Default Label",
9723
+ rowSpacing: 3,
9736
9724
  divider: true
9737
9725
  },
9738
9726
  defaultStyle: true
@@ -9746,7 +9734,7 @@ const buildWrapperSection = (config, componentScope) => {
9746
9734
  wrapper.config.main.divider = config.divider === "YES" ? true : false;
9747
9735
  wrapper.config.main.isAccordion = config.isAccordion === "YES" ? true : false;
9748
9736
  if (config.defaultStyle) {
9749
- wrapper.config.main.defaultStyle = config.defaultStyle === "YES" ? true : false;
9737
+ wrapper.config.defaultStyle = config.defaultStyle === "YES" ? true : false;
9750
9738
  }
9751
9739
  if (config.style) {
9752
9740
  wrapper.config.style = JSON.parse(config.style);
@@ -10556,6 +10544,18 @@ const buildRadio = (config, componentScope) => {
10556
10544
  }
10557
10545
  return Radio;
10558
10546
  };
10547
+ var emptyBox = {
10548
+ type: "Control",
10549
+ scope: "#/properties/emptyBox",
10550
+ options: {
10551
+ widget: "EmptyBox"
10552
+ },
10553
+ config: {
10554
+ layout: { xs: 12, sm: 12, md: 5.5, lg: 5.5 },
10555
+ main: {},
10556
+ style: {}
10557
+ }
10558
+ };
10559
10559
  const buildEmptyBox = (config, componentScope) => {
10560
10560
  const EmptyBox2 = _.cloneDeep(emptyBox);
10561
10561
  if (config.layout) {