@telus-uds/components-web 2.9.0 → 2.10.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.
Files changed (57) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/component-docs.json +82 -81
  3. package/lib/BlockQuote/BlockQuote.js +49 -4
  4. package/lib/Callout/Callout.js +12 -0
  5. package/lib/DatePicker/CalendarContainer.js +24 -0
  6. package/lib/DatePicker/DatePicker.js +8 -2
  7. package/lib/Disclaimer/Disclaimer.js +0 -4
  8. package/lib/ExpandCollapseMini/ExpandCollapseMini.js +4 -0
  9. package/lib/ExpandCollapseMini/ExpandCollapseMiniControl.js +16 -0
  10. package/lib/IconButton/IconButton.js +8 -0
  11. package/lib/Listbox/Listbox.js +8 -0
  12. package/lib/NavigationBar/NavigationBar.js +4 -0
  13. package/lib/OrderedList/Item.js +4 -0
  14. package/lib/Paragraph/Paragraph.js +4 -0
  15. package/lib/PreviewCard/AuthorDate.js +7 -0
  16. package/lib/PriceLockup/PriceLockup.js +48 -0
  17. package/lib/QuantitySelector/QuantitySelector.js +51 -0
  18. package/lib/Span/Span.js +4 -0
  19. package/lib/Table/Table.js +4 -0
  20. package/lib/Toast/Toast.js +16 -0
  21. package/lib-module/BlockQuote/BlockQuote.js +50 -5
  22. package/lib-module/Callout/Callout.js +12 -0
  23. package/lib-module/DatePicker/CalendarContainer.js +24 -0
  24. package/lib-module/DatePicker/DatePicker.js +8 -2
  25. package/lib-module/Disclaimer/Disclaimer.js +0 -4
  26. package/lib-module/ExpandCollapseMini/ExpandCollapseMini.js +4 -0
  27. package/lib-module/ExpandCollapseMini/ExpandCollapseMiniControl.js +16 -0
  28. package/lib-module/IconButton/IconButton.js +8 -0
  29. package/lib-module/Listbox/Listbox.js +8 -0
  30. package/lib-module/NavigationBar/NavigationBar.js +4 -0
  31. package/lib-module/OrderedList/Item.js +4 -0
  32. package/lib-module/Paragraph/Paragraph.js +4 -0
  33. package/lib-module/PreviewCard/AuthorDate.js +7 -0
  34. package/lib-module/PriceLockup/PriceLockup.js +48 -0
  35. package/lib-module/QuantitySelector/QuantitySelector.js +51 -0
  36. package/lib-module/Span/Span.js +4 -0
  37. package/lib-module/Table/Table.js +4 -0
  38. package/lib-module/Toast/Toast.js +16 -0
  39. package/package.json +3 -3
  40. package/src/BlockQuote/BlockQuote.jsx +53 -6
  41. package/src/Callout/Callout.jsx +9 -0
  42. package/src/DatePicker/CalendarContainer.jsx +24 -0
  43. package/src/DatePicker/DatePicker.jsx +8 -2
  44. package/src/Disclaimer/Disclaimer.jsx +0 -3
  45. package/src/ExpandCollapseMini/ExpandCollapseMini.jsx +3 -0
  46. package/src/ExpandCollapseMini/ExpandCollapseMiniControl.jsx +12 -0
  47. package/src/IconButton/IconButton.jsx +6 -0
  48. package/src/Listbox/Listbox.jsx +6 -0
  49. package/src/NavigationBar/NavigationBar.jsx +3 -0
  50. package/src/OrderedList/Item.jsx +3 -0
  51. package/src/Paragraph/Paragraph.jsx +3 -0
  52. package/src/PreviewCard/AuthorDate.jsx +6 -0
  53. package/src/PriceLockup/PriceLockup.jsx +37 -0
  54. package/src/QuantitySelector/QuantitySelector.jsx +39 -0
  55. package/src/Span/Span.jsx +3 -0
  56. package/src/Table/Table.jsx +3 -0
  57. package/src/Toast/Toast.jsx +12 -0
