Files
ISA-Frontend/apps/sales/src/app/modules/shelf/components/edit-actions/shelf-edit-actions.component.ts
2020-07-29 18:10:23 +02:00

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() {}
}