novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
14 lines (11 loc) • 362 B
text/typescript
// APP
import { BaseControl, NovoControlConfig } from './../BaseControl';
export class SelectControl extends BaseControl {
controlType = 'select';
options = [];
constructor(config: NovoControlConfig) {
super('SelectControl', config);
this.options = config.options || [];
this.placeholder = config.placeholder || '';
}
}