Confidenceman02

Results 35 comments of Confidenceman02

Yep seeing this also. Everything still seems to run fine if I ignore it however.

You can get around this by importing the script inside of a setup module. // jest.config.js ```javascript module.exports = { setupFilesAfterEnv: ["./jest.setup.js"], // other jest config } ``` // jest.setup.js...

@rtfeldman Any reason this was not merged? Would be a nice one to have IMO.

Theres no reason why the selection for a SIngle select searchable variant couldn't be editable, it does change the behaviour a lot from what is currently there so maybe it's...

I did improve this a bit in this [diff](https://github.com/Confidenceman02/elm-select/compare/5.4.0...6.0.0#diff-fa658524be1cb0d5e3d2844cc389c2e35d9651b0e5fcf52784469fdaea7ece69R2582-R2599). Essentially I was forced to to make the menu variants work. You might need to open the `Select.elm` part of that...

Hello hello! Thanks for opening the issue. Let's see if we can work around the issue with what we already have. I'm assuming you are sending requests on the `SelectBatch`...

> I checked native multiselect and it won't be suitable for my usecases, patially because native select doesn't allow you to pick what you want, you need to pick ranges...

Having thought about this, it might be possible to achieve what you want by possibly just exposing 1 extra `Action`, the `CloseMenu` action. You could use this in conjunction with...

I have an example on this [branch](https://github.com/Confidenceman02/elm-select/tree/close-menu-action) in the examples directory under the name `KeepMenuOpen` Are you able to go into examples directory and run: ``` elm reactor ``` And...

> But for some reason now when I click on dropdown chevron - it doesn't emit Focus action. The action `MenuClose` is actually super misleading, it fires when the menu...