Upgraded to new IgniteHtml register element.

This commit is contained in:
2022-08-26 08:35:55 -07:00
parent 2f406016b5
commit a745a63163
12 changed files with 33 additions and 21 deletions

View File

@@ -1,3 +1,4 @@
import { IgniteHtml } from '../ignite-html/ignite-html.js';
import { IgniteElement } from "../ignite-html/ignite-element.js";
import { IgniteTemplate, div, h1, slot, button } from "../ignite-html/ignite-template.js";
import { IgniteProperty } from "../ignite-html/ignite-html.js";
@@ -225,8 +226,8 @@ class DrawerTemplate extends IgniteTemplate {
}
}
IgniteHtml.register("mt-drawer", Drawer);
export {
DrawerTemplate as Drawer
};
customElements.define("mt-drawer", Drawer);
}