1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327 |
- class UIElement {
- constructor( dom ) {
- this.dom = dom;
- }
- add() {
- for ( let i = 0; i < arguments.length; i ++ ) {
- const argument = arguments[ i ];
- if ( argument instanceof UIElement ) {
- this.dom.appendChild( argument.dom );
- } else {
- console.error( 'UIElement:', argument, 'is not an instance of UIElement.' );
- }
- }
- return this;
- }
- remove() {
- for ( let i = 0; i < arguments.length; i ++ ) {
- const argument = arguments[ i ];
- if ( argument instanceof UIElement ) {
- this.dom.removeChild( argument.dom );
- } else {
- console.error( 'UIElement:', argument, 'is not an instance of UIElement.' );
- }
- }
- return this;
- }
- clear() {
- while ( this.dom.children.length ) {
- this.dom.removeChild( this.dom.lastChild );
- }
- }
- setId( id ) {
- this.dom.id = id;
- return this;
- }
- getId() {
- return this.dom.id;
- }
- setClass( name ) {
- this.dom.className = name;
- return this;
- }
- addClass( name ) {
- this.dom.classList.add( name );
- return this;
- }
- removeClass( name ) {
- this.dom.classList.remove( name );
- return this;
- }
- toggleClass( name, toggle ) {
- this.dom.classList.toggle( name, toggle );
- return this;
- }
- setStyle( style, array ) {
- for ( let i = 0; i < array.length; i ++ ) {
- this.dom.style[ style ] = array[ i ];
- }
- return this;
- }
- setHidden( isHidden ) {
- this.dom.hidden = isHidden;
- return this;
- }
- isHidden() {
- return this.dom.hidden;
- }
- setDisabled( value ) {
- this.dom.disabled = value;
- return this;
- }
- setTextContent( value ) {
- this.dom.textContent = value;
- return this;
- }
- setInnerHTML( value ) {
- this.dom.innerHTML = value;
- }
- getIndexOfChild( element ) {
- return Array.prototype.indexOf.call( this.dom.children, element.dom );
- }
- }
- // properties
- const properties = [ 'position', 'left', 'top', 'right', 'bottom', 'width', 'height',
- 'display', 'verticalAlign', 'overflow', 'color', 'background', 'backgroundColor', 'opacity',
- 'border', 'borderLeft', 'borderTop', 'borderRight', 'borderBottom', 'borderColor',
- 'margin', 'marginLeft', 'marginTop', 'marginRight', 'marginBottom',
- 'padding', 'paddingLeft', 'paddingTop', 'paddingRight', 'paddingBottom',
- 'fontSize', 'fontWeight', 'textAlign', 'textDecoration', 'textTransform', 'cursor', 'zIndex' ];
- properties.forEach( function ( property ) {
- const method = 'set' + property.substring( 0, 1 ).toUpperCase() + property.substring( 1 );
- UIElement.prototype[ method ] = function () {
- this.setStyle( property, arguments );
- return this;
- };
- } );
- // events
- const events = [ 'KeyUp', 'KeyDown', 'MouseOver', 'MouseOut', 'Click', 'DblClick', 'Change', 'Input' ];
- events.forEach( function ( event ) {
- const method = 'on' + event;
- UIElement.prototype[ method ] = function ( callback ) {
- this.dom.addEventListener( event.toLowerCase(), callback.bind( this ) );
- return this;
- };
- } );
- class UISpan extends UIElement {
- constructor() {
- super( document.createElement( 'span' ) );
- }
- }
- class UIDiv extends UIElement {
- constructor() {
- super( document.createElement( 'div' ) );
- }
- }
- class UIRow extends UIDiv {
- constructor() {
- super();
- this.dom.className = 'Row';
- }
- }
- class UIPanel extends UIDiv {
- constructor() {
- super();
- this.dom.className = 'Panel';
- }
- }
- class UIText extends UISpan {
- constructor( text ) {
- super();
- this.dom.className = 'Text';
- this.dom.style.cursor = 'default';
- this.dom.style.display = 'inline-block';
- this.setValue( text );
- }
- getValue() {
- return this.dom.textContent;
- }
- setValue( value ) {
- if ( value !== undefined ) {
- this.dom.textContent = value;
- }
- return this;
- }
- }
- class UIInput extends UIElement {
- constructor( text ) {
- super( document.createElement( 'input' ) );
- this.dom.className = 'Input';
- this.dom.style.padding = '2px';
- this.dom.style.border = '1px solid transparent';
- this.dom.setAttribute( 'autocomplete', 'off' );
- this.dom.addEventListener( 'keydown', function ( event ) {
- event.stopPropagation();
- } );
- this.setValue( text );
- }
- getValue() {
- return this.dom.value;
- }
- setValue( value ) {
- this.dom.value = value;
- return this;
- }
- }
- class UITextArea extends UIElement {
- constructor() {
- super( document.createElement( 'textarea' ) );
- this.dom.className = 'TextArea';
- this.dom.style.padding = '2px';
- this.dom.spellcheck = false;
- this.dom.setAttribute( 'autocomplete', 'off' );
- this.dom.addEventListener( 'keydown', function ( event ) {
- event.stopPropagation();
- if ( event.code === 'Tab' ) {
- event.preventDefault();
- const cursor = this.selectionStart;
- this.value = this.value.substring( 0, cursor ) + '\t' + this.value.substring( cursor );
- this.selectionStart = cursor + 1;
- this.selectionEnd = this.selectionStart;
- }
- } );
- }
- getValue() {
- return this.dom.value;
- }
- setValue( value ) {
- this.dom.value = value;
- return this;
- }
- }
- class UISelect extends UIElement {
- constructor() {
- super( document.createElement( 'select' ) );
- this.dom.className = 'Select';
- this.dom.style.padding = '2px';
- this.dom.setAttribute( 'autocomplete', 'off' );
- this.dom.addEventListener( 'pointerdown', function ( event ) {
- event.stopPropagation();
- } );
- }
- setMultiple( boolean ) {
- this.dom.multiple = boolean;
- return this;
- }
- setOptions( options ) {
- const selected = this.dom.value;
- while ( this.dom.children.length > 0 ) {
- this.dom.removeChild( this.dom.firstChild );
- }
- for ( const key in options ) {
- const option = document.createElement( 'option' );
- option.value = key;
- option.innerHTML = options[ key ];
- this.dom.appendChild( option );
- }
- this.dom.value = selected;
- return this;
- }
- getValue() {
- return this.dom.value;
- }
- setValue( value ) {
- value = String( value );
- if ( this.dom.value !== value ) {
- this.dom.value = value;
- }
- return this;
- }
- }
- class UICheckbox extends UIElement {
- constructor( boolean ) {
- super( document.createElement( 'input' ) );
- this.dom.className = 'Checkbox';
- this.dom.type = 'checkbox';
- this.dom.addEventListener( 'pointerdown', function ( event ) {
- // Workaround for TransformControls blocking events in Viewport.Controls checkboxes
- event.stopPropagation();
- } );
- this.setValue( boolean );
- }
- getValue() {
- return this.dom.checked;
- }
- setValue( value ) {
- if ( value !== undefined ) {
- this.dom.checked = value;
- }
- return this;
- }
- }
- class UIColor extends UIElement {
- constructor() {
- super( document.createElement( 'input' ) );
- this.dom.className = 'Color';
- this.dom.style.width = '32px';
- this.dom.style.height = '16px';
- this.dom.style.border = '0px';
- this.dom.style.padding = '2px';
- this.dom.style.backgroundColor = 'transparent';
- this.dom.setAttribute( 'autocomplete', 'off' );
- try {
- this.dom.type = 'color';
- this.dom.value = '#ffffff';
- } catch ( exception ) {}
- }
- getValue() {
- return this.dom.value;
- }
- getHexValue() {
- return parseInt( this.dom.value.substring( 1 ), 16 );
- }
- setValue( value ) {
- this.dom.value = value;
- return this;
- }
- setHexValue( hex ) {
- this.dom.value = '#' + ( '000000' + hex.toString( 16 ) ).slice( - 6 );
- return this;
- }
- }
- class UINumber extends UIElement {
- constructor( number ) {
- super( document.createElement( 'input' ) );
- this.dom.style.cursor = 'ns-resize';
- this.dom.className = 'Number';
- this.dom.value = '0.00';
- this.dom.setAttribute( 'autocomplete', 'off' );
- this.value = 0;
- this.min = - Infinity;
- this.max = Infinity;
- this.precision = 2;
- this.step = 1;
- this.unit = '';
- this.nudge = 0.01;
- this.setValue( number );
- const scope = this;
- const changeEvent = new Event( 'change', { bubbles: true, cancelable: true } );
- let distance = 0;
- let onMouseDownValue = 0;
- const pointer = { x: 0, y: 0 };
- const prevPointer = { x: 0, y: 0 };
- function onMouseDown( event ) {
- if ( document.activeElement === scope.dom ) return;
- event.preventDefault();
- distance = 0;
- onMouseDownValue = scope.value;
- prevPointer.x = event.clientX;
- prevPointer.y = event.clientY;
- document.addEventListener( 'mousemove', onMouseMove );
- document.addEventListener( 'mouseup', onMouseUp );
- }
- function onMouseMove( event ) {
- const currentValue = scope.value;
- pointer.x = event.clientX;
- pointer.y = event.clientY;
- distance += ( pointer.x - prevPointer.x ) - ( pointer.y - prevPointer.y );
- let value = onMouseDownValue + ( distance / ( event.shiftKey ? 5 : 50 ) ) * scope.step;
- value = Math.min( scope.max, Math.max( scope.min, value ) );
- if ( currentValue !== value ) {
- scope.setValue( value );
- scope.dom.dispatchEvent( changeEvent );
- }
- prevPointer.x = event.clientX;
- prevPointer.y = event.clientY;
- }
- function onMouseUp() {
- document.removeEventListener( 'mousemove', onMouseMove );
- document.removeEventListener( 'mouseup', onMouseUp );
- if ( Math.abs( distance ) < 2 ) {
- scope.dom.focus();
- scope.dom.select();
- }
- }
- function onTouchStart( event ) {
- if ( event.touches.length === 1 ) {
- distance = 0;
- onMouseDownValue = scope.value;
- prevPointer.x = event.touches[ 0 ].pageX;
- prevPointer.y = event.touches[ 0 ].pageY;
- document.addEventListener( 'touchmove', onTouchMove, { passive: false } );
- document.addEventListener( 'touchend', onTouchEnd );
- }
- }
- function onTouchMove( event ) {
- event.preventDefault();
- const currentValue = scope.value;
- pointer.x = event.touches[ 0 ].pageX;
- pointer.y = event.touches[ 0 ].pageY;
- distance += ( pointer.x - prevPointer.x ) - ( pointer.y - prevPointer.y );
- let value = onMouseDownValue + ( distance / ( event.shiftKey ? 5 : 50 ) ) * scope.step;
- value = Math.min( scope.max, Math.max( scope.min, value ) );
- if ( currentValue !== value ) {
- scope.setValue( value );
- scope.dom.dispatchEvent( changeEvent );
- }
- prevPointer.x = event.touches[ 0 ].pageX;
- prevPointer.y = event.touches[ 0 ].pageY;
- }
- function onTouchEnd( event ) {
- if ( event.touches.length === 0 ) {
- document.removeEventListener( 'touchmove', onTouchMove );
- document.removeEventListener( 'touchend', onTouchEnd );
- }
- }
- function onChange() {
- scope.setValue( scope.dom.value );
- }
- function onFocus() {
- scope.dom.style.backgroundColor = '';
- scope.dom.style.cursor = '';
- }
- function onBlur() {
- scope.dom.style.backgroundColor = 'transparent';
- scope.dom.style.cursor = 'ns-resize';
- }
- function onKeyDown( event ) {
- event.stopPropagation();
- switch ( event.code ) {
- case 'Enter':
- scope.dom.blur();
- break;
- case 'ArrowUp':
- event.preventDefault();
- scope.setValue( scope.getValue() + scope.nudge );
- scope.dom.dispatchEvent( changeEvent );
- break;
- case 'ArrowDown':
- event.preventDefault();
- scope.setValue( scope.getValue() - scope.nudge );
- scope.dom.dispatchEvent( changeEvent );
- break;
- }
- }
- onBlur();
- this.dom.addEventListener( 'keydown', onKeyDown );
- this.dom.addEventListener( 'mousedown', onMouseDown );
- this.dom.addEventListener( 'touchstart', onTouchStart, { passive: false } );
- this.dom.addEventListener( 'change', onChange );
- this.dom.addEventListener( 'focus', onFocus );
- this.dom.addEventListener( 'blur', onBlur );
- }
- getValue() {
- return this.value;
- }
- setValue( value ) {
- if ( value !== undefined ) {
- value = parseFloat( value );
- if ( value < this.min ) value = this.min;
- if ( value > this.max ) value = this.max;
- this.value = value;
- this.dom.value = value.toFixed( this.precision );
- if ( this.unit !== '' ) this.dom.value += ' ' + this.unit;
- }
- return this;
- }
- setPrecision( precision ) {
- this.precision = precision;
- return this;
- }
- setStep( step ) {
- this.step = step;
- return this;
- }
- setNudge( nudge ) {
- this.nudge = nudge;
- return this;
- }
- setRange( min, max ) {
- this.min = min;
- this.max = max;
- return this;
- }
- setUnit( unit ) {
- this.unit = unit;
- this.setValue( this.value );
- return this;
- }
- }
- class UIInteger extends UIElement {
- constructor( number ) {
- super( document.createElement( 'input' ) );
- this.dom.style.cursor = 'ns-resize';
- this.dom.className = 'Number';
- this.dom.value = '0';
- this.dom.setAttribute( 'autocomplete', 'off' );
- this.value = 0;
- this.min = - Infinity;
- this.max = Infinity;
- this.step = 1;
- this.nudge = 1;
- this.setValue( number );
- const scope = this;
- const changeEvent = new Event( 'change', { bubbles: true, cancelable: true } );
- let distance = 0;
- let onMouseDownValue = 0;
- const pointer = { x: 0, y: 0 };
- const prevPointer = { x: 0, y: 0 };
- function onMouseDown( event ) {
- if ( document.activeElement === scope.dom ) return;
- event.preventDefault();
- distance = 0;
- onMouseDownValue = scope.value;
- prevPointer.x = event.clientX;
- prevPointer.y = event.clientY;
- document.addEventListener( 'mousemove', onMouseMove );
- document.addEventListener( 'mouseup', onMouseUp );
- }
- function onMouseMove( event ) {
- const currentValue = scope.value;
- pointer.x = event.clientX;
- pointer.y = event.clientY;
- distance += ( pointer.x - prevPointer.x ) - ( pointer.y - prevPointer.y );
- let value = onMouseDownValue + ( distance / ( event.shiftKey ? 5 : 50 ) ) * scope.step;
- value = Math.min( scope.max, Math.max( scope.min, value ) ) | 0;
- if ( currentValue !== value ) {
- scope.setValue( value );
- scope.dom.dispatchEvent( changeEvent );
- }
- prevPointer.x = event.clientX;
- prevPointer.y = event.clientY;
- }
- function onMouseUp() {
- document.removeEventListener( 'mousemove', onMouseMove );
- document.removeEventListener( 'mouseup', onMouseUp );
- if ( Math.abs( distance ) < 2 ) {
- scope.dom.focus();
- scope.dom.select();
- }
- }
- function onChange() {
- scope.setValue( scope.dom.value );
- }
- function onFocus() {
- scope.dom.style.backgroundColor = '';
- scope.dom.style.cursor = '';
- }
- function onBlur() {
- scope.dom.style.backgroundColor = 'transparent';
- scope.dom.style.cursor = 'ns-resize';
- }
- function onKeyDown( event ) {
- event.stopPropagation();
- switch ( event.code ) {
- case 'Enter':
- scope.dom.blur();
- break;
- case 'ArrowUp':
- event.preventDefault();
- scope.setValue( scope.getValue() + scope.nudge );
- scope.dom.dispatchEvent( changeEvent );
- break;
- case 'ArrowDown':
- event.preventDefault();
- scope.setValue( scope.getValue() - scope.nudge );
- scope.dom.dispatchEvent( changeEvent );
- break;
- }
- }
- onBlur();
- this.dom.addEventListener( 'keydown', onKeyDown );
- this.dom.addEventListener( 'mousedown', onMouseDown );
- this.dom.addEventListener( 'change', onChange );
- this.dom.addEventListener( 'focus', onFocus );
- this.dom.addEventListener( 'blur', onBlur );
- }
- getValue() {
- return this.value;
- }
- setValue( value ) {
- if ( value !== undefined ) {
- value = parseInt( value );
- this.value = value;
- this.dom.value = value;
- }
- return this;
- }
- setStep( step ) {
- this.step = parseInt( step );
- return this;
- }
- setNudge( nudge ) {
- this.nudge = nudge;
- return this;
- }
- setRange( min, max ) {
- this.min = min;
- this.max = max;
- return this;
- }
- }
- class UIBreak extends UIElement {
- constructor() {
- super( document.createElement( 'br' ) );
- this.dom.className = 'Break';
- }
- }
- class UIHorizontalRule extends UIElement {
- constructor() {
- super( document.createElement( 'hr' ) );
- this.dom.className = 'HorizontalRule';
- }
- }
- class UIButton extends UIElement {
- constructor( value ) {
- super( document.createElement( 'button' ) );
- this.dom.className = 'Button';
- this.dom.textContent = value;
- }
- }
- class UIProgress extends UIElement {
- constructor( value ) {
- super( document.createElement( 'progress' ) );
- this.dom.value = value;
- }
- setValue( value ) {
- this.dom.value = value;
- }
- }
- class UITabbedPanel extends UIDiv {
- constructor() {
- super();
- this.dom.className = 'TabbedPanel';
- this.tabs = [];
- this.panels = [];
- this.tabsDiv = new UIDiv();
- this.tabsDiv.setClass( 'Tabs' );
- this.panelsDiv = new UIDiv();
- this.panelsDiv.setClass( 'Panels' );
- this.add( this.tabsDiv );
- this.add( this.panelsDiv );
- this.selected = '';
- }
- select( id ) {
- let tab;
- let panel;
- const scope = this;
- // Deselect current selection
- if ( this.selected && this.selected.length ) {
- tab = this.tabs.find( function ( item ) {
- return item.dom.id === scope.selected;
- } );
- panel = this.panels.find( function ( item ) {
- return item.dom.id === scope.selected;
- } );
- if ( tab ) {
- tab.removeClass( 'selected' );
- }
- if ( panel ) {
- panel.setDisplay( 'none' );
- }
- }
- tab = this.tabs.find( function ( item ) {
- return item.dom.id === id;
- } );
- panel = this.panels.find( function ( item ) {
- return item.dom.id === id;
- } );
- if ( tab ) {
- tab.addClass( 'selected' );
- tab.dom.scrollIntoView( { inline: 'center', behavior: 'smooth' } );
- }
- if ( panel ) {
- panel.setDisplay( '' );
- }
- this.selected = id;
- return this;
- }
- addTab( id, label, items ) {
- const tab = new UITab( label, this );
- tab.setId( id );
- this.tabs.push( tab );
- this.tabsDiv.add( tab );
- const panel = new UIDiv();
- panel.setId( id );
- panel.add( items );
- panel.setDisplay( 'none' );
- this.panels.push( panel );
- this.panelsDiv.add( panel );
- this.select( id );
- }
- }
- class UITab extends UIText {
- constructor( text, parent ) {
- super( text );
- this.dom.className = 'Tab';
- this.parent = parent;
- const scope = this;
- this.dom.addEventListener( 'click', function () {
- scope.parent.select( scope.dom.id );
- } );
- }
- }
- class UIListbox extends UIDiv {
- constructor() {
- super();
- this.dom.className = 'Listbox';
- this.dom.tabIndex = 0;
- this.items = [];
- this.listitems = [];
- this.selectedIndex = 0;
- this.selectedValue = null;
- }
- setItems( items ) {
- if ( Array.isArray( items ) ) {
- this.items = items;
- }
- this.render();
- }
- render( ) {
- while ( this.listitems.length ) {
- const item = this.listitems[ 0 ];
- item.dom.remove();
- this.listitems.splice( 0, 1 );
- }
- for ( let i = 0; i < this.items.length; i ++ ) {
- const item = this.items[ i ];
- const listitem = new ListboxItem( this );
- listitem.setId( item.id || `Listbox-${i}` );
- listitem.setTextContent( item.name || item.type );
- this.add( listitem );
- }
- }
- add() {
- const items = Array.from( arguments );
- this.listitems = this.listitems.concat( items );
- UIElement.prototype.add.apply( this, items );
- }
- selectIndex( index ) {
- if ( index >= 0 && index < this.items.length ) {
- this.setValue( this.listitems[ index ].getId() );
- }
- this.selectedIndex = index;
- }
- getValue() {
- return this.selectedValue;
- }
- setValue( value ) {
- for ( let i = 0; i < this.listitems.length; i ++ ) {
- const element = this.listitems[ i ];
- if ( element.getId() === value ) {
- element.addClass( 'active' );
- } else {
- element.removeClass( 'active' );
- }
- }
- this.selectedValue = value;
- const changeEvent = new Event( 'change', { bubbles: true, cancelable: true } );
- this.dom.dispatchEvent( changeEvent );
- }
- }
- class ListboxItem extends UIDiv {
- constructor( parent ) {
- super();
- this.dom.className = 'ListboxItem';
- this.parent = parent;
- const scope = this;
- function onClick() {
- if ( scope.parent ) {
- scope.parent.setValue( scope.getId( ) );
- }
- }
- this.dom.addEventListener( 'click', onClick );
- }
- }
- export { UIElement, UISpan, UIDiv, UIRow, UIPanel, UIText, UIInput, UITextArea, UISelect, UICheckbox, UIColor, UINumber, UIInteger, UIBreak, UIHorizontalRule, UIButton, UIProgress, UITabbedPanel, UIListbox, ListboxItem };
|