diff --git a/src/app/fuse-fake-db/mail.ts b/src/app/fuse-fake-db/mail.ts index 44c9df31..e0b5c0ab 100644 --- a/src/app/fuse-fake-db/mail.ts +++ b/src/app/fuse-fake-db/mail.ts @@ -442,13 +442,15 @@ export class MailFakeDb 'id' : 0, 'handle': 'starred', 'title' : 'Starred', - 'icon' : 'star' + 'icon' : 'star', + 'color' : 'amber-fg' }, { 'id' : 1, 'handle': 'important', 'title' : 'Important', - 'icon' : 'label' + 'icon' : 'label', + 'color' : 'red-fg' } ]; diff --git a/src/app/main/content/apps/academy/course/course.component.html b/src/app/main/content/apps/academy/course/course.component.html index cb401146..0e868e4a 100644 --- a/src/app/main/content/apps/academy/course/course.component.html +++ b/src/app/main/content/apps/academy/course/course.component.html @@ -38,7 +38,7 @@ menu - diff --git a/src/app/main/content/apps/chat/chat-view/chat-view.component.html b/src/app/main/content/apps/chat/chat-view/chat-view.component.html index 604ceec8..62e1e32b 100644 --- a/src/app/main/content/apps/chat/chat-view/chat-view.component.html +++ b/src/app/main/content/apps/chat/chat-view/chat-view.component.html @@ -9,11 +9,11 @@
-
- chat -
+ diff --git a/src/app/main/content/apps/contacts/contact-list/contact-list.component.html b/src/app/main/content/apps/contacts/contact-list/contact-list.component.html index 232b5629..0416c57c 100644 --- a/src/app/main/content/apps/contacts/contact-list/contact-list.component.html +++ b/src/app/main/content/apps/contacts/contact-list/contact-list.component.html @@ -73,13 +73,13 @@
diff --git a/src/app/main/content/apps/contacts/contact-list/contact-list.component.ts b/src/app/main/content/apps/contacts/contact-list/contact-list.component.ts index d6755396..ce35ee38 100644 --- a/src/app/main/content/apps/contacts/contact-list/contact-list.component.ts +++ b/src/app/main/content/apps/contacts/contact-list/contact-list.component.ts @@ -30,6 +30,7 @@ export class FuseContactsContactListComponent implements OnInit, OnDestroy checkboxes: {}; onContactsChangedSubscription: Subscription; + onFilterChangedSubscription: Subscription; onSelectedContactsChangedSubscription: Subscription; onUserDataChangedSubscription: Subscription; @@ -72,6 +73,10 @@ export class FuseContactsContactListComponent implements OnInit, OnDestroy this.user = user; }); + this.onFilterChangedSubscription = + this.contactsService.onFilterChanged.subscribe(() => { + this.contactsService.deselectContacts(); + }); } ngOnInit() @@ -82,6 +87,7 @@ export class FuseContactsContactListComponent implements OnInit, OnDestroy ngOnDestroy() { this.onContactsChangedSubscription.unsubscribe(); + this.onFilterChangedSubscription.unsubscribe(); this.onSelectedContactsChangedSubscription.unsubscribe(); this.onUserDataChangedSubscription.unsubscribe(); } diff --git a/src/app/main/content/apps/contacts/contacts.service.ts b/src/app/main/content/apps/contacts/contacts.service.ts index 4b15ab2f..f34055ec 100644 --- a/src/app/main/content/apps/contacts/contacts.service.ts +++ b/src/app/main/content/apps/contacts/contacts.service.ts @@ -120,7 +120,7 @@ export class ContactsService implements Resolve */ toggleSelectedContact(id) { - // First, check if we already have that todo as selected... + // First, check if we already have that contact as selected... if ( this.selectedContacts.length > 0 ) { const index = this.selectedContacts.indexOf(id); diff --git a/src/app/main/content/apps/dashboards/analytics/analytics.component.html b/src/app/main/content/apps/dashboards/analytics/analytics.component.html index b430bcca..29995d7b 100644 --- a/src/app/main/content/apps/dashboards/analytics/analytics.component.html +++ b/src/app/main/content/apps/dashboards/analytics/analytics.component.html @@ -41,7 +41,7 @@
-
+
How are your active users trending over time? diff --git a/src/app/main/content/apps/e-commerce/orders/orders.component.html b/src/app/main/content/apps/e-commerce/orders/orders.component.html index 8192e304..0b4462e6 100644 --- a/src/app/main/content/apps/e-commerce/orders/orders.component.html +++ b/src/app/main/content/apps/e-commerce/orders/orders.component.html @@ -21,7 +21,7 @@ -
diff --git a/src/app/main/content/apps/mail-ngrx/sidenavs/main/main-sidenav.component.html b/src/app/main/content/apps/mail-ngrx/sidenavs/main/main-sidenav.component.html index f157dd96..a3d8f041 100644 --- a/src/app/main/content/apps/mail-ngrx/sidenavs/main/main-sidenav.component.html +++ b/src/app/main/content/apps/mail-ngrx/sidenavs/main/main-sidenav.component.html @@ -50,7 +50,7 @@ diff --git a/src/app/main/content/apps/mail/mail-details/mail-details.component.html b/src/app/main/content/apps/mail/mail-details/mail-details.component.html index a1292dc0..5dc940f0 100644 --- a/src/app/main/content/apps/mail/mail-details/mail-details.component.html +++ b/src/app/main/content/apps/mail/mail-details/mail-details.component.html @@ -27,13 +27,13 @@
diff --git a/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html b/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html index 97e668bf..e467ee42 100644 --- a/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html +++ b/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html @@ -49,7 +49,7 @@ diff --git a/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html b/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html index be1bb72e..caa2f1b3 100644 --- a/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html +++ b/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html @@ -326,18 +326,20 @@ {{checklist.name}} -
+ + +
@@ -372,7 +374,7 @@
diff --git a/src/app/main/content/apps/todo/todo-details/todo-details.component.html b/src/app/main/content/apps/todo/todo-details/todo-details.component.html index 13565962..098a1ef7 100644 --- a/src/app/main/content/apps/todo/todo-details/todo-details.component.html +++ b/src/app/main/content/apps/todo/todo-details/todo-details.component.html @@ -20,32 +20,34 @@
- - + +
diff --git a/src/app/main/content/apps/todo/todo-details/todo-details.component.ts b/src/app/main/content/apps/todo/todo-details/todo-details.component.ts index f64737e0..6acf10e5 100644 --- a/src/app/main/content/apps/todo/todo-details/todo-details.component.ts +++ b/src/app/main/content/apps/todo/todo-details/todo-details.component.ts @@ -92,7 +92,7 @@ export class FuseTodoDetailsComponent implements OnInit, OnDestroy this.onCurrentTodoChanged.unsubscribe(); this.onNewTodoClicked.unsubscribe(); } - + focusTitleField() { setTimeout(() => { @@ -157,6 +157,11 @@ export class FuseTodoDetailsComponent implements OnInit, OnDestroy this.todoService.toggleTagOnTodo(tagId, this.todo); } + hasTag(tagId) + { + return this.todoService.hasTag(tagId, this.todo); + } + addTodo() { this.todoService.updateTodo(this.todoForm.getRawValue()); diff --git a/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html b/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html index a5e92e83..a67745d1 100644 --- a/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html +++ b/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html @@ -35,19 +35,19 @@ diff --git a/src/app/main/content/apps/todo/todo.model.ts b/src/app/main/content/apps/todo/todo.model.ts index 4dba7f5f..0d3b3878 100644 --- a/src/app/main/content/apps/todo/todo.model.ts +++ b/src/app/main/content/apps/todo/todo.model.ts @@ -30,7 +30,7 @@ export class Todo this.starred = todo.starred; this.important = todo.important; this.deleted = todo.deleted; - this.tags = todo.tags; + this.tags = todo.tags || []; } } diff --git a/src/app/main/content/apps/todo/todo.service.ts b/src/app/main/content/apps/todo/todo.service.ts index 0e53ca29..5741c08d 100644 --- a/src/app/main/content/apps/todo/todo.service.ts +++ b/src/app/main/content/apps/todo/todo.service.ts @@ -364,10 +364,20 @@ export class TodoService implements Resolve { todo.tags.push(tagId); } - + this.updateTodo(todo); } + hasTag(tagId, todo) + { + if ( !todo.tags ) + { + return false; + } + + return todo.tags.indexOf(tagId) !== -1; + } + /** * Update the todo * @param todo diff --git a/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html b/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html index 645c07ff..93c23710 100644 --- a/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html +++ b/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html @@ -14,7 +14,7 @@ - link + link Reference
diff --git a/src/app/main/content/components-third-party/google-maps/google-maps.component.html b/src/app/main/content/components-third-party/google-maps/google-maps.component.html index a85e5cc0..9f9fe7b5 100644 --- a/src/app/main/content/components-third-party/google-maps/google-maps.component.html +++ b/src/app/main/content/components-third-party/google-maps/google-maps.component.html @@ -14,7 +14,7 @@ - link + link Reference
diff --git a/src/app/main/content/pages/authentication/mail-confirm/mail-confirm.component.html b/src/app/main/content/pages/authentication/mail-confirm/mail-confirm.component.html index 8fee9f79..cd3d0cd2 100644 --- a/src/app/main/content/pages/authentication/mail-confirm/mail-confirm.component.html +++ b/src/app/main/content/pages/authentication/mail-confirm/mail-confirm.component.html @@ -5,7 +5,7 @@
Confirm your email address!
diff --git a/src/app/main/content/pages/faq/faq.component.scss b/src/app/main/content/pages/faq/faq.component.scss index fec5a676..4ce7f168 100644 --- a/src/app/main/content/pages/faq/faq.component.scss +++ b/src/app/main/content/pages/faq/faq.component.scss @@ -23,7 +23,7 @@ h1 { color: white; font-size: 48px; - font-weight: 300; + font-weight: 400; letter-spacing: 0.01em; text-align: center; margin-top: 0; @@ -39,7 +39,7 @@ max-width: 480px; text-align: center; font-weight: 300; - letter-spacing: 0.03em; + letter-spacing: 0.075em; margin: 0; @include media-breakpoint-down('xs') { diff --git a/src/app/main/content/pages/knowledge-base/knowledge-base.component.html b/src/app/main/content/pages/knowledge-base/knowledge-base.component.html index 438e0a82..dd1c904a 100644 --- a/src/app/main/content/pages/knowledge-base/knowledge-base.component.html +++ b/src/app/main/content/pages/knowledge-base/knowledge-base.component.html @@ -22,7 +22,7 @@ - note + note {{ article.title }} diff --git a/src/app/main/content/pages/knowledge-base/knowledge-base.component.scss b/src/app/main/content/pages/knowledge-base/knowledge-base.component.scss index e7e4156f..df0eefef 100644 --- a/src/app/main/content/pages/knowledge-base/knowledge-base.component.scss +++ b/src/app/main/content/pages/knowledge-base/knowledge-base.component.scss @@ -19,7 +19,7 @@ h1 { color: white; font-size: 48px; - font-weight: 300; + font-weight: 400; letter-spacing: 0.01em; text-align: center; margin-top: 0; @@ -35,7 +35,7 @@ max-width: 480px; text-align: center; font-weight: 300; - letter-spacing: 0.03em; + letter-spacing: 0.075em; margin: 0; @include media-breakpoint-down('xs') { diff --git a/src/app/main/content/pages/pricing/style-1/style-1.component.scss b/src/app/main/content/pages/pricing/style-1/style-1.component.scss index 2db4ea0c..dee5cf56 100644 --- a/src/app/main/content/pages/pricing/style-1/style-1.component.scss +++ b/src/app/main/content/pages/pricing/style-1/style-1.component.scss @@ -26,7 +26,7 @@ .h1 { color: white; font-size: 48px; - font-weight: 300; + font-weight: 400; letter-spacing: 0.01em; text-align: center; @@ -41,7 +41,7 @@ text-align: center; margin-top: 16px; font-weight: 300; - letter-spacing: 0.03em; + letter-spacing: 0.05em; @include media-breakpoint-down('xs') { font-size: 14px; diff --git a/src/app/main/content/pages/pricing/style-2/style-2.component.scss b/src/app/main/content/pages/pricing/style-2/style-2.component.scss index 2db4ea0c..dee5cf56 100644 --- a/src/app/main/content/pages/pricing/style-2/style-2.component.scss +++ b/src/app/main/content/pages/pricing/style-2/style-2.component.scss @@ -26,7 +26,7 @@ .h1 { color: white; font-size: 48px; - font-weight: 300; + font-weight: 400; letter-spacing: 0.01em; text-align: center; @@ -41,7 +41,7 @@ text-align: center; margin-top: 16px; font-weight: 300; - letter-spacing: 0.03em; + letter-spacing: 0.05em; @include media-breakpoint-down('xs') { font-size: 14px; diff --git a/src/app/main/content/pages/pricing/style-3/style-3.component.scss b/src/app/main/content/pages/pricing/style-3/style-3.component.scss index 2db4ea0c..dee5cf56 100644 --- a/src/app/main/content/pages/pricing/style-3/style-3.component.scss +++ b/src/app/main/content/pages/pricing/style-3/style-3.component.scss @@ -26,7 +26,7 @@ .h1 { color: white; font-size: 48px; - font-weight: 300; + font-weight: 400; letter-spacing: 0.01em; text-align: center; @@ -41,7 +41,7 @@ text-align: center; margin-top: 16px; font-weight: 300; - letter-spacing: 0.03em; + letter-spacing: 0.05em; @include media-breakpoint-down('xs') { font-size: 14px; diff --git a/src/app/main/content/pages/search/tabs/classic/classic.component.html b/src/app/main/content/pages/search/tabs/classic/classic.component.html index 3c944e60..f2bd31fc 100644 --- a/src/app/main/content/pages/search/tabs/classic/classic.component.html +++ b/src/app/main/content/pages/search/tabs/classic/classic.component.html @@ -5,19 +5,17 @@ 54 - Results + Results
- - Results:  - + Results: 1 - - + - 10 - of + of 54 diff --git a/src/app/main/content/ui/colors/colors.component.html b/src/app/main/content/ui/colors/colors.component.html index 50e848a4..9c11ccf5 100644 --- a/src/app/main/content/ui/colors/colors.component.html +++ b/src/app/main/content/ui/colors/colors.component.html @@ -15,7 +15,7 @@ - link + link Reference diff --git a/src/app/main/content/ui/icons/icons.component.html b/src/app/main/content/ui/icons/icons.component.html index 09a743fa..e8e02e4c 100644 --- a/src/app/main/content/ui/icons/icons.component.html +++ b/src/app/main/content/ui/icons/icons.component.html @@ -1,7 +1,8 @@
-
+
@@ -12,8 +13,9 @@
Icons
- - link + + link Reference @@ -41,7 +43,7 @@
- {{icon}} + {{icon}}
{{icon}}