-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to AntD TreeTable and remove deprecated code (#32)
* Introduce AntD Table and refactor model tree structure * Remove deprecated code (primereact, vscode tree) * Add documentation * Pick improvements from #34 * Use DTO instead of Impl suffix * Fix expansion and field highlighting * Introduce ignore list for specific peripheral nodes * Implement feedback - Fix copyright issues - Fix CSS (pin, ellipsis) issues - Make configuration for ignored peripheral names * Implement keyboard navigation * Abort scrolling when leaving iframe * Only abort scroll on re-enter if mouse button is no longer pressed * Fix typo in package.json Co-authored-by: Jens Reinecke <jens.reinecke@arm.com> --------- Co-authored-by: Martin Fleck <mfleck@eclipsesource.com> Co-authored-by: Jens Reinecke <jens.reinecke@arm.com>
- Loading branch information
1 parent
c53dade
commit 5787e16
Showing
41 changed files
with
2,860 additions
and
1,772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2024 EclipseSource and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the MIT License as outlined in the LICENSE File | ||
********************************************************************************/ | ||
|
||
export * from './format'; | ||
export * from './notification'; | ||
export * from './peripheral-sort'; | ||
export * from './peripheral-dto'; | ||
export * from './utils'; | ||
export * from './vscode'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2024 EclipseSource and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the MIT License as outlined in the LICENSE File | ||
********************************************************************************/ | ||
|
||
export interface TreeNotificationContext { | ||
/** | ||
* If true or undefined, the tree will be resynced. | ||
*/ | ||
resync?: boolean; | ||
} | ||
|
||
export interface TreeNotification<T> { | ||
context?: TreeNotificationContext; | ||
data: T; | ||
} |
Oops, something went wrong.