From 527da316da83912ad35d5f192062c1677fc08daf Mon Sep 17 00:00:00 2001 From: Paolo Arena Date: Thu, 14 Mar 2019 21:09:41 +0100 Subject: [PATCH] - fix Header and Drawer Right - fix Drawer Menu Left - add icon on the Header - fix lang if is different language: set to English. --- .env.development | 2 +- quasar.conf.js | 3 + src/App.vue | 13 +- src/boot/vue-i18n.ts | 20 +- src/components/Header/Header.scss | 1 + src/components/Header/Header.ts | 85 ++++--- src/components/Header/Header.vue | 59 +++-- src/components/logo/logo.ts | 11 +- .../todos/SingleTodo/SingleTodo.scss | 7 + .../todos/SingleTodo/SingleTodo.vue | 8 +- src/components/todos/SubMenus/SubMenus.vue | 2 +- src/components/todos/todo/todo.vue | 34 +-- src/layouts/drawer/drawer.scss | 8 +- src/layouts/drawer/drawer.ts | 32 +-- src/layouts/drawer/drawer.vue | 27 --- src/layouts/img/quasar-logo.png | Bin 63760 -> 0 bytes src/layouts/img/vue-logo.png | Bin 6617 -> 0 bytes src/layouts/menuone/menuOne.vue | 5 +- src/root/home/home.scss | 10 +- src/root/home/home.vue | 18 +- src/statics/i18n.js | 222 +++++++++--------- .../img => statics/images}/avatar-1.svg | 0 src/store/Api/Instance.ts | 1 + src/store/Modules/GlobalStore.ts | 6 +- src/store/Modules/tools.ts | 48 +++- 25 files changed, 319 insertions(+), 303 deletions(-) delete mode 100644 src/layouts/img/quasar-logo.png delete mode 100644 src/layouts/img/vue-logo.png rename src/{layouts/img => statics/images}/avatar-1.svg (100%) diff --git a/.env.development b/.env.development index 29a4926..469ee3e 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ -APP_VERSION="0.0.52" +APP_VERSION="0.0.53" SERVICE_WORKER_FILE="service-worker.js" APP_ID="1" APP_URL="https://freeplanet.app" diff --git a/quasar.conf.js b/quasar.conf.js index 5c1299e..48a4714 100644 --- a/quasar.conf.js +++ b/quasar.conf.js @@ -171,6 +171,9 @@ module.exports = function (ctx) { 'QPopupEdit', 'QCarousel', 'QCarouselControl', + 'QPageScroller', + 'QAvatar', + 'QImg', 'QCarouselSlide' ], directives: [ diff --git a/src/App.vue b/src/App.vue index 5ccd927..0e4614c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,18 +1,17 @@