mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
23 lines
505 B
TypeScript
23 lines
505 B
TypeScript
import {
|
|
Component,
|
|
ChangeDetectionStrategy,
|
|
Output,
|
|
EventEmitter,
|
|
Input,
|
|
} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-shelf-edit-actions',
|
|
templateUrl: 'shelf-edit-actions.component.html',
|
|
styleUrls: ['./shelf-edit-actions.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class ShelfEditActionsComponent {
|
|
@Input() disabled = false;
|
|
|
|
@Output() save = new EventEmitter<void>();
|
|
@Output() cancel = new EventEmitter<void>();
|
|
|
|
constructor() {}
|
|
}
|