@leanix/components 0.4.158 → 0.4.160
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/esm2022/lib/forms-ui/components/currency/currency-input.component.mjs +6 -4
- package/esm2022/lib/forms-ui/components/multi-select/multi-select.component.mjs +6 -4
- package/esm2022/lib/forms-ui/components/responsive-input/responsive-input.component.mjs +8 -6
- package/fesm2022/leanix-components.mjs +16 -10
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/currency/currency-input.component.d.ts +2 -1
- package/lib/forms-ui/components/multi-select/multi-select.component.d.ts +2 -1
- package/lib/forms-ui/components/responsive-input/responsive-input.component.d.ts +2 -1
- package/package.json +1 -1
@@ -11,6 +11,7 @@ export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy,
|
|
11
11
|
decimalSeparator: DecimalSeparator;
|
12
12
|
placeholder: string;
|
13
13
|
data: number;
|
14
|
+
inputId?: string;
|
14
15
|
data$: Observable<number>;
|
15
16
|
disabled: boolean;
|
16
17
|
mode: CurrencyInputMode;
|
@@ -41,5 +42,5 @@ export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy,
|
|
41
42
|
private parseInput;
|
42
43
|
private containsSeparators;
|
43
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyInputComponent, never>;
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyInputComponent, "lx-currency-input", never, { "code": { "alias": "code"; "required": false; }; "decimalSeparator": { "alias": "decimalSeparator"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "data": { "alias": "data"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "fieldDefinitionType": { "alias": "fieldDefinitionType"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "format": { "alias": "format"; "required": false; }; "markInvalid": { "alias": "markInvalid"; "required": false; }; }, { "onFocusLost": "onFocusLost"; "onChange": "onChange"; }, never, never, true, never>;
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyInputComponent, "lx-currency-input", never, { "code": { "alias": "code"; "required": false; }; "decimalSeparator": { "alias": "decimalSeparator"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "data": { "alias": "data"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "fieldDefinitionType": { "alias": "fieldDefinitionType"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "format": { "alias": "format"; "required": false; }; "markInvalid": { "alias": "markInvalid"; "required": false; }; }, { "onFocusLost": "onFocusLost"; "onChange": "onChange"; }, never, never, true, never>;
|
45
46
|
}
|
@@ -23,6 +23,7 @@ export declare class MultiSelectComponent extends BaseSelectDirective implements
|
|
23
23
|
selection?: any[] | null;
|
24
24
|
size: MultiSelectSize;
|
25
25
|
dropdownWidthScale: '1x' | '1.5x' | '2x';
|
26
|
+
inputId?: string;
|
26
27
|
selectionChange: EventEmitter<any[]>;
|
27
28
|
blur: EventEmitter<void>;
|
28
29
|
explicitDropdown?: TemplateRef<any>;
|
@@ -51,5 +52,5 @@ export declare class MultiSelectComponent extends BaseSelectDirective implements
|
|
51
52
|
setDisabledState(isDisabled: boolean): void;
|
52
53
|
focusedViaTab(): void;
|
53
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "lx-multi-select", never, { "markInvalid": { "alias": "markInvalid"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "dropdownWidthScale": { "alias": "dropdownWidthScale"; "required": false; }; }, { "selectionChange": "selectionChange"; "blur": "blur"; }, ["explicitDropdown"], [".pills", ".dropdownComponent"], true, never>;
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "lx-multi-select", never, { "markInvalid": { "alias": "markInvalid"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "dropdownWidthScale": { "alias": "dropdownWidthScale"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; }, { "selectionChange": "selectionChange"; "blur": "blur"; }, ["explicitDropdown"], [".pills", ".dropdownComponent"], true, never>;
|
55
56
|
}
|
@@ -3,6 +3,7 @@ import { ControlValueAccessor, UntypedFormControl } from '@angular/forms';
|
|
3
3
|
import { Subject } from 'rxjs';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class ResponsiveInputComponent implements AfterViewInit, OnDestroy, ControlValueAccessor {
|
6
|
+
inputId?: string;
|
6
7
|
focus: EventEmitter<void>;
|
7
8
|
focusViaTab: EventEmitter<void>;
|
8
9
|
blur: EventEmitter<void>;
|
@@ -26,5 +27,5 @@ export declare class ResponsiveInputComponent implements AfterViewInit, OnDestro
|
|
26
27
|
registerOnChange(fn: any): void;
|
27
28
|
registerOnTouched(_fn: any): void;
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveInputComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveInputComponent, "lx-responsive-input", never, {}, { "focus": "focus"; "focusViaTab": "focusViaTab"; "blur": "blur"; }, never, never, true, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveInputComponent, "lx-responsive-input", never, { "inputId": { "alias": "inputId"; "required": false; }; }, { "focus": "focus"; "focusViaTab": "focusViaTab"; "blur": "blur"; }, never, never, true, never>;
|
30
31
|
}
|