-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
5494aa8
commit a5e7fcc
Showing
24 changed files
with
382 additions
and
400 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
File renamed without changes.
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
27 changes: 0 additions & 27 deletions
27
lib/core/src/lib/login/components/login-dialog.component.html
This file was deleted.
Oops, something went wrong.
File renamed without changes.
24 changes: 24 additions & 0 deletions
24
lib/core/src/lib/login/components/login-dialog/login-dialog.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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<header mat-dialog-title | ||
data-automation-id="login-dialog-title"> | ||
{{ data?.title }} | ||
</header> | ||
|
||
<mat-dialog-content class="adf-login-dialog-content"> | ||
<adf-login-dialog-panel #adfLoginPanel (success)="onLoginSuccess($event)"> | ||
</adf-login-dialog-panel> | ||
</mat-dialog-content> | ||
|
||
<mat-dialog-actions class="adf-login-dialog-content-actions" align="end"> | ||
<button mat-button (click)="close()" | ||
data-automation-id="login-dialog-actions-cancel"> | ||
{{ 'LOGIN.DIALOG.CANCEL' | translate }} | ||
</button> | ||
|
||
<button mat-button | ||
class="choose-action" | ||
data-automation-id="login-dialog-actions-perform" | ||
[disabled]="!isFormValid()" | ||
(click)="submitForm()"> | ||
{{ buttonActionName | translate }} | ||
</button> | ||
</mat-dialog-actions> |
File renamed without changes.
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
Oops, something went wrong.