@lwc/engine-core 2.28.1 → 2.30.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.28.1",
3
+ "version": "2.30.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.1",
28
- "@lwc/shared": "2.28.1"
27
+ "@lwc/features": "2.30.0",
28
+ "@lwc/shared": "2.30.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "observable-membrane": "2.0.0"
@@ -135,6 +135,9 @@ export interface VM<N = HostNode, E = HostElement> {
135
135
  /**
136
136
  * Renderer API */
137
137
  renderer: RendererAPI;
138
+ /**
139
+ * Debug info bag. Stores useful debug information about the component. */
140
+ debugInfo?: Record<string, any>;
138
141
  }
139
142
  declare type VMAssociable = HostNode | LightningElement;
140
143
  export declare function rerenderVM(vm: VM): void;