blob: 0ee7d3757451fe463849fd1c5518fe000bdbecf0 (
plain) (
blame)
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
|
import { Component, Input, OnInit } from '@angular/core'
@Component({
selector: 'my-delete-button',
template: `
<my-button
icon="delete" className="grey-button"
[disabled]="disabled" [label]="label" [title]="title"
[responsiveLabel]="responsiveLabel"
></my-button>
`
})
export class DeleteButtonComponent implements OnInit {
@Input() label: string
@Input() title: string
@Input() responsiveLabel = false
@Input() disabled: boolean
ngOnInit () {
if (this.label === undefined && !this.title) {
this.title = $localize`Delete`
}
// <my-delete-button label /> Use default label
if (this.label === '') {
this.label = $localize`Delete`
}
}
}
|