We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942fa74 commit f5b612dCopy full SHA for f5b612d
src/components/slider/slider-label.ts
@@ -2,6 +2,16 @@ import { LitElement, css } from 'lit';
2
3
import { registerComponent } from '../common/definitions/register.js';
4
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
+ */
15
export default class IgcSliderLabelComponent extends LitElement {
16
public static readonly tagName = 'igc-slider-label';
17
public static override styles = css`
0 commit comments