@baloise/angular-output-target 1.0.14 → 1.0.20
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 +28 -0
- package/dist/generate-angular-component.js +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,34 @@
|
|
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.0.20](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.19...@baloise/angular-output-target@1.0.20) (2021-12-16)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @baloise/angular-output-target
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [1.0.19](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.18...@baloise/angular-output-target@1.0.19) (2021-12-07)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @baloise/angular-output-target
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
## [1.0.18](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.13...@baloise/angular-output-target@1.0.18) (2021-12-02)
|
23
|
+
|
24
|
+
|
25
|
+
### Bug Fixes
|
26
|
+
|
27
|
+
* **angular:** import statements for types ([f9ae53e](https://github.com/baloise/stencil-ds-output-targets/commit/f9ae53e272b98c69a94d2874ab4f6e1953364977))
|
28
|
+
* **angular:** return detail instead of target.value ([19abbf2](https://github.com/baloise/stencil-ds-output-targets/commit/19abbf2b8e3b977c3ce055ee58b1f5663ccb6ad2))
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
6
34
|
## [1.0.13](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.0.12...@baloise/angular-output-target@1.0.13) (2021-06-01)
|
7
35
|
|
8
36
|
**Note:** Version bump only for package @baloise/angular-output-target
|
@@ -26,7 +26,7 @@ export const createComponentDefinition = (componentCorePackage, distTypesDir, ro
|
|
26
26
|
.filter(output => !!output.complexType.references &&
|
27
27
|
Object.prototype.hasOwnProperty.call(output.complexType.references, output.complexType.original) &&
|
28
28
|
output.complexType.references[output.complexType.original].location === 'import')
|
29
|
-
.map(output => output.complexType.
|
29
|
+
.map(output => output.complexType.original)
|
30
30
|
.filter((item, pos, self) => self.indexOf(item) === pos)
|
31
31
|
.join(', ');
|
32
32
|
if (outputsTypes.length > 0) {
|
package/dist/index.cjs.js
CHANGED
@@ -114,7 +114,7 @@ const createComponentDefinition = (componentCorePackage, distTypesDir, rootDir)
|
|
114
114
|
.filter(output => !!output.complexType.references &&
|
115
115
|
Object.prototype.hasOwnProperty.call(output.complexType.references, output.complexType.original) &&
|
116
116
|
output.complexType.references[output.complexType.original].location === 'import')
|
117
|
-
.map(output => output.complexType.
|
117
|
+
.map(output => output.complexType.original)
|
118
118
|
.filter((item, pos, self) => self.indexOf(item) === pos)
|
119
119
|
.join(', ');
|
120
120
|
if (outputsTypes.length > 0) {
|
package/dist/index.js
CHANGED
@@ -105,7 +105,7 @@ const createComponentDefinition = (componentCorePackage, distTypesDir, rootDir)
|
|
105
105
|
.filter(output => !!output.complexType.references &&
|
106
106
|
Object.prototype.hasOwnProperty.call(output.complexType.references, output.complexType.original) &&
|
107
107
|
output.complexType.references[output.complexType.original].location === 'import')
|
108
|
-
.map(output => output.complexType.
|
108
|
+
.map(output => output.complexType.original)
|
109
109
|
.filter((item, pos, self) => self.indexOf(item) === pos)
|
110
110
|
.join(', ');
|
111
111
|
if (outputsTypes.length > 0) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@baloise/angular-output-target",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.20",
|
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": "
|
64
|
+
"gitHead": "3764e5b9e9dbe3f6280387a28631f762ba5b17c8"
|
65
65
|
}
|