Skip to content

Commit f047f6e

Browse files
committed
Merge branch 'mtsvyatkova/feat-1379-tile-manager' of https://github.com/IgniteUI/igniteui-webcomponents into mtsvyatkova/feat-1379-tile-manager
2 parents 8f1c427 + a9688f2 commit f047f6e

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

src/components/slider/slider-label.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ import { LitElement, css } from 'lit';
22

33
import { registerComponent } from '../common/definitions/register.js';
44

5+
/**
6+
* Allows formatting the values of the slider as string values.
7+
* The text content of the slider labels is used for thumb and tick labels.
8+
*
9+
* @remarks
10+
* When slider labels are provided, the `min`, `max` and `step` properties are automatically
11+
* calculated so that they do not allow values that do not map to the provided labels.
12+
*
13+
* @element igc-slider-label
14+
*/
515
export default class IgcSliderLabelComponent extends LitElement {
616
public static readonly tagName = 'igc-slider-label';
717
public static override styles = css`

src/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,8 @@ export type {
126126
} from './components/calendar/types.js';
127127
export { DateRangeType } from './components/calendar/types.js';
128128
export type { CheckboxChangeEventArgs } from './components/checkbox/checkbox-base.js';
129-
export type {
130-
DatePart,
131-
DatePartDeltas,
132-
} from './components/date-time-input/date-util.js';
129+
export { DatePart } from './components/date-time-input/date-util.js';
130+
export type { DatePartDeltas } from './components/date-time-input/date-util.js';
133131
export type { RadioChangeEventArgs } from './components/radio/radio.js';
134132
export type { IgcRangeSliderValue } from './components/slider/range-slider.js';
135133
export type {

0 commit comments

Comments
 (0)