@stencil/angular-output-target 0.0.1-dev.11734586318.14947a27 → 0.0.1-dev.11741888614.1fd07d67
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 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -4
|
@@ -12,7 +12,7 @@ function createPropertyDeclaration(prop, type, inlinePropertyAsSetter = false) {
|
|
|
12
12
|
let eventName = prop.name;
|
|
13
13
|
if (/[-/]/.test(prop.name)) {
|
|
14
14
|
// If a member name includes a dash or a forward slash, we need to wrap it in quotes.
|
|
15
|
-
// https://github.com/
|
|
15
|
+
// https://github.com/stenciljs/output-targets/issues/212
|
|
16
16
|
eventName = `'${prop.name}'`;
|
|
17
17
|
}
|
|
18
18
|
if (inlinePropertyAsSetter) {
|
package/dist/index.cjs.js
CHANGED
|
@@ -157,7 +157,7 @@ function createPropertyDeclaration(prop, type, inlinePropertyAsSetter = false) {
|
|
|
157
157
|
let eventName = prop.name;
|
|
158
158
|
if (/[-/]/.test(prop.name)) {
|
|
159
159
|
// If a member name includes a dash or a forward slash, we need to wrap it in quotes.
|
|
160
|
-
// https://github.com/
|
|
160
|
+
// https://github.com/stenciljs/output-targets/issues/212
|
|
161
161
|
eventName = `'${prop.name}'`;
|
|
162
162
|
}
|
|
163
163
|
if (inlinePropertyAsSetter) {
|
package/dist/index.js
CHANGED
|
@@ -149,7 +149,7 @@ function createPropertyDeclaration(prop, type, inlinePropertyAsSetter = false) {
|
|
|
149
149
|
let eventName = prop.name;
|
|
150
150
|
if (/[-/]/.test(prop.name)) {
|
|
151
151
|
// If a member name includes a dash or a forward slash, we need to wrap it in quotes.
|
|
152
|
-
// https://github.com/
|
|
152
|
+
// https://github.com/stenciljs/output-targets/issues/212
|
|
153
153
|
eventName = `'${prop.name}'`;
|
|
154
154
|
}
|
|
155
155
|
if (inlinePropertyAsSetter) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/angular-output-target",
|
|
3
|
-
"version": "0.0.1-dev.
|
|
3
|
+
"version": "0.0.1-dev.11741888614.1fd07d67",
|
|
4
4
|
"description": "Angular output target for @stencil/core components.",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -39,17 +39,18 @@
|
|
|
39
39
|
},
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|
|
42
|
-
"url": "git+https://github.com/
|
|
42
|
+
"url": "git+https://github.com/stenciljs/output-targets.git"
|
|
43
43
|
},
|
|
44
44
|
"author": "Ionic Team",
|
|
45
45
|
"homepage": "https://stenciljs.com/",
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"bugs": {
|
|
48
|
-
"url": "https://github.com/
|
|
48
|
+
"url": "https://github.com/stenciljs/output-targets/issues"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@angular/core": "8.2.14",
|
|
52
52
|
"@angular/forms": "8.2.14",
|
|
53
|
+
"@stencil/core": "^4.27.2",
|
|
53
54
|
"@types/node": "^18.0.0",
|
|
54
55
|
"npm-run-all2": "^6.2.4",
|
|
55
56
|
"rimraf": "^5.0.0",
|
|
@@ -60,5 +61,5 @@
|
|
|
60
61
|
"peerDependencies": {
|
|
61
62
|
"@stencil/core": ">=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0"
|
|
62
63
|
},
|
|
63
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "fd07d673f05a09d222b263be6ad7c4308fda13a2"
|
|
64
65
|
}
|