@wolkabout/commons 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -370,8 +370,9 @@ declare class LocalizedNumericInputDirective implements ControlValueAccessor {
|
|
|
370
370
|
onTouched: (ev: any) => void;
|
|
371
371
|
constructor(element: ElementRef<HTMLInputElement>, tenantPropertiesService: TenantPropertiesService);
|
|
372
372
|
input(value: any): void;
|
|
373
|
+
onBlur(): void;
|
|
373
374
|
onFocus(): void;
|
|
374
|
-
writeValue(value: string): void;
|
|
375
|
+
writeValue(value: string | number | null): void;
|
|
375
376
|
registerOnChange(fn: (value: any) => void): void;
|
|
376
377
|
registerOnTouched(fn: () => void): void;
|
|
377
378
|
private printValue;
|