Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lwc/engine-core

Package Overview
Dependencies
Maintainers
12
Versions
376
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lwc/engine-core - npm Package Compare versions

Comparing version 1.7.5-alpha1 to 1.7.5

8

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc