impaktapps-ui-builder 0.0.392 → 0.0.394
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 +6 -3
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +5 -1
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -1
|
@@ -7021,7 +7021,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7021
7021
|
case "TabSection":
|
|
7022
7022
|
uiSchema.elements = [
|
|
7023
7023
|
getRadioInputField("verticalOrientation", "Vertical Orientation", ["YES", "NO"]),
|
|
7024
|
-
|
|
7024
|
+
getRadioInputField("lazyLoad", "Lazy Load", ["YES", "NO"]),
|
|
7025
7025
|
getArrayControl("sectionLabels", "label")
|
|
7026
7026
|
];
|
|
7027
7027
|
break;
|
|
@@ -9579,7 +9579,10 @@ var Tabsection = {
|
|
|
9579
9579
|
};
|
|
9580
9580
|
const buildTabSection = (config, componentScope) => {
|
|
9581
9581
|
const tab = _.cloneDeep(Tabsection);
|
|
9582
|
-
tab.
|
|
9582
|
+
tab.scope = componentScope;
|
|
9583
|
+
if (config.lazyLoad) {
|
|
9584
|
+
tab.config.main.lazyLoad = config.lazyLoad === "YES" ? true : false;
|
|
9585
|
+
}
|
|
9583
9586
|
if (config.orientation) {
|
|
9584
9587
|
tab.config.main.orientation = config.orientation === "YES" ? "vertical" : "horizontal";
|
|
9585
9588
|
}
|
|
@@ -9602,7 +9605,7 @@ var WrapperSection = {
|
|
|
9602
9605
|
};
|
|
9603
9606
|
const buildWrapperSection = (config, componentScope) => {
|
|
9604
9607
|
const wrapper = _.cloneDeep(WrapperSection);
|
|
9605
|
-
wrapper.
|
|
9608
|
+
wrapper.scope = componentScope;
|
|
9606
9609
|
wrapper.config.main.label = config.label;
|
|
9607
9610
|
wrapper.config.main.divider = config.divider === "YES" ? true : false;
|
|
9608
9611
|
if (config.style) {
|