@ieeesa-npm/groups 0.11.6 → 0.11.7
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.
|
@@ -218,6 +218,33 @@ export declare class TreeViewComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
218
218
|
* @memberof TreeViewComponent
|
|
219
219
|
*/
|
|
220
220
|
deleteGroupNode(deletedGroupId: string | undefined): void;
|
|
221
|
+
/**
|
|
222
|
+
* Returns the index of next group at the same level.
|
|
223
|
+
* @param {number} selectedGroupIndex
|
|
224
|
+
* @param {GroupNode[]} dataSource
|
|
225
|
+
* @return {*} {number}
|
|
226
|
+
* @memberof TreeViewComponent
|
|
227
|
+
*/
|
|
228
|
+
getNextGroup(selectedGroupIndex: number, dataSource: GroupNode[]): number;
|
|
229
|
+
/**
|
|
230
|
+
* Sort the groups alphabetically from given start index to end index.
|
|
231
|
+
* @param {number} startIndex
|
|
232
|
+
* @param {number} endIndex
|
|
233
|
+
* @memberof TreeViewComponent
|
|
234
|
+
*/
|
|
235
|
+
sortChildGroupsAlphabetically(startIndex: number, endIndex: number): void;
|
|
236
|
+
/**
|
|
237
|
+
* Sort the root level parent groups alphabetically.
|
|
238
|
+
* @memberof TreeViewComponent
|
|
239
|
+
*/
|
|
240
|
+
sortParentGroupsAlphabetically(): void;
|
|
241
|
+
/**
|
|
242
|
+
* Utility method to sort groups by group acronym in ascending order.
|
|
243
|
+
* @param {GroupNode[]} groups
|
|
244
|
+
* @return {*} {GroupNode[]}
|
|
245
|
+
* @memberof TreeViewComponent
|
|
246
|
+
*/
|
|
247
|
+
groupsSorting(groups: GroupNode[]): GroupNode[];
|
|
221
248
|
/**
|
|
222
249
|
* Sets the selected menu group action
|
|
223
250
|
* @param {Menu} menu
|