@leanix/components 0.3.112 → 0.3.114
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/esm2020/lib/forms-ui/components/currency/currency-input.component.mjs +8 -4
- package/esm2020/lib/forms-ui/models/base-select.directive.mjs +2 -2
- package/fesm2015/leanix-components.mjs +38 -35
- package/fesm2015/leanix-components.mjs.map +1 -1
- package/fesm2020/leanix-components.mjs +38 -35
- package/fesm2020/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/currency/currency-input.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { Observable, ReplaySubject, Subject } from 'rxjs';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare type CurrencyInputMode = 'view' | 'edit';
|
|
6
6
|
export declare type CurrencyIconPosition = 'first' | 'end' | 'none';
|
|
7
|
-
declare type DecimalSeparator = ',' | '.';
|
|
7
|
+
export declare type DecimalSeparator = ',' | '.';
|
|
8
8
|
export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy, ControlValueAccessor, OnInit {
|
|
9
9
|
private changeDetector;
|
|
10
10
|
code: string | null;
|
|
@@ -17,6 +17,7 @@ export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy,
|
|
|
17
17
|
fieldDefinitionType: 'DOUBLE' | 'INTEGER';
|
|
18
18
|
iconPosition: CurrencyIconPosition;
|
|
19
19
|
format: string;
|
|
20
|
+
markInvalid: boolean;
|
|
20
21
|
onFocusLost: EventEmitter<boolean>;
|
|
21
22
|
onChange: EventEmitter<number>;
|
|
22
23
|
private currencyInput;
|
|
@@ -40,6 +41,5 @@ export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy,
|
|
|
40
41
|
private parseInput;
|
|
41
42
|
private containsSeparators;
|
|
42
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyInputComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyInputComponent, "lx-currency-input", never, { "code": "code"; "decimalSeparator": "decimalSeparator"; "placeholder": "placeholder"; "data": "data"; "disabled": "disabled"; "mode": "mode"; "fieldDefinitionType": "fieldDefinitionType"; "iconPosition": "iconPosition"; "format": "format"; }, { "onFocusLost": "onFocusLost"; "onChange": "onChange"; }, never, never, false, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyInputComponent, "lx-currency-input", never, { "code": "code"; "decimalSeparator": "decimalSeparator"; "placeholder": "placeholder"; "data": "data"; "disabled": "disabled"; "mode": "mode"; "fieldDefinitionType": "fieldDefinitionType"; "iconPosition": "iconPosition"; "format": "format"; "markInvalid": "markInvalid"; }, { "onFocusLost": "onFocusLost"; "onChange": "onChange"; }, never, never, false, never>;
|
|
44
45
|
}
|
|
45
|
-
export {};
|