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.
@@ -2,7 +2,7 @@ declare const _default: {
2
2
  type: string;
3
3
  config: {
4
4
  main: {
5
- label: string;
5
+ rowSpacing: number;
6
6
  divider: boolean;
7
7
  };
8
8
  defaultStyle: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.409g",
3
+ "version": "0.0.409h",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -9,7 +9,7 @@ export const buildWrapperSection = (config, componentScope) => {
9
9
  wrapper.config.main.divider = config.divider === "YES" ? true : false;
10
10
  wrapper.config.main.isAccordion = config.isAccordion === "YES" ? true : false;
11
11
  if(config.defaultStyle){
12
- wrapper.config.main.defaultStyle = config.defaultStyle ==="YES" ? true : false;
12
+ wrapper.config.defaultStyle = config.defaultStyle ==="YES" ? true : false;
13
13
  }
14
14
  if (config.style) {
15
15
  wrapper.config.style = JSON.parse(config.style)
@@ -380,7 +380,9 @@ export const buildPropertiesSection = function (type: String) {
380
380
  case "WrapperSection":
381
381
  uiSchema.elements = [getRadioInputField("divider", "Divider", ["YES", "No"]),
382
382
  getRadioInputField("isAccordion", "Accordion", ["YES", "No"])
383
- , getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),emptyBox]
383
+ , getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),
384
+ getInputField("rowSpacing", "Row Spacing"),
385
+ ]
384
386
  break;
385
387
 
386
388
  case "TabSection":
@@ -2,7 +2,7 @@ export default {
2
2
  type: "WrapperLayout",
3
3
  config: {
4
4
  main: {
5
- label: "Default Label",
5
+ rowSpacing: 3,
6
6
  divider: true,
7
7
  },
8
8
  defaultStyle: true,