@@ -240,7 +240,7 @@
240
240
  ]
241
241
  },
242
242
  "required": false,
243
- "description": ""
243
+ "description": "Whether to render BlockQuote as a heading size of `h3` or large text size"
244
244
  },
245
245
  "children": {
246
246
  "type": {
@@ -254,21 +254,21 @@
254
254
  "name": "string"
255
255
  },
256
256
  "required": false,
257
- "description": ""
257
+ "description": "External source's identifier (e.g. author's name)"
258
258
  },
259
259
  "linkHref": {
260
260
  "type": {
261
261
  "name": "string"
262
262
  },
263
263
  "required": false,
264
- "description": ""
264
+ "description": "External source's URL"
265
265
  },
266
266
  "additionalInfo": {
267
267
  "type": {
268
268
  "name": "string"
269
269
  },
270
270
  "required": false,
271
- "description": ""
271
+ "description": "To provide additional information about the source, rendered underneath `link`"
272
272
  }
273
273
  },
274
274
  "attributes": {}
@@ -400,7 +400,7 @@
400
400
  "name": "elementType"
401
401
  },
402
402
  "required": false,
403
- "description": ""
403
+ "description": "Icon to display on the left side of the Callout"
404
404
  },
405
405
  "children": {
406
406
  "type": {
@@ -424,7 +424,7 @@
424
424
  ]
425
425
  },
426
426
  "required": false,
427
- "description": ""
427
+ "description": "To change the horizontal alignment of the Callout's text"
428
428
  },
429
429
  "verticalAlign": {
430
430
  "type": {
@@ -445,7 +445,7 @@
445
445
  ]
446
446
  },
447
447
  "required": false,
448
- "description": ""
448
+ "description": "To change the vertical alignment of the Callout's icon"
449
449
  }
450
450
  },
451
451
  "attributes": {}
@@ -813,7 +813,7 @@
813
813
  "name": "node"
814
814
  },
815
815
  "required": true,
816
- "description": "The content"
816
+ "description": ""
817
817
  }
818
818
  },
819
819
  "attributes": {}
@@ -832,35 +832,35 @@
832
832
  "name": "func"
833
833
  },
834
834
  "required": false,
835
- "description": ""
835
+ "description": "Function to call on pressing the panel's control, which should open or close the panel."
836
836
  },
837
837
  "onPress": {
838
838
  "type": {
839
839
  "name": "func"
840
840
  },
841
841
  "required": false,
842
- "description": ""
842
+ "description": "Optional function to call on pressing the panel's control, in addition to opening or closing the panel"
843
843
  },
844
844
  "expandTitle": {
845
845
  "type": {
846
846
  "name": "string"
847
847
  },
848
848
  "required": true,
849
- "description": ""
849
+ "description": "ExpandCollapseMiniControl title when expanded"
850
850
  },
851
851
  "collapseTitle": {
852
852
  "type": {
853
853
  "name": "string"
854
854
  },
855
855
  "required": true,
856
- "description": ""
856
+ "description": "ExpandCollapseMiniControl title when collapsed"
857
857
  },
858
858
  "pressableState": {
859
859
  "type": {
860
860
  "name": "object"
861
861
  },
862
862
  "required": false,
863
- "description": ""
863
+ "description": "React Native's `Pressable`'s state object"
864
864
  },
865
865
  "variant": {
866
866
  "type": {
@@ -1107,7 +1107,7 @@
1107
1107
  "name": "func"
1108
1108
  },
1109
1109
  "required": false,
1110
- "description": ""
1110
+ "description": "To set a custom icon"
1111
1111
  },
1112
1112
  "action": {
1113
1113
  "type": {
@@ -1152,7 +1152,7 @@
1152
1152
  ]
1153
1153
  },
1154
1154
  "required": false,
1155
- "description": ""
1155
+ "description": "To set the icon to a multi-brand compatabile icon"
1156
1156
  }
1157
1157
  },
