From a231f96ff38d5352ac3a4225c98fa238cdf4de53 Mon Sep 17 00:00:00 2001 From: klovaaxel Date: Sun, 28 Jan 2024 14:27:25 +0100 Subject: [PATCH] Make the ComboboxFramework class the default export --- src/combobox-framework.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/combobox-framework.ts b/src/combobox-framework.ts index 52a6a72..50e8252 100644 --- a/src/combobox-framework.ts +++ b/src/combobox-framework.ts @@ -1,6 +1,6 @@ import Fuse from "fuse.js"; -class ComboboxFramework extends HTMLElement { +export default class ComboboxFramework extends HTMLElement { private _input: HTMLInputElement | null = null; private _list: HTMLElement | null = null; private _originalList: HTMLElement | null = null;