mirror of
https://github.com/nunntom/elm-ui-select.git
synced 2024-11-22 03:33:11 +03:00
Bump version 4.0.0
This commit is contained in:
parent
2362ca1091
commit
9f80e5d943
@ -90,4 +90,4 @@ view countries model =
|
||||
|
||||
## Limitations
|
||||
|
||||
There are issues when the input is placed within a parent element that has overflow scroll or auto: the menu may be clipped by the parent. This can be overcome by using [Select.withMenuPositionFixed](https://package.elm-lang.org/packages/nunntom/elm-ui-select/3.1.3/Select/#withMenuPositionFixed), but if the parent also has a transform applied, it gets clipped again. This means any parent with e.g. Element.scrollBarY + Element.moveDown/moveLeft etc. can cause issues. This is due to [a feature of the current CSS spec](https://bugs.chromium.org/p/chromium/issues/detail?id=20574).
|
||||
There are issues when the input is placed within a parent element that has overflow scroll or auto: the menu may be clipped by the parent. This can be overcome by using [Select.withMenuPositionFixed](https://package.elm-lang.org/packages/nunntom/elm-ui-select/4.0.0/Select/#withMenuPositionFixed), but if the parent also has a transform applied, it gets clipped again. This means any parent with e.g. Element.scrollBarY + Element.moveDown/moveLeft etc. can cause issues. This is due to [a feature of the current CSS spec](https://bugs.chromium.org/p/chromium/issues/detail?id=20574).
|
||||
|
34
elm.json
34
elm.json
@ -1,17 +1,21 @@
|
||||
{
|
||||
"type": "package",
|
||||
"name": "nunntom/elm-ui-select",
|
||||
"summary": "A select widget for elm-ui with keyboard input, filter, scrolling and requests!",
|
||||
"license": "BSD-3-Clause",
|
||||
"version": "3.1.3",
|
||||
"exposed-modules": ["Select", "Select.Filter", "Select.Effect"],
|
||||
"elm-version": "0.19.0 <= v < 0.20.0",
|
||||
"dependencies": {
|
||||
"elm/browser": "1.0.0 <= v < 2.0.0",
|
||||
"elm/core": "1.0.0 <= v < 2.0.0",
|
||||
"elm/html": "1.0.0 <= v < 2.0.0",
|
||||
"elm/json": "1.0.0 <= v < 2.0.0",
|
||||
"mdgriffith/elm-ui": "1.0.0 <= v < 2.0.0"
|
||||
},
|
||||
"test-dependencies": {}
|
||||
"type": "package",
|
||||
"name": "nunntom/elm-ui-select",
|
||||
"summary": "A select widget for elm-ui with keyboard input, filter, scrolling and requests!",
|
||||
"license": "BSD-3-Clause",
|
||||
"version": "4.0.0",
|
||||
"exposed-modules": [
|
||||
"Select",
|
||||
"Select.Filter",
|
||||
"Select.Effect"
|
||||
],
|
||||
"elm-version": "0.19.0 <= v < 0.20.0",
|
||||
"dependencies": {
|
||||
"elm/browser": "1.0.0 <= v < 2.0.0",
|
||||
"elm/core": "1.0.0 <= v < 2.0.0",
|
||||
"elm/html": "1.0.0 <= v < 2.0.0",
|
||||
"elm/json": "1.0.0 <= v < 2.0.0",
|
||||
"mdgriffith/elm-ui": "1.0.0 <= v < 2.0.0"
|
||||
},
|
||||
"test-dependencies": {}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "elm-ui-select",
|
||||
"description": "A select widget for elm-ui with keyboard input, filtering, menu scrolling and requests!",
|
||||
"version": "3.1.3",
|
||||
"version": "4.0.0",
|
||||
"scripts": {
|
||||
"test": "cd examples && elm-test && cd ../",
|
||||
"review": "elm-review",
|
||||
|
Loading…
Reference in New Issue
Block a user