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
375
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.14-alpha1 to 1.7.14-alpha2

types/framework/upgradable-element.d.ts

8

package.json
{
"name": "@lwc/engine-core",
"version": "1.7.14-alpha1",
"version": "1.7.14-alpha2",
"description": "Core LWC engine APIs.",

@@ -28,4 +28,4 @@ "homepage": "https://lwc.dev/",

"devDependencies": {
"@lwc/features": "1.7.14-alpha1",
"@lwc/shared": "1.7.14-alpha1",
"@lwc/features": "1.7.14-alpha2",
"@lwc/shared": "1.7.14-alpha2",
"observable-membrane": "1.0.1"

@@ -36,3 +36,3 @@ },

},
"gitHead": "293f1dd9a9699c2f0be53dc2f3c484ea7b6325e9"
"gitHead": "9bf6d2078b1a65c7f5d12c06915363484770fdb2"
}

@@ -0,1 +1,2 @@

import { VM } from './vm';
import { VNode, VCustomElement, VElement, VNodes } from '../3rdparty/snabbdom/types';

@@ -8,13 +9,10 @@ export declare function updateNodeHook(oldVnode: VNode, vnode: VNode): void;

export declare function updateElmHook(oldVnode: VElement, vnode: VElement): void;
export declare function insertCustomElmHook(vnode: VCustomElement): void;
export declare function updateChildrenHook(oldVnode: VElement, vnode: VElement): void;
export declare function allocateChildrenHook(vnode: VCustomElement): void;
export declare function allocateChildrenHook(vnode: VCustomElement, vm: VM): void;
export declare function createViewModelHook(elm: HTMLElement, vnode: VCustomElement): void;
export declare function createCustomElmHook(vnode: VCustomElement): void;
export declare function createChildrenHook(vnode: VElement): void;
export declare function rerenderCustomElmHook(vnode: VCustomElement): void;
export declare function updateCustomElmHook(oldVnode: VCustomElement, vnode: VCustomElement): void;
export declare function removeElmHook(vnode: VElement): void;
export declare function removeCustomElmHook(vnode: VCustomElement): void;
export declare function markAsDynamicChildren(children: VNodes): void;
export declare function hasDynamicChildren(children: VNodes): boolean;

@@ -31,4 +31,7 @@ export declare type HostNode = any;

assertInstanceOfHTMLElement?(elm: any, msg: string): void;
defineCustomElement(name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions): void;
getCustomElement(name: string): CustomElementConstructor | undefined;
HTMLElement: typeof HTMLElement;
}
export declare const HTMLElementConstructor: typeof HTMLElement;
export declare const HTMLElementPrototype: HTMLElement;

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