@colijnit/transaction 254.1.21 → 254.1.22
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/colijnit-transaction.umd.js +9 -2
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/esm2015/lib/component/simple-vertical-stepper/co-simple-vertical-stepper.component.js +7 -1
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +8 -2
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +1 -1
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
function Version() {
|
|
34
34
|
this.name = "@colijnit/transaction";
|
|
35
35
|
this.description = "Colijn IT transaction package";
|
|
36
|
-
this.symVer = "254.1.
|
|
37
|
-
this.publishDate = "12-7-2024
|
|
36
|
+
this.symVer = "254.1.22";
|
|
37
|
+
this.publishDate = "12-7-2024 13:09:49";
|
|
38
38
|
}
|
|
39
39
|
return Version;
|
|
40
40
|
}());
|
|
@@ -53486,11 +53486,18 @@
|
|
|
53486
53486
|
};
|
|
53487
53487
|
//Beware this method bypasses verification of steps! Please only use it if you are certain that is appropriate.
|
|
53488
53488
|
SimpleVerticalStepperComponent.prototype.openToIndex = function (idx) {
|
|
53489
|
+
var _this = this;
|
|
53489
53490
|
var counter = 0;
|
|
53490
53491
|
while (counter <= (idx - 1)) {
|
|
53491
53492
|
this.stepChildren[counter].show = true;
|
|
53492
53493
|
counter++;
|
|
53493
53494
|
}
|
|
53495
|
+
if (this.doNotShowOKOnSteps.findIndex(function (n) { return n === _this.stepChildren[idx - 1].index; }) >= 0) {
|
|
53496
|
+
this.showOk = false;
|
|
53497
|
+
}
|
|
53498
|
+
else {
|
|
53499
|
+
this.showOk = true;
|
|
53500
|
+
}
|
|
53494
53501
|
this.activeStep = idx - 1;
|
|
53495
53502
|
};
|
|
53496
53503
|
SimpleVerticalStepperComponent.prototype.validateCurrentStep = function (nextStep) {
|