@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.
- package/dist/framework/api.d.ts +1 -0
- package/dist/framework/base-bridge-element.d.ts +1 -0
- package/dist/framework/base-lightning-element.d.ts +1 -0
- package/dist/framework/check-version-mismatch.d.ts +1 -0
- package/dist/framework/component.d.ts +1 -0
- package/dist/framework/decorators/api.d.ts +1 -0
- package/dist/framework/decorators/register.d.ts +1 -0
- package/dist/framework/decorators/track.d.ts +1 -0
- package/dist/framework/decorators/wire.d.ts +1 -0
- package/dist/framework/def.d.ts +1 -0
- package/dist/framework/fragment-cache.d.ts +1 -0
- package/dist/framework/freeze-template.d.ts +1 -0
- package/dist/framework/get-component-constructor.d.ts +1 -0
- package/dist/framework/hot-swaps.d.ts +1 -0
- package/dist/framework/html-element.d.ts +1 -0
- package/dist/framework/html-properties.d.ts +1 -0
- package/dist/framework/hydration.d.ts +1 -0
- package/dist/framework/invoker.d.ts +3 -1
- package/dist/framework/main.d.ts +1 -0
- package/dist/framework/membrane.d.ts +1 -0
- package/dist/framework/modules/attrs.d.ts +1 -0
- package/dist/framework/modules/computed-class-attr.d.ts +1 -0
- package/dist/framework/modules/computed-style-attr.d.ts +1 -0
- package/dist/framework/modules/events.d.ts +1 -0
- package/dist/framework/modules/props.d.ts +1 -0
- package/dist/framework/modules/refs.d.ts +1 -0
- package/dist/framework/modules/static-class-attr.d.ts +1 -0
- package/dist/framework/modules/static-parts.d.ts +1 -0
- package/dist/framework/modules/static-style-attr.d.ts +1 -0
- package/dist/framework/modules/text.d.ts +1 -0
- package/dist/framework/mutation-logger.d.ts +1 -0
- package/dist/framework/mutation-tracker.d.ts +1 -0
- package/dist/framework/observed-fields.d.ts +1 -0
- package/dist/framework/profiler.d.ts +5 -3
- package/dist/framework/readonly.d.ts +1 -0
- package/dist/framework/renderer.d.ts +1 -0
- package/dist/framework/rendering.d.ts +1 -0
- package/dist/framework/reporting.d.ts +1 -0
- package/dist/framework/restrictions.d.ts +1 -0
- package/dist/framework/runtime-instrumentation.d.ts +1 -0
- package/dist/framework/sanitized-html-content.d.ts +2 -7
- package/dist/framework/secure-template.d.ts +1 -0
- package/dist/framework/shadow-migration-mode.d.ts +1 -0
- package/dist/framework/stylesheet.d.ts +1 -0
- package/dist/framework/template.d.ts +1 -0
- package/dist/framework/update-component-value.d.ts +1 -0
- package/dist/framework/utils.d.ts +2 -0
- package/dist/framework/vm.d.ts +1 -0
- package/dist/framework/vnodes.d.ts +1 -0
- package/dist/framework/weak-multimap.d.ts +1 -0
- package/dist/framework/wiring/context.d.ts +1 -0
- package/dist/framework/wiring/index.d.ts +1 -0
- package/dist/framework/wiring/types.d.ts +1 -0
- package/dist/framework/wiring/wiring.d.ts +1 -0
- package/dist/index.cjs.js +197 -130
- package/dist/index.d.ts +1 -0
- package/dist/index.js +197 -130
- package/dist/libs/mutation-tracker/index.d.ts +1 -0
- package/dist/libs/reflection/aria-reflection.d.ts +1 -0
- package/dist/libs/reflection/attr-reflection.d.ts +1 -0
- package/dist/libs/reflection/index.d.ts +1 -0
- package/dist/libs/signal-tracker/index.d.ts +1 -0
- package/dist/patches/detect-non-standard-aria.d.ts +1 -0
- package/dist/patches/detect-synthetic-cross-root-aria.d.ts +1 -0
- package/dist/shared/circular-module-dependencies.d.ts +1 -0
- package/dist/shared/error.d.ts +1 -0
- package/dist/shared/format.d.ts +1 -0
- package/dist/shared/logger.d.ts +1 -0
- package/package.json +5 -5
- package/dist/framework/attributes.d.ts +0 -1
- package/dist/framework/overridable-hooks.d.ts +0 -6
- package/dist/libs/aria-reflection/aria-reflection.d.ts +0 -1
- package/dist/libs/aria-reflection/attr-reflection.d.ts +0 -2
|
@@ -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
|
package/dist/shared/error.d.ts
CHANGED
package/dist/shared/format.d.ts
CHANGED
package/dist/shared/logger.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
50
|
-
"@lwc/shared": "8.12.7
|
|
51
|
-
"@lwc/signals": "8.12.7
|
|
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 +0,0 @@
|
|
|
1
|
-
export declare const ariaReflectionPolyfillDescriptors: any;
|