@lwc/engine-core 8.12.7-alpha.0 → 8.12.7

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 (73) hide show
  1. package/dist/framework/api.d.ts +1 -0
  2. package/dist/framework/base-bridge-element.d.ts +1 -0
  3. package/dist/framework/base-lightning-element.d.ts +1 -0
  4. package/dist/framework/check-version-mismatch.d.ts +1 -0
  5. package/dist/framework/component.d.ts +1 -0
  6. package/dist/framework/decorators/api.d.ts +1 -0
  7. package/dist/framework/decorators/register.d.ts +1 -0
  8. package/dist/framework/decorators/track.d.ts +1 -0
  9. package/dist/framework/decorators/wire.d.ts +1 -0
  10. package/dist/framework/def.d.ts +1 -0
  11. package/dist/framework/fragment-cache.d.ts +1 -0
  12. package/dist/framework/freeze-template.d.ts +1 -0
  13. package/dist/framework/get-component-constructor.d.ts +1 -0
  14. package/dist/framework/hot-swaps.d.ts +1 -0
  15. package/dist/framework/html-element.d.ts +1 -0
  16. package/dist/framework/html-properties.d.ts +1 -0
  17. package/dist/framework/hydration.d.ts +1 -0
  18. package/dist/framework/invoker.d.ts +3 -1
  19. package/dist/framework/main.d.ts +1 -0
  20. package/dist/framework/membrane.d.ts +1 -0
  21. package/dist/framework/modules/attrs.d.ts +1 -0
  22. package/dist/framework/modules/computed-class-attr.d.ts +1 -0
  23. package/dist/framework/modules/computed-style-attr.d.ts +1 -0
  24. package/dist/framework/modules/events.d.ts +1 -0
  25. package/dist/framework/modules/props.d.ts +1 -0
  26. package/dist/framework/modules/refs.d.ts +1 -0
  27. package/dist/framework/modules/static-class-attr.d.ts +1 -0
  28. package/dist/framework/modules/static-parts.d.ts +1 -0
  29. package/dist/framework/modules/static-style-attr.d.ts +1 -0
  30. package/dist/framework/modules/text.d.ts +1 -0
  31. package/dist/framework/mutation-logger.d.ts +1 -0
  32. package/dist/framework/mutation-tracker.d.ts +1 -0
  33. package/dist/framework/observed-fields.d.ts +1 -0
  34. package/dist/framework/profiler.d.ts +5 -3
  35. package/dist/framework/readonly.d.ts +1 -0
  36. package/dist/framework/renderer.d.ts +1 -0
  37. package/dist/framework/rendering.d.ts +1 -0
  38. package/dist/framework/reporting.d.ts +1 -0
  39. package/dist/framework/restrictions.d.ts +1 -0
  40. package/dist/framework/runtime-instrumentation.d.ts +1 -0
  41. package/dist/framework/sanitized-html-content.d.ts +2 -7
  42. package/dist/framework/secure-template.d.ts +1 -0
  43. package/dist/framework/shadow-migration-mode.d.ts +1 -0
  44. package/dist/framework/stylesheet.d.ts +1 -0
  45. package/dist/framework/template.d.ts +1 -0
  46. package/dist/framework/update-component-value.d.ts +1 -0
  47. package/dist/framework/utils.d.ts +2 -0
  48. package/dist/framework/vm.d.ts +1 -0
  49. package/dist/framework/vnodes.d.ts +1 -0
  50. package/dist/framework/weak-multimap.d.ts +1 -0
  51. package/dist/framework/wiring/context.d.ts +1 -0
  52. package/dist/framework/wiring/index.d.ts +1 -0
  53. package/dist/framework/wiring/types.d.ts +1 -0
  54. package/dist/framework/wiring/wiring.d.ts +1 -0
  55. package/dist/index.cjs.js +197 -130
  56. package/dist/index.d.ts +1 -0
  57. package/dist/index.js +197 -130
  58. package/dist/libs/mutation-tracker/index.d.ts +1 -0
  59. package/dist/libs/reflection/aria-reflection.d.ts +1 -0
  60. package/dist/libs/reflection/attr-reflection.d.ts +1 -0
  61. package/dist/libs/reflection/index.d.ts +1 -0
  62. package/dist/libs/signal-tracker/index.d.ts +1 -0
  63. package/dist/patches/detect-non-standard-aria.d.ts +1 -0
  64. package/dist/patches/detect-synthetic-cross-root-aria.d.ts +1 -0
  65. package/dist/shared/circular-module-dependencies.d.ts +1 -0
  66. package/dist/shared/error.d.ts +1 -0
  67. package/dist/shared/format.d.ts +1 -0
  68. package/dist/shared/logger.d.ts +1 -0
  69. package/package.json +5 -5
  70. package/dist/framework/attributes.d.ts +0 -1
  71. package/dist/framework/overridable-hooks.d.ts +0 -6
  72. package/dist/libs/aria-reflection/aria-reflection.d.ts +0 -1
  73. package/dist/libs/aria-reflection/attr-reflection.d.ts +0 -2