1158
1158
  "attributes": {}
@@ -1349,7 +1349,7 @@
1349
1349
  "name": "array"
1350
1350
  },
1351
1351
  "required": false,
1352
- "description": ""
1352
+ "description": "`Listbox` items"
1353
1353
  },
1354
1354
  "firstItemRef": {
1355
1355
  "defaultValue": {
@@ -1378,7 +1378,7 @@
1378
1378
  "name": "string"
1379
1379
  },
1380
1380
  "required": false,
1381
- "description": ""
1381
+ "description": "To select an item by default"
1382
1382
  }
1383
1383
  },
1384
1384
  "attributes": {}
@@ -1657,7 +1657,7 @@
1657
1657
  ]
1658
1658
  },
1659
1659
  "required": false,
1660
- "description": ""
1660
+ "description": "Sets the `headingLevel` of the `heading`"
1661
1661
  },
1662
1662
  "onChange": {
1663
1663
  "defaultValue": {
@@ -1946,7 +1946,7 @@
1946
1946
  "name": "string"
1947
1947
  },
1948
1948
  "required": false,
1949
- "description": ""
1949
+ "description": "Defines the title of the `OrderedList.Item`"
1950
1950
  },
1951
1951
  "tokens": {
1952
1952
  "defaultValue": {
@@ -2017,7 +2017,7 @@
2017
2017
  "name": "string"
2018
2018
  },
2019
2019
  "required": false,
2020
- "description": ""
2020
+ "description": "Adds a `data-testid` attribute to the element for testing purposes"
2021
2021
  },
2022
2022
  "align": {
2023
2023
  "type": {
@@ -2199,14 +2199,14 @@
2199
2199
  "name": "string"
2200
2200
  },
2201
2201
  "required": true,
2202
- "description": ""
2202
+ "description": "Name of the author"
2203
2203
  },
2204
2204
  "date": {
2205
2205
  "type": {
2206
2206
  "name": "string"
2207
2207
  },
2208
2208
  "required": true,
2209
- "description": ""
2209
+ "description": "Date of the post"
2210
2210
  }
2211
2211
  },
2212
2212
  "attributes": {}
@@ -2240,7 +2240,7 @@
2240
2240
  ]
2241
2241
  },
2242
2242
  "required": false,
2243
- "description": ""
2243
+ "description": "Size of the component\n\nSmall for pricing in product catalogue pages, medium for pricing in product comparison cards and large for pricing in banners and promo cards"
2244
2244
  },
2245
2245
  "signDirection": {
2246
2246
  "defaultValue": {
@@ -2261,7 +2261,7 @@
2261
2261
  ]
2262
2262
  },
2263
2263
  "required": false,
2264
- "description": ""
2264
+ "description": "Displays which side the currency should apperar (left, right)"
2265
2265
  },
2266
2266
  "footnoteLinks": {
2267
2267
  "defaultValue": {
@@ -2283,7 +2283,7 @@
2283
2283
  }
2284
2284
  },
2285
2285
  "required": false,
2286
- "description": ""
2286
+ "description": "Shows additional link for context"
2287
2287
  },
2288
2288
  "currencySymbol": {
2289
2289
  "defaultValue": {
@@ -2294,7 +2294,7 @@
2294
2294
  "name": "string"
2295
2295
  },
2296
2296
  "required": false,
2297
- "description": ""
2297
+ "description": "If currency symbol other than `$` to be used"
2298
2298
  },
2299
2299
  "variant": {
2300
2300
  "defaultValue": {
@@ -2308,49 +2308,49 @@
2308
2308
  "name": "string"
2309
2309
  },
2310
2310
  "required": false,
2311
- "description": ""
2311
+ "description": "Shows additional info above the price"
2312
2312
  },
2313
2313
  "price": {
2314
2314
  "type": {
2315
2315
  "name": "string"
2316
2316
  },
2317
2317
  "required": true,
2318
- "description": ""
2318
+ "description": "Monetary value (including decimals separated by \".\")"
2319
2319
  },
