@lwc/engine-core 3.2.0 → 3.3.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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
5
5
  ],
6
6
  "name": "@lwc/engine-core",
7
- "version": "3.2.0",
7
+ "version": "3.3.1",
8
8
  "description": "Core LWC engine APIs.",
9
9
  "keywords": [
10
10
  "lwc"
@@ -42,11 +42,11 @@
42
42
  }
43
43
  },
44
44
  "dependencies": {
45
- "@lwc/aria-reflection": "3.2.0",
46
- "@lwc/features": "3.2.0",
47
- "@lwc/shared": "3.2.0"
45
+ "@lwc/aria-reflection": "3.3.1",
46
+ "@lwc/features": "3.3.1",
47
+ "@lwc/shared": "3.3.1"
48
48
  },
49
49
  "devDependencies": {
50
50
  "observable-membrane": "2.0.0"
51
51
  }
52
- }
52
+ }
@@ -1,22 +0,0 @@
1
- import { ComponentDef } from './def';
2
- import { VM, Context } from './vm';
3
- import { VNodeData } from './vnodes';
4
- type ServiceCallback = (component: object, data: VNodeData, def: ComponentDef, context: Context) => void;
5
- interface ServiceDef {
6
- connected?: ServiceCallback;
7
- disconnected?: ServiceCallback;
8
- rendered?: ServiceCallback;
9
- }
10
- export declare const Services: {
11
- connected?: ServiceCallback[];
12
- disconnected?: ServiceCallback[];
13
- rendered?: ServiceCallback[];
14
- };
15
- /**
16
- * EXPERIMENTAL: This function allows for the registration of "services"
17
- * in LWC by exposing hooks into the component life-cycle. This API is
18
- * subject to change or being removed.
19
- */
20
- export declare function register(service: ServiceDef): void;
21
- export declare function invokeServiceHook(vm: VM, cbs: ServiceCallback[]): void;
22
- export {};