@baloise/angular-output-target
Advanced tools
Comparing version 1.2.3 to 1.2.4
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.2.4](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.3...@baloise/angular-output-target@1.2.4) (2022-03-07) | ||
### Bug Fixes | ||
* **angular:** add forward refs ([248fcf7](https://github.com/baloise/stencil-ds-output-targets/commit/248fcf742f5e099b970567be65e4c1373edcf98b)) | ||
## [1.2.3](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.2...@baloise/angular-output-target@1.2.3) (2022-03-06) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@baloise/angular-output-target", | ||
"version": "1.2.3", | ||
"version": "1.2.4", | ||
"description": "Angular output target for @stencil/core components.", | ||
@@ -64,3 +64,3 @@ "main": "dist/index.cjs.js", | ||
}, | ||
"gitHead": "133356b9f0cfb2c514889357173dd23a03eb8b9e" | ||
"gitHead": "f6ae78217f91317c0580c9e2ad60f8ac76c160b5" | ||
} |
@@ -1,2 +0,2 @@ | ||
import { Directive, ElementRef } from '@angular/core' | ||
import { Directive, ElementRef, forwardRef } from '@angular/core' | ||
import { NG_VALUE_ACCESSOR } from '@angular/forms' | ||
@@ -15,3 +15,3 @@ | ||
provide: NG_VALUE_ACCESSOR, | ||
useExisting: BooleanValueAccessor, | ||
useExisting: forwardRef(() => BooleanValueAccessor), | ||
multi: true, | ||
@@ -18,0 +18,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
import { Directive, ElementRef } from '@angular/core' | ||
import { Directive, ElementRef, forwardRef } from '@angular/core' | ||
import { NG_VALUE_ACCESSOR } from '@angular/forms' | ||
@@ -15,3 +15,3 @@ | ||
provide: NG_VALUE_ACCESSOR, | ||
useExisting: NumericValueAccessor, | ||
useExisting: forwardRef(() => NumericValueAccessor), | ||
multi: true, | ||
@@ -18,0 +18,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
import { Directive, ElementRef } from '@angular/core' | ||
import { Directive, ElementRef, forwardRef } from '@angular/core' | ||
import { NG_VALUE_ACCESSOR } from '@angular/forms' | ||
@@ -15,3 +15,3 @@ | ||
provide: NG_VALUE_ACCESSOR, | ||
useExisting: RadioValueAccessor, | ||
useExisting: forwardRef(() => RadioValueAccessor), | ||
multi: true, | ||
@@ -18,0 +18,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
import { Directive, ElementRef } from '@angular/core' | ||
import { Directive, ElementRef, forwardRef } from '@angular/core' | ||
import { NG_VALUE_ACCESSOR } from '@angular/forms' | ||
@@ -15,3 +15,3 @@ | ||
provide: NG_VALUE_ACCESSOR, | ||
useExisting: SelectValueAccessor, | ||
useExisting: forwardRef(() => SelectValueAccessor), | ||
multi: true, | ||
@@ -18,0 +18,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
import { Directive, ElementRef } from '@angular/core' | ||
import { Directive, ElementRef, forwardRef } from '@angular/core' | ||
import { NG_VALUE_ACCESSOR } from '@angular/forms' | ||
@@ -15,3 +15,3 @@ | ||
provide: NG_VALUE_ACCESSOR, | ||
useExisting: TextValueAccessor, | ||
useExisting: forwardRef(() => TextValueAccessor), | ||
multi: true, | ||
@@ -18,0 +18,0 @@ }, |
79216