2320
2320
  "rateText": {
2321
2321
  "type": {
2322
2322
  "name": "string"
2323
2323
  },
2324
2324
  "required": false,
2325
- "description": ""
2325
+ "description": "Shows month/year unit"
2326
2326
  },
2327
2327
  "bottomText": {
2328
2328
  "type": {
2329
2329
  "name": "string"
2330
2330
  },
2331
2331
  "required": false,
2332
- "description": ""
2332
+ "description": "Shows additional info below the price with a `Divider`"
2333
2333
  },
2334
2334
  "onClickFootnote": {
2335
2335
  "type": {
2336
2336
  "name": "func"
2337
2337
  },
2338
2338
  "required": false,
2339
- "description": ""
2339
+ "description": "Function to be called when a footnote link is clicked"
2340
2340
  },
2341
2341
  "strikeThrough": {
2342
2342
  "type": {
2343
2343
  "name": "bool"
2344
2344
  },
2345
2345
  "required": false,
2346
- "description": ""
2346
+ "description": "To show price savings comparison"
2347
2347
  },
2348
2348
  "a11yText": {
2349
2349
  "type": {
2350
2350
  "name": "string"
2351
2351
  },
2352
2352
  "required": false,
2353
- "description": ""
2353
+ "description": "To provide a11y text for `PriceLockup` component\n\n**Note:** a11yText will override strikethrough price, so it must include price (ie. \"was 50 dollars per month\")"
2354
2354
  }
2355
2355
  },
2356
2356
  "attributes": {}
@@ -2470,7 +2470,7 @@
2470
2470
  }
2471
2471
  },
2472
2472
  "required": false,
2473
- "description": ""
2473
+ "description": "The dictionary object containing the content for the input field"
2474
2474
  },
2475
2475
  "id": {
2476
2476
  "defaultValue": {
@@ -2481,7 +2481,7 @@
2481
2481
  "name": "string"
2482
2482
  },
2483
2483
  "required": false,
2484
- "description": ""
2484
+ "description": "The id of the input field"
2485
2485
  },
2486
2486
  "hintPosition": {
2487
2487
  "defaultValue": {
@@ -2502,7 +2502,7 @@
2502
2502
  ]
2503
2503
  },
2504
2504
  "required": false,
2505
- "description": ""
2505
+ "description": "The position of the hint. Could be shown along side the label or below it"
2506
2506
  },
2507
2507
  "copy": {
2508
2508
  "defaultValue": {
@@ -2528,7 +2528,7 @@
2528
2528
  ]
2529
2529
  },
2530
2530
  "required": false,
2531
- "description": ""
2531
+ "description": "The language to use for the copy."
2532
2532
  },
2533
2533
  "variant": {
2534
2534
  "defaultValue": {
@@ -2556,63 +2556,63 @@
2556
2556
  "name": "string"
2557
2557
  },
2558
2558
  "required": false,
2559
- "description": ""
2559
+ "description": "Sets `data-testid` attribute on the input field for testing purposes."
2560
2560
  },
2561
2561
  "minNumber": {
2562
2562
  "type": {
2563
2563
  "name": "number"
2564
2564
  },
2565
2565
  "required": false,
2566
- "description": ""
2566
+ "description": "The minimum number allowed"
2567
2567
  },
2568
2568
  "maxNumber": {
2569
2569
  "type": {
2570
2570
  "name": "number"
2571
2571
  },
2572
2572
  "required": false,
2573
- "description": ""
2573
+ "description": "The maximum number allowed"
2574
2574
  },
2575
2575
  "onChange": {
2576
2576
  "type": {
2577
2577
  "name": "func"
2578
2578
  },
2579
2579
  "required": false,
2580
- "description": ""
2580
+ "description": "The callback function that is called when the value of the input field changes"
2581
2581
  },
2582
2582
  "defaultValue": {
2583
2583
  "type": {
2584
2584
  "name": "number"
2585
2585
  },
2586
2586
  "required": false,
2587
- "description": ""
2587
+ "description": "The default value of the input field"
2588
2588
  },
2589
2589
  "label": {
2590
2590
  "type": {
2591
2591
  "name": "string"
2592
2592
  },
2593
2593
  "required": false,
2594
- "description": ""
2594
+ "description": "The label of the input field"
2595
2595
  },
2596
2596
  "hint": {
2597
2597
  "type": {
2598
2598
  "name": "string"
2599
2599
  },
2600
2600
  "required": false,
2601
- "description": ""
2601
+ "description": "The hint of the input field"
2602
2602
  },
2603
2603
  "tooltip": {
2604
2604
  "type": {
2605
2605
  "name": "string"
2606
2606
  },
2607
2607
  "required": false,
2608
- "description": ""
2608
+ "description": "Adds a question mark which will display a tooltip when clicked"
2609
2609
  },
2610
2610
  "accessibilityLabel": {
2611
2611
  "type": {
2612
2612
  "name": "string"
2613
2613
  },
2614
2614
  "required": false,
2615
- "description": ""
2615
+ "description": "The accessibility label of the input field"
2616
2616
  },
2617
2617
  "tokens": {
2618
2618
  "type": {
@@ -2809,7 +2809,7 @@
2809
2809
  "name": "string"
2810
2810
  },
2811
2811
  "required": false,
2812
- "description": ""
2812
+ "description": "Adds `data-testid` attribute for testing"
2813
2813
  },
2814
2814
  "flex": {
2815
2815
  "type": {
@@ -3124,7 +3124,7 @@
3124
3124
  ]
3125
3125
  },
3126
3126
  "required": false,
3127
- "description": ""
3127
+ "description": "Sets text style"
3128
3128
  },
3129
3129
  "children": {
3130
3130
  "type": {
@@ -3474,21 +3474,21 @@
3474
3474
  "name": "bool"
3475
3475
  },
3476
3476
  "required": false,
3477
- "description": ""
3477
+ "description": "If true, the toast will be displayed"
3478
3478
  },
3479
3479
  "copy": {
3480
3480
  "type": {
3481
3481
  "name": "string"
3482
3482
  },
3483
3483
  "required": true,
3484
- "description": ""
3484
+ "description": "The copy to display in the toast"
3485
3485
  },
3486
3486
  "headline": {
3487
3487
  "type": {
3488
3488
  "name": "string"
3489
3489
  },
3490
3490
  "required": false,
3491
- "description": ""
3491
+ "description": "The headline to display in the toast (before copy)"
3492
3492
  },
3493
3493
  "link": {
3494
3494
  "type": {
@@ -3515,7 +3515,7 @@
3515
3515
  }
3516
3516
  },
3517
3517
  "required": false,
3518
- "description": ""
3518
+ "description": "The link to display in the toast (after copy)"
3519
3519
  }
3520
3520
  },
3521
3521
  "attributes": {}
@@ -3988,14 +3988,14 @@
3988
3988
  "name": "string"
3989
3989
  },
3990
3990
  "required": true,
3991
- "description": ""
3991
+ "description": "Text to be read by screen readers"
3992
3992
  },
3993
3993
  "heading": {
3994
3994
  "type": {
3995
3995
  "name": "bool"
3996
3996
  },
3997
3997
  "required": false,
3998
- "description": ""
3998
+ "description": "Whether text should be rendered as a heading"
3999
3999
  }
4000
4000
  },
4001
4001
  "attributes": {
@@ -6629,7 +6629,7 @@
6629
6629
  ]
6630
6630
  },
6631
6631
  "required": false,
6632
- "description": ""
6632
+ "description": "Changes direction of chevron icon"
6633
6633
  },
6634
6634
  "tokens": {
6635
6635
  "defaultValue": {
@@ -6713,7 +6713,7 @@
6713
6713
  ]
6714
6714
  },
6715
6715
  "required": false,
6716
- "description": ""
6716
+ "description": "A number referring to a position on the space scale to create space on either side of the divider"
6717
6717
  },
