diff --git a/@salix/app/src/configroutes.js b/@salix/app/src/configroutes.js index 59f8abb7b..a72eddd63 100644 --- a/@salix/app/src/configroutes.js +++ b/@salix/app/src/configroutes.js @@ -2,10 +2,10 @@ import * as core from 'core'; import * as spliting from './spliting'; import * as deps from './spliting/deps.json'; -function loader(route) { +function loader(module) { return function ($ocLazyLoad, $q) { return $q((resolve) => { - core.splitingRegister.execute(route.module).then(function (dependencies) { + core.splitingRegister.execute(module).then(function (dependencies) { var array = dependencies.map((item) => { return { name: item } }); resolve($ocLazyLoad.load(array)); }); @@ -14,21 +14,24 @@ function loader(route) { } function config($stateProvider, $urlRouterProvider) { - core.splitingRegister.registerGraph(deps); - $urlRouterProvider.otherwise('/clients'); for (var file in routes) - routes[file].forEach(function (route) { - $stateProvider.state(route.state, { - url: route.url, - template: route.template, - resolve: { - loader: loader(route) - } - }) - }); + { + let fileRoutes = routes[file].routes; + let module = routes[file].module; + + fileRoutes.forEach(function(route) { + $stateProvider.state(route.state, { + url: route.url, + template: `<${route.component} full-height>`, + resolve: { + loader: loader(module) + } + }) + }); + } } core.module.config(config); diff --git a/@salix/core/src/button/button.mt.html b/@salix/core/src/button/button.mdl.html similarity index 100% rename from @salix/core/src/button/button.mt.html rename to @salix/core/src/button/button.mdl.html diff --git a/@salix/core/src/button/button.mt.js b/@salix/core/src/button/button.mdl.js similarity index 90% rename from @salix/core/src/button/button.mt.js rename to @salix/core/src/button/button.mdl.js index 9f053d63f..ab0ac07a8 100644 --- a/@salix/core/src/button/button.mt.js +++ b/@salix/core/src/button/button.mdl.js @@ -1,7 +1,7 @@ import {module as _module} from '../module'; import * as util from '../util'; import * as constant from '../constants'; -import template from './button.mt.html'; +import template from './button.mdl.html'; const _NAME = 'button'; const DEFAULT_CLASS = 'mdl-button mdl-js-button mdl-button--raised'; diff --git a/@salix/core/src/check/check.mt.html b/@salix/core/src/check/check.mdl.html similarity index 80% rename from @salix/core/src/check/check.mt.html rename to @salix/core/src/check/check.mdl.html index 66d11f0f1..732d3bf8d 100644 --- a/@salix/core/src/check/check.mt.html +++ b/@salix/core/src/check/check.mdl.html @@ -1,4 +1,4 @@ diff --git a/@salix/core/src/check/check.mt.js b/@salix/core/src/check/check.mdl.js similarity index 88% rename from @salix/core/src/check/check.mt.js rename to @salix/core/src/check/check.mdl.js index 4a7a4cecd..9ebe1cbd3 100644 --- a/@salix/core/src/check/check.mt.js +++ b/@salix/core/src/check/check.mdl.js @@ -1,7 +1,7 @@ import {module as _module} from '../module'; import * as util from '../util'; import * as constant from '../constants'; -import template from './check.mt.html'; +import template from './check.mdl.html'; const _NAME = 'check'; const DEFAULT_CLASS = 'mdl-checkbox__input'; diff --git a/@salix/core/src/combo/combo.mt.html b/@salix/core/src/combo/combo.mdl.html similarity index 75% rename from @salix/core/src/combo/combo.mt.html rename to @salix/core/src/combo/combo.mdl.html index ad05d4a7a..8691bd716 100644 --- a/@salix/core/src/combo/combo.mt.html +++ b/@salix/core/src/combo/combo.mdl.html @@ -1,5 +1,5 @@
-
diff --git a/@salix/core/src/combo/combo.mt.js b/@salix/core/src/combo/combo.mdl.js similarity index 70% rename from @salix/core/src/combo/combo.mt.js rename to @salix/core/src/combo/combo.mdl.js index 598627280..66831ad72 100644 --- a/@salix/core/src/combo/combo.mt.js +++ b/@salix/core/src/combo/combo.mdl.js @@ -1,7 +1,7 @@ import {module} from '../module'; -import template from './combo.mt.html'; +import template from './combo.mdl.html'; -export const NAME = 'vnCombomtFactory'; +export const NAME = 'vnComboMdlFactory'; export function factory() { return { template: template, diff --git a/@salix/core/src/constants.js b/@salix/core/src/constants.js index 8707b4c2f..490ea609f 100644 --- a/@salix/core/src/constants.js +++ b/@salix/core/src/constants.js @@ -3,8 +3,8 @@ export const PREFIX ='vn'; // CSS frameworks -export const MATERIAL_DESIGN_FRAMEWORK = 'mt'; -export const BOOTSTRAP_FRAMEWORK = 'bt'; +export const MATERIAL_DESIGN_FRAMEWORK = 'Mdl'; +export const BOOTSTRAP_FRAMEWORK = 'Bt'; // Module dependencies export const EMPTY_DEPENDECIES = []; diff --git a/@salix/core/src/core.js b/@salix/core/src/core.js index 93a1bb4df..9ba703f7e 100644 --- a/@salix/core/src/core.js +++ b/@salix/core/src/core.js @@ -1,6 +1,4 @@ -/** - * export public module - */ +import mtOverride from './mdl-override.css'; export * from './module' export * from './util' @@ -11,37 +9,40 @@ export {NAME as INTERPOLATE, Interpolate} from './interpolate' export {NAME as ROUTES_LOADER, RoutesLoader} from './routesLoader' export {NAME as BUTTON, directive as ButtonDirective} from './button/button' -export {NAME as BUTTON_MT, factory as buttonMt} from './button/button.mt' +export {NAME as BUTTON_MDL, factory as buttonMdl} from './button/button.mdl' export {NAME as BUTTON_BT, factory as buttonBt} from './button/button.bt' export {NAME as CHECK,directive as CheckDirective} from './check/check' -export {NAME as CHECK_MT, factory as checknMt} from './check/check.mt' +export {NAME as CHECK_MDL, factory as checknMdl} from './check/check.mdl' export {NAME as CHECK_BT, factory as checkBt} from './check/check.bt' export {NAME as RADIO,directive as RadioDirective} from './radio/radio' -export {NAME as RADIO_MT, factory as radionMt} from './radio/radio.mt' +export {NAME as RADIO_MDL, factory as radionMdl} from './radio/radio.mdl' export {NAME as RADIO_BT, factory as radioBt} from './radio/radio.bt' export {NAME as TEXTFIELD, directive as TextfieldDirective} from './textfield/textfield' -export {NAME as TEXTFIELD_MT, factory as textfieldMt} from './textfield/textfield.mt' +export {NAME as TEXTFIELD_MDL, factory as textfieldMdl} from './textfield/textfield.mdl' export {NAME as TEXTFIELD_BT, factory as textfieldBt} from './textfield/textfield.bt' export {NAME as LABEL, directive as LabelDirective} from './label/label' -export {NAME as LABEL_MT, factory as labelMt} from './label/label.mt' +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_MT, factory as iconButtonMt} from './icon-button/icon-button.mt' -export {NAME as SEARCHBAR,factory as searchbar} from './searchbar/searchbar' -export {NAME as SEARCHBAR_MT, factory as searchbarMt} from './searchbar/searchbar.mt' -export {NAME as SEARCHBAR_BT,factory as searchbarBt} from './searchbar/searchbar.bt' +export {NAME as ICON_BUTTON_MDL, factory as iconButtonMdl} from './icon-button/icon-button.mdl' export {NAME as PASSWORD, directive as PasswordDirective} from './password/password' -export {NAME as PASSWORD_MT,factory as passwordMt} from './password/password.mt' +export {NAME as PASSWORD_MDL,factory as passwordMdl} from './password/password.mdl' export {NAME as SUBMIT, directive as SubmitDirective} from './submit/submit' -export {NAME as SUBMIT_MT, factory as submitMt} from './submit/submit.mt' +export {NAME as SUBMIT_MDL, factory as submitMdl} from './submit/submit.mdl' export {NAME as SNACKBAR, directive as SnackbarDirective} from './snackbar/snackbar' -export {NAME as SNACKBAR_MT, factory as snackbarMt} from './snackbar/snackbar.mt' +export {NAME as SNACKBAR_MDL, factory as snackbarMdl} from './snackbar/snackbar.mdl' export {NAME as SPINNER, directive as SpinnerDirective} from './spinner/spinner' -export {NAME as SPINNER_MT, factory as spinnerMt} from './spinner/spinner.mt' +export {NAME as SPINNER_MDL, factory as spinnerMdl} from './spinner/spinner.mdl' export {NAME as COMBO, directive as ComboDirective} from './combo/combo' -export {NAME as COMBO_MT, factory as comboMt} from './combo/combo.mt' +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_MT, factory as datePickerMt} from './date-picker/date-picker.mt' +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.mt.html b/@salix/core/src/date-picker/date-picker.mdl.html similarity index 77% rename from @salix/core/src/date-picker/date-picker.mt.html rename to @salix/core/src/date-picker/date-picker.mdl.html index cd1617e7b..3bf3b5514 100644 --- a/@salix/core/src/date-picker/date-picker.mt.html +++ b/@salix/core/src/date-picker/date-picker.mdl.html @@ -1,4 +1,4 @@
- +
diff --git a/@salix/core/src/date-picker/date-picker.mt.js b/@salix/core/src/date-picker/date-picker.mdl.js similarity index 68% rename from @salix/core/src/date-picker/date-picker.mt.js rename to @salix/core/src/date-picker/date-picker.mdl.js index e9c401385..d8fedc2db 100644 --- a/@salix/core/src/date-picker/date-picker.mt.js +++ b/@salix/core/src/date-picker/date-picker.mdl.js @@ -1,7 +1,7 @@ import {module} from '../module'; -import template from './date-picker.mt.html'; +import template from './date-picker.mdl.html'; -export const NAME = 'vnDatePickermtFactory'; +export const NAME = 'vnDatePickerMdlFactory'; export function factory() { return { template: template, diff --git a/@salix/core/src/icon-button/icon-button.mt.html b/@salix/core/src/icon-button/icon-button.mdl.html similarity index 100% rename from @salix/core/src/icon-button/icon-button.mt.html rename to @salix/core/src/icon-button/icon-button.mdl.html diff --git a/@salix/core/src/icon-button/icon-button.mt.js b/@salix/core/src/icon-button/icon-button.mdl.js similarity index 70% rename from @salix/core/src/icon-button/icon-button.mt.js rename to @salix/core/src/icon-button/icon-button.mdl.js index 7ef6c222d..4ef6d0084 100644 --- a/@salix/core/src/icon-button/icon-button.mt.js +++ b/@salix/core/src/icon-button/icon-button.mdl.js @@ -1,7 +1,7 @@ import {module} from '../module'; -import template from './icon-button.mt.html'; +import template from './icon-button.mdl.html'; -export const NAME = 'vnIconButtonmtFactory'; +export const NAME = 'vnIconButtonMdlFactory'; export function factory() { return { template: template, diff --git a/@salix/core/src/label/label.mt.html b/@salix/core/src/label/label.mdl.html similarity index 100% rename from @salix/core/src/label/label.mt.html rename to @salix/core/src/label/label.mdl.html diff --git a/@salix/core/src/label/label.mt.js b/@salix/core/src/label/label.mdl.js similarity index 87% rename from @salix/core/src/label/label.mt.js rename to @salix/core/src/label/label.mdl.js index 3d1144510..b5db118ec 100644 --- a/@salix/core/src/label/label.mt.js +++ b/@salix/core/src/label/label.mdl.js @@ -1,7 +1,7 @@ import {module as _module} from '../module'; import * as util from '../util'; import * as constant from '../constants'; -import template from './label.mt.html'; +import template from './label.mdl.html'; const _NAME = 'label'; const DEFAULT_TEXT = 'label'; diff --git a/@salix/core/src/mdl-override.css b/@salix/core/src/mdl-override.css new file mode 100644 index 000000000..d0e7b8f4d --- /dev/null +++ b/@salix/core/src/mdl-override.css @@ -0,0 +1,12 @@ + +.mdl-textfield { + width: 100%; +} +.mdl-button--raised { + background-color: #ff9400; + font-weight: bolder; + color: white; +} +.mdl-button--raised:hover { + background-color: #ffa410; +} \ No newline at end of file diff --git a/@salix/core/src/password/password.mt.html b/@salix/core/src/password/password.mdl.html similarity index 83% rename from @salix/core/src/password/password.mt.html rename to @salix/core/src/password/password.mdl.html index 69e5e6a34..87f755a45 100644 --- a/@salix/core/src/password/password.mt.html +++ b/@salix/core/src/password/password.mdl.html @@ -1,4 +1,4 @@
- +
diff --git a/@salix/core/src/password/password.mt.js b/@salix/core/src/password/password.mdl.js similarity index 74% rename from @salix/core/src/password/password.mt.js rename to @salix/core/src/password/password.mdl.js index 5bad39aff..102620a8d 100644 --- a/@salix/core/src/password/password.mt.js +++ b/@salix/core/src/password/password.mdl.js @@ -1,7 +1,7 @@ import {module} from '../module'; -import template from './password.mt.html'; +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 new file mode 100644 index 000000000..5aacf8195 --- /dev/null +++ b/@salix/core/src/radio/radio.mdl.html @@ -0,0 +1,2 @@ + +*[text]* diff --git a/@salix/core/src/radio/radio.mt.js b/@salix/core/src/radio/radio.mdl.js similarity index 89% rename from @salix/core/src/radio/radio.mt.js rename to @salix/core/src/radio/radio.mdl.js index 3d523cdea..ad8ad80d8 100644 --- a/@salix/core/src/radio/radio.mt.js +++ b/@salix/core/src/radio/radio.mdl.js @@ -1,7 +1,7 @@ import {module as _module} from '../module'; import * as util from '../util'; import * as constant from '../constants'; -import template from './radio.mt.html'; +import template from './radio.mdl.html'; const _NAME = 'radio'; const DEFAULT_CLASS = 'mdl-radio mdl-js-radio mdl-js-ripple-effect'; diff --git a/@salix/core/src/radio/radio.mt.html b/@salix/core/src/radio/radio.mt.html deleted file mode 100644 index 5563b2d84..000000000 --- a/@salix/core/src/radio/radio.mt.html +++ /dev/null @@ -1,2 +0,0 @@ - -*[text]* diff --git a/@salix/core/src/resolveDefaultComponents.js b/@salix/core/src/resolveDefaultComponents.js index 03a46d2e0..81def1c34 100644 --- a/@salix/core/src/resolveDefaultComponents.js +++ b/@salix/core/src/resolveDefaultComponents.js @@ -7,7 +7,7 @@ export const NAME = util.getProviderName('ResolveDefaultComponent'); export class ResolveDefaultComponent { constructor(){ - this._frameworkName="mt"; + this._frameworkName='Mdl'; } set frameworkName(value){ //mt or bt @@ -17,7 +17,7 @@ export class ResolveDefaultComponent { //Service Locator return { getTemplate:function(name ,attr){ - this._frameworkName="mt"; + this._frameworkName='Mdl'; let _name = util.getFactoryName( name + this._frameworkName); let defaultfactory = $injector.has(_name) ? $injector.get(_name):undefined; // vnbutonmtFactory if(!defaultfactory) diff --git a/@salix/core/src/searchbar/searchbar.mt.html b/@salix/core/src/searchbar/searchbar.mdl.html similarity index 100% rename from @salix/core/src/searchbar/searchbar.mt.html rename to @salix/core/src/searchbar/searchbar.mdl.html diff --git a/@salix/core/src/searchbar/searchbar.mt.js b/@salix/core/src/searchbar/searchbar.mdl.js similarity index 90% rename from @salix/core/src/searchbar/searchbar.mt.js rename to @salix/core/src/searchbar/searchbar.mdl.js index faa94c3dc..8648745dc 100644 --- a/@salix/core/src/searchbar/searchbar.mt.js +++ b/@salix/core/src/searchbar/searchbar.mdl.js @@ -1,7 +1,7 @@ import {module as _module} from '../module'; import * as util from '../util'; import * as constant from '../constants'; -import template from './searchbar.mt.html'; +import template from './searchbar.mdl.html'; const _NAME = 'searchbar'; const DEFAULT_TEXT = 'Search'; diff --git a/@salix/core/src/snackbar/snackbar.mt.html b/@salix/core/src/snackbar/snackbar.mdl.html similarity index 100% rename from @salix/core/src/snackbar/snackbar.mt.html rename to @salix/core/src/snackbar/snackbar.mdl.html diff --git a/@salix/core/src/snackbar/snackbar.mt.js b/@salix/core/src/snackbar/snackbar.mdl.js similarity index 71% rename from @salix/core/src/snackbar/snackbar.mt.js rename to @salix/core/src/snackbar/snackbar.mdl.js index 9c13da28e..75a0f5170 100644 --- a/@salix/core/src/snackbar/snackbar.mt.js +++ b/@salix/core/src/snackbar/snackbar.mdl.js @@ -1,7 +1,7 @@ import {module} from '../module'; -import template from './snackbar.mt.html'; +import template from './snackbar.mdl.html'; -export const NAME = 'vnSnackbarmtFactory'; +export const NAME = 'vnSnackbarMdlFactory'; export function factory() { return { diff --git a/@salix/core/src/spinner/spinner.mt.html b/@salix/core/src/spinner/spinner.mdl.html similarity index 100% rename from @salix/core/src/spinner/spinner.mt.html rename to @salix/core/src/spinner/spinner.mdl.html diff --git a/@salix/core/src/spinner/spinner.mt.js b/@salix/core/src/spinner/spinner.mdl.js similarity index 71% rename from @salix/core/src/spinner/spinner.mt.js rename to @salix/core/src/spinner/spinner.mdl.js index a7ca37d90..581404463 100644 --- a/@salix/core/src/spinner/spinner.mt.js +++ b/@salix/core/src/spinner/spinner.mdl.js @@ -1,7 +1,7 @@ import {module} from '../module'; -import template from './spinner.mt.html'; +import template from './spinner.mdl.html'; -export const NAME = 'vnSpinnermtFactory'; +export const NAME = 'vnSpinnerMdlFactory'; export function factory() { return { diff --git a/@salix/core/src/submit/submit.mdl.html b/@salix/core/src/submit/submit.mdl.html new file mode 100644 index 000000000..7a574413b --- /dev/null +++ b/@salix/core/src/submit/submit.mdl.html @@ -0,0 +1,2 @@ + + diff --git a/@salix/core/src/submit/submit.mt.js b/@salix/core/src/submit/submit.mdl.js similarity index 67% rename from @salix/core/src/submit/submit.mt.js rename to @salix/core/src/submit/submit.mdl.js index 33c5e5454..f22646e80 100644 --- a/@salix/core/src/submit/submit.mt.js +++ b/@salix/core/src/submit/submit.mdl.js @@ -1,13 +1,13 @@ import {module} from '../module'; -import template from './submit.mt.html'; +import template from './submit.mdl.html'; -export const NAME = 'vnSubmitmtFactory'; +export const NAME = 'vnSubmitMdlFactory'; export function factory() { return { template: template, default: { - text: 'Submit', + label: 'Submit', className: 'mdl-button mdl-js-button mdl-button--raised', enabled: 'true' } diff --git a/@salix/core/src/submit/submit.mt.html b/@salix/core/src/submit/submit.mt.html deleted file mode 100644 index fa4ddabb5..000000000 --- a/@salix/core/src/submit/submit.mt.html +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/@salix/core/src/textfield/textfield.mt.html b/@salix/core/src/textfield/textfield.mdl.html similarity index 81% rename from @salix/core/src/textfield/textfield.mt.html rename to @salix/core/src/textfield/textfield.mdl.html index d1d931310..b4858676f 100644 --- a/@salix/core/src/textfield/textfield.mt.html +++ b/@salix/core/src/textfield/textfield.mdl.html @@ -1,4 +1,4 @@
- +
diff --git a/@salix/core/src/textfield/textfield.mt.js b/@salix/core/src/textfield/textfield.mdl.js similarity index 90% rename from @salix/core/src/textfield/textfield.mt.js rename to @salix/core/src/textfield/textfield.mdl.js index a632c0336..c2ab4fdee 100644 --- a/@salix/core/src/textfield/textfield.mt.js +++ b/@salix/core/src/textfield/textfield.mdl.js @@ -1,7 +1,7 @@ import {module as _module} from '../module'; import * as util from '../util'; import * as constant from '../constants'; -import template from './textfield.mt.html'; +import template from './textfield.mdl.html'; const _NAME = 'textfield'; const DEFAULT_LABEL = 'text'; diff --git a/@salix/core/src/title/title.js b/@salix/core/src/title/title.js new file mode 100644 index 000000000..a31d23616 --- /dev/null +++ b/@salix/core/src/title/title.js @@ -0,0 +1,19 @@ +import {module} from '../module'; +import * as resolveFactory from '../resolveDefaultComponents'; +import * as util from '../util'; + +const _NAME = 'title'; +export const NAME = util.getName(_NAME); + +directive.$inject = [resolveFactory.NAME]; +export function directive (resolve){ + return { + require:'E', + transclude: true, + template: function(_,attr){ + return resolve.getTemplate(_NAME, attr); + } + } +} + +module.directive(NAME,directive); diff --git a/@salix/core/src/title/title.mdl.html b/@salix/core/src/title/title.mdl.html new file mode 100644 index 000000000..ae367dc10 --- /dev/null +++ b/@salix/core/src/title/title.mdl.html @@ -0,0 +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 new file mode 100644 index 000000000..27e25f251 --- /dev/null +++ b/@salix/core/src/title/title.mdl.js @@ -0,0 +1,13 @@ +import {module} from '../module'; +import template from './title.mdl.html'; + +export const NAME = 'vnTitleMdlFactory'; + +export function factory() { + return { + template: template, + default: {} + } +} + +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 297d8053d..d8bb95e7a 100644 --- a/@salix/crud/src/client/addresses/index.html +++ b/@salix/crud/src/client/addresses/index.html @@ -1,6 +1,6 @@ - -

Addresses

- + + Addresses + Default Consignee Enabled diff --git a/@salix/crud/src/client/basic-data/index.html b/@salix/crud/src/client/basic-data/index.html index e5b234c8c..b38d19fd9 100644 --- a/@salix/crud/src/client/basic-data/index.html +++ b/@salix/crud/src/client/basic-data/index.html @@ -1,30 +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 8db1f43d0..7cd9c0829 100644 --- a/@salix/crud/src/client/fiscal-data/index.html +++ b/@salix/crud/src/client/fiscal-data/index.html @@ -1,50 +1,49 @@ -
-

Datos fiscales y de facturación

-
- + + + Datos fiscales y de facturación - - - + + + - - + + - - - + + + - - - + + +
Información de facturación
- - - + + + - - - - + + + +
-
DOCUMENTACION
+
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 32eab6c59..8e33b1ef4 100644 --- a/@salix/crud/src/client/index/index.html +++ b/@salix/crud/src/client/index/index.html @@ -1,42 +1,26 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/@salix/crud/src/client/routes.js b/@salix/crud/src/client/routes.js index 8da7e80a6..8ba719537 100644 --- a/@salix/crud/src/client/routes.js +++ b/@salix/crud/src/client/routes.js @@ -1,35 +1,30 @@ -[ - { +{ + module: 'crud', + routes: [{ url: '/clients', state: 'clients', - template: '', - module: 'crud', + component: 'vn-client-index', description: '', image: '', },{ url: '/client', state: 'client', - template: '', - module: 'crud', + component: 'vn-client-client', },{ url: '/basic-data', state: 'client.basicdata', - template: '', - module: 'crud' + component: 'vn-client-basic-data', },{ url: '/addresses', state: 'client.addresses', - template: '', - module: 'crud' + component: 'vn-client-addresses', },{ url: '/fiscal-data', state: 'client.fiscaldata', - template: '', - module: 'crud' + component: 'vn-client-fiscal-data', },{ url: '/web-access', state: 'client.webaccess', - template: '', - module: 'crud' - } -] \ No newline at end of file + component: 'vn-client-web-access', + }] +} \ No newline at end of file diff --git a/@salix/crud/src/client/web-access/index.html b/@salix/crud/src/client/web-access/index.html index 3539f71fb..9efea2eba 100644 --- a/@salix/crud/src/client/web-access/index.html +++ b/@salix/crud/src/client/web-access/index.html @@ -1,18 +1,6 @@ -
- - -

Acceso Web

-
- - - - - - - - - - - -
+ + Acceso Web + + +
\ No newline at end of file diff --git a/@salix/crud/src/crud.js b/@salix/crud/src/crud.js index e1e30d8da..1de4eb12d 100644 --- a/@salix/crud/src/crud.js +++ b/@salix/crud/src/crud.js @@ -1,15 +1,2 @@ export * from './module'; export * from './client/client'; - -export {NAME as NAVIGATION_INDEX, - COMPONENT as NAVIGATION_INDEX_COMPONENT} from './navigation/index'; -export {NAME as NAVIGATION_ITEM, - COMPONENT as NAVIGATION_ITEM_COMPONENT} from './navigation/index/item'; -export {NAME as NAVIGATION_LIST, - COMPONENT as NAVIGATION_LIST_COMPONENT} from './navigation/index/list'; -export {NAME as NAVIGATION_HEADER, - COMPONENT as NAVIGATION_HEADER_COMPONENT} from './navigation/index/header'; -export {NAME as NAVIGATION_MAIN, - COMPONENT as NAVIGATION_MAIN_COMPONENT} from './navigation/index/main'; -export {NAME as NAVIGATION_COMPOSE, - COMPONENT as NAVIGATION_COMPOSE_COMPONENT} from './navigation/index/compose'; diff --git a/@salix/crud/src/navigation/index/compose.html b/@salix/crud/src/navigation/index/compose.html deleted file mode 100644 index 82debc33d..000000000 --- a/@salix/crud/src/navigation/index/compose.html +++ /dev/null @@ -1,9 +0,0 @@ -
- -
- -
-
- -
-
diff --git a/@salix/crud/src/navigation/index/compose.js b/@salix/crud/src/navigation/index/compose.js deleted file mode 100644 index f8a4ce870..000000000 --- a/@salix/crud/src/navigation/index/compose.js +++ /dev/null @@ -1,20 +0,0 @@ -import template from './compose.html'; -import {module} from '../../module'; - -export const NAME = 'navigationCompose'; - -export const COMPONENT = { - template: template, - controller: function() { - this.items = [{icon: 'home', text: 'Opcion 1', link: ''}, - {icon: 'inbox', text: 'Opcion 2', link: ''}, - {icon: 'delete', text: 'Opcion 3', link: ''}, - {icon: 'report', text: 'Opcion 4', link: ''}, - {icon: 'forum', text: 'Opcion 5', link: ''}, - {icon: 'flag', text: 'Opcion 6', link: ''}, - {icon: 'local_offer', text: 'Opcion 7', link: ''}, - {icon: 'shopping_cart', text: 'Opcion 8', link: ''}, - {icon: 'people', text: 'Opcion 9', link: ''}]; - } -}; -module.component(NAME, COMPONENT); diff --git a/@salix/crud/src/navigation/index/css/styles b/@salix/crud/src/navigation/index/css/styles deleted file mode 100644 index 048208653..000000000 --- a/@salix/crud/src/navigation/index/css/styles +++ /dev/null @@ -1,208 +0,0 @@ -html, body { - font-family: 'Roboto', 'Helvetica', sans-serif; -} -.demo-avatar { - width: 48px; - height: 48px; - border-radius: 24px; -} -.demo-layout .demo-header .mdl-textfield { - padding: 0px; - margin-top: 41px; -} -.demo-layout .demo-header .mdl-textfield .mdl-textfield__expandable-holder { - bottom: 19px; -} -.demo-layout .mdl-layout__header .mdl-layout__drawer-button { - color: rgba(0, 0, 0, 0.54); -} -.mdl-layout__drawer .avatar { - margin-bottom: 16px; -} -.demo-drawer { - border: none; -} -/* iOS Safari specific workaround */ -.demo-drawer .mdl-menu__container { - z-index: -1; -} -.demo-drawer .demo-navigation { - z-index: -2; -} -/* END iOS Safari specific workaround */ -.demo-drawer .mdl-menu .mdl-menu__item { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; -} -.demo-drawer-header { - box-sizing: border-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - padding: 16px; - height: 151px; -} -.demo-avatar-dropdown { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - position: relative; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - width: 100%; -} - -.demo-navigation { - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} -.demo-layout .demo-navigation .mdl-navigation__link { - display: -webkit-flex !important; - display: -ms-flexbox !important; - display: flex !important; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - color: rgba(255, 255, 255, 0.56); - font-weight: 500; -} -.demo-layout .demo-navigation .mdl-navigation__link:hover { - background-color: #00BCD4; - color: #37474F; -} -.demo-navigation .mdl-navigation__link .material-icons { - font-size: 24px; - color: rgba(255, 255, 255, 0.56); - margin-right: 32px; -} - -.demo-content { - max-width: 1080px; -} - -.demo-charts { - -webkit-align-items: center; - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; -} -.demo-chart:nth-child(1) { - color: #ACEC00; -} -.demo-chart:nth-child(2) { - color: #00BBD6; -} -.demo-chart:nth-child(3) { - color: #BA65C9; -} -.demo-chart:nth-child(4) { - color: #EF3C79; -} -.demo-graphs { - padding: 16px 32px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-align-items: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} -/* TODO: Find a proper solution to have the graphs - * not float around outside their container in IE10/11. - * Using a browserhacks.com solution for now. - */ -_:-ms-input-placeholder, :root .demo-graphs { - min-height: 664px; -} -_:-ms-input-placeholder, :root .demo-graph { - max-height: 300px; -} -/* TODO end */ -.demo-graph:nth-child(1) { - color: #00b9d8; -} -.demo-graph:nth-child(2) { - color: #d9006e; -} - -.demo-cards { - -webkit-align-items: flex-start; - -ms-flex-align: start; - -ms-grid-row-align: flex-start; - align-items: flex-start; - -webkit-align-content: flex-start; - -ms-flex-line-pack: start; - align-content: flex-start; -} -.demo-cards .demo-separator { - height: 32px; -} -.demo-cards .mdl-card__title.mdl-card__title { - color: white; - font-size: 24px; - font-weight: 400; -} -.demo-cards ul { - padding: 0; -} -.demo-cards h3 { - font-size: 1em; -} -.demo-updates .mdl-card__title { - min-height: 200px; - background-image: url('images/dog.png'); - background-position: 90% 100%; - background-repeat: no-repeat; -} -.demo-cards .mdl-card__actions a { - color: #00BCD4; - text-decoration: none; -} - -.demo-options h3 { - margin: 0; -} -.demo-options .mdl-checkbox__box-outline { - border-color: rgba(255, 255, 255, 0.89); -} -.demo-options ul { - margin: 0; - list-style-type: none; -} -.demo-options li { - margin: 4px 0; -} -.demo-options .material-icons { - color: rgba(255, 255, 255, 0.89); -} -.demo-options .mdl-card__actions { - height: 64px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - box-sizing: border-box; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; -} \ No newline at end of file diff --git a/@salix/crud/src/navigation/index/css/styles.css b/@salix/crud/src/navigation/index/css/styles.css deleted file mode 100644 index f0951f003..000000000 --- a/@salix/crud/src/navigation/index/css/styles.css +++ /dev/null @@ -1,234 +0,0 @@ -/** - * Copyright 2015 Google Inc. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -html, body { - font-family: 'Roboto', 'Helvetica', sans-serif; -} - -.demo-avatar { - width: 40px; - height: 40px; - border-radius: 24px; -} - -.mdl-textfield--expandable .mdl-button--icon { - top: 0px; -} - -.demo-layout .demo-header .mdl-textfield { - margin-top: 41px; -} -.demo-layout .demo-header .mdl-textfield .mdl-textfield__expandable-holder { - bottom: 19px; -} -.demo-layout .mdl-layout__header .mdl-layout__drawer-button { - color: rgba(0, 0, 0, 0.54); -} -.mdl-layout__drawer .avatar { - margin-bottom: 16px; -} -.demo-drawer { - border: none; -} -/* iOS Safari specific workaround */ -.demo-drawer .mdl-menu__container { - z-index: -1; -} -.demo-drawer .demo-navigation { - z-index: -2; -} -/* END iOS Safari specific workaround */ -.demo-drawer .mdl-menu .mdl-menu__item { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; -} -.demo-drawer-header { - box-sizing: border-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - height: 64px; - padding-bottom: 12px; - padding-left: 16px; -} -.demo-avatar-dropdown { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - position: relative; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - width: 100%; -} - -.demo-navigation { - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} -.demo-layout .demo-navigation .mdl-navigation__link { - display: -webkit-flex !important; - display: -ms-flexbox !important; - display: flex !important; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - color: #424242; - font-weight: 500; -} -.demo-layout .demo-navigation .mdl-navigation__link:hover { - background-color: #ff9800; - color: #fff; -} -.demo-navigation .mdl-navigation__link .material-icons { - font-size: 24px; - color: rgba(255, 255, 255, 0.56); - margin-right: 32px; -} - -.demo-content { - max-width: 1080px; -} - -.demo-charts { - -webkit-align-items: center; - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; -} -.demo-chart:nth-child(1) { - color: #ACEC00; -} -.demo-chart:nth-child(2) { - color: #00BBD6; -} -.demo-chart:nth-child(3) { - color: #BA65C9; -} -.demo-chart:nth-child(4) { - color: #EF3C79; -} -.demo-graphs { - padding: 16px 32px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-align-items: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} -/* TODO: Find a proper solution to have the graphs - * not float around outside their container in IE10/11. - * Using a browserhacks.com solution for now. - */ -_:-ms-input-placeholder, :root .demo-graphs { - min-height: 664px;º -} -_:-ms-input-placeholder, :root .demo-graph { - max-height: 300px; -} -/* TODO end */ -.demo-graph:nth-child(1) { - color: #00b9d8; -} -.demo-graph:nth-child(2) { - color: #d9006e; -} - -.demo-cards { - -webkit-align-items: flex-start; - -ms-flex-align: start; - -ms-grid-row-align: flex-start; - align-items: flex-start; - -webkit-align-content: flex-start; - -ms-flex-line-pack: start; - align-content: flex-start; -} -.demo-cards .demo-separator { - height: 32px; -} -.demo-cards .mdl-card__title.mdl-card__title { - color: white; - padding-bottom: 30px; - font-size: 24px; - font-weight: 400; -} - -.demo-cards ul { - padding: 0; -} - -.demo-cards h3 { - font-size: 1em; -} -.demo-updates .mdl-card__title { - height: 64px; -} - -.demo-cards .mdl-card__actions a { - color: ; - text-decoration: none; -} - -.demo-options h3 { - margin: 0; -} -.demo-options .mdl-checkbox__box-outline { - border-color: rgba(255, 255, 255, 0.89); -} -.demo-options ul { - margin: 0; - list-style-type: none; -} -.demo-options li { - margin: 4px 0; -} -.demo-options .material-icons { - color: rgba(255, 255, 255, 0.89); -} -.demo-options .mdl-card__actions { - height: 64px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - box-sizing: border-box; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; -} - - - diff --git a/@salix/crud/src/navigation/index/header.html b/@salix/crud/src/navigation/index/header.html deleted file mode 100644 index 09fec1e42..000000000 --- a/@salix/crud/src/navigation/index/header.html +++ /dev/null @@ -1,24 +0,0 @@ -
-
-
-
- -
- -
-
- -
- - -
    -
  • Opcion
  • -
  • Opcion
  • -
  • Opcion
  • -
-
-
\ No newline at end of file diff --git a/@salix/crud/src/navigation/index/header.js b/@salix/crud/src/navigation/index/header.js deleted file mode 100644 index 2b6160d46..000000000 --- a/@salix/crud/src/navigation/index/header.js +++ /dev/null @@ -1,10 +0,0 @@ -import template from './header.html'; -import {module} from '../../module'; - -export const NAME = 'navigationHeader'; - -export const COMPONENT = { - template: template -}; - -module.component(NAME, COMPONENT); diff --git a/@salix/crud/src/navigation/index/index.html b/@salix/crud/src/navigation/index/index.html deleted file mode 100644 index a9be77130..000000000 --- a/@salix/crud/src/navigation/index/index.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/@salix/crud/src/navigation/index/index.js b/@salix/crud/src/navigation/index/index.js deleted file mode 100644 index 680ac7c56..000000000 --- a/@salix/crud/src/navigation/index/index.js +++ /dev/null @@ -1,11 +0,0 @@ -import template from './index.html'; -import {module} from '../../module'; - -export const NAME = 'navigationIndex'; - -export const COMPONENT = { - template: template, -}; - -module.component(NAME, COMPONENT); - diff --git a/@salix/crud/src/navigation/index/item.html b/@salix/crud/src/navigation/index/item.html deleted file mode 100644 index 1be1dc305..000000000 --- a/@salix/crud/src/navigation/index/item.html +++ /dev/null @@ -1,4 +0,0 @@ - - {{$ctrl.item.icon}} - {{$ctrl.item.text}} - \ No newline at end of file diff --git a/@salix/crud/src/navigation/index/item.js b/@salix/crud/src/navigation/index/item.js deleted file mode 100644 index 452d05499..000000000 --- a/@salix/crud/src/navigation/index/item.js +++ /dev/null @@ -1,13 +0,0 @@ -import template from './item.html'; -import {module} from '../../module'; - -export const NAME = 'navigationItem'; - -export const COMPONENT = { - template: template, - bindings: { - item: '<' - } -}; - -module.component(NAME, COMPONENT); diff --git a/@salix/crud/src/navigation/index/list.html b/@salix/crud/src/navigation/index/list.html deleted file mode 100644 index 14e069f0f..000000000 --- a/@salix/crud/src/navigation/index/list.html +++ /dev/null @@ -1,8 +0,0 @@ -
- -
- diff --git a/@salix/crud/src/navigation/index/list.js b/@salix/crud/src/navigation/index/list.js deleted file mode 100644 index 664f9f7b3..000000000 --- a/@salix/crud/src/navigation/index/list.js +++ /dev/null @@ -1,13 +0,0 @@ -import template from './list.html'; -import {module} from '../../module'; - -export const NAME = 'navigationList'; - -export const COMPONENT = { - template: template, - bindings: { - items: '<' - } -}; - -module.component(NAME, COMPONENT); diff --git a/@salix/crud/src/navigation/index/main.html b/@salix/crud/src/navigation/index/main.html deleted file mode 100644 index ee8548645..000000000 --- a/@salix/crud/src/navigation/index/main.html +++ /dev/null @@ -1,13 +0,0 @@ -
-
-
-

Opciones

-
-
- Cuerpo principal de la tarjeta "opciones" -
- -
-
\ No newline at end of file diff --git a/@salix/crud/src/navigation/index/main.js b/@salix/crud/src/navigation/index/main.js deleted file mode 100644 index f42898106..000000000 --- a/@salix/crud/src/navigation/index/main.js +++ /dev/null @@ -1,10 +0,0 @@ -import template from './main.html'; -import {module} from '../../module'; - -export const NAME = 'navigationMain'; - -export const COMPONENT = { - template: template -}; - -module.component(NAME, COMPONENT); diff --git a/@salix/crud/src/navigation/index/style.css b/@salix/crud/src/navigation/index/style.css deleted file mode 100644 index e9654abcc..000000000 --- a/@salix/crud/src/navigation/index/style.css +++ /dev/null @@ -1,234 +0,0 @@ -/** - * Copyright 2015 Google Inc. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -html, body { - font-family: 'Roboto', 'Helvetica', sans-serif; -} - -.demo-avatar { - width: 40px; - height: 40px; - border-radius: 24px; -} - -.mdl-textfield--expandable .mdl-button--icon { - top: 0px; -} - -.demo-layout .demo-header .mdl-textfield { - margin-top: 41px; -} -.demo-layout .demo-header .mdl-textfield .mdl-textfield__expandable-holder { - bottom: 19px; -} -.demo-layout .mdl-layout__header .mdl-layout__drawer-button { - color: rgba(0, 0, 0, 0.54); -} -.mdl-layout__drawer .avatar { - margin-bottom: 16px; -} -.demo-drawer { - border: none; -} -/* iOS Safari specific workaround */ -.demo-drawer .mdl-menu__container { - z-index: -1; -} -.demo-drawer .demo-navigation { - z-index: -2; -} -/* END iOS Safari specific workaround */ -.demo-drawer .mdl-menu .mdl-menu__item { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; -} -.demo-drawer-header { - box-sizing: border-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - height: 64px; - padding-bottom: 12px; - padding-left: 16px; -} -.demo-avatar-dropdown { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - position: relative; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - width: 100%; -} - -.demo-navigation { - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} -.demo-layout .demo-navigation .mdl-navigation__link { - display: -webkit-flex !important; - display: -ms-flexbox !important; - display: flex !important; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - color: #424242; - font-weight: 500; -} -.demo-layout .demo-navigation .mdl-navigation__link:hover { - background-color: #ff9800; - color: #fff; -} -.demo-navigation .mdl-navigation__link .material-icons { - font-size: 24px; - color: rgba(255, 255, 255, 0.56); - margin-right: 32px; -} - -.demo-content { - max-width: 1080px; -} - -.demo-charts { - -webkit-align-items: center; - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; -} -.demo-chart:nth-child(1) { - color: #ACEC00; -} -.demo-chart:nth-child(2) { - color: #00BBD6; -} -.demo-chart:nth-child(3) { - color: #BA65C9; -} -.demo-chart:nth-child(4) { - color: #EF3C79; -} -.demo-graphs { - padding: 16px 32px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-align-items: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} -/* TODO: Find a proper solution to have the graphs - * not float around outside their container in IE10/11. - * Using a browserhacks.com solution for now. - */ -_:-ms-input-placeholder, :root .demo-graphs { - min-height: 664px; -} -_:-ms-input-placeholder, :root .demo-graph { - max-height: 300px; -} -/* TODO end */ -.demo-graph:nth-child(1) { - color: #00b9d8; -} -.demo-graph:nth-child(2) { - color: #d9006e; -} - -.demo-cards { - -webkit-align-items: flex-start; - -ms-flex-align: start; - -ms-grid-row-align: flex-start; - align-items: flex-start; - -webkit-align-content: flex-start; - -ms-flex-line-pack: start; - align-content: flex-start; -} -.demo-cards .demo-separator { - height: 32px; -} -.demo-cards .mdl-card__title.mdl-card__title { - color: white; - padding-bottom: 30px; - font-size: 24px; - font-weight: 400; -} - -.demo-cards ul { - padding: 0; -} - -.demo-cards h3 { - font-size: 1em; -} -.demo-updates .mdl-card__title { - height: 64px; -} - -.demo-cards .mdl-card__actions a { - color: ; - text-decoration: none; -} - -.demo-options h3 { - margin: 0; -} -.demo-options .mdl-checkbox__box-outline { - border-color: rgba(255, 255, 255, 0.89); -} -.demo-options ul { - margin: 0; - list-style-type: none; -} -.demo-options li { - margin: 4px 0; -} -.demo-options .material-icons { - color: rgba(255, 255, 255, 0.89); -} -.demo-options .mdl-card__actions { - height: 64px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - box-sizing: border-box; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; -} - - - diff --git a/@salix/crud/src/navigation/routes.js b/@salix/crud/src/navigation/routes.js deleted file mode 100644 index 6db83b497..000000000 --- a/@salix/crud/src/navigation/routes.js +++ /dev/null @@ -1,8 +0,0 @@ -[{ - url: '/navigation', - state: 'navigation', - template: '', - module: 'crud', - description: '', - image: '', -}] diff --git a/@salix/login/src/login/login.html b/@salix/login/src/login/login.html index 814fec138..b13b93150 100755 --- a/@salix/login/src/login/login.html +++ b/@salix/login/src/login/login.html @@ -1,16 +1,16 @@