impaktapps-ui-builder 0.0.382-alpha.28 → 0.0.382-alpha.29
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 +3 -4
- 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/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +0 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +3 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +0 -3
|
@@ -8770,9 +8770,6 @@ var service = (funcParams) => {
|
|
|
8770
8770
|
functionParameters == null ? void 0 : functionParameters.handleReset();
|
|
8771
8771
|
}
|
|
8772
8772
|
},
|
|
8773
|
-
backHandler: (store2) => {
|
|
8774
|
-
store2.navigate(-1);
|
|
8775
|
-
},
|
|
8776
8773
|
callHandler: async function(eventType, functionParameters) {
|
|
8777
8774
|
var _a, _b, _c;
|
|
8778
8775
|
const path = ((_a = funcParams.dynamicData) == null ? void 0 : _a.tableButtonPath) || funcParams.dynamicData.path.split(".")[0];
|
|
@@ -9608,8 +9605,10 @@ var WrapperSection = {
|
|
|
9608
9605
|
};
|
|
9609
9606
|
const buildWrapperSection = (config, componentScope) => {
|
|
9610
9607
|
const wrapper = _.cloneDeep(WrapperSection);
|
|
9608
|
+
wrapper.scope = componentScope;
|
|
9611
9609
|
wrapper.config.main.label = config.label;
|
|
9612
9610
|
wrapper.config.main.divider = config.divider === "YES" ? true : false;
|
|
9611
|
+
wrapper.config.main.isAccordion = config.isAccordion === "YES" ? true : false;
|
|
9613
9612
|
if (config.style) {
|
|
9614
9613
|
wrapper.config.style = JSON.parse(config.style);
|
|
9615
9614
|
}
|
|
@@ -10752,7 +10751,7 @@ const buildUiSchema = (config) => {
|
|
|
10752
10751
|
elements = RunnerBoyProgressbar(config, componentScope);
|
|
10753
10752
|
break;
|
|
10754
10753
|
case "WrapperSection":
|
|
10755
|
-
elements = buildWrapperSection(config);
|
|
10754
|
+
elements = buildWrapperSection(config, componentScope);
|
|
10756
10755
|
break;
|
|
10757
10756
|
case "Text":
|
|
10758
10757
|
elements = buildTextField(config, componentScope);
|