Alexandre Galays
Alexandre Galays
Just chiming in to say that this shouldn't be fixed just for Arrays. This is very useful for all custom (container or not) types too.
> This is quite a clean solution for this problem, using type predicates: > http://www.typescriptlang.org/docs/handbook/advanced-types.html#using-type-predicates > > ```ts > function isNotNull(it: T): it is NonNullable { > return it !=...
@graup Seems like the same issue yes.
Looks good; - `removeAll` could indeed be removed; it's invasive and personnaly never had a use case for it. - `add` could simply return an unsub function ? SignalBinding seems...
Just upgraded to Safari `16.5.1`: It still doesn't work in my fairly complex example in storybook. However, it works in the example link above. I found the thing that makes...
This is SO valuable and has been a source of bugs, confusion and generally lost time on most projects. Examples of globals with totally stupid names that are easily used...
This area lacks documentation, it's really unclear what are the best practices to use LISTEN/NOTIFY. In a previous ticket, you said a client (= one connection, which is what I...
I'm yet another person who tried to fix the Functional Component types of react to be more open (and reflect what react can actually handle) only to be met with...
yeah that ref in general doesn't work well. That bug above is pretty nasty as it locks out the whole page, forever. Also If you hit the shortcut like CTRL+C...
FYI, we still have a super critical bug where the whole app is locked up (all keyboard events are prevented) when going from a div ref (that doesn't even cover...