Working on editable label material component.

This commit is contained in:
Matt Mo 2020-09-18 17:01:41 -07:00
parent 2a9da14e4c
commit 0dfaea6ab4
2 changed files with 33 additions and 0 deletions

28
editable-label.js Normal file
View File

@ -0,0 +1,28 @@
import { IgniteElement } from "../ignite-html/ignite-element.js";
import { IgniteTemplate, button, ul, slot } from "../ignite-html/ignite-template.js";
class EditableLabel extends IgniteElement {
constructor() {
super();
}
render() {
return this.template.child(
);
}
}
class EditableLabelTemplate extends IgniteTemplate {
constructor(...children) {
super("mt-editable-label", children);
}
}
customElements.define("mt-editable-label", EditableLabel);
export {
EditableLabelTemplate as EditableLabel
};

5
ignite-material.js Normal file
View File

@ -0,0 +1,5 @@
import { EditableLabel } from "./editable-label.js";
export {
EditableLabel
}