@leanix/components 0.4.300 → 0.4.302
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/core-ui/tooltip/tooltip.component.mjs +3 -3
- package/esm2022/lib/core-ui/tooltip/tooltip.directive.mjs +8 -4
- package/esm2022/lib/forms-ui/components/drag-and-drop-list/keyboard-sortable-item/keyboard-sortable-item.directive.mjs +7 -5
- package/fesm2022/leanix-components.mjs +15 -11
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/core-ui/tooltip/tooltip.directive.d.ts +3 -1
- package/lib/forms-ui/components/drag-and-drop-list/keyboard-sortable-item/keyboard-sortable-item.directive.d.ts +3 -1
- package/package.json +1 -1
@@ -1,3 +1,4 @@
|
|
1
|
+
import { AriaDescriber } from '@angular/cdk/a11y';
|
1
2
|
import { Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
|
2
3
|
import { ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
3
4
|
import * as i0 from "@angular/core";
|
@@ -5,6 +6,7 @@ export declare class TooltipDirective implements OnChanges, OnDestroy {
|
|
5
6
|
private overlayPositionBuilder;
|
6
7
|
private elementRef;
|
7
8
|
private overlay;
|
9
|
+
private ariaDescriber;
|
8
10
|
content?: string | null;
|
9
11
|
set lxTooltipPosition(value: {
|
10
12
|
x: string;
|
@@ -17,7 +19,7 @@ export declare class TooltipDirective implements OnChanges, OnDestroy {
|
|
17
19
|
private tooltipRef?;
|
18
20
|
private mouseOrFocusOnHost;
|
19
21
|
get positionStrategy(): import("@angular/cdk/overlay").FlexibleConnectedPositionStrategy;
|
20
|
-
constructor(overlayPositionBuilder: OverlayPositionBuilder, elementRef: ElementRef, overlay: Overlay);
|
22
|
+
constructor(overlayPositionBuilder: OverlayPositionBuilder, elementRef: ElementRef, overlay: Overlay, ariaDescriber: AriaDescriber);
|
21
23
|
ngOnChanges(changes: SimpleChanges): void;
|
22
24
|
show(): void;
|
23
25
|
ngOnDestroy(): void;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { AriaDescriber } from '@angular/cdk/a11y';
|
1
2
|
import { CdkDrag } from '@angular/cdk/drag-drop';
|
2
3
|
import { Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
|
3
4
|
import { ElementRef, EventEmitter, OnChanges } from '@angular/core';
|
@@ -9,6 +10,7 @@ export declare class KeyboardSortableItemDirective implements OnChanges {
|
|
9
10
|
private overlayPositionBuilder;
|
10
11
|
private element;
|
11
12
|
private overlay;
|
13
|
+
private ariaDescriber;
|
12
14
|
allItemsData: string[] | null;
|
13
15
|
itemData: string;
|
14
16
|
isSortingByKeyboard: boolean;
|
@@ -25,7 +27,7 @@ export declare class KeyboardSortableItemDirective implements OnChanges {
|
|
25
27
|
get isSortable(): boolean;
|
26
28
|
private preventBlur;
|
27
29
|
private focusWithKeyboardReplaySubject$;
|
28
|
-
constructor(draggableItem: CdkDrag, overlayPositionBuilder: OverlayPositionBuilder, element: ElementRef<HTMLElement>, overlay: Overlay);
|
30
|
+
constructor(draggableItem: CdkDrag, overlayPositionBuilder: OverlayPositionBuilder, element: ElementRef<HTMLElement>, overlay: Overlay, ariaDescriber: AriaDescriber);
|
29
31
|
ngOnChanges(): void;
|
30
32
|
focusViaKeyboard(): void;
|
31
33
|
enterSortingModeEnabledByKeyboard($event: KeyboardEvent): void;
|