@stencil/angular-output-target 0.4.0-2 → 0.4.0-3
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 +1 -1
|
@@ -91,7 +91,7 @@ function getProxyCmp(tagName, includeCustomElement, inputs, methods) {
|
|
|
91
91
|
const hasInputs = inputs.length > 0;
|
|
92
92
|
const hasMethods = methods.length > 0;
|
|
93
93
|
const proxMeta = [
|
|
94
|
-
`
|
|
94
|
+
`defineCustomElementFn: ${includeCustomElement ? 'define' + dashToPascalCase(tagName) : 'undefined'}`
|
|
95
95
|
];
|
|
96
96
|
if (hasInputs)
|
|
97
97
|
proxMeta.push(`inputs: ['${inputs.join(`', '`)}']`);
|
package/dist/index.cjs.js
CHANGED
|
@@ -177,7 +177,7 @@ function getProxyCmp(tagName, includeCustomElement, inputs, methods) {
|
|
|
177
177
|
const hasInputs = inputs.length > 0;
|
|
178
178
|
const hasMethods = methods.length > 0;
|
|
179
179
|
const proxMeta = [
|
|
180
|
-
`
|
|
180
|
+
`defineCustomElementFn: ${includeCustomElement ? 'define' + dashToPascalCase(tagName) : 'undefined'}`
|
|
181
181
|
];
|
|
182
182
|
if (hasInputs)
|
|
183
183
|
proxMeta.push(`inputs: ['${inputs.join(`', '`)}']`);
|
package/dist/index.js
CHANGED
|
@@ -169,7 +169,7 @@ function getProxyCmp(tagName, includeCustomElement, inputs, methods) {
|
|
|
169
169
|
const hasInputs = inputs.length > 0;
|
|
170
170
|
const hasMethods = methods.length > 0;
|
|
171
171
|
const proxMeta = [
|
|
172
|
-
`
|
|
172
|
+
`defineCustomElementFn: ${includeCustomElement ? 'define' + dashToPascalCase(tagName) : 'undefined'}`
|
|
173
173
|
];
|
|
174
174
|
if (hasInputs)
|
|
175
175
|
proxMeta.push(`inputs: ['${inputs.join(`', '`)}']`);
|