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/buttons/src/button/ |
Upload File : |
import type { BaseButtonOptions } from '../base-button-options'; import ButtonSize from './button-size'; import ButtonColor from './button-color'; import ButtonIcon from './button-icon'; import ButtonState from './button-state'; import type { MenuOptions } from 'main.popup'; import type { CounterOptions } from 'ui.cnt'; export type ButtonOptions = BaseButtonOptions & { size?: ButtonSize, color?: ButtonColor, icon?: ButtonIcon, collapsedIcon: ButtonIcon, state?: ButtonState, id?: string, menu?: MenuOptions, context?: any, noCaps?: boolean, round?: boolean, dropdown?: boolean, dependOnTheme?: boolean, // Use only with useAirTheme: true option style?: boolean; wide?: boolean; iconPosition?: 'left' | 'right'; rightCounter?: CounterOptions; leftCounter?: CounterOptions; removeLeftCorners?: boolean; removeRightCorners?: boolean; };