class attribute{constructor(name,value){this.name=name,this.value=value}}class collection{constructor(items){this.siblings=[],this.children=[],this.attributes=[],this.classes=[],this.tagName=null,this.element=null;for(var i=0;ithis.onClassChanged(oldValue,newValue)):this.classes.push(items[i]);return this}div(...items){return this.siblings.push(new div(...items)),this}p(...items){return this.siblings.push(new p(...items)),this}construct(parent){parent||(parent=window.document.body),this.element=window.document.createElement(this.tagName),parent.appendChild(this.element);for(var i=0;ithis.onUpdateProperty(oldValue,newValue))}construct(parent){this.element=document.createTextNode(""),parent.appendChild(this.element)}onUpdateProperty(oldValue,newValue){this.element.nodeValue=newValue}}class property{constructor(){this.onPropertyChange=[],this._value=null}get value(){return this._value}set value(val){var old=this._value;this._value=val;for(var i=0;i