@lwc/engine-core 8.20.1 → 8.20.2
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.
|
@@ -18,12 +18,17 @@ type HTMLElementTheGoodParts = {
|
|
|
18
18
|
type RefNodes = {
|
|
19
19
|
[name: string]: Element;
|
|
20
20
|
};
|
|
21
|
-
/**
|
|
22
|
-
* A `LightningElement` will always be attached to an [`HTMLElement`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement),
|
|
23
|
-
* rather than the more broad `Element` used by the generic shadow root interface.
|
|
24
|
-
*/
|
|
25
21
|
export interface LightningElementShadowRoot extends ShadowRoot {
|
|
22
|
+
/**
|
|
23
|
+
* A `LightningElement` will always be attached to an [`HTMLElement`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement),
|
|
24
|
+
* rather than the more broad `Element` used by the generic shadow root interface.
|
|
25
|
+
*/
|
|
26
26
|
readonly host: HTMLElement;
|
|
27
|
+
/**
|
|
28
|
+
* When present, indicates that the shadow root is the synthetic polyfill loaded by
|
|
29
|
+
* `@lwc/synethic-shadow`.
|
|
30
|
+
*/
|
|
31
|
+
readonly synthetic?: true;
|
|
27
32
|
}
|
|
28
33
|
export interface LightningElement extends HTMLElementTheGoodParts, AccessibleElementProperties {
|
|
29
34
|
constructor: LightningElementConstructor;
|
package/dist/index.cjs.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -8667,5 +8667,5 @@ function readonly(obj) {
|
|
|
8667
8667
|
}
|
|
8668
8668
|
|
|
8669
8669
|
export { BaseBridgeElement, LightningElement, profilerControl as __unstable__ProfilerControl, reportingControl as __unstable__ReportingControl, api$1 as api, computeShadowAndRenderMode, connectRootElement, createContextProviderWithRegister, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentAPIVersion, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, registerComponent, registerDecorators, registerTemplate, runFormAssociatedCallback, runFormDisabledCallback, runFormResetCallback, runFormStateRestoreCallback, sanitizeAttribute, shouldBeFormAssociated, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
8670
|
-
/** version: 8.20.
|
|
8670
|
+
/** version: 8.20.2 */
|
|
8671
8671
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
|
5
5
|
],
|
|
6
6
|
"name": "@lwc/engine-core",
|
|
7
|
-
"version": "8.20.
|
|
7
|
+
"version": "8.20.2",
|
|
8
8
|
"description": "Core LWC engine APIs.",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@lwc/features": "8.20.
|
|
50
|
-
"@lwc/shared": "8.20.
|
|
51
|
-
"@lwc/signals": "8.20.
|
|
49
|
+
"@lwc/features": "8.20.2",
|
|
50
|
+
"@lwc/shared": "8.20.2",
|
|
51
|
+
"@lwc/signals": "8.20.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"observable-membrane": "2.0.0"
|