@stencil/angular-output-target 0.7.2-dev.11691686383.1d6a2c07 → 0.8.0
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/dist/generate-angular-component.js +1 -11
- package/dist/index.cjs.js +1 -11
- package/dist/index.js +1 -11
- package/package.json +2 -2
|
@@ -82,17 +82,7 @@ const formatOutputType = (componentClassName, event) => {
|
|
|
82
82
|
return (renamedType
|
|
83
83
|
.replace(new RegExp(`^${src}$`, 'g'), `${dst}`)
|
|
84
84
|
// Capture all instances of the `src` field surrounded by non-word characters on each side and join them.
|
|
85
|
-
.replace(new RegExp(`([^\\w])${src}([^\\w])`, 'g'), (v, p1, p2) =>
|
|
86
|
-
if ((dst === null || dst === void 0 ? void 0 : dst.location) === 'import') {
|
|
87
|
-
/**
|
|
88
|
-
* Replaces a complex type reference within a generic type.
|
|
89
|
-
* For example, remapping a type like `EventEmitter<CustomEvent<MyEvent<T>>>` to
|
|
90
|
-
* `EventEmitter<CustomEvent<IMyComponentMyEvent<IMyComponentT>>`.
|
|
91
|
-
*/
|
|
92
|
-
return [p1, `I${componentClassName}${v.substring(1, v.length - 1)}`, p2].join('');
|
|
93
|
-
}
|
|
94
|
-
return [p1, dst, p2].join('');
|
|
95
|
-
}));
|
|
85
|
+
.replace(new RegExp(`([^\\w])${src}([^\\w])`, 'g'), (v, p1, p2) => [p1, dst, p2].join('')));
|
|
96
86
|
}, event.complexType.original
|
|
97
87
|
.replace(/\n/g, ' ')
|
|
98
88
|
.replace(/\s{2,}/g, ' ')
|
package/dist/index.cjs.js
CHANGED
|
@@ -227,17 +227,7 @@ const formatOutputType = (componentClassName, event) => {
|
|
|
227
227
|
return (renamedType
|
|
228
228
|
.replace(new RegExp(`^${src}$`, 'g'), `${dst}`)
|
|
229
229
|
// Capture all instances of the `src` field surrounded by non-word characters on each side and join them.
|
|
230
|
-
.replace(new RegExp(`([^\\w])${src}([^\\w])`, 'g'), (v, p1, p2) =>
|
|
231
|
-
if ((dst === null || dst === void 0 ? void 0 : dst.location) === 'import') {
|
|
232
|
-
/**
|
|
233
|
-
* Replaces a complex type reference within a generic type.
|
|
234
|
-
* For example, remapping a type like `EventEmitter<CustomEvent<MyEvent<T>>>` to
|
|
235
|
-
* `EventEmitter<CustomEvent<IMyComponentMyEvent<IMyComponentT>>`.
|
|
236
|
-
*/
|
|
237
|
-
return [p1, `I${componentClassName}${v.substring(1, v.length - 1)}`, p2].join('');
|
|
238
|
-
}
|
|
239
|
-
return [p1, dst, p2].join('');
|
|
240
|
-
}));
|
|
230
|
+
.replace(new RegExp(`([^\\w])${src}([^\\w])`, 'g'), (v, p1, p2) => [p1, dst, p2].join('')));
|
|
241
231
|
}, event.complexType.original
|
|
242
232
|
.replace(/\n/g, ' ')
|
|
243
233
|
.replace(/\s{2,}/g, ' ')
|
package/dist/index.js
CHANGED
|
@@ -219,17 +219,7 @@ const formatOutputType = (componentClassName, event) => {
|
|
|
219
219
|
return (renamedType
|
|
220
220
|
.replace(new RegExp(`^${src}$`, 'g'), `${dst}`)
|
|
221
221
|
// Capture all instances of the `src` field surrounded by non-word characters on each side and join them.
|
|
222
|
-
.replace(new RegExp(`([^\\w])${src}([^\\w])`, 'g'), (v, p1, p2) =>
|
|
223
|
-
if ((dst === null || dst === void 0 ? void 0 : dst.location) === 'import') {
|
|
224
|
-
/**
|
|
225
|
-
* Replaces a complex type reference within a generic type.
|
|
226
|
-
* For example, remapping a type like `EventEmitter<CustomEvent<MyEvent<T>>>` to
|
|
227
|
-
* `EventEmitter<CustomEvent<IMyComponentMyEvent<IMyComponentT>>`.
|
|
228
|
-
*/
|
|
229
|
-
return [p1, `I${componentClassName}${v.substring(1, v.length - 1)}`, p2].join('');
|
|
230
|
-
}
|
|
231
|
-
return [p1, dst, p2].join('');
|
|
232
|
-
}));
|
|
222
|
+
.replace(new RegExp(`([^\\w])${src}([^\\w])`, 'g'), (v, p1, p2) => [p1, dst, p2].join('')));
|
|
233
223
|
}, event.complexType.original
|
|
234
224
|
.replace(/\n/g, ' ')
|
|
235
225
|
.replace(/\s{2,}/g, ' ')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/angular-output-target",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Angular output target for @stencil/core components.",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
],
|
|
59
59
|
"testURL": "http://localhost"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "a3588e905186a0e86e7f88418fd5b2f9531b55e0",
|
|
62
62
|
"volta": {
|
|
63
63
|
"extends": "../../package.json"
|
|
64
64
|
}
|