Pete Hegman
Pete Hegman
@hinok I really appreciate the response! Unfortunately that doesn't appear to be the issue as `cacheDirectory` is `false` by default. I tried explicitly setting it to `cacheDirectory` to `false` and...
@stayacid is correct, `overflow: hidden` is needed for this to work correctly. That said, it is a fair point that I don't think `overflow: hidden` is needed once the item...
@roenfeldt Not out of the box right now. This directive was meant to work like `v-show` but in a sliding motion. So it currently only shows/hides. It doesn't support partial...
Upgrading the `body-scroll-lock` dependency may fix this. I have a release coming out in the next couple of days that will upgrade the `body-scroll-lock` as well as add an option...
Looks like https://github.com/willmcpo/body-scroll-lock/issues/52#issuecomment-432200055 is still open so most likely this is still an issue. With that said I just pushed a release that upgrades `body-scroll-lock` to the latest version and...
https://github.com/testing-library/user-event/issues/833 might be your issue if you are using [testing library user events](https://testing-library.com/docs/user-event/intro/). Took me forever to figure out but this eventually fixed it for me: ```js jest.useFakeTimers({ advanceTimers: true...
@xanf can you take a look at this when you have time? 🙂
I created my own custom `clearAndType` utility like this: ```ts // custom-user-events.ts import { UserEvent, UserEventApi, } from "@testing-library/user-event/dist/types/setup/setup"; type CustomUserEvents = { clearAndType: ( ...args: Parameters ) => ReturnType;...
Running into the exact same issue here. Did you ever find a workaround?
No problem, I found a solution. It's not pretty, but for anybody else that runs into this issue this may help: ```js const chart = new Chartist.Bar(chartEl, options) // Remove...