@lwc/engine-core 2.36.0 → 2.37.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/engine-core.cjs.js +2146 -2412
- package/dist/engine-core.js +2146 -2413
- package/package.json +4 -4
- package/types/framework/reporting.d.ts +2 -0
- package/types/index.d.ts +0 -1
- package/types/testFeatureFlag.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/engine-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.37.1",
|
|
4
4
|
"description": "Core LWC engine APIs.",
|
|
5
5
|
"homepage": "https://lwc.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"types/"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@lwc/aria-reflection": "2.
|
|
28
|
-
"@lwc/features": "2.
|
|
29
|
-
"@lwc/shared": "2.
|
|
27
|
+
"@lwc/aria-reflection": "2.37.1",
|
|
28
|
+
"@lwc/features": "2.37.1",
|
|
29
|
+
"@lwc/shared": "2.37.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"observable-membrane": "2.0.0"
|
|
@@ -17,6 +17,8 @@ export interface CompilerRuntimeVersionMismatchPayload extends BasePayload {
|
|
|
17
17
|
}
|
|
18
18
|
export interface NonStandardAriaReflectionPayload extends BasePayload {
|
|
19
19
|
propertyName: string;
|
|
20
|
+
isSetter: boolean;
|
|
21
|
+
setValueType: string | undefined;
|
|
20
22
|
}
|
|
21
23
|
export interface TemplateMutationPayload extends BasePayload {
|
|
22
24
|
propertyName: string;
|
package/types/index.d.ts
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|