This repository has been archived by the owner on Mar 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #69 from kreuzwerker/feature/68_update_dependencies
#68 update Angular Material, ng-dynamic-forms
- Loading branch information
Showing
114 changed files
with
721 additions
and
699 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
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
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,20 @@ | ||
<md-menu #userMenu="mdMenu" yPosition="below"> | ||
<button md-menu-item (click)="signOut()"> | ||
<md-icon>exit_to_app</md-icon> | ||
<mat-menu #userMenu="matMenu" yPosition="below"> | ||
<button mat-menu-item (click)="signOut()"> | ||
<mat-icon>exit_to_app</mat-icon> | ||
<span>Log out</span> | ||
</button> | ||
<button md-menu-item (click)="goTo('api-info')"> | ||
<md-icon>info</md-icon> | ||
<button mat-menu-item (click)="goTo('api-info')"> | ||
<mat-icon>info</mat-icon> | ||
<span>API info</span> | ||
</button> | ||
</md-menu> | ||
</mat-menu> | ||
|
||
<button md-button [mdMenuTriggerFor]="userMenu"> | ||
<button mat-button [matMenuTriggerFor]="userMenu"> | ||
<img *ngIf="getAvatar(); else userAvatar" class="avatar" [src]="getAvatar()" alt=""> | ||
<ng-template #userAvatar> | ||
<md-icon>account_circle</md-icon> | ||
<mat-icon class="account">account_circle</mat-icon> | ||
</ng-template> | ||
|
||
<span class="username" fxHide.xs>{{getUsername()}}</span> | ||
<md-icon>keyboard_arrow_down</md-icon> | ||
<mat-icon>keyboard_arrow_down</mat-icon> | ||
</button> |
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,3 +1,3 @@ | ||
md-icon[aria-label="account_circle"] { | ||
mat-icon.account { | ||
margin-right: 0.3rem; | ||
} |
10 changes: 5 additions & 5 deletions
10
src/app/core/components/confirm-sign-up/confirm-sign-up.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,12 +1,12 @@ | ||
<p class="instructions">Please check your e-mail and enter your registration code.</p> | ||
|
||
<form #confirmSignUpForm="ngForm" class="single-column"> | ||
<md-input-container> | ||
<input mdInput placeholder="Code" type="text" [(ngModel)]="registrationCode.code" name="code" ngModel #code="ngModel" required> | ||
<md-hint *ngIf="code.dirty && code.errors?.required">Registration code is required</md-hint> | ||
</md-input-container> | ||
<mat-form-field> | ||
<input matInput placeholder="Code" type="text" [(ngModel)]="registrationCode.code" name="code" ngModel #code="ngModel" required> | ||
<mat-hint *ngIf="code.dirty && code.errors?.required">Registration code is required</mat-hint> | ||
</mat-form-field> | ||
|
||
<button md-button class="full-width margin-top" type="submit" [disabled]="confirmSignUpForm.invalid || busy" (click)="onConfirmSignUp(confirmSignUpForm)" md-raised-button color="primary"> | ||
<button mat-button class="full-width margin-top" type="submit" [disabled]="confirmSignUpForm.invalid || busy" (click)="onConfirmSignUp(confirmSignUpForm)" mat-raised-button color="primary"> | ||
{{busy ? 'Verifying...' : 'Confirm sign up'}} | ||
</button> | ||
</form> |
18 changes: 9 additions & 9 deletions
18
src/app/core/components/forgot-password/forgot-password.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,17 +1,17 @@ | ||
<p class="instructions">Please enter the verification code below, along with the new password you would like to use.</p> | ||
|
||
<form #updatePasswordForm="ngForm" (ngSubmit)="onUpdatePassword(updatePasswordForm)" class="single-column"> | ||
<md-input-container> | ||
<input mdInput placeholder="Verification code" type="text" [(ngModel)]="formData.verificationCode" name="verificationCode" ngModel #verificationCode="ngModel" required> | ||
<md-hint *ngIf="verificationCode.dirty && verificationCode.errors?.required">Verification code is required</md-hint> | ||
</md-input-container> | ||
<mat-form-field> | ||
<input matInput placeholder="Verification code" type="text" [(ngModel)]="formData.verificationCode" name="verificationCode" ngModel #verificationCode="ngModel" required> | ||
<mat-hint *ngIf="verificationCode.dirty && verificationCode.errors?.required">Verification code is required</mat-hint> | ||
</mat-form-field> | ||
|
||
<md-input-container> | ||
<input mdInput placeholder="New password" type="password" [(ngModel)]="formData.password" name="password" ngModel #password="ngModel" required> | ||
<md-hint *ngIf="password.dirty && password.errors?.required">Password is required</md-hint> | ||
</md-input-container> | ||
<mat-form-field> | ||
<input matInput placeholder="New password" type="password" [(ngModel)]="formData.password" name="password" ngModel #password="ngModel" required> | ||
<mat-hint *ngIf="password.dirty && password.errors?.required">Password is required</mat-hint> | ||
</mat-form-field> | ||
|
||
<button md-button class="full-width margin-top" type="submit" [disabled]="updatePasswordForm.invalid || busy" md-raised-button color="primary"> | ||
<button mat-button class="full-width margin-top" type="submit" [disabled]="updatePasswordForm.invalid || busy" mat-raised-button color="primary"> | ||
{{busy ? 'Changing password...' : 'Change password'}} | ||
</button> | ||
</form> |
4 changes: 2 additions & 2 deletions
4
src/app/core/components/google-signin/google-signin.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,4 @@ | ||
<button md-raised-button color="primary" id="googleSignInBtn" class="full-width"> | ||
<md-icon svgIcon="google"></md-icon> | ||
<button mat-raised-button color="primary" id="googleSignInBtn" class="full-width"> | ||
<mat-icon svgIcon="google"></mat-icon> | ||
{{action}} with Google | ||
</button> |
2 changes: 1 addition & 1 deletion
2
src/app/core/components/google-signin/google-signin.component.scss
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 @@ | ||
#googleSignInBtn { | ||
md-icon { | ||
mat-icon { | ||
width: 20px; | ||
height: 20px; | ||
line-height: 20px; | ||
|
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
src/app/core/components/loading-indicator/loading-indicator.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,4 @@ | ||
<div class="loading-indicator" [class.center]="center" fxLayout="row" fxLayoutAlign="start center"> | ||
<md-spinner></md-spinner> | ||
<mat-spinner class="margin-right"></mat-spinner> | ||
<span>{{text}}</span> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<div class="main-nav" fxLayout="row" fxLayoutAlign="center center"> | ||
<a routerLink="/flows" [routerLinkActive]="['active']" fxLayout="row" fxLayoutAlign="start center"> | ||
<md-icon svgIcon="flow"></md-icon> | ||
<mat-icon svgIcon="flow"></mat-icon> | ||
flows | ||
</a> | ||
<a routerLink="/tasks" [routerLinkActive]="['active']" fxLayout="row" fxLayoutAlign="start center"> | ||
<md-icon>assignment</md-icon> | ||
<mat-icon>assignment</mat-icon> | ||
tasks | ||
</a> | ||
</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
Oops, something went wrong.