@lwc/engine-core 8.9.0 → 8.10.0-alpha.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.
- package/dist/framework/api.d.ts +4 -4
- package/dist/framework/base-bridge-element.d.ts +1 -1
- package/dist/framework/base-lightning-element.d.ts +4 -13
- package/dist/framework/check-version-mismatch.d.ts +2 -2
- package/dist/framework/component.d.ts +6 -6
- package/dist/framework/decorators/register.d.ts +2 -2
- package/dist/framework/def.d.ts +7 -5
- package/dist/framework/freeze-template.d.ts +1 -1
- package/dist/framework/get-component-constructor.d.ts +1 -1
- package/dist/framework/hot-swaps.d.ts +3 -3
- package/dist/framework/hydration.d.ts +1 -1
- package/dist/framework/invoker.d.ts +3 -3
- package/dist/framework/modules/attrs.d.ts +2 -2
- package/dist/framework/modules/computed-class-attr.d.ts +2 -2
- package/dist/framework/modules/computed-style-attr.d.ts +3 -3
- package/dist/framework/modules/events.d.ts +2 -2
- package/dist/framework/modules/props.d.ts +2 -2
- package/dist/framework/modules/refs.d.ts +2 -2
- package/dist/framework/modules/static-class-attr.d.ts +2 -2
- package/dist/framework/modules/static-parts.d.ts +2 -2
- package/dist/framework/modules/static-style-attr.d.ts +2 -2
- package/dist/framework/modules/text.d.ts +2 -2
- package/dist/framework/mutation-logger.d.ts +2 -2
- package/dist/framework/mutation-tracker.d.ts +3 -2
- package/dist/framework/profiler.d.ts +2 -1
- package/dist/framework/rendering.d.ts +3 -3
- package/dist/framework/reporting.d.ts +1 -1
- package/dist/framework/secure-template.d.ts +1 -1
- package/dist/framework/stylesheet.d.ts +3 -3
- package/dist/framework/template.d.ts +3 -3
- package/dist/framework/update-component-value.d.ts +1 -1
- package/dist/framework/utils.d.ts +1 -1
- package/dist/framework/vm.d.ts +7 -8
- package/dist/framework/wiring/context.d.ts +2 -2
- package/dist/framework/wiring/wiring.d.ts +1 -1
- package/dist/index.cjs.js +19 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/dist/libs/aria-reflection/aria-reflection.d.ts +1 -0
- package/dist/libs/aria-reflection/attr-reflection.d.ts +2 -0
- package/dist/shared/error.d.ts +1 -1
- package/dist/shared/format.d.ts +1 -1
- package/dist/shared/logger.d.ts +1 -1
- package/package.json +5 -5
package/dist/framework/api.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { SanitizedHtmlContent } from './sanitized-html-content';
|
|
2
|
+
import type { Key, VComment, VCustomElement, VElement, VElementData, VFragment, VNode, VNodes, VScopedSlotFragment, VStatic, VStaticPart, VStaticPartData, VText } from './vnodes';
|
|
3
|
+
import type { LightningElementConstructor } from './base-lightning-element';
|
|
4
|
+
import type { SlotSet } from './vm';
|
|
5
5
|
declare function sp(partId: number, data: VStaticPartData | null, text: string | null): VStaticPart;
|
|
6
6
|
declare function ssf(slotName: unknown, factory: (value: any, key: any) => VFragment): VScopedSlotFragment;
|
|
7
7
|
declare function st(fragmentFactory: (parts?: VStaticPart[]) => Element, key: Key, parts?: VStaticPart[]): VStatic;
|
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
* This structure can be used to synthetically create proxies, and understand the
|
|
7
|
-
* shape of a component. It is also used internally to apply extra optimizations.
|
|
8
|
-
*/
|
|
9
|
-
import { AccessibleElementProperties } from '@lwc/shared';
|
|
10
|
-
import { ShadowSupportMode } from './vm';
|
|
11
|
-
import { Template } from './template';
|
|
12
|
-
import { HTMLElementConstructor } from './base-bridge-element';
|
|
13
|
-
import type { Stylesheets } from '@lwc/shared';
|
|
1
|
+
import type { HTMLElementConstructor } from './base-bridge-element';
|
|
2
|
+
import type { Template } from './template';
|
|
3
|
+
import type { ShadowSupportMode } from './vm';
|
|
4
|
+
import type { Stylesheets, AccessibleElementProperties } from '@lwc/shared';
|
|
14
5
|
export interface LightningElementConstructor {
|
|
15
6
|
new (): LightningElement;
|
|
16
7
|
readonly prototype: LightningElement;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Template } from './template';
|
|
2
|
-
import { LightningElementConstructor } from './base-lightning-element';
|
|
1
|
+
import type { Template } from './template';
|
|
2
|
+
import type { LightningElementConstructor } from './base-lightning-element';
|
|
3
3
|
import type { Stylesheet } from '@lwc/shared';
|
|
4
4
|
/**
|
|
5
5
|
* Validate a template, stylesheet, or component to make sure that its compiled version matches
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
1
|
+
import type { VM } from './vm';
|
|
2
|
+
import type { LightningElementConstructor } from './base-lightning-element';
|
|
3
|
+
import type { Template } from './template';
|
|
4
|
+
import type { VNodes } from './vnodes';
|
|
5
|
+
import type { ReactiveObserver } from './mutation-tracker';
|
|
6
|
+
import type { APIVersion } from '@lwc/shared';
|
|
7
7
|
type ComponentConstructorMetadata = {
|
|
8
8
|
tmpl: Template;
|
|
9
9
|
sel: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { WireAdapterConstructor, ConfigCallback } from '../wiring';
|
|
2
|
+
import type { LightningElementConstructor } from '../base-lightning-element';
|
|
3
3
|
type WireCompilerMeta = Record<string, WireCompilerDef>;
|
|
4
4
|
type TrackCompilerMeta = Record<string, 1>;
|
|
5
5
|
type MethodCompilerMeta = string[];
|
package/dist/framework/def.d.ts
CHANGED
|
@@ -6,11 +6,13 @@
|
|
|
6
6
|
* This structure can be used to synthetically create proxies, and understand the
|
|
7
7
|
* shape of a component. It is also used internally to apply extra optimizations.
|
|
8
8
|
*/
|
|
9
|
-
import { RenderMode
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import { PropType } from './decorators/register';
|
|
13
|
-
import {
|
|
9
|
+
import { RenderMode } from '../framework/vm';
|
|
10
|
+
import { LightningElement } from './base-lightning-element';
|
|
11
|
+
import type { HTMLElementConstructor } from './base-bridge-element';
|
|
12
|
+
import type { PropType } from './decorators/register';
|
|
13
|
+
import type { LightningElementConstructor } from './base-lightning-element';
|
|
14
|
+
import type { Template } from './template';
|
|
15
|
+
import type { ShadowSupportMode } from '../framework/vm';
|
|
14
16
|
export interface ComponentDef {
|
|
15
17
|
name: string;
|
|
16
18
|
wire: PropertyDescriptorMap | undefined;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Template } from './template';
|
|
1
|
+
import type { Template } from './template';
|
|
2
2
|
export declare function freezeTemplate(tmpl: Template): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LightningElement } from './base-lightning-element';
|
|
1
|
+
import type { LightningElement } from './base-lightning-element';
|
|
2
2
|
/**
|
|
3
3
|
* EXPERIMENTAL: This function provides access to the component constructor, given an HTMLElement.
|
|
4
4
|
* This API is subject to change or being removed.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { LightningElementConstructor } from './base-lightning-element';
|
|
3
|
-
import {
|
|
1
|
+
import type { Template } from './template';
|
|
2
|
+
import type { LightningElementConstructor } from './base-lightning-element';
|
|
3
|
+
import type { VM } from './vm';
|
|
4
4
|
import type { Stylesheet } from '@lwc/shared';
|
|
5
5
|
export declare function getTemplateOrSwappedTemplate(tpl: Template): Template;
|
|
6
6
|
export declare function getComponentOrSwappedComponent(Ctor: LightningElementConstructor): LightningElementConstructor;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { VM } from './vm';
|
|
1
|
+
import type { VM } from './vm';
|
|
2
2
|
export declare function hydrateRoot(vm: VM): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { VM } from './vm';
|
|
2
|
-
import { LightningElement, LightningElementConstructor } from './base-lightning-element';
|
|
3
|
-
import { VNodes } from './vnodes';
|
|
1
|
+
import type { VM } from './vm';
|
|
2
|
+
import type { LightningElement, LightningElementConstructor } from './base-lightning-element';
|
|
3
|
+
import type { VNodes } from './vnodes';
|
|
4
4
|
export declare let isInvokingRender: boolean;
|
|
5
5
|
export declare let vmBeingConstructed: VM | null;
|
|
6
6
|
export declare function isBeingConstructed(vm: VM): boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VBaseElement, VStatic, VStaticPartElement } from '../vnodes';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VBaseElement, VStatic, VStaticPartElement } from '../vnodes';
|
|
3
3
|
export declare function patchAttributes(oldVnode: VBaseElement | VStaticPartElement | null, vnode: VBaseElement | VStaticPartElement, renderer: RendererAPI): void;
|
|
4
4
|
export declare function patchSlotAssignment(oldVnode: VBaseElement | VStatic | null, vnode: VBaseElement | VStatic, renderer: RendererAPI): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
3
3
|
export declare function getMapFromClassName(className: string | undefined): Record<string, boolean>;
|
|
4
4
|
export declare function patchClassAttribute(oldVnode: VBaseElement | VStaticPartElement | null, vnode: VBaseElement | VStaticPartElement, renderer: RendererAPI): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
3
|
-
import { VM } from '../vm';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
3
|
+
import type { VM } from '../vm';
|
|
4
4
|
export declare function patchStyleAttribute(oldVnode: VBaseElement | VStaticPartElement | null, vnode: VBaseElement | VStaticPartElement, renderer: RendererAPI, owner: VM): void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
3
3
|
export declare function applyEventListeners(vnode: VBaseElement | VStaticPartElement, renderer: RendererAPI): void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VBaseElement } from '../vnodes';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VBaseElement } from '../vnodes';
|
|
3
3
|
export declare function patchProps(oldVnode: VBaseElement | null, vnode: VBaseElement, renderer: RendererAPI): void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { VM } from '../vm';
|
|
2
|
-
import { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
1
|
+
import type { VM } from '../vm';
|
|
2
|
+
import type { VBaseElement, VStaticPartElement } from '../vnodes';
|
|
3
3
|
export declare function applyRefs(vnode: VBaseElement | VStaticPartElement, owner: VM): void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VBaseElement } from '../vnodes';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VBaseElement } from '../vnodes';
|
|
3
3
|
export declare function applyStaticClassAttribute(vnode: VBaseElement, renderer: RendererAPI): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VStatic, VStaticPart } from '../vnodes';
|
|
3
3
|
/**
|
|
4
4
|
* Given an array of static parts, mounts the DOM element to the part based on the staticPartId
|
|
5
5
|
* @param root the root element
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VBaseElement } from '../vnodes';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VBaseElement } from '../vnodes';
|
|
3
3
|
export declare function applyStaticStyleAttribute(vnode: VBaseElement, renderer: RendererAPI): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RendererAPI } from '../renderer';
|
|
2
|
-
import { VComment, VStaticPartText, VText } from '../vnodes';
|
|
1
|
+
import type { RendererAPI } from '../renderer';
|
|
2
|
+
import type { VComment, VStaticPartText, VText } from '../vnodes';
|
|
3
3
|
export declare function patchTextVNode(n1: VText, n2: VText, renderer: RendererAPI): void;
|
|
4
4
|
export declare function patchTextVStaticPart(n1: VStaticPartText | null, n2: VStaticPartText, renderer: RendererAPI): void;
|
|
5
5
|
export declare function updateTextContent(vnode: VText | VComment | VStaticPartText, renderer: RendererAPI): void;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { ReactiveObserver } from '../libs/mutation-tracker';
|
|
2
|
+
import type { CallbackFunction } from '../libs/mutation-tracker';
|
|
3
|
+
import type { VM } from './vm';
|
|
3
4
|
export declare function componentValueMutated(vm: VM, key: PropertyKey): void;
|
|
4
5
|
export declare function componentValueObserved(vm: VM, key: PropertyKey, target?: any): void;
|
|
5
6
|
export declare function createReactiveObserver(callback: CallbackFunction): ReactiveObserver;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { VM } from './vm';
|
|
3
|
-
import {
|
|
1
|
+
import type { VCustomElement, VNode, VNodes } from './vnodes';
|
|
2
|
+
import type { VM } from './vm';
|
|
3
|
+
import type { RendererAPI } from './renderer';
|
|
4
4
|
export declare function patchChildren(c1: VNodes, c2: VNodes, parent: ParentNode, renderer: RendererAPI): void;
|
|
5
5
|
export declare function mount(node: VNode, parent: ParentNode, renderer: RendererAPI, anchor: Node | null): void;
|
|
6
6
|
export declare function removeNode(node: Node, parent: ParentNode, renderer: RendererAPI): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RenderMode, ShadowMode, ShadowSupportMode } from './vm';
|
|
1
|
+
import type { RenderMode, ShadowMode, ShadowSupportMode } from './vm';
|
|
2
2
|
export declare const enum ReportingEventId {
|
|
3
3
|
CrossRootAriaInSyntheticShadow = "CrossRootAriaInSyntheticShadow",
|
|
4
4
|
CompilerRuntimeVersionMismatch = "CompilerRuntimeVersionMismatch",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Template } from './template';
|
|
3
|
-
import {
|
|
1
|
+
import type { VCustomElement, VNode } from './vnodes';
|
|
2
|
+
import type { Template } from './template';
|
|
3
|
+
import type { VM } from './vm';
|
|
4
4
|
import type { Stylesheet } from '@lwc/shared';
|
|
5
5
|
export declare function updateStylesheetToken(vm: VM, template: Template, legacy: boolean): void;
|
|
6
6
|
export declare function getStylesheetsContent(vm: VM, template: Template): ReadonlyArray<string>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SlotSet, TemplateCache, VM } from './vm';
|
|
3
|
-
import {
|
|
1
|
+
import type { VNodes } from './vnodes';
|
|
2
|
+
import type { SlotSet, TemplateCache, VM } from './vm';
|
|
3
|
+
import type { RenderAPI } from './api';
|
|
4
4
|
import type { Stylesheets } from '@lwc/shared';
|
|
5
5
|
export interface Template {
|
|
6
6
|
(api: RenderAPI, cmp: object, slotSet: SlotSet, cache: TemplateCache): VNodes;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { VM } from './vm';
|
|
1
|
+
import type { VM } from './vm';
|
|
2
2
|
export declare function updateComponentValue(vm: VM, key: string, newValue: any): void;
|
package/dist/framework/vm.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { ComponentDef } from './def';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import type { Stylesheets } from '@lwc/shared';
|
|
1
|
+
import type { VNodes, VCustomElement, VNode, VBaseElement, VStaticPartElement } from './vnodes';
|
|
2
|
+
import type { ReactiveObserver } from './mutation-tracker';
|
|
3
|
+
import type { LightningElement, LightningElementConstructor, LightningElementShadowRoot } from './base-lightning-element';
|
|
4
|
+
import type { ComponentDef } from './def';
|
|
5
|
+
import type { Template } from './template';
|
|
6
|
+
import type { HostNode, HostElement, RendererAPI } from './renderer';
|
|
7
|
+
import type { Stylesheets, APIVersion } from '@lwc/shared';
|
|
9
8
|
type ShadowRootMode = 'open' | 'closed';
|
|
10
9
|
export interface TemplateCache {
|
|
11
10
|
[key: string]: any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VM } from '../vm';
|
|
2
|
-
import { ContextProvider, ContextValue, RegisterContextProviderFn, WireAdapterConstructor, WireDef } from './types';
|
|
1
|
+
import type { VM } from '../vm';
|
|
2
|
+
import type { ContextProvider, ContextValue, RegisterContextProviderFn, WireAdapterConstructor, WireDef } from './types';
|
|
3
3
|
export declare function createContextProviderWithRegister(adapter: WireAdapterConstructor, registerContextProvider: RegisterContextProviderFn): ContextProvider;
|
|
4
4
|
export declare function createContextWatcher(vm: VM, wireDef: WireDef, callbackWhenContextIsReady: (newContext: ContextValue) => void): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VM } from '../vm';
|
|
1
|
+
import type { VM } from '../vm';
|
|
2
2
|
import type { ConfigCallback, WireAdapterConstructor } from './types';
|
|
3
3
|
export declare function storeWiredMethodMeta(descriptor: PropertyDescriptor, adapter: WireAdapterConstructor, configCallback: ConfigCallback, dynamic: string[]): void;
|
|
4
4
|
export declare function storeWiredFieldMeta(descriptor: PropertyDescriptor, adapter: WireAdapterConstructor, configCallback: ConfigCallback, dynamic: string[]): void;
|
package/dist/index.cjs.js
CHANGED
|
@@ -1071,6 +1071,12 @@ function patchCustomElementWithRestrictions(elm) {
|
|
|
1071
1071
|
shared.setPrototypeOf(elm, shared.create(elmProto, restrictionsDescriptors));
|
|
1072
1072
|
}
|
|
1073
1073
|
|
|
1074
|
+
/*
|
|
1075
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
1076
|
+
* All rights reserved.
|
|
1077
|
+
* SPDX-License-Identifier: MIT
|
|
1078
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
1079
|
+
*/
|
|
1074
1080
|
function updateComponentValue(vm, key, newValue) {
|
|
1075
1081
|
const { cmpFields } = vm;
|
|
1076
1082
|
if (newValue !== cmpFields[key]) {
|
|
@@ -2222,6 +2228,12 @@ shared.defineProperty(LightningElement, 'CustomElementConstructor', {
|
|
|
2222
2228
|
configurable: true,
|
|
2223
2229
|
});
|
|
2224
2230
|
|
|
2231
|
+
/*
|
|
2232
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
2233
|
+
* All rights reserved.
|
|
2234
|
+
* SPDX-License-Identifier: MIT
|
|
2235
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2236
|
+
*/
|
|
2225
2237
|
function createObservedFieldPropertyDescriptor(key) {
|
|
2226
2238
|
return {
|
|
2227
2239
|
get() {
|
|
@@ -2955,6 +2967,12 @@ function checkVersionMismatch(func, type) {
|
|
|
2955
2967
|
}
|
|
2956
2968
|
}
|
|
2957
2969
|
|
|
2970
|
+
/*
|
|
2971
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
2972
|
+
* All rights reserved.
|
|
2973
|
+
* SPDX-License-Identifier: MIT
|
|
2974
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2975
|
+
*/
|
|
2958
2976
|
const signedTemplateSet = new Set();
|
|
2959
2977
|
function defaultEmptyTemplate() {
|
|
2960
2978
|
return [];
|
|
@@ -8580,5 +8598,5 @@ exports.swapTemplate = swapTemplate;
|
|
|
8580
8598
|
exports.track = track;
|
|
8581
8599
|
exports.unwrap = unwrap;
|
|
8582
8600
|
exports.wire = wire;
|
|
8583
|
-
/** version: 8.
|
|
8601
|
+
/** version: 8.10.0-alpha.0 */
|
|
8584
8602
|
//# sourceMappingURL=index.cjs.js.map
|