[MNT-23166] Add resize flag to document list with option to disable blur (#9090)

* [MNT-23166] Add resize flag to document list with option to disable blur

* [MNT-23166] Missing docs and CR fixes

* [MNT-23166] Lint fixes

* [MNT-23166] Lint fixes

* [MNT-23166] Lint fixes
This commit is contained in:
MichalKinas
2023-11-15 14:51:38 +01:00
committed by GitHub
parent e5ca7d2069
commit 81787d5202
7 changed files with 54 additions and 19 deletions

View File

@@ -323,6 +323,14 @@ export class DocumentListComponent extends DataTableSchema implements OnInit, On
@Input()
maxColumnsVisible?: number;
/** Enables column resizing for datatable */
@Input()
isResizingEnabled = false;
/** Enables blur when resizing datatable columns */
@Input()
blurOnResize = true;
/** Emitted when the user clicks a list node */
@Output()
nodeClick = new EventEmitter<NodeEntityEvent>();