
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
ngx-slider-moby
Advanced tools
Reactive slider/scope slider component for angular.
Live demo: https://pavelpleshko-slider-moby.now.sh

npm install ngx-slider-moby --save
NgxSliderMobyModule into your module like so:import { NgxSliderMobyModule } from 'ngx-slider-moby';
...
@NgModule({
imports: [
NgxSliderMobyModule
],
})
export class YourModule { }
<ngx-slider-moby [max_value]="300" [min_value]="0" [range]="true"></ngx-slider-moby>
<div [formGroup]="myForm">
<ngx-slider-moby [max_value]="300" [min_value]="0" [range]="true" formControlName="priceRange"></ngx-slider-moby>
<ngx-slider-moby [max_value]="10" [min_value]="0" [range]="false" formControlName="kilogramms"></ngx-slider-moby>
</div>
[range]="true" form control value will be as follows:{from:20,to:55}
[vertical]="true" parent's height should be also specified otherwise component will behave unexpectedly.| Prop | Type | Default | Description |
|---|---|---|---|
min_value | number | 0 | minimal value for given slider |
max_value | number | 500 | maximal value for given slider |
value_from | number | 0 | If specified will assign provided value to the component value1 variable |
value_to | number | 0 | Similar with above but for value2 variable |
showThumbLabels | boolean | true | whether or not to show labels on default slider(not range) |
vertical | boolean | true | If false then the slider will appear horizontally |
step | number | 1 | Allows to specify the number of units that one step has |
range | boolean | false | If speified true then the slider will be a scope slider and have corresponding value and appearance(ex.: from 30 to 50). Thumblabels are visible by default in this type of slider |
disabled | boolean | false | If true then puts slider in a disabled state and doesn't handle any events on the element |
direction | 'ltr' or 'rtl' | ltr | Left to right or right to left(not implemeneted yet) |
color | string | purple | Slider will assume the corresponding color palette. Options: red,green,blue,purple,yellow |
valueChange - emits the object which looks like this in case of default slider {sliderId:string,value:number,percent:number},in case of range slider as follows:{sliderId:string, value: {from:number,to:number}, percent: {from:number,to:number} }
blurred - blur event emits boolean true or false;focused - focus event emits boolean true or false;step.FAQs
Angular slider component
We found that ngx-slider-moby 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.