Releases: simeydotme/svelte-range-slider-pips
Releases · simeydotme/svelte-range-slider-pips
Fix Svelte 5 compatibility
wasn't able to install with NPM due to version mis-match.
fixed.
Fix bundler / imports & Immutable
- put
immutable
into the bundle config options - update exports to be a little better
- remove
.css
import from the.svelte
file
V3 🎉
Re-write in SvelteKit and Typescript.
(yay types for all you weird type nerds!)
- test folders with examples of the project running in many environments (react, vue, jquery, esm modules, svelte 5)
- types
- insanely complicated build system and package json
- some types
- code utils split out
Hope this goes smoothly for y'all who want to upgrade because of the slightly annoying cautions in your build systems! 🤞
Aria & Min Label & Formatting
Full Changelog: 2.2.3...2.3.0
#128 Formatting handles / labels with HTML
#112 disable Aria warning
#126 allow Min value to choose when not 0
Aria Label & Touch fixes
Minor bugfixes
Fix css for hoverable, remove `orientationEnd` prop resolves #50 resolves #52
Allow reversible sliders, reverse the Vertical
Vertical sliders were weirdly going in the reverse order as expected, and so I set the order as an option; reverse
and set the default to what was expected. Breaking change.
1.8.0: Improve styling options
Added new abilities for styling handles/pips based on their indexes.
- a new
[data-handle='n']
was added for each handle - a new argument was added for
formatter()
andhandleFormatter()
- before:
formatter = v => v
,handleFormatter = v => v
- now:
formatter = (v,i) => v
,handleFormatter = (v,i) => v
- before:
- bump versions of dependencies
1.7.1: Bugfix for :global() changes
Merged a bugfix from @maxiruani for the :global()
changes in svelte core.
1.7.0
Merge branch 'min-max-zero-#20' into main