diff --git a/src/app/home.component.ts b/src/app/home.component.ts index d79d3150..2f1c9027 100644 --- a/src/app/home.component.ts +++ b/src/app/home.component.ts @@ -6,12 +6,13 @@ import { StacheNavLink } from './public/src/modules/nav'; templateUrl: './home.component.html' }) export class HomeComponent { - public actionButtonRoutes = [ + public actionButtonRoutes: StacheNavLink[] = [ { name: 'Action Button 1', path: '/demos', icon: 'book', - summary: 'Short summary here.' + summary: 'Short summary here.', + isInternal: true }, { name: 'Action Button 2', @@ -23,7 +24,8 @@ export class HomeComponent { name: 'Action Button 3', path: 'http://google.com', icon: 'certificate', - summary: 'Short summary here.' + summary: 'Short summary here.', + isInternal: true }, { name: 'Action Button 4', diff --git a/src/app/public/src/modules/action-buttons/action-buttons.component.html b/src/app/public/src/modules/action-buttons/action-buttons.component.html index b59cce6a..524a05d8 100644 --- a/src/app/public/src/modules/action-buttons/action-buttons.component.html +++ b/src/app/public/src/modules/action-buttons/action-buttons.component.html @@ -1,27 +1,65 @@
diff --git a/src/app/public/src/modules/action-buttons/action-buttons.module.ts b/src/app/public/src/modules/action-buttons/action-buttons.module.ts index 9054ca64..c83972b3 100644 --- a/src/app/public/src/modules/action-buttons/action-buttons.module.ts +++ b/src/app/public/src/modules/action-buttons/action-buttons.module.ts @@ -7,6 +7,7 @@ import { SkySearchModule } from '@blackbaud/skyux/dist/modules/search'; import { StacheGridModule } from '../grid'; import { StacheActionButtonsComponent } from './action-buttons.component'; import { StacheLinkModule } from '../link'; +import { StacheInternalModule } from '../internal'; @NgModule({ declarations: [ @@ -17,7 +18,8 @@ import { StacheLinkModule } from '../link'; SkyActionButtonModule, SkySearchModule, StacheLinkModule, - StacheGridModule + StacheGridModule, + StacheInternalModule ], exports: [ StacheActionButtonsComponent diff --git a/src/app/public/src/modules/nav/nav-link.ts b/src/app/public/src/modules/nav/nav-link.ts index 031584b7..88fdbc09 100644 --- a/src/app/public/src/modules/nav/nav-link.ts +++ b/src/app/public/src/modules/nav/nav-link.ts @@ -10,4 +10,5 @@ export interface StacheNavLink { isActive?: boolean; isCurrent?: boolean; showInNav?: boolean; + isInternal?: boolean; }