File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,16 @@ import { LitElement, css } from 'lit';
22
33import { 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+ */
515export default class IgcSliderLabelComponent extends LitElement {
616 public static readonly tagName = 'igc-slider-label' ;
717 public static override styles = css `
Original file line number Diff line number Diff line change @@ -126,10 +126,8 @@ export type {
126126} from './components/calendar/types.js' ;
127127export { DateRangeType } from './components/calendar/types.js' ;
128128export 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' ;
133131export type { RadioChangeEventArgs } from './components/radio/radio.js' ;
134132export type { IgcRangeSliderValue } from './components/slider/range-slider.js' ;
135133export type {
You can’t perform that action at this time.
0 commit comments