Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/sign-up/src/tabs/types/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/sign-up/src/tabs/types/tabs-options.js

import {BaseEvent} from 'main.core.events';

export type TabOptions = {
	id: string | number,
	icon: string,
	activeIcon: string,
	header: string,
	active: boolean,
	content: HTMLElement,
	events: {
		onHeaderClick: (event: BaseEvent) => void,
	},
};

export type TabsOptions = {
	tabs: Array<TabOptions>,
	defaultState: 'initials' | 'touch' | 'image',
	events?: {
		onChange?: (event: BaseEvent) => void,
	},
};