jqwidgets-ng
Version:
[](https://jqwidgets.com/license/)
86 lines (85 loc) • 4.45 kB
TypeScript
/// <reference path="../jqwidgets.d.ts" />
import { EventEmitter, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
import * as i0 from "@angular/core";
export declare class jqxMenuComponent implements OnChanges {
attrAnimationShowDuration: number;
attrAnimationHideDuration: number;
attrAnimationHideDelay: number;
attrAnimationShowDelay: number;
attrAutoCloseInterval: number;
attrAutoSizeMainItems: boolean;
attrAutoCloseOnClick: boolean;
attrAutoOpenPopup: boolean;
attrAutoOpen: boolean;
attrAutoCloseOnMouseLeave: boolean;
attrClickToOpen: boolean;
attrDisabled: boolean;
attrEnableHover: boolean;
attrEasing: string;
attrKeyboardNavigation: boolean;
attrMinimizeWidth: number | string;
attrMode: string;
attrPopupZIndex: number | string;
attrRtl: boolean;
attrShowTopLevelArrows: boolean;
attrSource: any;
attrTheme: string;
attrWidth: string | number;
attrHeight: string | number;
autoCreate: boolean;
properties: string[];
host: any;
elementRef: ElementRef;
widgetObject: jqwidgets.jqxMenu;
constructor(containerElement: ElementRef);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): boolean;
arraysEqual(attrValue: any, hostValue: any): boolean;
manageAttributes(): any;
moveClasses(parentEl: HTMLElement, childEl: HTMLElement): void;
moveStyles(parentEl: HTMLElement, childEl: HTMLElement): void;
createComponent(options?: any): void;
createWidget(options?: any): void;
__updateRect__(): void;
setOptions(options: any): void;
animationShowDuration(arg?: number): number;
animationHideDuration(arg?: number): number;
animationHideDelay(arg?: number): number;
animationShowDelay(arg?: number): number;
autoCloseInterval(arg?: number): number;
autoSizeMainItems(arg?: boolean): boolean;
autoCloseOnClick(arg?: boolean): boolean;
autoOpenPopup(arg?: boolean): boolean;
autoOpen(arg?: boolean): boolean;
autoCloseOnMouseLeave(arg?: boolean): boolean;
clickToOpen(arg?: boolean): boolean;
disabled(arg?: boolean): boolean;
enableHover(arg?: boolean): boolean;
easing(arg?: string): string;
height(arg?: string | number): string | number;
keyboardNavigation(arg?: boolean): boolean;
minimizeWidth(arg?: number | string): number | string;
mode(arg?: string): string;
popupZIndex(arg?: number | string): number | string;
rtl(arg?: boolean): boolean;
showTopLevelArrows(arg?: boolean): boolean;
source(arg?: any): any;
theme(arg?: string): string;
width(arg?: string | number): string | number;
closeItem(itemID: number | string): void;
close(): void;
disable(itemID: number | string, value: boolean): void;
destroy(): void;
focus(): void;
minimize(): void;
open(left: number, top: number): void;
openItem(itemID: number | string): void;
restore(): void;
setItemOpenDirection(item: number | string, horizontaldirection: string, verticaldirection: string): void;
onClosed: EventEmitter<any>;
onItemclick: EventEmitter<any>;
onShown: EventEmitter<any>;
__wireEvents__(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<jqxMenuComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<jqxMenuComponent, "jqxMenu", never, { "attrAnimationShowDuration": "animationShowDuration"; "attrAnimationHideDuration": "animationHideDuration"; "attrAnimationHideDelay": "animationHideDelay"; "attrAnimationShowDelay": "animationShowDelay"; "attrAutoCloseInterval": "autoCloseInterval"; "attrAutoSizeMainItems": "autoSizeMainItems"; "attrAutoCloseOnClick": "autoCloseOnClick"; "attrAutoOpenPopup": "autoOpenPopup"; "attrAutoOpen": "autoOpen"; "attrAutoCloseOnMouseLeave": "autoCloseOnMouseLeave"; "attrClickToOpen": "clickToOpen"; "attrDisabled": "disabled"; "attrEnableHover": "enableHover"; "attrEasing": "easing"; "attrKeyboardNavigation": "keyboardNavigation"; "attrMinimizeWidth": "minimizeWidth"; "attrMode": "mode"; "attrPopupZIndex": "popupZIndex"; "attrRtl": "rtl"; "attrShowTopLevelArrows": "showTopLevelArrows"; "attrSource": "source"; "attrTheme": "theme"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, { "onClosed": "onClosed"; "onItemclick": "onItemclick"; "onShown": "onShown"; }, never, ["*"]>;
}