make load faster
parent
9a7d60dfe7
commit
c6f8f43d67
|
@ -2,9 +2,8 @@
|
||||||
import ListComboBox from 'elix/define/ListComboBox.js';
|
import ListComboBox from 'elix/define/ListComboBox.js';
|
||||||
import NumberSpinBox from 'elix/define/NumberSpinBox.js';
|
import NumberSpinBox from 'elix/define/NumberSpinBox.js';
|
||||||
// import Input from 'elix/src/base/Input.js';
|
// import Input from 'elix/src/base/Input.js';
|
||||||
import {defaultState} from 'elix/src/base/internal.js';
|
import * as internal from 'elix/src/base/internal.js';
|
||||||
import {templateFrom, fragmentFrom} from 'elix/src/core/htmlLiterals.js';
|
import {templateFrom, fragmentFrom} from 'elix/src/core/htmlLiterals.js';
|
||||||
import {internal} from 'elix';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @class Dropdown
|
* @class Dropdown
|
||||||
|
@ -14,8 +13,8 @@ class Dropdown extends ListComboBox {
|
||||||
* @function get
|
* @function get
|
||||||
* @returns {PlainObject}
|
* @returns {PlainObject}
|
||||||
*/
|
*/
|
||||||
get [defaultState] () {
|
get [internal.defaultState] () {
|
||||||
return Object.assign(super[defaultState], {
|
return Object.assign(super[internal.defaultState], {
|
||||||
inputPartType: NumberSpinBox,
|
inputPartType: NumberSpinBox,
|
||||||
src: './images/logo.svg',
|
src: './images/logo.svg',
|
||||||
inputsize: '100%'
|
inputsize: '100%'
|
||||||
|
|
Loading…
Reference in New Issue