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.
Angular 4 Upgrade > Additional Edits (#702)
* Allow for proper nesting for getting data for lists and grids (#671) * Changed the list helper getData function to set the result to null if the final part was undefined so that nesting works correctly. * Added unit tests * updates skyux2 docs to use stache2 (#681) * home page and pulling in stache things * removed need for title service * components demo component using stache * removed change to package json * removed unecessary method * updating learn page and removing overview folder * spacing issue fixed * Convert reference topics to Stache 2 * refactored all the tutorial section * Doc tweaks for Stache 2. * Final doc tweaks before merge * versioned without vs * Update builder version (#693) * Update builder version * Remove unneeded packages * Update full page modal header sizes (#679) * Update full page modal header sizes * Update full screen modal screenshots * Travis build 1313 pushed to skyux2 [ci skip] * Update wait component z-index (#684) * Travis build 1316 pushed to skyux2 [ci skip] * Adjust padding for closeable tab (#685) To account for built-in padding in the close button. * Travis build 1318 pushed to skyux2 [ci skip] * Handle styles for filedrop when links are not allowed (#686) * Travis build 1325 pushed to skyux2 [ci skip] * Add cancel button to wizard docs and update modal button spacing (#689) * Added yarn lock * Cleaned files based on lint rules * Removed unused comments * Updated excluded source maps * Updated version of tslint
- Loading branch information
1 parent
9d12239
commit aabd350
Showing
100 changed files
with
1,546 additions
and
1,228 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -32,6 +32,7 @@ Thumbs.db | |
/node_modules | ||
/bower_components | ||
npm-debug.log* | ||
yarn.lock | ||
|
||
# Coverage # | ||
/coverage/ | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
4.4.4 | ||
6.9.1 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
<sky-demo-nav></sky-demo-nav> | ||
<div class="sky-container"> | ||
<h1>Components</h1> | ||
<p> | ||
SKY UX components, available as Angular 2 components, services, and modules, allow developers to easily create user interfaces that incorporate our styles and patterns. <a href="https://angular.io">Angular 2</a> is at the heart of SKY UX, so it is important you are familiar with it before you get started. | ||
</p> | ||
<div class="sky-demo-components-list"> | ||
<sky-demo-button | ||
*ngFor="let component of components" | ||
[url]="component.url" | ||
[componentName]="component.name" | ||
[icon]="component.icon" | ||
> | ||
{{ component.summary }} | ||
</sky-demo-button> | ||
</div> | ||
</div> | ||
<stache | ||
layout="container" | ||
windowTitle="Components" | ||
pageTitle="Components"> | ||
<stache-page-summary> | ||
<p> | ||
SKY UX components, available as Angular 2 components, services, and modules, allow developers to easily create user interfaces that incorporate our styles and patterns. <a href="https://angular.io">Angular 2</a> is at the heart of SKY UX, so it is important you are familiar with it before you get started. | ||
</p> | ||
</stache-page-summary> | ||
<stache-action-buttons [routes]="actionButtonComponents"> | ||
</stache-action-buttons> | ||
</stache> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -196,5 +196,5 @@ export class AppModule { } | |
platformBrowserDynamic().bootstrapModule(AppModule);` | ||
} | ||
]; | ||
}; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,20 +1,11 @@ | ||
<sky-demo-nav></sky-demo-nav> | ||
<div class="sky-container"> | ||
<div class="sky-demo-page"> | ||
<stache | ||
layout="container" | ||
[pageTitle]="title"> | ||
|
||
<div class="sky-demo-page-header"> | ||
<h1> | ||
{{title}} | ||
</h1> | ||
<a | ||
class="sky-btn sky-demo-page-back-btn" | ||
routerLink="/components" | ||
> | ||
<i class="fa fa-long-arrow-left"></i> Return to Components | ||
</a> | ||
</div> | ||
<ng-content select="sky-demo-page-summary"></ng-content> | ||
<stache-page-summary> | ||
<ng-content select="sky-demo-page-summary"></ng-content> | ||
</stache-page-summary> | ||
<ng-content select="sky-demo-page-properties"></ng-content> | ||
<ng-content select="sky-demo-page-example"></ng-content> | ||
</div> | ||
</div> | ||
</stache> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,28 @@ | ||
<sky-demo-nav></sky-demo-nav> | ||
<div class="sky-container"> | ||
<h1>SKY UX 2 is currently in beta</h1> | ||
<stache-hero | ||
overlayOpacity="0" | ||
backgroundImageUrl="~/assets/skyux-background.jpg"> | ||
<stache-hero-heading> | ||
SKYUX 2 | ||
</stache-hero-heading> | ||
<stache-hero-subheading> | ||
A user experience framework for building web applications that leverage Blackbaud’s SKY UX patterns. | ||
</stache-hero-subheading> | ||
</stache-hero> | ||
|
||
<p>SKY UX 2 is a new version of Blackbaud's user experience framework. The UX framework brings a consistent, cohesive experience to our products and allows third-party developers to provide the same consistent experience in their customizations and applications. With AngularJS now in maintenance mode and Angular 2 in general availability, SKY UX 2 takes advantage of <a href="https://angular.io/">Angular 2</a> to keep SKY UX modern while increasing the tooling, testing, and performance available.</p> | ||
|
||
<p>We're still working on the full documentation site, but you can preview the <a routerLink="/components">components documentation</a> and check out our <a href="https://github.com/blackbaud/skyux2">GitHub repo</a>.</p> | ||
</div> | ||
<stache | ||
layout="container" | ||
showBreadcrumbs="false" | ||
windowTitle="SKYUX 2" | ||
pageTitle="SKYUX 2 is currently in beta"> | ||
<stache-page-summary> | ||
<p> | ||
SKY UX 2 is a new version of Blackbaud's user experience framework. The UX framework brings a consistent, cohesive experience to our products and allows third-party developers to provide the same consistent experience in their customizations and applications. With AngularJS now in maintenance mode and Angular 2 in general availability, SKY UX 2 takes advantage of <a href="https://angular.io/">Angular 2</a> to keep SKY UX modern while increasing the tooling, testing, and performance available. | ||
</p> | ||
</stache-page-summary> | ||
<sky-alert [alertType]="warning" [closeable]="false"> | ||
<p> | ||
We're still working on the full documentation site, but you can preview the <a routerLink="/components">components documentation</a> and check out our <a href="https://github.com/blackbaud/skyux2">GitHub repo</a>. | ||
</p> | ||
</sky-alert> | ||
</stache> |
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 |
---|---|---|
@@ -1,15 +1,7 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
import { SkyDemoTitleService } from './shared/title.service'; | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'sky-demo-home', | ||
templateUrl: './home.component.html' | ||
}) | ||
export class SkyDemoHomeComponent implements OnInit { | ||
constructor(private titleService: SkyDemoTitleService) { } | ||
|
||
public ngOnInit() { | ||
this.titleService.setTitle(); | ||
} | ||
} | ||
export class SkyDemoHomeComponent { } |
Oops, something went wrong.