@statistikzh/leu 0.23.0 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +8 -8
- package/.github/workflows/deploy-github-pages.yaml +2 -2
- package/.github/workflows/publish.yml +30 -0
- package/.github/workflows/release-please.yml +1 -19
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +18 -0
- package/dist/Accordion.js +1 -1
- package/dist/Button.js +1 -1
- package/dist/ButtonGroup.js +1 -1
- package/dist/ChartWrapper.js +1 -1
- package/dist/Checkbox.js +1 -1
- package/dist/CheckboxGroup.js +1 -1
- package/dist/Chip.js +1 -1
- package/dist/ChipGroup.js +1 -1
- package/dist/ChipLink.js +1 -1
- package/dist/ChipRemovable.js +1 -1
- package/dist/ChipSelectable.js +1 -1
- package/dist/Dialog.js +1 -1
- package/dist/Dropdown.js +1 -1
- package/dist/FileInput.d.ts +0 -1
- package/dist/FileInput.js +1 -35
- package/dist/Icon.js +1 -1
- package/dist/Input.js +1 -1
- package/dist/{LeuElement-CWseJvWv.js → LeuElement-BfbOWTGZ.js} +1 -1
- package/dist/Menu.js +1 -1
- package/dist/MenuItem.js +1 -1
- package/dist/Message.js +1 -1
- package/dist/Pagination.js +1 -1
- package/dist/Placeholder.js +1 -1
- package/dist/Popup.js +1 -1
- package/dist/ProgressBar.js +1 -1
- package/dist/Radio.js +1 -1
- package/dist/RadioGroup.js +1 -1
- package/dist/Range.d.ts +51 -0
- package/dist/Range.js +143 -5
- package/dist/ScrollTop.js +1 -1
- package/dist/Select.js +1 -1
- package/dist/Spinner.js +1 -1
- package/dist/Table.js +1 -1
- package/dist/Tag.js +1 -1
- package/dist/VisuallyHidden.js +1 -1
- package/dist/components/file-input/FileInput.d.ts +2 -2
- package/dist/components/file-input/FileInput.d.ts.map +1 -1
- package/dist/components/range/Range.d.ts +51 -0
- package/dist/components/range/Range.d.ts.map +1 -1
- package/dist/components/range/stories/range.stories.d.ts +230 -0
- package/dist/components/range/stories/range.stories.d.ts.map +1 -0
- package/dist/components/range/test/range.test.d.ts.map +1 -1
- package/dist/index.js +1 -2
- package/dist/leu-accordion.js +1 -1
- package/dist/leu-button-group.js +1 -1
- package/dist/leu-button.js +1 -1
- package/dist/leu-chart-wrapper.js +1 -1
- package/dist/leu-checkbox-group.js +1 -1
- package/dist/leu-checkbox.js +1 -1
- package/dist/leu-chip-group.js +1 -1
- package/dist/leu-chip-link.js +1 -1
- package/dist/leu-chip-removable.js +1 -1
- package/dist/leu-chip-selectable.js +1 -1
- package/dist/leu-dialog.js +1 -1
- package/dist/leu-dropdown.js +1 -1
- package/dist/leu-file-input.d.ts +0 -1
- package/dist/leu-file-input.js +1 -35
- package/dist/leu-icon.js +1 -1
- package/dist/leu-input.js +1 -1
- package/dist/leu-menu-item.js +1 -1
- package/dist/leu-menu.js +1 -1
- package/dist/leu-message.js +1 -1
- package/dist/leu-pagination.js +1 -1
- package/dist/leu-placeholder.js +1 -1
- package/dist/leu-popup.js +1 -1
- package/dist/leu-progress-bar.js +1 -1
- package/dist/leu-radio-group.js +1 -1
- package/dist/leu-radio.js +1 -1
- package/dist/leu-range.js +1 -1
- package/dist/leu-scroll-top.js +1 -1
- package/dist/leu-select.js +1 -1
- package/dist/leu-spinner.js +1 -1
- package/dist/leu-table.js +1 -1
- package/dist/leu-tag.js +1 -1
- package/dist/leu-visually-hidden.js +1 -1
- package/dist/vscode.html-custom-data.json +99 -50
- package/dist/vue/index.d.ts +84 -66
- package/dist/web-types.json +192 -98
- package/package.json +6 -2
- package/src/components/file-input/FileInput.ts +2 -2
- package/src/components/range/Range.ts +102 -3
- package/src/components/range/range.css +48 -1
- package/src/components/range/stories/range.stories.ts +182 -0
- package/src/components/range/test/range.test.ts +151 -6
- package/dist/components/range/stories/range-slider.stories.d.ts +0 -26
- package/dist/components/range/stories/range-slider.stories.d.ts.map +0 -1
- package/src/components/range/stories/range-slider.stories.ts +0 -142
package/dist/index.js
CHANGED
|
@@ -29,7 +29,7 @@ export { LeuSpinner } from './Spinner.js';
|
|
|
29
29
|
export { LeuTable } from './Table.js';
|
|
30
30
|
export { LeuTag } from './Tag.js';
|
|
31
31
|
export { LeuVisuallyHidden } from './VisuallyHidden.js';
|
|
32
|
-
export { L as LeuElement } from './LeuElement-
|
|
32
|
+
export { L as LeuElement } from './LeuElement-BfbOWTGZ.js';
|
|
33
33
|
import './_tslib-CNEFicEt.js';
|
|
34
34
|
import 'lit';
|
|
35
35
|
import 'lit/static-html.js';
|
|
@@ -39,7 +39,6 @@ import 'lit/directives/if-defined.js';
|
|
|
39
39
|
import './hasSlotController-Bm2tipvG.js';
|
|
40
40
|
import './Chip.js';
|
|
41
41
|
import 'lit/directives/ref.js';
|
|
42
|
-
import './leu-icon.js';
|
|
43
42
|
import 'lit/directives/live.js';
|
|
44
43
|
import '@floating-ui/dom';
|
|
45
44
|
import 'lit/directive.js';
|
package/dist/leu-accordion.js
CHANGED
package/dist/leu-button-group.js
CHANGED
package/dist/leu-button.js
CHANGED
|
@@ -5,7 +5,7 @@ import 'lit/directives/class-map.js';
|
|
|
5
5
|
import 'lit/directives/if-defined.js';
|
|
6
6
|
import 'lit/decorators.js';
|
|
7
7
|
import './Icon.js';
|
|
8
|
-
import './LeuElement-
|
|
8
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
9
9
|
import './hasSlotController-Bm2tipvG.js';
|
|
10
10
|
|
|
11
11
|
LeuButton.define("leu-button");
|
|
@@ -2,7 +2,7 @@ import { LeuChartWrapper } from './ChartWrapper.js';
|
|
|
2
2
|
import './_tslib-CNEFicEt.js';
|
|
3
3
|
import 'lit';
|
|
4
4
|
import 'lit/decorators.js';
|
|
5
|
-
import './LeuElement-
|
|
5
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
6
6
|
import './hasSlotController-Bm2tipvG.js';
|
|
7
7
|
import './Spinner.js';
|
|
8
8
|
|
package/dist/leu-checkbox.js
CHANGED
package/dist/leu-chip-group.js
CHANGED
|
@@ -2,7 +2,7 @@ import { LeuChipGroup } from './ChipGroup.js';
|
|
|
2
2
|
import './_tslib-CNEFicEt.js';
|
|
3
3
|
import 'lit/static-html.js';
|
|
4
4
|
import 'lit/decorators.js';
|
|
5
|
-
import './LeuElement-
|
|
5
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
6
6
|
import 'lit';
|
|
7
7
|
import './ChipSelectable.js';
|
|
8
8
|
import './Chip.js';
|
package/dist/leu-chip-link.js
CHANGED
package/dist/leu-dialog.js
CHANGED
package/dist/leu-dropdown.js
CHANGED
|
@@ -3,7 +3,7 @@ import './_tslib-CNEFicEt.js';
|
|
|
3
3
|
import 'lit';
|
|
4
4
|
import 'lit/directives/ref.js';
|
|
5
5
|
import 'lit/decorators.js';
|
|
6
|
-
import './LeuElement-
|
|
6
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
7
7
|
import './hasSlotController-Bm2tipvG.js';
|
|
8
8
|
import './Button.js';
|
|
9
9
|
import 'lit/directives/class-map.js';
|
package/dist/leu-file-input.d.ts
CHANGED
package/dist/leu-file-input.js
CHANGED
|
@@ -4,45 +4,11 @@ import 'lit';
|
|
|
4
4
|
import 'lit/decorators.js';
|
|
5
5
|
import 'lit/directives/if-defined.js';
|
|
6
6
|
import 'lit/directives/class-map.js';
|
|
7
|
-
import './LeuElement-
|
|
8
|
-
import './Accordion.js';
|
|
9
|
-
import 'lit/static-html.js';
|
|
7
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
10
8
|
import './Button.js';
|
|
11
9
|
import './Icon.js';
|
|
12
10
|
import './hasSlotController-Bm2tipvG.js';
|
|
13
|
-
import './ButtonGroup.js';
|
|
14
|
-
import './ChartWrapper.js';
|
|
15
|
-
import './Spinner.js';
|
|
16
|
-
import './Checkbox.js';
|
|
17
|
-
import './CheckboxGroup.js';
|
|
18
|
-
import './ChipGroup.js';
|
|
19
|
-
import './ChipSelectable.js';
|
|
20
|
-
import './Chip.js';
|
|
21
|
-
import './ChipLink.js';
|
|
22
|
-
import './ChipRemovable.js';
|
|
23
|
-
import './Dialog.js';
|
|
24
|
-
import 'lit/directives/ref.js';
|
|
25
|
-
import './Dropdown.js';
|
|
26
|
-
import './Menu.js';
|
|
27
|
-
import './MenuItem.js';
|
|
28
|
-
import './Popup.js';
|
|
29
|
-
import '@floating-ui/dom';
|
|
30
|
-
import './Input.js';
|
|
31
|
-
import 'lit/directives/live.js';
|
|
32
|
-
import './Message.js';
|
|
33
|
-
import './Pagination.js';
|
|
34
11
|
import './VisuallyHidden.js';
|
|
35
|
-
import './Placeholder.js';
|
|
36
|
-
import './ProgressBar.js';
|
|
37
|
-
import './Radio.js';
|
|
38
|
-
import './RadioGroup.js';
|
|
39
|
-
import './Range.js';
|
|
40
|
-
import './ScrollTop.js';
|
|
41
|
-
import './Select.js';
|
|
42
|
-
import './Table.js';
|
|
43
|
-
import 'lit/directive.js';
|
|
44
|
-
import './Tag.js';
|
|
45
|
-
import './leu-icon.js';
|
|
46
12
|
|
|
47
13
|
LeuFileInput.define("leu-file-input");
|
|
48
14
|
|
package/dist/leu-icon.js
CHANGED
package/dist/leu-input.js
CHANGED
|
@@ -6,7 +6,7 @@ import 'lit/directives/if-defined.js';
|
|
|
6
6
|
import 'lit/directives/live.js';
|
|
7
7
|
import 'lit/directives/ref.js';
|
|
8
8
|
import 'lit/decorators.js';
|
|
9
|
-
import './LeuElement-
|
|
9
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
10
10
|
import './Icon.js';
|
|
11
11
|
|
|
12
12
|
LeuInput.define("leu-input");
|
package/dist/leu-menu-item.js
CHANGED
package/dist/leu-menu.js
CHANGED
|
@@ -2,7 +2,7 @@ import { LeuMenu } from './Menu.js';
|
|
|
2
2
|
import './_tslib-CNEFicEt.js';
|
|
3
3
|
import 'lit';
|
|
4
4
|
import 'lit/decorators.js';
|
|
5
|
-
import './LeuElement-
|
|
5
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
6
6
|
import './MenuItem.js';
|
|
7
7
|
import 'lit/directives/if-defined.js';
|
|
8
8
|
import './Icon.js';
|
package/dist/leu-message.js
CHANGED
package/dist/leu-pagination.js
CHANGED
|
@@ -3,7 +3,7 @@ import './_tslib-CNEFicEt.js';
|
|
|
3
3
|
import 'lit';
|
|
4
4
|
import 'lit/directives/live.js';
|
|
5
5
|
import 'lit/decorators.js';
|
|
6
|
-
import './LeuElement-
|
|
6
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
7
7
|
import './Button.js';
|
|
8
8
|
import 'lit/directives/class-map.js';
|
|
9
9
|
import 'lit/directives/if-defined.js';
|
package/dist/leu-placeholder.js
CHANGED
package/dist/leu-popup.js
CHANGED
package/dist/leu-progress-bar.js
CHANGED
package/dist/leu-radio-group.js
CHANGED
package/dist/leu-radio.js
CHANGED
package/dist/leu-range.js
CHANGED
package/dist/leu-scroll-top.js
CHANGED
|
@@ -3,7 +3,7 @@ import './_tslib-CNEFicEt.js';
|
|
|
3
3
|
import 'lit';
|
|
4
4
|
import 'lit/directives/class-map.js';
|
|
5
5
|
import 'lit/decorators.js';
|
|
6
|
-
import './LeuElement-
|
|
6
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
7
7
|
import './Button.js';
|
|
8
8
|
import 'lit/directives/if-defined.js';
|
|
9
9
|
import './Icon.js';
|
package/dist/leu-select.js
CHANGED
|
@@ -3,7 +3,7 @@ import 'lit';
|
|
|
3
3
|
import 'lit/directives/class-map.js';
|
|
4
4
|
import 'lit/directives/ref.js';
|
|
5
5
|
import 'lit/directives/if-defined.js';
|
|
6
|
-
import './LeuElement-
|
|
6
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
7
7
|
import './hasSlotController-Bm2tipvG.js';
|
|
8
8
|
import './Button.js';
|
|
9
9
|
import './_tslib-CNEFicEt.js';
|
package/dist/leu-spinner.js
CHANGED
package/dist/leu-table.js
CHANGED
|
@@ -2,7 +2,7 @@ import { LeuTable } from './Table.js';
|
|
|
2
2
|
import 'lit';
|
|
3
3
|
import 'lit/directives/class-map.js';
|
|
4
4
|
import 'lit/directives/ref.js';
|
|
5
|
-
import './LeuElement-
|
|
5
|
+
import './LeuElement-BfbOWTGZ.js';
|
|
6
6
|
import 'lit/directive.js';
|
|
7
7
|
import './Icon.js';
|
|
8
8
|
import './_tslib-CNEFicEt.js';
|
package/dist/leu-tag.js
CHANGED
|
@@ -109,23 +109,6 @@
|
|
|
109
109
|
}
|
|
110
110
|
]
|
|
111
111
|
},
|
|
112
|
-
{
|
|
113
|
-
"name": "leu-chart-wrapper",
|
|
114
|
-
"description": "A wrapper element for charts.\n---\n\n\n### **Slots:**\n - **title** - The title of the chart. Use a heading tag (h2-4) depending on your context.\n- **description** - A description of the chart. Content is wrapped in a `<p>` tag by the component.\n- **chart** - The actual chart\n- **caption** - A caption for the chart, e.g. a source or explanation of the data.\n- **download** - A download button or dropdown to export the chart in different formats.",
|
|
115
|
-
"attributes": [
|
|
116
|
-
{
|
|
117
|
-
"name": "pending",
|
|
118
|
-
"description": "Whether the chart is currently loading or not.\nWhen set to `true`, a spinner will be shown in the chart container.",
|
|
119
|
-
"values": []
|
|
120
|
-
}
|
|
121
|
-
],
|
|
122
|
-
"references": [
|
|
123
|
-
{
|
|
124
|
-
"name": "Documentation",
|
|
125
|
-
"url": "https://statistikzh.github.io/leu/?path=/story/chart-wrapper"
|
|
126
|
-
}
|
|
127
|
-
]
|
|
128
|
-
},
|
|
129
112
|
{
|
|
130
113
|
"name": "leu-button-group",
|
|
131
114
|
"description": "A radio input-like button group component.\nIt allows only one button to be active at a time.\n---\n\n\n### **Events:**\n - **input** - When the value of the group changes by clicking a button\n\n### **Slots:**\n - _default_ - Slot for the buttons",
|
|
@@ -176,32 +159,19 @@
|
|
|
176
159
|
]
|
|
177
160
|
},
|
|
178
161
|
{
|
|
179
|
-
"name": "leu-
|
|
180
|
-
"description": "
|
|
162
|
+
"name": "leu-chart-wrapper",
|
|
163
|
+
"description": "A wrapper element for charts.\n---\n\n\n### **Slots:**\n - **title** - The title of the chart. Use a heading tag (h2-4) depending on your context.\n- **description** - A description of the chart. Content is wrapped in a `<p>` tag by the component.\n- **chart** - The actual chart\n- **caption** - A caption for the chart, e.g. a source or explanation of the data.\n- **download** - A download button or dropdown to export the chart in different formats.",
|
|
181
164
|
"attributes": [
|
|
182
|
-
{ "name": "label", "values": [] },
|
|
183
|
-
{ "name": "expanded", "values": [] },
|
|
184
|
-
{ "name": "inverted", "values": [] }
|
|
185
|
-
],
|
|
186
|
-
"references": [
|
|
187
165
|
{
|
|
188
|
-
"name": "
|
|
189
|
-
"
|
|
166
|
+
"name": "pending",
|
|
167
|
+
"description": "Whether the chart is currently loading or not.\nWhen set to `true`, a spinner will be shown in the chart container.",
|
|
168
|
+
"values": []
|
|
190
169
|
}
|
|
191
|
-
]
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"name": "leu-dialog",
|
|
195
|
-
"description": "\n---\n",
|
|
196
|
-
"attributes": [
|
|
197
|
-
{ "name": "label", "values": [] },
|
|
198
|
-
{ "name": "sublabel", "values": [] },
|
|
199
|
-
{ "name": "open", "values": [] }
|
|
200
170
|
],
|
|
201
171
|
"references": [
|
|
202
172
|
{
|
|
203
173
|
"name": "Documentation",
|
|
204
|
-
"url": "https://statistikzh.github.io/leu/?path=/story/
|
|
174
|
+
"url": "https://statistikzh.github.io/leu/?path=/story/chart-wrapper"
|
|
205
175
|
}
|
|
206
176
|
]
|
|
207
177
|
},
|
|
@@ -302,6 +272,21 @@
|
|
|
302
272
|
}
|
|
303
273
|
]
|
|
304
274
|
},
|
|
275
|
+
{
|
|
276
|
+
"name": "leu-dropdown",
|
|
277
|
+
"description": "\n---\n",
|
|
278
|
+
"attributes": [
|
|
279
|
+
{ "name": "label", "values": [] },
|
|
280
|
+
{ "name": "expanded", "values": [] },
|
|
281
|
+
{ "name": "inverted", "values": [] }
|
|
282
|
+
],
|
|
283
|
+
"references": [
|
|
284
|
+
{
|
|
285
|
+
"name": "Documentation",
|
|
286
|
+
"url": "https://statistikzh.github.io/leu/?path=/story/dropdown"
|
|
287
|
+
}
|
|
288
|
+
]
|
|
289
|
+
},
|
|
305
290
|
{
|
|
306
291
|
"name": "leu-file-input",
|
|
307
292
|
"description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**",
|
|
@@ -340,6 +325,23 @@
|
|
|
340
325
|
}
|
|
341
326
|
]
|
|
342
327
|
},
|
|
328
|
+
{
|
|
329
|
+
"name": "leu-icon",
|
|
330
|
+
"description": "A component to render all defined zhWeb icons.\nThe `fill` of the icon is set to `currentColor` and\ncan be overriden by setting the css `color` property.\nIf the icon name is not found, a placeholder will be displayed.\n---\n\n\n### **CSS Properties:**\n - **--leu-icon-size** - The size of the icon. _(default: undefined)_",
|
|
331
|
+
"attributes": [
|
|
332
|
+
{
|
|
333
|
+
"name": "name",
|
|
334
|
+
"description": "The name of the icon to display.",
|
|
335
|
+
"values": [{ "name": "IconPathName" }, { "name": "\"\"" }]
|
|
336
|
+
}
|
|
337
|
+
],
|
|
338
|
+
"references": [
|
|
339
|
+
{
|
|
340
|
+
"name": "Documentation",
|
|
341
|
+
"url": "https://statistikzh.github.io/leu/?path=/story/icon"
|
|
342
|
+
}
|
|
343
|
+
]
|
|
344
|
+
},
|
|
343
345
|
{
|
|
344
346
|
"name": "leu-input",
|
|
345
347
|
"description": "A text input element.\n---\n\n\n### **Events:**\n - **input** - Dispatched when the value of the input element changes.\n- **change** - Dispatched when the value of the input element changes and the input element loses focus.\n\n### **Methods:**\n \n\n\n\n\n\n\n- **checkValidity()** - Check input validation\n\n",
|
|
@@ -453,19 +455,17 @@
|
|
|
453
455
|
]
|
|
454
456
|
},
|
|
455
457
|
{
|
|
456
|
-
"name": "leu-
|
|
457
|
-
"description": "
|
|
458
|
+
"name": "leu-dialog",
|
|
459
|
+
"description": "\n---\n",
|
|
458
460
|
"attributes": [
|
|
459
|
-
{
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
"values": [{ "name": "IconPathName" }, { "name": "\"\"" }]
|
|
463
|
-
}
|
|
461
|
+
{ "name": "label", "values": [] },
|
|
462
|
+
{ "name": "sublabel", "values": [] },
|
|
463
|
+
{ "name": "open", "values": [] }
|
|
464
464
|
],
|
|
465
465
|
"references": [
|
|
466
466
|
{
|
|
467
467
|
"name": "Documentation",
|
|
468
|
-
"url": "https://statistikzh.github.io/leu/?path=/story/
|
|
468
|
+
"url": "https://statistikzh.github.io/leu/?path=/story/dialog"
|
|
469
469
|
}
|
|
470
470
|
]
|
|
471
471
|
},
|
|
@@ -728,13 +728,62 @@
|
|
|
728
728
|
"description": "\n---\n\n\n### **Methods:**\n ",
|
|
729
729
|
"attributes": [
|
|
730
730
|
{ "name": "value", "values": [{ "name": "array" }] },
|
|
731
|
-
{
|
|
732
|
-
|
|
733
|
-
|
|
731
|
+
{
|
|
732
|
+
"name": "min",
|
|
733
|
+
"description": "The minimum value of the range slider.",
|
|
734
|
+
"values": []
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"name": "max",
|
|
738
|
+
"description": "The maximum value of the range slider.",
|
|
739
|
+
"values": []
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"name": "step",
|
|
743
|
+
"description": "The step size of the range slider.",
|
|
744
|
+
"values": []
|
|
745
|
+
},
|
|
734
746
|
{ "name": "name", "values": [] },
|
|
735
|
-
{
|
|
736
|
-
|
|
737
|
-
|
|
747
|
+
{
|
|
748
|
+
"name": "label",
|
|
749
|
+
"description": "The label of the range slider.",
|
|
750
|
+
"values": []
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"name": "hide-label",
|
|
754
|
+
"description": "Whether to hide the label of the range slider.\nIf true, the label will still be available for screen readers\nand is only visually hidden.",
|
|
755
|
+
"values": []
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"name": "disabled",
|
|
759
|
+
"description": "Whether the range slider is disabled.",
|
|
760
|
+
"values": []
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"name": "multiple",
|
|
764
|
+
"description": "Whether to use a range with two handles.",
|
|
765
|
+
"values": []
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "show-ticks",
|
|
769
|
+
"description": "Wheter to show tick marks below the range slider.\nOne tick mark per step will be rendered.",
|
|
770
|
+
"values": []
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"name": "show-range-labels",
|
|
774
|
+
"description": "Whether to show the min and max labels below the range slider.",
|
|
775
|
+
"values": []
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"name": "prefix",
|
|
779
|
+
"description": "A prefix to display before the value in the output element(s).\nIs ignored if a custom valueFormatter is provided.",
|
|
780
|
+
"values": []
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"name": "suffix",
|
|
784
|
+
"description": "A suffix to display after the value in the output element(s).\nIs ignored if a custom valueFormatter is provided.",
|
|
785
|
+
"values": []
|
|
786
|
+
}
|
|
738
787
|
],
|
|
739
788
|
"references": [
|
|
740
789
|
{
|