@veloceapps/sdk 4.0.17 → 4.0.18

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.
@@ -438,12 +438,24 @@
438
438
  _super.prototype.initPlugins.call(_this);
439
439
  return _this;
440
440
  }
441
+ ElementComponent.prototype.ngOnChanges = function (changes) {
442
+ this.plugins.forEach(function (plugin) { var _a; return (_a = plugin.ngOnChanges) === null || _a === void 0 ? void 0 : _a.call(plugin, changes); });
443
+ };
441
444
  ElementComponent.prototype.ngOnInit = function () {
442
445
  this.plugins.forEach(function (plugin) { var _a; return (_a = plugin.ngOnInit) === null || _a === void 0 ? void 0 : _a.call(plugin); });
443
446
  };
447
+ ElementComponent.prototype.ngDoCheck = function () {
448
+ this.plugins.forEach(function (plugin) { var _a; return (_a = plugin.ngDoCheck) === null || _a === void 0 ? void 0 : _a.call(plugin); });
449
+ };
450
+ ElementComponent.prototype.ngAfterContentInit = function () {
451
+ this.plugins.forEach(function (plugin) { var _a; return (_a = plugin.ngAfterContentInit) === null || _a === void 0 ? void 0 : _a.call(plugin); });
452
+ };
444
453
  ElementComponent.prototype.ngAfterViewInit = function () {
445
454
  this.plugins.forEach(function (plugin) { var _a; return (_a = plugin.ngAfterViewInit) === null || _a === void 0 ? void 0 : _a.call(plugin); });
446
455
  };
456
+ ElementComponent.prototype.ngAfterViewChecked = function () {
457
+ this.plugins.forEach(function (plugin) { var _a; return (_a = plugin.ngAfterViewChecked) === null || _a === void 0 ? void 0 : _a.call(plugin); });
458
+ };
447
459
  ElementComponent.prototype.ngOnDestroy = function () {
448
460
  this.plugins.forEach(function (plugin) { var _a; return (_a = plugin.ngOnDestroy) === null || _a === void 0 ? void 0 : _a.call(plugin); });
449
461
  };