impaktapps-ui-builder 0.0.412-mtreemap.15 → 0.0.412-mtreemap.16
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 +2 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -1
|
@@ -7400,7 +7400,7 @@ const createLayoutFormat = (config) => {
|
|
|
7400
7400
|
}
|
|
7401
7401
|
let data = {};
|
|
7402
7402
|
config.map((e) => {
|
|
7403
|
-
data[e.key || "xs"] = +e.value ||
|
|
7403
|
+
data[e.key || "xs"] = +e.value || 5.5;
|
|
7404
7404
|
});
|
|
7405
7405
|
return data;
|
|
7406
7406
|
};
|
|
@@ -9824,7 +9824,7 @@ const buildWrapperSection = (config, componentScope) => {
|
|
|
9824
9824
|
wrapper.scope = componentScope;
|
|
9825
9825
|
wrapper.config.main.label = config.label;
|
|
9826
9826
|
wrapper.config.main.divider = config.divider === "YES" ? true : false;
|
|
9827
|
-
wrapper.config.main.isAccordion = config.isAccordion === "
|
|
9827
|
+
wrapper.config.main.isAccordion = config.isAccordion === "NO" ? false : true;
|
|
9828
9828
|
if (config.defaultStyle) {
|
|
9829
9829
|
wrapper.config.defaultStyle = config.defaultStyle === "YES" ? true : false;
|
|
9830
9830
|
}
|