@lwc/engine-core 7.3.0-alpha.2 → 7.3.0-alpha.3
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 -2
- package/dist/framework/decorators/track.d.ts +1 -2
- package/dist/framework/decorators/wire.d.ts +16 -2
- package/dist/framework/wiring/types.d.ts +6 -2
- package/dist/index.cjs.js +5 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -2374,8 +2374,10 @@ 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,
|
|
2378
|
-
|
|
2377
|
+
function track(target,
|
|
2378
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2379
|
+
context) {
|
|
2380
|
+
if (arguments.length === 1) {
|
|
2379
2381
|
return getReactiveProxy(target);
|
|
2380
2382
|
}
|
|
2381
2383
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -8045,5 +8047,5 @@ function readonly(obj) {
|
|
|
8045
8047
|
}
|
|
8046
8048
|
|
|
8047
8049
|
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 };
|
|
8048
|
-
/** version: 7.
|
|
8050
|
+
/** version: 7.2.0 */
|
|
8049
8051
|
//# sourceMappingURL=index.js.map
|