From 0394a656cc4a1118d52c9bce68cce088a97a158e Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 12 May 2022 18:53:19 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/index.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 39a985e..a9579ab 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-element', - version: '2.0.14', + version: '2.0.15', description: 'a custom element class extending lit element class' } diff --git a/ts/index.ts b/ts/index.ts index 7d9c918..14cd9b7 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -7,6 +7,9 @@ export { customElement } from 'lit/decorators/custom-element.js'; export { property, state, query, queryAll, queryAsync } from 'lit/decorators.js'; +export { until } from 'lit/directives/until.js'; +export { asyncAppend } from 'lit/directives/async-append.js'; + // domtools exports import * as domtools from '@designestate/dees-domtools'; export { domtools };