ps-toolkit-ui 0.0.166 → 0.0.167

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.
@@ -6015,10 +6015,9 @@
6015
6015
  }
6016
6016
  AlertComponent.prototype.show = function (l, accept) {
6017
6017
  this.alertLabel.value = l;
6018
- // this.alert.onHide = () => {
6019
- // this.alert.hide();
6020
- // accept();
6021
- // };
6018
+ this.alert.onHide = function () {
6019
+ accept();
6020
+ };
6022
6021
  this.alert.show();
6023
6022
  };
6024
6023
  return AlertComponent;