John

Results 37 issues of John

If you have a FormGroup with multiple controls, observing `control.rawValue.valueA` will emit updates even when just `control.rawValue.valueB` changed. The reason is that `rawValue` is changing whenever any nested value changes,...

At minimum, this implementation could probably be improved using the `Queue` [rxjs scheduler](https://rxjs-dev.firebaseapp.com/guide/scheduler) (which I've recently learned about). Beyond that though, it's likely this implementation would benefit from a custom...

_Related, currently, the `docData` helper exported by this library is incorrectly typed (see issue #37) as it actually returns `Observable`._ This is a request to update `docData` to return `Observable`....

When subscribing to Firestore data without using rxfire, the Firestore SDK (at least v9) supports [optional `SnapshotOptions`](https://firebase.google.com/docs/reference/node/firebase.firestore.SnapshotOptions) when getting data from a snapshot. E.g. ```ts // Currently, the only SnapshotOption...

It appears that `react-solid-state` doesn't support the new Renderer in React 18. Using the old render function with React 18 still works, but switching to the [new render function in...

Fixes `Utils.getInstalledRelatedApps` so that the related apps, if any, are actually returned by the function.

When using `Pino.stdSerializers.errWithCause` in the browser the "cause" property of errors are not, in fact, serialized. Video demonstrating the behavior. https://www.loom.com/share/916e9677c50946f99a5772adef18e992?sid=e775a176-ceed-48a1-a032-821f8af74314 The problem appears to be that, in the browser,...