@roadtrip/components 3.47.1 → 3.49.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.
@@ -1,3864 +0,0 @@
1
- {
2
- "version": 1.1,
3
- "tags": [
4
- {
5
- "name": "road-accordion",
6
- "description": {
7
- "kind": "markdown",
8
- "value": ""
9
- },
10
- "attributes": [
11
- {
12
- "name": "is-light",
13
- "description": "Set to `true` to remove border the accordion and to `false` to add border it."
14
- },
15
- {
16
- "name": "is-light-separator",
17
- "description": "Set to `true` to add a border in the header and the content only for the light accordion."
18
- },
19
- {
20
- "name": "is-open",
21
- "description": "Set to `true` to open the accordion and to `false` to close it."
22
- },
23
- {
24
- "name": "is-small",
25
- "description": "Set to `true` to add the small version only for the light accordion."
26
- }
27
- ],
28
- "references": [
29
- {
30
- "name": "Source code",
31
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/accordion/accordion.tsx"
32
- }
33
- ]
34
- },
35
- {
36
- "name": "road-alert",
37
- "description": {
38
- "kind": "markdown",
39
- "value": ""
40
- },
41
- "attributes": [
42
- {
43
- "name": "button",
44
- "description": "Button display in the alert\n`<road-button size=\"sm\">Label</road-button>`"
45
- },
46
- {
47
- "name": "color",
48
- "description": "Set the color of alert. e.g. info, success, warning, danger",
49
- "values": [
50
- {
51
- "name": "danger"
52
- },
53
- {
54
- "name": "info"
55
- },
56
- {
57
- "name": "success"
58
- },
59
- {
60
- "name": "warning"
61
- }
62
- ]
63
- },
64
- {
65
- "name": "has-close-icon",
66
- "description": "Show / hide close icon"
67
- },
68
- {
69
- "name": "is-open",
70
- "description": "Set isOpen propertie to true to show the modal"
71
- },
72
- {
73
- "name": "label",
74
- "description": "Title display in the alert"
75
- },
76
- {
77
- "name": "layout",
78
- "description": "position of the button",
79
- "values": [
80
- {
81
- "name": "default"
82
- },
83
- {
84
- "name": "horizontal"
85
- },
86
- {
87
- "name": "vertical"
88
- }
89
- ]
90
- },
91
- {
92
- "name": "link",
93
- "description": "Text Link display in the alert"
94
- },
95
- {
96
- "name": "url",
97
- "description": "url display in the link"
98
- }
99
- ],
100
- "references": [
101
- {
102
- "name": "Source code",
103
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/alert/alert.tsx"
104
- }
105
- ]
106
- },
107
- {
108
- "name": "road-area-code",
109
- "description": {
110
- "kind": "markdown",
111
- "value": ""
112
- },
113
- "attributes": [
114
- {
115
- "name": "autofocus",
116
- "description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads."
117
- },
118
- {
119
- "name": "disabled",
120
- "description": "If `true`, the user cannot interact with the select."
121
- },
122
- {
123
- "name": "error",
124
- "description": "Error message for the field"
125
- },
126
- {
127
- "name": "label",
128
- "description": "The label of the areacode"
129
- },
130
- {
131
- "name": "name",
132
- "description": "The name of the control, which is submitted with the form data."
133
- },
134
- {
135
- "name": "required",
136
- "description": "If `true`, the user must fill in a value before submitting a form."
137
- },
138
- {
139
- "name": "select-id",
140
- "description": "The id of select"
141
- },
142
- {
143
- "name": "size",
144
- "description": "The size of the areacode"
145
- },
146
- {
147
- "name": "sizes",
148
- "description": "The size of the areacode",
149
- "values": [
150
- {
151
- "name": "lg"
152
- },
153
- {
154
- "name": "xl"
155
- }
156
- ]
157
- },
158
- {
159
- "name": "trigger-render",
160
- "description": "Trigger number."
161
- },
162
- {
163
- "name": "value",
164
- "description": "the value of the select."
165
- }
166
- ],
167
- "references": [
168
- {
169
- "name": "Source code",
170
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/area-code/area-code.tsx"
171
- }
172
- ]
173
- },
174
- {
175
- "name": "road-aspect-ratio",
176
- "description": {
177
- "kind": "markdown",
178
- "value": "Img is a tag that will lazily load an image when ever the tag is in the viewport. This is extremely useful when generating a large list as images are only loaded when they're visible. The component uses [Intersection Observer](https://caniuse.com/#feat=intersectionobserver) internally, which is supported in most modern browser, but falls back to a `setTimeout` when it is not supported."
179
- },
180
- "attributes": [
181
- {
182
- "name": "ratio",
183
- "description": "Ratio allowed: \"1/1\", \"16/9\", \"9/16\", \"4/3\", \"21/9\", \"3/4\", \"3/2\"",
184
- "values": [
185
- {
186
- "name": "1/1"
187
- },
188
- {
189
- "name": "16/9"
190
- },
191
- {
192
- "name": "21/9"
193
- },
194
- {
195
- "name": "3/2"
196
- },
197
- {
198
- "name": "3/4"
199
- },
200
- {
201
- "name": "4/3"
202
- },
203
- {
204
- "name": "9/16"
205
- }
206
- ]
207
- }
208
- ],
209
- "references": [
210
- {
211
- "name": "Source code",
212
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/aspect-ratio/aspect-ratio.tsx"
213
- }
214
- ]
215
- },
216
- {
217
- "name": "road-asset",
218
- "description": {
219
- "kind": "markdown",
220
- "value": ""
221
- },
222
- "attributes": [
223
- {
224
- "name": "aria-hidden",
225
- "description": "Set the illustration to hidden, respectively `true`, to remove it from the accessibility tree."
226
- },
227
- {
228
- "name": "aria-label",
229
- "description": "Specifies the label to use for accessibility. Defaults to the illustration name."
230
- },
231
- {
232
- "name": "asset",
233
- "description": "A combination of both `name` and `src`. If a `src` url is detected\nit will set the `src` property. Otherwise it assumes it's a built-in named\nSVG and set the `name` property."
234
- },
235
- {
236
- "name": "lazy",
237
- "description": "If enabled, road-illustration will be loaded lazily when it's visible in the viewport.\nDefault, `false`."
238
- },
239
- {
240
- "name": "name",
241
- "description": "Specifies which illustration to use from the built-in set of illustrations."
242
- },
243
- {
244
- "name": "sanitize",
245
- "description": "When set to `false`, SVG content that is HTTP fetched will not be checked\nif the response SVG content has any `<script>` elements, or any attributes\nthat start with `on`, such as `onclick`."
246
- },
247
- {
248
- "name": "src",
249
- "description": "Specifies the exact `src` of an SVG file to use."
250
- }
251
- ],
252
- "references": [
253
- {
254
- "name": "Source code",
255
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/asset/asset.tsx"
256
- }
257
- ]
258
- },
259
- {
260
- "name": "road-autocomplete",
261
- "description": {
262
- "kind": "markdown",
263
- "value": ""
264
- },
265
- "attributes": [],
266
- "references": [
267
- {
268
- "name": "Source code",
269
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/autocomplete/autocomplete.tsx"
270
- }
271
- ]
272
- },
273
- {
274
- "name": "road-avatar",
275
- "description": {
276
- "kind": "markdown",
277
- "value": "Avatars are circular components that usually wrap an image or icon. They can be used to represent a person or an object.\n\nAvatars can be used by themselves or inside of any element."
278
- },
279
- "attributes": [
280
- {
281
- "name": "size",
282
- "description": "The Avatar size.",
283
- "values": [
284
- {
285
- "name": "lg"
286
- },
287
- {
288
- "name": "md"
289
- },
290
- {
291
- "name": "sm"
292
- }
293
- ]
294
- }
295
- ],
296
- "references": [
297
- {
298
- "name": "Source code",
299
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/avatar/avatar.tsx"
300
- }
301
- ]
302
- },
303
- {
304
- "name": "road-badge",
305
- "description": {
306
- "kind": "markdown",
307
- "value": ""
308
- },
309
- "attributes": [
310
- {
311
- "name": "bubble",
312
- "description": "if `true` the badge will be displayed has a little bubble"
313
- },
314
- {
315
- "name": "color",
316
- "description": "Color of the badge",
317
- "values": [
318
- {
319
- "name": "accent"
320
- },
321
- {
322
- "name": "danger"
323
- },
324
- {
325
- "name": "default"
326
- },
327
- {
328
- "name": "info"
329
- },
330
- {
331
- "name": "primary"
332
- },
333
- {
334
- "name": "secondary"
335
- },
336
- {
337
- "name": "success"
338
- },
339
- {
340
- "name": "warning"
341
- }
342
- ]
343
- },
344
- {
345
- "name": "size",
346
- "description": "The badge size.",
347
- "values": [
348
- {
349
- "name": "lg"
350
- },
351
- {
352
- "name": "md"
353
- },
354
- {
355
- "name": "sm"
356
- }
357
- ]
358
- }
359
- ],
360
- "references": [
361
- {
362
- "name": "Source code",
363
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/badge/badge.tsx"
364
- }
365
- ]
366
- },
367
- {
368
- "name": "road-banner",
369
- "description": {
370
- "kind": "markdown",
371
- "value": ""
372
- },
373
- "attributes": [
374
- {
375
- "name": "is-open",
376
- "description": "Set `open` property to `true` to open the banner"
377
- },
378
- {
379
- "name": "label",
380
- "description": "Text display in the banner"
381
- },
382
- {
383
- "name": "link",
384
- "description": "Text Link display in the banner"
385
- },
386
- {
387
- "name": "url",
388
- "description": "Text Link display in the banner"
389
- }
390
- ],
391
- "references": [
392
- {
393
- "name": "Source code",
394
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/banner/banner.tsx"
395
- }
396
- ]
397
- },
398
- {
399
- "name": "road-button",
400
- "description": {
401
- "kind": "markdown",
402
- "value": ""
403
- },
404
- "attributes": [
405
- {
406
- "name": "button-type",
407
- "description": "The type of the button.",
408
- "values": [
409
- {
410
- "name": "button"
411
- },
412
- {
413
- "name": "reset"
414
- },
415
- {
416
- "name": "submit"
417
- }
418
- ]
419
- },
420
- {
421
- "name": "color",
422
- "description": "The color to use from your application's color palette.",
423
- "values": [
424
- {
425
- "name": "default"
426
- },
427
- {
428
- "name": "ghost"
429
- },
430
- {
431
- "name": "primary"
432
- },
433
- {
434
- "name": "secondary"
435
- }
436
- ]
437
- },
438
- {
439
- "name": "disabled",
440
- "description": "If `true`, the user cannot interact with the button."
441
- },
442
- {
443
- "name": "download",
444
- "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
445
- },
446
- {
447
- "name": "expand",
448
- "description": "Set to `true` for a full-width button."
449
- },
450
- {
451
- "name": "href",
452
- "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
453
- },
454
- {
455
- "name": "icon-only",
456
- "description": "If `true`, display only an icon in the button."
457
- },
458
- {
459
- "name": "inverse",
460
- "description": "If `true`, the button will use inverse colors (when in headers or dark backgrounds)."
461
- },
462
- {
463
- "name": "outline",
464
- "description": "Set to `false` for a ghost button, set to `true` for a default outline button"
465
- },
466
- {
467
- "name": "rel",
468
- "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
469
- },
470
- {
471
- "name": "size",
472
- "description": "The button size.",
473
- "values": [
474
- {
475
- "name": "lg"
476
- },
477
- {
478
- "name": "md"
479
- },
480
- {
481
- "name": "sm"
482
- },
483
- {
484
- "name": "xl"
485
- }
486
- ]
487
- },
488
- {
489
- "name": "target",
490
- "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
491
- }
492
- ],
493
- "references": [
494
- {
495
- "name": "Source code",
496
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/button/button.tsx"
497
- }
498
- ]
499
- },
500
- {
501
- "name": "road-button-carousel",
502
- "description": {
503
- "kind": "markdown",
504
- "value": ""
505
- },
506
- "attributes": [
507
- {
508
- "name": "disabled",
509
- "description": "If `true`, the user cannot interact with the button."
510
- },
511
- {
512
- "name": "outline",
513
- "description": "Set to `false` for a ghost button, set to `true` for a default outline button"
514
- }
515
- ],
516
- "references": [
517
- {
518
- "name": "Source code",
519
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/button-carousel/button-carousel.tsx"
520
- }
521
- ]
522
- },
523
- {
524
- "name": "road-button-floating",
525
- "description": {
526
- "kind": "markdown",
527
- "value": ""
528
- },
529
- "attributes": [
530
- {
531
- "name": "href",
532
- "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
533
- },
534
- {
535
- "name": "position",
536
- "description": "position.",
537
- "values": [
538
- {
539
- "name": "center"
540
- },
541
- {
542
- "name": "left"
543
- },
544
- {
545
- "name": "right"
546
- }
547
- ]
548
- },
549
- {
550
- "name": "rel",
551
- "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
552
- },
553
- {
554
- "name": "target",
555
- "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
556
- }
557
- ],
558
- "references": [
559
- {
560
- "name": "Source code",
561
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/button-floating/button-floating.tsx"
562
- }
563
- ]
564
- },
565
- {
566
- "name": "road-card",
567
- "description": {
568
- "kind": "markdown",
569
- "value": ""
570
- },
571
- "attributes": [
572
- {
573
- "name": "button",
574
- "description": "If `true`, a button tag will be rendered and the card will be tappable."
575
- },
576
- {
577
- "name": "disabled",
578
- "description": "If `true`, the card is disabled and cannot be clicked.\nOnly applies when in button mode (button=true and no href)."
579
- },
580
- {
581
- "name": "download",
582
- "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
583
- },
584
- {
585
- "name": "elevation",
586
- "description": "The elevation.",
587
- "values": [
588
- {
589
- "name": "average"
590
- },
591
- {
592
- "name": "lowest"
593
- },
594
- {
595
- "name": "none"
596
- }
597
- ]
598
- },
599
- {
600
- "name": "href",
601
- "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
602
- },
603
- {
604
- "name": "rel",
605
- "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
606
- },
607
- {
608
- "name": "selected",
609
- "description": "If `true`, the card has the `selected` state and the `selected` class is applied on the host.\nToggled automatically when the card is clicked (when clickable)."
610
- },
611
- {
612
- "name": "target",
613
- "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
614
- },
615
- {
616
- "name": "type",
617
- "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
618
- "values": [
619
- {
620
- "name": "button"
621
- },
622
- {
623
- "name": "reset"
624
- },
625
- {
626
- "name": "submit"
627
- }
628
- ]
629
- },
630
- {
631
- "name": "value",
632
- "description": "value of the card"
633
- }
634
- ],
635
- "references": [
636
- {
637
- "name": "Source code",
638
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/card/card.tsx"
639
- }
640
- ]
641
- },
642
- {
643
- "name": "road-carousel",
644
- "description": {
645
- "kind": "markdown",
646
- "value": ""
647
- },
648
- "attributes": [
649
- {
650
- "name": "arrows",
651
- "description": ""
652
- },
653
- {
654
- "name": "options",
655
- "description": ""
656
- },
657
- {
658
- "name": "pager",
659
- "description": ""
660
- },
661
- {
662
- "name": "pagertype",
663
- "description": "",
664
- "values": [
665
- {
666
- "name": "bullets"
667
- },
668
- {
669
- "name": "fraction"
670
- }
671
- ]
672
- }
673
- ],
674
- "references": [
675
- {
676
- "name": "Source code",
677
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/carousel/carousel.tsx"
678
- }
679
- ]
680
- },
681
- {
682
- "name": "road-carousel-item",
683
- "description": {
684
- "kind": "markdown",
685
- "value": "The Carousel Item component is a child component of [Carousel](../carousel). The template\nshould be written as `road-carousel-item`. Any slide content should be written\nin this component and it should be used in conjunction with [Carousel](../carousel).\n\nSee the [Carousel API Docs](../carousel) for more usage information."
686
- },
687
- "attributes": [],
688
- "references": [
689
- {
690
- "name": "Source code",
691
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/carousel-item/carousel-item.tsx"
692
- }
693
- ]
694
- },
695
- {
696
- "name": "road-checkbox",
697
- "description": {
698
- "kind": "markdown",
699
- "value": ""
700
- },
701
- "attributes": [
702
- {
703
- "name": "checkbox-id",
704
- "description": "The id of checkbox"
705
- },
706
- {
707
- "name": "checked",
708
- "description": "If `true`, the checkbox is checked."
709
- },
710
- {
711
- "name": "disabled",
712
- "description": "If `true`, the user cannot interact with the checkbox."
713
- },
714
- {
715
- "name": "error",
716
- "description": "Error message for the field"
717
- },
718
- {
719
- "name": "helper",
720
- "description": "Helper message for the field"
721
- },
722
- {
723
- "name": "indeterminate",
724
- "description": "If `true`, the checkbox will visually appear as indeterminate."
725
- },
726
- {
727
- "name": "inverse",
728
- "description": "If `true`, the label and the checkbox are inverse and spaced"
729
- },
730
- {
731
- "name": "label",
732
- "description": "Label for the field"
733
- },
734
- {
735
- "name": "name",
736
- "description": "The name of the control, which is submitted with the form data."
737
- },
738
- {
739
- "name": "required",
740
- "description": "If `true`, the user must fill in a value before submitting a form."
741
- },
742
- {
743
- "name": "secondary-label",
744
- "description": "Secondary Label for the field"
745
- },
746
- {
747
- "name": "size",
748
- "description": "The checkbox label size.",
749
- "values": [
750
- {
751
- "name": "lg"
752
- },
753
- {
754
- "name": "md"
755
- },
756
- {
757
- "name": "sm"
758
- }
759
- ]
760
- },
761
- {
762
- "name": "value",
763
- "description": "Value the form will get"
764
- }
765
- ],
766
- "references": [
767
- {
768
- "name": "Source code",
769
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/checkbox/checkbox.tsx"
770
- }
771
- ]
772
- },
773
- {
774
- "name": "road-chip",
775
- "description": {
776
- "kind": "markdown",
777
- "value": ""
778
- },
779
- "attributes": [
780
- {
781
- "name": "color",
782
- "description": "The color to use from your application's color palette.",
783
- "values": [
784
- {
785
- "name": "default"
786
- },
787
- {
788
- "name": "inverse"
789
- },
790
- {
791
- "name": "secondary"
792
- }
793
- ]
794
- },
795
- {
796
- "name": "has-close-icon",
797
- "description": "Display a close icon"
798
- },
799
- {
800
- "name": "outline",
801
- "description": "Display an outline style chip."
802
- },
803
- {
804
- "name": "size",
805
- "description": "The chip size.",
806
- "values": [
807
- {
808
- "name": "lg"
809
- },
810
- {
811
- "name": "md"
812
- }
813
- ]
814
- }
815
- ],
816
- "references": [
817
- {
818
- "name": "Source code",
819
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/chip/chip.tsx"
820
- }
821
- ]
822
- },
823
- {
824
- "name": "road-col",
825
- "description": {
826
- "kind": "markdown",
827
- "value": "Columns are cellular components of the [grid](../grid) system and go inside of a [row](../row).\nThey will expand to fill their row. All content within a grid should go inside of a column.\n\nSee [Grid Layout](../grid) for more information."
828
- },
829
- "attributes": [],
830
- "references": [
831
- {
832
- "name": "Source code",
833
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/col/col.tsx"
834
- }
835
- ]
836
- },
837
- {
838
- "name": "road-collapse",
839
- "description": {
840
- "kind": "markdown",
841
- "value": ""
842
- },
843
- "attributes": [
844
- {
845
- "name": "centered",
846
- "description": "if `true` the button will be centered"
847
- },
848
- {
849
- "name": "is-open",
850
- "description": "Set to `true` to display the collapsed part and to `false` to hide it."
851
- },
852
- {
853
- "name": "show-less",
854
- "description": "Text displayed in the button when the content is not collapsed"
855
- },
856
- {
857
- "name": "show-more",
858
- "description": "Text displayed in the button when the content is collapsed"
859
- }
860
- ],
861
- "references": [
862
- {
863
- "name": "Source code",
864
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/collapse/collapse.tsx"
865
- }
866
- ]
867
- },
868
- {
869
- "name": "road-content-card",
870
- "description": {
871
- "kind": "markdown",
872
- "value": ""
873
- },
874
- "attributes": [
875
- {
876
- "name": "inset-image",
877
- "description": "Set to `true` to add padding around img."
878
- }
879
- ],
880
- "references": [
881
- {
882
- "name": "Source code",
883
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/content-card/content-card.tsx"
884
- }
885
- ]
886
- },
887
- {
888
- "name": "road-counter",
889
- "description": {
890
- "kind": "markdown",
891
- "value": ""
892
- },
893
- "attributes": [
894
- {
895
- "name": "dustbin",
896
- "description": "Set to `true` to add the dustbin icon if the value is equal to the min."
897
- },
898
- {
899
- "name": "input-id",
900
- "description": "The id of counter"
901
- },
902
- {
903
- "name": "max",
904
- "description": "The maximum value, which must not be less than its minimum (min attribute) value."
905
- },
906
- {
907
- "name": "min",
908
- "description": "The minimum value, which must not be greater than its maximum (max attribute) value."
909
- },
910
- {
911
- "name": "readonly",
912
- "description": "Set to `true` to not modify the input field"
913
- },
914
- {
915
- "name": "size",
916
- "description": "The size of the counter.",
917
- "values": [
918
- {
919
- "name": "lg"
920
- },
921
- {
922
- "name": "md"
923
- },
924
- {
925
- "name": "sm"
926
- }
927
- ]
928
- },
929
- {
930
- "name": "step",
931
- "description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number."
932
- },
933
- {
934
- "name": "value",
935
- "description": "The value of the counter."
936
- }
937
- ],
938
- "references": [
939
- {
940
- "name": "Source code",
941
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/counter/counter.tsx"
942
- }
943
- ]
944
- },
945
- {
946
- "name": "road-dialog",
947
- "description": {
948
- "kind": "markdown",
949
- "value": ""
950
- },
951
- "attributes": [
952
- {
953
- "name": "color",
954
- "description": "Set the color of information dialog. e.g. info, success, warning, danger",
955
- "values": [
956
- {
957
- "name": "danger"
958
- },
959
- {
960
- "name": "info"
961
- },
962
- {
963
- "name": "success"
964
- },
965
- {
966
- "name": "warning"
967
- }
968
- ]
969
- },
970
- {
971
- "name": "description",
972
- "description": "Content description of the dialog"
973
- },
974
- {
975
- "name": "has-close-icon",
976
- "description": "Show / hide the close icon"
977
- },
978
- {
979
- "name": "icon",
980
- "description": "override default icon"
981
- },
982
- {
983
- "name": "is-open",
984
- "description": "Set isOpen property to true to open the dialog"
985
- },
986
- {
987
- "name": "label",
988
- "description": "Text to the top"
989
- }
990
- ],
991
- "references": [
992
- {
993
- "name": "Source code",
994
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/dialog/dialog.tsx"
995
- }
996
- ]
997
- },
998
- {
999
- "name": "road-drawer",
1000
- "description": {
1001
- "kind": "markdown",
1002
- "value": ""
1003
- },
1004
- "attributes": [
1005
- {
1006
- "name": "aria-label",
1007
- "description": "Aria label of the drawer"
1008
- },
1009
- {
1010
- "name": "aria-label-back",
1011
- "description": "Aria label of the drawer"
1012
- },
1013
- {
1014
- "name": "aria-label-close",
1015
- "description": "Aria label of the drawer"
1016
- },
1017
- {
1018
- "name": "back-text",
1019
- "description": "Show / hide back icon"
1020
- },
1021
- {
1022
- "name": "drawer-title",
1023
- "description": "Title of the drawer in the header bar"
1024
- },
1025
- {
1026
- "name": "drawer-width",
1027
- "description": "Width of the drawer"
1028
- },
1029
- {
1030
- "name": "enabled-focus-trap",
1031
- "description": "Override focus trap"
1032
- },
1033
- {
1034
- "name": "has-back-icon",
1035
- "description": "Show / hide back icon"
1036
- },
1037
- {
1038
- "name": "has-close-icon",
1039
- "description": "Show / hide close icon"
1040
- },
1041
- {
1042
- "name": "has-inverse-header",
1043
- "description": "Inverse header colors"
1044
- },
1045
- {
1046
- "name": "is-open",
1047
- "description": "Set isOpen property to true to open the drawer"
1048
- },
1049
- {
1050
- "name": "position",
1051
- "description": "position of the drawer. e.g. left, right, bottom"
1052
- },
1053
- {
1054
- "name": "remove-padding",
1055
- "description": "Set removePadding property to true to remove padding for drawer body"
1056
- }
1057
- ],
1058
- "references": [
1059
- {
1060
- "name": "Source code",
1061
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/drawer/drawer.tsx"
1062
- }
1063
- ]
1064
- },
1065
- {
1066
- "name": "road-dropdown",
1067
- "description": {
1068
- "kind": "markdown",
1069
- "value": ""
1070
- },
1071
- "attributes": [
1072
- {
1073
- "name": "direction",
1074
- "description": "",
1075
- "values": [
1076
- {
1077
- "name": "bottom"
1078
- },
1079
- {
1080
- "name": "top"
1081
- }
1082
- ]
1083
- },
1084
- {
1085
- "name": "is-light",
1086
- "description": ""
1087
- },
1088
- {
1089
- "name": "is-medium",
1090
- "description": ""
1091
- },
1092
- {
1093
- "name": "is-open",
1094
- "description": ""
1095
- },
1096
- {
1097
- "name": "position",
1098
- "description": "",
1099
- "values": [
1100
- {
1101
- "name": "left"
1102
- },
1103
- {
1104
- "name": "right"
1105
- }
1106
- ]
1107
- }
1108
- ],
1109
- "references": [
1110
- {
1111
- "name": "Source code",
1112
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/dropdown/dropdown.tsx"
1113
- }
1114
- ]
1115
- },
1116
- {
1117
- "name": "road-duration",
1118
- "description": {
1119
- "kind": "markdown",
1120
- "value": ""
1121
- },
1122
- "attributes": [
1123
- {
1124
- "name": "header",
1125
- "description": "title of the widget"
1126
- },
1127
- {
1128
- "name": "is-open",
1129
- "description": "Set isOpen property to true to open the duration widget"
1130
- },
1131
- {
1132
- "name": "max",
1133
- "description": "The maximum value, which must not be less than its minimum (min attribute) value in minutes."
1134
- },
1135
- {
1136
- "name": "min",
1137
- "description": "The minimum value, which must not be greater than its maximum (max attribute) value in minutes."
1138
- },
1139
- {
1140
- "name": "step",
1141
- "description": "Works with the min and max attributes to limit the increments at which a value can be set in minutes."
1142
- }
1143
- ],
1144
- "references": [
1145
- {
1146
- "name": "Source code",
1147
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/duration/duration.tsx"
1148
- }
1149
- ]
1150
- },
1151
- {
1152
- "name": "road-flap",
1153
- "description": {
1154
- "kind": "markdown",
1155
- "value": ""
1156
- },
1157
- "attributes": [
1158
- {
1159
- "name": "color",
1160
- "description": "Set the color of the flap.",
1161
- "values": [
1162
- {
1163
- "name": "blackfriday"
1164
- },
1165
- {
1166
- "name": "ecology"
1167
- },
1168
- {
1169
- "name": "exclu"
1170
- },
1171
- {
1172
- "name": "info"
1173
- },
1174
- {
1175
- "name": "promo"
1176
- }
1177
- ]
1178
- },
1179
- {
1180
- "name": "filled",
1181
- "description": "Set to `true` for a filled flap"
1182
- },
1183
- {
1184
- "name": "size",
1185
- "description": "The button size.",
1186
- "values": [
1187
- {
1188
- "name": "md"
1189
- },
1190
- {
1191
- "name": "sm"
1192
- }
1193
- ]
1194
- }
1195
- ],
1196
- "references": [
1197
- {
1198
- "name": "Source code",
1199
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/flap/flap.tsx"
1200
- }
1201
- ]
1202
- },
1203
- {
1204
- "name": "road-global-navigation",
1205
- "description": {
1206
- "kind": "markdown",
1207
- "value": ""
1208
- },
1209
- "attributes": [
1210
- {
1211
- "name": "selected-tab",
1212
- "description": "The selected tab component"
1213
- }
1214
- ],
1215
- "references": [
1216
- {
1217
- "name": "Source code",
1218
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/global-navigation/global-navigation.tsx"
1219
- }
1220
- ]
1221
- },
1222
- {
1223
- "name": "road-global-navigation-v2",
1224
- "description": {
1225
- "kind": "markdown",
1226
- "value": ""
1227
- },
1228
- "attributes": [
1229
- {
1230
- "name": "selected-tab",
1231
- "description": "The selected tab component"
1232
- }
1233
- ],
1234
- "references": [
1235
- {
1236
- "name": "Source code",
1237
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/global-navigation-v2/global-navigation-v2.tsx"
1238
- }
1239
- ]
1240
- },
1241
- {
1242
- "name": "road-grid",
1243
- "description": {
1244
- "kind": "markdown",
1245
- "value": "The grid is a powerful mobile-first flexbox system for building custom layouts.\n\nIt is composed of three units — a grid, [row(s)](../row) and [column(s)](../col). Columns will expand to fill the row, and will resize to fit additional columns. It is based on a 12 column layout with different breakpoints based on the screen size. The number of columns can be customized using CSS."
1246
- },
1247
- "attributes": [],
1248
- "references": [
1249
- {
1250
- "name": "Source code",
1251
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/grid/grid.tsx"
1252
- }
1253
- ]
1254
- },
1255
- {
1256
- "name": "road-icon",
1257
- "description": {
1258
- "kind": "markdown",
1259
- "value": ""
1260
- },
1261
- "attributes": [
1262
- {
1263
- "name": "aria-hidden",
1264
- "description": "Set the icon to hidden, respectively `true`, to remove it from the accessibility tree."
1265
- },
1266
- {
1267
- "name": "aria-label",
1268
- "description": "Specifies the label to use for accessibility. Defaults to the icon name."
1269
- },
1270
- {
1271
- "name": "color",
1272
- "description": "Color of the icon",
1273
- "values": [
1274
- {
1275
- "name": "accent"
1276
- },
1277
- {
1278
- "name": "danger"
1279
- },
1280
- {
1281
- "name": "default"
1282
- },
1283
- {
1284
- "name": "info"
1285
- },
1286
- {
1287
- "name": "primary"
1288
- },
1289
- {
1290
- "name": "secondary"
1291
- },
1292
- {
1293
- "name": "success"
1294
- },
1295
- {
1296
- "name": "warning"
1297
- },
1298
- {
1299
- "name": "white"
1300
- }
1301
- ]
1302
- },
1303
- {
1304
- "name": "icon",
1305
- "description": "A combination of both `name` and `src`. If a `src` url is detected\nit will set the `src` property. Otherwise it assumes it's a built-in named\nSVG and set the `name` property."
1306
- },
1307
- {
1308
- "name": "lazy",
1309
- "description": "If enabled, road-icon will be loaded lazily when it's visible in the viewport.\nDefault, `false`."
1310
- },
1311
- {
1312
- "name": "name",
1313
- "description": "Specifies which icon to use from the built-in set of icons."
1314
- },
1315
- {
1316
- "name": "rotate",
1317
- "description": "The rotation of the icon.\nAvailable options are: `\"90\"`, `\"180\"`, `\"270\"`.",
1318
- "values": [
1319
- {
1320
- "name": "180"
1321
- },
1322
- {
1323
- "name": "270"
1324
- },
1325
- {
1326
- "name": "90"
1327
- }
1328
- ]
1329
- },
1330
- {
1331
- "name": "sanitize",
1332
- "description": "When set to `false`, SVG content that is HTTP fetched will not be checked\nif the response SVG content has any `<script>` elements, or any attributes\nthat start with `on`, such as `onclick`."
1333
- },
1334
- {
1335
- "name": "size",
1336
- "description": "The size of the icon.\nAvailable options are: `\"sm\"`, `\"md\"`, `\"lg\"`, `\"3x\"` and `\"4x\"`.",
1337
- "values": [
1338
- {
1339
- "name": "3x"
1340
- },
1341
- {
1342
- "name": "4x"
1343
- },
1344
- {
1345
- "name": "lg"
1346
- },
1347
- {
1348
- "name": "md"
1349
- },
1350
- {
1351
- "name": "sm"
1352
- }
1353
- ]
1354
- },
1355
- {
1356
- "name": "src",
1357
- "description": "Specifies the exact `src` of an SVG file to use."
1358
- }
1359
- ],
1360
- "references": [
1361
- {
1362
- "name": "Source code",
1363
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/icon/icon.tsx"
1364
- }
1365
- ]
1366
- },
1367
- {
1368
- "name": "road-illustration",
1369
- "description": {
1370
- "kind": "markdown",
1371
- "value": ""
1372
- },
1373
- "attributes": [
1374
- {
1375
- "name": "aria-hidden",
1376
- "description": "Set the illustration to hidden, respectively `true`, to remove it from the accessibility tree."
1377
- },
1378
- {
1379
- "name": "aria-label",
1380
- "description": "Specifies the label to use for accessibility. Defaults to the illustration name."
1381
- },
1382
- {
1383
- "name": "illustration",
1384
- "description": "A combination of both `name` and `src`. If a `src` url is detected\nit will set the `src` property. Otherwise it assumes it's a built-in named\nSVG and set the `name` property."
1385
- },
1386
- {
1387
- "name": "lazy",
1388
- "description": "If enabled, road-illustration will be loaded lazily when it's visible in the viewport.\nDefault, `false`."
1389
- },
1390
- {
1391
- "name": "name",
1392
- "description": "Specifies which illustration to use from the built-in set of illustrations."
1393
- },
1394
- {
1395
- "name": "rotate",
1396
- "description": "The rotation of the illustration.\nAvailable options are: `\"90\"`, `\"180\"`, `\"270\"`.",
1397
- "values": [
1398
- {
1399
- "name": "180"
1400
- },
1401
- {
1402
- "name": "270"
1403
- },
1404
- {
1405
- "name": "90"
1406
- }
1407
- ]
1408
- },
1409
- {
1410
- "name": "sanitize",
1411
- "description": "When set to `false`, SVG content that is HTTP fetched will not be checked\nif the response SVG content has any `<script>` elements, or any attributes\nthat start with `on`, such as `onclick`."
1412
- },
1413
- {
1414
- "name": "size",
1415
- "description": "The size of the illustration.\nAvailable options are: `\"sm\"`, `\"md\"`, `\"lg\"`, `\"2x\"`.",
1416
- "values": [
1417
- {
1418
- "name": "2x"
1419
- },
1420
- {
1421
- "name": "lg"
1422
- },
1423
- {
1424
- "name": "md"
1425
- },
1426
- {
1427
- "name": "sm"
1428
- }
1429
- ]
1430
- },
1431
- {
1432
- "name": "src",
1433
- "description": "Specifies the exact `src` of an SVG file to use."
1434
- }
1435
- ],
1436
- "references": [
1437
- {
1438
- "name": "Source code",
1439
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/illustration/illustration.tsx"
1440
- }
1441
- ]
1442
- },
1443
- {
1444
- "name": "road-img",
1445
- "description": {
1446
- "kind": "markdown",
1447
- "value": "Img is a tag that will lazily load an image when ever the tag is in the viewport. This is extremely useful when generating a large list as images are only loaded when they're visible. The component uses [Intersection Observer](https://caniuse.com/#feat=intersectionobserver) internally, which is supported in most modern browser, but falls back to a `setTimeout` when it is not supported."
1448
- },
1449
- "attributes": [
1450
- {
1451
- "name": "alt",
1452
- "description": "This attribute defines the alternative text describing the image.\nUsers will see this text displayed if the image URL is wrong,\nthe image is not in one of the supported formats, or if the image is not yet downloaded."
1453
- },
1454
- {
1455
- "name": "src",
1456
- "description": "The image URL. This attribute is mandatory for the `<img>` element."
1457
- }
1458
- ],
1459
- "references": [
1460
- {
1461
- "name": "Source code",
1462
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/img/img.tsx"
1463
- }
1464
- ]
1465
- },
1466
- {
1467
- "name": "road-input",
1468
- "description": {
1469
- "kind": "markdown",
1470
- "value": ""
1471
- },
1472
- "attributes": [
1473
- {
1474
- "name": "autocapitalize",
1475
- "description": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user."
1476
- },
1477
- {
1478
- "name": "autocomplete",
1479
- "description": "Indicates whether the value of the control can be automatically completed by the browser.",
1480
- "values": [
1481
- {
1482
- "name": "on"
1483
- },
1484
- {
1485
- "name": "name"
1486
- },
1487
- {
1488
- "name": "url"
1489
- },
1490
- {
1491
- "name": "off"
1492
- },
1493
- {
1494
- "name": "tel"
1495
- },
1496
- {
1497
- "name": "email"
1498
- },
1499
- {
1500
- "name": "honorific-prefix"
1501
- },
1502
- {
1503
- "name": "given-name"
1504
- },
1505
- {
1506
- "name": "additional-name"
1507
- },
1508
- {
1509
- "name": "family-name"
1510
- },
1511
- {
1512
- "name": "honorific-suffix"
1513
- },
1514
- {
1515
- "name": "nickname"
1516
- },
1517
- {
1518
- "name": "username"
1519
- },
1520
- {
1521
- "name": "new-password"
1522
- },
1523
- {
1524
- "name": "current-password"
1525
- },
1526
- {
1527
- "name": "one-time-code"
1528
- },
1529
- {
1530
- "name": "organization-title"
1531
- },
1532
- {
1533
- "name": "organization"
1534
- },
1535
- {
1536
- "name": "street-address"
1537
- },
1538
- {
1539
- "name": "address-line1"
1540
- },
1541
- {
1542
- "name": "address-line2"
1543
- },
1544
- {
1545
- "name": "address-line3"
1546
- },
1547
- {
1548
- "name": "address-level4"
1549
- },
1550
- {
1551
- "name": "address-level3"
1552
- },
1553
- {
1554
- "name": "address-level2"
1555
- },
1556
- {
1557
- "name": "address-level1"
1558
- },
1559
- {
1560
- "name": "country"
1561
- },
1562
- {
1563
- "name": "country-name"
1564
- },
1565
- {
1566
- "name": "postal-code"
1567
- },
1568
- {
1569
- "name": "cc-name"
1570
- },
1571
- {
1572
- "name": "cc-given-name"
1573
- },
1574
- {
1575
- "name": "cc-additional-name"
1576
- },
1577
- {
1578
- "name": "cc-family-name"
1579
- },
1580
- {
1581
- "name": "cc-number"
1582
- },
1583
- {
1584
- "name": "cc-exp"
1585
- },
1586
- {
1587
- "name": "cc-exp-month"
1588
- },
1589
- {
1590
- "name": "cc-exp-year"
1591
- },
1592
- {
1593
- "name": "cc-csc"
1594
- },
1595
- {
1596
- "name": "cc-type"
1597
- },
1598
- {
1599
- "name": "transaction-currency"
1600
- },
1601
- {
1602
- "name": "transaction-amount"
1603
- },
1604
- {
1605
- "name": "language"
1606
- },
1607
- {
1608
- "name": "bday"
1609
- },
1610
- {
1611
- "name": "bday-day"
1612
- },
1613
- {
1614
- "name": "bday-month"
1615
- },
1616
- {
1617
- "name": "bday-year"
1618
- },
1619
- {
1620
- "name": "sex"
1621
- },
1622
- {
1623
- "name": "tel-country-code"
1624
- },
1625
- {
1626
- "name": "tel-national"
1627
- },
1628
- {
1629
- "name": "tel-area-code"
1630
- },
1631
- {
1632
- "name": "tel-local"
1633
- },
1634
- {
1635
- "name": "tel-extension"
1636
- },
1637
- {
1638
- "name": "impp"
1639
- },
1640
- {
1641
- "name": "photo"
1642
- }
1643
- ]
1644
- },
1645
- {
1646
- "name": "autocorrect",
1647
- "description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
1648
- "values": [
1649
- {
1650
- "name": "off"
1651
- },
1652
- {
1653
- "name": "on"
1654
- }
1655
- ]
1656
- },
1657
- {
1658
- "name": "autofocus",
1659
- "description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads."
1660
- },
1661
- {
1662
- "name": "blockdecimal",
1663
- "description": "If `true`, block decimal."
1664
- },
1665
- {
1666
- "name": "debounce",
1667
- "description": "Set the amount of time, in milliseconds, to wait to trigger the `roadChange` event after each keystroke."
1668
- },
1669
- {
1670
- "name": "disabled",
1671
- "description": "If `true`, the user cannot interact with the input."
1672
- },
1673
- {
1674
- "name": "enterkeyhint",
1675
- "description": "A hint to the browser for which enter key to display.\nPossible values: `\"enter\"`, `\"done\"`, `\"go\"`, `\"next\"`,\n`\"previous\"`, `\"search\"`, and `\"send\"`.",
1676
- "values": [
1677
- {
1678
- "name": "done"
1679
- },
1680
- {
1681
- "name": "enter"
1682
- },
1683
- {
1684
- "name": "go"
1685
- },
1686
- {
1687
- "name": "next"
1688
- },
1689
- {
1690
- "name": "previous"
1691
- },
1692
- {
1693
- "name": "search"
1694
- },
1695
- {
1696
- "name": "send"
1697
- }
1698
- ]
1699
- },
1700
- {
1701
- "name": "error",
1702
- "description": "Error message for the field, for multiple error messages separate by ','"
1703
- },
1704
- {
1705
- "name": "helper",
1706
- "description": "Helper message for the field"
1707
- },
1708
- {
1709
- "name": "input-id",
1710
- "description": "The id of input"
1711
- },
1712
- {
1713
- "name": "inputmode",
1714
- "description": "A hint to the browser for which keyboard to display.\nThis attribute applies when the value of the type attribute is `\"text\"`, `\"password\"`, `\"email\"`, or `\"url\"`. Possible values are: `\"verbatim\"`, `\"latin\"`, `\"latin-name\"`, `\"latin-prose\"`, `\"full-width-latin\"`, `\"kana\"`, `\"katakana\"`, `\"numeric\"`, `\"tel\"`, `\"email\"`, `\"url\"`.",
1715
- "values": [
1716
- {
1717
- "name": "decimal"
1718
- },
1719
- {
1720
- "name": "email"
1721
- },
1722
- {
1723
- "name": "none"
1724
- },
1725
- {
1726
- "name": "numeric"
1727
- },
1728
- {
1729
- "name": "search"
1730
- },
1731
- {
1732
- "name": "tel"
1733
- },
1734
- {
1735
- "name": "text"
1736
- },
1737
- {
1738
- "name": "url"
1739
- }
1740
- ]
1741
- },
1742
- {
1743
- "name": "label",
1744
- "description": "Label for the field"
1745
- },
1746
- {
1747
- "name": "list",
1748
- "description": "id of the linked datalist"
1749
- },
1750
- {
1751
- "name": "max",
1752
- "description": "The maximum value, which must not be less than its minimum (min attribute) value."
1753
- },
1754
- {
1755
- "name": "maxlength",
1756
- "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the maximum number of characters that the user can enter."
1757
- },
1758
- {
1759
- "name": "min",
1760
- "description": "The minimum value, which must not be greater than its maximum (max attribute) value."
1761
- },
1762
- {
1763
- "name": "minlength",
1764
- "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the minimum number of characters that the user can enter."
1765
- },
1766
- {
1767
- "name": "name",
1768
- "description": "The name of the control, which is submitted with the form data."
1769
- },
1770
- {
1771
- "name": "pattern",
1772
- "description": "A regular expression that the value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is `\"text\"`, `\"search\"`, `\"tel\"`, `\"url\"`, `\"email\"`, or `\"password\"`, otherwise it is ignored."
1773
- },
1774
- {
1775
- "name": "placeholder",
1776
- "description": "Instructional text that shows before the input has a value."
1777
- },
1778
- {
1779
- "name": "readonly",
1780
- "description": "If `true`, the user cannot modify the value."
1781
- },
1782
- {
1783
- "name": "required",
1784
- "description": "If `true`, the user must fill in a value before submitting a form."
1785
- },
1786
- {
1787
- "name": "size",
1788
- "description": "The initial size of the control. This value is in pixels unless the value of the type attribute is `\"text\"` or `\"password\"`, in which case it is an integer number of characters. This attribute applies only when the `type` attribute is set to `\"text\"`, `\"search\"`, `\"tel\"`, `\"url\"`, `\"email\"`, or `\"password\"`, otherwise it is ignored."
1789
- },
1790
- {
1791
- "name": "sizes",
1792
- "description": "The sizes of the input.",
1793
- "values": [
1794
- {
1795
- "name": "lg"
1796
- },
1797
- {
1798
- "name": "xl"
1799
- }
1800
- ]
1801
- },
1802
- {
1803
- "name": "spellcheck",
1804
- "description": "If `true`, the element will have its spelling and grammar checked."
1805
- },
1806
- {
1807
- "name": "step",
1808
- "description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number."
1809
- },
1810
- {
1811
- "name": "success",
1812
- "description": "The valid fields adopt an appearance that helps the user confirm that their data is formatted properly."
1813
- },
1814
- {
1815
- "name": "type",
1816
- "description": "The type of control to display. The default type is text.",
1817
- "values": [
1818
- {
1819
- "name": "date"
1820
- },
1821
- {
1822
- "name": "email"
1823
- },
1824
- {
1825
- "name": "number"
1826
- },
1827
- {
1828
- "name": "password"
1829
- },
1830
- {
1831
- "name": "search"
1832
- },
1833
- {
1834
- "name": "tel"
1835
- },
1836
- {
1837
- "name": "text"
1838
- },
1839
- {
1840
- "name": "time"
1841
- },
1842
- {
1843
- "name": "url"
1844
- }
1845
- ]
1846
- },
1847
- {
1848
- "name": "value",
1849
- "description": "The value of the input.(for dynamic use use v-model for vue instead)"
1850
- }
1851
- ],
1852
- "references": [
1853
- {
1854
- "name": "Source code",
1855
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/input/input.tsx"
1856
- }
1857
- ]
1858
- },
1859
- {
1860
- "name": "road-input-group",
1861
- "description": {
1862
- "kind": "markdown",
1863
- "value": ""
1864
- },
1865
- "attributes": [
1866
- {
1867
- "name": "disabled",
1868
- "description": "Disables the entire input group and propagates the state to children."
1869
- }
1870
- ],
1871
- "references": [
1872
- {
1873
- "name": "Source code",
1874
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/input-group/input-group.tsx"
1875
- }
1876
- ]
1877
- },
1878
- {
1879
- "name": "road-item",
1880
- "description": {
1881
- "kind": "markdown",
1882
- "value": ""
1883
- },
1884
- "attributes": [
1885
- {
1886
- "name": "active",
1887
- "description": "If `true`, display an active state item"
1888
- },
1889
- {
1890
- "name": "button",
1891
- "description": "If `true`, a button tag will be rendered and the item will be tappable."
1892
- },
1893
- {
1894
- "name": "detail",
1895
- "description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode`\nis `ios` and an `href` or `button` property is present."
1896
- },
1897
- {
1898
- "name": "detail-icon",
1899
- "description": "The icon to use when `detail` is set to `true`."
1900
- },
1901
- {
1902
- "name": "disabled",
1903
- "description": "If `true`, the user cannot interact with the item."
1904
- },
1905
- {
1906
- "name": "download",
1907
- "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
1908
- },
1909
- {
1910
- "name": "href",
1911
- "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
1912
- },
1913
- {
1914
- "name": "layout",
1915
- "description": "How the bottom border should be displayed on the item.",
1916
- "values": [
1917
- {
1918
- "name": "horizontal"
1919
- },
1920
- {
1921
- "name": "vertical"
1922
- }
1923
- ]
1924
- },
1925
- {
1926
- "name": "lines",
1927
- "description": "How the bottom border should be displayed on the item.",
1928
- "values": [
1929
- {
1930
- "name": "full"
1931
- },
1932
- {
1933
- "name": "inset"
1934
- },
1935
- {
1936
- "name": "none"
1937
- }
1938
- ]
1939
- },
1940
- {
1941
- "name": "rel",
1942
- "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
1943
- },
1944
- {
1945
- "name": "target",
1946
- "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
1947
- },
1948
- {
1949
- "name": "text",
1950
- "description": "Description for the item"
1951
- },
1952
- {
1953
- "name": "title-item",
1954
- "description": "Title for the item"
1955
- },
1956
- {
1957
- "name": "type",
1958
- "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
1959
- "values": [
1960
- {
1961
- "name": "button"
1962
- },
1963
- {
1964
- "name": "reset"
1965
- },
1966
- {
1967
- "name": "submit"
1968
- }
1969
- ]
1970
- }
1971
- ],
1972
- "references": [
1973
- {
1974
- "name": "Source code",
1975
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/item/item.tsx"
1976
- }
1977
- ]
1978
- },
1979
- {
1980
- "name": "road-label",
1981
- "description": {
1982
- "kind": "markdown",
1983
- "value": ""
1984
- },
1985
- "attributes": [],
1986
- "references": [
1987
- {
1988
- "name": "Source code",
1989
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/label/label.tsx"
1990
- }
1991
- ]
1992
- },
1993
- {
1994
- "name": "road-list",
1995
- "description": {
1996
- "kind": "markdown",
1997
- "value": ""
1998
- },
1999
- "attributes": [
2000
- {
2001
- "name": "lines",
2002
- "description": "How the bottom border should be displayed on all items.",
2003
- "values": [
2004
- {
2005
- "name": "full"
2006
- },
2007
- {
2008
- "name": "inset"
2009
- },
2010
- {
2011
- "name": "none"
2012
- }
2013
- ]
2014
- }
2015
- ],
2016
- "references": [
2017
- {
2018
- "name": "Source code",
2019
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/list/list.tsx"
2020
- }
2021
- ]
2022
- },
2023
- {
2024
- "name": "road-modal",
2025
- "description": {
2026
- "kind": "markdown",
2027
- "value": ""
2028
- },
2029
- "attributes": [
2030
- {
2031
- "name": "has-close-icon",
2032
- "description": "Show / hide close icon"
2033
- },
2034
- {
2035
- "name": "has-inverse-header",
2036
- "description": "inverse header colors"
2037
- },
2038
- {
2039
- "name": "is-open",
2040
- "description": "Set isOpen propertie to true to show the modal"
2041
- },
2042
- {
2043
- "name": "max-width",
2044
- "description": "Max width of the modal on desktop"
2045
- },
2046
- {
2047
- "name": "modal-title",
2048
- "description": "Title of the modal in the header bar"
2049
- }
2050
- ],
2051
- "references": [
2052
- {
2053
- "name": "Source code",
2054
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/modal/modal.tsx"
2055
- }
2056
- ]
2057
- },
2058
- {
2059
- "name": "road-navbar",
2060
- "description": {
2061
- "kind": "markdown",
2062
- "value": ""
2063
- },
2064
- "attributes": [
2065
- {
2066
- "name": "selected-tab",
2067
- "description": "The selected tab component"
2068
- }
2069
- ],
2070
- "references": [
2071
- {
2072
- "name": "Source code",
2073
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/navbar/navbar.tsx"
2074
- }
2075
- ]
2076
- },
2077
- {
2078
- "name": "road-navbar-item",
2079
- "description": {
2080
- "kind": "markdown",
2081
- "value": ""
2082
- },
2083
- "attributes": [
2084
- {
2085
- "name": "disabled",
2086
- "description": "If `true`, the user cannot interact with the tab button."
2087
- },
2088
- {
2089
- "name": "download",
2090
- "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
2091
- },
2092
- {
2093
- "name": "href",
2094
- "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
2095
- },
2096
- {
2097
- "name": "rel",
2098
- "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
2099
- },
2100
- {
2101
- "name": "selected",
2102
- "description": "The selected tab component"
2103
- },
2104
- {
2105
- "name": "tab",
2106
- "description": "A tab id must be provided for each `road-tab`. It's used internally to reference\nthe selected tab."
2107
- },
2108
- {
2109
- "name": "target",
2110
- "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
2111
- }
2112
- ],
2113
- "references": [
2114
- {
2115
- "name": "Source code",
2116
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/navbar-item/navbar-item.tsx"
2117
- }
2118
- ]
2119
- },
2120
- {
2121
- "name": "road-navbar-item-v2",
2122
- "description": {
2123
- "kind": "markdown",
2124
- "value": ""
2125
- },
2126
- "attributes": [
2127
- {
2128
- "name": "disabled",
2129
- "description": "If `true`, the user cannot interact with the tab button."
2130
- },
2131
- {
2132
- "name": "download",
2133
- "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
2134
- },
2135
- {
2136
- "name": "href",
2137
- "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
2138
- },
2139
- {
2140
- "name": "rel",
2141
- "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
2142
- },
2143
- {
2144
- "name": "selected",
2145
- "description": "The selected tab component"
2146
- },
2147
- {
2148
- "name": "tab",
2149
- "description": "A tab id must be provided for each `road-tab`. It's used internally to reference\nthe selected tab."
2150
- },
2151
- {
2152
- "name": "target",
2153
- "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
2154
- }
2155
- ],
2156
- "references": [
2157
- {
2158
- "name": "Source code",
2159
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/navbar-item-v2/navbar-item-v2.tsx"
2160
- }
2161
- ]
2162
- },
2163
- {
2164
- "name": "road-navbar-v2",
2165
- "description": {
2166
- "kind": "markdown",
2167
- "value": ""
2168
- },
2169
- "attributes": [
2170
- {
2171
- "name": "compact",
2172
- "description": "Set to `true` for a compact navbar."
2173
- },
2174
- {
2175
- "name": "selected-tab",
2176
- "description": "The selected tab component"
2177
- }
2178
- ],
2179
- "references": [
2180
- {
2181
- "name": "Source code",
2182
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/navbar-v2/navbar-v2.tsx"
2183
- }
2184
- ]
2185
- },
2186
- {
2187
- "name": "road-phone-number-input",
2188
- "description": {
2189
- "kind": "markdown",
2190
- "value": ""
2191
- },
2192
- "attributes": [
2193
- {
2194
- "name": "code-label",
2195
- "description": "Country selection placeHolder"
2196
- },
2197
- {
2198
- "name": "country-code",
2199
- "description": "Selected country code"
2200
- },
2201
- {
2202
- "name": "disabled",
2203
- "description": "Disable both fields"
2204
- },
2205
- {
2206
- "name": "error-message",
2207
- "description": "Error message (displayed only if ther is a message)"
2208
- },
2209
- {
2210
- "name": "language",
2211
- "description": "Used to display countries with the right language"
2212
- },
2213
- {
2214
- "name": "phone-label",
2215
- "description": "Phone input placeHolder"
2216
- },
2217
- {
2218
- "name": "phone-value",
2219
- "description": "Value displayed in the phone input"
2220
- },
2221
- {
2222
- "name": "required",
2223
- "description": "Add a star in the phone input"
2224
- }
2225
- ],
2226
- "references": [
2227
- {
2228
- "name": "Source code",
2229
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/phone-number-input/phone-number-input.tsx"
2230
- }
2231
- ]
2232
- },
2233
- {
2234
- "name": "road-plate-number",
2235
- "description": {
2236
- "kind": "markdown",
2237
- "value": ""
2238
- },
2239
- "attributes": [
2240
- {
2241
- "name": "country",
2242
- "description": "country of the plate",
2243
- "values": [
2244
- {
2245
- "name": "AT"
2246
- },
2247
- {
2248
- "name": "BE"
2249
- },
2250
- {
2251
- "name": "DE"
2252
- },
2253
- {
2254
- "name": "ES"
2255
- },
2256
- {
2257
- "name": "FR"
2258
- },
2259
- {
2260
- "name": "IT"
2261
- },
2262
- {
2263
- "name": "PL"
2264
- },
2265
- {
2266
- "name": "PT"
2267
- }
2268
- ]
2269
- },
2270
- {
2271
- "name": "disabled",
2272
- "description": "If `true`, the user cannot interact with the input."
2273
- },
2274
- {
2275
- "name": "motorbike",
2276
- "description": "Enable motorbike display"
2277
- },
2278
- {
2279
- "name": "placeholder",
2280
- "description": "overwrite the default placeholder"
2281
- },
2282
- {
2283
- "name": "readonly",
2284
- "description": "If `true`, the user cannot modify the value."
2285
- },
2286
- {
2287
- "name": "value",
2288
- "description": "The value of the input."
2289
- }
2290
- ],
2291
- "references": [
2292
- {
2293
- "name": "Source code",
2294
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/plate-number/plate-number.tsx"
2295
- }
2296
- ]
2297
- },
2298
- {
2299
- "name": "road-profil-dropdown",
2300
- "description": {
2301
- "kind": "markdown",
2302
- "value": ""
2303
- },
2304
- "attributes": [
2305
- {
2306
- "name": "is-open",
2307
- "description": "Set to `true` to open the dropdown menu and to `false` to close it."
2308
- }
2309
- ],
2310
- "references": [
2311
- {
2312
- "name": "Source code",
2313
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/profil-dropdown/profil-dropdown.tsx"
2314
- }
2315
- ]
2316
- },
2317
- {
2318
- "name": "road-progress",
2319
- "description": {
2320
- "kind": "markdown",
2321
- "value": ""
2322
- },
2323
- "attributes": [
2324
- {
2325
- "name": "animation",
2326
- "description": "Animation progress bar"
2327
- },
2328
- {
2329
- "name": "color",
2330
- "description": "The color to use from your application's color palette.",
2331
- "values": [
2332
- {
2333
- "name": "danger"
2334
- },
2335
- {
2336
- "name": "info"
2337
- },
2338
- {
2339
- "name": "primary"
2340
- },
2341
- {
2342
- "name": "rating"
2343
- },
2344
- {
2345
- "name": "secondary"
2346
- },
2347
- {
2348
- "name": "success"
2349
- },
2350
- {
2351
- "name": "warning"
2352
- }
2353
- ]
2354
- },
2355
- {
2356
- "name": "fullwidth",
2357
- "description": "Add padding if the progress is full width"
2358
- },
2359
- {
2360
- "name": "label",
2361
- "description": "Label display in progress bar"
2362
- },
2363
- {
2364
- "name": "light",
2365
- "description": "Light progress background"
2366
- },
2367
- {
2368
- "name": "numbersteps",
2369
- "description": "The number of steps."
2370
- },
2371
- {
2372
- "name": "progresscalculationbase",
2373
- "description": "Progress calculation base for step display\n- previous: step is calculated based on the previous completed step\n- current: step is calculated based on the current progress\nDefault is 'current'",
2374
- "values": [
2375
- {
2376
- "name": "current"
2377
- },
2378
- {
2379
- "name": "previous"
2380
- }
2381
- ]
2382
- },
2383
- {
2384
- "name": "showstep",
2385
- "description": "Show step"
2386
- },
2387
- {
2388
- "name": "value",
2389
- "description": "The value determines how much of the active bar should display.\nThe value should be between [0, 100]."
2390
- }
2391
- ],
2392
- "references": [
2393
- {
2394
- "name": "Source code",
2395
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/progress/progress.tsx"
2396
- }
2397
- ]
2398
- },
2399
- {
2400
- "name": "road-progress-indicator-horizontal",
2401
- "description": {
2402
- "kind": "markdown",
2403
- "value": ""
2404
- },
2405
- "attributes": [
2406
- {
2407
- "name": "color",
2408
- "description": "The color progress-indicator-horizontal.",
2409
- "values": [
2410
- {
2411
- "name": "default"
2412
- },
2413
- {
2414
- "name": "header"
2415
- }
2416
- ]
2417
- },
2418
- {
2419
- "name": "number-step",
2420
- "description": "The nombre of steps."
2421
- },
2422
- {
2423
- "name": "state-first-step",
2424
- "description": "The color of the first step.",
2425
- "values": [
2426
- {
2427
- "name": "comleted"
2428
- },
2429
- {
2430
- "name": "current"
2431
- },
2432
- {
2433
- "name": "default"
2434
- },
2435
- {
2436
- "name": "in-progress"
2437
- }
2438
- ]
2439
- },
2440
- {
2441
- "name": "state-second-step",
2442
- "description": "The color of the second step.",
2443
- "values": [
2444
- {
2445
- "name": "comleted"
2446
- },
2447
- {
2448
- "name": "current"
2449
- },
2450
- {
2451
- "name": "default"
2452
- },
2453
- {
2454
- "name": "in-progress"
2455
- }
2456
- ]
2457
- },
2458
- {
2459
- "name": "state-third-step",
2460
- "description": "The color of the third step.",
2461
- "values": [
2462
- {
2463
- "name": "comleted"
2464
- },
2465
- {
2466
- "name": "current"
2467
- },
2468
- {
2469
- "name": "default"
2470
- },
2471
- {
2472
- "name": "in-progress"
2473
- }
2474
- ]
2475
- },
2476
- {
2477
- "name": "url-step-1",
2478
- "description": "The url of the first step."
2479
- },
2480
- {
2481
- "name": "url-step-2",
2482
- "description": "The url of the first step."
2483
- },
2484
- {
2485
- "name": "url-step-3",
2486
- "description": "The url of the first step."
2487
- }
2488
- ],
2489
- "references": [
2490
- {
2491
- "name": "Source code",
2492
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/progress-indicator-horizontal/progress-indicator-horizontal.tsx"
2493
- }
2494
- ]
2495
- },
2496
- {
2497
- "name": "road-progress-indicator-vertical",
2498
- "description": {
2499
- "kind": "markdown",
2500
- "value": ""
2501
- },
2502
- "attributes": [],
2503
- "references": [
2504
- {
2505
- "name": "Source code",
2506
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/progress-indicator-vertical/progress-indicator-vertical.tsx"
2507
- }
2508
- ]
2509
- },
2510
- {
2511
- "name": "road-progress-indicator-vertical-item",
2512
- "description": {
2513
- "kind": "markdown",
2514
- "value": "The Carousel Item component is a child component of [Carousel](../carousel). The template\nshould be written as `road-carousel-item`. Any slide content should be written\nin this component and it should be used in conjunction with [Carousel](../carousel).\n\nSee the [Carousel API Docs](../carousel) for more usage information."
2515
- },
2516
- "attributes": [],
2517
- "references": [
2518
- {
2519
- "name": "Source code",
2520
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/progress-indicator-vertical-item/progress-indicator-vertical-item.tsx"
2521
- }
2522
- ]
2523
- },
2524
- {
2525
- "name": "road-progress-tracker",
2526
- "description": {
2527
- "kind": "markdown",
2528
- "value": ""
2529
- },
2530
- "attributes": [],
2531
- "references": [
2532
- {
2533
- "name": "Source code",
2534
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/progress-tracker/progress-tracker.tsx"
2535
- }
2536
- ]
2537
- },
2538
- {
2539
- "name": "road-progress-tracker-item",
2540
- "description": {
2541
- "kind": "markdown",
2542
- "value": "The Carousel Item component is a child component of [Carousel](../carousel). The template\nshould be written as `road-carousel-item`. Any slide content should be written\nin this component and it should be used in conjunction with [Carousel](../carousel).\n\nSee the [Carousel API Docs](../carousel) for more usage information."
2543
- },
2544
- "attributes": [],
2545
- "references": [
2546
- {
2547
- "name": "Source code",
2548
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/progress-tracker-item/progress-tracker-item.tsx"
2549
- }
2550
- ]
2551
- },
2552
- {
2553
- "name": "road-radio",
2554
- "description": {
2555
- "kind": "markdown",
2556
- "value": "A radio is used in a [radio-group](../radio-group). It allows\na user to select at most one radio button from a set. Checking one radio\nbutton that belongs to a radio group unchecks any previous checked\nradio button within the same group."
2557
- },
2558
- "attributes": [
2559
- {
2560
- "name": "disabled",
2561
- "description": "If `true`, the user cannot interact with the radio."
2562
- },
2563
- {
2564
- "name": "error",
2565
- "description": "Error message for the field"
2566
- },
2567
- {
2568
- "name": "helper",
2569
- "description": "Helper message for the field"
2570
- },
2571
- {
2572
- "name": "inline",
2573
- "description": "Inline multiple radio"
2574
- },
2575
- {
2576
- "name": "inverse",
2577
- "description": "If `true`, the label and the radio are inverse and spaced"
2578
- },
2579
- {
2580
- "name": "label",
2581
- "description": "Label for the field"
2582
- },
2583
- {
2584
- "name": "name",
2585
- "description": "The name of the control, which is submitted with the form data."
2586
- },
2587
- {
2588
- "name": "radio-id",
2589
- "description": "The id of radio"
2590
- },
2591
- {
2592
- "name": "required",
2593
- "description": "If `true`, the user must fill in a value before submitting a form."
2594
- },
2595
- {
2596
- "name": "secondary-label",
2597
- "description": "Secondary Label for the field"
2598
- },
2599
- {
2600
- "name": "value",
2601
- "description": "Value the form will get"
2602
- }
2603
- ],
2604
- "references": [
2605
- {
2606
- "name": "Source code",
2607
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/radio/radio.tsx"
2608
- }
2609
- ]
2610
- },
2611
- {
2612
- "name": "road-radio-card",
2613
- "description": {
2614
- "kind": "markdown",
2615
- "value": "A radio is used in a [radio-group](../radio-group). It allows\na user to select at most one radio button from a set. Checking one radio\nbutton that belongs to a radio group unchecks any previous checked\nradio button within the same group."
2616
- },
2617
- "attributes": [
2618
- {
2619
- "name": "disabled",
2620
- "description": ""
2621
- },
2622
- {
2623
- "name": "inline",
2624
- "description": ""
2625
- },
2626
- {
2627
- "name": "label",
2628
- "description": ""
2629
- },
2630
- {
2631
- "name": "name",
2632
- "description": ""
2633
- },
2634
- {
2635
- "name": "selected",
2636
- "description": ""
2637
- },
2638
- {
2639
- "name": "value",
2640
- "description": ""
2641
- }
2642
- ],
2643
- "references": [
2644
- {
2645
- "name": "Source code",
2646
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/radio-card/radio-card.tsx"
2647
- }
2648
- ]
2649
- },
2650
- {
2651
- "name": "road-radio-group",
2652
- "description": {
2653
- "kind": "markdown",
2654
- "value": "A radio group is a group of [radio buttons](../radio). It allows\na user to select at most one radio button from a set. Checking one radio\nbutton that belongs to a radio group unchecks any previous checked\nradio button within the same group."
2655
- },
2656
- "attributes": [
2657
- {
2658
- "name": "allow-empty-selection",
2659
- "description": "If `true`, the radios can be deselected."
2660
- },
2661
- {
2662
- "name": "aria-label",
2663
- "description": "Label for the field"
2664
- },
2665
- {
2666
- "name": "asterisk",
2667
- "description": "add an asterisk to the label of the field"
2668
- },
2669
- {
2670
- "name": "error",
2671
- "description": "Error message for the radio group"
2672
- },
2673
- {
2674
- "name": "helper",
2675
- "description": "Helper message for the radio group"
2676
- },
2677
- {
2678
- "name": "label",
2679
- "description": "Label for the field"
2680
- },
2681
- {
2682
- "name": "name",
2683
- "description": "The name of the control, which is submitted with the form data."
2684
- },
2685
- {
2686
- "name": "radio-group-id",
2687
- "description": "The id of checkbox"
2688
- },
2689
- {
2690
- "name": "value",
2691
- "description": "the value of the radio group."
2692
- }
2693
- ],
2694
- "references": [
2695
- {
2696
- "name": "Source code",
2697
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/radio-group/radio-group.tsx"
2698
- }
2699
- ]
2700
- },
2701
- {
2702
- "name": "road-range",
2703
- "description": {
2704
- "kind": "markdown",
2705
- "value": ""
2706
- },
2707
- "attributes": [
2708
- {
2709
- "name": "disabled",
2710
- "description": "If true, the range will be disabled"
2711
- },
2712
- {
2713
- "name": "max",
2714
- "description": "The maximum value, which must not be less than its minimum (min attribute) value."
2715
- },
2716
- {
2717
- "name": "min",
2718
- "description": "The minimum value, which must not be greater than its maximum (max attribute) value."
2719
- },
2720
- {
2721
- "name": "range-id",
2722
- "description": "The id of range"
2723
- },
2724
- {
2725
- "name": "show-labels",
2726
- "description": "Display labels of the range"
2727
- },
2728
- {
2729
- "name": "show-tick",
2730
- "description": "Display Tick of the range"
2731
- },
2732
- {
2733
- "name": "show-value",
2734
- "description": "Display the current value of the range"
2735
- },
2736
- {
2737
- "name": "step",
2738
- "description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number."
2739
- },
2740
- {
2741
- "name": "value",
2742
- "description": "The value of the range."
2743
- }
2744
- ],
2745
- "references": [
2746
- {
2747
- "name": "Source code",
2748
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/range/range.tsx"
2749
- }
2750
- ]
2751
- },
2752
- {
2753
- "name": "road-rating",
2754
- "description": {
2755
- "kind": "markdown",
2756
- "value": ""
2757
- },
2758
- "attributes": [
2759
- {
2760
- "name": "rate",
2761
- "description": "Rate review between 0 and 5"
2762
- },
2763
- {
2764
- "name": "readonly",
2765
- "description": "Read Only"
2766
- },
2767
- {
2768
- "name": "reviews",
2769
- "description": "number of reviews"
2770
- },
2771
- {
2772
- "name": "reviews-text",
2773
- "description": "Word display next to the number of reviews."
2774
- },
2775
- {
2776
- "name": "showreviews",
2777
- "description": "Show reviews"
2778
- },
2779
- {
2780
- "name": "size",
2781
- "description": "The button size.",
2782
- "values": [
2783
- {
2784
- "name": "extra-small"
2785
- },
2786
- {
2787
- "name": "medium"
2788
- },
2789
- {
2790
- "name": "small"
2791
- }
2792
- ]
2793
- },
2794
- {
2795
- "name": "url",
2796
- "description": "Url."
2797
- }
2798
- ],
2799
- "references": [
2800
- {
2801
- "name": "Source code",
2802
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/rating/rating.tsx"
2803
- }
2804
- ]
2805
- },
2806
- {
2807
- "name": "road-row",
2808
- "description": {
2809
- "kind": "markdown",
2810
- "value": "Rows are horizontal components of the [grid](../grid) system and contain varying numbers of\n[columns](../col). They ensure the columns are positioned properly.\n\nSee [Grid Layout](../grid) for more information."
2811
- },
2812
- "attributes": [],
2813
- "references": [
2814
- {
2815
- "name": "Source code",
2816
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/row/row.tsx"
2817
- }
2818
- ]
2819
- },
2820
- {
2821
- "name": "road-segmented-button",
2822
- "description": {
2823
- "kind": "markdown",
2824
- "value": ""
2825
- },
2826
- "attributes": [
2827
- {
2828
- "name": "selected",
2829
- "description": "The selected tab component"
2830
- },
2831
- {
2832
- "name": "size",
2833
- "description": "The Segmented buttons size.",
2834
- "values": [
2835
- {
2836
- "name": "md"
2837
- },
2838
- {
2839
- "name": "sm"
2840
- }
2841
- ]
2842
- },
2843
- {
2844
- "name": "tab",
2845
- "description": "A tab id must be provided for each `road-tab`. It's used internally to reference"
2846
- }
2847
- ],
2848
- "references": [
2849
- {
2850
- "name": "Source code",
2851
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/segmented-button/segmented-button.tsx"
2852
- }
2853
- ]
2854
- },
2855
- {
2856
- "name": "road-segmented-button-bar",
2857
- "description": {
2858
- "kind": "markdown",
2859
- "value": ""
2860
- },
2861
- "attributes": [
2862
- {
2863
- "name": "selected-tab",
2864
- "description": "The selected tab component"
2865
- }
2866
- ],
2867
- "references": [
2868
- {
2869
- "name": "Source code",
2870
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/segmented-button-bar/segmented-button-bar.tsx"
2871
- }
2872
- ]
2873
- },
2874
- {
2875
- "name": "road-segmented-buttons",
2876
- "description": {
2877
- "kind": "markdown",
2878
- "value": ""
2879
- },
2880
- "attributes": [],
2881
- "references": [
2882
- {
2883
- "name": "Source code",
2884
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/segmented-buttons/segmented-buttons.tsx"
2885
- }
2886
- ]
2887
- },
2888
- {
2889
- "name": "road-select",
2890
- "description": {
2891
- "kind": "markdown",
2892
- "value": ""
2893
- },
2894
- "attributes": [
2895
- {
2896
- "name": "autofocus",
2897
- "description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads."
2898
- },
2899
- {
2900
- "name": "disabled",
2901
- "description": "If `true`, the user cannot interact with the select."
2902
- },
2903
- {
2904
- "name": "error",
2905
- "description": "Error message for the field"
2906
- },
2907
- {
2908
- "name": "helper",
2909
- "description": "Helper message for the field"
2910
- },
2911
- {
2912
- "name": "label",
2913
- "description": "Label for the field"
2914
- },
2915
- {
2916
- "name": "name",
2917
- "description": "The name of the control, which is submitted with the form data."
2918
- },
2919
- {
2920
- "name": "required",
2921
- "description": "If `true`, the user must fill in a value before submitting a form."
2922
- },
2923
- {
2924
- "name": "select-id",
2925
- "description": "The id of select"
2926
- },
2927
- {
2928
- "name": "size",
2929
- "description": "If the control is presented as a scrolling list box (e.g. when multiple is specified),\nthis attribute represents the number of rows in the list that should be visible at one time."
2930
- },
2931
- {
2932
- "name": "sizes",
2933
- "description": "The sizes of the input.",
2934
- "values": [
2935
- {
2936
- "name": "lg"
2937
- },
2938
- {
2939
- "name": "md"
2940
- },
2941
- {
2942
- "name": "xl"
2943
- }
2944
- ]
2945
- },
2946
- {
2947
- "name": "value",
2948
- "description": "the value of the select."
2949
- }
2950
- ],
2951
- "references": [
2952
- {
2953
- "name": "Source code",
2954
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/select/select.tsx"
2955
- }
2956
- ]
2957
- },
2958
- {
2959
- "name": "road-select-filter",
2960
- "description": {
2961
- "kind": "markdown",
2962
- "value": ""
2963
- },
2964
- "attributes": [
2965
- {
2966
- "name": "is-active",
2967
- "description": ""
2968
- },
2969
- {
2970
- "name": "loading",
2971
- "description": ""
2972
- },
2973
- {
2974
- "name": "only-select",
2975
- "description": ""
2976
- },
2977
- {
2978
- "name": "parameters",
2979
- "description": ""
2980
- }
2981
- ],
2982
- "references": [
2983
- {
2984
- "name": "Source code",
2985
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/select-filter/select-filter.tsx"
2986
- }
2987
- ]
2988
- },
2989
- {
2990
- "name": "road-skeleton",
2991
- "description": {
2992
- "kind": "markdown",
2993
- "value": ""
2994
- },
2995
- "attributes": [],
2996
- "references": [
2997
- {
2998
- "name": "Source code",
2999
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/skeleton/skeleton.tsx"
3000
- }
3001
- ]
3002
- },
3003
- {
3004
- "name": "road-spinner",
3005
- "description": {
3006
- "kind": "markdown",
3007
- "value": ""
3008
- },
3009
- "attributes": [
3010
- {
3011
- "name": "color",
3012
- "description": "The color spinner.",
3013
- "values": [
3014
- {
3015
- "name": "dark"
3016
- },
3017
- {
3018
- "name": "default"
3019
- },
3020
- {
3021
- "name": "light"
3022
- }
3023
- ]
3024
- },
3025
- {
3026
- "name": "size",
3027
- "description": "The button size.",
3028
- "values": [
3029
- {
3030
- "name": "large"
3031
- },
3032
- {
3033
- "name": "medium"
3034
- },
3035
- {
3036
- "name": "small"
3037
- },
3038
- {
3039
- "name": "xl"
3040
- }
3041
- ]
3042
- }
3043
- ],
3044
- "references": [
3045
- {
3046
- "name": "Source code",
3047
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/spinner/spinner.tsx"
3048
- }
3049
- ]
3050
- },
3051
- {
3052
- "name": "road-status-chip",
3053
- "description": {
3054
- "kind": "markdown",
3055
- "value": ""
3056
- },
3057
- "attributes": [
3058
- {
3059
- "name": "size",
3060
- "description": "The chip size.",
3061
- "values": [
3062
- {
3063
- "name": "lg"
3064
- },
3065
- {
3066
- "name": "md"
3067
- },
3068
- {
3069
- "name": "sm"
3070
- }
3071
- ]
3072
- }
3073
- ],
3074
- "references": [
3075
- {
3076
- "name": "Source code",
3077
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/status-chip/status-chip.tsx"
3078
- }
3079
- ]
3080
- },
3081
- {
3082
- "name": "road-switch",
3083
- "description": {
3084
- "kind": "markdown",
3085
- "value": ""
3086
- },
3087
- "attributes": [
3088
- {
3089
- "name": "checked",
3090
- "description": "If `true`, the switch is checked."
3091
- },
3092
- {
3093
- "name": "color",
3094
- "description": "Set the color of alert. e.g. info, success, warning, danger",
3095
- "values": [
3096
- {
3097
- "name": "danger"
3098
- },
3099
- {
3100
- "name": "info"
3101
- },
3102
- {
3103
- "name": "secondary"
3104
- },
3105
- {
3106
- "name": "success"
3107
- },
3108
- {
3109
- "name": "warning"
3110
- }
3111
- ]
3112
- },
3113
- {
3114
- "name": "disabled",
3115
- "description": "If `true`, the user cannot interact with the switch."
3116
- },
3117
- {
3118
- "name": "has-left-label",
3119
- "description": "If `true`, the label is at left of the switch"
3120
- },
3121
- {
3122
- "name": "is-spaced",
3123
- "description": "Add space between label and switch element"
3124
- },
3125
- {
3126
- "name": "label",
3127
- "description": "Label for the field"
3128
- },
3129
- {
3130
- "name": "name",
3131
- "description": "The name of the control, which is submitted with the form data."
3132
- },
3133
- {
3134
- "name": "off",
3135
- "description": "Text display for \"`off`\" state in the switch lever"
3136
- },
3137
- {
3138
- "name": "on",
3139
- "description": "Text display for \"`on`\" state in the switch lever"
3140
- },
3141
- {
3142
- "name": "switch-id",
3143
- "description": "The id of switch"
3144
- },
3145
- {
3146
- "name": "value",
3147
- "description": "Value the form will get"
3148
- }
3149
- ],
3150
- "references": [
3151
- {
3152
- "name": "Source code",
3153
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/switch/switch.tsx"
3154
- }
3155
- ]
3156
- },
3157
- {
3158
- "name": "road-tab",
3159
- "description": {
3160
- "kind": "markdown",
3161
- "value": ""
3162
- },
3163
- "attributes": [
3164
- {
3165
- "name": "tab",
3166
- "description": "A tab id must be provided for each `road-tab`. It's used internally to reference\nthe selected tab or by the router to switch between them."
3167
- }
3168
- ],
3169
- "references": [
3170
- {
3171
- "name": "Source code",
3172
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/tab/tab.tsx"
3173
- }
3174
- ]
3175
- },
3176
- {
3177
- "name": "road-tab-bar",
3178
- "description": {
3179
- "kind": "markdown",
3180
- "value": ""
3181
- },
3182
- "attributes": [
3183
- {
3184
- "name": "center",
3185
- "description": "Set to `true` to center buttons in the bar."
3186
- },
3187
- {
3188
- "name": "expand",
3189
- "description": "Set to `true` to expand buttons width to take the full size of the bar."
3190
- },
3191
- {
3192
- "name": "secondary",
3193
- "description": "The color to use the color Secondary from your application's color palette."
3194
- },
3195
- {
3196
- "name": "selected-tab",
3197
- "description": "The selected tab component"
3198
- }
3199
- ],
3200
- "references": [
3201
- {
3202
- "name": "Source code",
3203
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/tab-bar/tab-bar.tsx"
3204
- }
3205
- ]
3206
- },
3207
- {
3208
- "name": "road-tab-button",
3209
- "description": {
3210
- "kind": "markdown",
3211
- "value": ""
3212
- },
3213
- "attributes": [
3214
- {
3215
- "name": "disabled",
3216
- "description": "The disabled tab"
3217
- },
3218
- {
3219
- "name": "download",
3220
- "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
3221
- },
3222
- {
3223
- "name": "href",
3224
- "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
3225
- },
3226
- {
3227
- "name": "layout",
3228
- "description": "Set the layout of the text and icon in the tab bar.\nIt defaults to `'icon-start'`.",
3229
- "values": [
3230
- {
3231
- "name": "icon-start"
3232
- },
3233
- {
3234
- "name": "icon-top"
3235
- }
3236
- ]
3237
- },
3238
- {
3239
- "name": "rel",
3240
- "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
3241
- },
3242
- {
3243
- "name": "selected",
3244
- "description": "The selected tab component"
3245
- },
3246
- {
3247
- "name": "tab",
3248
- "description": "A tab id must be provided for each `road-tab`. It's used internally to reference"
3249
- },
3250
- {
3251
- "name": "target",
3252
- "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
3253
- }
3254
- ],
3255
- "references": [
3256
- {
3257
- "name": "Source code",
3258
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/tab-button/tab-button.tsx"
3259
- }
3260
- ]
3261
- },
3262
- {
3263
- "name": "road-table",
3264
- "description": {
3265
- "kind": "markdown",
3266
- "value": ""
3267
- },
3268
- "attributes": [],
3269
- "references": [
3270
- {
3271
- "name": "Source code",
3272
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/table/table.tsx"
3273
- }
3274
- ]
3275
- },
3276
- {
3277
- "name": "road-tabs",
3278
- "description": {
3279
- "kind": "markdown",
3280
- "value": ""
3281
- },
3282
- "attributes": [],
3283
- "references": [
3284
- {
3285
- "name": "Source code",
3286
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/tabs/tabs.tsx"
3287
- }
3288
- ]
3289
- },
3290
- {
3291
- "name": "road-tag",
3292
- "description": {
3293
- "kind": "markdown",
3294
- "value": ""
3295
- },
3296
- "attributes": [
3297
- {
3298
- "name": "color",
3299
- "description": "The color to use from your application's color palette.",
3300
- "values": [
3301
- {
3302
- "name": "blue"
3303
- },
3304
- {
3305
- "name": "green"
3306
- },
3307
- {
3308
- "name": "grey"
3309
- },
3310
- {
3311
- "name": "red"
3312
- },
3313
- {
3314
- "name": "violet"
3315
- },
3316
- {
3317
- "name": "yellow"
3318
- }
3319
- ]
3320
- },
3321
- {
3322
- "name": "contrast",
3323
- "description": "Set to `true` for a contrast tag, for example on a gryy surface"
3324
- }
3325
- ],
3326
- "references": [
3327
- {
3328
- "name": "Source code",
3329
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/tag/tag.tsx"
3330
- }
3331
- ]
3332
- },
3333
- {
3334
- "name": "road-text",
3335
- "description": {
3336
- "kind": "markdown",
3337
- "value": "The text component is a simple component that can be used to style the text color of any element. The `road-text` element should wrap the element in order to change the text color of that element."
3338
- },
3339
- "attributes": [
3340
- {
3341
- "name": "color",
3342
- "description": "Color of the text.",
3343
- "values": [
3344
- {
3345
- "name": "accent"
3346
- },
3347
- {
3348
- "name": "danger"
3349
- },
3350
- {
3351
- "name": "default"
3352
- },
3353
- {
3354
- "name": "default-second"
3355
- },
3356
- {
3357
- "name": "disabled"
3358
- },
3359
- {
3360
- "name": "info"
3361
- },
3362
- {
3363
- "name": "primary"
3364
- },
3365
- {
3366
- "name": "secondary"
3367
- },
3368
- {
3369
- "name": "success"
3370
- },
3371
- {
3372
- "name": "warning"
3373
- },
3374
- {
3375
- "name": "white"
3376
- }
3377
- ]
3378
- }
3379
- ],
3380
- "references": [
3381
- {
3382
- "name": "Source code",
3383
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/text/text.tsx"
3384
- }
3385
- ]
3386
- },
3387
- {
3388
- "name": "road-textarea",
3389
- "description": {
3390
- "kind": "markdown",
3391
- "value": ""
3392
- },
3393
- "attributes": [
3394
- {
3395
- "name": "autocapitalize",
3396
- "description": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user."
3397
- },
3398
- {
3399
- "name": "autofocus",
3400
- "description": "This Boolean attribute lets you specify that a form control should have focus when the page loads."
3401
- },
3402
- {
3403
- "name": "cols",
3404
- "description": "The visible width of the text control, in average character widths. If it is specified, it must be a positive integer."
3405
- },
3406
- {
3407
- "name": "disabled",
3408
- "description": "If `true`, the user cannot interact with the textarea."
3409
- },
3410
- {
3411
- "name": "enterkeyhint",
3412
- "description": "A hint to the browser for which enter key to display.\nPossible values: `\"enter\"`, `\"done\"`, `\"go\"`, `\"next\"`,\n`\"previous\"`, `\"search\"`, and `\"send\"`.",
3413
- "values": [
3414
- {
3415
- "name": "done"
3416
- },
3417
- {
3418
- "name": "enter"
3419
- },
3420
- {
3421
- "name": "go"
3422
- },
3423
- {
3424
- "name": "next"
3425
- },
3426
- {
3427
- "name": "previous"
3428
- },
3429
- {
3430
- "name": "search"
3431
- },
3432
- {
3433
- "name": "send"
3434
- }
3435
- ]
3436
- },
3437
- {
3438
- "name": "error",
3439
- "description": "Error message for the field"
3440
- },
3441
- {
3442
- "name": "helper",
3443
- "description": "Helper message for the field"
3444
- },
3445
- {
3446
- "name": "inputmode",
3447
- "description": "A hint to the browser for which keyboard to display.\nThis attribute applies when the value of the type attribute is `\"text\"`, `\"password\"`, `\"email\"`, or `\"url\"`. Possible values are: `\"verbatim\"`, `\"latin\"`, `\"latin-name\"`, `\"latin-prose\"`, `\"full-width-latin\"`, `\"kana\"`, `\"katakana\"`, `\"numeric\"`, `\"tel\"`, `\"email\"`, `\"url\"`.",
3448
- "values": [
3449
- {
3450
- "name": "decimal"
3451
- },
3452
- {
3453
- "name": "email"
3454
- },
3455
- {
3456
- "name": "none"
3457
- },
3458
- {
3459
- "name": "numeric"
3460
- },
3461
- {
3462
- "name": "search"
3463
- },
3464
- {
3465
- "name": "tel"
3466
- },
3467
- {
3468
- "name": "text"
3469
- },
3470
- {
3471
- "name": "url"
3472
- }
3473
- ]
3474
- },
3475
- {
3476
- "name": "label",
3477
- "description": "Label for the field"
3478
- },
3479
- {
3480
- "name": "maxlength",
3481
- "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the maximum number of characters that the user can enter."
3482
- },
3483
- {
3484
- "name": "minlength",
3485
- "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the minimum number of characters that the user can enter."
3486
- },
3487
- {
3488
- "name": "name",
3489
- "description": "The name of the control, which is submitted with the form data."
3490
- },
3491
- {
3492
- "name": "placeholder",
3493
- "description": "Instructional text that shows before the textarea has a value."
3494
- },
3495
- {
3496
- "name": "readonly",
3497
- "description": "If `true`, the user cannot modify the value."
3498
- },
3499
- {
3500
- "name": "required",
3501
- "description": "If `true`, the user must fill in a value before submitting a form."
3502
- },
3503
- {
3504
- "name": "resize",
3505
- "description": "If `false`, to disabled resize."
3506
- },
3507
- {
3508
- "name": "rows",
3509
- "description": "The number of rows of the control."
3510
- },
3511
- {
3512
- "name": "sizes",
3513
- "description": "The sizes of the input.",
3514
- "values": [
3515
- {
3516
- "name": "lg"
3517
- },
3518
- {
3519
- "name": "xl"
3520
- }
3521
- ]
3522
- },
3523
- {
3524
- "name": "spellcheck",
3525
- "description": "If `true`, the element will have its spelling and grammar checked."
3526
- },
3527
- {
3528
- "name": "textarea-id",
3529
- "description": "The id of textarea"
3530
- },
3531
- {
3532
- "name": "value",
3533
- "description": "The value of the textarea."
3534
- },
3535
- {
3536
- "name": "wrap",
3537
- "description": "Indicates how the control wraps text.",
3538
- "values": [
3539
- {
3540
- "name": "hard"
3541
- },
3542
- {
3543
- "name": "off"
3544
- },
3545
- {
3546
- "name": "soft"
3547
- }
3548
- ]
3549
- }
3550
- ],
3551
- "references": [
3552
- {
3553
- "name": "Source code",
3554
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/textarea/textarea.tsx"
3555
- }
3556
- ]
3557
- },
3558
- {
3559
- "name": "road-time-range-picker",
3560
- "description": {
3561
- "kind": "markdown",
3562
- "value": ""
3563
- },
3564
- "attributes": [
3565
- {
3566
- "name": "disabled",
3567
- "description": "Désactivation du picker"
3568
- },
3569
- {
3570
- "name": "end",
3571
- "description": "Heure de fin"
3572
- },
3573
- {
3574
- "name": "error",
3575
- "description": "Error messages"
3576
- },
3577
- {
3578
- "name": "helper",
3579
- "description": "Helper message"
3580
- },
3581
- {
3582
- "name": "label",
3583
- "description": "Label global du champ"
3584
- },
3585
- {
3586
- "name": "required",
3587
- "description": "Si `true`, l’utilisateur doit remplir avant submit"
3588
- },
3589
- {
3590
- "name": "separator",
3591
- "description": "Separator label"
3592
- },
3593
- {
3594
- "name": "sizes",
3595
- "description": "Taille du champ",
3596
- "values": [
3597
- {
3598
- "name": "lg"
3599
- },
3600
- {
3601
- "name": "xl"
3602
- }
3603
- ]
3604
- },
3605
- {
3606
- "name": "start",
3607
- "description": "Heure de début"
3608
- }
3609
- ],
3610
- "references": [
3611
- {
3612
- "name": "Source code",
3613
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/time-range-picker/time-range-picker.tsx"
3614
- }
3615
- ]
3616
- },
3617
- {
3618
- "name": "road-toast",
3619
- "description": {
3620
- "kind": "markdown",
3621
- "value": ""
3622
- },
3623
- "attributes": [
3624
- {
3625
- "name": "color",
3626
- "description": "Set the color of the toast. e.g. info, success, warning, danger",
3627
- "values": [
3628
- {
3629
- "name": "danger"
3630
- },
3631
- {
3632
- "name": "info"
3633
- },
3634
- {
3635
- "name": "success"
3636
- },
3637
- {
3638
- "name": "warning"
3639
- }
3640
- ]
3641
- },
3642
- {
3643
- "name": "is-open",
3644
- "description": "Set `open` propertie to `true` to open the toast"
3645
- },
3646
- {
3647
- "name": "label",
3648
- "description": "Text display in the toast"
3649
- },
3650
- {
3651
- "name": "timeout",
3652
- "description": "How many milliseconds to wait before hiding the toast. if `\"0\"`, it will show\nuntil `close()` is called."
3653
- }
3654
- ],
3655
- "references": [
3656
- {
3657
- "name": "Source code",
3658
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/toast/toast.tsx"
3659
- }
3660
- ]
3661
- },
3662
- {
3663
- "name": "road-toggle",
3664
- "description": {
3665
- "kind": "markdown",
3666
- "value": ""
3667
- },
3668
- "attributes": [
3669
- {
3670
- "name": "checked",
3671
- "description": "If `true`, the toggle is checked."
3672
- },
3673
- {
3674
- "name": "disabled",
3675
- "description": "If `true`, the user cannot interact with the toggle."
3676
- },
3677
- {
3678
- "name": "has-left-label",
3679
- "description": "If `true`, the label is at left of the toggle"
3680
- },
3681
- {
3682
- "name": "is-spaced",
3683
- "description": "Add space between label and toggle element"
3684
- },
3685
- {
3686
- "name": "label",
3687
- "description": "Label for the field"
3688
- },
3689
- {
3690
- "name": "name",
3691
- "description": "The name of the control, which is submitted with the form data."
3692
- },
3693
- {
3694
- "name": "toggle-id",
3695
- "description": "The id of toggle"
3696
- },
3697
- {
3698
- "name": "value",
3699
- "description": "Value the form will get"
3700
- }
3701
- ],
3702
- "references": [
3703
- {
3704
- "name": "Source code",
3705
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/toggle/toggle.tsx"
3706
- }
3707
- ]
3708
- },
3709
- {
3710
- "name": "road-toolbar",
3711
- "description": {
3712
- "kind": "markdown",
3713
- "value": ""
3714
- },
3715
- "attributes": [
3716
- {
3717
- "name": "color",
3718
- "description": "Background color of the toolbar",
3719
- "values": [
3720
- {
3721
- "name": "primary"
3722
- },
3723
- {
3724
- "name": "secondary"
3725
- }
3726
- ]
3727
- }
3728
- ],
3729
- "references": [
3730
- {
3731
- "name": "Source code",
3732
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/toolbar/toolbar.tsx"
3733
- }
3734
- ]
3735
- },
3736
- {
3737
- "name": "road-toolbar-title",
3738
- "description": {
3739
- "kind": "markdown",
3740
- "value": "`road-title` is a component that sets the title of the `Toolbar`."
3741
- },
3742
- "attributes": [],
3743
- "references": [
3744
- {
3745
- "name": "Source code",
3746
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/toolbar-title/toolbar-title.tsx"
3747
- }
3748
- ]
3749
- },
3750
- {
3751
- "name": "road-toolbar-title-page",
3752
- "description": {
3753
- "kind": "markdown",
3754
- "value": "`road-title` is a component that sets the title of the `Toolbar`."
3755
- },
3756
- "attributes": [],
3757
- "references": [
3758
- {
3759
- "name": "Source code",
3760
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/toolbar-title-page/toolbar-title-page.tsx"
3761
- }
3762
- ]
3763
- },
3764
- {
3765
- "name": "road-toolbar-v2",
3766
- "description": {
3767
- "kind": "markdown",
3768
- "value": ""
3769
- },
3770
- "attributes": [],
3771
- "references": [
3772
- {
3773
- "name": "Source code",
3774
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/toolbar-v2/toolbar-v2.tsx"
3775
- }
3776
- ]
3777
- },
3778
- {
3779
- "name": "road-tooltip",
3780
- "description": {
3781
- "kind": "markdown",
3782
- "value": ""
3783
- },
3784
- "attributes": [
3785
- {
3786
- "name": "content",
3787
- "description": "The tooltip's content."
3788
- },
3789
- {
3790
- "name": "content-align",
3791
- "description": "The content align of the tooltip.",
3792
- "values": [
3793
- {
3794
- "name": "center"
3795
- },
3796
- {
3797
- "name": "left"
3798
- }
3799
- ]
3800
- },
3801
- {
3802
- "name": "is-open",
3803
- "description": "Indicates whether or not the tooltip is open. You can use this or the open/close methods."
3804
- },
3805
- {
3806
- "name": "position",
3807
- "description": "The position of the tooltip.",
3808
- "values": [
3809
- {
3810
- "name": "bottom"
3811
- },
3812
- {
3813
- "name": "bottom-end"
3814
- },
3815
- {
3816
- "name": "bottom-left"
3817
- },
3818
- {
3819
- "name": "bottom-right"
3820
- },
3821
- {
3822
- "name": "bottom-start"
3823
- },
3824
- {
3825
- "name": "left"
3826
- },
3827
- {
3828
- "name": "right"
3829
- },
3830
- {
3831
- "name": "top"
3832
- },
3833
- {
3834
- "name": "top-end"
3835
- },
3836
- {
3837
- "name": "top-left"
3838
- },
3839
- {
3840
- "name": "top-right"
3841
- },
3842
- {
3843
- "name": "top-start"
3844
- }
3845
- ]
3846
- },
3847
- {
3848
- "name": "tooltip-id",
3849
- "description": "The id of tooltip"
3850
- },
3851
- {
3852
- "name": "trigger",
3853
- "description": "Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically."
3854
- }
3855
- ],
3856
- "references": [
3857
- {
3858
- "name": "Source code",
3859
- "url": "https:/gitlab.com/mobivia/driverservices/experience-platform/roadtrip/components/-/blob/master/src/components/tooltip/tooltip.tsx"
3860
- }
3861
- ]
3862
- }
3863
- ]
3864
- }