chore: eslint fixes for @typescript-eslint/no-explicit-any (#11672)

This commit is contained in:
Denys Vuika
2026-02-23 13:11:44 +00:00
committed by GitHub
parent 9be5eae00c
commit 303a9efb3e
40 changed files with 269 additions and 178 deletions
@@ -68,7 +68,7 @@ interface DataColumn {
title?: string;
srTitle?: string;
cssClass?: string;
template?: TemplateRef<any>;
template?: TemplateRef<unknown>;
formatTooltip?: Function;
focus?: boolean;
}
+6 -6
View File
@@ -21,9 +21,9 @@ interface DialogData {
isCloseButtonHidden?: boolean;
isCancelButtonHidden?: boolean;
dialogSize?: DialogSizes;
contentTemplate?: TemplateRef<any>;
actionsTemplate?: TemplateRef<any>;
descriptionTemplate?: TemplateRef<any>;
contentTemplate?: TemplateRef<unknown>;
actionsTemplate?: TemplateRef<unknown>;
descriptionTemplate?: TemplateRef<unknown>;
headerIcon?: string;
additionalActionButtons?: AdditionalDialogActionButton[];
componentData?: any;
@@ -46,9 +46,9 @@ interface DialogData {
| dialogSize | `DialogSize` | `Medium` | Set dialog size. Can be `Large`, `Medium`, `Alert`. (optional) |
| contentText | `string` | | Inserts a content text. (optional) |
| contentComponent | `Type<any>` | | Inserts a content component. (optional) |
| contentTemplate | `TemplateRef<any>` | | Inserts a content template. (optional) |
| actionsTemplate | `TemplateRef<any>` | | Inserts a template styled on the left. Should be used for additional `mat-button` style buttons. (optional) |
| descriptionTemplate | `TemplateRef<any>` | | Inserts a description template. (optional) |
| contentTemplate | `TemplateRef<unknown>` | | Inserts a content template. (optional) |
| actionsTemplate | `TemplateRef<unknown>` | | Inserts a template styled on the left. Should be used for additional `mat-button` style buttons. (optional) |
| descriptionTemplate | `TemplateRef<unknown>` | | Inserts a description template. (optional) |
| additionalActionButtons | `AdditionalDialogActionButton[]` | | Inserts additional base-styled buttons into the action bar on the left. (optional) |
| componentData | `any` | | Data that injected in contentComponent. (optional) |
| dataOnConfirm$ | `Subject<any>` | | Data to be passed on confirm action after dialog closed. (optional) |