This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'link-records' of https://github.com/blackbaud-joshgerde…
…s/skyux2 into link-records
- Loading branch information
Showing
9 changed files
with
121 additions
and
5 deletions.
There are no files selected for viewing
Binary file added
BIN
+5.05 KB
...-tests/screenshots-baseline/vertical-Tabset-No-Groups-chrome-1000x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/modules/vertical-tabset/fixtures/vertical-tabset-no-group.component.fixture.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="vertical-tabset-test-indexchange">current index = {{ currentIndex }}</div> | ||
<sky-vertical-tabset (activeChange)="indexChanged($event)"> | ||
<sky-vertical-tab tabHeading="tab 1"> | ||
Tab 1 content | ||
</sky-vertical-tab> | ||
<sky-vertical-tab tabHeading="tab 2" active="true"> | ||
Tab 2 content | ||
</sky-vertical-tab> | ||
<sky-vertical-tab tabHeading="tab 3"> | ||
Tab 3 content | ||
</sky-vertical-tab> | ||
</sky-vertical-tabset> |
13 changes: 13 additions & 0 deletions
13
src/modules/vertical-tabset/fixtures/vertical-tabset-no-group.component.fixture.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'sky-test-cmp', | ||
templateUrl: './vertical-tabset-no-group.component.fixture.html' | ||
}) | ||
export class VerticalTabsetNoGroupTestComponent { | ||
public currentIndex: number = undefined; | ||
|
||
public indexChanged(index: number) { | ||
this.currentIndex = index; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters