@leanix/components 0.4.602 → 0.4.604
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.
@@ -21,6 +21,7 @@ export declare class OptionComponent {
|
|
21
21
|
highlight: EventEmitter<boolean>;
|
22
22
|
selectedClick: EventEmitter<any>;
|
23
23
|
keyDownAction: EventEmitter<KeyboardEvent>;
|
24
|
+
mouseEnter: EventEmitter<number>;
|
24
25
|
option?: ElementRef<HTMLElement>;
|
25
26
|
hasSubdropdown: boolean;
|
26
27
|
isSuboption: boolean;
|
@@ -30,6 +31,7 @@ export declare class OptionComponent {
|
|
30
31
|
setSelected(value: boolean): void;
|
31
32
|
setHighlighted(value: boolean): void;
|
32
33
|
handleKeyDown(event: KeyboardEvent): void;
|
34
|
+
protected onMouseEnter(): void;
|
33
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, [{ optional: true; }, null]>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "lx-option", never, { "selected": { "alias": "selected"; "required": false; }; "isHighlighted": { "alias": "isHighlighted"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "hasSelectedState": { "alias": "hasSelectedState"; "required": false; }; "selectIcon": { "alias": "selectIcon"; "required": false; }; }, { "select": "select"; "highlight": "highlight"; "selectedClick": "selectedClick"; "keyDownAction": "keyDownAction"; }, never, ["*"], true, never>;
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "lx-option", never, { "selected": { "alias": "selected"; "required": false; }; "isHighlighted": { "alias": "isHighlighted"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "hasSelectedState": { "alias": "hasSelectedState"; "required": false; }; "selectIcon": { "alias": "selectIcon"; "required": false; }; }, { "select": "select"; "highlight": "highlight"; "selectedClick": "selectedClick"; "keyDownAction": "keyDownAction"; "mouseEnter": "mouseEnter"; }, never, ["*"], true, never>;
|
35
37
|
}
|
@@ -52,6 +52,8 @@ export declare class OptionsDropdownComponent implements AfterViewInit, OnDestro
|
|
52
52
|
constructor(changeDetection: ChangeDetectorRef, scrollStrategies: ScrollStrategyOptions, renderer: Renderer2);
|
53
53
|
ngAfterViewInit(): void;
|
54
54
|
ngOnDestroy(): void;
|
55
|
+
/** Called by OptionComponent on mouse enter */
|
56
|
+
private onOptionMouseEnter;
|
55
57
|
/** @internal */
|
56
58
|
closeDropdown(): void;
|
57
59
|
/** @internal */
|