this is a work in progress, i intend to build up here a collection of reusable html components
users are able to supply their own components and therefore build up a rich selection of components
to get the whole thing started and supply and example, i have created the first, simple, example
keep checking back for more examples and an interface for user supplied examples
class newElement extends HTMLElement {
constructor(){
super();
var root = this;
}//constructor
connectedCallback(){}
disconnectedCallback(){}
static get observedAttributes(){}
attributeChangedCallback(name,oldValue,newValue){}
adoptedCallback(){}
render(){}
// A getter/setter for a disabled property.
get disabled(){}
set disabled(){}
// A getter/setter for an open property.
get open(){}
set open(){}
}//class