UNPKG

novo-elements

Version:

Bullhorn's NOVO Element Repository for Angular 2

107 lines (106 loc) 2.62 kB
import { EventEmitter } from '@angular/core'; export interface NovoControlConfig { validators?: Array<any>; asyncValidators?: Array<any>; value?: any; key?: string; label?: string; required?: boolean; hidden?: boolean; sortOrder?: number; controlType?: string; placeholder?: string; config?: any; dirty?: boolean; multiple?: boolean; headerConfig?: any; currencyFormat?: string; associatedEntity?: string; optionsType?: string; forceClear?: EventEmitter<any>; disabled?: boolean; maxlength?: number; minlength?: number; options?: Array<any>; type?: string; subType?: string; name?: string; readOnly?: boolean; closeOnSelect?: boolean; interactions?: Array<Object>; dataSpecialization?: string; appendToBody?: boolean; parentScrollSelector?: string; description?: string; tooltip?: string; tooltipPosition?: string; layoutOptions?: { order?: string; download?: boolean; labelStyle?: string; draggable?: boolean; iconStyle?: string; }; customControl?: any; customControlConfig?: any; military?: boolean; tipWell?: { tip: string; icon?: string; button?: boolean; }; } export declare class BaseControl { __type: string; __config: NovoControlConfig; validators: Array<any>; asyncValidators?: Array<any>; value: any; key: string; label: string; required: boolean; hidden: boolean; sortOrder: number; controlType: string; placeholder: string; config: any; dirty: boolean; multiple: boolean; headerConfig: any; currencyFormat: string; associatedEntity: string; optionsType: string; forceClear: EventEmitter<any>; maxlength: number; minlength: number; options: Array<any>; type: string; subType?: string; name: string; disabled: boolean; readOnly: boolean; closeOnSelect: boolean; interactions: Array<Object>; dataSpecialization: string; appendToBody: boolean; parentScrollSelector: string; description?: string; tooltip?: string; tooltipPosition?: string; layoutOptions?: { order?: string; download?: boolean; labelStyle?: string; draggable?: boolean; iconStyle?: string; }; customControl?: any; customControlConfig?: any; military?: boolean; tipWell?: { tip: string; icon?: string; button?: boolean; }; constructor(type?: string, config?: NovoControlConfig); }