Omer Gronich
Omer Gronich
@SimonTouitou Yes. Reproduced the bug in a new repo with the lts of mobx and mobx-angular here: [Repo](https://github.com/OmerGronich/observable-requires-reaction-2)
Are there any recommended workarounds until it is implemented in the library? It is important to know the loading status of paginated requests...
> Yes it would be nice to have this out of the box in the Angular dev tools as well. I did remove it from the docs while this feature...
> I'm working on a provider for the developer tools: > > provideAngularQuery(new QueryClient(), withDeveloperTools()) > It uses Angular [`isDevMode`](https://angular.dev/api/core/isDevMode) to load the developer tools only in development mode. This...
> Let me change it to this: > > @Directive({ > selector: '[brnCtxMenuTriggerFor]', > standalone: true, > hostDirectives: [CdkContextMenuTrigger], > }) > export class BrnContextMenuTriggerDirective { > private readonly _cdkTrigger...
> Hey [@OmerGronich](https://github.com/OmerGronich) can you give me an example of what you're looking for. are you running into the same issue? I want consumers of my UI lib to use...
Just noticed that BrnTooltipTriggerDirective also warns if no aria-describedby is passed, this is also not correct behavior IMO: https://github.com/spartan-ng/spartan/blob/35b68e721b399885cfd89f44f1a211ab26afa164/libs/brain/tooltip/src/lib/brn-tooltip-trigger.directive.ts#L342
Love this exploration! It will definitely enhance how we manage state with signals. One additional drawback of both approaches, which hasn't been explicitly mentioned, is that they aren't very tree-shaking–friendly....
You could hijack the input transform 🫣 ```typescript @Injectable({providedIn: 'root'}) export class Counter { count = signal(0); } function syncSignal(source: WritableSignal) { return (v: unknown): T => { const castedValue...