@stemy/ngx-utils 12.2.7 → 12.2.8

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.
@@ -5012,10 +5012,12 @@
5012
5012
  return AsyncMethodBase;
5013
5013
  }());
5014
5014
  AsyncMethodBase.decorators = [
5015
- { type: core.Injectable }
5015
+ { type: core.Directive, args: [{
5016
+ selector: "[_abstract_asyncMethodBase]"
5017
+ },] }
5016
5018
  ];
5017
5019
  AsyncMethodBase.ctorParameters = function () { return [
5018
- { type: undefined }
5020
+ { type: undefined, decorators: [{ type: core.Inject, args: [TOASTER_SERVICE,] }] }
5019
5021
  ]; };
5020
5022
  AsyncMethodBase.propDecorators = {
5021
5023
  disabled: [{ type: core.Input }],
@@ -5029,8 +5031,8 @@
5029
5031
 
5030
5032
  var AsyncMethodDirective = /** @class */ (function (_super) {
5031
5033
  __extends(AsyncMethodDirective, _super);
5032
- function AsyncMethodDirective(toaster) {
5033
- return _super.call(this, toaster) || this;
5034
+ function AsyncMethodDirective() {
5035
+ return _super !== null && _super.apply(this, arguments) || this;
5034
5036
  }
5035
5037
  AsyncMethodDirective.prototype.getMethod = function () {
5036
5038
  return this.method;
@@ -5043,9 +5045,6 @@
5043
5045
  exportAs: "async-method"
5044
5046
  },] }
5045
5047
  ];
5046
- AsyncMethodDirective.ctorParameters = function () { return [
5047
- { type: undefined, decorators: [{ type: core.Inject, args: [TOASTER_SERVICE,] }] }
5048
- ]; };
5049
5048
  AsyncMethodDirective.propDecorators = {
5050
5049
  method: [{ type: core.Input, args: ["async-method",] }]
5051
5050
  };
@@ -6010,6 +6009,7 @@
6010
6009
  ];
6011
6010
  // --- Directives ---
6012
6011
  var directives = [
6012
+ AsyncMethodBase,
6013
6013
  AsyncMethodDirective,
6014
6014
  BackgroundDirective,
6015
6015
  DynamicTableTemplateDirective,