Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ng18 #28

Merged
merged 40 commits into from
Jun 14, 2024
Merged

ng18 #28

Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
2afaa6c
intro
JohannesHoppe May 28, 2024
cc5c534
Zoneless und Signals
JohannesHoppe May 28, 2024
efdd9cf
Inputs als Signal
JohannesHoppe May 28, 2024
10ee328
Outputs als Funktion
JohannesHoppe May 28, 2024
ce44688
outputFromObservable
JohannesHoppe May 28, 2024
7747a2f
TODO: Queries als Signal
JohannesHoppe May 28, 2024
8eae745
+ Signal queries
JohannesHoppe Jun 4, 2024
c0b515b
+ Model inputs
JohannesHoppe Jun 4, 2024
14244e5
typos
JohannesHoppe Jun 4, 2024
d51f4a2
typo
JohannesHoppe Jun 4, 2024
48f182b
- protected
JohannesHoppe Jun 4, 2024
7b9b725
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 6, 2024
77f56db
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 6, 2024
9eaed22
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 6, 2024
a6ff206
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 6, 2024
1de41be
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 6, 2024
d77ed3c
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 6, 2024
1b64b8b
minor
JohannesHoppe Jun 11, 2024
60c3ff4
+ Automatische Migration auf den neuen `application`-Builder
JohannesHoppe Jun 11, 2024
d0ff0f9
+ Fazit
JohannesHoppe Jun 11, 2024
8f4ae9d
noch mehr Signals
JohannesHoppe Jun 11, 2024
00eede3
kleinzeugs
JohannesHoppe Jun 11, 2024
b96936b
Neuer `public` Ordner statt `assets` @fmalcher
JohannesHoppe Jun 11, 2024
490bc6a
typos
JohannesHoppe Jun 12, 2024
c891002
noch mehr typos
JohannesHoppe Jun 12, 2024
d83a911
published: 2024-06-13
JohannesHoppe Jun 12, 2024
de948ce
catchy Überschrift
JohannesHoppe Jun 12, 2024
843f085
fixture.componentRef.setInput
JohannesHoppe Jun 12, 2024
9a801a5
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
92f4a79
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
68550cd
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
2ef06c4
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
5e5200b
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
dea60f4
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
c2c83bc
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
5a256ce
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
d94adab
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
208ecab
Update blog/2024-06-angular18/README.md
JohannesHoppe Jun 14, 2024
e6419cc
review
fmalcher Jun 14, 2024
d2d8a5c
hidden
fmalcher Jun 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blog/2024-05-modern-angular-bm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ export class LoggedinOnlyDirective {

## Signal-based Inputs

Mit dem Minor-Release von Angular 17.2.0 wurde eine Alternative zum bisherigen `@Input()`-Dekorator auf Basis von Signals eingeführt, siehe die [offizielle Information im Angular-Blog](https://blog.angular.io/signal-inputs-available-in-developer-preview-6a7ff1941823).
Mit dem Minor-Release von Angular 17.1 wurde eine Alternative zum bisherigen `@Input()`-Dekorator auf Basis von Signals eingeführt, siehe die [offizielle Information im Angular-Blog](https://blog.angular.io/signal-inputs-available-in-developer-preview-6a7ff1941823).
Nutzen wir die neue Funktion `input()`, wird der übergebene Wert eines Komponenten-Inputs direkt als Signal erfasst:

```ts
Expand Down
Loading