@leanix/components 0.2.90 → 0.2.94
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/bundles/leanix-components.umd.js +9 -40
- package/bundles/leanix-components.umd.js.map +1 -1
- package/esm2015/lib/forms-ui/components/multi-select/multi-select.component.js +3 -3
- package/esm2015/lib/forms-ui/components/multi-select/multi-select.component.js.map +1 -1
- package/esm2015/lib/forms-ui/components/single-select/single-select.component.js +3 -3
- package/esm2015/lib/forms-ui/components/single-select/single-select.component.js.map +1 -1
- package/esm2015/lib/forms-ui/models/base-select.directive.js +8 -39
- package/esm2015/lib/forms-ui/models/base-select.directive.js.map +1 -1
- package/fesm2015/leanix-components.js +9 -40
- package/fesm2015/leanix-components.js.map +1 -1
- package/lib/forms-ui/models/base-select.directive.d.ts +1 -6
- package/package.json +1 -1
@@ -29,8 +29,6 @@ export declare abstract class BaseSelectDirective implements AfterViewInit, OnCh
|
|
29
29
|
readonly optionsKeyboardSelectAction$: Subject<KeyboardSelectAction>;
|
30
30
|
virtualCursorPosition: number;
|
31
31
|
inputWasFocused: boolean;
|
32
|
-
private clickedInside;
|
33
|
-
private mousedownInside;
|
34
32
|
readonly queryControl: FormControl;
|
35
33
|
isInputFocused: boolean;
|
36
34
|
readonly destroyed$: Subject<void>;
|
@@ -39,14 +37,11 @@ export declare abstract class BaseSelectDirective implements AfterViewInit, OnCh
|
|
39
37
|
ngAfterViewInit(): void;
|
40
38
|
ngOnChanges(changes: SimpleChanges): void;
|
41
39
|
ngOnDestroy(): void;
|
42
|
-
clickInsideComponent(): void;
|
43
|
-
mouseDownInsideComponent(): void;
|
44
|
-
mouseUpInsideComponent(): void;
|
45
|
-
clickOutsideComponent(): void;
|
46
40
|
/**
|
47
41
|
* @param toggle is true when the caret to the right in a select component was clicked
|
48
42
|
*/
|
49
43
|
handleClick(toggle: boolean): void;
|
44
|
+
handleBackdropClick(event: MouseEvent): void;
|
50
45
|
protected setOpenDirection(): void;
|
51
46
|
protected resetSelectState(): void;
|
52
47
|
protected mapToEventSet(event: KeyboardEvent, input: HTMLInputElement, virtualCursorPosition: number, selectionLength?: number): EventSet;
|