Regan Lawton

Results 70 comments of Regan Lawton

@slashweb I found that I had this issue because of CSRF middleware on the route.

Basic @swastik009 the issue is that you have the CSRF middleware active on that route and a POST request is checking for the CSRF tomen and triggering a failed request....

Seems like a dupe of #14642 Did you try Ctrl/Cmd + F11 @downloader55 ?

Thank @amardeo1 I'll look into a way to do this without making breaking changes. As said in the other ticket I might look at allowing you to pass through the...

@buesing The `` component has callbacks for for `onFocus` and `onBlur`. Do you have an animation workflow that doesn't fit those callbacks?

@buesing Could you possible do the using the KeyboardInput ref? ```jsx { this.myInput = ref; }} ... ``` Or is it possible to use CSS transitions to achieve your goal?

@buesing Due to the way the project works by triggering the the focus event on the input I'm not sure your animation is going to be supported with out breaking...

@buesing The event is handled inside a setTimeout() function. I believe this is done to keep the input focused when hitting the virtual keys. See below. ```js handleFocus() { const...

@buesing Sorry for the late reply this change is gonna take abit of testing to make sure the change doesn't impact the current workflow of the library. I'll buzz you...