[MNT-25478] Add Information dialog for nodes and dialog for additional location references (#5041)

* [MNT-25478] Add Information dialog for nodes and dialog for additional location references

* [MNT-25478] CR fixes

* [MNT-25478] CR fixes

* [MNT-25478] Unit test fix

* [MNT-25478] E2E locator fixes

* [MNT-25478] E2E locator fixes

* [MMNT-25478] Add cm:contains to secondary parents API call

* [MMNT-25478] Small fix

* [MNT-25478] First e2e fixes

* more fixes for e2es

* last e2e fixes

---------

Co-authored-by: Adam Świderski <adam.tomasz.swiderski@gmail.com>
This commit is contained in:
Michal Kinas
2026-02-18 12:27:32 +01:00
committed by GitHub
co-authored by Adam Świderski
parent 0f7bd89263
commit 4204745227
36 changed files with 1636 additions and 626 deletions
@@ -39,7 +39,7 @@ export enum NodeActionTypes {
Unshare = 'UNSHARE_NODES',
Copy = 'COPY_NODES',
Move = 'MOVE_NODES',
FolderInformation = 'FOLDER_INFORMATION',
NodeInformation = 'NODE_INFORMATION',
ManagePermissions = 'MANAGE_PERMISSIONS',
PrintFile = 'PRINT_FILE',
ManageVersions = 'MANAGE_VERSIONS',
@@ -219,8 +219,8 @@ export class ManageRulesAction implements Action {
constructor(public payload: NodeEntry) {}
}
export class FolderInformationAction implements Action {
readonly type = NodeActionTypes.FolderInformation;
export class NodeInformationAction implements Action {
readonly type = NodeActionTypes.NodeInformation;
constructor(public payload: NodeEntry) {}
}