@progress/kendo-angular-treeview 24.2.2 → 25.0.0-develop.2
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/progress-kendo-angular-treeview.mjs +114 -114
- package/index.d.ts +2149 -45
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
- package/schematics/ngAdd/index.js +4 -4
- package/check-mode.d.ts +0 -12
- package/check.directive.d.ts +0 -87
- package/checkable-settings.d.ts +0 -50
- package/checkbox/checked-state.d.ts +0 -8
- package/data-bound-component.d.ts +0 -65
- package/data-change-notification.service.d.ts +0 -12
- package/default-callbacks.d.ts +0 -38
- package/directives.d.ts +0 -37
- package/disable.directive.d.ts +0 -48
- package/drag-and-drop/drag-and-drop-editing.directive.d.ts +0 -47
- package/drag-and-drop/drag-and-drop-utils.d.ts +0 -77
- package/drag-and-drop/drag-and-drop.directive.d.ts +0 -129
- package/drag-and-drop/drag-clue/drag-clue-template.directive.d.ts +0 -33
- package/drag-and-drop/drag-clue/drag-clue.component.d.ts +0 -43
- package/drag-and-drop/drag-clue/drag-clue.service.d.ts +0 -44
- package/drag-and-drop/drop-hint/drop-hint-template.directive.d.ts +0 -32
- package/drag-and-drop/drop-hint/drop-hint.component.d.ts +0 -37
- package/drag-and-drop/drop-hint/drop-hint.service.d.ts +0 -20
- package/drag-and-drop/editing-services/drag-and-drop-asset.service.d.ts +0 -22
- package/drag-and-drop/editing-services/flat-editing.service.d.ts +0 -22
- package/drag-and-drop/editing-services/hierarchy-editing.service.d.ts +0 -19
- package/drag-and-drop/models/drop-action.d.ts +0 -31
- package/drag-and-drop/models/drop-position.d.ts +0 -21
- package/drag-and-drop/models/editing-service.d.ts +0 -21
- package/drag-and-drop/models/preventable-event.d.ts +0 -21
- package/drag-and-drop/models/scroll-direction.d.ts +0 -11
- package/drag-and-drop/models/scroll-settings.d.ts +0 -29
- package/drag-and-drop/models/tree-item-filter-state.d.ts +0 -41
- package/drag-and-drop/models/treeitem-add-remove-args.d.ts +0 -33
- package/drag-and-drop/models/treeitem-drag-event.d.ts +0 -25
- package/drag-and-drop/models/treeitem-drag-start-event.d.ts +0 -26
- package/drag-and-drop/models/treeitem-drop-event.d.ts +0 -52
- package/drag-and-drop/models.d.ts +0 -14
- package/expand-state.service.d.ts +0 -20
- package/expand.directive.d.ts +0 -92
- package/expandable-component.d.ts +0 -35
- package/filter-expand-settings.interface.d.ts +0 -35
- package/filter-state.interface.d.ts +0 -29
- package/filtering-base.d.ts +0 -39
- package/flat-binding.directive.d.ts +0 -74
- package/funcs.d.ts +0 -9
- package/hierarchy-binding.directive.d.ts +0 -70
- package/index-builder.service.d.ts +0 -17
- package/load-more/load-more-button-template.directive.d.ts +0 -30
- package/load-more/load-more-request-args.d.ts +0 -23
- package/load-more/load-more-utils.d.ts +0 -17
- package/load-more/load-more.directive.d.ts +0 -70
- package/load-more/load-more.service.d.ts +0 -36
- package/loading-indicator.directive.d.ts +0 -29
- package/loading-notification.service.d.ts +0 -15
- package/localization/custom-messages.component.d.ts +0 -28
- package/localization/localized-messages.directive.d.ts +0 -16
- package/localization/messages.d.ts +0 -17
- package/navigation/navigation-item.interface.d.ts +0 -16
- package/navigation/navigation-model.d.ts +0 -28
- package/navigation/navigation-state.interface.d.ts +0 -14
- package/navigation/navigation.service.d.ts +0 -68
- package/node-children.service.d.ts +0 -19
- package/node-click-event.interface.d.ts +0 -22
- package/node-template.directive.d.ts +0 -34
- package/package-metadata.d.ts +0 -9
- package/selection/select.directive.d.ts +0 -77
- package/selection/selectable-settings.d.ts +0 -20
- package/selection/selection-mode.d.ts +0 -12
- package/selection/selection.service.d.ts +0 -21
- package/size.d.ts +0 -8
- package/treeitem-lookup.interface.d.ts +0 -41
- package/treeitem.interface.d.ts +0 -19
- package/treeview-filter-settings.d.ts +0 -41
- package/treeview-group.component.d.ts +0 -130
- package/treeview-item-content-wrapper.directive.d.ts +0 -32
- package/treeview-item.directive.d.ts +0 -70
- package/treeview-lookup.service.d.ts +0 -25
- package/treeview.component.d.ts +0 -380
- package/treeview.module.d.ts +0 -43
- package/utils.d.ts +0 -138
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
/**
|
|
6
|
-
* Represents the filter settings for the TreeView component.
|
|
7
|
-
*/
|
|
8
|
-
export interface TreeViewFilterSettings {
|
|
9
|
-
/**
|
|
10
|
-
* Sets the filter operator for comparing values.
|
|
11
|
-
*
|
|
12
|
-
* You can use a string operator or a custom matcher function.
|
|
13
|
-
*
|
|
14
|
-
*/
|
|
15
|
-
operator?: 'contains' | 'doesnotcontain' | 'startswith' | 'doesnotstartwith' | 'endswith' | 'doesnotendwith' | MatcherFunction;
|
|
16
|
-
/**
|
|
17
|
-
* Specifies if the string comparison ignores case.
|
|
18
|
-
*
|
|
19
|
-
* @default true
|
|
20
|
-
*/
|
|
21
|
-
ignoreCase?: boolean;
|
|
22
|
-
/**
|
|
23
|
-
* Sets the filtering mode. In `"strict"` mode, the TreeView shows only matching nodes without any child nodes. In `"lenient"` mode, the TreeView includes all child nodes of each filter match.
|
|
24
|
-
*
|
|
25
|
-
* @default "lenient"
|
|
26
|
-
*/
|
|
27
|
-
mode?: "strict" | "lenient";
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Represents a function that checks if a match is valid based on a source text and a term.
|
|
31
|
-
*
|
|
32
|
-
* @example
|
|
33
|
-
* ```typescript
|
|
34
|
-
* const matcher: MatcherFunction = (dataItem: object, searchTerm: string) => dataItem.firstName.indexOf(searchTerm) >= 0;
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
export type MatcherFunction = (dataItem: any, term: string, ignoreCase?: boolean) => boolean;
|
|
38
|
-
/**
|
|
39
|
-
* @hidden
|
|
40
|
-
*/
|
|
41
|
-
export declare const DEFAULT_FILTER_SETTINGS: TreeViewFilterSettings;
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { TemplateRef, OnChanges, OnInit, OnDestroy, ChangeDetectorRef, TrackByFunction, Renderer2 } from '@angular/core';
|
|
6
|
-
import { ExpandStateService } from './expand-state.service';
|
|
7
|
-
import { IndexBuilderService } from './index-builder.service';
|
|
8
|
-
import { TreeViewLookupService } from './treeview-lookup.service';
|
|
9
|
-
import { NavigationService } from './navigation/navigation.service';
|
|
10
|
-
import { NodeChildrenService } from './node-children.service';
|
|
11
|
-
import { LoadMoreService } from './load-more/load-more.service';
|
|
12
|
-
import { LoadingNotificationService } from './loading-notification.service';
|
|
13
|
-
import { CheckedState } from './checkbox/checked-state';
|
|
14
|
-
import { Observable } from 'rxjs';
|
|
15
|
-
import { DataChangeNotificationService } from './data-change-notification.service';
|
|
16
|
-
import { TreeViewSize } from './size';
|
|
17
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
18
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
19
|
-
import { CheckBoxComponent } from '@progress/kendo-angular-inputs';
|
|
20
|
-
import * as i0 from "@angular/core";
|
|
21
|
-
/**
|
|
22
|
-
* @hidden
|
|
23
|
-
*/
|
|
24
|
-
export declare class TreeViewGroupComponent implements OnChanges, OnInit, OnDestroy {
|
|
25
|
-
protected expandService: ExpandStateService;
|
|
26
|
-
protected loadingService: LoadingNotificationService;
|
|
27
|
-
protected indexBuilder: IndexBuilderService;
|
|
28
|
-
protected treeViewLookupService: TreeViewLookupService;
|
|
29
|
-
protected navigationService: NavigationService;
|
|
30
|
-
protected nodeChildrenService: NodeChildrenService;
|
|
31
|
-
protected dataChangeNotification: DataChangeNotificationService;
|
|
32
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
33
|
-
localization: LocalizationService;
|
|
34
|
-
private renderer;
|
|
35
|
-
/**
|
|
36
|
-
* @hidden
|
|
37
|
-
*/
|
|
38
|
-
chevronDownIcon: SVGIcon;
|
|
39
|
-
/**
|
|
40
|
-
* @hidden
|
|
41
|
-
*/
|
|
42
|
-
chevronRightIcon: SVGIcon;
|
|
43
|
-
/**
|
|
44
|
-
* @hidden
|
|
45
|
-
*/
|
|
46
|
-
chevronLeftIcon: SVGIcon;
|
|
47
|
-
/**
|
|
48
|
-
* @hidden
|
|
49
|
-
*/
|
|
50
|
-
loadMoreTitle: string;
|
|
51
|
-
kGroupClass: boolean;
|
|
52
|
-
get role(): string;
|
|
53
|
-
checkboxes: boolean;
|
|
54
|
-
expandIcons: boolean;
|
|
55
|
-
disabled: boolean;
|
|
56
|
-
selectable: boolean;
|
|
57
|
-
touchActions: boolean;
|
|
58
|
-
disableParentNodesOnly: boolean;
|
|
59
|
-
loadOnDemand: boolean;
|
|
60
|
-
trackBy: TrackByFunction<object>;
|
|
61
|
-
nodes: (node: any, index: string) => Observable<any[]>;
|
|
62
|
-
textField: string | string[];
|
|
63
|
-
parentDataItem: any;
|
|
64
|
-
parentIndex: string;
|
|
65
|
-
nodeTemplateRef: TemplateRef<any>;
|
|
66
|
-
loadMoreButtonTemplateRef: TemplateRef<any>;
|
|
67
|
-
loadMoreService: LoadMoreService;
|
|
68
|
-
size: TreeViewSize;
|
|
69
|
-
expandDisabledNodes: boolean;
|
|
70
|
-
initialNodesLoaded: boolean;
|
|
71
|
-
loadingMoreNodes: boolean;
|
|
72
|
-
isItemExpandable: (node: any, index: any) => boolean;
|
|
73
|
-
isContentDisabled(node: any, index: any): boolean;
|
|
74
|
-
getFontIcon(node: any, index: any): string;
|
|
75
|
-
getSvgIcon(node: any, index: any): SVGIcon;
|
|
76
|
-
get moreNodesAvailable(): boolean;
|
|
77
|
-
get pageSize(): number;
|
|
78
|
-
set pageSize(pageSize: number);
|
|
79
|
-
get data(): any[];
|
|
80
|
-
set data(data: any[]);
|
|
81
|
-
get loadMoreButtonIndex(): string;
|
|
82
|
-
/**
|
|
83
|
-
* Represents the total number of nodes for the current level.
|
|
84
|
-
*/
|
|
85
|
-
get totalNodesCount(): number;
|
|
86
|
-
private _data;
|
|
87
|
-
private nodesSubscription;
|
|
88
|
-
private loadMoreNodesSubscription;
|
|
89
|
-
private singleRecordSubscriptions;
|
|
90
|
-
private localizationSubscriptions;
|
|
91
|
-
constructor(expandService: ExpandStateService, loadingService: LoadingNotificationService, indexBuilder: IndexBuilderService, treeViewLookupService: TreeViewLookupService, navigationService: NavigationService, nodeChildrenService: NodeChildrenService, dataChangeNotification: DataChangeNotificationService, changeDetectorRef: ChangeDetectorRef, localization: LocalizationService, renderer: Renderer2);
|
|
92
|
-
isChecked: (item: object, index: string) => CheckedState;
|
|
93
|
-
isDisabled: (item: object, index: string) => boolean;
|
|
94
|
-
hasCheckbox: (item: object, index: string) => boolean;
|
|
95
|
-
isExpanded: (item: object, index: string) => boolean;
|
|
96
|
-
isVisible: (item: object, index: string) => boolean;
|
|
97
|
-
isSelected: (item: object, index: string) => boolean;
|
|
98
|
-
children: (item: object) => Observable<any[]>;
|
|
99
|
-
hasChildren: (item: object) => boolean;
|
|
100
|
-
get hasTemplate(): boolean;
|
|
101
|
-
expandNode(index: string, dataItem: any, expand: boolean): void;
|
|
102
|
-
checkNode(index: string, checkBox: CheckBoxComponent): void;
|
|
103
|
-
nodeIndex(index: number): string;
|
|
104
|
-
nodeText(dataItem: any): any;
|
|
105
|
-
getCheckBoxState(item: object, index: any): any;
|
|
106
|
-
getCheckboxAttributes(node: any): {
|
|
107
|
-
[key: string]: string;
|
|
108
|
-
};
|
|
109
|
-
ngOnDestroy(): void;
|
|
110
|
-
ngOnInit(): void;
|
|
111
|
-
ngOnChanges(changes: any): void;
|
|
112
|
-
private l10nChange;
|
|
113
|
-
fetchChildren(node: any, index: string): Observable<any>;
|
|
114
|
-
get nextFields(): string[];
|
|
115
|
-
loadMoreNodes(): void;
|
|
116
|
-
/**
|
|
117
|
-
* @hidden
|
|
118
|
-
*/
|
|
119
|
-
isItemDisabled(node: any, index: any): boolean;
|
|
120
|
-
private loadMoreLocalNodes;
|
|
121
|
-
private fetchMoreNodes;
|
|
122
|
-
private setNodeChildren;
|
|
123
|
-
private mapToTreeItem;
|
|
124
|
-
private emitChildrenLoaded;
|
|
125
|
-
private subscribeToNodesChange;
|
|
126
|
-
private reselectItemAt;
|
|
127
|
-
private registerLoadedNodes;
|
|
128
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewGroupComponent, never>;
|
|
129
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewGroupComponent, "[kendoTreeViewGroup]", never, { "checkboxes": { "alias": "checkboxes"; "required": false; }; "expandIcons": { "alias": "expandIcons"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "touchActions": { "alias": "touchActions"; "required": false; }; "disableParentNodesOnly": { "alias": "disableParentNodesOnly"; "required": false; }; "loadOnDemand": { "alias": "loadOnDemand"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "nodes": { "alias": "nodes"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "parentDataItem": { "alias": "parentDataItem"; "required": false; }; "parentIndex": { "alias": "parentIndex"; "required": false; }; "nodeTemplateRef": { "alias": "nodeTemplateRef"; "required": false; }; "loadMoreButtonTemplateRef": { "alias": "loadMoreButtonTemplateRef"; "required": false; }; "loadMoreService": { "alias": "loadMoreService"; "required": false; }; "size": { "alias": "size"; "required": false; }; "expandDisabledNodes": { "alias": "expandDisabledNodes"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "hasCheckbox": { "alias": "hasCheckbox"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "isVisible": { "alias": "isVisible"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; "children": { "alias": "children"; "required": false; }; "hasChildren": { "alias": "hasChildren"; "required": false; }; }, {}, never, never, true, never>;
|
|
130
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ElementRef, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core';
|
|
6
|
-
import { NavigationService } from './navigation/navigation.service';
|
|
7
|
-
import { SelectionService } from './selection/selection.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*
|
|
12
|
-
* A directive which manages the states of the TreeView items.
|
|
13
|
-
*/
|
|
14
|
-
export declare class TreeViewItemContentWrapperDirective implements OnChanges, OnDestroy {
|
|
15
|
-
private element;
|
|
16
|
-
private navigationService;
|
|
17
|
-
private selectionService;
|
|
18
|
-
private renderer;
|
|
19
|
-
dataItem: any;
|
|
20
|
-
index: string;
|
|
21
|
-
initialSelection: boolean;
|
|
22
|
-
isSelected: (item: object, index: string) => boolean;
|
|
23
|
-
private subscriptions;
|
|
24
|
-
constructor(element: ElementRef, navigationService: NavigationService, selectionService: SelectionService, renderer: Renderer2);
|
|
25
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
26
|
-
ngOnDestroy(): void;
|
|
27
|
-
private updateFocusClass;
|
|
28
|
-
private updateSelectionClass;
|
|
29
|
-
private render;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewItemContentWrapperDirective, never>;
|
|
31
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TreeViewItemContentWrapperDirective, "[kendoTreeViewItemContentWrapper]", never, { "dataItem": { "alias": "dataItem"; "required": false; }; "index": { "alias": "index"; "required": false; }; "initialSelection": { "alias": "initialSelection"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; }, {}, never, never, true, never>;
|
|
32
|
-
}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ElementRef, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core';
|
|
6
|
-
import { NavigationService } from './navigation/navigation.service';
|
|
7
|
-
import { SelectionService } from './selection/selection.service';
|
|
8
|
-
import { ExpandStateService } from './expand-state.service';
|
|
9
|
-
import { IndexBuilderService } from './index-builder.service';
|
|
10
|
-
import { TreeViewLookupService } from './treeview-lookup.service';
|
|
11
|
-
import { TreeItem } from './treeitem.interface';
|
|
12
|
-
import { CheckedState } from './checkbox/checked-state';
|
|
13
|
-
import * as i0 from "@angular/core";
|
|
14
|
-
/**
|
|
15
|
-
* @hidden
|
|
16
|
-
*
|
|
17
|
-
* A directive which manages the expanded state of the TreeView.
|
|
18
|
-
*/
|
|
19
|
-
export declare class TreeViewItemDirective implements OnInit, OnChanges, OnDestroy {
|
|
20
|
-
private element;
|
|
21
|
-
private expandService;
|
|
22
|
-
private navigationService;
|
|
23
|
-
private selectionService;
|
|
24
|
-
private lookupService;
|
|
25
|
-
private renderer;
|
|
26
|
-
private ib;
|
|
27
|
-
dataItem: any;
|
|
28
|
-
index: string;
|
|
29
|
-
parentDataItem: any;
|
|
30
|
-
parentIndex: string;
|
|
31
|
-
role: string;
|
|
32
|
-
loadOnDemand: boolean;
|
|
33
|
-
checkable: boolean;
|
|
34
|
-
selectable: boolean;
|
|
35
|
-
expandable: boolean;
|
|
36
|
-
set isChecked(checked: CheckedState);
|
|
37
|
-
isDisabled: boolean;
|
|
38
|
-
isVisible: boolean;
|
|
39
|
-
get isExpanded(): boolean;
|
|
40
|
-
set isExpanded(isExpanded: boolean);
|
|
41
|
-
get isSelected(): boolean;
|
|
42
|
-
set isSelected(isSelected: boolean);
|
|
43
|
-
get isButton(): boolean;
|
|
44
|
-
get treeItem(): TreeItem;
|
|
45
|
-
get parentTreeItem(): TreeItem;
|
|
46
|
-
ariaChecked: string;
|
|
47
|
-
readonly id: number;
|
|
48
|
-
private _isExpanded;
|
|
49
|
-
private _isSelected;
|
|
50
|
-
private isInitialized;
|
|
51
|
-
private subscriptions;
|
|
52
|
-
constructor(element: ElementRef, expandService: ExpandStateService, navigationService: NavigationService, selectionService: SelectionService, lookupService: TreeViewLookupService, renderer: Renderer2, ib: IndexBuilderService);
|
|
53
|
-
ngOnInit(): void;
|
|
54
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
55
|
-
ngOnDestroy(): void;
|
|
56
|
-
subscribe(): void;
|
|
57
|
-
private registerNavigationItem;
|
|
58
|
-
private activateItem;
|
|
59
|
-
private expand;
|
|
60
|
-
private isFocusable;
|
|
61
|
-
private focusItem;
|
|
62
|
-
private moveLookupItem;
|
|
63
|
-
private moveNavigationItem;
|
|
64
|
-
private updateNodeAvailability;
|
|
65
|
-
private setAriaAttributes;
|
|
66
|
-
private updateTabIndex;
|
|
67
|
-
private setAttribute;
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewItemDirective, never>;
|
|
69
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TreeViewItemDirective, "[kendoTreeViewItem]", never, { "dataItem": { "alias": "dataItem"; "required": false; }; "index": { "alias": "index"; "required": false; }; "parentDataItem": { "alias": "parentDataItem"; "required": false; }; "parentIndex": { "alias": "parentIndex"; "required": false; }; "role": { "alias": "role"; "required": false; }; "loadOnDemand": { "alias": "loadOnDemand"; "required": false; }; "checkable": { "alias": "checkable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isVisible": { "alias": "isVisible"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; }, {}, never, never, true, never>;
|
|
70
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { TreeItem } from './treeitem.interface';
|
|
6
|
-
import { ItemLookup, TreeItemLookup } from './treeitem-lookup.interface';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
export declare class TreeViewLookupService {
|
|
12
|
-
private map;
|
|
13
|
-
reset(): void;
|
|
14
|
-
registerItem(item: TreeItem, parent?: TreeItem): void;
|
|
15
|
-
registerChildren(index: string, children: TreeItem[]): void;
|
|
16
|
-
unregisterItem(index: string, dataItem: any): void;
|
|
17
|
-
replaceItem(index: string, item: TreeItem, parent?: TreeItem): void;
|
|
18
|
-
itemLookup(index: string): TreeItemLookup;
|
|
19
|
-
hasItem(index: string): boolean;
|
|
20
|
-
item(index: string): ItemLookup;
|
|
21
|
-
private addToParent;
|
|
22
|
-
private mapChildren;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewLookupService, never>;
|
|
24
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TreeViewLookupService>;
|
|
25
|
-
}
|