@indigina/ui-kit 1.0.93 → 1.0.94

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.
@@ -2520,13 +2520,16 @@
2520
2520
  this.isConfirmation = false;
2521
2521
  }
2522
2522
  AbstractKitCtaPanelConfirmationComponent.prototype.onOpenButtonClick = function () {
2523
- this.toggleMode();
2523
+ this.showConfirmation();
2524
2524
  };
2525
2525
  AbstractKitCtaPanelConfirmationComponent.prototype.onQuitButtonClick = function () {
2526
- this.toggleMode();
2526
+ this.hideConfirmation();
2527
2527
  };
2528
- AbstractKitCtaPanelConfirmationComponent.prototype.toggleMode = function () {
2529
- this.isConfirmation = !this.isConfirmation;
2528
+ AbstractKitCtaPanelConfirmationComponent.prototype.hideConfirmation = function () {
2529
+ this.isConfirmation = false;
2530
+ };
2531
+ AbstractKitCtaPanelConfirmationComponent.prototype.showConfirmation = function () {
2532
+ this.isConfirmation = true;
2530
2533
  };
2531
2534
  return AbstractKitCtaPanelConfirmationComponent;
2532
2535
  }());