@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.
@@ -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
- `customElement: ${includeCustomElement ? 'define' + dashToPascalCase(tagName) : 'undefined'}`
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
- `customElement: ${includeCustomElement ? 'define' + dashToPascalCase(tagName) : 'undefined'}`
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
- `customElement: ${includeCustomElement ? 'define' + dashToPascalCase(tagName) : 'undefined'}`
172
+ `defineCustomElementFn: ${includeCustomElement ? 'define' + dashToPascalCase(tagName) : 'undefined'}`
173
173
  ];
174
174
  if (hasInputs)
175
175
  proxMeta.push(`inputs: ['${inputs.join(`', '`)}']`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/angular-output-target",
3
- "version": "0.4.0-2",
3
+ "version": "0.4.0-3",
4
4
  "description": "Angular output target for @stencil/core components.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",