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

lit-element

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lit-element - npm Package Compare versions

Comparing version 0.4.12 to 0.4.13

4

lit-lite.d.ts

@@ -38,6 +38,6 @@ import { camelCaseToKebab } from './lib/helpers/camel-to-kebab-case.js';

*/
export declare const LitLite: <T, U>(superclass: {
export declare const LitLite: <T>(superclass: {
new (): HTMLElement;
prototype: HTMLElement;
}, renderFunction: (result: T, container: Element | DocumentFragment, templateFactory?: U) => void) => {
}, renderFunction: (result: T, container: Element | DocumentFragment) => void) => {
new (): {

@@ -44,0 +44,0 @@ [key: string]: any;

{
"dependencies": {
"lit-html": "^0.9.0"
"lit-html": "^0.10.0"
},
"name": "lit-element",
"version": "0.4.12",
"version": "0.4.13",
"description": "Implements lit-html via a LitElement class. Made for custom Elements.",

@@ -12,2 +12,6 @@ "main": "lit-element.js",

"license": "MIT",
"keywords": [
"web components",
"lit-html"
],
"devDependencies": {

@@ -14,0 +18,0 @@ "chai": "^4.1.2",

@@ -88,4 +88,4 @@ import { camelCaseToKebab } from './lib/helpers/camel-to-kebab-case.js';

export const LitLite =
<T, U>(superclass = HTMLElement,
renderFunction: (result: T, container: Element | DocumentFragment, templateFactory?: U) => void) =>
<T>(superclass = HTMLElement,
renderFunction: (result: T, container: Element | DocumentFragment) => void) =>
class extends superclass {

@@ -92,0 +92,0 @@ static properties: Properties;

Sorry, the diff of this file is not supported yet

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