jqwidgets-ng
Version:
[](https://jqwidgets.com/license/)
54 lines (53 loc) • 2.51 kB
TypeScript
/// <reference path="../jqwidgets.d.ts" />
import { EventEmitter, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
import * as i0 from "@angular/core";
export declare class jqxSplitterComponent implements OnChanges {
attrDisabled: boolean;
attrOrientation: string;
attrPanels: Array<jqwidgets.SplitterPanel>;
attrResizable: boolean;
attrSplitBarSize: number;
attrShowSplitBar: boolean;
attrTheme: string;
attrWidth: string | number;
attrHeight: string | number;
autoCreate: boolean;
properties: string[];
host: any;
elementRef: ElementRef;
widgetObject: jqwidgets.jqxSplitter;
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;
disabled(arg?: boolean): boolean;
height(arg?: string | number): string | number;
orientation(arg?: string): string;
panels(arg?: Array<jqwidgets.SplitterPanel>): Array<jqwidgets.SplitterPanel>;
resizable(arg?: boolean): boolean;
splitBarSize(arg?: number): number;
showSplitBar(arg?: boolean): boolean;
theme(arg?: string): string;
width(arg?: string | number): string | number;
collapse(): void;
destroy(): void;
disable(): void;
enable(): void;
expand(): void;
render(): void;
refresh(): void;
onCollapsed: EventEmitter<any>;
onExpanded: EventEmitter<any>;
onResize: EventEmitter<any>;
onResizeStart: EventEmitter<any>;
__wireEvents__(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<jqxSplitterComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<jqxSplitterComponent, "jqxSplitter", never, { "attrDisabled": "disabled"; "attrOrientation": "orientation"; "attrPanels": "panels"; "attrResizable": "resizable"; "attrSplitBarSize": "splitBarSize"; "attrShowSplitBar": "showSplitBar"; "attrTheme": "theme"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, { "onCollapsed": "onCollapsed"; "onExpanded": "onExpanded"; "onResize": "onResize"; "onResizeStart": "onResizeStart"; }, never, ["*"]>;
}