Skip to content

Commit 11a9e00

Browse files
committed
build(slider): fix linting errors
1 parent cebd167 commit 11a9e00

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

projects/igniteui-angular/src/lib/slider/slider.component.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ export class IgxSliderComponent implements
219219
public id = `igx-slider-${NEXT_ID++}`;
220220

221221
/**
222-
* An @Input property that gets the type of the `IgxSliderComponent`. The slider can be IgxSliderType.SLIDER(default) or IgxSliderType.RANGE.
222+
* An @Input property that gets the type of the `IgxSliderComponent`.
223+
* The slider can be IgxSliderType.SLIDER(default) or IgxSliderType.RANGE.
223224
* ```typescript
224225
* @ViewChild("slider2")
225226
* public slider: IgxSliderComponent;
@@ -233,7 +234,8 @@ export class IgxSliderComponent implements
233234
}
234235

235236
/**
236-
* An @Input property that sets the type of the `IgxSliderComponent`. The slider can be IgxSliderType.SLIDER(default) or IgxSliderType.RANGE.
237+
* An @Input property that sets the type of the `IgxSliderComponent`.
238+
* The slider can be IgxSliderType.SLIDER(default) or IgxSliderType.RANGE.
237239
* ```typescript
238240
* sliderType: IgxSliderType = IgxSliderType.RANGE;
239241
* ```
@@ -572,7 +574,8 @@ export class IgxSliderComponent implements
572574

573575
/**
574576
* Returns the slider value. If the slider is of type {@link IgxSliderType.SLIDER} the returned value is number.
575-
* If the slider type is {@link IgxSliderType.RANGE} the returned value represents an object of {@link lowerValue} and {@link upperValue}.
577+
* If the slider type is {@link IgxSliderType.RANGE}.
578+
* The returned value represents an object of {@link lowerValue} and {@link upperValue}.
576579
*```typescript
577580
*@ViewChild("slider2")
578581
*public slider: IgxSliderComponent;
@@ -594,7 +597,8 @@ export class IgxSliderComponent implements
594597

595598
/**
596599
* Sets the slider value.
597-
* If the slider is of type {@link IgxSliderType.SLIDER} the argument is number. By default the {@link value} gets the {@link lowerBound}.
600+
* If the slider is of type {@link IgxSliderType.SLIDER}.
601+
* The argument is number. By default the {@link value} gets the {@link lowerBound}.
598602
* If the slider type is {@link IgxSliderType.RANGE} the argument
599603
* represents an object of {@link lowerValue} and {@link upperValue} properties.
600604
* By default the object is associated with the {@link lowerBound} and {@link upperBound} property values.

0 commit comments

Comments
 (0)