Working on editable label material component.
This commit is contained in:
parent
2a9da14e4c
commit
0dfaea6ab4
28
editable-label.js
Normal file
28
editable-label.js
Normal 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
5
ignite-material.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { EditableLabel } from "./editable-label.js";
|
||||||
|
|
||||||
|
export {
|
||||||
|
EditableLabel
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user