Igor Kamyşev
                                            Igor Kamyşev
                                        
                                    Same as https://github.com/effector/effector/issues/765
## Proposal Add possibility to store custom entries in Domain. Examples of custom entries: - `Gate` from `effector-react`/`effector-vue` - `Route` from Atomic Router - `Query` from Farfetched In can be...
Reopened #4372 - Links to documentation: https://effector.dev - Link to GitHub or NPM: https://github.com/effector/effector - Type of contribution: new definition Other notes: Hello, folks. I'm Igor, Effector Core Team member....
I've added tests with reproduce in #249
Now ESM version of `effector-react` imports `effector/effector.mjs`. I suggest using `effector` as web standards require. Since, it could be a breaking change, we have to postpone this change until effector...
Before ```ts const Comp = relfect({ view: ViewComp, bind: { prop: $value.map(value => value.part) } }) ``` after ```ts const Comp = relfect({ view: ViewComp, bind: { prop: remap($value, 'part')...
Use-case: ```ts export const mainRoute = createRoute(); sample({ clock: selectLocation, source: mainRoute.$params, fn: (params, id) => ({ ...params, locationId: id }), target: mainRoute.open, }); sample({ clock: unselectLocation, source: mainRoute.$params, fn:...
It exists but hidden by types. It would be really nice to have access to it, to show error message in logs.