Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
svelte-range-slider-pips
Advanced tools
svelte-range-slider-pips
@ npmA reactive, accessible, multi-thumb, range slider with the ability to display "pips" or "notches" along the range. Importable as a svelte-component, or used directly in any javascript application.
🔗 For full documentation and examples, see the Github Pages
Open your project and use the command line to install the package;
yarn add --dev svelte-range-slider-pips # or
npm install --save-dev svelte-range-slider-pips # if you prefer npm
If you're not building a svelte-app, you can use the /dist/
version of the script /dist/svelte-range-slider-pips.js
and include it
either with a regular <script>
tag. This should even work with jQuery.
<script src="./js/vendor/svelte-range-slider-pips.js" />
<div id="my-slider"></div>
<script>
var mySlider = new RangeSliderPips({
target: document.getElementById("my-slider"),
props: { /* props as js object */ }
});
</script>
Assuming you have a Svelte app up and running;
<script>
import RangeSlider from "svelte-range-slider-pips";
</script>
<RangeSlider />
If you're building a bleeding-edge JS application (not svelte), you might
want to use js imports (import
)
import RangeSlider from "./node_modules/svelte-range-slider-pips/dist/svelte-range-slider-pips.mjs";
var mySlider = new RangeSlider({
target: node, // js reference to a DOM element
props: { /* props as js object */ }
});
prop | type | default | description |
---|---|---|---|
values | Array | [50] | Array of values to apply on the slider. Multiple values creates multiple handles. (note: A slider with range property set can only have two values max) |
min | Number | 0 | Minimum value for the slider |
max | Number | 100 | Maximum value for the slider |
step | Number | 1 | Every nth value to allow handle to stop at |
range | Boolean /String | false | Whether to style as a range picker. Use range='min' or range='max' for min/max variants |
pushy | Boolean | false | If range is true , then this boolean decides if one handle will push the other along |
float | Boolean | false | Set true to add a floating label above focussed handles |
vertical | Boolean | false | Make the slider render vertically |
pips | Boolean | false | Whether to show pips/notches on the slider |
pipStep | Number | 1 /10 /20 | Every nth step to show a pip for. This has multiple defaults depending on values property |
first | Boolean /String | false | Whether to show a pip or label for the first value on slider. Use first='label' to show a label value |
last | Boolean /String | false | Whether to show a pip or label for the last value on slider. Use last='label' to show a label value |
rest | Boolean /String | false | Whether to show a pip or label for the all other values. Use rest='label' to show a label value |
prefix | String | "" | A string to prefix to all displayed values |
suffix | String | "" | A string to suffix to all displayed values |
formatter | Function | (v) => v | A function to re-format values before they are displayed |
handleFormatter | Function | formatter | A function to re-format values on the handle/float before they are displayed. Defaults to the same function given to the formatter property |
springValues | Object | { stiffness: 0.15, damping: 0.4 } | Svelte spring physics object to change the behaviour of the handle when moving |
🔗 For full documentation and examples, see the Github Pages
I am very happy to accept;
FAQs
Multi-Thumb, Accessible, Beautiful Range Slider with Pips
The npm package svelte-range-slider-pips receives a total of 8,286 weekly downloads. As such, svelte-range-slider-pips popularity was classified as popular.
We found that svelte-range-slider-pips demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.