igniteui-webcomponents 1.0.0 → 2.0.0-beta.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/CHANGELOG.md +40 -1
- package/README.md +17 -1
- package/components/avatar/avatar.d.ts +20 -2
- package/components/avatar/avatar.material.css.d.ts +0 -1
- package/components/avatar/avatar.material.css.js +1 -1
- package/components/avatar/avatar.material.css.js.map +1 -1
- package/components/badge/badge.d.ts +18 -4
- package/components/badge/badge.js.map +1 -1
- package/components/badge/badge.material.css.d.ts +0 -1
- package/components/badge/badge.material.css.js +1 -1
- package/components/badge/badge.material.css.js.map +1 -1
- package/components/button/button-base.d.ts +24 -1
- package/components/button/button-base.js +16 -0
- package/components/button/button-base.js.map +1 -1
- package/components/button/button.d.ts +23 -2
- package/components/button/button.material.css.d.ts +0 -1
- package/components/button/button.material.css.js +1 -1
- package/components/button/button.material.css.js.map +1 -1
- package/components/button/icon-button.d.ts +15 -2
- package/components/button/icon-button.js +15 -1
- package/components/button/icon-button.js.map +1 -1
- package/components/button/icon-button.material.css.d.ts +0 -1
- package/components/button/icon-button.material.css.js +1 -1
- package/components/button/icon-button.material.css.js.map +1 -1
- package/components/calendar/calendar.d.ts +42 -3
- package/components/calendar/calendar.js +34 -12
- package/components/calendar/calendar.js.map +1 -1
- package/components/calendar/calendar.material.css.d.ts +0 -1
- package/components/calendar/calendar.material.css.js +1 -1
- package/components/calendar/calendar.material.css.js.map +1 -1
- package/components/calendar/common/calendar-base.d.ts +17 -2
- package/components/calendar/common/calendar-base.js +28 -4
- package/components/calendar/common/calendar-base.js.map +1 -1
- package/components/calendar/common/calendar.model.d.ts +57 -1
- package/components/calendar/common/utils.d.ts +0 -1
- package/components/calendar/days-view/days-view.d.ts +25 -2
- package/components/calendar/days-view/days-view.js +38 -35
- package/components/calendar/days-view/days-view.js.map +1 -1
- package/components/calendar/days-view/days-view.material.css.d.ts +0 -1
- package/components/calendar/days-view/days-view.material.css.js +1 -1
- package/components/calendar/days-view/days-view.material.css.js.map +1 -1
- package/components/calendar/months-view/months-view.d.ts +17 -2
- package/components/calendar/months-view/months-view.js +4 -2
- package/components/calendar/months-view/months-view.js.map +1 -1
- package/components/calendar/months-view/months-view.material.css.d.ts +0 -1
- package/components/calendar/years-view/years-view.d.ts +16 -2
- package/components/calendar/years-view/years-view.js +4 -2
- package/components/calendar/years-view/years-view.js.map +1 -1
- package/components/calendar/years-view/years-view.material.css.d.ts +0 -1
- package/components/card/card.actions.d.ts +10 -2
- package/components/card/card.actions.material.css.d.ts +0 -1
- package/components/card/card.actions.material.css.js +1 -1
- package/components/card/card.actions.material.css.js.map +1 -1
- package/components/card/card.content.d.ts +8 -2
- package/components/card/card.content.material.css.d.ts +0 -1
- package/components/card/card.content.material.css.js +1 -1
- package/components/card/card.content.material.css.js.map +1 -1
- package/components/card/card.d.ts +10 -3
- package/components/card/card.header.d.ts +13 -2
- package/components/card/card.header.material.css.d.ts +0 -1
- package/components/card/card.header.material.css.js +1 -1
- package/components/card/card.header.material.css.js.map +1 -1
- package/components/card/card.js +2 -2
- package/components/card/card.js.map +1 -1
- package/components/card/card.material.css.d.ts +0 -1
- package/components/card/card.material.css.js +1 -1
- package/components/card/card.material.css.js.map +1 -1
- package/components/card/card.media.d.ts +8 -2
- package/components/card/card.media.material.css.d.ts +0 -1
- package/components/card/card.media.material.css.js +1 -1
- package/components/card/card.media.material.css.js.map +1 -1
- package/components/checkbox/checkbox-base.d.ts +16 -1
- package/components/checkbox/checkbox.d.ts +21 -3
- package/components/checkbox/checkbox.js +25 -27
- package/components/checkbox/checkbox.js.map +1 -1
- package/components/checkbox/checkbox.material.css.d.ts +0 -1
- package/components/checkbox/checkbox.material.css.js +1 -1
- package/components/checkbox/checkbox.material.css.js.map +1 -1
- package/components/checkbox/switch.d.ts +19 -2
- package/components/checkbox/switch.js +17 -18
- package/components/checkbox/switch.js.map +1 -1
- package/components/checkbox/switch.material.css.d.ts +0 -1
- package/components/checkbox/switch.material.css.js +1 -1
- package/components/checkbox/switch.material.css.js.map +1 -1
- package/components/common/decorators/alternateName.d.ts +6 -1
- package/components/common/decorators/blazorInclude.d.ts +4 -1
- package/components/common/decorators/blazorIndirectRender.d.ts +4 -0
- package/components/common/decorators/blazorIndirectRender.js +2 -0
- package/components/common/decorators/blazorIndirectRender.js.map +1 -0
- package/components/common/decorators/blazorSuppress.d.ts +4 -1
- package/components/common/decorators/blazorSuppressComponent.d.ts +4 -0
- package/components/common/decorators/blazorSuppressComponent.js +2 -0
- package/components/common/decorators/blazorSuppressComponent.js.map +1 -0
- package/components/common/decorators/blazorTwoWayBind.d.ts +6 -1
- package/components/common/decorators/index.d.ts +2 -1
- package/components/common/decorators/index.js +2 -0
- package/components/common/decorators/index.js.map +1 -1
- package/components/common/decorators/watch.d.ts +0 -1
- package/components/common/definitions/defineAllComponents.d.ts +0 -1
- package/components/common/definitions/defineAllComponents.js +4 -0
- package/components/common/definitions/defineAllComponents.js.map +1 -1
- package/components/common/definitions/defineComponents.d.ts +0 -1
- package/components/common/i18n/calendar.resources.d.ts +0 -1
- package/components/common/mixins/constructor.d.ts +0 -1
- package/components/common/mixins/event-emitter.d.ts +0 -1
- package/components/common/mixins/sizable.d.ts +4 -1
- package/components/common/util.d.ts +0 -1
- package/components/form/form.d.ts +21 -2
- package/components/form/form.js +4 -1
- package/components/form/form.js.map +1 -1
- package/components/icon/icon.d.ts +26 -2
- package/components/icon/icon.material.css.d.ts +0 -1
- package/components/icon/icon.material.css.js +1 -1
- package/components/icon/icon.material.css.js.map +1 -1
- package/components/icon/icon.registry.d.ts +0 -1
- package/components/input/input.d.ts +56 -2
- package/components/input/input.dark.material.css.d.ts +1 -0
- package/components/input/input.dark.material.css.js +3 -0
- package/components/input/input.dark.material.css.js.map +1 -0
- package/components/input/input.material.css.d.ts +0 -1
- package/components/input/input.material.css.js +1 -1
- package/components/input/input.material.css.js.map +1 -1
- package/components/list/list-header.d.ts +10 -2
- package/components/list/list-header.material.css.d.ts +0 -1
- package/components/list/list-header.material.css.js +1 -1
- package/components/list/list-header.material.css.js.map +1 -1
- package/components/list/list-item.d.ts +22 -2
- package/components/list/list-item.material.css.d.ts +0 -1
- package/components/list/list-item.material.css.js +1 -1
- package/components/list/list-item.material.css.js.map +1 -1
- package/components/list/list.d.ts +10 -2
- package/components/list/list.material.css.d.ts +0 -1
- package/components/list/list.material.css.js +1 -1
- package/components/list/list.material.css.js.map +1 -1
- package/components/nav-drawer/nav-drawer-header-item.d.ts +9 -2
- package/components/nav-drawer/nav-drawer-header-item.material.css.d.ts +0 -1
- package/components/nav-drawer/nav-drawer-header-item.material.css.js +1 -1
- package/components/nav-drawer/nav-drawer-header-item.material.css.js.map +1 -1
- package/components/nav-drawer/nav-drawer-item.d.ts +17 -2
- package/components/nav-drawer/nav-drawer-item.material.css.d.ts +0 -1
- package/components/nav-drawer/nav-drawer-item.material.css.js +1 -1
- package/components/nav-drawer/nav-drawer-item.material.css.js.map +1 -1
- package/components/nav-drawer/nav-drawer.d.ts +26 -2
- package/components/nav-drawer/nav-drawer.material.css.d.ts +0 -1
- package/components/nav-drawer/nav-drawer.material.css.js +1 -1
- package/components/nav-drawer/nav-drawer.material.css.js.map +1 -1
- package/components/navbar/navbar.d.ts +18 -2
- package/components/navbar/navbar.material.css.d.ts +0 -1
- package/components/navbar/navbar.material.css.js +1 -1
- package/components/navbar/navbar.material.css.js.map +1 -1
- package/components/radio/radio.d.ts +31 -2
- package/components/radio/radio.material.css.d.ts +0 -1
- package/components/radio/radio.material.css.js +1 -1
- package/components/radio/radio.material.css.js.map +1 -1
- package/components/radio-group/radio-group.d.ts +3 -2
- package/components/radio-group/radio-group.material.css.d.ts +0 -1
- package/components/radio-group/radio-group.material.css.js +1 -1
- package/components/radio-group/radio-group.material.css.js.map +1 -1
- package/components/ripple/ripple.d.ts +9 -2
- package/components/ripple/ripple.material.css.d.ts +0 -1
- package/components/ripple/ripple.material.css.js +1 -1
- package/components/ripple/ripple.material.css.js.map +1 -1
- package/components/slider/range-slider.d.ts +85 -0
- package/components/slider/range-slider.js +141 -0
- package/components/slider/range-slider.js.map +1 -0
- package/components/slider/slider-base.d.ts +117 -0
- package/components/slider/slider-base.js +448 -0
- package/components/slider/slider-base.js.map +1 -0
- package/components/slider/slider.d.ts +76 -0
- package/components/slider/slider.js +80 -0
- package/components/slider/slider.js.map +1 -0
- package/components/slider/slider.material.css.d.ts +1 -0
- package/components/slider/slider.material.css.js +3 -0
- package/components/slider/slider.material.css.js.map +1 -0
- package/custom-elements.json +648 -22
- package/index.d.ts +2 -1
- package/index.js +2 -0
- package/index.js.map +1 -1
- package/package.json +5 -4
- package/themes/dark/bootstrap.css +1 -0
- package/themes/dark/fluent.css +1 -0
- package/themes/dark/indigo.css +1 -0
- package/themes/dark/material.css +1 -0
- package/themes/light/bootstrap.css +1 -0
- package/themes/light/fluent.css +1 -0
- package/themes/light/indigo.css +1 -0
- package/themes/light/material.css +1 -0
- package/vscode-html-custom-data.json +263 -13
- package/components/avatar/avatar.d.ts.map +0 -1
- package/components/avatar/avatar.material.css.d.ts.map +0 -1
- package/components/badge/badge.d.ts.map +0 -1
- package/components/badge/badge.material.css.d.ts.map +0 -1
- package/components/button/button-base.d.ts.map +0 -1
- package/components/button/button.d.ts.map +0 -1
- package/components/button/button.material.css.d.ts.map +0 -1
- package/components/button/icon-button.d.ts.map +0 -1
- package/components/button/icon-button.material.css.d.ts.map +0 -1
- package/components/calendar/calendar.d.ts.map +0 -1
- package/components/calendar/calendar.material.css.d.ts.map +0 -1
- package/components/calendar/common/calendar-base.d.ts.map +0 -1
- package/components/calendar/common/calendar.model.d.ts.map +0 -1
- package/components/calendar/common/utils.d.ts.map +0 -1
- package/components/calendar/days-view/days-view.d.ts.map +0 -1
- package/components/calendar/days-view/days-view.material.css.d.ts.map +0 -1
- package/components/calendar/months-view/months-view.d.ts.map +0 -1
- package/components/calendar/months-view/months-view.material.css.d.ts.map +0 -1
- package/components/calendar/years-view/years-view.d.ts.map +0 -1
- package/components/calendar/years-view/years-view.material.css.d.ts.map +0 -1
- package/components/card/card.actions.d.ts.map +0 -1
- package/components/card/card.actions.material.css.d.ts.map +0 -1
- package/components/card/card.content.d.ts.map +0 -1
- package/components/card/card.content.material.css.d.ts.map +0 -1
- package/components/card/card.d.ts.map +0 -1
- package/components/card/card.header.d.ts.map +0 -1
- package/components/card/card.header.material.css.d.ts.map +0 -1
- package/components/card/card.material.css.d.ts.map +0 -1
- package/components/card/card.media.d.ts.map +0 -1
- package/components/card/card.media.material.css.d.ts.map +0 -1
- package/components/checkbox/checkbox-base.d.ts.map +0 -1
- package/components/checkbox/checkbox.d.ts.map +0 -1
- package/components/checkbox/checkbox.material.css.d.ts.map +0 -1
- package/components/checkbox/switch.d.ts.map +0 -1
- package/components/checkbox/switch.material.css.d.ts.map +0 -1
- package/components/common/decorators/alternateName.d.ts.map +0 -1
- package/components/common/decorators/blazorInclude.d.ts.map +0 -1
- package/components/common/decorators/blazorSuppress.d.ts.map +0 -1
- package/components/common/decorators/blazorTwoWayBind.d.ts.map +0 -1
- package/components/common/decorators/index.d.ts.map +0 -1
- package/components/common/decorators/watch.d.ts.map +0 -1
- package/components/common/definitions/defineAllComponents.d.ts.map +0 -1
- package/components/common/definitions/defineComponents.d.ts.map +0 -1
- package/components/common/i18n/calendar.resources.d.ts.map +0 -1
- package/components/common/mixins/constructor.d.ts.map +0 -1
- package/components/common/mixins/event-emitter.d.ts.map +0 -1
- package/components/common/mixins/sizable.d.ts.map +0 -1
- package/components/common/util.d.ts.map +0 -1
- package/components/form/form.d.ts.map +0 -1
- package/components/icon/icon.d.ts.map +0 -1
- package/components/icon/icon.material.css.d.ts.map +0 -1
- package/components/icon/icon.registry.d.ts.map +0 -1
- package/components/input/input.d.ts.map +0 -1
- package/components/input/input.material.css.d.ts.map +0 -1
- package/components/list/list-header.d.ts.map +0 -1
- package/components/list/list-header.material.css.d.ts.map +0 -1
- package/components/list/list-item.d.ts.map +0 -1
- package/components/list/list-item.material.css.d.ts.map +0 -1
- package/components/list/list.d.ts.map +0 -1
- package/components/list/list.material.css.d.ts.map +0 -1
- package/components/nav-drawer/nav-drawer-header-item.d.ts.map +0 -1
- package/components/nav-drawer/nav-drawer-header-item.material.css.d.ts.map +0 -1
- package/components/nav-drawer/nav-drawer-item.d.ts.map +0 -1
- package/components/nav-drawer/nav-drawer-item.material.css.d.ts.map +0 -1
- package/components/nav-drawer/nav-drawer.d.ts.map +0 -1
- package/components/nav-drawer/nav-drawer.material.css.d.ts.map +0 -1
- package/components/navbar/navbar.d.ts.map +0 -1
- package/components/navbar/navbar.material.css.d.ts.map +0 -1
- package/components/radio/radio.d.ts.map +0 -1
- package/components/radio/radio.material.css.d.ts.map +0 -1
- package/components/radio-group/radio-group.d.ts.map +0 -1
- package/components/radio-group/radio-group.material.css.d.ts.map +0 -1
- package/components/ripple/ripple.d.ts.map +0 -1
- package/components/ripple/ripple.material.css.d.ts.map +0 -1
- package/index.d.ts.map +0 -1
- package/themes/bootstrap.css +0 -1
- package/themes/fluent.css +0 -1
- package/themes/indigo.css +0 -1
- package/themes/material.css +0 -1
package/custom-elements.json
CHANGED
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
{
|
|
102
102
|
"name": "variant",
|
|
103
103
|
"description": "The type of badge.",
|
|
104
|
-
"type": "\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\"
|
|
104
|
+
"type": "\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\"",
|
|
105
105
|
"default": "\"primary\""
|
|
106
106
|
},
|
|
107
107
|
{
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
{
|
|
114
114
|
"name": "shape",
|
|
115
115
|
"description": "The shape of the badge.",
|
|
116
|
-
"type": "\"rounded\" | \"square\"
|
|
116
|
+
"type": "\"rounded\" | \"square\"",
|
|
117
117
|
"default": "\"rounded\""
|
|
118
118
|
}
|
|
119
119
|
],
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"name": "variant",
|
|
123
123
|
"attribute": "variant",
|
|
124
124
|
"description": "The type of badge.",
|
|
125
|
-
"type": "\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\"
|
|
125
|
+
"type": "\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\"",
|
|
126
126
|
"default": "\"primary\""
|
|
127
127
|
},
|
|
128
128
|
{
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"name": "shape",
|
|
137
137
|
"attribute": "shape",
|
|
138
138
|
"description": "The shape of the badge.",
|
|
139
|
-
"type": "\"rounded\" | \"square\"
|
|
139
|
+
"type": "\"rounded\" | \"square\"",
|
|
140
140
|
"default": "\"rounded\""
|
|
141
141
|
}
|
|
142
142
|
],
|
|
@@ -195,6 +195,11 @@
|
|
|
195
195
|
"type": "boolean",
|
|
196
196
|
"default": "false"
|
|
197
197
|
},
|
|
198
|
+
{
|
|
199
|
+
"name": "aria-label",
|
|
200
|
+
"description": "The aria label of the button.",
|
|
201
|
+
"type": "string"
|
|
202
|
+
},
|
|
198
203
|
{
|
|
199
204
|
"name": "size",
|
|
200
205
|
"description": "Determines the size of the component.",
|
|
@@ -247,6 +252,12 @@
|
|
|
247
252
|
"type": "boolean",
|
|
248
253
|
"default": "false"
|
|
249
254
|
},
|
|
255
|
+
{
|
|
256
|
+
"name": "ariaLabel",
|
|
257
|
+
"attribute": "aria-label",
|
|
258
|
+
"description": "The aria label of the button.",
|
|
259
|
+
"type": "string"
|
|
260
|
+
},
|
|
250
261
|
{
|
|
251
262
|
"name": "size",
|
|
252
263
|
"attribute": "size",
|
|
@@ -351,6 +362,11 @@
|
|
|
351
362
|
"type": "boolean",
|
|
352
363
|
"default": "false"
|
|
353
364
|
},
|
|
365
|
+
{
|
|
366
|
+
"name": "aria-label",
|
|
367
|
+
"description": "The aria label of the button.",
|
|
368
|
+
"type": "string"
|
|
369
|
+
},
|
|
354
370
|
{
|
|
355
371
|
"name": "size",
|
|
356
372
|
"description": "Determines the size of the component.",
|
|
@@ -422,6 +438,12 @@
|
|
|
422
438
|
"type": "boolean",
|
|
423
439
|
"default": "false"
|
|
424
440
|
},
|
|
441
|
+
{
|
|
442
|
+
"name": "ariaLabel",
|
|
443
|
+
"attribute": "aria-label",
|
|
444
|
+
"description": "The aria label of the button.",
|
|
445
|
+
"type": "string"
|
|
446
|
+
},
|
|
425
447
|
{
|
|
426
448
|
"name": "size",
|
|
427
449
|
"attribute": "size",
|
|
@@ -453,10 +475,10 @@
|
|
|
453
475
|
"default": "false"
|
|
454
476
|
},
|
|
455
477
|
{
|
|
456
|
-
"name": "
|
|
457
|
-
"description": "Determines whether the calendar
|
|
478
|
+
"name": "hide-header",
|
|
479
|
+
"description": "Determines whether the calendar hides its header. Even if set to false, the header is not displayed for `multiple` selection.",
|
|
458
480
|
"type": "boolean",
|
|
459
|
-
"default": "
|
|
481
|
+
"default": "false"
|
|
460
482
|
},
|
|
461
483
|
{
|
|
462
484
|
"name": "header-orientation",
|
|
@@ -488,6 +510,16 @@
|
|
|
488
510
|
"type": "\"small\" | \"medium\" | \"large\"",
|
|
489
511
|
"default": "\"large\""
|
|
490
512
|
},
|
|
513
|
+
{
|
|
514
|
+
"name": "value",
|
|
515
|
+
"description": "Тhe current value of the calendar.\nUsed when selection is set to single.",
|
|
516
|
+
"type": "Date | undefined"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"name": "values",
|
|
520
|
+
"description": "Тhe current values of the calendar.\nUsed when selection is set to multiple or range.",
|
|
521
|
+
"type": "Date[] | undefined"
|
|
522
|
+
},
|
|
491
523
|
{
|
|
492
524
|
"name": "selection",
|
|
493
525
|
"description": "Sets the type of date selection.",
|
|
@@ -522,11 +554,11 @@
|
|
|
522
554
|
"default": "false"
|
|
523
555
|
},
|
|
524
556
|
{
|
|
525
|
-
"name": "
|
|
526
|
-
"attribute": "
|
|
527
|
-
"description": "Determines whether the calendar
|
|
557
|
+
"name": "hideHeader",
|
|
558
|
+
"attribute": "hide-header",
|
|
559
|
+
"description": "Determines whether the calendar hides its header. Even if set to false, the header is not displayed for `multiple` selection.",
|
|
528
560
|
"type": "boolean",
|
|
529
|
-
"default": "
|
|
561
|
+
"default": "false"
|
|
530
562
|
},
|
|
531
563
|
{
|
|
532
564
|
"name": "headerOrientation",
|
|
@@ -577,8 +609,15 @@
|
|
|
577
609
|
},
|
|
578
610
|
{
|
|
579
611
|
"name": "value",
|
|
580
|
-
"
|
|
581
|
-
"
|
|
612
|
+
"attribute": "value",
|
|
613
|
+
"description": "Тhe current value of the calendar.\nUsed when selection is set to single.",
|
|
614
|
+
"type": "Date | undefined"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"name": "values",
|
|
618
|
+
"attribute": "values",
|
|
619
|
+
"description": "Тhe current values of the calendar.\nUsed when selection is set to multiple or range.",
|
|
620
|
+
"type": "Date[] | undefined"
|
|
582
621
|
},
|
|
583
622
|
{
|
|
584
623
|
"name": "selection",
|
|
@@ -729,6 +768,16 @@
|
|
|
729
768
|
"type": "\"long\" | \"short\" | \"narrow\"",
|
|
730
769
|
"default": "\"narrow\""
|
|
731
770
|
},
|
|
771
|
+
{
|
|
772
|
+
"name": "value",
|
|
773
|
+
"description": "Тhe current value of the calendar.\nUsed when selection is set to single.",
|
|
774
|
+
"type": "Date | undefined"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"name": "values",
|
|
778
|
+
"description": "Тhe current values of the calendar.\nUsed when selection is set to multiple or range.",
|
|
779
|
+
"type": "Date[] | undefined"
|
|
780
|
+
},
|
|
732
781
|
{
|
|
733
782
|
"name": "selection",
|
|
734
783
|
"description": "Sets the type of date selection.",
|
|
@@ -796,8 +845,15 @@
|
|
|
796
845
|
},
|
|
797
846
|
{
|
|
798
847
|
"name": "value",
|
|
799
|
-
"
|
|
800
|
-
"
|
|
848
|
+
"attribute": "value",
|
|
849
|
+
"description": "Тhe current value of the calendar.\nUsed when selection is set to single.",
|
|
850
|
+
"type": "Date | undefined"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"name": "values",
|
|
854
|
+
"attribute": "values",
|
|
855
|
+
"description": "Тhe current values of the calendar.\nUsed when selection is set to multiple or range.",
|
|
856
|
+
"type": "Date[] | undefined"
|
|
801
857
|
},
|
|
802
858
|
{
|
|
803
859
|
"name": "selection",
|
|
@@ -1050,19 +1106,19 @@
|
|
|
1050
1106
|
"description": "A container which wraps different elements related to a single subject",
|
|
1051
1107
|
"attributes": [
|
|
1052
1108
|
{
|
|
1053
|
-
"name": "
|
|
1054
|
-
"description": "Sets card
|
|
1109
|
+
"name": "elevated",
|
|
1110
|
+
"description": "Sets card elevated style, otherwise card looks outlined.",
|
|
1055
1111
|
"type": "boolean",
|
|
1056
|
-
"default": "
|
|
1112
|
+
"default": "false"
|
|
1057
1113
|
}
|
|
1058
1114
|
],
|
|
1059
1115
|
"properties": [
|
|
1060
1116
|
{
|
|
1061
|
-
"name": "
|
|
1062
|
-
"attribute": "
|
|
1063
|
-
"description": "Sets card
|
|
1117
|
+
"name": "elevated",
|
|
1118
|
+
"attribute": "elevated",
|
|
1119
|
+
"description": "Sets card elevated style, otherwise card looks outlined.",
|
|
1064
1120
|
"type": "boolean",
|
|
1065
|
-
"default": "
|
|
1121
|
+
"default": "false"
|
|
1066
1122
|
}
|
|
1067
1123
|
],
|
|
1068
1124
|
"slots": [
|
|
@@ -2215,6 +2271,576 @@
|
|
|
2215
2271
|
"name": "igc-ripple",
|
|
2216
2272
|
"path": "./src/components/ripple/ripple.ts",
|
|
2217
2273
|
"description": "A ripple can be applied to an element to represent\ninteractive surface."
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"name": "igc-range-slider",
|
|
2277
|
+
"path": "./src/components/slider/range-slider.ts",
|
|
2278
|
+
"description": "A range slider component used to select two numeric values within a range.",
|
|
2279
|
+
"attributes": [
|
|
2280
|
+
{
|
|
2281
|
+
"name": "lower",
|
|
2282
|
+
"description": "The current value of the lower thumb.",
|
|
2283
|
+
"type": "number"
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"name": "upper",
|
|
2287
|
+
"description": "The current value of the upper thumb.",
|
|
2288
|
+
"type": "number"
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"name": "aria-label-lower",
|
|
2292
|
+
"description": "The aria label of the lower thumb.",
|
|
2293
|
+
"type": "string"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"name": "aria-label-upper",
|
|
2297
|
+
"description": "The aria label of the upper thumb.",
|
|
2298
|
+
"type": "string"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"name": "min",
|
|
2302
|
+
"description": "The minimum value of the slider scale. Defaults to 0.",
|
|
2303
|
+
"type": "number"
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
"name": "max",
|
|
2307
|
+
"description": "The maximum value of the slider scale. Defaults to 100.",
|
|
2308
|
+
"type": "number"
|
|
2309
|
+
},
|
|
2310
|
+
{
|
|
2311
|
+
"name": "lower-bound",
|
|
2312
|
+
"description": "The lower bound of the slider value. If not set, the `min` value is applied.",
|
|
2313
|
+
"type": "number | undefined"
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"name": "upper-bound",
|
|
2317
|
+
"description": "The upper bound of the slider value. If not set, the `max` value is applied.",
|
|
2318
|
+
"type": "number | undefined"
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
"name": "disabled",
|
|
2322
|
+
"description": "Disables the UI interactions of the slider.",
|
|
2323
|
+
"type": "boolean",
|
|
2324
|
+
"default": "false"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"name": "discrete-track",
|
|
2328
|
+
"description": "Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.",
|
|
2329
|
+
"type": "boolean",
|
|
2330
|
+
"default": "false"
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
"name": "hide-tooltip",
|
|
2334
|
+
"description": "Hides the thumb tooltip.",
|
|
2335
|
+
"type": "boolean",
|
|
2336
|
+
"default": "false"
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
"name": "step",
|
|
2340
|
+
"description": "Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.",
|
|
2341
|
+
"type": "number",
|
|
2342
|
+
"default": "1"
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"name": "primary-ticks",
|
|
2346
|
+
"description": "The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.",
|
|
2347
|
+
"type": "number",
|
|
2348
|
+
"default": "0"
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"name": "secondary-ticks",
|
|
2352
|
+
"description": "The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.",
|
|
2353
|
+
"type": "number",
|
|
2354
|
+
"default": "0"
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
"name": "tick-orientation",
|
|
2358
|
+
"description": "Changes the orientation of the ticks.",
|
|
2359
|
+
"type": "\"start\" | \"end\" | \"mirror\"",
|
|
2360
|
+
"default": "\"end\""
|
|
2361
|
+
},
|
|
2362
|
+
{
|
|
2363
|
+
"name": "hide-primary-labels",
|
|
2364
|
+
"description": "Hides the primary tick labels.",
|
|
2365
|
+
"type": "boolean",
|
|
2366
|
+
"default": "false"
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"name": "hide-secondary-labels",
|
|
2370
|
+
"description": "Hides the secondary tick labels.",
|
|
2371
|
+
"type": "boolean",
|
|
2372
|
+
"default": "false"
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
"name": "tick-label-rotation",
|
|
2376
|
+
"description": "The degrees for the rotation of the tick labels. Defaults to 0.",
|
|
2377
|
+
"type": "0 | 90 | -90",
|
|
2378
|
+
"default": "0"
|
|
2379
|
+
}
|
|
2380
|
+
],
|
|
2381
|
+
"properties": [
|
|
2382
|
+
{
|
|
2383
|
+
"name": "lower",
|
|
2384
|
+
"attribute": "lower",
|
|
2385
|
+
"description": "The current value of the lower thumb.",
|
|
2386
|
+
"type": "number"
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
"name": "upper",
|
|
2390
|
+
"attribute": "upper",
|
|
2391
|
+
"description": "The current value of the upper thumb.",
|
|
2392
|
+
"type": "number"
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"name": "ariaLabelLower",
|
|
2396
|
+
"attribute": "aria-label-lower",
|
|
2397
|
+
"description": "The aria label of the lower thumb.",
|
|
2398
|
+
"type": "string"
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
"name": "ariaLabelUpper",
|
|
2402
|
+
"attribute": "aria-label-upper",
|
|
2403
|
+
"description": "The aria label of the upper thumb.",
|
|
2404
|
+
"type": "string"
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"name": "min",
|
|
2408
|
+
"attribute": "min",
|
|
2409
|
+
"description": "The minimum value of the slider scale. Defaults to 0.",
|
|
2410
|
+
"type": "number"
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
"name": "max",
|
|
2414
|
+
"attribute": "max",
|
|
2415
|
+
"description": "The maximum value of the slider scale. Defaults to 100.",
|
|
2416
|
+
"type": "number"
|
|
2417
|
+
},
|
|
2418
|
+
{
|
|
2419
|
+
"name": "lowerBound",
|
|
2420
|
+
"attribute": "lower-bound",
|
|
2421
|
+
"description": "The lower bound of the slider value. If not set, the `min` value is applied.",
|
|
2422
|
+
"type": "number | undefined"
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"name": "upperBound",
|
|
2426
|
+
"attribute": "upper-bound",
|
|
2427
|
+
"description": "The upper bound of the slider value. If not set, the `max` value is applied.",
|
|
2428
|
+
"type": "number | undefined"
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"name": "disabled",
|
|
2432
|
+
"attribute": "disabled",
|
|
2433
|
+
"description": "Disables the UI interactions of the slider.",
|
|
2434
|
+
"type": "boolean",
|
|
2435
|
+
"default": "false"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"name": "discreteTrack",
|
|
2439
|
+
"attribute": "discrete-track",
|
|
2440
|
+
"description": "Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.",
|
|
2441
|
+
"type": "boolean",
|
|
2442
|
+
"default": "false"
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
"name": "hideTooltip",
|
|
2446
|
+
"attribute": "hide-tooltip",
|
|
2447
|
+
"description": "Hides the thumb tooltip.",
|
|
2448
|
+
"type": "boolean",
|
|
2449
|
+
"default": "false"
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
"name": "step",
|
|
2453
|
+
"attribute": "step",
|
|
2454
|
+
"description": "Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.",
|
|
2455
|
+
"type": "number",
|
|
2456
|
+
"default": "1"
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
"name": "primaryTicks",
|
|
2460
|
+
"attribute": "primary-ticks",
|
|
2461
|
+
"description": "The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.",
|
|
2462
|
+
"type": "number",
|
|
2463
|
+
"default": "0"
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
"name": "secondaryTicks",
|
|
2467
|
+
"attribute": "secondary-ticks",
|
|
2468
|
+
"description": "The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.",
|
|
2469
|
+
"type": "number",
|
|
2470
|
+
"default": "0"
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
"name": "tickOrientation",
|
|
2474
|
+
"attribute": "tick-orientation",
|
|
2475
|
+
"description": "Changes the orientation of the ticks.",
|
|
2476
|
+
"type": "\"start\" | \"end\" | \"mirror\"",
|
|
2477
|
+
"default": "\"end\""
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
"name": "hidePrimaryLabels",
|
|
2481
|
+
"attribute": "hide-primary-labels",
|
|
2482
|
+
"description": "Hides the primary tick labels.",
|
|
2483
|
+
"type": "boolean",
|
|
2484
|
+
"default": "false"
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
"name": "hideSecondaryLabels",
|
|
2488
|
+
"attribute": "hide-secondary-labels",
|
|
2489
|
+
"description": "Hides the secondary tick labels.",
|
|
2490
|
+
"type": "boolean",
|
|
2491
|
+
"default": "false"
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"name": "labelFormatter",
|
|
2495
|
+
"description": "Specifies a custom function to format the labels.",
|
|
2496
|
+
"type": "((value: number) => string) | undefined"
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
"name": "tickLabelRotation",
|
|
2500
|
+
"attribute": "tick-label-rotation",
|
|
2501
|
+
"description": "The degrees for the rotation of the tick labels. Defaults to 0.",
|
|
2502
|
+
"type": "0 | 90 | -90",
|
|
2503
|
+
"default": "0"
|
|
2504
|
+
}
|
|
2505
|
+
],
|
|
2506
|
+
"events": [
|
|
2507
|
+
{
|
|
2508
|
+
"name": "igcInput",
|
|
2509
|
+
"description": "Emitted when a value is changed via thumb drag or keyboard interaction."
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
"name": "igcChange",
|
|
2513
|
+
"description": "Emitted when a value change is committed on a thumb drag end or keyboard interaction."
|
|
2514
|
+
}
|
|
2515
|
+
],
|
|
2516
|
+
"cssParts": [
|
|
2517
|
+
{
|
|
2518
|
+
"name": "base",
|
|
2519
|
+
"description": "The base wrapper of the slider."
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"name": "ticks",
|
|
2523
|
+
"description": "The ticks container."
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"name": "tick-group",
|
|
2527
|
+
"description": "The tick group container."
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"name": "tick",
|
|
2531
|
+
"description": "The tick element."
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
"name": "tick-label",
|
|
2535
|
+
"description": "The tick label element."
|
|
2536
|
+
},
|
|
2537
|
+
{
|
|
2538
|
+
"name": "tick-label-inner",
|
|
2539
|
+
"description": "The inner element of the tick label."
|
|
2540
|
+
},
|
|
2541
|
+
{
|
|
2542
|
+
"name": "thumbs",
|
|
2543
|
+
"description": "The thumbs container."
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
"name": "thumb",
|
|
2547
|
+
"description": "The thumb element."
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"name": "thumb-label",
|
|
2551
|
+
"description": "The thumb tooltip label."
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
"name": "track",
|
|
2555
|
+
"description": "The track container."
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
"name": "steps",
|
|
2559
|
+
"description": "The track steps element."
|
|
2560
|
+
},
|
|
2561
|
+
{
|
|
2562
|
+
"name": "inactive",
|
|
2563
|
+
"description": "The inactive element of the track."
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"name": "fill",
|
|
2567
|
+
"description": "The filled part of the track."
|
|
2568
|
+
}
|
|
2569
|
+
]
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"name": "igc-slider",
|
|
2573
|
+
"path": "./src/components/slider/slider.ts",
|
|
2574
|
+
"description": "A slider component used to select numeric value within a range.",
|
|
2575
|
+
"attributes": [
|
|
2576
|
+
{
|
|
2577
|
+
"name": "value",
|
|
2578
|
+
"description": "The current value of the slider.",
|
|
2579
|
+
"type": "number"
|
|
2580
|
+
},
|
|
2581
|
+
{
|
|
2582
|
+
"name": "aria-label",
|
|
2583
|
+
"description": "The aria label of the slider thumb.",
|
|
2584
|
+
"type": "string"
|
|
2585
|
+
},
|
|
2586
|
+
{
|
|
2587
|
+
"name": "min",
|
|
2588
|
+
"description": "The minimum value of the slider scale. Defaults to 0.",
|
|
2589
|
+
"type": "number"
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"name": "max",
|
|
2593
|
+
"description": "The maximum value of the slider scale. Defaults to 100.",
|
|
2594
|
+
"type": "number"
|
|
2595
|
+
},
|
|
2596
|
+
{
|
|
2597
|
+
"name": "lower-bound",
|
|
2598
|
+
"description": "The lower bound of the slider value. If not set, the `min` value is applied.",
|
|
2599
|
+
"type": "number | undefined"
|
|
2600
|
+
},
|
|
2601
|
+
{
|
|
2602
|
+
"name": "upper-bound",
|
|
2603
|
+
"description": "The upper bound of the slider value. If not set, the `max` value is applied.",
|
|
2604
|
+
"type": "number | undefined"
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
"name": "disabled",
|
|
2608
|
+
"description": "Disables the UI interactions of the slider.",
|
|
2609
|
+
"type": "boolean",
|
|
2610
|
+
"default": "false"
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
"name": "discrete-track",
|
|
2614
|
+
"description": "Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.",
|
|
2615
|
+
"type": "boolean",
|
|
2616
|
+
"default": "false"
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
"name": "hide-tooltip",
|
|
2620
|
+
"description": "Hides the thumb tooltip.",
|
|
2621
|
+
"type": "boolean",
|
|
2622
|
+
"default": "false"
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"name": "step",
|
|
2626
|
+
"description": "Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.",
|
|
2627
|
+
"type": "number",
|
|
2628
|
+
"default": "1"
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"name": "primary-ticks",
|
|
2632
|
+
"description": "The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.",
|
|
2633
|
+
"type": "number",
|
|
2634
|
+
"default": "0"
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
"name": "secondary-ticks",
|
|
2638
|
+
"description": "The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.",
|
|
2639
|
+
"type": "number",
|
|
2640
|
+
"default": "0"
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
"name": "tick-orientation",
|
|
2644
|
+
"description": "Changes the orientation of the ticks.",
|
|
2645
|
+
"type": "\"start\" | \"end\" | \"mirror\"",
|
|
2646
|
+
"default": "\"end\""
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
"name": "hide-primary-labels",
|
|
2650
|
+
"description": "Hides the primary tick labels.",
|
|
2651
|
+
"type": "boolean",
|
|
2652
|
+
"default": "false"
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
"name": "hide-secondary-labels",
|
|
2656
|
+
"description": "Hides the secondary tick labels.",
|
|
2657
|
+
"type": "boolean",
|
|
2658
|
+
"default": "false"
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
"name": "tick-label-rotation",
|
|
2662
|
+
"description": "The degrees for the rotation of the tick labels. Defaults to 0.",
|
|
2663
|
+
"type": "0 | 90 | -90",
|
|
2664
|
+
"default": "0"
|
|
2665
|
+
}
|
|
2666
|
+
],
|
|
2667
|
+
"properties": [
|
|
2668
|
+
{
|
|
2669
|
+
"name": "value",
|
|
2670
|
+
"attribute": "value",
|
|
2671
|
+
"description": "The current value of the slider.",
|
|
2672
|
+
"type": "number"
|
|
2673
|
+
},
|
|
2674
|
+
{
|
|
2675
|
+
"name": "ariaLabel",
|
|
2676
|
+
"attribute": "aria-label",
|
|
2677
|
+
"description": "The aria label of the slider thumb.",
|
|
2678
|
+
"type": "string"
|
|
2679
|
+
},
|
|
2680
|
+
{
|
|
2681
|
+
"name": "min",
|
|
2682
|
+
"attribute": "min",
|
|
2683
|
+
"description": "The minimum value of the slider scale. Defaults to 0.",
|
|
2684
|
+
"type": "number"
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
"name": "max",
|
|
2688
|
+
"attribute": "max",
|
|
2689
|
+
"description": "The maximum value of the slider scale. Defaults to 100.",
|
|
2690
|
+
"type": "number"
|
|
2691
|
+
},
|
|
2692
|
+
{
|
|
2693
|
+
"name": "lowerBound",
|
|
2694
|
+
"attribute": "lower-bound",
|
|
2695
|
+
"description": "The lower bound of the slider value. If not set, the `min` value is applied.",
|
|
2696
|
+
"type": "number | undefined"
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
"name": "upperBound",
|
|
2700
|
+
"attribute": "upper-bound",
|
|
2701
|
+
"description": "The upper bound of the slider value. If not set, the `max` value is applied.",
|
|
2702
|
+
"type": "number | undefined"
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
"name": "disabled",
|
|
2706
|
+
"attribute": "disabled",
|
|
2707
|
+
"description": "Disables the UI interactions of the slider.",
|
|
2708
|
+
"type": "boolean",
|
|
2709
|
+
"default": "false"
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"name": "discreteTrack",
|
|
2713
|
+
"attribute": "discrete-track",
|
|
2714
|
+
"description": "Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.",
|
|
2715
|
+
"type": "boolean",
|
|
2716
|
+
"default": "false"
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
"name": "hideTooltip",
|
|
2720
|
+
"attribute": "hide-tooltip",
|
|
2721
|
+
"description": "Hides the thumb tooltip.",
|
|
2722
|
+
"type": "boolean",
|
|
2723
|
+
"default": "false"
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
"name": "step",
|
|
2727
|
+
"attribute": "step",
|
|
2728
|
+
"description": "Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.",
|
|
2729
|
+
"type": "number",
|
|
2730
|
+
"default": "1"
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
"name": "primaryTicks",
|
|
2734
|
+
"attribute": "primary-ticks",
|
|
2735
|
+
"description": "The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.",
|
|
2736
|
+
"type": "number",
|
|
2737
|
+
"default": "0"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"name": "secondaryTicks",
|
|
2741
|
+
"attribute": "secondary-ticks",
|
|
2742
|
+
"description": "The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.",
|
|
2743
|
+
"type": "number",
|
|
2744
|
+
"default": "0"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"name": "tickOrientation",
|
|
2748
|
+
"attribute": "tick-orientation",
|
|
2749
|
+
"description": "Changes the orientation of the ticks.",
|
|
2750
|
+
"type": "\"start\" | \"end\" | \"mirror\"",
|
|
2751
|
+
"default": "\"end\""
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"name": "hidePrimaryLabels",
|
|
2755
|
+
"attribute": "hide-primary-labels",
|
|
2756
|
+
"description": "Hides the primary tick labels.",
|
|
2757
|
+
"type": "boolean",
|
|
2758
|
+
"default": "false"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"name": "hideSecondaryLabels",
|
|
2762
|
+
"attribute": "hide-secondary-labels",
|
|
2763
|
+
"description": "Hides the secondary tick labels.",
|
|
2764
|
+
"type": "boolean",
|
|
2765
|
+
"default": "false"
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
"name": "labelFormatter",
|
|
2769
|
+
"description": "Specifies a custom function to format the labels.",
|
|
2770
|
+
"type": "((value: number) => string) | undefined"
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
"name": "tickLabelRotation",
|
|
2774
|
+
"attribute": "tick-label-rotation",
|
|
2775
|
+
"description": "The degrees for the rotation of the tick labels. Defaults to 0.",
|
|
2776
|
+
"type": "0 | 90 | -90",
|
|
2777
|
+
"default": "0"
|
|
2778
|
+
}
|
|
2779
|
+
],
|
|
2780
|
+
"events": [
|
|
2781
|
+
{
|
|
2782
|
+
"name": "igcInput",
|
|
2783
|
+
"description": "Emitted when a value is changed via thumb drag or keyboard interaction."
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
"name": "igcChange",
|
|
2787
|
+
"description": "Emitted when a value change is committed on a thumb drag end or keyboard interaction."
|
|
2788
|
+
}
|
|
2789
|
+
],
|
|
2790
|
+
"cssParts": [
|
|
2791
|
+
{
|
|
2792
|
+
"name": "base",
|
|
2793
|
+
"description": "The base wrapper of the slider."
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
"name": "ticks",
|
|
2797
|
+
"description": "The ticks container."
|
|
2798
|
+
},
|
|
2799
|
+
{
|
|
2800
|
+
"name": "tick-group",
|
|
2801
|
+
"description": "The tick group container."
|
|
2802
|
+
},
|
|
2803
|
+
{
|
|
2804
|
+
"name": "tick",
|
|
2805
|
+
"description": "The tick element."
|
|
2806
|
+
},
|
|
2807
|
+
{
|
|
2808
|
+
"name": "tick-label",
|
|
2809
|
+
"description": "The tick label element."
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"name": "tick-label-inner",
|
|
2813
|
+
"description": "The inner element of the tick label."
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"name": "thumbs",
|
|
2817
|
+
"description": "The thumbs container."
|
|
2818
|
+
},
|
|
2819
|
+
{
|
|
2820
|
+
"name": "thumb",
|
|
2821
|
+
"description": "The thumb element."
|
|
2822
|
+
},
|
|
2823
|
+
{
|
|
2824
|
+
"name": "thumb-label",
|
|
2825
|
+
"description": "The label of the thumb tooltip."
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"name": "track",
|
|
2829
|
+
"description": "The track container."
|
|
2830
|
+
},
|
|
2831
|
+
{
|
|
2832
|
+
"name": "steps",
|
|
2833
|
+
"description": "The track steps element."
|
|
2834
|
+
},
|
|
2835
|
+
{
|
|
2836
|
+
"name": "inactive",
|
|
2837
|
+
"description": "The inactive element of the track."
|
|
2838
|
+
},
|
|
2839
|
+
{
|
|
2840
|
+
"name": "fill",
|
|
2841
|
+
"description": "The filled part of the track."
|
|
2842
|
+
}
|
|
2843
|
+
]
|
|
2218
2844
|
}
|
|
2219
2845
|
]
|
|
2220
2846
|
}
|