@lwc/engine-core 3.1.0 → 3.1.1
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/index.js
CHANGED
|
@@ -1688,6 +1688,10 @@ LightningElement.prototype = {
|
|
|
1688
1688
|
}
|
|
1689
1689
|
return renderer.ownerDocument(vm.elm);
|
|
1690
1690
|
},
|
|
1691
|
+
get tagName() {
|
|
1692
|
+
const { elm, renderer } = getAssociatedVM(this);
|
|
1693
|
+
return renderer.getTagName(elm);
|
|
1694
|
+
},
|
|
1691
1695
|
render() {
|
|
1692
1696
|
const vm = getAssociatedVM(this);
|
|
1693
1697
|
return vm.def.template;
|
|
@@ -6883,5 +6887,5 @@ function readonly(obj) {
|
|
|
6883
6887
|
}
|
|
6884
6888
|
|
|
6885
6889
|
export { LightningElement, profilerControl as __unstable__ProfilerControl, reportingControl as __unstable__ReportingControl, api$1 as api, connectRootElement, createContextProviderWithRegister, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentAPIVersion, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, sanitizeAttribute, setHooks, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
6886
|
-
/** version: 3.1.
|
|
6890
|
+
/** version: 3.1.1 */
|
|
6887
6891
|
//# sourceMappingURL=index.js.map
|