Marko Stanimirović
Marko Stanimirović
## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: https://github.com/ngrx/platform/blob/main/CONTRIBUTING.md#commit - [ ] Tests for the changes have been...
## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: https://github.com/ngrx/platform/blob/main/CONTRIBUTING.md#commit - [ ] Tests for the changes have been...
## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: https://github.com/ngrx/platform/blob/main/CONTRIBUTING.md#commit - [x] Tests for the changes have been added...
### Information The new page should be created for the testing guide: `@ngrx/signals` > `SignalStore` > `Testing` The guide should explain how SignalStore should be tested with examples. ### Documentation...
### Information Add the `@ngrx/signals/storage` sub-package that will contain the `withStorageSync` feature. The initial implementation is available here: https://github.com/markostanimirovic/ngrx-signal-store-playground/blob/main/src/app/shared/storage-sync.feature.ts ### I would be willing to submit a PR to fix...
### Which @ngrx/* package(s) are relevant/related to the feature request? operators ### Information Similar to `tapResponse`, add `mapResponse` operator to improve response handling in NgRx effects. **Before:** ```ts export const...
### Which @ngrx/* package(s) are relevant/related to the feature request? effects ### Information Before: ```ts import { concatLatestFrom } from '@ngrx/effects'; ``` After: ```ts import { concatLatestFrom } from '@ngrx/operators';...
### Which @ngrx/* package(s) are relevant/related to the feature request? component-store ### Information Before: ```ts import { tapResponse } from '@ngrx/component-store'; ``` After: ```ts import { tapResponse } from '@ngrx/operators';...
## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: https://github.com/ngrx/platform/blob/main/CONTRIBUTING.md#commit - [x] Tests for the changes have been added...
### Which @ngrx/* package(s) are relevant/related to the feature request? signals ### Information Currently, SignalStore's state can be directly updated from outside: ```ts const CounterStore = signalStore(withState({ count: 0 }));...