@lwc/engine-core 8.0.0-alpha.0 → 8.0.0-alpha.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/dist/framework/decorators/api.d.ts +1 -1
- package/dist/framework/decorators/track.d.ts +2 -1
- package/dist/framework/decorators/wire.d.ts +17 -2
- package/dist/framework/wiring/index.d.ts +1 -1
- package/dist/framework/wiring/types.d.ts +15 -0
- package/dist/index.cjs.js +4 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -7
package/dist/index.js
CHANGED
|
@@ -2374,7 +2374,9 @@ function createPublicAccessorDescriptor(key, descriptor) {
|
|
|
2374
2374
|
* SPDX-License-Identifier: MIT
|
|
2375
2375
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2376
2376
|
*/
|
|
2377
|
-
function track(target
|
|
2377
|
+
function track(target,
|
|
2378
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2379
|
+
context) {
|
|
2378
2380
|
if (arguments.length === 1) {
|
|
2379
2381
|
return getReactiveProxy(target);
|
|
2380
2382
|
}
|
|
@@ -8087,5 +8089,5 @@ function readonly(obj) {
|
|
|
8087
8089
|
}
|
|
8088
8090
|
|
|
8089
8091
|
export { LightningElement, profilerControl as __unstable__ProfilerControl, reportingControl as __unstable__ReportingControl, api$1 as api, computeShadowAndRenderMode, connectRootElement, createContextProviderWithRegister, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentAPIVersion, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, registerComponent, registerDecorators, registerTemplate, runFormAssociatedCallback, runFormDisabledCallback, runFormResetCallback, runFormStateRestoreCallback, sanitizeAttribute, setHooks, shouldBeFormAssociated, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
8090
|
-
/** version:
|
|
8092
|
+
/** version: 8.0.0-alpha.1 */
|
|
8091
8093
|
//# sourceMappingURL=index.js.map
|