@klippa/ngx-enhancy-forms 18.23.5 → 18.23.7

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.
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, ElementRef, EventEmitter, InjectionToken, OnChanges, OnDestroy, SimpleChanges, TemplateRef } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, EventEmitter, InjectionToken, NgZone, OnChanges, OnDestroy, SimpleChanges, TemplateRef } from '@angular/core';
2
2
  import { ControlContainer } from '@angular/forms';
3
3
  import { ValueAccessorBase } from '../value-accessor-base/value-accessor-base.component';
4
4
  import { FormElementComponent } from '../../form/form-element/form-element.component';
@@ -21,6 +21,7 @@ export declare class SelectComponent extends ValueAccessorBase<string | string[]
21
21
  protected controlContainer: ControlContainer;
22
22
  private translations;
23
23
  private elRef;
24
+ private ngZone;
24
25
  placeholder: string;
25
26
  prefix: string;
26
27
  orientation: 'vertical' | 'horizontal';
@@ -57,7 +58,7 @@ export declare class SelectComponent extends ValueAccessorBase<string | string[]
57
58
  private dropdownPanelOffsetY;
58
59
  private anchorAbsolute;
59
60
  private anchorFixed;
60
- constructor(parent: FormElementComponent, controlContainer: ControlContainer, translations: any, elRef: ElementRef);
61
+ constructor(parent: FormElementComponent, controlContainer: ControlContainer, translations: any, elRef: ElementRef, ngZone: NgZone);
61
62
  ngAfterViewInit(): void;
62
63
  private keyListener;
63
64
  private addTail;
@@ -81,6 +82,6 @@ export declare class SelectComponent extends ValueAccessorBase<string | string[]
81
82
  close: () => void;
82
83
  onClose(): void;
83
84
  ngOnDestroy(): void;
84
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [{ optional: true; host: true; }, { optional: true; host: true; }, { optional: true; }, null]>;
85
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [{ optional: true; host: true; }, { optional: true; host: true; }, { optional: true; }, null, null]>;
85
86
  static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "klp-form-select", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "options": { "alias": "options"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "multipleDisplayedAsAmount": { "alias": "multipleDisplayedAsAmount"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "truncateOptions": { "alias": "truncateOptions"; "required": false; }; "withSeparatingLine": { "alias": "withSeparatingLine"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "dropdownPosition": { "alias": "dropdownPosition"; "required": false; }; "dropdownAlignment": { "alias": "dropdownAlignment"; "required": false; }; "customSearchFn": { "alias": "customSearchFn"; "required": false; }; "footerElement": { "alias": "footerElement"; "required": false; }; }, { "onSearch": "onSearch"; "onEndReached": "onEndReached"; "onOpened": "onOpened"; "onClosed": "onClosed"; "onBlur": "onBlur"; "onClear": "onClear"; "onEnterKey": "onEnterKey"; }, ["customOptionTpl"], never, false, never>;
86
87
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klippa/ngx-enhancy-forms",
3
- "version": "18.23.5",
3
+ "version": "18.23.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },