2018-02-10 15:18:01 +00:00
|
|
|
import ngModule from '../../module';
|
2018-05-08 07:26:17 +00:00
|
|
|
import Input from '../../lib/input';
|
|
|
|
import './style.scss';
|
2018-02-10 15:18:01 +00:00
|
|
|
|
2018-05-08 07:26:17 +00:00
|
|
|
export default class Button extends Input {
|
|
|
|
constructor($element) {
|
|
|
|
super($element);
|
|
|
|
this.input = this.element.querySelector('.mdl-button');
|
|
|
|
}
|
2018-02-10 15:18:01 +00:00
|
|
|
}
|
2018-05-08 07:26:17 +00:00
|
|
|
Button.$inject = ['$element'];
|
|
|
|
|
|
|
|
ngModule.component('vnButton', {
|
|
|
|
controller: Button,
|
|
|
|
template: require('./button.html'),
|
|
|
|
bindings: {
|
|
|
|
label: '@?',
|
|
|
|
disabled: '<?',
|
2018-08-02 09:34:50 +00:00
|
|
|
icon: '@?',
|
|
|
|
onClick: '&'
|
2018-05-08 07:26:17 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|