mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-9602] resolve issue for upgrading prettier (#4554)
* Build(deps-dev): Bump prettier from 2.8.8 to 3.5.3 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.5.3. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.5.3) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.5.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Resolve issue for upgrading prettier * Update ADF --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
325d072c4d
commit
bf909d9a5b
@@ -35,5 +35,8 @@ export class ContextMenu implements Action {
|
||||
export class CustomContextMenu implements Action {
|
||||
readonly type = ContextMenuActionTypes.CustomContextMenu;
|
||||
|
||||
constructor(public event: MouseEvent, public payload: ContentActionRef[] = []) {}
|
||||
constructor(
|
||||
public readonly event: MouseEvent,
|
||||
public readonly payload: ContentActionRef[] = []
|
||||
) {}
|
||||
}
|
||||
|
@@ -47,7 +47,10 @@ export class CreateLibraryAction implements Action {
|
||||
export class NavigateLibraryAction implements Action {
|
||||
readonly type = LibraryActionTypes.Navigate;
|
||||
|
||||
constructor(public payload?: string, public route?: string) {}
|
||||
constructor(
|
||||
public payload?: string,
|
||||
public route?: string
|
||||
) {}
|
||||
}
|
||||
|
||||
export class UpdateLibraryAction implements Action {
|
||||
@@ -59,5 +62,8 @@ export class UpdateLibraryAction implements Action {
|
||||
export class LeaveLibraryAction implements Action {
|
||||
readonly type = LibraryActionTypes.Leave;
|
||||
|
||||
constructor(public payload?: string, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload?: string,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
@@ -61,7 +61,10 @@ export class SetSelectedNodesAction implements Action {
|
||||
export class DeleteNodesAction implements Action {
|
||||
readonly type = NodeActionTypes.Delete;
|
||||
|
||||
constructor(public payload: NodeEntry[] = [], public allowUndo = true) {}
|
||||
constructor(
|
||||
public payload: NodeEntry[] = [],
|
||||
public allowUndo = true
|
||||
) {}
|
||||
}
|
||||
|
||||
export class UndoDeleteNodesAction implements Action {
|
||||
@@ -85,7 +88,10 @@ export class PurgeDeletedNodesAction implements Action {
|
||||
export class DownloadNodesAction implements Action {
|
||||
readonly type = NodeActionTypes.Download;
|
||||
|
||||
constructor(public payload: NodeEntry[] = [], public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: NodeEntry[] = [],
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
||||
export class CreateFolderAction implements Action {
|
||||
@@ -97,13 +103,19 @@ export class CreateFolderAction implements Action {
|
||||
export class EditFolderAction implements Action {
|
||||
readonly type = NodeActionTypes.EditFolder;
|
||||
|
||||
constructor(public payload: NodeEntry, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: NodeEntry,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
||||
export class ShareNodeAction implements Action {
|
||||
readonly type = NodeActionTypes.Share;
|
||||
|
||||
constructor(public payload: NodeEntry, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: NodeEntry,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
||||
export class UnshareNodesAction implements Action {
|
||||
@@ -115,13 +127,19 @@ export class UnshareNodesAction implements Action {
|
||||
export class CopyNodesAction implements Action {
|
||||
readonly type = NodeActionTypes.Copy;
|
||||
|
||||
constructor(public payload: Array<NodeEntry>, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: Array<NodeEntry>,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
||||
export class MoveNodesAction implements Action {
|
||||
readonly type = NodeActionTypes.Move;
|
||||
|
||||
constructor(public payload: Array<NodeEntry>, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: Array<NodeEntry>,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
||||
export class ManagePermissionsAction implements Action {
|
||||
@@ -144,7 +162,10 @@ export class PrintFileAction implements Action {
|
||||
export class ManageVersionsAction implements Action {
|
||||
readonly type = NodeActionTypes.ManageVersions;
|
||||
|
||||
constructor(public payload: NodeEntry, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: NodeEntry,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
||||
export class EditOfflineAction implements Action {
|
||||
@@ -173,7 +194,10 @@ export class RemoveFavoriteAction implements Action {
|
||||
export class ManageAspectsAction implements Action {
|
||||
readonly type = NodeActionTypes.ChangeAspects;
|
||||
|
||||
constructor(public payload: NodeEntry, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: NodeEntry,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
||||
export class ManageRulesAction implements Action {
|
||||
|
@@ -38,5 +38,8 @@ export class SearchByTermAiAction implements Action {
|
||||
export class ToggleAISearchInput implements Action {
|
||||
readonly type = SearchAiActionTypes.ToggleAiSearchInput;
|
||||
|
||||
constructor(public agentId: string, public searchTerm?: string) {}
|
||||
constructor(
|
||||
public agentId: string,
|
||||
public searchTerm?: string
|
||||
) {}
|
||||
}
|
||||
|
@@ -36,5 +36,8 @@ export class SearchAction implements Action {
|
||||
|
||||
export class SearchByTermAction implements Action {
|
||||
readonly type = SearchActionTypes.SearchByTerm;
|
||||
constructor(public payload: string, public searchOptions?: SearchOptionModel[]) {}
|
||||
constructor(
|
||||
public payload: string,
|
||||
public searchOptions?: SearchOptionModel[]
|
||||
) {}
|
||||
}
|
||||
|
@@ -38,7 +38,10 @@ export interface SnackbarAction extends Action {
|
||||
}
|
||||
|
||||
export class SnackbarUserAction {
|
||||
constructor(public title: string, public action: Action) {}
|
||||
constructor(
|
||||
public title: string,
|
||||
public action: Action
|
||||
) {}
|
||||
}
|
||||
|
||||
export class SnackbarInfoAction implements SnackbarAction {
|
||||
@@ -46,7 +49,10 @@ export class SnackbarInfoAction implements SnackbarAction {
|
||||
|
||||
userAction?: SnackbarUserAction;
|
||||
|
||||
constructor(public payload: string, public params?: any) {}
|
||||
constructor(
|
||||
public payload: string,
|
||||
public params?: any
|
||||
) {}
|
||||
}
|
||||
|
||||
export class SnackbarWarningAction implements SnackbarAction {
|
||||
@@ -54,7 +60,10 @@ export class SnackbarWarningAction implements SnackbarAction {
|
||||
|
||||
userAction?: SnackbarUserAction;
|
||||
|
||||
constructor(public payload: string, public params?: any) {}
|
||||
constructor(
|
||||
public payload: string,
|
||||
public params?: any
|
||||
) {}
|
||||
}
|
||||
|
||||
export class SnackbarErrorAction implements SnackbarAction {
|
||||
@@ -62,5 +71,8 @@ export class SnackbarErrorAction implements SnackbarAction {
|
||||
|
||||
userAction?: SnackbarUserAction;
|
||||
|
||||
constructor(public payload: string, public params?: any) {}
|
||||
constructor(
|
||||
public payload: string,
|
||||
public params?: any
|
||||
) {}
|
||||
}
|
||||
|
@@ -46,5 +46,8 @@ export class UploadFolderAction implements Action {
|
||||
export class UploadFileVersionAction implements Action {
|
||||
readonly type = UploadActionTypes.UploadFileVersion;
|
||||
|
||||
constructor(public payload: CustomEvent, public configuration?: ModalConfiguration) {}
|
||||
constructor(
|
||||
public payload: CustomEvent,
|
||||
public configuration?: ModalConfiguration
|
||||
) {}
|
||||
}
|
||||
|
@@ -43,19 +43,29 @@ export interface ViewNodeExtras {
|
||||
export class ViewFileAction implements Action {
|
||||
readonly type = ViewerActionTypes.ViewFile;
|
||||
|
||||
constructor(public payload?: NodeEntry, public parentId?: string) {}
|
||||
constructor(
|
||||
public payload?: NodeEntry,
|
||||
public parentId?: string
|
||||
) {}
|
||||
}
|
||||
|
||||
export class ViewNodeAction implements Action {
|
||||
readonly type = ViewerActionTypes.ViewNode;
|
||||
|
||||
constructor(public nodeId: string, public viewNodeExtras?: ViewNodeExtras) {}
|
||||
constructor(
|
||||
public nodeId: string,
|
||||
public viewNodeExtras?: ViewNodeExtras
|
||||
) {}
|
||||
}
|
||||
|
||||
export class ViewNodeVersionAction implements Action {
|
||||
readonly type = ViewerActionTypes.ViewNodeVersion;
|
||||
|
||||
constructor(public nodeId: string, public versionId: string, public viewNodeExtras?: ViewNodeExtras) {}
|
||||
constructor(
|
||||
public nodeId: string,
|
||||
public versionId: string,
|
||||
public viewNodeExtras?: ViewNodeExtras
|
||||
) {}
|
||||
}
|
||||
|
||||
export class FullscreenViewerAction implements Action {
|
||||
@@ -77,5 +87,8 @@ export class RefreshPreviewAction implements Action {
|
||||
export class PluginPreviewAction implements Action {
|
||||
readonly type = ViewerActionTypes.PluginPreview;
|
||||
|
||||
constructor(public pluginRoute: string, public nodeId: string) {}
|
||||
constructor(
|
||||
public pluginRoute: string,
|
||||
public nodeId: string
|
||||
) {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user