@lwc/engine-core 8.9.0 → 8.10.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/framework/api.d.ts +4 -4
- package/dist/framework/base-bridge-element.d.ts +1 -1
- package/dist/framework/base-lightning-element.d.ts +4 -13
- package/dist/framework/check-version-mismatch.d.ts +2 -2
- package/dist/framework/component.d.ts +6 -6
- package/dist/framework/decorators/register.d.ts +2 -2
- package/dist/framework/def.d.ts +7 -5
- package/dist/framework/freeze-template.d.ts +1 -1
- package/dist/framework/get-component-constructor.d.ts +1 -1
- package/dist/framework/hot-swaps.d.ts +3 -3
- package/dist/framework/hydration.d.ts +1 -1
- package/dist/framework/invoker.d.ts +3 -3
- package/dist/framework/modules/attrs.d.ts +2 -2
- package/dist/framework/modules/computed-class-attr.d.ts +2 -2
- package/dist/framework/modules/computed-style-attr.d.ts +3 -3
- package/dist/framework/modules/events.d.ts +2 -2
- package/dist/framework/modules/props.d.ts +2 -2
- package/dist/framework/modules/refs.d.ts +2 -2
- package/dist/framework/modules/static-class-attr.d.ts +2 -2
- package/dist/framework/modules/static-parts.d.ts +2 -2
- package/dist/framework/modules/static-style-attr.d.ts +2 -2
- package/dist/framework/modules/text.d.ts +2 -2
- package/dist/framework/mutation-logger.d.ts +2 -2
- package/dist/framework/mutation-tracker.d.ts +3 -2
- package/dist/framework/profiler.d.ts +2 -1
- package/dist/framework/rendering.d.ts +3 -3
- package/dist/framework/reporting.d.ts +1 -1
- package/dist/framework/secure-template.d.ts +1 -1
- package/dist/framework/stylesheet.d.ts +3 -3
- package/dist/framework/template.d.ts +3 -3
- package/dist/framework/update-component-value.d.ts +1 -1
- package/dist/framework/utils.d.ts +1 -1
- package/dist/framework/vm.d.ts +7 -8
- package/dist/framework/wiring/context.d.ts +2 -2
- package/dist/framework/wiring/wiring.d.ts +1 -1
- package/dist/index.cjs.js +19 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/dist/shared/error.d.ts +1 -1
- package/dist/shared/format.d.ts +1 -1
- package/dist/shared/logger.d.ts +1 -1
- package/package.json +4 -4
package/dist/shared/error.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { VM } from '../framework/vm';
|
|
1
|
+
import type { VM } from '../framework/vm';
|
|
2
2
|
export declare function addErrorComponentStack(vm: VM, error: any): void;
|
package/dist/shared/format.d.ts
CHANGED
package/dist/shared/logger.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VM } from '../framework/vm';
|
|
1
|
+
import type { VM } from '../framework/vm';
|
|
2
2
|
export declare function logError(message: string, vm?: VM): void;
|
|
3
3
|
export declare function logWarn(message: string, vm?: VM): void;
|
|
4
4
|
export declare function logWarnOnce(message: string, vm?: VM): void;
|
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": "8.
|
|
7
|
+
"version": "8.10.0",
|
|
8
8
|
"description": "Core LWC engine APIs.",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@lwc/features": "8.
|
|
46
|
-
"@lwc/shared": "8.
|
|
47
|
-
"@lwc/signals": "8.
|
|
45
|
+
"@lwc/features": "8.10.0",
|
|
46
|
+
"@lwc/shared": "8.10.0",
|
|
47
|
+
"@lwc/signals": "8.10.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"observable-membrane": "2.0.0"
|