@baloise/angular-output-target 1.1.2 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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.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
+
8
+
9
+ ### Features
10
+
11
+ * **react:** add custom react output ([11eabd3](https://github.com/baloise/stencil-ds-output-targets/commit/11eabd33271a12c9a5d15d64c114f30c017cc1d5))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.1.2](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.1.1...@baloise/angular-output-target@1.1.2) (2022-02-10)
7
18
 
8
19
 
@@ -40,7 +40,7 @@ ${getProxyCmp(inputs, methods)}
40
40
  @Component({
41
41
  ${directiveOpts.join(',\n ')}
42
42
  })
43
- export class ${tagNameAsPascal} {`,
43
+ 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
- export class ${tagNameAsPascal} {`,
131
+ 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
- export class ${tagNameAsPascal} {`,
122
+ 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.1.2",
3
+ "version": "1.2.0",
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": "63e87696a264d54d246ac3dcf6cd0fea41f6fb59"
64
+ "gitHead": "63f0fcb394011881616c2cf16c65d07279fe9c1f"
65
65
  }