Marko Stanimirović

Results 35 issues of 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...

Comp: Docs
Accepting PRs
Project: Signals

### 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...

Project: Signals

### 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...

Project: Operators

### 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';...

Project: Effects
Accepting PRs
community watch

### 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';...

Accepting PRs
community watch
Project: Component Store

## 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 }));...

Project: Signals