
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@psff/cmp-slider
Advanced tools
Wrapper component of the native `input[type="range"]` that allows the user to pick a value from a range guided by defined steps of any size.
psff-sliderWrapper component of the native input[type="range"] that allows the user to
pick a value from a range guided by defined steps of any size.
Setup the package as a dependency.
yarn add @psff/cmp-slider
Use the component <psff-slider />.
import PsffSlider from '@psff/cmp-slider'
@Component({
components: {
'psff-slider': PsffSlider,
},
})
export default class MyComponent extends Vue {
private happinessLevel: number = 5;
}
<psff-slider v-model="happinessLevel" :min="1" :max="10" />
Will pass through all the attributes to the native input range.
value (number, default: half between min and max): current number value of
the field.step (number, default: 1): ammount modified on every increase/decrease interaction.min (number, default: 0): bottom limit of the value.max (number, default: 100): top limit of the value.IMPORTANT: value, step, min and max have to be passed like numbers
(:max="100").
input (number): every time the value changechange (number): value change when blur or enterThumb handler
--psff-slider-thumb-color (default #648CFA)--psff-slider-thumb-color-active (default #3066F9)--psff-slider-thumb-shadow-color-active (default #97B3FC)--psff-slider-thumb-size (default 1.5rem)Track
--psff-slider-track-color (default #CBD9FD)--psff-slider-track-height (default .25rem)Progress (track on the left side of the thumb)
--psff-slider-progress-color (default var(--psff-slider-thumb-color))FAQs
Wrapper component of the native `input[type="range"]` that allows the user to pick a value from a range guided by defined steps of any size.
We found that @psff/cmp-slider demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.