Releases: mskocik/svelecte
Releases · mskocik/svelecte
v3.5.0
New:
- ability to provide
inputId
to be focusable by <label>
element, (#72), thanks to @lionelB
v3.4.5
Fixes:
- reset
options
when refetching data in init
mode (#69)
Enhancements:
- enable to create
options
from value
when fetch
is defined and valueAsObject
is also set (#71)
v3.4.3
Fixes:
- scroll to initially selected option, #66
- fix regression for dropdown placement, #68
- correct behaviour for
PageUp
and PageDown
keys, #67
- fixes and updates to
fetch
, #65
v3.4.1
Fixes:
- fix setting of initial value when using
labelAsValue
, although reported for simple array, but applied to object selection as well (#62)
v3.4.0
New:
- add option
createFilter
which enabled you to customize formatting of newly entered option to effectively deny creating items, which don't meet given conditions
Fixes:
- prevent users to create empty options (#58)
- remove highlighting in selected items (#59)
v3.3.6
Fixes:
- ability to handle initial and additional
value
with option groups (#57)
New:
- added CSS classes for group items and group headers outside in Dropdown for easier styling
v3.3.5
Fixes:
- fix passing invalid
value
(#56)
- reflect these changes also on custom element
v3.3.4
Fixes:
- fix unexpected value type - expected number and received string (#56)
v3.3.3
Fixes:
- fix create row active indicator
- fixing styling issues related to custom components used as a
Item
replacement
- update logic which trigger form submit by
Enter
, also enable Ctrl
+ Enter
submit
- fix issue with custom-element getter when trying to dispatch
input
event (autocomplete error)
v3.3.1
New Features:
- from now you can supply your own components instead of default one and rely on custom
renderer
, (#54)
- make styling easier (#55)
- create row is now outside dropdown items, ie. always visible. Useful when using
creatable
with fetch
option
Fixes:
- correct
PageUp
, PageDown
behaviour, (#53)
- fix keyboard navigation in virtual list
- add
creatablePrefix
to custom-element
- close button on selected items is now
<button>
instead of <a>