From 285fbefe0f5110f809608af06b773b27d05ae11c Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Thu, 1 Dec 2016 00:40:36 +0100 Subject: [PATCH] Errores solucionados, vn-title --- @salix/core/src/check/check.mdl.html | 2 +- @salix/core/src/combo/combo.mdl.html | 2 +- @salix/core/src/core.js | 9 ++-- .../core/src/date-picker/date-picker.mdl.html | 2 +- @salix/core/src/mdl-override.css | 1 - @salix/core/src/password/password.mdl.html | 2 +- @salix/core/src/password/password.mdl.js | 2 +- @salix/core/src/radio/radio.mdl.html | 2 +- @salix/core/src/textfield/textfield.mdl.html | 2 +- @salix/core/src/title/title.js | 5 +- @salix/core/src/title/title.mdl.html | 4 +- @salix/core/src/title/title.mdl.js | 3 +- @salix/crud/src/client/addresses/index.html | 2 +- @salix/crud/src/client/basic-data/index.html | 20 ++++---- @salix/crud/src/client/fiscal-data/index.html | 47 +++++++++---------- @salix/crud/src/client/index/index.html | 16 +++---- @salix/crud/src/client/web-access/index.html | 8 ++-- @salix/login/src/login/login.html | 6 +-- 18 files changed, 68 insertions(+), 67 deletions(-) diff --git a/@salix/core/src/check/check.mdl.html b/@salix/core/src/check/check.mdl.html index 66d11f0f1..732d3bf8d 100644 --- a/@salix/core/src/check/check.mdl.html +++ b/@salix/core/src/check/check.mdl.html @@ -1,4 +1,4 @@ diff --git a/@salix/core/src/combo/combo.mdl.html b/@salix/core/src/combo/combo.mdl.html index ad05d4a7a..8691bd716 100644 --- a/@salix/core/src/combo/combo.mdl.html +++ b/@salix/core/src/combo/combo.mdl.html @@ -1,5 +1,5 @@
-
diff --git a/@salix/core/src/core.js b/@salix/core/src/core.js index e6874a192..9ba703f7e 100644 --- a/@salix/core/src/core.js +++ b/@salix/core/src/core.js @@ -23,11 +23,11 @@ export {NAME as TEXTFIELD_BT, factory as textfieldBt} from './textfield/textfiel export {NAME as LABEL, directive as LabelDirective} from './label/label' export {NAME as LABEL_MDL, factory as labelMdl} from './label/label.mdl' export {NAME as LABEL_BT, factory as labelBt} from './label/label.bt' +export {NAME as SEARCHBAR, directive as searchbar} from './searchbar/searchbar' +export {NAME as SEARCHBAR_MDL, factory as searchbarMdl} from './searchbar/searchbar.mdl' +export {NAME as SEARCHBAR_BT, factory as searchbarBt} from './searchbar/searchbar.bt' export {NAME as ICON_BUTTON, directive as IconButtonDirective} from './icon-button/icon-button' export {NAME as ICON_BUTTON_MDL, factory as iconButtonMdl} from './icon-button/icon-button.mdl' -export {NAME as SEARCHBAR,factory as searchbar} from './searchbar/searchbar' -export {NAME as SEARCHBAR_MDL, factory as searchbarMdl} from './searchbar/searchbar.mdl' -export {NAME as SEARCHBAR_BT,factory as searchbarBt} from './searchbar/searchbar.bt' export {NAME as PASSWORD, directive as PasswordDirective} from './password/password' export {NAME as PASSWORD_MDL,factory as passwordMdl} from './password/password.mdl' export {NAME as SUBMIT, directive as SubmitDirective} from './submit/submit' @@ -41,6 +41,9 @@ export {NAME as COMBO_MDL, factory as comboMdl} from './combo/combo.mdl' export {NAME as DATE_PICKER, directive as DatePickerDirective} from './date-picker/date-picker' export {NAME as DATE_PICKER_MDL, factory as datePickerMdl} from './date-picker/date-picker.mdl' +export {NAME as TITLE, directive as TitleDirective} from './title/title' +export {NAME as TITLE_MDL, factory as titleMdl} from './title/title.mdl' + diff --git a/@salix/core/src/date-picker/date-picker.mdl.html b/@salix/core/src/date-picker/date-picker.mdl.html index cd1617e7b..3bf3b5514 100644 --- a/@salix/core/src/date-picker/date-picker.mdl.html +++ b/@salix/core/src/date-picker/date-picker.mdl.html @@ -1,4 +1,4 @@
- +
diff --git a/@salix/core/src/mdl-override.css b/@salix/core/src/mdl-override.css index b3e0024c6..d0e7b8f4d 100644 --- a/@salix/core/src/mdl-override.css +++ b/@salix/core/src/mdl-override.css @@ -1,7 +1,6 @@ .mdl-textfield { width: 100%; - padding-right: .8em; } .mdl-button--raised { background-color: #ff9400; diff --git a/@salix/core/src/password/password.mdl.html b/@salix/core/src/password/password.mdl.html index 69e5e6a34..87f755a45 100644 --- a/@salix/core/src/password/password.mdl.html +++ b/@salix/core/src/password/password.mdl.html @@ -1,4 +1,4 @@
- +
diff --git a/@salix/core/src/password/password.mdl.js b/@salix/core/src/password/password.mdl.js index e0d1eec2e..102620a8d 100644 --- a/@salix/core/src/password/password.mdl.js +++ b/@salix/core/src/password/password.mdl.js @@ -1,7 +1,7 @@ import {module} from '../module'; import template from './password.mdl.html'; -export const NAME = 'vnPasswordmtFactory'; +export const NAME = 'vnPasswordMdlFactory'; export function factory() { return { diff --git a/@salix/core/src/radio/radio.mdl.html b/@salix/core/src/radio/radio.mdl.html index 5563b2d84..5aacf8195 100644 --- a/@salix/core/src/radio/radio.mdl.html +++ b/@salix/core/src/radio/radio.mdl.html @@ -1,2 +1,2 @@ - + *[text]* diff --git a/@salix/core/src/textfield/textfield.mdl.html b/@salix/core/src/textfield/textfield.mdl.html index d1d931310..b4858676f 100644 --- a/@salix/core/src/textfield/textfield.mdl.html +++ b/@salix/core/src/textfield/textfield.mdl.html @@ -1,4 +1,4 @@
- +
diff --git a/@salix/core/src/title/title.js b/@salix/core/src/title/title.js index 0e94f8909..a31d23616 100644 --- a/@salix/core/src/title/title.js +++ b/@salix/core/src/title/title.js @@ -5,10 +5,11 @@ import * as util from '../util'; const _NAME = 'title'; export const NAME = util.getName(_NAME); -directive.$inject =[resolveFactory.NAME]; +directive.$inject = [resolveFactory.NAME]; export function directive (resolve){ - return{ + return { require:'E', + transclude: true, template: function(_,attr){ return resolve.getTemplate(_NAME, attr); } diff --git a/@salix/core/src/title/title.mdl.html b/@salix/core/src/title/title.mdl.html index 1edab2565..ae367dc10 100644 --- a/@salix/core/src/title/title.mdl.html +++ b/@salix/core/src/title/title.mdl.html @@ -1,2 +1,2 @@ -

-

+

+

\ No newline at end of file diff --git a/@salix/core/src/title/title.mdl.js b/@salix/core/src/title/title.mdl.js index 85fd5e371..27e25f251 100644 --- a/@salix/core/src/title/title.mdl.js +++ b/@salix/core/src/title/title.mdl.js @@ -6,9 +6,8 @@ export const NAME = 'vnTitleMdlFactory'; export function factory() { return { template: template, - transclude: true, default: {} } } -module.factory(NAME, factory); +module.factory(NAME, factory); \ No newline at end of file diff --git a/@salix/crud/src/client/addresses/index.html b/@salix/crud/src/client/addresses/index.html index b874d6545..d8bb95e7a 100644 --- a/@salix/crud/src/client/addresses/index.html +++ b/@salix/crud/src/client/addresses/index.html @@ -1,5 +1,5 @@ -

Addresses

+ Addresses Default Consignee diff --git a/@salix/crud/src/client/basic-data/index.html b/@salix/crud/src/client/basic-data/index.html index ca0e9860b..b38d19fd9 100644 --- a/@salix/crud/src/client/basic-data/index.html +++ b/@salix/crud/src/client/basic-data/index.html @@ -1,27 +1,27 @@
-

Datos básicos

+ Datos básicos - - + + - - + + - - + + - - + + - +
\ No newline at end of file diff --git a/@salix/crud/src/client/fiscal-data/index.html b/@salix/crud/src/client/fiscal-data/index.html index f1cf6d1ba..2ac5fd9b3 100644 --- a/@salix/crud/src/client/fiscal-data/index.html +++ b/@salix/crud/src/client/fiscal-data/index.html @@ -1,49 +1,48 @@
-

Datos fiscales y de facturación

-
+ Datos fiscales y de facturación - - - + + + - - + + - - - + + + - - - + + +
Información de facturación
- - - + + + - - - - + + + +
Documentación
- - - + + + - +
\ No newline at end of file diff --git a/@salix/crud/src/client/index/index.html b/@salix/crud/src/client/index/index.html index ef0249047..8e33b1ef4 100644 --- a/@salix/crud/src/client/index/index.html +++ b/@salix/crud/src/client/index/index.html @@ -3,22 +3,22 @@ - - + + - + - + - - + + - - + + diff --git a/@salix/crud/src/client/web-access/index.html b/@salix/crud/src/client/web-access/index.html index ca202847f..9efea2eba 100644 --- a/@salix/crud/src/client/web-access/index.html +++ b/@salix/crud/src/client/web-access/index.html @@ -1,6 +1,6 @@
-

Acceso Web

- - - + Acceso Web + + +
\ No newline at end of file diff --git a/@salix/login/src/login/login.html b/@salix/login/src/login/login.html index 14f0d1a00..b13b93150 100755 --- a/@salix/login/src/login/login.html +++ b/@salix/login/src/login/login.html @@ -3,9 +3,9 @@
- - - + + +