@baloise/angular-output-target
Advanced tools
Comparing version 1.0.24 to 1.0.25
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.0.25](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.24...@baloise/angular-output-target@1.0.25) (2022-01-08) | ||
### Bug Fixes | ||
* **angular:** change checked to value to add more components than the checkbox ([ff96e74](https://github.com/baloise/stencil-ds-output-targets/commit/ff96e742f1dcb1c8427a67f3a0c96dfe4baf75c5)) | ||
## [1.0.24](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.23...@baloise/angular-output-target@1.0.24) (2022-01-08) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@baloise/angular-output-target", | ||
"version": "1.0.24", | ||
"version": "1.0.25", | ||
"description": "Angular output target for @stencil/core components.", | ||
@@ -64,3 +64,3 @@ "main": "dist/index.cjs.js", | ||
}, | ||
"gitHead": "71d3e109b5ed5fc623f41c2ddb5176c0c6f86dd1" | ||
"gitHead": "762717adb5c9c21245ab20bde1590f02245e119b" | ||
} |
@@ -25,4 +25,4 @@ import { Directive, ElementRef } from '@angular/core' | ||
writeValue(value: any) { | ||
this.el.nativeElement.checked = this.lastValue = value == null ? false : value | ||
this.el.nativeElement.value = this.lastValue = value == null ? false : value | ||
} | ||
} |
68224