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 2.0.0-rc.2 to 2.0.0-rc.3

8

package.json
{
"name": "@lwc/engine-core",
"version": "2.0.0-rc.2",
"version": "2.0.0-rc.3",
"description": "Core LWC engine APIs.",

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

"devDependencies": {
"@lwc/features": "2.0.0-rc.2",
"@lwc/shared": "2.0.0-rc.2",
"@lwc/features": "2.0.0-rc.3",
"@lwc/shared": "2.0.0-rc.3",
"observable-membrane": "1.0.1"

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

},
"gitHead": "21333163f133085a97903f94e9ebb1a6eb30dc48"
"gitHead": "694107817c55769fbec8f42e258fc273b86de1a9"
}

@@ -5,2 +5,11 @@ import { VNode, VNodes } from '../3rdparty/snabbdom/types';

import { TemplateStylesheetFactories } from './stylesheet';
export interface TemplateStylesheetTokens {
/** HTML attribute that need to be applied to the host element. This attribute is used for
* the `:host` pseudo class CSS selector. */
hostAttribute: string;
/** HTML attribute that need to the applied to all the element that the template produces.
* This attribute is used for style encapsulation when the engine runs with synthetic
* shadow. */
shadowAttribute: string;
}
export interface Template {

@@ -13,11 +22,3 @@ (api: RenderAPI, cmp: object, slotSet: SlotSet, cache: TemplateCache): VNodes;

/** The stylesheet tokens used for synthetic shadow style scoping. */
stylesheetTokens?: {
/** HTML attribute that need to be applied to the host element. This attribute is used for
* the `:host` pseudo class CSS selector. */
hostAttribute: string;
/** HTML attribute that need to the applied to all the element that the template produces.
* This attribute is used for style encapsulation when the engine runs with synthetic
* shadow. */
shadowAttribute: string;
};
stylesheetTokens?: TemplateStylesheetTokens;
}

@@ -24,0 +25,0 @@ export declare let isUpdatingTemplate: boolean;

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