Skip to content

Commit

Permalink
feat(material): add slider missing inputs (#2873)
Browse files Browse the repository at this point in the history
fix #2110
  • Loading branch information
aitboudad committed Nov 30, 2021
1 parent f3b8137 commit 015c25f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/ui/material/slider/src/slider.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@ import { MatSlider } from '@angular/material/slider';
[formlyAttributes]="field"
[tabIndex]="to.tabindex"
[color]="to.color"
[thumbLabel]="to.thumbLabel"
[step]="to.step"
[displayWith]="to.displayWith"
[invert]="to.invert"
[max]="to.max"
[min]="to.min"
[step]="to.step"
[thumbLabel]="to.thumbLabel"
[tickInterval]="to.tickInterval"
[valueText]="to.valueText"
[vertical]="to.vertical"
(input)="to.input && to.input(field, $event)"
(change)="to.change && to.change(field, $event)"
>
</mat-slider>
`,
Expand Down

0 comments on commit 015c25f

Please sign in to comment.