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.18.0-alpha2 to 1.18.0

8

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

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

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

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

},
"gitHead": "f963d7ae762f6afcc60980494bdd174dac2ad082"
"gitHead": "993086fef8f4be94cbcc92be9b5c631a033afc30"
}

@@ -37,6 +37,2 @@ /**

}
export declare enum ShadowDomMode {
nativeShadow = 0,
syntheticShadow = 1
}
export interface VCustomElement extends VElement {

@@ -46,3 +42,2 @@ mode: 'closed' | 'open';

aChildren?: VNodes;
shadowDomMode: ShadowDomMode;
}

@@ -49,0 +44,0 @@ export interface VText extends VNode {

@@ -17,3 +17,2 @@ /**

delegatesFocus?: boolean;
forceNativeShadow?: 'native-shadow' | 'synthetic-shadow';
}

@@ -20,0 +19,0 @@ export declare let LightningElement: LightningElementConstructor;

@@ -14,3 +14,2 @@ export { createContextProvider } from './context-provider';

export { registerDecorators } from './decorators/register';
export { ShadowDomMode } from '../3rdparty/snabbdom/types';
export { unwrap } from './membrane';

@@ -17,0 +16,0 @@ export { sanitizeAttribute } from './secure-template';

@@ -22,3 +22,3 @@ export declare type HostNode = any;

getClassList(element: E): DOMTokenList;
getStyleDeclaration(element: E): CSSStyleDeclaration;
setCSSStyleProperty(element: E, name: string, value: string): void;
getBoundingClientRect(element: E): ClientRect;

@@ -25,0 +25,0 @@ querySelector(element: E, selectors: string): E | null;

@@ -7,3 +7,3 @@ import { Template } from './template';

import { Renderer, HostNode, HostElement } from './renderer';
import { VNodes, VCustomElement, VNode, ShadowDomMode } from '../3rdparty/snabbdom/types';
import { VNodes, VCustomElement, VNode } from '../3rdparty/snabbdom/types';
declare type ShadowRootMode = 'open' | 'closed';

@@ -49,4 +49,2 @@ export interface TemplateCache {

readonly renderer: Renderer<N, E>;
/** The shadow dom implementation to be used**/
readonly shadowDomMode: ShadowDomMode;
/** The component creation index. */

@@ -115,3 +113,2 @@ idx: number;

renderer: Renderer;
shadowDomMode: ShadowDomMode;
}): VM;

@@ -118,0 +115,0 @@ export declare function associateVM(obj: VMAssociable, vm: VM): 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