@dangl/angular-ava 1.4.4 → 1.4.5-beta0015
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 +857 -100
- package/fesm2022/dangl-angular-ava.mjs.map +1 -1
- package/index.d.ts +2915 -5
- package/package.json +1 -1
- package/lib/ava-tree/components/ava-tree/ava-tree.component.d.ts +0 -128
- package/lib/ava-tree/components/list-structure/list-structure.component.d.ts +0 -20
- package/lib/ava-tree/components/table-structure/table-structure.component.d.ts +0 -37
- package/lib/ava-tree/components/tree-item/tree-item.component.d.ts +0 -40
- package/lib/ava-tree/components/tree-node/tree-node.component.d.ts +0 -25
- package/lib/ava-tree/constants/defaultFilters.d.ts +0 -2
- package/lib/ava-tree/constants/defaultTextWords.d.ts +0 -18
- package/lib/ava-tree/constants/defaults.d.ts +0 -3
- package/lib/ava-tree/constants/index.d.ts +0 -4
- package/lib/ava-tree/directives/hover-effect.directive.d.ts +0 -18
- package/lib/ava-tree/directives/save-changing-view.directive.d.ts +0 -20
- package/lib/ava-tree/model/ava-models.d.ts +0 -1034
- package/lib/ava-tree/model/config-tree.model.d.ts +0 -75
- package/lib/ava-tree/model/context-menu-data.model.d.ts +0 -8
- package/lib/ava-tree/model/function-view-line.model.d.ts +0 -12
- package/lib/ava-tree/model/index.d.ts +0 -8
- package/lib/ava-tree/model/selecting.model.d.ts +0 -14
- package/lib/ava-tree/model/tableColumnType.d.ts +0 -6
- package/lib/ava-tree/model/tree-mode.model.d.ts +0 -5
- package/lib/ava-tree/pipes/element-icon-name.pipe.d.ts +0 -8
- package/lib/ava-tree/pipes/element-item-number.pipe.d.ts +0 -8
- package/lib/ava-tree/pipes/element-text.pipe.d.ts +0 -9
- package/lib/ava-tree/pipes/group-child-elements.pipe.d.ts +0 -8
- package/lib/ava-tree/services/configuration-tree.service.d.ts +0 -40
- package/lib/ava-tree/services/expand-parent-group.service.d.ts +0 -11
- package/lib/ava-tree/services/flat-elements.service.d.ts +0 -27
- package/lib/ava-tree/services/keyboard-operation.service.d.ts +0 -35
- package/lib/ava-tree/services/select-element.service.d.ts +0 -28
- package/lib/ava-tree/services/tree-hover-tooltip.service.d.ts +0 -4
- package/lib/ava-tree/services/tree-node-selection.service.d.ts +0 -26
- package/lib/invoice/components/invoice-display/invoice-display.component.d.ts +0 -73
- package/lib/invoice/components/invoice-documents/invoice-documents.component.d.ts +0 -26
- package/lib/invoice/components/invoice-line-item-additional-info/invoice-line-item-additional-info.component.d.ts +0 -11
- package/lib/invoice/components/invoice-line-items-table/invoice-line-items-table.component.d.ts +0 -25
- package/lib/invoice/components/reference-and-delivery-information/reference-and-delivery-information.component.d.ts +0 -14
- package/lib/invoice/constants/defaultTextWordInvoice.d.ts +0 -3
- package/lib/invoice/constants/index.d.ts +0 -3
- package/lib/invoice/constants/language.d.ts +0 -8
- package/lib/invoice/model/configInvoice.model.d.ts +0 -13
- package/lib/invoice/model/index.d.ts +0 -4
- package/lib/invoice/model/invoice-models.d.ts +0 -527
- package/lib/invoice/model/invoice-words.model.d.ts +0 -73
- package/lib/invoice/pipes/currency-plus.pipe.d.ts +0 -11
- package/lib/invoice/pipes/invoice-attachment-mime-type.pipe.d.ts +0 -8
- package/lib/invoice/pipes/number-plus.pipe.d.ts +0 -11
- package/lib/invoice/pipes/percent-plus.pipe.d.ts +0 -11
- package/lib/invoice/services/configuration-invoice.service.d.ts +0 -26
- package/lib/version.d.ts +0 -8
- package/public-api.d.ts +0 -7
package/package.json
CHANGED
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, NgZone, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ITextWords } from '../../constants/defaultTextWords';
|
|
4
|
-
import { ContextMenuDataType, IConfigurationTree, IElementDto, ModeViewType, ProjectDto, SelectedElement } from '../../model';
|
|
5
|
-
import { ConfigurationTreeService } from '../../services/configuration-tree.service';
|
|
6
|
-
import { ExpandParentGroupService, IExpansionState } from '../../services/expand-parent-group.service';
|
|
7
|
-
import { FlatElementsService } from '../../services/flat-elements.service';
|
|
8
|
-
import { KeyboardOperationService } from '../../services/keyboard-operation.service';
|
|
9
|
-
import { SelectElementService } from '../../services/select-element.service';
|
|
10
|
-
import { TreeNodeSelectionService } from '../../services/tree-node-selection.service';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class AvaTreeComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
13
|
-
private flatElementsService;
|
|
14
|
-
private selectElementService;
|
|
15
|
-
private treeNodeSelectionService;
|
|
16
|
-
private expandParentGroupService;
|
|
17
|
-
private keyboardOperationService;
|
|
18
|
-
private ngZone;
|
|
19
|
-
private configurationTreeService;
|
|
20
|
-
private readonly injector;
|
|
21
|
-
private transformFn;
|
|
22
|
-
/**
|
|
23
|
-
* This is the main data element for the tree structure. You should supply a ProjectDto with
|
|
24
|
-
* exactly one service specification in it.
|
|
25
|
-
*/
|
|
26
|
-
project: import("@angular/core").InputSignalWithTransform<ProjectDto | null, ProjectDto>;
|
|
27
|
-
/**
|
|
28
|
-
* Optionally, you can supply a map of expansion states for the tree. The keys should be the
|
|
29
|
-
* id properties of the elements in the tree, and the values should be true if the element is
|
|
30
|
-
* expanded, and false if it is collapsed.
|
|
31
|
-
*/
|
|
32
|
-
readonly expansionstate: import("@angular/core").InputSignalWithTransform<IExpansionState | null, IExpansionState>;
|
|
33
|
-
/**
|
|
34
|
-
* Optionally, you can supply the id of the node that should be selected in the tree initially.
|
|
35
|
-
*/
|
|
36
|
-
readonly selectednodeid: import("@angular/core").InputSignal<string | null>;
|
|
37
|
-
/**
|
|
38
|
-
* You can specify which view type to use for the tree. The default is ModeViewType.Tree, but you can also use
|
|
39
|
-
* ModeViewType.List or ModeViewType.Table.
|
|
40
|
-
*/
|
|
41
|
-
readonly modeview: import("@angular/core").InputSignal<ModeViewType>;
|
|
42
|
-
/**
|
|
43
|
-
* You can optionally supply a list of elements that should be selected initially. This is only used if
|
|
44
|
-
* isSelectionMode is true.
|
|
45
|
-
*/
|
|
46
|
-
private initiallySelectedElements;
|
|
47
|
-
/**
|
|
48
|
-
* You can supply a map of strings to be used for the text in the tree. This allows you to translate
|
|
49
|
-
* the text in the tree to other languages.
|
|
50
|
-
* {
|
|
51
|
-
* textSearch: string,
|
|
52
|
-
* textNothing: string,
|
|
53
|
-
* textNothingFiltered: string,
|
|
54
|
-
* textAll: string,
|
|
55
|
-
* tooltipAllOpen: string,
|
|
56
|
-
* tooltipAllClose: string,
|
|
57
|
-
* tooltipAllAdd:string,
|
|
58
|
-
* tooltipAllRemove: string,
|
|
59
|
-
* }
|
|
60
|
-
*/
|
|
61
|
-
readonly textWords$: Observable<ITextWords | null>;
|
|
62
|
-
readonly isSelectionMode$: Observable<boolean>;
|
|
63
|
-
private isSelectionMode;
|
|
64
|
-
/**
|
|
65
|
-
* Defaults to true. If this is enabled, then navigating in the tree with the keyboard only works
|
|
66
|
-
* if the mouse is over the tree area. This limitation is useful if you have multiple trees or other components
|
|
67
|
-
* that might be using keyboard input.
|
|
68
|
-
*/
|
|
69
|
-
private mouseAwareKeyboardControl;
|
|
70
|
-
/**
|
|
71
|
-
* With this parameter, you can configure which keys will be listenend to switch the tree elements,
|
|
72
|
-
* and also to disable the functionality of the keys */
|
|
73
|
-
private set customKeyboardOperationConfig(value);
|
|
74
|
-
readonly config: import("@angular/core").InputSignalWithTransform<IConfigurationTree | null, IConfigurationTree>;
|
|
75
|
-
/**
|
|
76
|
-
* This is emitted when an element is selected by clicking on it. The selected element is emitted as the event value.
|
|
77
|
-
*/
|
|
78
|
-
selectClick: import("@angular/core").OutputEmitterRef<IElementDto | null>;
|
|
79
|
-
/**
|
|
80
|
-
* This is emitted when an element is selected by double clicking on it. The selected element is emitted as the event value.
|
|
81
|
-
*/
|
|
82
|
-
selectDblClick: import("@angular/core").OutputEmitterRef<IElementDto>;
|
|
83
|
-
/**
|
|
84
|
-
* This is emitted when an element is selected by right clicking on it. The selected element is emitted as the event value.
|
|
85
|
-
*/
|
|
86
|
-
contextMenuEvent: import("@angular/core").OutputEmitterRef<ContextMenuDataType>;
|
|
87
|
-
/**
|
|
88
|
-
* This is emitted when the selected elements in the tree are changed. The selected elements are emitted as the event value.
|
|
89
|
-
* Selected elements are elements whose checkboxes are checked, and are different than elements that are in an active selection state.
|
|
90
|
-
* Typcial use cases for this include e.g. selecting multiple elements within a service specification without
|
|
91
|
-
* actually focussing them, e.g. for further processing.
|
|
92
|
-
*/
|
|
93
|
-
selectedElementsChanged: import("@angular/core").OutputEmitterRef<SelectedElement[]>;
|
|
94
|
-
avaTreeWrapper: import("@angular/core").Signal<ElementRef<HTMLDivElement>>;
|
|
95
|
-
avaMainWrapper: import("@angular/core").Signal<ElementRef<HTMLDivElement>>;
|
|
96
|
-
avaTreeFilterInput: import("@angular/core").Signal<ElementRef<HTMLInputElement>>;
|
|
97
|
-
private selectedElement;
|
|
98
|
-
serviceSpecification: import("@angular/core").WritableSignal<import("../../model").ServiceSpecificationDto | null>;
|
|
99
|
-
private isEmiteSelectedElements;
|
|
100
|
-
private selectingElementsTreeData;
|
|
101
|
-
flatElements: IElementDto[] | null;
|
|
102
|
-
preselectedElement: IElementDto | null;
|
|
103
|
-
filterInput: string;
|
|
104
|
-
listModeViewType: typeof ModeViewType;
|
|
105
|
-
private filter;
|
|
106
|
-
private $filter;
|
|
107
|
-
filteredElementList: IElementDto[];
|
|
108
|
-
private $destroy;
|
|
109
|
-
private cdr;
|
|
110
|
-
constructor(flatElementsService: FlatElementsService, selectElementService: SelectElementService, treeNodeSelectionService: TreeNodeSelectionService, expandParentGroupService: ExpandParentGroupService, keyboardOperationService: KeyboardOperationService, ngZone: NgZone, configurationTreeService: ConfigurationTreeService);
|
|
111
|
-
ngOnInit(): void;
|
|
112
|
-
ngAfterViewInit(): void;
|
|
113
|
-
ngOnDestroy(): void;
|
|
114
|
-
private handleGlobalKeyboardEvent;
|
|
115
|
-
private showElement;
|
|
116
|
-
private scrollLine;
|
|
117
|
-
private correctScrollTableLine;
|
|
118
|
-
expandParentGroups(element: IElementDto): void;
|
|
119
|
-
onFilter(value: string): void;
|
|
120
|
-
changeAllElementsExpansionStatus(isExpanded: boolean): void;
|
|
121
|
-
private formSelectingList;
|
|
122
|
-
selectOrDeselectAll(value: boolean): void;
|
|
123
|
-
private getFilteredList;
|
|
124
|
-
private initializeEventListeners;
|
|
125
|
-
private selectElementById;
|
|
126
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AvaTreeComponent, [{ self: true; }, { self: true; }, { self: true; }, { self: true; }, { self: true; }, null, null]>;
|
|
127
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvaTreeComponent, "ava-tree", never, { "project": { "alias": "project"; "required": true; "isSignal": true; }; "expansionstate": { "alias": "expansionstate"; "required": false; "isSignal": true; }; "selectednodeid": { "alias": "selectednodeid"; "required": false; "isSignal": true; }; "modeview": { "alias": "modeview"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "selectClick": "selectClick"; "selectDblClick": "selectDblClick"; "contextMenuEvent": "contextMenuEvent"; "selectedElementsChanged": "selectedElementsChanged"; }, never, never, true, never>;
|
|
128
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { IElementDto } from '../../model';
|
|
4
|
-
import { ConfigurationTreeService } from '../../services/configuration-tree.service';
|
|
5
|
-
import { SelectElementService } from '../../services/select-element.service';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class ListStructureComponent implements OnDestroy, OnInit {
|
|
8
|
-
selectElementService: SelectElementService;
|
|
9
|
-
private configurationTreeService;
|
|
10
|
-
filteredElementList: import("@angular/core").InputSignal<IElementDto[]>;
|
|
11
|
-
selectedElement: IElementDto | null;
|
|
12
|
-
private $destroy;
|
|
13
|
-
readonly selectedColor$: Observable<string>;
|
|
14
|
-
isSelectionMode: boolean;
|
|
15
|
-
constructor(selectElementService: SelectElementService, configurationTreeService: ConfigurationTreeService);
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
ngOnDestroy(): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ListStructureComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListStructureComponent, "ava-list-structure", never, { "filteredElementList": { "alias": "filteredElementList"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
20
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ITextWords } from '../../constants/defaultTextWords';
|
|
4
|
-
import { IElementDto, TableColumnType } from '../../model';
|
|
5
|
-
import { SelectingElementsObjectType } from '../../model/selecting.model';
|
|
6
|
-
import { ConfigurationTreeService } from '../../services/configuration-tree.service';
|
|
7
|
-
import { SelectElementService } from '../../services/select-element.service';
|
|
8
|
-
import { TreeNodeSelectionService } from '../../services/tree-node-selection.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class TableStructureComponent implements OnInit, OnDestroy {
|
|
11
|
-
selectElementService: SelectElementService;
|
|
12
|
-
private treeNodeSelectionService;
|
|
13
|
-
private cdr;
|
|
14
|
-
configurationTreeService: ConfigurationTreeService;
|
|
15
|
-
filteredElementList: import("@angular/core").InputSignal<IElementDto[]>;
|
|
16
|
-
displayedColumns: string[];
|
|
17
|
-
private isAllowOneClick;
|
|
18
|
-
selectedElement: IElementDto | null;
|
|
19
|
-
preselectedElement: IElementDto | null;
|
|
20
|
-
private timerStop;
|
|
21
|
-
checkedElements: SelectingElementsObjectType;
|
|
22
|
-
private $destroy;
|
|
23
|
-
readonly textWords$: Observable<ITextWords | null>;
|
|
24
|
-
readonly selectedColor$: Observable<string>;
|
|
25
|
-
readonly addTableColumns$: Observable<TableColumnType[]>;
|
|
26
|
-
isSelectionMode: boolean;
|
|
27
|
-
constructor(selectElementService: SelectElementService, treeNodeSelectionService: TreeNodeSelectionService, cdr: ChangeDetectorRef, configurationTreeService: ConfigurationTreeService);
|
|
28
|
-
ngOnInit(): void;
|
|
29
|
-
ngOnDestroy(): void;
|
|
30
|
-
select(row: IElementDto): void;
|
|
31
|
-
dblSelect(row: IElementDto): void;
|
|
32
|
-
openContextMenu(event: MouseEvent, row: IElementDto): void;
|
|
33
|
-
changeSelecting(element: IElementDto, event: boolean): void;
|
|
34
|
-
configureTableColumns(): void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableStructureComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableStructureComponent, "ava-table-structure", never, { "filteredElementList": { "alias": "filteredElementList"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
37
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ITextWords } from '../../constants/defaultTextWords';
|
|
4
|
-
import { IElementDto } from '../../model';
|
|
5
|
-
import { SelectingElementsType } from '../../model/selecting.model';
|
|
6
|
-
import { ConfigurationTreeService } from '../../services/configuration-tree.service';
|
|
7
|
-
import { SelectElementService } from '../../services/select-element.service';
|
|
8
|
-
import { TreeNodeSelectionService } from '../../services/tree-node-selection.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class TreeItemComponent implements OnInit, OnDestroy {
|
|
11
|
-
selectElementService: SelectElementService;
|
|
12
|
-
private treeNodeSelectionService;
|
|
13
|
-
private cdr;
|
|
14
|
-
private configurationTreeService;
|
|
15
|
-
element: import("@angular/core").InputSignal<IElementDto>;
|
|
16
|
-
isSelect: import("@angular/core").InputSignal<boolean>;
|
|
17
|
-
backgroundColor: import("@angular/core").InputSignal<string | null>;
|
|
18
|
-
textElement: import("@angular/core").Signal<ElementRef<HTMLElement>>;
|
|
19
|
-
selectedElement: IElementDto | null;
|
|
20
|
-
preselectedElement: IElementDto | null;
|
|
21
|
-
private isAllowOneClick;
|
|
22
|
-
private timerStop;
|
|
23
|
-
private $destroy;
|
|
24
|
-
readonly textWords$: Observable<ITextWords | null>;
|
|
25
|
-
isSelectionMode: boolean;
|
|
26
|
-
checkedElements: {
|
|
27
|
-
[elementId: string]: SelectingElementsType;
|
|
28
|
-
};
|
|
29
|
-
private expandParentGroupService;
|
|
30
|
-
constructor(selectElementService: SelectElementService, treeNodeSelectionService: TreeNodeSelectionService, cdr: ChangeDetectorRef, configurationTreeService: ConfigurationTreeService);
|
|
31
|
-
ngOnInit(): void;
|
|
32
|
-
ngOnDestroy(): void;
|
|
33
|
-
private expand;
|
|
34
|
-
select(): void;
|
|
35
|
-
dblSelect(): void;
|
|
36
|
-
openContextMenu(event: MouseEvent): void;
|
|
37
|
-
changeSelecting(element: IElementDto, isSelected: boolean): void;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeItemComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeItemComponent, "ava-tree-item", never, { "element": { "alias": "element"; "required": false; "isSignal": true; }; "isSelect": { "alias": "isSelect"; "required": false; "isSignal": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
40
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { IElementDto } from '../../model';
|
|
4
|
-
import { ConfigurationTreeService } from '../../services/configuration-tree.service';
|
|
5
|
-
import { ExpandParentGroupService } from '../../services/expand-parent-group.service';
|
|
6
|
-
import { SelectElementService } from '../../services/select-element.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class TreeNodeComponent implements OnDestroy, OnInit {
|
|
9
|
-
selectElementService: SelectElementService;
|
|
10
|
-
private configurationTreeService;
|
|
11
|
-
elementList: import("@angular/core").InputSignal<IElementDto[] | null>;
|
|
12
|
-
selectedElement: IElementDto | null;
|
|
13
|
-
private $destroy;
|
|
14
|
-
readonly indent$: Observable<string>;
|
|
15
|
-
readonly selectedColor$: Observable<string>;
|
|
16
|
-
isSelectionMode: boolean;
|
|
17
|
-
private cdr;
|
|
18
|
-
expandParentGroupService: ExpandParentGroupService;
|
|
19
|
-
constructor(selectElementService: SelectElementService, configurationTreeService: ConfigurationTreeService);
|
|
20
|
-
ngOnInit(): void;
|
|
21
|
-
ngOnDestroy(): void;
|
|
22
|
-
expand(element: IElementDto): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeNodeComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeNodeComponent, "ava-tree-node", never, { "elementList": { "alias": "elementList"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
25
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { LanguageType } from '../../invoice/model';
|
|
2
|
-
export interface ITextWords {
|
|
3
|
-
language: LanguageType;
|
|
4
|
-
textSearch: string;
|
|
5
|
-
textNothing: string;
|
|
6
|
-
textNothingFiltered: string;
|
|
7
|
-
textAll: string;
|
|
8
|
-
tooltipAllOpen: string;
|
|
9
|
-
tooltipAllClose: string;
|
|
10
|
-
tooltipAllAdd: string;
|
|
11
|
-
tooltipAllRemove: string;
|
|
12
|
-
defaultNameNoteText: string;
|
|
13
|
-
defaultNameDescription: string;
|
|
14
|
-
defaultNameGroup: string;
|
|
15
|
-
defaultNamePosition: string;
|
|
16
|
-
}
|
|
17
|
-
export declare const DEFAULT_TEXT_WORDS: ITextWords;
|
|
18
|
-
export declare const germanTextsAva: ITextWords;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { TreeItemComponent } from '../components/tree-item/tree-item.component';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HoverEffectDirective {
|
|
4
|
-
itemText: import("@angular/core").InputSignal<TreeItemComponent | null>;
|
|
5
|
-
private allowShow;
|
|
6
|
-
private treeHoverTooltipService;
|
|
7
|
-
onMouseEnter(): void;
|
|
8
|
-
onMouseUp(): void;
|
|
9
|
-
onWheel(): void;
|
|
10
|
-
onScroll(): void;
|
|
11
|
-
onMouseLeave(): void;
|
|
12
|
-
onKeyDown(): void;
|
|
13
|
-
onMouseOut(): void;
|
|
14
|
-
onMouseMove(event: MouseEvent): void;
|
|
15
|
-
private hide;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HoverEffectDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HoverEffectDirective, "[avaHoverEffect]", never, { "itemText": { "alias": "avaHoverEffect"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
|
-
import { ConfigurationTreeService } from '../services/configuration-tree.service';
|
|
3
|
-
import { FlatElementsService } from '../services/flat-elements.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SaveChangingViewDirective implements AfterViewInit, OnDestroy {
|
|
6
|
-
private el;
|
|
7
|
-
private renderer;
|
|
8
|
-
private flatElementsService;
|
|
9
|
-
private configurationTreeService;
|
|
10
|
-
saveChangingView: import("@angular/core").InputSignal<string>;
|
|
11
|
-
private $destroy;
|
|
12
|
-
private readonly injector;
|
|
13
|
-
constructor(el: ElementRef<HTMLElement>, renderer: Renderer2, flatElementsService: FlatElementsService, configurationTreeService: ConfigurationTreeService);
|
|
14
|
-
ngOnDestroy(): void;
|
|
15
|
-
ngAfterViewInit(): void;
|
|
16
|
-
private updateElementStles;
|
|
17
|
-
private getChangedView;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SaveChangingViewDirective, never>;
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SaveChangingViewDirective, "[saveChangingView]", never, { "saveChangingView": { "alias": "saveChangingView"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
20
|
-
}
|