Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 1x 1x | import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
import type { IDashboardTableConfig } from '../../interfaces/table-config.interface';
import { AppTableBase } from '../_base/table/table.base';
export interface IPeriodicElement {
name: string;
position: number;
weight: number;
symbol: string;
}
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: false,
})
export class AppTableComponent<T> extends AppTableBase<T> {
@Input() public override set config(config: IDashboardTableConfig<T>) {
super.config = config;
}
constructor() {
super();
}
public optionSelected(value: string): void {
/**
* @todo Implement this method.
*/
}
}
|