(text, req)
| 3 | |
| 4 | export class htmlTheme extends AbstractTheme { |
| 5 | getFormInputLabel (text, req) { |
| 6 | const el = super.getFormInputLabel(text, req) |
| 7 | el.classList.add('je-form-input-label') |
| 8 | return el |
| 9 | } |
| 10 | |
| 11 | getFormInputDescription (text) { |
| 12 | const el = super.getFormInputDescription(text) |