UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

1,344 lines (1,343 loc) 39.5 kB
import * as jqxcore from '../../jqwidgets/jqxcore'; import * as jqxdata from '../../jqwidgets/jqxdata'; import * as jqxbuttons from '../../jqwidgets/jqxbuttons'; import * as jqxscrollbar from '../../jqwidgets/jqxscrollbar'; import * as jqxlistbox from '../../jqwidgets/jqxlistbox'; import * as jqxdropdownlist from '../../jqwidgets/jqxdropdownlist'; /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /// <reference path="../../jqwidgets.d.ts" /> /// <reference path="../../jqwidgets.d.ts" /> import { Component, Input, Output, EventEmitter, ElementRef, forwardRef, ChangeDetectionStrategy } from '@angular/core'; import { NG_VALUE_ACCESSOR } from '@angular/forms'; /** @type {?} */ const noop = () => { }; const ɵ0 = noop; /** @type {?} */ const CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR = { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => jqxDropDownListComponent), multi: true }; export class jqxDropDownListComponent { /** * @param {?} containerElement */ constructor(containerElement) { this.autoCreate = true; this.properties = ['autoOpen', 'autoDropDownHeight', 'animationType', 'checkboxes', 'closeDelay', 'disabled', 'displayMember', 'dropDownHorizontalAlignment', 'dropDownVerticalAlignment', 'dropDownHeight', 'dropDownWidth', 'enableSelection', 'enableBrowserBoundsDetection', 'enableHover', 'filterable', 'filterHeight', 'filterDelay', 'filterPlaceHolder', 'height', 'incrementalSearch', 'incrementalSearchDelay', 'itemHeight', 'openDelay', 'placeHolder', 'popupZIndex', 'rtl', 'renderer', 'selectionRenderer', 'searchMode', 'source', 'selectedIndex', 'theme', 'template', 'valueMember', 'width']; this.onTouchedCallback = noop; this.onChangeCallback = noop; // jqxDropDownListComponent events this.onBindingComplete = new EventEmitter(); this.onClose = new EventEmitter(); this.onCheckChange = new EventEmitter(); this.onChange = new EventEmitter(); this.onOpen = new EventEmitter(); this.onSelect = new EventEmitter(); this.onUnselect = new EventEmitter(); this.elementRef = containerElement; } /** * @return {?} */ ngOnInit() { } ; /** * @return {?} */ ngAfterViewInit() { /** @type {?} */ let children = JQXLite(this.elementRef.nativeElement.children).find('li'); /** @type {?} */ let html = ''; /** @type {?} */ let options = {}; if (children.length > 0) { this.container = document.createElement('div'); html = this.elementRef.nativeElement.innerHTML; this.container.appendChild(this.elementRef.nativeElement.firstChild); this.elementRef.nativeElement.innerHTML = html; this.content = html; /** @type {?} */ let result = JQXLite.jqx.parseSourceTag(this.container); options['source'] = result.items; } if (this.autoCreate) { this.createComponent(options); } } ; /** * @return {?} */ ngAfterViewChecked() { if (this.container) { if (this.content !== this.container.innerHTML) { this.content = this.container.innerHTML; /** @type {?} */ let result = JQXLite.jqx.parseSourceTag(this.container); this.host.jqxDropDownList({ source: result.items }); } } } ; /** * @param {?} changes * @return {?} */ ngOnChanges(changes) { if (this.host) { for (let i = 0; i < this.properties.length; i++) { /** @type {?} */ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1); /** @type {?} */ let areEqual = false; if (this[attrName] !== undefined) { if (typeof this[attrName] === 'object') { if (this[attrName] instanceof Array) { areEqual = this.arraysEqual(this[attrName], this.host.jqxDropDownList(this.properties[i])); } if (areEqual) { return false; } this.host.jqxDropDownList(this.properties[i], this[attrName]); continue; } if (this[attrName] !== this.host.jqxDropDownList(this.properties[i])) { this.host.jqxDropDownList(this.properties[i], this[attrName]); } } } } } /** * @param {?} attrValue * @param {?} hostValue * @return {?} */ arraysEqual(attrValue, hostValue) { if ((attrValue && !hostValue) || (!attrValue && hostValue)) { return false; } if (attrValue.length != hostValue.length) { return false; } for (let i = 0; i < attrValue.length; i++) { if (attrValue[i] !== hostValue[i]) { return false; } } return true; } /** * @return {?} */ manageAttributes() { /** @type {?} */ let options = {}; for (let i = 0; i < this.properties.length; i++) { /** @type {?} */ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1); if (this[attrName] !== undefined) { options[this.properties[i]] = this[attrName]; } } return options; } /** * @param {?} parentEl * @param {?} childEl * @return {?} */ moveClasses(parentEl, childEl) { /** @type {?} */ let classes = parentEl.classList; if (classes.length > 0) { childEl.classList.add(...classes); } parentEl.className = ''; } /** * @param {?} parentEl * @param {?} childEl * @return {?} */ moveStyles(parentEl, childEl) { /** @type {?} */ let style = parentEl.style.cssText; childEl.style.cssText = style; parentEl.style.cssText = ''; } /** * @param {?=} options * @return {?} */ createComponent(options) { if (this.host) { return; } if (options) { JQXLite.extend(options, this.manageAttributes()); } else { options = this.manageAttributes(); } this.host = JQXLite(this.elementRef.nativeElement.firstChild); this.moveClasses(this.elementRef.nativeElement, this.host[0]); this.moveStyles(this.elementRef.nativeElement, this.host[0]); this.__wireEvents__(); this.widgetObject = jqwidgets.createInstance(this.host, 'jqxDropDownList', options); } /** * @param {?=} options * @return {?} */ createWidget(options) { this.createComponent(options); } /** * @return {?} */ __updateRect__() { if (this.host) this.host.css({ width: this.attrWidth, height: this.attrHeight }); } /** * @param {?} value * @return {?} */ writeValue(value) { if (this.widgetObject) { this.onChangeCallback(this.host.val()); } } /** * @param {?} fn * @return {?} */ registerOnChange(fn) { this.onChangeCallback = fn; } /** * @param {?} fn * @return {?} */ registerOnTouched(fn) { this.onTouchedCallback = fn; } /** * @param {?} options * @return {?} */ setOptions(options) { this.host.jqxDropDownList('setOptions', options); } // jqxDropDownListComponent properties /** * @param {?=} arg * @return {?} */ autoOpen(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('autoOpen', arg); } else { return this.host.jqxDropDownList('autoOpen'); } } /** * @param {?=} arg * @return {?} */ autoDropDownHeight(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('autoDropDownHeight', arg); } else { return this.host.jqxDropDownList('autoDropDownHeight'); } } /** * @param {?=} arg * @return {?} */ animationType(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('animationType', arg); } else { return this.host.jqxDropDownList('animationType'); } } /** * @param {?=} arg * @return {?} */ checkboxes(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('checkboxes', arg); } else { return this.host.jqxDropDownList('checkboxes'); } } /** * @param {?=} arg * @return {?} */ closeDelay(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('closeDelay', arg); } else { return this.host.jqxDropDownList('closeDelay'); } } /** * @param {?=} arg * @return {?} */ disabled(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('disabled', arg); } else { return this.host.jqxDropDownList('disabled'); } } /** * @param {?=} arg * @return {?} */ displayMember(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('displayMember', arg); } else { return this.host.jqxDropDownList('displayMember'); } } /** * @param {?=} arg * @return {?} */ dropDownHorizontalAlignment(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('dropDownHorizontalAlignment', arg); } else { return this.host.jqxDropDownList('dropDownHorizontalAlignment'); } } /** * @param {?=} arg * @return {?} */ dropDownVerticalAlignment(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('dropDownVerticalAlignment', arg); } else { return this.host.jqxDropDownList('dropDownVerticalAlignment'); } } /** * @param {?=} arg * @return {?} */ dropDownHeight(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('dropDownHeight', arg); } else { return this.host.jqxDropDownList('dropDownHeight'); } } /** * @param {?=} arg * @return {?} */ dropDownWidth(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('dropDownWidth', arg); } else { return this.host.jqxDropDownList('dropDownWidth'); } } /** * @param {?=} arg * @return {?} */ enableSelection(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('enableSelection', arg); } else { return this.host.jqxDropDownList('enableSelection'); } } /** * @param {?=} arg * @return {?} */ enableBrowserBoundsDetection(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('enableBrowserBoundsDetection', arg); } else { return this.host.jqxDropDownList('enableBrowserBoundsDetection'); } } /** * @param {?=} arg * @return {?} */ enableHover(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('enableHover', arg); } else { return this.host.jqxDropDownList('enableHover'); } } /** * @param {?=} arg * @return {?} */ filterable(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('filterable', arg); } else { return this.host.jqxDropDownList('filterable'); } } /** * @param {?=} arg * @return {?} */ filterHeight(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('filterHeight', arg); } else { return this.host.jqxDropDownList('filterHeight'); } } /** * @param {?=} arg * @return {?} */ filterDelay(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('filterDelay', arg); } else { return this.host.jqxDropDownList('filterDelay'); } } /** * @param {?=} arg * @return {?} */ filterPlaceHolder(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('filterPlaceHolder', arg); } else { return this.host.jqxDropDownList('filterPlaceHolder'); } } /** * @param {?=} arg * @return {?} */ height(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('height', arg); } else { return this.host.jqxDropDownList('height'); } } /** * @param {?=} arg * @return {?} */ incrementalSearch(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('incrementalSearch', arg); } else { return this.host.jqxDropDownList('incrementalSearch'); } } /** * @param {?=} arg * @return {?} */ incrementalSearchDelay(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('incrementalSearchDelay', arg); } else { return this.host.jqxDropDownList('incrementalSearchDelay'); } } /** * @param {?=} arg * @return {?} */ itemHeight(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('itemHeight', arg); } else { return this.host.jqxDropDownList('itemHeight'); } } /** * @param {?=} arg * @return {?} */ openDelay(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('openDelay', arg); } else { return this.host.jqxDropDownList('openDelay'); } } /** * @param {?=} arg * @return {?} */ placeHolder(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('placeHolder', arg); } else { return this.host.jqxDropDownList('placeHolder'); } } /** * @param {?=} arg * @return {?} */ popupZIndex(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('popupZIndex', arg); } else { return this.host.jqxDropDownList('popupZIndex'); } } /** * @param {?=} arg * @return {?} */ rtl(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('rtl', arg); } else { return this.host.jqxDropDownList('rtl'); } } /** * @param {?=} arg * @return {?} */ renderer(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('renderer', arg); } else { return this.host.jqxDropDownList('renderer'); } } /** * @param {?=} arg * @return {?} */ selectionRenderer(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('selectionRenderer', arg); } else { return this.host.jqxDropDownList('selectionRenderer'); } } /** * @param {?=} arg * @return {?} */ searchMode(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('searchMode', arg); } else { return this.host.jqxDropDownList('searchMode'); } } /** * @param {?=} arg * @return {?} */ source(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('source', arg); } else { return this.host.jqxDropDownList('source'); } } /** * @param {?=} arg * @return {?} */ selectedIndex(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('selectedIndex', arg); } else { return this.host.jqxDropDownList('selectedIndex'); } } /** * @param {?=} arg * @return {?} */ theme(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('theme', arg); } else { return this.host.jqxDropDownList('theme'); } } /** * @param {?=} arg * @return {?} */ template(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('template', arg); } else { return this.host.jqxDropDownList('template'); } } /** * @param {?=} arg * @return {?} */ valueMember(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('valueMember', arg); } else { return this.host.jqxDropDownList('valueMember'); } } /** * @param {?=} arg * @return {?} */ width(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } if (arg !== undefined) { this.host.jqxDropDownList('width', arg); } else { return this.host.jqxDropDownList('width'); } } // jqxDropDownListComponent functions /** * @param {?} item * @return {?} */ addItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('addItem', item); } /** * @return {?} */ clearSelection() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('clearSelection'); } /** * @return {?} */ clear() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('clear'); } /** * @return {?} */ close() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('close'); } /** * @param {?} index * @return {?} */ checkIndex(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('checkIndex', index); } /** * @param {?} item * @return {?} */ checkItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('checkItem', item); } /** * @return {?} */ checkAll() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('checkAll'); } /** * @return {?} */ clearFilter() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('clearFilter'); } /** * @return {?} */ destroy() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('destroy'); } /** * @param {?} item * @return {?} */ disableItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('disableItem', item); } /** * @param {?} index * @return {?} */ disableAt(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('disableAt', index); } /** * @param {?} item * @return {?} */ enableItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('enableItem', item); } /** * @param {?} index * @return {?} */ enableAt(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('enableAt', index); } /** * @param {?} index * @return {?} */ ensureVisible(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('ensureVisible', index); } /** * @return {?} */ focus() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('focus'); } /** * @param {?} index * @return {?} */ getItem(index) { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('getItem', index); } /** * @param {?} itemValue * @return {?} */ getItemByValue(itemValue) { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('getItemByValue', itemValue); } /** * @return {?} */ getItems() { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('getItems'); } /** * @return {?} */ getCheckedItems() { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('getCheckedItems'); } /** * @return {?} */ getSelectedItem() { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('getSelectedItem'); } /** * @return {?} */ getSelectedIndex() { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('getSelectedIndex'); } /** * @param {?} item * @param {?} index * @return {?} */ insertAt(item, index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('insertAt', item, index); } /** * @return {?} */ isOpened() { if (this.autoCreate && !this.host) { this.createComponent(); } return this.host.jqxDropDownList('isOpened'); } /** * @param {?} index * @return {?} */ indeterminateIndex(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('indeterminateIndex', index); } /** * @param {?} item * @return {?} */ indeterminateItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('indeterminateItem', item); } /** * @param {?} arg * @return {?} */ loadFromSelect(arg) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('loadFromSelect', arg); } /** * @return {?} */ open() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('open'); } /** * @param {?} item * @return {?} */ removeItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('removeItem', item); } /** * @param {?} index * @return {?} */ removeAt(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('removeAt', index); } /** * @param {?} index * @return {?} */ selectIndex(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('selectIndex', index); } /** * @param {?} item * @return {?} */ selectItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('selectItem', item); } /** * @param {?} content * @return {?} */ setContent(content) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('setContent', content); } /** * @param {?} newItem * @param {?} item * @return {?} */ updateItem(newItem, item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('updateItem', newItem, item); } /** * @param {?} item * @param {?} index * @return {?} */ updateAt(item, index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('updateAt', item, index); } /** * @param {?} index * @return {?} */ unselectIndex(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('unselectIndex', index); } /** * @param {?} item * @return {?} */ unselectItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('unselectItem', item); } /** * @param {?} index * @return {?} */ uncheckIndex(index) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('uncheckIndex', index); } /** * @param {?} item * @return {?} */ uncheckItem(item) { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('uncheckItem', item); } /** * @return {?} */ uncheckAll() { if (this.autoCreate && !this.host) { this.createComponent(); } this.host.jqxDropDownList('uncheckAll'); } /** * @param {?=} value * @return {?} */ val(value) { if (value !== undefined) { return this.host.jqxDropDownList('val', value); } else { return this.host.jqxDropDownList('val'); } } ; /** * @return {?} */ __wireEvents__() { this.host.on('bindingComplete', (eventData) => { this.onBindingComplete.emit(eventData); }); this.host.on('close', (eventData) => { this.onClose.emit(eventData); }); this.host.on('checkChange', (eventData) => { this.onCheckChange.emit(eventData); }); this.host.on('change', (eventData) => { this.onChange.emit(eventData); if (eventData.args) this.onChangeCallback(eventData.args.item.value); }); this.host.on('open', (eventData) => { this.onOpen.emit(eventData); }); this.host.on('select', (eventData) => { this.onSelect.emit(eventData); }); this.host.on('unselect', (eventData) => { this.onUnselect.emit(eventData); }); } } //jqxDropDownListComponent jqxDropDownListComponent.decorators = [ { type: Component, args: [{ selector: 'jqxDropDownList', template: '<div><ng-content></ng-content></div>', providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR], changeDetection: ChangeDetectionStrategy.OnPush }] } ]; /** @nocollapse */ jqxDropDownListComponent.ctorParameters = () => [ { type: ElementRef } ]; jqxDropDownListComponent.propDecorators = { attrAutoOpen: [{ type: Input, args: ['autoOpen',] }], attrAutoDropDownHeight: [{ type: Input, args: ['autoDropDownHeight',] }], attrAnimationType: [{ type: Input, args: ['animationType',] }], attrCheckboxes: [{ type: Input, args: ['checkboxes',] }], attrCloseDelay: [{ type: Input, args: ['closeDelay',] }], attrDisabled: [{ type: Input, args: ['disabled',] }], attrDisplayMember: [{ type: Input, args: ['displayMember',] }], attrDropDownHorizontalAlignment: [{ type: Input, args: ['dropDownHorizontalAlignment',] }], attrDropDownVerticalAlignment: [{ type: Input, args: ['dropDownVerticalAlignment',] }], attrDropDownHeight: [{ type: Input, args: ['dropDownHeight',] }], attrDropDownWidth: [{ type: Input, args: ['dropDownWidth',] }], attrEnableSelection: [{ type: Input, args: ['enableSelection',] }], attrEnableBrowserBoundsDetection: [{ type: Input, args: ['enableBrowserBoundsDetection',] }], attrEnableHover: [{ type: Input, args: ['enableHover',] }], attrFilterable: [{ type: Input, args: ['filterable',] }], attrFilterHeight: [{ type: Input, args: ['filterHeight',] }], attrFilterDelay: [{ type: Input, args: ['filterDelay',] }], attrFilterPlaceHolder: [{ type: Input, args: ['filterPlaceHolder',] }], attrIncrementalSearch: [{ type: Input, args: ['incrementalSearch',] }], attrIncrementalSearchDelay: [{ type: Input, args: ['incrementalSearchDelay',] }], attrItemHeight: [{ type: Input, args: ['itemHeight',] }], attrOpenDelay: [{ type: Input, args: ['openDelay',] }], attrPlaceHolder: [{ type: Input, args: ['placeHolder',] }], attrPopupZIndex: [{ type: Input, args: ['popupZIndex',] }], attrRtl: [{ type: Input, args: ['rtl',] }], attrRenderer: [{ type: Input, args: ['renderer',] }], attrSelectionRenderer: [{ type: Input, args: ['selectionRenderer',] }], attrSearchMode: [{ type: Input, args: ['searchMode',] }], attrSource: [{ type: Input, args: ['source',] }], attrSelectedIndex: [{ type: Input, args: ['selectedIndex',] }], attrTheme: [{ type: Input, args: ['theme',] }], attrTemplate: [{ type: Input, args: ['template',] }], attrValueMember: [{ type: Input, args: ['valueMember',] }], attrWidth: [{ type: Input, args: ['width',] }], attrHeight: [{ type: Input, args: ['height',] }], autoCreate: [{ type: Input, args: ['auto-create',] }], onBindingComplete: [{ type: Output }], onClose: [{ type: Output }], onCheckChange: [{ type: Output }], onChange: [{ type: Output }], onOpen: [{ type: Output }], onSelect: [{ type: Output }], onUnselect: [{ type: Output }] }; if (false) { /** @type {?} */ jqxDropDownListComponent.prototype.attrAutoOpen; /** @type {?} */ jqxDropDownListComponent.prototype.attrAutoDropDownHeight; /** @type {?} */ jqxDropDownListComponent.prototype.attrAnimationType; /** @type {?} */ jqxDropDownListComponent.prototype.attrCheckboxes; /** @type {?} */ jqxDropDownListComponent.prototype.attrCloseDelay; /** @type {?} */ jqxDropDownListComponent.prototype.attrDisabled; /** @type {?} */ jqxDropDownListComponent.prototype.attrDisplayMember; /** @type {?} */ jqxDropDownListComponent.prototype.attrDropDownHorizontalAlignment; /** @type {?} */ jqxDropDownListComponent.prototype.attrDropDownVerticalAlignment; /** @type {?} */ jqxDropDownListComponent.prototype.attrDropDownHeight; /** @type {?} */ jqxDropDownListComponent.prototype.attrDropDownWidth; /** @type {?} */ jqxDropDownListComponent.prototype.attrEnableSelection; /** @type {?} */ jqxDropDownListComponent.prototype.attrEnableBrowserBoundsDetection; /** @type {?} */ jqxDropDownListComponent.prototype.attrEnableHover; /** @type {?} */ jqxDropDownListComponent.prototype.attrFilterable; /** @type {?} */ jqxDropDownListComponent.prototype.attrFilterHeight; /** @type {?} */ jqxDropDownListComponent.prototype.attrFilterDelay; /** @type {?} */ jqxDropDownListComponent.prototype.attrFilterPlaceHolder; /** @type {?} */ jqxDropDownListComponent.prototype.attrIncrementalSearch; /** @type {?} */ jqxDropDownListComponent.prototype.attrIncrementalSearchDelay; /** @type {?} */ jqxDropDownListComponent.prototype.attrItemHeight; /** @type {?} */ jqxDropDownListComponent.prototype.attrOpenDelay; /** @type {?} */ jqxDropDownListComponent.prototype.attrPlaceHolder; /** @type {?} */ jqxDropDownListComponent.prototype.attrPopupZIndex; /** @type {?} */ jqxDropDownListComponent.prototype.attrRtl; /** @type {?} */ jqxDropDownListComponent.prototype.attrRenderer; /** @type {?} */ jqxDropDownListComponent.prototype.attrSelectionRenderer; /** @type {?} */ jqxDropDownListComponent.prototype.attrSearchMode; /** @type {?} */ jqxDropDownListComponent.prototype.attrSource; /** @type {?} */ jqxDropDownListComponent.prototype.attrSelectedIndex; /** @type {?} */ jqxDropDownListComponent.prototype.attrTheme; /** @type {?} */ jqxDropDownListComponent.prototype.attrTemplate; /** @type {?} */ jqxDropDownListComponent.prototype.attrValueMember; /** @type {?} */ jqxDropDownListComponent.prototype.attrWidth; /** @type {?} */ jqxDropDownListComponent.prototype.attrHeight; /** @type {?} */ jqxDropDownListComponent.prototype.autoCreate; /** @type {?} */ jqxDropDownListComponent.prototype.properties; /** @type {?} */ jqxDropDownListComponent.prototype.host; /** @type {?} */ jqxDropDownListComponent.prototype.elementRef; /** @type {?} */ jqxDropDownListComponent.prototype.widgetObject; /** @type {?} */ jqxDropDownListComponent.prototype.content; /** @type {?} */ jqxDropDownListComponent.prototype.container; /** * @type {?} * @private */ jqxDropDownListComponent.prototype.onTouchedCallback; /** * @type {?} * @private */ jqxDropDownListComponent.prototype.onChangeCallback; /** @type {?} */ jqxDropDownListComponent.prototype.onBindingComplete; /** @type {?} */ jqxDropDownListComponent.prototype.onClose; /** @type {?} */ jqxDropDownListComponent.prototype.onCheckChange; /** @type {?} */ jqxDropDownListComponent.prototype.onChange; /** @type {?} */ jqxDropDownListComponent.prototype.onOpen; /** @type {?} */ jqxDropDownListComponent.prototype.onSelect; /** @type {?} */ jqxDropDownListComponent.prototype.onUnselect; /* Skipping unhandled member: ;*/ /* Skipping unhandled member: ;*/ /* Skipping unhandled member: ;*/ /* Skipping unhandled member: ;*/ } export { ɵ0 };