@lwc/engine-core 2.43.0 → 2.44.0
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 +44 -183
- package/dist/engine-core.cjs.js.map +1 -1
- package/dist/engine-core.js +45 -184
- package/dist/engine-core.js.map +1 -1
- package/package.json +4 -4
- package/types/framework/attributes.d.ts +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/engine-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.44.0",
|
|
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.44.0",
|
|
28
|
+
"@lwc/features": "2.44.0",
|
|
29
|
+
"@lwc/shared": "2.44.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"observable-membrane": "2.0.0"
|
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
export declare const defaultDefHTMLPropertyNames: string[];
|
|
2
|
-
export declare const globalHTMLProperties: {
|
|
3
|
-
[prop: string]: {
|
|
4
|
-
attribute?: string;
|
|
5
|
-
error?: string;
|
|
6
|
-
readOnly?: boolean;
|
|
7
|
-
};
|
|
8
|
-
};
|
|
9
2
|
export declare function isAttributeLocked(elm: Element, attrName: string): boolean;
|
|
10
3
|
export declare function lockAttribute(_elm: Element, _key: string): void;
|
|
11
4
|
export declare function unlockAttribute(elm: Element, key: string): void;
|