@lwc/ssr-runtime
Advanced tools
Comparing version 8.12.2 to 8.12.3
@@ -20,3 +20,3 @@ import type { LightningElement } from './lightning-element'; | ||
add(...newClassNames: string[]): void; | ||
contains(className: string): boolean; | ||
contains(className: string): any; | ||
remove(...classNamesToRemove: string[]): void; | ||
@@ -34,1 +34,2 @@ replace(oldClassName: string, newClassName: string): boolean; | ||
export {}; | ||
//# sourceMappingURL=class-list.d.ts.map |
export declare function getReadOnlyProxy<T>(value: T): Readonly<T>; | ||
//# sourceMappingURL=get-read-only-proxy.d.ts.map |
@@ -14,1 +14,2 @@ export * from './stubs'; | ||
export { createContextProvider, establishContextfulRelationship, connectContext } from './wire'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -30,6 +30,7 @@ /// <reference types="node" /> | ||
isConnected: boolean; | ||
className: string; | ||
tagName: string; | ||
constructor(propsAvailableAtConstruction: PropsAvailableAtConstruction & Properties); | ||
[SYMBOL__SET_INTERNALS](props: Properties, attrs: Attributes): void; | ||
get className(): any; | ||
set className(newVal: any); | ||
get classList(): ClassList; | ||
@@ -117,1 +118,2 @@ setAttribute(attrName: string, attrValue: string): void; | ||
export {}; | ||
//# sourceMappingURL=lightning-element.d.ts.map |
@@ -11,1 +11,2 @@ import type { LightningElement } from './lightning-element'; | ||
export {}; | ||
//# sourceMappingURL=mutation-tracker.d.ts.map |
@@ -7,3 +7,4 @@ /** | ||
*/ | ||
export declare function filterProperties(props: Record<string, unknown>, publicFields: Array<string>, privateFields: Array<string>): Record<string, unknown>; | ||
export declare function filterProperties(props: Record<string, unknown>, publicFields: Set<string>, privateFields: Set<string>): Record<string, unknown>; | ||
export declare const descriptors: Record<string, PropertyDescriptor>; | ||
//# sourceMappingURL=reflection.d.ts.map |
@@ -6,1 +6,2 @@ /** | ||
export declare function massageTextContent(value: unknown): string; | ||
//# sourceMappingURL=render-text-content.d.ts.map |
@@ -6,4 +6,4 @@ import { SYMBOL__GENERATE_MARKUP } from './lightning-element'; | ||
export declare function renderAttrsNoYield(emit: (segment: string) => void, instance: LightningElement, attrs: Attributes, hostScopeToken: string | undefined, scopeToken: string | undefined): void; | ||
export declare function fallbackTmpl(_props: unknown, _attrs: unknown, _shadowSlottedContent: unknown, _lightSlottedContent: unknown, Cmp: LightningElementConstructor, _instance: unknown): Generator<string, void, unknown>; | ||
export declare function fallbackTmplNoYield(emit: (segment: string) => void, _props: unknown, _attrs: unknown, _shadowSlottedContent: unknown, _lightSlottedContent: unknown, Cmp: LightningElementConstructor, _instance: unknown): void; | ||
export declare function fallbackTmpl(_shadowSlottedContent: unknown, _lightSlottedContent: unknown, Cmp: LightningElementConstructor, _instance: unknown): Generator<string, void, unknown>; | ||
export declare function fallbackTmplNoYield(emit: (segment: string) => void, _shadowSlottedContent: unknown, _lightSlottedContent: unknown, Cmp: LightningElementConstructor, _instance: unknown): void; | ||
export type GenerateMarkupFn = (tagName: string, props: Properties | null, attrs: Attributes | null, shadowSlottedContent: AsyncGenerator<string> | null, lightSlottedContent: Record<number | string, AsyncGenerator<string>> | null, parent: LightningElement | null, scopeToken: string | null, contextfulParent: LightningElement | null) => AsyncGenerator<string>; | ||
@@ -18,1 +18,2 @@ export type GenerateMarkupFnAsyncNoGen = (emit: (segment: string) => void, tagName: string, props: Properties | null, attrs: Attributes | null, shadowSlottedContent: AsyncGenerator<string> | null, lightSlottedContent: Record<number | string, AsyncGenerator<string>> | null, parent: LightningElement | null, scopeToken: string | null, contextfulParent: LightningElement | null) => Promise<void>; | ||
export {}; | ||
//# sourceMappingURL=render.d.ts.map |
@@ -77,1 +77,2 @@ export declare function api(..._: unknown[]): never; | ||
export declare const hot: undefined; | ||
//# sourceMappingURL=stubs.d.ts.map |
@@ -7,1 +7,2 @@ import type { LightningElementConstructor } from './lightning-element'; | ||
export {}; | ||
//# sourceMappingURL=styles.d.ts.map |
@@ -11,1 +11,2 @@ /** | ||
}>; | ||
//# sourceMappingURL=to-iterator-directive.d.ts.map |
export type Attributes = Record<string, string>; | ||
export type Properties = Record<string, unknown>; | ||
//# sourceMappingURL=types.d.ts.map |
@@ -22,1 +22,2 @@ /** | ||
export declare function validateStyleTextContents(contents: string): void; | ||
//# sourceMappingURL=validate-style-text-contents.d.ts.map |
@@ -9,1 +9,2 @@ import { LightningElement } from './lightning-element'; | ||
export {}; | ||
//# sourceMappingURL=wire.d.ts.map |
@@ -7,3 +7,3 @@ { | ||
"name": "@lwc/ssr-runtime", | ||
"version": "8.12.2", | ||
"version": "8.12.3", | ||
"description": "Runtime complement to @lwc/ssr-compiler", | ||
@@ -35,3 +35,4 @@ "keywords": [ | ||
"files": [ | ||
"dist" | ||
"dist/**/*.js", | ||
"dist/**/*.d.ts" | ||
], | ||
@@ -52,6 +53,6 @@ "scripts": { | ||
"devDependencies": { | ||
"@lwc/shared": "8.12.2", | ||
"@lwc/engine-core": "8.12.2", | ||
"@lwc/shared": "8.12.3", | ||
"@lwc/engine-core": "8.12.3", | ||
"observable-membrane": "2.0.0" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
171340
19
3893