@baloise/angular-output-target 1.2.5 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
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.8](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.7...@baloise/angular-output-target@1.2.8) (2022-03-10)
7
+
8
+ **Note:** Version bump only for package @baloise/angular-output-target
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.2.7](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.6...@baloise/angular-output-target@1.2.7) (2022-03-10)
15
+
16
+ **Note:** Version bump only for package @baloise/angular-output-target
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.2.6](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.5...@baloise/angular-output-target@1.2.6) (2022-03-09)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **angular:** export directives ([317dc94](https://github.com/baloise/stencil-ds-output-targets/commit/317dc94636c6b01930ec849ea810ca0eff2c9a33))
28
+
29
+
30
+
31
+
32
+
6
33
  ## [1.2.5](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.4...@baloise/angular-output-target@1.2.5) (2022-03-07)
7
34
 
8
35
 
@@ -42,9 +42,9 @@ ${declarationImports.join('\n ')}
42
42
 
43
43
  @NgModule({
44
44
  declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
45
- exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
46
- providers: [${providers.join(', ')}],
47
45
  imports: [BalSharedModule],
46
+ exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}, BalSharedModule],
47
+ providers: [${providers.join(', ')}],
48
48
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
49
49
  })
50
50
  export class ${tagNameAsPascal}Module {
package/dist/index.cjs.js CHANGED
@@ -278,9 +278,9 @@ ${declarationImports.join('\n ')}
278
278
 
279
279
  @NgModule({
280
280
  declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
281
- exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
282
- providers: [${providers.join(', ')}],
283
281
  imports: [BalSharedModule],
282
+ exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}, BalSharedModule],
283
+ providers: [${providers.join(', ')}],
284
284
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
285
285
  })
286
286
  export class ${tagNameAsPascal}Module {
package/dist/index.js CHANGED
@@ -269,9 +269,9 @@ ${declarationImports.join('\n ')}
269
269
 
270
270
  @NgModule({
271
271
  declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
272
- exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
273
- providers: [${providers.join(', ')}],
274
272
  imports: [BalSharedModule],
273
+ exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}, BalSharedModule],
274
+ providers: [${providers.join(', ')}],
275
275
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
276
276
  })
277
277
  export class ${tagNameAsPascal}Module {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baloise/angular-output-target",
3
- "version": "1.2.5",
3
+ "version": "1.2.8",
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": "f82d32fc10c4d20fafbafdd76eae23ffae040c09"
64
+ "gitHead": "82dd6c2903692f9c39c9070dad1b0773716d2406"
65
65
  }