@lwc/engine-core
Advanced tools
Comparing version 1.7.5-alpha1 to 1.7.5
{ | ||
"name": "@lwc/engine-core", | ||
"version": "1.7.5-alpha1", | ||
"version": "1.7.5", | ||
"description": "Core LWC engine APIs.", | ||
@@ -28,4 +28,4 @@ "homepage": "https://lwc.dev/", | ||
"devDependencies": { | ||
"@lwc/features": "1.7.5-alpha1", | ||
"@lwc/shared": "1.7.5-alpha1", | ||
"@lwc/features": "1.7.5", | ||
"@lwc/shared": "1.7.5", | ||
"observable-membrane": "0.26.1" | ||
@@ -36,3 +36,3 @@ }, | ||
}, | ||
"gitHead": "942c9d7c801888ed74530a0219fdf91c5fb822a6" | ||
"gitHead": "e4752800794ce3c36c756e143cae2bdb321f9a9b" | ||
} |
@@ -19,2 +19,2 @@ export { createContextProvider } from './context-provider'; | ||
export type { Renderer } from './renderer'; | ||
export type { DataCallback, WireAdapter, WireAdapterConstructor } from './wiring'; | ||
export type { ConfigValue as WireConfigValue, ContextValue as WireContextValue, DataCallback, WireAdapter, WireAdapterConstructor, WireAdapterSchemaValue, } from './wiring'; |
@@ -1,7 +0,7 @@ | ||
import { VNode } from '../../3rdparty/snabbdom/types'; | ||
declare function update(oldVnode: VNode, vnode: VNode): void; | ||
import { VElement } from '../../3rdparty/snabbdom/types'; | ||
declare function update(oldVnode: VElement, vnode: VElement): void; | ||
declare const _default: { | ||
create: (vnode: VNode) => void; | ||
create: (vnode: VElement) => void; | ||
update: typeof update; | ||
}; | ||
export default _default; |
export declare type HostNode = any; | ||
export declare type HostElement = any; | ||
export interface Renderer<N = HostNode, E = HostElement> { | ||
ssr: boolean; | ||
syntheticShadow: boolean; | ||
@@ -11,2 +12,4 @@ insert(node: N, parent: E, anchor: N | null): void; | ||
attachShadow(element: E, options: ShadowRootInit): N; | ||
getProperty(node: N, key: string): any; | ||
setProperty(node: N, key: string, value: any): void; | ||
setText(node: N, content: string): void; | ||
@@ -13,0 +16,0 @@ getAttribute(element: E, name: string, namespace?: string | null): string | null; |
@@ -13,3 +13,3 @@ import { ComponentInterface } from './component'; | ||
export declare type DataCallback = (value: any) => void; | ||
declare type ConfigValue = Record<string, any>; | ||
export declare type ConfigValue = Record<string, any>; | ||
export interface WireAdapter { | ||
@@ -20,3 +20,3 @@ update(config: ConfigValue, context?: ContextValue): void; | ||
} | ||
declare type WireAdapterSchemaValue = 'optional' | 'required'; | ||
export declare type WireAdapterSchemaValue = 'optional' | 'required'; | ||
export declare function getAdapterToken(adapter: WireAdapterConstructor): string | undefined; | ||
@@ -23,0 +23,0 @@ export declare function setAdapterToken(adapter: WireAdapterConstructor, token: string): void; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
411995
11540
0