Nubami SQReder

Results 18 issues of Nubami SQReder

Does exist or planned to make web application with similar functionality - interactive text-based ToDo list? If not I'll be glad to make it by my own, or assist you.

help wanted

Extension crashes when I try to type into xpath field, so I can't complete filter. Minimal reproduce is `$.[?(`, which is part of `$.[?(@.field)]`

Migrate to effector v23

createQuery resolves to `Query` if effect result doesn't match with contract output ```ts import { createQuery, Contract } from '@farfetched/core'; import { Effect } from 'effector'; // Declared somewhere else...

type:bug
scope:core

If query started with cached parameters it doesn't abort running uncached query ```ts const cachedQuery = createQuery({ handler() { const ac = new AbortController(); onAbort(() => { ac.abort("early aborted"); });...

type:bug
scope:core

Cache key serialization transform js Date objects as {} Applicable for both humanReadableKeys flag states ```ts cache(cachedQuery, { adapter: inMemoryCache({ observability: { hit, miss } }), staleAfter: "1m", humanReadableKeys: true,...

type:bug
scope:core

https://github.com/user-attachments/assets/315f61b1-d79f-466b-9377-c10a700e891c From floating-ui docs - https://floating-ui.com/docs/usehover#safepolygon ![image](https://github.com/user-attachments/assets/5839ea5f-9b96-4391-88c9-40c02fe1fbba) Article on medium https://medium.com/@nielsmanders/the-context-menu-safety-triangle-411c75065374 Related issue with explanation and examples https://github.com/shoelace-style/shoelace/issues/1550

enhancement

Can you please support case with chained store declaration? ```ts const emitNumber = createEvent(); const doubled = emitNumber.map(x => (x * 2)) // currently 'emitNumber -> *' const $user =...