diff --git a/src/modules/sort/sort.module.ts b/src/modules/sort/sort.module.ts
index 64e0b1e93..824f8370f 100644
--- a/src/modules/sort/sort.module.ts
+++ b/src/modules/sort/sort.module.ts
@@ -1,11 +1,29 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
+import {
+ NgModule
+} from '@angular/core';
+import {
+ CommonModule
+} from '@angular/common';
-import { SkySortComponent } from './sort.component';
-import { SkySortItemComponent } from './sort-item.component';
-import { SkyDropdownModule } from '../dropdown';
-import { SkyResourcesModule } from '../resources';
-import { SkyMediaQueryModule } from '../media-queries';
+import {
+ SkyDropdownModule
+} from '../dropdown';
+import {
+ SkyResourcesModule
+} from '../resources';
+import {
+ SkyMediaQueryModule
+} from '../media-queries';
+import {
+ SkyIconModule
+} from '../icon';
+
+import {
+ SkySortComponent
+} from './sort.component';
+import {
+ SkySortItemComponent
+} from './sort-item.component';
@NgModule({
declarations: [
@@ -16,7 +34,8 @@ import { SkyMediaQueryModule } from '../media-queries';
CommonModule,
SkyDropdownModule,
SkyMediaQueryModule,
- SkyResourcesModule
+ SkyResourcesModule,
+ SkyIconModule
],
exports: [
SkySortComponent,
diff --git a/src/modules/tabs/tab-button.component.html b/src/modules/tabs/tab-button.component.html
index f2bbfb287..ac929b6f1 100644
--- a/src/modules/tabs/tab-button.component.html
+++ b/src/modules/tabs/tab-button.component.html
@@ -31,6 +31,6 @@
*ngIf="allowClose"
(click)="doCloseClick();$event.stopPropagation()"
>
-
+
diff --git a/src/modules/tabs/tab-dropdown.component.html b/src/modules/tabs/tab-dropdown.component.html
index 48a98023a..0baf44f36 100644
--- a/src/modules/tabs/tab-dropdown.component.html
+++ b/src/modules/tabs/tab-dropdown.component.html
@@ -23,7 +23,7 @@
class="sky-btn sky-tab-dropdown-item-close sky-padding-even-default"
*ngIf="tab.allowClose"
(click)="closeTab(tab)">
-
+
diff --git a/src/modules/tabs/tabs.module.ts b/src/modules/tabs/tabs.module.ts
index 762cd0b89..93119d59b 100644
--- a/src/modules/tabs/tabs.module.ts
+++ b/src/modules/tabs/tabs.module.ts
@@ -1,15 +1,35 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
+import {
+ NgModule
+} from '@angular/core';
+import {
+ CommonModule
+} from '@angular/common';
-import { SkyDropdownModule } from '../dropdown';
+import {
+ SkyTabButtonComponent
+} from './tab-button.component';
+import {
+ SkyTabDropdownComponent
+} from './tab-dropdown.component';
+import {
+ SkyTabComponent
+} from './tab.component';
+import {
+ SkyTabsetComponent
+} from './tabset.component';
+import {
+ SkyTabsetNavButtonComponent
+} from './tabset-nav-button.component';
-import { SkyTabButtonComponent } from './tab-button.component';
-import { SkyTabDropdownComponent } from './tab-dropdown.component';
-import { SkyTabComponent } from './tab.component';
-import { SkyTabsetComponent } from './tabset.component';
-import { SkyTabsetNavButtonComponent } from './tabset-nav-button.component';
-
-import { SkyResourcesModule } from '../resources';
+import {
+ SkyDropdownModule
+} from '../dropdown';
+import {
+ SkyResourcesModule
+} from '../resources';
+import {
+ SkyIconModule
+} from '../icon';
@NgModule({
declarations: [
@@ -22,7 +42,8 @@ import { SkyResourcesModule } from '../resources';
imports: [
CommonModule,
SkyDropdownModule,
- SkyResourcesModule
+ SkyResourcesModule,
+ SkyIconModule
],
exports: [
SkyTabComponent,
diff --git a/src/modules/tabs/tabset.component.html b/src/modules/tabs/tabset.component.html
index b22d99d53..2160906c1 100644
--- a/src/modules/tabs/tabset.component.html
+++ b/src/modules/tabs/tabset.component.html
@@ -1,11 +1,11 @@
-
-
+
+ >
+
-
-
diff --git a/src/modules/toast/toast.component.html b/src/modules/toast/toast.component.html
index 494cb163e..6b406498b 100644
--- a/src/modules/toast/toast.component.html
+++ b/src/modules/toast/toast.component.html
@@ -18,7 +18,7 @@
[attr.title]="'toast_close_button' | skyResources"
(click)="close()"
>
-
+
diff --git a/src/modules/toast/toast.module.ts b/src/modules/toast/toast.module.ts
index 17ee64cc9..23a11dd42 100644
--- a/src/modules/toast/toast.module.ts
+++ b/src/modules/toast/toast.module.ts
@@ -2,7 +2,6 @@
import {
NgModule
} from '@angular/core';
-
import {
CommonModule
} from '@angular/common';
@@ -10,27 +9,25 @@ import {
import {
SkyResourcesModule
} from '../resources';
-
import {
SkyWindowRefService
} from '../window';
+import {
+ SkyIconModule
+} from '../icon';
import {
SkyToastAdapterService
} from './toast-adapter.service';
-
import {
SkyToastBodyComponent
} from './toast-body.component';
-
import {
SkyToastComponent
} from './toast.component';
-
import {
SkyToasterComponent
} from './toaster.component';
-
import {
SkyToastService
} from './toast.service';
@@ -44,7 +41,8 @@ import {
],
imports: [
CommonModule,
- SkyResourcesModule
+ SkyResourcesModule,
+ SkyIconModule
],
exports: [
SkyToastComponent
diff --git a/src/modules/vertical-tabset/vertical-tabset.component.html b/src/modules/vertical-tabset/vertical-tabset.component.html
index 225457fc4..a2d8c6352 100644
--- a/src/modules/vertical-tabset/vertical-tabset.component.html
+++ b/src/modules/vertical-tabset/vertical-tabset.component.html
@@ -19,7 +19,7 @@
(click)="tabService.showTabs()"
class="sky-btn sky-btn-primary sky-vertical-tabset-show-tabs-btn"
>
-
+
{{ showTabsText }}
diff --git a/src/modules/vertical-tabset/vertical-tabset.module.ts b/src/modules/vertical-tabset/vertical-tabset.module.ts
index 887135950..b8b1372c7 100644
--- a/src/modules/vertical-tabset/vertical-tabset.module.ts
+++ b/src/modules/vertical-tabset/vertical-tabset.module.ts
@@ -1,11 +1,29 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
-import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
+import {
+ NgModule
+} from '@angular/core';
+import {
+ CommonModule
+} from '@angular/common';
+import {
+ BrowserAnimationsModule
+} from '@angular/platform-browser/animations';
-import { SkyVerticalTabsetComponent } from './vertical-tabset.component';
-import { SkyVerticalTabComponent } from './vertical-tab.component';
-import { SkyVerticalTabsetGroupComponent } from './vertical-tabset-group.component';
-import { SkyChevronModule } from './../chevron/chevron.module';
+import {
+ SkyIconModule
+} from '../icon';
+
+import {
+ SkyVerticalTabsetComponent
+} from './vertical-tabset.component';
+import {
+ SkyVerticalTabComponent
+} from './vertical-tab.component';
+import {
+ SkyVerticalTabsetGroupComponent
+} from './vertical-tabset-group.component';
+import {
+ SkyChevronModule
+} from './../chevron/chevron.module';
@NgModule({
declarations: [
@@ -16,7 +34,8 @@ import { SkyChevronModule } from './../chevron/chevron.module';
imports: [
CommonModule,
BrowserAnimationsModule,
- SkyChevronModule
+ SkyChevronModule,
+ SkyIconModule
],
exports: [
SkyVerticalTabsetComponent,