Getting Started
Writing content
API Documentation
Customization
Recipes
API References Develop
@ng-doc/ui-kit / Class

NgDocBaseInput

Decorators:@Directive
Generic types:T
Extends:DIControl<T, T>

No documentation has been provided.

See Also

Properties

NameTypeDescription
change
p
inherited from DIControlValueAccessor
(value: T | null) => void
changeDetectorRef
p r
inherited from DIControlValueAccessor
ChangeDetectorRef
changes
r
Subject<void>
config
p r
inherited from DIControl
DIControlConfig<TModel, TChildModel> | undefined
disabledValue
p r
inherited from DIControlValueAccessor
WritableSignal<boolean>
document
p r
Document
elementRef
r
overrides DIControlValueAccessor
ElementRef<HTMLInputElement>
incomingUpdate
p r
inherited from DIControlValueAccessor
((value: T | null) => void) | undefined
model
p r
inherited from DIControlValueAccessor
Signal<T | null>
ngControl
p r
inherited from DIControlValueAccessor
NgControl | null
renderer
p r
inherited from DIControlValueAccessor
Renderer2
touch
p
inherited from DIControl
() => void

Function that should be used to make control touched.

Accessors

get disabled

inherited from DIControlValueAccessor

Returns true if the control is disabled.

Presentation
get disabled(): boolean;
Type

boolean

set disabled

inherited from DIControlValueAccessor

No documentation has been provided.

Presentation
set disabled(isDisabled: boolean);
Type

boolean

get hasValue

inherited from DIControlValueAccessor

Returns true if the control is not empty.

Presentation
get hasValue(): boolean;
Type

boolean

get hostClasses

No documentation has been provided.

Presentation
get hostClasses(): string;
Type

string

get isFocused

No documentation has been provided.

Presentation
get isFocused(): boolean;
Type

boolean

get isReadonly

No documentation has been provided.

Presentation
get isReadonly(): boolean;
Type

boolean

get placeholder

No documentation has been provided.

Presentation
get placeholder(): string;
Type

string

get value

No documentation has been provided.

Presentation
get value(): string;
Type

string

Methods

No documentation has been provided.

Presentation
blink(): void;
Returns
void

focus()

No documentation has been provided.

Presentation
focus(): void;
Returns
void

ngOnInit()

inherited from DIControl

No documentation has been provided.

Presentation
ngOnInit(): void;
Returns
void
Overload #1

No documentation has been provided.

Presentation
ngOnInit(): void;
Returns
void

registerOnTouched()

inherited from DIControl

Method is called by the forms API.

Presentation
registerOnTouched(fn: () => void): void;
Parameters
NameTypeDescription
fn
inherited from registerOnTouched
() => void

callback function to register on touch

Returns
void
Overload #1

No documentation has been provided.

Presentation
registerOnTouched(fn: () => void): void;
Parameters
NameTypeDescription
fn
() => void
Returns
void

updateModel()

overrides DIControl

Updates the model of the current control. This is the main method that should be used to update the model.

Presentation
updateModel(value: T | null): void;
Parameters
NameTypeDescription
value
inherited from updateModel
T | null

new value.

Returns
void

writeValue()

inherited from DIControl

Method is called by the forms API to write to the view when programmatic changes from model to view are requested.

Presentation
writeValue(value: TModel | null): void;
Parameters
NameTypeDescription
value
inherited from writeValue
TModel | null
Returns
void
Overload #1

No documentation has been provided.

Presentation
writeValue(value: TModel | null): void;
Parameters
NameTypeDescription
value
TModel | null
Returns
void