mirror of
https://github.com/nunntom/elm-ui-select.git
synced 2024-11-26 13:27:26 +03:00
Bump version
This commit is contained in:
parent
da1e069f8c
commit
90fcefdc82
@ -1,5 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 2.1.0
|
## 2.1.1
|
||||||
|
|
||||||
- Added Select.isFocused
|
- Added Select.isFocused
|
||||||
|
@ -87,4 +87,4 @@ view countries model =
|
|||||||
|
|
||||||
## Limitations
|
## 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/2.1.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).
|
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/2.1.1/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).
|
||||||
|
40
elm.json
40
elm.json
@ -1,22 +1,22 @@
|
|||||||
{
|
{
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"name": "nunntom/elm-ui-select",
|
"name": "nunntom/elm-ui-select",
|
||||||
"summary": "A select widget for Elm Ui",
|
"summary": "A select widget for Elm Ui",
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"version": "2.1.0",
|
"version": "2.1.1",
|
||||||
"exposed-modules": [
|
"exposed-modules": [
|
||||||
"Select",
|
"Select",
|
||||||
"Select.Filter",
|
"Select.Filter",
|
||||||
"Select.Effect",
|
"Select.Effect",
|
||||||
"Select.Request"
|
"Select.Request"
|
||||||
],
|
],
|
||||||
"elm-version": "0.19.0 <= v < 0.20.0",
|
"elm-version": "0.19.0 <= v < 0.20.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"elm/browser": "1.0.0 <= v < 2.0.0",
|
"elm/browser": "1.0.0 <= v < 2.0.0",
|
||||||
"elm/core": "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/html": "1.0.0 <= v < 2.0.0",
|
||||||
"elm/json": "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"
|
"mdgriffith/elm-ui": "1.0.0 <= v < 2.0.0"
|
||||||
},
|
},
|
||||||
"test-dependencies": {}
|
"test-dependencies": {}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "elm-ui-select",
|
"name": "elm-ui-select",
|
||||||
"description": "A select widget for elm-ui.",
|
"description": "A select widget for elm-ui.",
|
||||||
"version": "1.0.0",
|
"version": "2.1.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "cd examples && elm-test && cd ../",
|
"test": "cd examples && elm-test && cd ../",
|
||||||
"review": "elm-review",
|
"review": "elm-review",
|
||||||
|
Loading…
Reference in New Issue
Block a user