@baloise/angular-output-target 1.0.22 → 1.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,41 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.26](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.25...@baloise/angular-output-target@1.0.26) (2022-01-24)
7
+
8
+ **Note:** Version bump only for package @baloise/angular-output-target
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **angular:** change checked to value to add more components than the checkbox ([ff96e74](https://github.com/baloise/stencil-ds-output-targets/commit/ff96e742f1dcb1c8427a67f3a0c96dfe4baf75c5))
20
+
21
+
22
+
23
+
24
+
25
+ ## [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)
26
+
27
+ **Note:** Version bump only for package @baloise/angular-output-target
28
+
29
+
30
+
31
+
32
+
33
+ ## [1.0.23](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.22...@baloise/angular-output-target@1.0.23) (2022-01-06)
34
+
35
+ **Note:** Version bump only for package @baloise/angular-output-target
36
+
37
+
38
+
39
+
40
+
6
41
  ## [1.0.22](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.21...@baloise/angular-output-target@1.0.22) (2021-12-16)
7
42
 
8
43
  **Note:** Version bump only for package @baloise/angular-output-target
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baloise/angular-output-target",
3
- "version": "1.0.22",
3
+ "version": "1.0.26",
4
4
  "description": "Angular output target for @stencil/core components.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -61,5 +61,5 @@
61
61
  ],
62
62
  "testURL": "http://localhost"
63
63
  },
64
- "gitHead": "d30901f9c1e76b506be874dae5897e45317dd9cd"
64
+ "gitHead": "8bb77d65c12764569a0e28d9fa00d1daeb28ba08"
65
65
  }
@@ -22,6 +22,6 @@ export class BooleanValueAccessor extends ValueAccessor {
22
22
  super(el)
23
23
  }
24
24
  writeValue(value: any) {
25
- this.el.nativeElement.checked = this.lastValue = value == null ? false : value
25
+ this.el.nativeElement.value = this.lastValue = value == null ? false : value
26
26
  }
27
27
  }