@leanix/components 0.2.252 → 0.2.255
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/basic-dropdown/basic-dropdown.component.mjs +6 -3
- package/esm2020/lib/forms-ui/components/multi-select/multi-select.component.mjs +7 -3
- package/esm2020/lib/forms-ui/components/responsive-input/responsive-input.component.mjs +7 -4
- package/esm2020/lib/forms-ui/components/single-select/single-select.component.mjs +7 -3
- package/fesm2015/leanix-components.mjs +23 -9
- package/fesm2015/leanix-components.mjs.map +1 -1
- package/fesm2020/leanix-components.mjs +23 -9
- package/fesm2020/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/basic-dropdown/basic-dropdown.component.d.ts +2 -1
- package/lib/forms-ui/components/multi-select/multi-select.component.d.ts +2 -0
- package/lib/forms-ui/components/responsive-input/responsive-input.component.d.ts +2 -1
- package/lib/forms-ui/components/single-select/single-select.component.d.ts +2 -0
- package/package.json +1 -1
@@ -23,6 +23,7 @@ export declare class BasicDropdownComponent extends KeyboardSelectDirective impl
|
|
23
23
|
createNewOptionSelected: EventEmitter<void>;
|
24
24
|
optionTemplateRef: TemplateRef<any>;
|
25
25
|
createNewOptionTemplateRef: TemplateRef<any>;
|
26
|
+
descriptionTemplateRef: TemplateRef<any>;
|
26
27
|
selectOption(option: any): void;
|
27
28
|
get isNewItem(): boolean;
|
28
29
|
trackByProp(prop?: string): (index: number, pill: any) => any;
|
@@ -30,5 +31,5 @@ export declare class BasicDropdownComponent extends KeyboardSelectDirective impl
|
|
30
31
|
onNewItemSelected(): void;
|
31
32
|
onCreateNewOptionSelected(): void;
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<BasicDropdownComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicDropdownComponent, "lx-basic-dropdown", never, { "options": "options"; "initiallySelectedIndex": "initiallySelectedIndex"; "labelKey": "labelKey"; "itemKey": "itemKey"; "placeholder": "placeholder"; "loading": "loading"; "newOptionLabel": "newOptionLabel"; "padding": "padding"; "showCreateNewOption": "showCreateNewOption"; "disabledOptions": "disabledOptions"; }, { "onItemSelected": "onItemSelected"; "triggerRequestForMoreEntries": "triggerRequestForMoreEntries"; "newOptionLabelSelected": "newOptionLabelSelected"; "createNewOptionSelected": "createNewOptionSelected"; }, ["optionTemplateRef", "createNewOptionTemplateRef"], never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BasicDropdownComponent, "lx-basic-dropdown", never, { "options": "options"; "initiallySelectedIndex": "initiallySelectedIndex"; "labelKey": "labelKey"; "itemKey": "itemKey"; "placeholder": "placeholder"; "loading": "loading"; "newOptionLabel": "newOptionLabel"; "padding": "padding"; "showCreateNewOption": "showCreateNewOption"; "disabledOptions": "disabledOptions"; }, { "onItemSelected": "onItemSelected"; "triggerRequestForMoreEntries": "triggerRequestForMoreEntries"; "newOptionLabelSelected": "newOptionLabelSelected"; "createNewOptionSelected": "createNewOptionSelected"; }, ["optionTemplateRef", "createNewOptionTemplateRef", "descriptionTemplateRef"], never>;
|
34
35
|
}
|
@@ -30,6 +30,7 @@ export declare class MultiSelectComponent extends BaseSelectDirective implements
|
|
30
30
|
implicitDropdown: TemplateRef<any>;
|
31
31
|
get dropdownTmpl(): TemplateRef<any>;
|
32
32
|
readonly destroyed$: Subject<void>;
|
33
|
+
isInputFocusedViaTab: boolean;
|
33
34
|
constructor(cd: ChangeDetectorRef);
|
34
35
|
get dropdownWidth(): string | undefined;
|
35
36
|
resetInput(): void;
|
@@ -43,6 +44,7 @@ export declare class MultiSelectComponent extends BaseSelectDirective implements
|
|
43
44
|
registerOnChange(fn: any): void;
|
44
45
|
registerOnTouched(_fn: any): void;
|
45
46
|
setDisabledState(isDisabled: boolean): void;
|
47
|
+
focusedViaTab(): void;
|
46
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
47
49
|
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "lx-multi-select", never, { "markInvalid": "markInvalid"; "selection": "selection"; "size": "size"; "dropdownWidthScale": "dropdownWidthScale"; }, { "selectionChange": "selectionChange"; "blur": "blur"; }, ["explicitDropdown"], [".pills", ".dropdownComponent"]>;
|
48
50
|
}
|
@@ -4,6 +4,7 @@ import { Subject } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class ResponsiveInputComponent implements AfterViewInit, OnDestroy, ControlValueAccessor {
|
6
6
|
focus: EventEmitter<void>;
|
7
|
+
focusViaTab: EventEmitter<void>;
|
7
8
|
blur: EventEmitter<void>;
|
8
9
|
responsiveInput: ElementRef<HTMLInputElement>;
|
9
10
|
inputWidth: ElementRef<HTMLSpanElement>;
|
@@ -25,5 +26,5 @@ export declare class ResponsiveInputComponent implements AfterViewInit, OnDestro
|
|
25
26
|
registerOnChange(fn: any): void;
|
26
27
|
registerOnTouched(_fn: any): void;
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveInputComponent, never>;
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveInputComponent, "lx-responsive-input", never, {}, { "focus": "focus"; "blur": "blur"; }, never, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveInputComponent, "lx-responsive-input", never, {}, { "focus": "focus"; "focusViaTab": "focusViaTab"; "blur": "blur"; }, never, never>;
|
29
30
|
}
|
@@ -29,6 +29,7 @@ export declare class SingleSelectComponent extends BaseSelectDirective implement
|
|
29
29
|
markInvalid: boolean;
|
30
30
|
queryInput: ElementRef<HTMLInputElement>;
|
31
31
|
readonly destroyed$: Subject<void>;
|
32
|
+
isInputFocusedViaTab: boolean;
|
32
33
|
constructor(cd: ChangeDetectorRef);
|
33
34
|
get cursorStyle(): "default" | "text" | "pointer";
|
34
35
|
get dropdownWidth(): string | undefined;
|
@@ -44,6 +45,7 @@ export declare class SingleSelectComponent extends BaseSelectDirective implement
|
|
44
45
|
setDisabledState(isDisabled: boolean): void;
|
45
46
|
registerOnChange(fn: any): void;
|
46
47
|
registerOnTouched(_fn: any): void;
|
48
|
+
focusedViaTab(): void;
|
47
49
|
private determineHighlightIndex;
|
48
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<SingleSelectComponent, never>;
|
49
51
|
static ɵcmp: i0.ɵɵComponentDeclaration<SingleSelectComponent, "lx-single-select", never, { "selection": "selection"; "selectionBackground": "selectionBackground"; "size": "size"; "dropdownWidthScale": "dropdownWidthScale"; "padding": "padding"; "allowClear": "allowClear"; "tabIndex": "tabIndex"; "markInvalid": "markInvalid"; }, { "selectionChange": "selectionChange"; "blur": "blur"; }, ["explicitDropdown", "explicitSelectedOption", "dropdownComponent"], [".selectedOption", ".dropdownComponent"]>;
|