aboutsummaryrefslogtreecommitdiff
path: root/static/elements.ts
diff options
context:
space:
mode:
Diffstat (limited to 'static/elements.ts')
-rw-r--r--static/elements.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/static/elements.ts b/static/elements.ts
index 06e0e31f..720f8abb 100644
--- a/static/elements.ts
+++ b/static/elements.ts
@@ -5,6 +5,7 @@ import { ComponentBlock } from './components/vevent-block'
import { DateTimeInput } from './components/date-time-input'
import { PopupElement } from './components/popup-element'
import { TabElement } from './components/tab-element'
+import { InputList } from './components/input-list'
export { initialize_components }
@@ -23,6 +24,7 @@ function initialize_components() {
becouse why not */
customElements.define('date-time-input', DateTimeInput /*, { extends: 'input' } */)
+ customElements.define('input-list', InputList);
/* These maybe also require that the global maps are initialized */
customElements.define('popup-element', PopupElement)