@lwc/engine-core 2.10.0 → 2.11.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 +3621 -4875
- package/dist/engine-core.js +3621 -4875
- package/package.json +3 -3
- package/types/renderer.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/engine-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "Core LWC engine APIs.",
|
|
5
5
|
"homepage": "https://lwc.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"types/"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@lwc/features": "2.
|
|
28
|
-
"@lwc/shared": "2.
|
|
27
|
+
"@lwc/features": "2.11.0",
|
|
28
|
+
"@lwc/shared": "2.11.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"observable-membrane": "2.0.0"
|
package/types/renderer.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ export declare function setIsConnected(isConnectedImpl: isConnectedFunc): void;
|
|
|
108
108
|
declare type insertGlobalStylesheetFunc = (content: string) => void;
|
|
109
109
|
export declare let insertGlobalStylesheet: insertGlobalStylesheetFunc;
|
|
110
110
|
export declare function setInsertGlobalStylesheet(insertGlobalStylesheetImpl: insertGlobalStylesheetFunc): void;
|
|
111
|
-
declare type insertStylesheetFunc = (content: string, target:
|
|
111
|
+
declare type insertStylesheetFunc = (content: string, target: ShadowRoot) => void;
|
|
112
112
|
export declare let insertStylesheet: insertStylesheetFunc;
|
|
113
113
|
export declare function setInsertStylesheet(insertStylesheetImpl: insertStylesheetFunc): void;
|
|
114
114
|
declare type assertInstanceOfHTMLElementFunc = (elm: any, msg: string) => void;
|