Lars Hanisch
Lars Hanisch
When settings GIT_SSH_COMMAND, the quotes around the path are important. Otherwise it won't work.
The dependency injection doesn't guarantee type safety, so now we are able to assign a number field to the `app-text-field`. To be fair currently we don't have typesafety in the...
I made a few steps back to get a better understanding of what's going on. In today's timeslot I removed the extra layers and derived the `AppTextField` directly from `TanStackField`...
You may want to cherry-pick https://github.com/flensrocker/tan-stack-form/commit/ae5751d3a5142b67967bac8062fdac45295e0743 The refactoring to input signals of the `TanStackField` broke the "simple" example, because the `api` would be created after the template tries to read...
> > To be fair currently we don't have typesafety in the "simple" example, too, when assigning the `name` input of the `tanstackField` directive (and we don't have a runtime...
Thank you, that was fun!
I also like the "ref count" approach to the Observable API, because it's always difficult to explain to new developers when, how and why they must use "share" etc. on...
The more I think about the "symmetry" thing on subscribe/unsubscribe and the synchronous firehose problem - I don't think I would want a "subscription" to be returned from "subscribe" anymore....
This is a common problem with Angular signals. Field initialization runs at "constructor" time, while inputs are set after the component is constructed. So you cannot read an input signal...
These are two possible solutions, both with tradeoffs. ```ts readonly #injector = inject(Injector); // Non-Null-Assertion operator :( // You have to be careful to not access this property too early...