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.
- package/dist/impaktapps-ui-builder.es.js +15 -15
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +11 -11
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +3 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +1 -1
package/package.json
CHANGED
|
@@ -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.
|
|
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"]),
|
|
383
|
+
, getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),
|
|
384
|
+
getInputField("rowSpacing", "Row Spacing"),
|
|
385
|
+
]
|
|
384
386
|
break;
|
|
385
387
|
|
|
386
388
|
case "TabSection":
|