@a11d/lit 0.0.29 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,6 +9,7 @@ export declare abstract class Component extends LitElement {
|
|
|
9
9
|
protected connected(): void;
|
|
10
10
|
/** Invoked every time the component is disconnected from the Document Object Model (DOM) */
|
|
11
11
|
protected disconnected(): void;
|
|
12
|
+
/** The template rendered into renderRoot. Invoked on each update to perform rendering tasks. */
|
|
12
13
|
protected get template(): import("lit-html").HTMLTemplateResult;
|
|
13
14
|
/** @final */
|
|
14
15
|
protected render(): import("lit-html").HTMLTemplateResult;
|
|
@@ -9,6 +9,7 @@ export class Component extends LitElement {
|
|
|
9
9
|
connected() { }
|
|
10
10
|
/** Invoked every time the component is disconnected from the Document Object Model (DOM) */
|
|
11
11
|
disconnected() { }
|
|
12
|
+
/** The template rendered into renderRoot. Invoked on each update to perform rendering tasks. */
|
|
12
13
|
get template() {
|
|
13
14
|
return nothing;
|
|
14
15
|
}
|