Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/ui/entity-selector/src/dialog/ |
Upload File : |
import type { PopupOptions } from 'main.popup'; import type { TabOptions } from './tabs/tab-options'; import type { ItemOptions } from '../item/item-options'; import type { EntityOptions } from '../entity/entity-options'; import type { TagSelectorOptions } from '../tag-selector/tag-selector-options'; import type { BaseEvent } from 'main.core.events'; import type { ItemId } from '../item/item-id'; import type { SearchOptions } from './search-options'; import type TagSelector from '../tag-selector/tag-selector'; import type { HeaderContent, HeaderOptions } from './header/header-content'; import type { FooterContent, FooterOptions } from './footer/footer-content'; export type DialogOptions = { targetNode: HTMLElement, id?: string, context?: string, items?: ItemOptions[], selectedItems?: ItemOptions[], preselectedItems?: ItemId[], undeselectedItems?: ItemId[], tabs?: TabOptions[], entities?: EntityOptions[], popupOptions?: PopupOptions, multiple?: boolean, preload?: boolean, dropdownMode?: boolean, enableSearch?: boolean, searchOptions?: SearchOptions, searchTabOptions?: TabOptions, recentTabOptions?: TabOptions, tagSelector?: TagSelector, tagSelectorOptions?: TagSelectorOptions, events?: { [eventName: string]: (event: BaseEvent) => void }, hideOnSelect?: boolean, hideOnDeselect?: boolean, addTagOnSelect?: boolean, clearSearchOnSelect?: boolean, width?: number, height?: number, autoHide?: boolean, autoHideHandler?: (event: MouseEvent, dialog: Dialog) => boolean, hideByEsc?: boolean, offsetTop?: number, offsetLeft?: number, cacheable?: boolean, focusOnFirst?: boolean, header?: HeaderContent, headerOptions?: HeaderOptions, footer?: FooterContent, footerOptions?: FooterOptions, clearUnavailableItems?: boolean, showAvatars?: boolean, compactView?: boolean, recentItemsLimit?: number, offsetAnimation?: boolean, alwaysShowLabels?: boolean, };