@mtna/web-form-angular 1.0.4-SNAPSHOT.1 → 1.0.4-SNAPSHOT.2
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/bundles/mtna-web-form-angular.umd.js +3 -2
- package/bundles/mtna-web-form-angular.umd.js.map +1 -1
- package/esm2015/lib/components/form-stepper/form-stepper/form-stepper.component.js +4 -3
- package/fesm2015/mtna-web-form-angular.js +3 -2
- package/fesm2015/mtna-web-form-angular.js.map +1 -1
- package/package.json +8 -8
|
@@ -4916,6 +4916,9 @@
|
|
|
4916
4916
|
event.preventDefault();
|
|
4917
4917
|
event.stopImmediatePropagation();
|
|
4918
4918
|
}
|
|
4919
|
+
else {
|
|
4920
|
+
this.selected.emit(step);
|
|
4921
|
+
}
|
|
4919
4922
|
};
|
|
4920
4923
|
MtnaWfFormStepperComponent.prototype.createGroupStepCollapsedMap = function (steps) {
|
|
4921
4924
|
var _this = this;
|
|
@@ -4924,11 +4927,9 @@
|
|
|
4924
4927
|
_this.groupStepCollapsedMap[step.instanceId] = step.collapsed;
|
|
4925
4928
|
}
|
|
4926
4929
|
});
|
|
4927
|
-
console.warn('groupStepCollapsedMap', this.groupStepCollapsedMap);
|
|
4928
4930
|
};
|
|
4929
4931
|
MtnaWfFormStepperComponent.prototype.toggleGroupStep = function (step) {
|
|
4930
4932
|
this.groupStepCollapsedMap[step.instanceId] = !this.groupStepCollapsedMap[step.instanceId];
|
|
4931
|
-
console.warn('groupStepCollapsedMap', this.groupStepCollapsedMap);
|
|
4932
4933
|
};
|
|
4933
4934
|
return MtnaWfFormStepperComponent;
|
|
4934
4935
|
}(_FormStepperMixinBase));
|