2018-02-10 15:18:01 +00:00
|
|
|
import ngModule from '../../module';
|
2019-10-09 22:47:29 +00:00
|
|
|
import Field from '../field';
|
2017-04-28 13:04:29 +00:00
|
|
|
|
2019-10-09 22:47:29 +00:00
|
|
|
export default class Textfield extends Field {
|
|
|
|
constructor($element, $scope, $compile) {
|
|
|
|
super($element, $scope, $compile);
|
|
|
|
this.buildInput('text');
|
2017-05-18 15:35:07 +00:00
|
|
|
}
|
2017-04-28 13:04:29 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 22:47:29 +00:00
|
|
|
ngModule.vnComponent('vnTextfield', {
|
|
|
|
controller: Textfield
|
2017-09-13 07:45:42 +00:00
|
|
|
});
|