Vincent Rubinetti

Results 267 comments of Vincent Rubinetti
trafficstars

It seems that this fixes it: ``` modifiers: [ { name: 'computeStyles', options: { adaptive: false, // true by default }, }, ] ``` **IMPORTANT EDIT** Also make sure you...

Possibly related to [this issue on the popperjs core](https://github.com/popperjs/popper-core/issues/1138), except that I'm not even using `position: relative`.

For anyone stumbling across this, here's a solution I came up with that's similar to @nosovsh 's before I found this thread. ```javascript export const undoer = (reducer) => ({...

Thank you for the swift reply! I did look into that other library, but found that it didn't match my needs. My workaround is to attach a field to every...

Agreed. Maybe it could be something like this: ``` { past: [ ... ], current: { ... }, future: [ ... ], pastActions: [ ..., { type: 'toggle_something', payload: {...

Just tried it in 4.1. We can now set `state` in `push`/`replace`, but it seems that that data is not attached to the vue-router location objects. We have to get...

I found the same problem with `@vueform/multiselect`, an oft-recommended alternative to this library. If you look at the HTML for this component, you see no `aria-`/`role`/etc attributes. Just divs with...

An alternative for Vue seems to be [`vue-combo-blocks`](https://github.com/sssmi/vue-combo-blocks), though it doesn't seem as used and battle-tested as `downshift`. Does anyone know of any other alternatives? The thing I'm particularly looking...

Not sure if related, but it seems like no typing at all is working: ```ts const dialogStyle = css({ displays: "flex ", flexDirection: "diagonal", background: 1, // any other nonsensical...

> I wish you would use a async generator instead of importing node streams Is there a clever way anyone can think of to make an async generator wrapper function...