6718
6718
  "variant": {
6719
6719
  "type": {
@@ -8768,7 +8768,7 @@
8768
8768
  ]
8769
8769
  },
8770
8770
  "required": false,
8771
- "description": ""
8771
+ "description": "To change the language for labels"
8772
8772
  },
8773
8773
  "LinkRouter": {
8774
8774
  "type": {
@@ -8859,7 +8859,7 @@
8859
8859
  }
8860
8860
  },
8861
8861
  "required": false,
8862
- "description": ""
8862
+ "description": "When passed as `{{ compact: true }}`, `Pagination` does not render labels along side buttons"
8863
8863
  },
8864
8864
  "sideButtonTokens": {
8865
8865
  "type": {
@@ -8894,7 +8894,7 @@
8894
8894
  }
8895
8895
  },
8896
8896
  "required": false,
8897
- "description": ""
8897
+ "description": "Custom tokens for `PaginationSideButton`"
8898
8898
  }
8899
8899
  },
8900
8900
  "attributes": {
@@ -8984,14 +8984,14 @@
8984
8984
  "name": "string"
8985
8985
  },
8986
8986
  "required": false,
8987
- "description": ""
8987
+ "description": "To set custom label for the button"
8988
8988
  },
8989
8989
  "isActive": {
8990
8990
  "type": {
8991
8991
  "name": "bool"
8992
8992
  },
8993
8993
  "required": false,
8994
- "description": ""
8994
+ "description": "To set `PageButton` to active state"
8995
8995
  },
8996
8996
  "copy": {
8997
8997
  "type": {
@@ -9008,7 +9008,7 @@
9008
9008
  ]
9009
9009
  },
9010
9010
  "required": false,
9011
- "description": ""
9011
+ "description": "To change the language for labels"
9012
9012
  },
9013
9013
  "variant": {
9014
9014
  "type": {
@@ -9083,7 +9083,7 @@
9083
9083
  "name": "string"
9084
9084
  },
9085
9085
  "required": false,
9086
- "description": ""
9086
+ "description": "The HTML tag to render the list as"
9087
9087
  },
9088
9088
  "tokens": {
9089
9089
  "type": {
@@ -9122,7 +9122,7 @@
9122
9122
  }
9123
9123
  },
9124
9124
  "required": false,
9125
- "description": ""
9125
+ "description": "Custom tokens override for `Card`"
9126
9126
  },
9127
9127
  "listTokens": {
9128
9128
  "type": {
@@ -9154,7 +9154,7 @@
9154
9154
  }
9155
9155
  },
9156
9156
  "required": false,
9157
- "description": ""
9157
+ "description": "Custom tokens override for `QuickLinksList`"
9158
9158
  },
9159
9159
  "variant": {
9160
9160
  "type": {
@@ -10329,7 +10329,7 @@
10329
10329
  ]
10330
10330
  },
10331
10331
  "required": false,
10332
- "description": ""
10332
+ "description": "To hide children of `Responsive` if the current viewport is smaller than `min`"
10333
10333
  },
10334
10334
  "max": {
10335
10335
  "type": {
@@ -10354,7 +10354,7 @@
10354
10354
  ]
10355
10355
  },
10356
10356
  "required": false,
10357
- "description": ""
10357
+ "description": "To hide children of `Responsive` if the current viewport is larger than `max`"
10358
10358
  },
10359
10359
  "children": {
10360
10360
  "type": {
@@ -10665,7 +10665,7 @@
10665
10665
  "name": "string"
10666
10666
  },
10667
10667
  "required": true,
10668
- "description": ""
10668
+ "description": "The label for the group."
10669
10669
  }
10670
10670
  },
10671
10671
  "attributes": {
@@ -10689,7 +10689,7 @@
10689
10689
  "name": "string"
10690
10690
  },
10691
10691
  "required": true,
10692
- "description": ""
10692
+ "description": "The value of the option"
10693
10693
  }
10694
10694
  },
