lint
This commit is contained in:
parent
e21c225ddd
commit
7bb24c4f91
@ -23,7 +23,7 @@ import { SimpleFilterOption } from '../models/simple-filter-option';
|
||||
MatCheckbox,
|
||||
IconButtonComponent,
|
||||
CircleButtonComponent,
|
||||
]
|
||||
],
|
||||
})
|
||||
export class SimplePopupFilterComponent<T> {
|
||||
readonly options = input.required<SimpleFilterOption<T>[]>();
|
||||
|
||||
@ -36,7 +36,7 @@ import { DetailsRadioOption } from './details-radio-option';
|
||||
ReactiveFormsModule,
|
||||
MatTooltipModule,
|
||||
ReplaceNbspPipe,
|
||||
]
|
||||
],
|
||||
})
|
||||
export class DetailsRadioComponent<I> extends FormFieldComponent<DetailsRadioOption<I>> {
|
||||
readonly options = input.required<DetailsRadioOption<I>[]>();
|
||||
|
||||
@ -35,7 +35,7 @@ type DynamicInput = number | string | Date;
|
||||
useExisting: DynamicInputComponent,
|
||||
},
|
||||
],
|
||||
imports: [NgClass, FormsModule, MatDatepickerModule, StopPropagationDirective, MatIconModule, MatInputModule]
|
||||
imports: [NgClass, FormsModule, MatDatepickerModule, StopPropagationDirective, MatIconModule, MatInputModule],
|
||||
})
|
||||
export class DynamicInputComponent extends FormFieldComponent<DynamicInput> {
|
||||
readonly label = input<string>();
|
||||
|
||||
@ -11,7 +11,7 @@ import { CircleButtonType, CircleButtonTypes } from '../../buttons/types/circle-
|
||||
imports: [CircleButtonComponent, FormsModule],
|
||||
host: {
|
||||
'[class.editing]': '_editing()',
|
||||
}
|
||||
},
|
||||
})
|
||||
export class EditableInputComponent implements OnChanges {
|
||||
protected readonly _editing = signal(false);
|
||||
|
||||
@ -34,7 +34,7 @@ import { DisableStopPropagationDirective } from '../../directives';
|
||||
InputWithActionComponent,
|
||||
MatTooltip,
|
||||
DisableStopPropagationDirective,
|
||||
]
|
||||
],
|
||||
})
|
||||
export class PageHeaderComponent<T extends IListable> {
|
||||
readonly searchPositions = SearchPositions;
|
||||
|
||||
@ -30,7 +30,7 @@ import { TableItemComponent } from './table-item/table-item.component';
|
||||
NgClass,
|
||||
RouterLink,
|
||||
TableItemComponent,
|
||||
]
|
||||
],
|
||||
})
|
||||
export class TableContentComponent<Class extends IListable<PrimaryKey>, PrimaryKey extends Id = Class['id']>
|
||||
extends AutoUnsubscribe
|
||||
|
||||
@ -21,7 +21,7 @@ import { TableColumnNameComponent } from '../table-column-name/table-column-name
|
||||
IqserFiltersModule,
|
||||
SyncWidthDirective,
|
||||
TableColumnNameComponent,
|
||||
]
|
||||
],
|
||||
})
|
||||
export class TableHeaderComponent<T extends IListable<PrimaryKey>, PrimaryKey extends Id = T['id']> {
|
||||
readonly listingModes = ListingModes;
|
||||
|
||||
@ -63,7 +63,7 @@ interface WorkflowContext<T> {
|
||||
NgTemplateOutlet,
|
||||
CdkDragPreview,
|
||||
MatIcon,
|
||||
]
|
||||
],
|
||||
})
|
||||
export class WorkflowComponent<T extends IListable, K extends string> extends ContextComponent<WorkflowContext<T>> implements OnInit {
|
||||
@ViewChildren(CdkDropList) private readonly _dropLists!: QueryList<CdkDropList>;
|
||||
|
||||
@ -8,7 +8,7 @@ import { PaginationSettings } from './pagination-settings';
|
||||
templateUrl: './pagination.component.html',
|
||||
styleUrls: ['./pagination.component.scss'],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
imports: [TranslateModule]
|
||||
imports: [TranslateModule],
|
||||
})
|
||||
export class PaginationComponent {
|
||||
displayedPages: (number | string)[] = [];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user