@dangl/angular-ava 1.1.2-beta0089 → 1.1.2-beta0099
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/fesm2022/dangl-angular-ava.mjs +95 -34
- package/fesm2022/dangl-angular-ava.mjs.map +1 -1
- package/lib/ava-tree/tree/components/ava-tree/ava-tree.component.d.ts +1 -0
- package/lib/ava-tree/tree/components/list-structure/list-structure.component.d.ts +7 -1
- package/lib/ava-tree/tree/components/tree-node/tree-node.component.d.ts +5 -1
- package/lib/ava-tree/tree/services/tree-hover-tooltip.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -164,6 +164,7 @@ export declare class AvaTreeComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
164
164
|
private $filter;
|
|
165
165
|
filteredElementList: IElementDto[];
|
|
166
166
|
private $destroy;
|
|
167
|
+
private cdr;
|
|
167
168
|
constructor(flatElementsService: FlatElementsService, selectElementService: SelectElementService, treeNodeSelectionService: TreeNodeSelectionService, expandParentGroupService: ExpandParentGroupService, keyboardOperationService: KeyboardOperationService, ngZone: NgZone, treeWordsService: TreeWordsService, dynamicComponentService: DynamicComponentService<TreeHoverTooltipComponent>, appRef: ApplicationRef);
|
|
168
169
|
ngOnInit(): void;
|
|
169
170
|
ngAfterViewInit(): void;
|
|
@@ -2,6 +2,7 @@ import { ElementRef, OnDestroy, OnInit, QueryList } from '@angular/core';
|
|
|
2
2
|
import { IElementDto } from '../../model';
|
|
3
3
|
import { SelectElementService } from '../../services/select-element.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
+
type TimeoutType = ReturnType<typeof setTimeout>;
|
|
5
6
|
export declare class ListStructureComponent implements OnDestroy, OnInit {
|
|
6
7
|
selectElementService: SelectElementService;
|
|
7
8
|
filteredElementList: IElementDto[];
|
|
@@ -13,11 +14,16 @@ export declare class ListStructureComponent implements OnDestroy, OnInit {
|
|
|
13
14
|
selectedElement: IElementDto | null;
|
|
14
15
|
private $destroy;
|
|
15
16
|
private treeHoverTooltipService;
|
|
17
|
+
allowShow: TimeoutType | null;
|
|
18
|
+
currentElement: HTMLElement | null;
|
|
16
19
|
constructor(selectElementService: SelectElementService);
|
|
17
20
|
ngOnInit(): void;
|
|
18
21
|
ngOnDestroy(): void;
|
|
19
|
-
onMouseEnter(
|
|
22
|
+
onMouseEnter(event: MouseEvent): void;
|
|
20
23
|
onMouseLeave(): void;
|
|
24
|
+
onMouseUp(event: MouseEvent): void;
|
|
25
|
+
onMouseMove(event: MouseEvent): void;
|
|
21
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListStructureComponent, never>;
|
|
22
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<ListStructureComponent, "ava-list-structure", never, { "filteredElementList": { "alias": "filteredElementList"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "selectedColor": { "alias": "selectedColor"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
28
|
}
|
|
29
|
+
export {};
|
|
@@ -18,12 +18,16 @@ export declare class TreeNodeComponent implements OnDestroy, OnInit {
|
|
|
18
18
|
private treeHoverTooltipService;
|
|
19
19
|
selectedElement: IElementDto | null;
|
|
20
20
|
private $destroy;
|
|
21
|
+
private allowShow;
|
|
22
|
+
private currentElement;
|
|
21
23
|
constructor(selectElementService: SelectElementService);
|
|
22
24
|
ngOnInit(): void;
|
|
23
25
|
ngOnDestroy(): void;
|
|
24
26
|
expand(element: IElementDto): void;
|
|
25
|
-
onMouseEnter(
|
|
27
|
+
onMouseEnter(event: MouseEvent): void;
|
|
26
28
|
onMouseLeave(): void;
|
|
29
|
+
onMouseUp(event: MouseEvent): void;
|
|
30
|
+
onMouseMove(event: MouseEvent): void;
|
|
27
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<TreeNodeComponent, never>;
|
|
28
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<TreeNodeComponent, "ava-tree-node", never, { "elementList": { "alias": "elementList"; "required": false; }; "indent": { "alias": "indent"; "required": false; }; "expansionState": { "alias": "expansionState"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "selectedColor": { "alias": "selectedColor"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; }, {}, never, never, true, never>;
|
|
29
33
|
}
|
|
@@ -8,6 +8,8 @@ export declare class TreeHoverTooltipService {
|
|
|
8
8
|
showTooltip(template: ElementRef<HTMLElement> | null): void;
|
|
9
9
|
hideHoverTooltip(): void;
|
|
10
10
|
private setTooltipVisable;
|
|
11
|
+
showElementOver(element: HTMLElement | null): void;
|
|
12
|
+
hideElementOver(element: HTMLElement | null): void;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<TreeHoverTooltipService, never>;
|
|
12
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<TreeHoverTooltipService>;
|
|
13
15
|
}
|