@baloise/angular-output-target 1.2.0 → 1.2.3

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,33 @@
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.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)
7
+
8
+ **Note:** Version bump only for package @baloise/angular-output-target
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **angular:** export components ([230f401](https://github.com/baloise/stencil-ds-output-targets/commit/230f401db085b54ddb1497074f78aa8886faba1d))
20
+
21
+
22
+
23
+
24
+
25
+ ## [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)
26
+
27
+ **Note:** Version bump only for package @baloise/angular-output-target
28
+
29
+
30
+
31
+
32
+
6
33
  # [1.2.0](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.1.2...@baloise/angular-output-target@1.2.0) (2022-03-01)
7
34
 
8
35
 
@@ -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.0",
3
+ "version": "1.2.3",
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": "63f0fcb394011881616c2cf16c65d07279fe9c1f"
64
+ "gitHead": "133356b9f0cfb2c514889357173dd23a03eb8b9e"
65
65
  }