impaktapps-ui-builder 0.0.392 → 0.0.393
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 +4 -1
- 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 +4 -0
- 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;
|
|
@@ -9580,6 +9580,9 @@ var Tabsection = {
|
|
|
9580
9580
|
const buildTabSection = (config, componentScope) => {
|
|
9581
9581
|
const tab = _.cloneDeep(Tabsection);
|
|
9582
9582
|
tab.scopeName = 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
|
}
|