ng-bootstrap-form-generator
Version:
Angular 2 + Bootstrap 4 Form Generator. Library provides Angular components that help quickly generate Bootstrap Form from JavaScript object. Component supports validators, help messages, and error messages.
18 lines • 507 B
JavaScript
export var BsfControlOptions = (function () {
function BsfControlOptions() {
this.title = null;
this.defaultValue = null;
this.type = 'text';
this.format = null;
this.placeholder = '';
this.helpText = '';
this.helpTextHtml = '';
}
return BsfControlOptions;
}());
export var BsfSelectOptions = (function () {
function BsfSelectOptions() {
}
return BsfSelectOptions;
}());
//# sourceMappingURL=bsf.options.js.map