Skip to content

Commit

Permalink
fix: add missing inputs to interactive-data-view (onecx#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjakobi authored May 2, 2024
1 parent d88a870 commit 2935b98
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ export class InteractiveDataViewComponent implements OnInit {
@Input() page = 0
@Input() selectedRows: Row[] = []
@Input() displayedColumns: DataTableColumn[] = []
@Input() frozenActionColumn = false
@Input() actionColumnPosition: 'left' | 'right' = 'right'
@ContentChild('tableCell') tableCell: TemplateRef<any> | undefined
@ContentChild('tableDateCell') tableDateCell: TemplateRef<any> | undefined
@ContentChild('tableRelativeDateCell') tableRelativeDateCell: TemplateRef<any> | undefined
Expand All @@ -93,8 +95,6 @@ export class InteractiveDataViewComponent implements OnInit {
isViewItemObserved: boolean | undefined
isEditItemObserved: boolean | undefined
firstColumnId: string | undefined
frozenActionColumn = false
actionColumnPosition: 'left' | 'right' = 'right'

@Input()
get paginator(): boolean {
Expand Down

0 comments on commit 2935b98

Please sign in to comment.