aboutsummaryrefslogtreecommitdiff
path: root/static/elements.ts
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-11-19 16:43:12 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-11-19 16:44:02 +0100
commite1a05a727f91622bfcf2c7c9025592c51f1abd20 (patch)
tree466d63ef0bed79e50c636f34406a18aeb3ae9fd5 /static/elements.ts
parentvevent-dl formats rrules. (diff)
downloadcalp-e1a05a727f91622bfcf2c7c9025592c51f1abd20.tar.gz
calp-e1a05a727f91622bfcf2c7c9025592c51f1abd20.tar.xz
Add input-list custom element.
Diffstat (limited to '')
-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)