@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lwc/engine-core",
3
- "version": "2.10.0",
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.10.0",
28
- "@lwc/shared": "2.10.0"
27
+ "@lwc/features": "2.11.0",
28
+ "@lwc/shared": "2.11.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "observable-membrane": "2.0.0"
@@ -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: N) => void;
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;