@colijnit/corecomponents_v12 12.0.25 → 12.0.26

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.
@@ -6882,32 +6882,37 @@
6882
6882
  },] }
6883
6883
  ];
6884
6884
 
6885
- var InputSearchComponent = /** @class */ (function () {
6886
- function InputSearchComponent(_elementRef) {
6887
- this._elementRef = _elementRef;
6888
- this.searchIcon = exports.CoreComponentsIcon.Magnifier;
6885
+ var InputSearchComponent = /** @class */ (function (_super) {
6886
+ __extends(InputSearchComponent, _super);
6887
+ function InputSearchComponent(_elementRef, changeDetector, componentFactoryResolver, formUserChangeListener, ngZoneWrapper) {
6888
+ var _this = _super.call(this, changeDetector, componentFactoryResolver, formUserChangeListener, ngZoneWrapper, _elementRef) || this;
6889
+ _this._elementRef = _elementRef;
6890
+ _this.changeDetector = changeDetector;
6891
+ _this.componentFactoryResolver = componentFactoryResolver;
6892
+ _this.formUserChangeListener = formUserChangeListener;
6893
+ _this.ngZoneWrapper = ngZoneWrapper;
6894
+ _this.searchIcon = exports.CoreComponentsIcon.Magnifier;
6895
+ return _this;
6889
6896
  }
6890
6897
  InputSearchComponent.prototype.showClass = function () {
6891
6898
  return true;
6892
6899
  };
6893
- InputSearchComponent.prototype.ngOnDestroy = function () {
6894
- this._elementRef = undefined;
6895
- };
6896
- InputSearchComponent.prototype.focus = function () {
6897
- this._elementRef.nativeElement.focus();
6898
- };
6899
6900
  return InputSearchComponent;
6900
- }());
6901
+ }(BaseInputComponent));
6901
6902
  InputSearchComponent.decorators = [
6902
6903
  { type: core.Component, args: [{
6903
6904
  selector: "co-input-search",
6904
- template: "\n <co-icon class=\"search-icon\" [icon]=\"searchIcon\"></co-icon>\n <input class=\"input\" [placeholder]=\"placeHolderText\">\n ",
6905
+ template: "\n <co-icon class=\"search-icon\" [icon]=\"searchIcon\"></co-icon>\n <input class=\"input\" [placeholder]=\"placeHolderText\">\n ",
6905
6906
  changeDetection: core.ChangeDetectionStrategy.OnPush,
6906
6907
  encapsulation: core.ViewEncapsulation.None
6907
6908
  },] }
6908
6909
  ];
6909
6910
  InputSearchComponent.ctorParameters = function () { return [
6910
- { type: core.ElementRef }
6911
+ { type: core.ElementRef },
6912
+ { type: core.ChangeDetectorRef },
6913
+ { type: core.ComponentFactoryResolver },
6914
+ { type: FormInputUserModelChangeListenerService },
6915
+ { type: NgZoneWrapperService }
6911
6916
  ]; };
6912
6917
  InputSearchComponent.propDecorators = {
6913
6918
  placeHolderText: [{ type: core.Input }],