@db-ux/ngx-core-components 2.0.6 → 2.0.7

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.
@@ -10,6 +10,7 @@ export declare class DBInput implements AfterViewInit, ControlValueAccessor {
10
10
  protected readonly DEFAULT_PLACEHOLDER: string;
11
11
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
12
12
  protected readonly getNumber: (originNumber?: number | string, alternativeNumber?: number | string) => number | undefined;
13
+ protected readonly getInputValue: (value?: number | string, inputType?: string) => string | number | undefined;
13
14
  protected readonly stringPropVisible: (givenString?: string, showString?: boolean | string) => boolean;
14
15
  protected readonly DEFAULT_VALID_MESSAGE: string;
15
16
  id: import("@angular/core").InputSignal<string | undefined>;