META UI Components
    Preparing search index...

    Interface IMeContextMenuAttrs

    Атрибуты компонента me-context-menu

    interface IMeContextMenuAttrs {
        animation?: "none" | "fadeIn" | "slideIn" | "scaleIn";
        animationDuration?: number;
        closeOnClickOutside?: boolean;
        closeOnItemClick?: boolean;
        cssClass?: string;
        items?: IMeContextMenuItem[];
        maxHeight?: string;
        maxWidth?: string;
        minWidth?: string;
        offset?: number;
        position?: "auto" | "left" | "top" | "bottom" | "right";
        showHotkeys?: boolean;
        showIcons?: boolean;
        showSeparators?: boolean;
        size?: "small" | "normal" | "large";
        style?: CSSProperties;
        theme?: "auto" | "light" | "dark";
        trigger?: "manual" | "rightClick" | "leftClick" | "hover";
        zIndex?: number;
    }
    Index

    Properties

    animation?: "none" | "fadeIn" | "slideIn" | "scaleIn"

    Анимация появления

    "fadeIn"
    
    animationDuration?: number

    Длительность анимации (мс)

    200
    
    closeOnClickOutside?: boolean

    Закрывать при клике вне меню

    true
    
    closeOnItemClick?: boolean

    Закрывать при клике на элемент

    true
    
    cssClass?: string

    Дополнительные CSS классы

    Элементы меню

    maxHeight?: string

    Максимальная высота меню

    maxWidth?: string

    Максимальная ширина меню

    minWidth?: string

    Минимальная ширина меню

    offset?: number

    Отступ от курсора

    5
    
    position?: "auto" | "left" | "top" | "bottom" | "right"

    Позиция меню

    "auto"
    
    showHotkeys?: boolean

    Показывать горячие клавиши

    true
    
    showIcons?: boolean

    Показывать иконки

    true
    
    showSeparators?: boolean

    Показывать разделители

    true
    
    size?: "small" | "normal" | "large"

    Размер меню

    "normal"
    
    style?: CSSProperties

    Встроенные стили

    theme?: "auto" | "light" | "dark"

    Цветовая схема

    "light"
    
    trigger?: "manual" | "rightClick" | "leftClick" | "hover"

    Триггер для показа меню

    "rightClick"
    
    zIndex?: number

    Z-index меню

    1000