UNPKG

bootstrap-italia

Version:

Bootstrap Italia è un tema Bootstrap 5 per la creazione di applicazioni web nel pieno rispetto delle linee guida di design per i siti internet e i servizi digitali della PA

74 lines (59 loc) 1.92 kB
import { default as BaseComponent } from 'bootstrap/js/dist/base-component' import { InputLabel } from './input-label' import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component'; declare class InputSearch extends BaseComponent { static get NAME(): string /** * Static method which allows you to get the instance associated * with a DOM element. */ static getInstance: GetInstanceFactory<InputSearch>; /** * Static method which allows you to get the modal instance associated with * a DOM element, or create a new one in case it wasn’t initialised */ static getOrCreateInstance: GetOrCreateInstanceFactory< InputSearch, Partial<InputSearch.Options> >; constructor(element: HTMLElement, config?: Partial<InputSearch.Options>) _config: any _items: any[] _autocompleteElement: HTMLUListElement _label: InputLabel search(): void _getConfig(config: any): any _getItems(): any _init(): void _bindEvents(): void _createOption(link: any, text: any, label: any, icon: any): HTMLLIElement } declare namespace InputSearch { interface Options { /** * Autocomplete elements * * @default [] */ autocomplete: any[], /** * Allowed HTML tags and attributes for sanitization of option content. * Defaults to the DefaultAllowlist extended with `mark`, `svg`, `use`. */ allowList: Record<string, Array<string | RegExp>>, /** * Enable HTML sanitization of option content. Disable only if `autocomplete` * is populated exclusively from trusted sources. * * @default true */ sanitize: boolean, /** * Custom sanitization function. If provided, replaces the built-in sanitizer * (e.g. pipe through DOMPurify). * * @default null */ sanitizeFn: ((html: string) => string) | null, } } export { InputSearch }