-
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.
migrated input, output, model to signals
- Loading branch information
Showing
20 changed files
with
121 additions
and
110 deletions.
There are no files selected for viewing
16 changes: 8 additions & 8 deletions
16
src/app/components/hero-section/hero-section.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,14 +1,14 @@ | ||
@if (section.image) { | ||
<div class="header" [style.backgroundImage]="'url(' + section.image + ')'"> | ||
<h1>{{section.headline}}</h1> | ||
@if (section().image) { | ||
<div class="header" [style.backgroundImage]="'url(' + section().image + ')'"> | ||
<h1>{{section().headline}}</h1> | ||
<section> | ||
<div class="subhead">{{section.subhead}}</div> | ||
<a mat-button role="button" [href]="section.call_to_action_link"> | ||
{{section.call_to_action}} | ||
<div class="subhead">{{section().subhead}}</div> | ||
<a mat-button role="button" [href]="section().call_to_action_link"> | ||
{{section().call_to_action}} | ||
</a> | ||
</section> | ||
<div class="img-info">{{section.image_info}}</div> | ||
<div class="img-info">{{section().image_info}}</div> | ||
</div> | ||
} @else { | ||
<h1>{{section.headline}}</h1> | ||
<h1>{{section().headline}}</h1> | ||
} |
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
42 changes: 21 additions & 21 deletions
42
src/app/components/input-section/input-section.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
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
4 changes: 2 additions & 2 deletions
4
src/app/components/input-stepper/input-stepper.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
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
Oops, something went wrong.