-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from IgniteUI/IGanchev/ng-cli-mockup
Implement igx-ts empty project mockup
- Loading branch information
Showing
16 changed files
with
109 additions
and
36 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
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
2 changes: 1 addition & 1 deletion
2
templates/angular/igx-ts/date-picker/default/files/src/app/__path__/__name__.component.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<div> | ||
<p>igx-date-picker component. You can read more about configuring the igx-date-picker component | ||
<a href="https://github.com/IgniteUI/igniteui-angular/blob/master/src/date-picker/README.md" target="_blank">here</a>.</p> | ||
<igx-datePicker [cancelButtonLabel]="'Close'"[todayButtonLabel]="'Today'"></igx-datePicker> | ||
<igx-datePicker [cancelButtonLabel]="'Close'"[todayButtonLabel]="'Today'" [value]="today"></igx-datePicker> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.main { | ||
width: 100%; | ||
} | ||
|
||
h3 { | ||
padding-left: 16px; | ||
} | ||
|
||
.content { | ||
flex: 1 1 100%; | ||
padding: 20px; | ||
} |
19 changes: 15 additions & 4 deletions
19
templates/angular/igx-ts/projects/empty/files/src/app/app.component.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 |
---|---|---|
@@ -1,4 +1,15 @@ | ||
<nav style="display: flex; justify-content: center; flex-wrap: wrap"> | ||
<span igxButton *ngFor="let route of topNavLinks" routerLink="{{route.path}}">{{route.name}}</span> | ||
</nav> | ||
<router-outlet></router-outlet> | ||
<div class="main" igxLayout> | ||
<igx-nav-drawer #nav id="project-menu" isOpen="true" [enableGestures]='true' width="280px"> | ||
<ng-template igxDrawer> | ||
<span igxDrawerItem [isHeader]="true">Views</span> | ||
<span *ngFor="let route of topNavLinks" igxDrawerItem igxRipple routerLinkActive="igx-nav-drawer__item--active" routerLink="{{route.path}}">{{route.name}}</span> | ||
</ng-template> | ||
</igx-nav-drawer> | ||
<div igxFlex> | ||
<igx-navbar title="IgniteUI for Angular!" actionButtonIcon="menu" (onAction)="nav.toggle()" igxFlex></igx-navbar> | ||
<div class="content"> | ||
<router-outlet></router-outlet> | ||
</div> | ||
</div> | ||
</div> | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
a { | ||
color: #731963; | ||
} | ||
|
||
.links{ | ||
display: inline-block; | ||
text-align: center; | ||
flex: 1 1 33%; | ||
} | ||
|
||
ul#linksContainer { | ||
display: flex; | ||
} |
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
Binary file added
BIN
+251 KB
templates/angular/igx-ts/projects/empty/files/src/assets/responsive.gif
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 was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
templates/angular/igx-ts/projects/empty/files/src/styles.sass
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,28 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
@import "~igniteui-angular/core/styles/themes/index" | ||
|
||
@include igx-core() | ||
@include igx-theme() | ||
|
||
$purple: #731963 !default | ||
$grey: #f0f0f0 !default | ||
|
||
$app-palette: igx-palette($purple, $grey); | ||
@include igx-theme($app-palette) | ||
|
||
//$navbar-theme: igx-navbar-theme($background: #731963) | ||
//@include igx-navbar($navbar-theme) | ||
$title-margin: 15px | ||
|
||
$carosel-width: 80% | ||
$datepicker-width: 200px | ||
|
||
.content p | ||
margin: $title-margin | ||
|
||
.igx-carousel | ||
width: $carosel-width | ||
|
||
.igx-date-picker | ||
width: $datepicker-width |