@wolkabout/commons 0.1.7 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wolkabout/commons",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "21.2.0",
6
6
  "@angular/common": "21.2.0",
@@ -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;