@baloise/angular-output-target 1.2.1 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
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.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)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **angular:** add forward refs ([248fcf7](https://github.com/baloise/stencil-ds-output-targets/commit/248fcf742f5e099b970567be65e4c1373edcf98b))
12
+
13
+
14
+
15
+
16
+
17
+ ## [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)
18
+
19
+ **Note:** Version bump only for package @baloise/angular-output-target
20
+
21
+
22
+
23
+
24
+
25
+ ## [1.2.2](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.1...@baloise/angular-output-target@1.2.2) (2022-03-01)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **angular:** export components ([230f401](https://github.com/baloise/stencil-ds-output-targets/commit/230f401db085b54ddb1497074f78aa8886faba1d))
31
+
32
+
33
+
34
+
35
+
6
36
  ## [1.2.1](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.0...@baloise/angular-output-target@1.2.1) (2022-03-01)
7
37
 
8
38
  **Note:** Version bump only for package @baloise/angular-output-target
@@ -40,7 +40,7 @@ ${getProxyCmp(inputs, methods)}
40
40
  @Component({
41
41
  ${directiveOpts.join(',\n ')}
42
42
  })
43
- class ${tagNameAsPascal} {`,
43
+ export class ${tagNameAsPascal} {`,
44
44
  ];
45
45
  // Generate outputs
46
46
  outputs.forEach(output => {
package/dist/index.cjs.js CHANGED
@@ -128,7 +128,7 @@ ${getProxyCmp(inputs, methods)}
128
128
  @Component({
129
129
  ${directiveOpts.join(',\n ')}
130
130
  })
131
- class ${tagNameAsPascal} {`,
131
+ export class ${tagNameAsPascal} {`,
132
132
  ];
133
133
  // Generate outputs
134
134
  outputs.forEach(output => {
package/dist/index.js CHANGED
@@ -119,7 +119,7 @@ ${getProxyCmp(inputs, methods)}
119
119
  @Component({
120
120
  ${directiveOpts.join(',\n ')}
121
121
  })
122
- class ${tagNameAsPascal} {`,
122
+ export class ${tagNameAsPascal} {`,
123
123
  ];
124
124
  // Generate outputs
125
125
  outputs.forEach(output => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baloise/angular-output-target",
3
- "version": "1.2.1",
3
+ "version": "1.2.4",
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": "f846fced90a990d1557f642e4c1090b196e75694"
64
+ "gitHead": "f6ae78217f91317c0580c9e2ad60f8ac76c160b5"
65
65
  }
@@ -1,4 +1,4 @@
1
- import { Directive, ElementRef } from '@angular/core'
1
+ import { Directive, ElementRef, forwardRef } from '@angular/core'
2
2
  import { NG_VALUE_ACCESSOR } from '@angular/forms'
3
3
 
4
4
  import { ValueAccessor } from './value-accessor'
@@ -12,7 +12,7 @@ import { ValueAccessor } from './value-accessor'
12
12
  providers: [
13
13
  {
14
14
  provide: NG_VALUE_ACCESSOR,
15
- useExisting: BooleanValueAccessor,
15
+ useExisting: forwardRef(() => BooleanValueAccessor),
16
16
  multi: true,
17
17
  },
18
18
  ],
@@ -1,4 +1,4 @@
1
- import { Directive, ElementRef } from '@angular/core'
1
+ import { Directive, ElementRef, forwardRef } from '@angular/core'
2
2
  import { NG_VALUE_ACCESSOR } from '@angular/forms'
3
3
 
4
4
  import { ValueAccessor } from './value-accessor'
@@ -12,7 +12,7 @@ import { ValueAccessor } from './value-accessor'
12
12
  providers: [
13
13
  {
14
14
  provide: NG_VALUE_ACCESSOR,
15
- useExisting: NumericValueAccessor,
15
+ useExisting: forwardRef(() => NumericValueAccessor),
16
16
  multi: true,
17
17
  },
18
18
  ],
@@ -1,4 +1,4 @@
1
- import { Directive, ElementRef } from '@angular/core'
1
+ import { Directive, ElementRef, forwardRef } from '@angular/core'
2
2
  import { NG_VALUE_ACCESSOR } from '@angular/forms'
3
3
 
4
4
  import { ValueAccessor } from './value-accessor'
@@ -12,7 +12,7 @@ import { ValueAccessor } from './value-accessor'
12
12
  providers: [
13
13
  {
14
14
  provide: NG_VALUE_ACCESSOR,
15
- useExisting: RadioValueAccessor,
15
+ useExisting: forwardRef(() => RadioValueAccessor),
16
16
  multi: true,
17
17
  },
18
18
  ],
@@ -1,4 +1,4 @@
1
- import { Directive, ElementRef } from '@angular/core'
1
+ import { Directive, ElementRef, forwardRef } from '@angular/core'
2
2
  import { NG_VALUE_ACCESSOR } from '@angular/forms'
3
3
 
4
4
  import { ValueAccessor } from './value-accessor'
@@ -12,7 +12,7 @@ import { ValueAccessor } from './value-accessor'
12
12
  providers: [
13
13
  {
14
14
  provide: NG_VALUE_ACCESSOR,
15
- useExisting: SelectValueAccessor,
15
+ useExisting: forwardRef(() => SelectValueAccessor),
16
16
  multi: true,
17
17
  },
18
18
  ],
@@ -1,4 +1,4 @@
1
- import { Directive, ElementRef } from '@angular/core'
1
+ import { Directive, ElementRef, forwardRef } from '@angular/core'
2
2
  import { NG_VALUE_ACCESSOR } from '@angular/forms'
3
3
 
4
4
  import { ValueAccessor } from './value-accessor'
@@ -12,7 +12,7 @@ import { ValueAccessor } from './value-accessor'
12
12
  providers: [
13
13
  {
14
14
  provide: NG_VALUE_ACCESSOR,
15
- useExisting: TextValueAccessor,
15
+ useExisting: forwardRef(() => TextValueAccessor),
16
16
  multi: true,
17
17
  },
18
18
  ],