Your IP : 18.117.197.188


Current Path : /var/www/axolotl/data/www/axolotls.ru/www/bitrix/js/main/popup/src/menu/
Upload File :
Current File : /var/www/axolotl/data/www/axolotls.ru/www/bitrix/js/main/popup/src/menu/menu-types.js

import { PopupOptions } from '../popup/popup-types';

export type MenuOptions = PopupOptions & {
	items: MenuItemOptions[]
};

export type MenuItemOptions = {
	id?: string,
	text?: string,
	title?: string,
	disabled?: boolean,
	href?: string,
	target?: string,
	className?: string,
	delimiter?: boolean,
	menuShowDelay?: number,
	subMenuOffsetX?: number,
	events?: { [event: string]: (event) => {} },
	dataset?: { [key: string]: string },
	onclick?: () => {} | string,
	cacheable?: boolean,
	items?: MenuItemOptions[]
};