@@ -17,3 +17,4 @@ export declare class ReactiveObserver {
17
17
  link(reactiveObservers: ReactiveObserver[]): void;
18
18
  isObserving(): boolean;
19
19
  }
20
+ //# sourceMappingURL=index.d.ts.map
@@ -1 +1,2 @@
1
1
  export declare const ariaReflectionPolyfillDescriptors: any;
2
+ //# sourceMappingURL=aria-reflection.d.ts.map
@@ -1,2 +1,3 @@
1
1
  declare const descriptors: Record<string, PropertyDescriptor>;
2
2
  export { descriptors as propToAttrReflectionPolyfillDescriptors };
3
+ //# sourceMappingURL=attr-reflection.d.ts.map
@@ -1,2 +1,3 @@
1
1
  export { ariaReflectionPolyfillDescriptors } from './aria-reflection';
2
2
  export { propToAttrReflectionPolyfillDescriptors } from './attr-reflection';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -3,3 +3,4 @@ export declare function subscribeToSignal(target: object, signal: Signal<unknown
3
3
  export declare function unsubscribeFromSignals(target: object): void;
4
4
  type CallbackFunction = () => void;
5
5
  export {};
6
+ //# sourceMappingURL=index.d.ts.map
@@ -1 +1,2 @@
1
1
  export {};
2
+ //# sourceMappingURL=detect-non-standard-aria.d.ts.map
@@ -1 +1,2 @@
1
1
  export {};
2
+ //# sourceMappingURL=detect-synthetic-cross-root-aria.d.ts.map
@@ -14,3 +14,4 @@ interface CircularModuleDependency<M extends object> {
14
14
  export declare function resolveCircularModuleDependency<M extends MaybeModule>(fn: CircularModuleDependency<M>): M;
15
15
  export declare function isCircularModuleDependency(obj: unknown): obj is CircularModuleDependency<any>;
16
16
  export {};
17
+ //# sourceMappingURL=circular-module-dependencies.d.ts.map
@@ -1,2 +1,3 @@
1
1
  import type { VM } from '../framework/vm';
2
2
  export declare function addErrorComponentStack(vm: VM, error: any): void;
3
+ //# sourceMappingURL=error.d.ts.map
@@ -2,3 +2,4 @@ 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;
5
+ //# sourceMappingURL=format.d.ts.map
@@ -2,3 +2,4 @@ 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;
5
+ //# sourceMappingURL=logger.d.ts.map
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.12.7-alpha.0",
7
+ "version": "8.12.7",
8
8
  "description": "Core LWC engine APIs.",
9
9
  "keywords": [
10
10
  "lwc"
@@ -46,11 +46,11 @@
46
46
  }
47
47
  },
48
48
  "dependencies": {
49
- "@lwc/features": "8.12.7-alpha.0",
50
- "@lwc/shared": "8.12.7-alpha.0",
51
- "@lwc/signals": "8.12.7-alpha.0"
49
+ "@lwc/features": "8.12.7",
50
+ "@lwc/shared": "8.12.7",
51
+ "@lwc/signals": "8.12.7"
52
52
  },
53
53
  "devDependencies": {
54
54
  "observable-membrane": "2.0.0"
55
55
  }
56
- }
56
+ }
@@ -1 +0,0 @@
1
- export declare const defaultDefHTMLPropertyNames: string[];
@@ -1,6 +0,0 @@
1
- import { SanitizeHtmlContentHook } from './api';
2
- interface OverridableHooksDef {
3
- sanitizeHtmlContent: SanitizeHtmlContentHook;
4
- }
5
- export declare function setHooks(hooks: OverridableHooksDef): void;
6
- export {};
@@ -1 +0,0 @@
1
- export declare const ariaReflectionPolyfillDescriptors: any;
@@ -1,2 +0,0 @@
1
- declare const descriptors: Record<string, PropertyDescriptor>;
2
- export { descriptors as propToAttrReflectionPolyfillDescriptors };