10695
10695
  "attributes": {
@@ -10783,7 +10783,7 @@
10783
10783
  }
10784
10784
  },
10785
10785
  "required": false,
10786
- "description": ""
10786
+ "description": "Custom tokens for `SideNav.Item`"
10787
10787
  },
10788
10788
  "groupTokens": {
10789
10789
  "type": {
@@ -10805,7 +10805,7 @@
10805
10805
  }
10806
10806
  },
10807
10807
  "required": false,
10808
- "description": ""
10808
+ "description": "Custom tokens for `SideNavItemsGroup`"
10809
10809
  }
10810
10810
  },
10811
10811
  "attributes": {
@@ -11024,7 +11024,7 @@
11024
11024
  }
11025
11025
  },
11026
11026
  "required": false,
11027
- "description": ""
11027
+ "description": "Custom tokens for `SideNav.Item`"
11028
11028
  }
11029
11029
  },
11030
11030
  "attributes": {
@@ -11371,6 +11371,7 @@
11371
11371
  "space": {
11372
11372
  "name": "custom",
11373
11373
  "raw": "spacingProps.types.spacingValue",
11374
+ "description": "A number referring to a position on the space scale to create space on either side of the divider",
11374
11375
  "required": false
11375
11376
  },
11376
11377
  "variant": {
@@ -11658,7 +11659,7 @@
11658
11659
  "name": "number"
11659
11660
  },
11660
11661
  "required": false,
11661
- "description": ""
11662
+ "description": "The current step, 0-based number"
11662
11663
  },
11663
11664
  "copy": {
11664
11665
  "defaultValue": {
@@ -11688,7 +11689,7 @@
11688
11689
  ]
11689
11690
  },
11690
11691
  "required": false,
11691
- "description": ""
11692
+ "description": "The language to use for the labels"
11692
11693
  },
11693
11694
  "dictionary": {
11694
11695
  "defaultValue": {
@@ -11711,7 +11712,7 @@
11711
11712
  }
11712
11713
  },
11713
11714
  "required": false,
11714
- "description": ""
11715
+ "description": "Custom dictionary containing the labels to use for the steps"
11715
11716
  },
11716
11717
  "steps": {
11717
11718
  "defaultValue": {
@@ -11725,7 +11726,7 @@
11725
11726
  }
11726
11727
  },
11727
11728
  "required": false,
11728
- "description": ""
11729
+ "description": "An array of strings defining the step titles"
11729
11730
  },
11730
11731
  "tokens": {
11731
11732
  "type": {
@@ -11847,14 +11848,14 @@
11847
11848
  }
11848
11849
  },
11849
11850
  "required": false,
11850
- "description": ""
11851
+ "description": "Array of `TabsItem`s"
11851
11852
  },
11852
11853
  "value": {
11853
11854
  "type": {
11854
11855
  "name": "string"
11855
11856
  },
11856
11857
  "required": false,
11857
- "description": ""
11858
+ "description": "`id` property of the current tab in the items array"
11858
11859
  },
11859
11860
  "initialValue": {
11860
11861
  "type": {
@@ -11868,7 +11869,7 @@
11868
11869
  "name": "func"
11869
11870
  },
11870
11871
  "required": false,
11871
- "description": ""
11872
+ "description": "Callback for when the selected tab changes"
11872
11873
  },
11873
11874
  "tokens": {
11874
11875
  "type": {
@@ -11915,7 +11916,7 @@
11915
11916
  }
11916
11917
  },
11917
11918
  "required": false,
11918
- "description": ""
11919
+ "description": "Custom tokens for `TabsItem`"
11919
11920
  },
11920
11921
  "scrollButtonTokens": {
11921
11922
  "type": {
@@ -11938,7 +11939,7 @@
11938
11939
  }
11939
11940
  },
11940
11941
  "required": false,
11941
- "description": ""
11942
+ "description": "Custom tokens for `HorizontalScrollButton`"
11942
11943
  },
11943
11944
  "variant": {
11944
11945
  "type": {