From de3a2895801580e68d72d5f4c6e971bf5b9bd258 Mon Sep 17 00:00:00 2001 From: jgallego Date: Thu, 6 Oct 2016 07:44:20 +0200 Subject: [PATCH] cambio de txt por label --- @salix/core/src/core.js | 6 +++--- @salix/core/src/{txt/txt.bt.html => label/label.bt.html} | 0 @salix/core/src/{txt/txt.bt.js => label/label.bt.js} | 0 @salix/core/src/{txt/txt.js => label/label.js} | 2 +- @salix/core/src/{txt/txt.mt.html => label/label.mt.html} | 0 @salix/core/src/{txt/txt.mt.js => label/label.mt.js} | 6 +++--- 6 files changed, 7 insertions(+), 7 deletions(-) rename @salix/core/src/{txt/txt.bt.html => label/label.bt.html} (100%) rename @salix/core/src/{txt/txt.bt.js => label/label.bt.js} (100%) rename @salix/core/src/{txt/txt.js => label/label.js} (91%) rename @salix/core/src/{txt/txt.mt.html => label/label.mt.html} (100%) rename @salix/core/src/{txt/txt.mt.js => label/label.mt.js} (76%) diff --git a/@salix/core/src/core.js b/@salix/core/src/core.js index 9a401ac3a..244e3735a 100644 --- a/@salix/core/src/core.js +++ b/@salix/core/src/core.js @@ -17,6 +17,6 @@ export {NAME as RADIOBT,factory as radiobt} from './radio/radio.bt' export {NAME as TEXTFIELD,directive as TextfieldDirective} from './textfield/textfield' export {NAME as TEXTFIELDMT,factory as textfieldmt} from './textfield/textfield.mt' export {NAME as TEXTFIELDBT,factory as textfieldbt} from './textfield/textfield.bt' -export {NAME as TXT,directive as TxtDirective} from './txt/txt' -export {NAME as TXTMT,factory as txtmt} from './txt/txt.mt' -export {NAME as TXTBT,factory as txtbt} from './txt/txt.bt' \ No newline at end of file +export {NAME as LABEL,directive as LabelDirective} from './label/label' +export {NAME as LABELMT,factory as labelmt} from './label/label.mt' +export {NAME as LABELBT,factory as labelbt} from './label/label.bt' \ No newline at end of file diff --git a/@salix/core/src/txt/txt.bt.html b/@salix/core/src/label/label.bt.html similarity index 100% rename from @salix/core/src/txt/txt.bt.html rename to @salix/core/src/label/label.bt.html diff --git a/@salix/core/src/txt/txt.bt.js b/@salix/core/src/label/label.bt.js similarity index 100% rename from @salix/core/src/txt/txt.bt.js rename to @salix/core/src/label/label.bt.js diff --git a/@salix/core/src/txt/txt.js b/@salix/core/src/label/label.js similarity index 91% rename from @salix/core/src/txt/txt.js rename to @salix/core/src/label/label.js index 2ad20698c..fb59785d3 100644 --- a/@salix/core/src/txt/txt.js +++ b/@salix/core/src/label/label.js @@ -2,7 +2,7 @@ import {module as _module} from '../module'; import * as resolveFactory from '../resolveDefaultComponents'; import * as util from '../util'; -const _NAME = 'txt'; +const _NAME = 'label'; export const NAME = util.getName(_NAME); directive.$inject =[resolveFactory.NAME]; diff --git a/@salix/core/src/txt/txt.mt.html b/@salix/core/src/label/label.mt.html similarity index 100% rename from @salix/core/src/txt/txt.mt.html rename to @salix/core/src/label/label.mt.html diff --git a/@salix/core/src/txt/txt.mt.js b/@salix/core/src/label/label.mt.js similarity index 76% rename from @salix/core/src/txt/txt.mt.js rename to @salix/core/src/label/label.mt.js index 15f774586..3d1144510 100644 --- a/@salix/core/src/txt/txt.mt.js +++ b/@salix/core/src/label/label.mt.js @@ -1,10 +1,10 @@ import {module as _module} from '../module'; import * as util from '../util'; import * as constant from '../constants'; -import template from './txt.mt.html'; +import template from './label.mt.html'; -const _NAME = 'txt'; -const DEFAULT_TEXT = 'txt'; +const _NAME = 'label'; +const DEFAULT_TEXT = 'label'; export const NAME = util.getFactoryName(_NAME + constant.MATERIAL_DESIGN_FRAMEWORK);