@baloise/angular-output-target 1.2.4 → 1.2.5

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,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.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
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * add shared module ([1869046](https://github.com/baloise/stencil-ds-output-targets/commit/1869046d76f85b6d5916412ff7a17c0ef9cc66ff))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [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
18
 
8
19
 
@@ -44,7 +44,7 @@ ${declarationImports.join('\n ')}
44
44
  declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
45
45
  exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
46
46
  providers: [${providers.join(', ')}],
47
- imports: [CommonModule],
47
+ imports: [BalSharedModule],
48
48
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
49
49
  })
50
50
  export class ${tagNameAsPascal}Module {
package/dist/index.cjs.js CHANGED
@@ -280,7 +280,7 @@ ${declarationImports.join('\n ')}
280
280
  declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
281
281
  exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
282
282
  providers: [${providers.join(', ')}],
283
- imports: [CommonModule],
283
+ imports: [BalSharedModule],
284
284
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
285
285
  })
286
286
  export class ${tagNameAsPascal}Module {
@@ -328,7 +328,7 @@ function generateProxies(components, pkgData, outputTarget, rootDir) {
328
328
  const imports = `/* tslint:disable */
329
329
  /* auto-generated angular directive proxies */
330
330
  import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
331
- import { CommonModule } from '@angular/common';
331
+ import { BalSharedModule } from '../shared';
332
332
  import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n`;
333
333
  const componentImports = components.map(c => `import { defineCustomElement as define${dashToPascalCase(c.tagName)} } from '${normalizePath(outputTarget.componentCorePackage || '')}/dist/components/${c.tagName}';`);
334
334
  const typeImports = !outputTarget.componentCorePackage
package/dist/index.js CHANGED
@@ -271,7 +271,7 @@ ${declarationImports.join('\n ')}
271
271
  declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
272
272
  exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
273
273
  providers: [${providers.join(', ')}],
274
- imports: [CommonModule],
274
+ imports: [BalSharedModule],
275
275
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
276
276
  })
277
277
  export class ${tagNameAsPascal}Module {
@@ -319,7 +319,7 @@ function generateProxies(components, pkgData, outputTarget, rootDir) {
319
319
  const imports = `/* tslint:disable */
320
320
  /* auto-generated angular directive proxies */
321
321
  import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
322
- import { CommonModule } from '@angular/common';
322
+ import { BalSharedModule } from '../shared';
323
323
  import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n`;
324
324
  const componentImports = components.map(c => `import { defineCustomElement as define${dashToPascalCase(c.tagName)} } from '${normalizePath(outputTarget.componentCorePackage || '')}/dist/components/${c.tagName}';`);
325
325
  const typeImports = !outputTarget.componentCorePackage
@@ -41,7 +41,7 @@ export function generateProxies(components, pkgData, outputTarget, rootDir) {
41
41
  const imports = `/* tslint:disable */
42
42
  /* auto-generated angular directive proxies */
43
43
  import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
44
- import { CommonModule } from '@angular/common';
44
+ import { BalSharedModule } from '../shared';
45
45
  import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n`;
46
46
  const componentImports = components.map(c => `import { defineCustomElement as define${dashToPascalCase(c.tagName)} } from '${normalizePath(outputTarget.componentCorePackage || '')}/dist/components/${c.tagName}';`);
47
47
  const typeImports = !outputTarget.componentCorePackage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baloise/angular-output-target",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
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": "f6ae78217f91317c0580c9e2ad60f8ac76c160b5"
64
+ "gitHead": "f82d32fc10c4d20fafbafdd76eae23ffae040c09"
65
65
  }