@leanix/components 0.4.820 → 0.4.821
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.
|
@@ -36,14 +36,14 @@ export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy,
|
|
|
36
36
|
/** Placeholder text shown when the input is empty. */
|
|
37
37
|
placeholder: string;
|
|
38
38
|
/**
|
|
39
|
-
* The numeric value of the input.
|
|
39
|
+
* The numeric value of the input. Pass `null` to display the N/A placeholder.
|
|
40
40
|
* @default 0
|
|
41
41
|
*/
|
|
42
|
-
data: number;
|
|
42
|
+
data: number | null;
|
|
43
43
|
/** Optional ID attribute for the input element. */
|
|
44
44
|
inputId?: string;
|
|
45
45
|
/** @internal */
|
|
46
|
-
data$: Observable<number>;
|
|
46
|
+
data$: Observable<number | null>;
|
|
47
47
|
/**
|
|
48
48
|
* Whether the input is disabled.
|
|
49
49
|
* @default false
|
|
@@ -80,7 +80,7 @@ export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy,
|
|
|
80
80
|
/** @internal */
|
|
81
81
|
showCurrencyInput: boolean;
|
|
82
82
|
/** @internal */
|
|
83
|
-
dataValue$: ReplaySubject<number>;
|
|
83
|
+
dataValue$: ReplaySubject<number | null>;
|
|
84
84
|
private get allowedCharacters();
|
|
85
85
|
/** @internal */
|
|
86
86
|
readonly destroyed$: Subject<void>;
|