lit-element
Advanced tools
Comparing version 0.4.12 to 0.4.13
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
144087
+ Addedlit-html@0.10.2(transitive)
- Removedlit-html@0.9.0(transitive)
Updatedlit-html@^0.10.0