UNPKG

@grapecity/inputman.angular

Version:

このパッケージには、Angular用の[InputManJS](https://developer.mescius.jp/inputmanjs)コンポーネントが含まれます。

44 lines (43 loc) 2.67 kB
import { ElementRef, EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { GC } from '../inputman'; import { GcInputManBaseComponent } from './GcInputManBase'; import * as i0 from "@angular/core"; export declare class GcTextBoxComponent extends GcInputManBaseComponent<GC.InputMan.GcTextBox> implements ControlValueAccessor { constructor(ref: ElementRef); private onChange; private onTouched; writeValue(value: any): void; registerOnChange(onChange: any): void; registerOnTouched(onTouched: any): void; setDisabledState(isDisabled: boolean): void; acceptsCrlf: GC.InputMan.CrLfMode; acceptsTabChar: GC.InputMan.TabCharMode; autoConvert: boolean; ellipsisString: string | null; ellipsis: GC.InputMan.EllipsisMode; format: string | null; lengthAsByte: boolean; maxLength: number; passwordChar: string | null; text: string | null; useSystemPasswordChar: boolean; imeReadingStringAppend: boolean; imeReadingStringKanaMode: GC.InputMan.KanaMode; imeReadingStringEnableAlphabetReadingMapping: boolean; exitOnLastChar: boolean; highlightText: boolean; imeReadingString: string; passwordRevelationMode: GC.InputMan.PasswordRevelationMode; useStandardPasswordInput: boolean; trimMode: GC.InputMan.TrimMode; onIMEReadingStringOutput: EventEmitter<{ sender: GC.InputMan.GcTextBox; eArgs: any; }>; imeReadingStringChange: EventEmitter<string>; protected initGcComponent(): void; protected bindEvent(): void; static ɵfac: i0.ɵɵFactoryDeclaration<GcTextBoxComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<GcTextBoxComponent, "gc-text-box", never, { "acceptsCrlf": "acceptsCrlf"; "acceptsTabChar": "acceptsTabChar"; "autoConvert": "autoConvert"; "ellipsisString": "ellipsisString"; "ellipsis": "ellipsis"; "format": "format"; "lengthAsByte": "lengthAsByte"; "maxLength": "maxLength"; "passwordChar": "passwordChar"; "text": "text"; "useSystemPasswordChar": "useSystemPasswordChar"; "imeReadingStringAppend": "imeReadingStringAppend"; "imeReadingStringKanaMode": "imeReadingStringKanaMode"; "imeReadingStringEnableAlphabetReadingMapping": "imeReadingStringEnableAlphabetReadingMapping"; "exitOnLastChar": "exitOnLastChar"; "highlightText": "highlightText"; "imeReadingString": "imeReadingString"; "passwordRevelationMode": "passwordRevelationMode"; "useStandardPasswordInput": "useStandardPasswordInput"; "trimMode": "trimMode"; }, { "onIMEReadingStringOutput": "onIMEReadingStringOutput"; "imeReadingStringChange": "imeReadingStringChange"; }, never, never, false, never>; }