Nubami SQReder
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.
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...
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"); });...
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,...
https://github.com/user-attachments/assets/315f61b1-d79f-466b-9377-c10a700e891c From floating-ui docs - https://floating-ui.com/docs/usehover#safepolygon  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
Can you please support case with chained store declaration? ```ts const emitNumber = createEvent(); const doubled = emitNumber.map(x => (x * 2)) // currently 'emitNumber -> *' const $user =...