@stemy/ngx-utils 19.2.8 → 19.2.9

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.
@@ -3709,15 +3709,15 @@ class BaseToasterService {
3709
3709
  }
3710
3710
  translate(message, params, type) {
3711
3711
  this.language.getTranslation(message, params).then(str => {
3712
- this.show(str, type);
3712
+ this.show(str, type, params);
3713
3713
  });
3714
3714
  }
3715
3715
  async translatePromised(message, params, type) {
3716
3716
  const str = await this.language.getTranslation(message, params);
3717
- return this.show(str, type);
3717
+ return this.show(str, type, params);
3718
3718
  }
3719
- show(message, type) {
3720
- console.log(message, `background: ${this.colorMap[type]}; color: #ffffff`);
3719
+ show(message, type, params) {
3720
+ console.log(message, `background: ${this.colorMap[type]}; color: #ffffff`, params);
3721
3721
  return null;
3722
3722
  }
3723
3723
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: BaseToasterService, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable }); }