@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.
Files changed (43) hide show
  1. package/dist/framework/api.d.ts +4 -4
  2. package/dist/framework/base-bridge-element.d.ts +1 -1
  3. package/dist/framework/base-lightning-element.d.ts +4 -13
  4. package/dist/framework/check-version-mismatch.d.ts +2 -2
  5. package/dist/framework/component.d.ts +6 -6
  6. package/dist/framework/decorators/register.d.ts +2 -2
  7. package/dist/framework/def.d.ts +7 -5
  8. package/dist/framework/freeze-template.d.ts +1 -1
  9. package/dist/framework/get-component-constructor.d.ts +1 -1
  10. package/dist/framework/hot-swaps.d.ts +3 -3
  11. package/dist/framework/hydration.d.ts +1 -1
  12. package/dist/framework/invoker.d.ts +3 -3
  13. package/dist/framework/modules/attrs.d.ts +2 -2
  14. package/dist/framework/modules/computed-class-attr.d.ts +2 -2
  15. package/dist/framework/modules/computed-style-attr.d.ts +3 -3
  16. package/dist/framework/modules/events.d.ts +2 -2
  17. package/dist/framework/modules/props.d.ts +2 -2
  18. package/dist/framework/modules/refs.d.ts +2 -2
  19. package/dist/framework/modules/static-class-attr.d.ts +2 -2
  20. package/dist/framework/modules/static-parts.d.ts +2 -2
  21. package/dist/framework/modules/static-style-attr.d.ts +2 -2
  22. package/dist/framework/modules/text.d.ts +2 -2
  23. package/dist/framework/mutation-logger.d.ts +2 -2
  24. package/dist/framework/mutation-tracker.d.ts +3 -2
  25. package/dist/framework/profiler.d.ts +2 -1
  26. package/dist/framework/rendering.d.ts +3 -3
  27. package/dist/framework/reporting.d.ts +1 -1
  28. package/dist/framework/secure-template.d.ts +1 -1
  29. package/dist/framework/stylesheet.d.ts +3 -3
  30. package/dist/framework/template.d.ts +3 -3
  31. package/dist/framework/update-component-value.d.ts +1 -1
  32. package/dist/framework/utils.d.ts +1 -1
  33. package/dist/framework/vm.d.ts +7 -8
  34. package/dist/framework/wiring/context.d.ts +2 -2
  35. package/dist/framework/wiring/wiring.d.ts +1 -1
  36. package/dist/index.cjs.js +19 -1
  37. package/dist/index.cjs.js.map +1 -1
  38. package/dist/index.js +19 -1
  39. package/dist/index.js.map +1 -1
  40. package/dist/shared/error.d.ts +1 -1
  41. package/dist/shared/format.d.ts +1 -1
  42. package/dist/shared/logger.d.ts +1 -1
  43. package/package.json +4 -4
@@ -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;
@@ -1,4 +1,4 @@
1
- import { VM } from '../framework/vm';
1
+ import type { VM } from '../framework/vm';
2
2
  export declare function getComponentTag(vm: VM): string;
3
3
  export declare function getComponentStack(vm: VM): string;
4
4
  export declare function getErrorComponentStack(vm: VM): string;
@@ -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.9.0",
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.9.0",
46
- "@lwc/shared": "8.9.0",
47
- "@lwc/signals": "8.9.0"
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"