{"version":3,"file":"select-multiple-input.d.ts","sources":["select-multiple-input.d.ts"],"names":[],"mappings":"AAAA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["import { EventEmitter, OnInit } from '@angular/core';\r\nimport { IDropdownSettings } from 'ng-multiselect-dropdown/multiselect.model';\r\nexport declare class CloInputSelectMultiple implements OnInit {\r\n    /**\r\n     * Objects for the drop down\r\n     */\r\n    data: Object[];\r\n    /**\r\n     * Objects for the drop down\r\n     */\r\n    selectedItems: any;\r\n    /**\r\n     * Objects for the drop down\r\n     */\r\n    dropdownSettings: IDropdownSettings;\r\n    /**\r\n     * String value for the placeholder text of the dropdown\r\n     */\r\n    placeholder: any;\r\n    /**\r\n     * String value for the error message\r\n     */\r\n    errorMessage: string;\r\n    /**\r\n     * Form Label for input\r\n     */\r\n    label: string;\r\n    valueChange: EventEmitter<any>;\r\n    defaultSettings: {\r\n        singleSelection: boolean;\r\n        idField: string;\r\n        textField: string;\r\n        selectAllText: string;\r\n        unSelectAllText: string;\r\n        itemsShowLimit: number;\r\n        allowSearchFilter: boolean;\r\n    };\r\n    ngOnInit(): void;\r\n    onSelect(item: any): void;\r\n    onSelectAll(items: any): void;\r\n    onDeselect(item: any): void;\r\n    onDeselectAll(item: any): void;\r\n}\r\n"]}