UNPKG

@igo2/common

Version:
24 lines (23 loc) 1.19 kB
import { EventEmitter, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export declare const ResizeAnchorType: readonly ["top", "left", "bottom", "right"]; export type ResizeAnchorType = (typeof ResizeAnchorType)[number]; export declare const AlignmentType: readonly ["vertical", "horizontal"]; export type AlignmentType = (typeof AlignmentType)[number]; export declare class ResizableBarComponent implements OnInit { alignement: AlignmentType; iconRotation: string; anchor: ResizeAnchorType; /** En pixel */ min: number; /** En pixel */ max: number; change: EventEmitter<MouseEvent>; get cssClass(): string; ngOnInit(): void; onChange(event: MouseEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration<ResizableBarComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ResizableBarComponent, "igo-resizable-bar", never, { "anchor": { "alias": "anchor"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; }, { "change": "change"; }, never, never, true, never>; static ngAcceptInputType_min: unknown; static ngAcceptInputType_max: unknown; }