renombrado de archivos parte 2
This commit is contained in:
parent
11c3b2de2d
commit
39bb122ee1
|
@ -1,19 +1,19 @@
|
|||
import './mdl-override.css';
|
||||
import './styles/fonts/mdi-override.css';
|
||||
|
||||
import './textfield/index';
|
||||
import './watcher/index';
|
||||
import './paging/index';
|
||||
import './textfield/textfield';
|
||||
import './watcher/watcher';
|
||||
import './paging/paging';
|
||||
import './icon/icon';
|
||||
import './autocomplete/autocomplete';
|
||||
import './popover/index';
|
||||
import './popover/popover';
|
||||
import './dialog/dialog';
|
||||
|
||||
import './confirm/confirm';
|
||||
import './title/index';
|
||||
import './subtitle/index';
|
||||
import './spinner/index';
|
||||
import './snackbar/index';
|
||||
import './title/title';
|
||||
import './subtitle/subtitle';
|
||||
import './spinner/spinner';
|
||||
import './snackbar/snackbar';
|
||||
|
||||
export {NAME as BUTTON, directive as ButtonDirective} from './button/button';
|
||||
export {NAME as BUTTON_MDL, factory as buttonMdl} from './button/button.mdl';
|
||||
|
|
|
@ -36,7 +36,7 @@ Paging.$inject = ['$http', '$scope'];
|
|||
|
||||
export const NAME = 'vnPaging';
|
||||
export const COMPONENT = {
|
||||
template: require('./index.html'),
|
||||
template: require('./paging.html'),
|
||||
bindings: {
|
||||
index: '<',
|
||||
total: '<'
|
|
@ -20,6 +20,6 @@ export default class Controller {
|
|||
Controller.$inject = ['$element'];
|
||||
|
||||
module.component('vnSnackbar', {
|
||||
template: require('./index.html'),
|
||||
template: require('./snackbar.html'),
|
||||
controller: Controller
|
||||
});
|
|
@ -49,7 +49,7 @@ export default class Spinner extends Component {
|
|||
Spinner.$inject = ['$element', '$scope'];
|
||||
|
||||
export const component = {
|
||||
template: require('./index.html'),
|
||||
template: require('./spinner.html'),
|
||||
bindings: {
|
||||
enable: '='
|
||||
},
|
|
@ -1,6 +1,6 @@
|
|||
import {module} from '../module';
|
||||
|
||||
module.component('vnSubtitle', {
|
||||
template: require('./index.html'),
|
||||
template: require('./subtitle.html'),
|
||||
transclude: true
|
||||
});
|
|
@ -3,7 +3,7 @@ import Component from '../lib/component';
|
|||
import * as resolveFactory from '../lib/resolveDefaultComponents';
|
||||
import * as normalizerFactory from '../lib/inputAttrsNormalizer';
|
||||
import './style.scss';
|
||||
import './index.mdl';
|
||||
import './textfield.mdl';
|
||||
|
||||
export default class Textfield extends Component {
|
||||
constructor($element, $scope, $attrs) {
|
|
@ -4,7 +4,7 @@ export const NAME = 'vnTextfieldMdlFactory';
|
|||
|
||||
export function factory() {
|
||||
return {
|
||||
template: require('./index.mdl.html'),
|
||||
template: require('./textfield.mdl.html'),
|
||||
default: {
|
||||
label: 'text',
|
||||
className: 'mdl-textfield--floating-label',
|
|
@ -1,6 +1,6 @@
|
|||
import {module} from '../module';
|
||||
|
||||
module.component('vnTitle', {
|
||||
template: require('./index.html'),
|
||||
template: require('./title.html'),
|
||||
transclude: true
|
||||
});
|
|
@ -149,7 +149,7 @@ export default class Watcher extends Component {
|
|||
Watcher.$inject = ['$element', '$scope', '$state', '$transitions', '$http', 'vnAppLogger', '$translate'];
|
||||
|
||||
module.component('vnWatcher', {
|
||||
template: require('./index.html'),
|
||||
template: require('./watcher.html'),
|
||||
bindings: {
|
||||
url: '@?',
|
||||
idField: '@?',
|
Loading…
Reference in New Issue