@telus-uds/components-web 2.17.2 → 2.18.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 (46) hide show
  1. package/CHANGELOG.md +18 -2
  2. package/component-docs.json +534 -11
  3. package/lib/Autocomplete/Autocomplete.js +24 -1
  4. package/lib/Badge/Badge.js +2 -2
  5. package/lib/BlockQuote/BlockQuote.js +9 -0
  6. package/lib/Callout/Callout.js +5 -0
  7. package/lib/DatePicker/DatePicker.js +24 -4
  8. package/lib/Disclaimer/Disclaimer.js +4 -0
  9. package/lib/ExpandCollapseMini/ExpandCollapseMini.js +7 -1
  10. package/lib/Listbox/Listbox.js +7 -1
  11. package/lib/NavigationBar/NavigationBar.js +8 -2
  12. package/lib/OrderedList/OrderedList.js +4 -2
  13. package/lib/Ribbon/Ribbon.js +2 -1
  14. package/lib/Toast/Toast.js +2 -1
  15. package/lib/Video/Video.js +3 -1
  16. package/lib/WaffleGrid/WaffleGrid.js +20 -20
  17. package/lib-module/Autocomplete/Autocomplete.js +24 -1
  18. package/lib-module/Badge/Badge.js +1 -1
  19. package/lib-module/BlockQuote/BlockQuote.js +10 -1
  20. package/lib-module/Callout/Callout.js +6 -1
  21. package/lib-module/DatePicker/DatePicker.js +24 -4
  22. package/lib-module/Disclaimer/Disclaimer.js +4 -0
  23. package/lib-module/ExpandCollapseMini/ExpandCollapseMini.js +8 -2
  24. package/lib-module/Listbox/Listbox.js +8 -2
  25. package/lib-module/NavigationBar/NavigationBar.js +8 -2
  26. package/lib-module/OrderedList/OrderedList.js +5 -3
  27. package/lib-module/Ribbon/Ribbon.js +3 -2
  28. package/lib-module/Toast/Toast.js +3 -2
  29. package/lib-module/Video/Video.js +4 -2
  30. package/lib-module/WaffleGrid/WaffleGrid.js +21 -21
  31. package/package.json +3 -3
  32. package/src/Autocomplete/Autocomplete.jsx +19 -1
  33. package/src/Badge/Badge.jsx +1 -1
  34. package/src/BlockQuote/BlockQuote.jsx +10 -1
  35. package/src/Callout/Callout.jsx +11 -1
  36. package/src/DatePicker/DatePicker.jsx +20 -2
  37. package/src/Disclaimer/Disclaimer.jsx +3 -0
  38. package/src/ExpandCollapseMini/ExpandCollapseMini.jsx +7 -2
  39. package/src/Listbox/Listbox.jsx +8 -2
  40. package/src/NavigationBar/NavigationBar.jsx +7 -2
  41. package/src/OrderedList/OrderedList.jsx +4 -3
  42. package/src/Ribbon/Ribbon.jsx +8 -2
  43. package/src/Toast/Toast.jsx +4 -2
  44. package/src/Video/Video.jsx +9 -2
  45. package/src/WaffleGrid/WaffleGrid.jsx +21 -15
  46. package/types/Callout.d.ts +1 -0
@@ -141,6 +141,57 @@
141
141
  },
142
142
  "required": false,
143
143
  "description": "Input value for controlled usage"
144
+ },
145
+ "initialItems": {
146
+ "type": {
147
+ "name": "arrayOf",
148
+ "value": {
149
+ "name": "shape",
150
+ "value": {
151
+ "id": {
152
+ "name": "string",
153
+ "required": false
154
+ },
155
+ "label": {
156
+ "name": "string",
157
+ "required": false
158
+ }
159
+ }
160
+ }
161
+ },
162
+ "required": false,
163
+ "description": "Can be used to set the initial items of the component"
164
+ },
165
+ "initialValue": {
166
+ "type": {
167
+ "name": "string"
168
+ },
169
+ "required": false,
170
+ "description": "Initial value for the component"
171
+ },
172
+ "readOnly": {
173
+ "type": {
174
+ "name": "bool"
175
+ },
176
+ "required": false,
177
+ "description": "Boolean to set if it's readonly or not"
178
+ },
179
+ "validation": {
180
+ "type": {
181
+ "name": "enum",
182
+ "value": [
183
+ {
184
+ "value": "'error'",
185
+ "computed": false
186
+ },
187
+ {
188
+ "value": "'success'",
189
+ "computed": false
190
+ }
191
+ ]
192
+ },
193
+ "required": false,
194
+ "description": "Use to visually mark an input as valid or invalid."
144
195
  }
145
196
  },
146
197
  "attributes": {}
@@ -243,12 +294,58 @@
243
294
  "required": false,
244
295
  "description": "Whether to render BlockQuote as a heading size of `h3` or large text size"
245
296
  },
297
+ "tokens": {
298
+ "type": {
299
+ "name": "custom",
300
+ "raw": {
301
+ "color": "color",
302
+ "backgroundGradient": "gradient",
303
+ "paddingLeft": "size",
304
+ "paddingRight": "size",
305
+ "paddingTop": "size",
306
+ "paddingBottom": "size",
307
+ "marginBottom": "size",
308
+ "width": "size",
309
+ "titleHeadingFontSize": "fontSize",
310
+ "titleHeadingFontName": "fontName",
311
+ "titleHeadingFontWeight": "fontWeight",
312
+ "titleHeadingLineHeight": "lineHeight",
313
+ "titleFontSize": "fontSize",
314
+ "titleFontName": "fontName",
315
+ "titleFontWeight": "fontWeight",
316
+ "titleLineHeight": "lineHeight",
317
+ "linkFontSize": "fontSize",
318
+ "linkFontName": "fontName",
319
+ "linkFontWeight": "fontWeight",
320
+ "linkLineHeight": "lineHeight"
321
+ }
322
+ },
323
+ "required": false,
324
+ "description": ""
325
+ },
326
+ "variant": {
327
+ "type": {
328
+ "name": "exact",
329
+ "value": {
330
+ "alternative": {
331
+ "name": "bool",
332
+ "required": false
333
+ },
334
+ "size": {
335
+ "name": "string",
336
+ "required": false
337
+ }
338
+ }
339
+ },
340
+ "required": false,
341
+ "description": ""
342
+ },
246
343
  "children": {
247
344
  "type": {
248
345
  "name": "node"
249
346
  },
250
347
  "required": true,
251
- "description": ""
348
+ "description": "Children nodes that can be added"
252
349
  },
253
350
  "link": {
254
351
  "type": {
@@ -396,6 +493,23 @@
396
493
  },
397
494
  "required": false
398
495
  },
496
+ "tokens": {
497
+ "type": {
498
+ "name": "custom",
499
+ "raw": {
500
+ "background": "color",
501
+ "gap": "size",
502
+ "borderRadius": "size",
503
+ "paddingLeft": "size",
504
+ "paddingRight": "size",
505
+ "paddingTop": "size",
506
+ "paddingBottom": "size",
507
+ "color": "color"
508
+ }
509
+ },
510
+ "required": false,
511
+ "description": ""
512
+ },
399
513
  "icon": {
400
514
  "type": {
401
515
  "name": "elementType"
@@ -408,7 +522,7 @@
408
522
  "name": "node"
409
523
  },
410
524
  "required": true,
411
- "description": ""
525
+ "description": "Children nodes that can be added"
412
526
  },
413
527
  "textAlignToFlex": {
414
528
  "type": {
@@ -806,6 +920,28 @@
806
920
  "required": false,
807
921
  "description": "Disable the input which will not open the calendar picker"
808
922
  },
923
+ "prevTestID": {
924
+ "defaultValue": {
925
+ "value": "''",
926
+ "computed": false
927
+ },
928
+ "type": {
929
+ "name": "string"
930
+ },
931
+ "required": false,
932
+ "description": "A unique identifier for the previous icon button located on the datepicker.\nThis is for automation testing purposes.\nWill be added as a `data-testid-prev` attribute for example."
933
+ },
934
+ "nextTestID": {
935
+ "defaultValue": {
936
+ "value": "''",
937
+ "computed": false
938
+ },
939
+ "type": {
940
+ "name": "string"
941
+ },
942
+ "required": false,
943
+ "description": "A unique identifier for the next icon button located on the datepicker.\nThis is for automation testing purposes.\nWill be added as a `data-testid-next` attribute for example."
944
+ },
809
945
  "id": {
810
946
  "type": {
811
947
  "name": "string"
@@ -826,7 +962,7 @@
826
962
  "name": "node"
827
963
  },
828
964
  "required": true,
829
- "description": ""
965
+ "description": "Children nodes that can be added"
830
966
  }
831
967
  },
832
968
  "attributes": {}
@@ -847,6 +983,20 @@
847
983
  "required": false,
848
984
  "description": "Function to call on pressing the panel's control, which should open or close the panel."
849
985
  },
986
+ "tokens": {
987
+ "defaultValue": {
988
+ "value": "{}",
989
+ "computed": false
990
+ },
991
+ "type": {
992
+ "name": "custom",
993
+ "raw": {
994
+ "borderWidth": "border"
995
+ }
996
+ },
997
+ "required": false,
998
+ "description": ""
999
+ },
850
1000
  "nativeID": {
851
1001
  "defaultValue": {
852
1002
  "value": "''",
@@ -898,7 +1048,7 @@
898
1048
  "name": "node"
899
1049
  },
900
1050
  "required": true,
901
- "description": ""
1051
+ "description": "Children nodes that can be added"
902
1052
  }
903
1053
  },
904
1054
  "attributes": {}
@@ -1399,6 +1549,63 @@
1399
1549
  },
1400
1550
  "required": false,
1401
1551
  "description": "To select an item by default"
1552
+ },
1553
+ "onClose": {
1554
+ "type": {
1555
+ "name": "func"
1556
+ },
1557
+ "required": false,
1558
+ "description": "onClose event"
1559
+ },
1560
+ "tokens": {
1561
+ "type": {
1562
+ "name": "custom",
1563
+ "raw": {
1564
+ "groupBorderRadius": "radius",
1565
+ "groupBorderWidth": "border",
1566
+ "groupFontSize": "size",
1567
+ "groupFontName": "fontName",
1568
+ "groupFontWeight": "fontWeight",
1569
+ "groupColor": "color",
1570
+ "groupBorderColor": "color",
1571
+ "groupBackgroundColor": "color",
1572
+ "groupPaddingTop": "size",
1573
+ "groupPaddingBottom": "size",
1574
+ "groupPaddingLeft": "size",
1575
+ "groupPaddingRight": "size",
1576
+ "groupIcon": "icon",
1577
+ "itemDisplay": "show",
1578
+ "itemFontName": "fontName",
1579
+ "itemFontWeight": "fontWeight",
1580
+ "itemFontSize": "size",
1581
+ "itemPaddingTop": "size",
1582
+ "itemPaddingBottom": "size",
1583
+ "itemPaddingLeft": "size",
1584
+ "itemPaddingRight": "size",
1585
+ "itemColor": "color",
1586
+ "itemBackgroundColor": "color",
1587
+ "itemBorderLeftColor": "color",
1588
+ "itemBorderLeftWidth": "border",
1589
+ "itemBorderWidth": "border",
1590
+ "itemTextDecoration": "textLine",
1591
+ "itemOutline": "border",
1592
+ "shadow": "shadow",
1593
+ "itemBorderRightColor": "color",
1594
+ "itemBorderBottomColor": "color",
1595
+ "itemBorderTopColor": "color",
1596
+ "itemBorderRightWidth": "border",
1597
+ "itemBorderBottomWidth": "border",
1598
+ "itemBorderTopWidth": "border",
1599
+ "itemBorderRadius": "radius",
1600
+ "minWidth": "size",
1601
+ "minHeight": "size",
1602
+ "itemHeight": "size",
1603
+ "groupHeight": "size",
1604
+ "lineHeight": "lineHeight"
1605
+ }
1606
+ },
1607
+ "required": false,
1608
+ "description": ""
1402
1609
  }
1403
1610
  },
1404
1611
  "attributes": {}
@@ -1637,10 +1844,14 @@
1637
1844
  "props": {
1638
1845
  "accessibilityRole": {
1639
1846
  "defaultValue": {
1640
- "value": "'navigation'",
1847
+ "value": "''",
1641
1848
  "computed": false
1642
1849
  },
1643
- "required": false
1850
+ "type": {
1851
+ "name": "string"
1852
+ },
1853
+ "required": false,
1854
+ "description": "Accesibility role for stackview"
1644
1855
  },
1645
1856
  "headingLevel": {
1646
1857
  "defaultValue": {
@@ -1943,6 +2154,18 @@
1943
2154
  "required": false,
1944
2155
  "description": "The position to start the list with."
1945
2156
  },
2157
+ "variant": {
2158
+ "defaultValue": {
2159
+ "value": "{}",
2160
+ "computed": false
2161
+ },
2162
+ "type": {
2163
+ "name": "custom",
2164
+ "raw": "variantProp.propType"
2165
+ },
2166
+ "required": false,
2167
+ "description": ""
2168
+ },
1946
2169
  "children": {
1947
2170
  "type": {
1948
2171
  "name": "node"
@@ -2836,6 +3059,42 @@
2836
3059
  },
2837
3060
  "required": false,
2838
3061
  "description": "sets the top offset (triggers absolute positioning)"
3062
+ },
3063
+ "tokens": {
3064
+ "type": {
3065
+ "name": "custom",
3066
+ "raw": {
3067
+ "paddingLeft": "size",
3068
+ "paddingRight": "size",
3069
+ "paddingTop": "size",
3070
+ "paddingBottom": "size",
3071
+ "borderRadius": "size",
3072
+ "backgroundColor": "color",
3073
+ "boxShadowPaddingLeft": "size",
3074
+ "boxShadowPaddingTop": "size",
3075
+ "boxShadowPaddingRight": "size",
3076
+ "boxShadowPaddingBottom": "size",
3077
+ "boxShadowColor": "color",
3078
+ "curveAfterWidth": "size",
3079
+ "curveMarginTop": "size",
3080
+ "curveAfterRadius": "size",
3081
+ "curveBackgroundColor": "color",
3082
+ "curveHeight": "size",
3083
+ "curveWidth": "size",
3084
+ "curveAfterBackgroundColor": "color",
3085
+ "curveAfterHeight": "size",
3086
+ "gradient": "gradient",
3087
+ "fontColor": "color",
3088
+ "borderRadiusBottomLeft": "size",
3089
+ "borderRadiusBottomRight": "size",
3090
+ "fontName": "fontName",
3091
+ "fontWeight": "fontWeight",
3092
+ "fontSize": "fontSize",
3093
+ "lineHeight": "lineHeight"
3094
+ }
3095
+ },
3096
+ "required": false,
3097
+ "description": ""
2839
3098
  }
2840
3099
  },
2841
3100
  "attributes": {}
@@ -3641,6 +3900,32 @@
3641
3900
  },
3642
3901
  "required": false,
3643
3902
  "description": "The link to display in the toast (after copy)"
3903
+ },
3904
+ "tokens": {
3905
+ "type": {
3906
+ "name": "custom",
3907
+ "raw": {
3908
+ "containerBackgroundColor": "color",
3909
+ "containerGap": "size",
3910
+ "animationHeightBefore": "size",
3911
+ "animationHeightAfter": "size",
3912
+ "animationPaddingBottomBefore": "size",
3913
+ "animationPaddingBottomAfter": "size",
3914
+ "animationPaddingTopBefore": "size",
3915
+ "padding": "size",
3916
+ "animationPaddingTopAfter": "size",
3917
+ "animationBackgroundColorBefore": "color",
3918
+ "animationBackgroundColorAfter": "color",
3919
+ "animationColorBefore": "color",
3920
+ "animationColorAfter": "color",
3921
+ "animationDivColorBefore": "color",
3922
+ "animationDivColorAfter": "color",
3923
+ "chevronlinkFontWeight": "fontWeight",
3924
+ "chevronlinkFontName": "fontName"
3925
+ }
3926
+ },
3927
+ "required": false,
3928
+ "description": ""
3644
3929
  }
3645
3930
  },
3646
3931
  "attributes": {}
@@ -3855,6 +4140,27 @@
3855
4140
  },
3856
4141
  "required": true,
3857
4142
  "description": "The video player UI's language as an ISO language code. It currently supports English and French."
4143
+ },
4144
+ "tokens": {
4145
+ "type": {
4146
+ "name": "custom",
4147
+ "raw": {
4148
+ "borderColor": "color",
4149
+ "pauseIcon": "icon",
4150
+ "replayIcon": "icon",
4151
+ "playIcon": "icon"
4152
+ }
4153
+ },
4154
+ "required": false,
4155
+ "description": ""
4156
+ },
4157
+ "variant": {
4158
+ "type": {
4159
+ "name": "custom",
4160
+ "raw": "variantProp.propType"
4161
+ },
4162
+ "required": false,
4163
+ "description": ""
3858
4164
  }
3859
4165
  },
3860
4166
  "attributes": {}
@@ -3929,7 +4235,7 @@
3929
4235
  "props": {
3930
4236
  "rowSize": {
3931
4237
  "defaultValue": {
3932
- "value": "{ sm: 2, lg: 3, xl: 6 }",
4238
+ "value": "null",
3933
4239
  "computed": false
3934
4240
  },
3935
4241
  "type": {
@@ -5374,6 +5680,13 @@
5374
5680
  },
5375
5681
  "required": false,
5376
5682
  "description": ""
5683
+ },
5684
+ "dataSet": {
5685
+ "type": {
5686
+ "name": "object"
5687
+ },
5688
+ "required": false,
5689
+ "description": ""
5377
5690
  }
5378
5691
  },
5379
5692
  "attributes": {
@@ -6783,10 +7096,126 @@
6783
7096
  },
6784
7097
  "required": false,
6785
7098
  "description": ""
7099
+ },
7100
+ "children": {
7101
+ "type": {
7102
+ "name": "node"
7103
+ },
7104
+ "required": false,
7105
+ "description": ""
7106
+ },
7107
+ "variant": {
7108
+ "type": {
7109
+ "name": "exact",
7110
+ "value": {
7111
+ "size": {
7112
+ "name": "enum",
7113
+ "value": [
7114
+ {
7115
+ "value": "'large'",
7116
+ "computed": false
7117
+ },
7118
+ {
7119
+ "value": "'small'",
7120
+ "computed": false
7121
+ },
7122
+ {
7123
+ "value": "'micro'",
7124
+ "computed": false
7125
+ }
7126
+ ],
7127
+ "required": false
7128
+ },
7129
+ "alternative": {
7130
+ "name": "bool",
7131
+ "required": false
7132
+ },
7133
+ "inverse": {
7134
+ "name": "bool",
7135
+ "required": false
7136
+ }
7137
+ }
7138
+ },
7139
+ "required": false,
7140
+ "description": ""
7141
+ },
7142
+ "onPress": {
7143
+ "type": {
7144
+ "name": "func"
7145
+ },
7146
+ "required": false,
7147
+ "description": ""
7148
+ },
7149
+ "onPressIn": {
7150
+ "type": {
7151
+ "name": "func"
7152
+ },
7153
+ "required": false,
7154
+ "description": ""
7155
+ },
7156
+ "onPressOut": {
7157
+ "type": {
7158
+ "name": "func"
7159
+ },
7160
+ "required": false,
7161
+ "description": ""
7162
+ },
7163
+ "disabled": {
7164
+ "type": {
7165
+ "name": "bool"
7166
+ },
7167
+ "required": false,
7168
+ "description": ""
7169
+ },
7170
+ "href": {
7171
+ "type": {
7172
+ "name": "string"
7173
+ },
7174
+ "required": false,
7175
+ "description": ""
7176
+ },
7177
+ "hrefAttrs": {
7178
+ "type": {
7179
+ "name": "shape",
7180
+ "value": {
7181
+ "download": {
7182
+ "name": "string",
7183
+ "required": false
7184
+ },
7185
+ "rel": {
7186
+ "name": "string",
7187
+ "required": false
7188
+ },
7189
+ "target": {
7190
+ "name": "enum",
7191
+ "value": [
7192
+ {
7193
+ "value": "'_self'",
7194
+ "computed": false
7195
+ },
7196
+ {
7197
+ "value": "'_blank'",
7198
+ "computed": false
7199
+ },
7200
+ {
7201
+ "value": "'_parent'",
7202
+ "computed": false
7203
+ },
7204
+ {
7205
+ "value": "'_top'",
7206
+ "computed": false
7207
+ }
7208
+ ],
7209
+ "required": false
7210
+ }
7211
+ }
7212
+ },
7213
+ "required": false,
7214
+ "description": ""
6786
7215
  }
6787
7216
  },
6788
7217
  "attributes": {
6789
- "acceptsRNA11yProps": false
7218
+ "acceptsRNA11yProps": true
6790
7219
  }
6791
7220
  }
6792
7221
  },
@@ -11008,12 +11437,38 @@
11008
11437
  "docs": {
11009
11438
  "description": "`SideNav.Item` is a navigational element that is used within `SideNav` or `SideNav.ItemsGroup`.\n\n This component can only be accessed as a name-spaced component: `SideNav.Item`.",
11010
11439
  "props": {
11440
+ "isActive": {
11441
+ "defaultValue": {
11442
+ "value": "false",
11443
+ "computed": false
11444
+ },
11445
+ "type": {
11446
+ "name": "bool"
11447
+ },
11448
+ "required": false,
11449
+ "description": "Set internally in `SideNav` render function."
11450
+ },
11451
+ "isExpanded": {
11452
+ "defaultValue": {
11453
+ "value": "false",
11454
+ "computed": false
11455
+ },
11456
+ "type": {
11457
+ "name": "bool"
11458
+ },
11459
+ "required": false,
11460
+ "description": "Set internally in `SideNav.ItemsGroup` render function. Used to mark expanded `ItemsGroup` parent."
11461
+ },
11011
11462
  "accessibilityRole": {
11012
11463
  "defaultValue": {
11013
11464
  "value": "'link'",
11014
11465
  "computed": false
11015
11466
  },
11016
- "required": false
11467
+ "type": {
11468
+ "name": "string"
11469
+ },
11470
+ "required": false,
11471
+ "description": "Accesibility Role"
11017
11472
  },
11018
11473
  "children": {
11019
11474
  "type": {
@@ -11022,6 +11477,20 @@
11022
11477
  "required": true,
11023
11478
  "description": "Text content of the `Item`."
11024
11479
  },
11480
+ "itemId": {
11481
+ "type": {
11482
+ "name": "string"
11483
+ },
11484
+ "required": false,
11485
+ "description": "Set internally in `SideNav` render function - used to keep track of active item."
11486
+ },
11487
+ "groupId": {
11488
+ "type": {
11489
+ "name": "string"
11490
+ },
11491
+ "required": false,
11492
+ "description": "Set internally in `SideNav` render function - used to keep track of expanded items groups."
11493
+ },
11025
11494
  "onPress": {
11026
11495
  "type": {
11027
11496
  "name": "func"
@@ -11122,6 +11591,13 @@
11122
11591
  },
11123
11592
  "required": false,
11124
11593
  "description": ""
11594
+ },
11595
+ "testID": {
11596
+ "type": {
11597
+ "name": "number"
11598
+ },
11599
+ "required": false,
11600
+ "description": "test ID"
11125
11601
  }
11126
11602
  },
11127
11603
  "attributes": {
@@ -12225,7 +12701,11 @@
12225
12701
  "value": "Platform.select({ web: 'group', default: 'none' })",
12226
12702
  "computed": true
12227
12703
  },
12228
- "required": false
12704
+ "type": {
12705
+ "name": "string"
12706
+ },
12707
+ "required": false,
12708
+ "description": "AccesibilityRole for the Tags"
12229
12709
  },
12230
12710
  "tokens": {
12231
12711
  "type": {
@@ -12418,13 +12898,45 @@
12418
12898
  "value": "'button'",
12419
12899
  "computed": false
12420
12900
  },
12421
- "required": false
12901
+ "type": {
12902
+ "name": "string"
12903
+ },
12904
+ "required": false,
12905
+ "description": "Accesibility role for TextButton"
12422
12906
  },
12423
12907
  "onPress": {
12424
12908
  "type": {
12425
12909
  "name": "func"
12426
12910
  },
12427
12911
  "required": true,
12912
+ "description": "onPress function"
12913
+ },
12914
+ "children": {
12915
+ "type": {
12916
+ "name": "node"
12917
+ },
12918
+ "required": true,
12919
+ "description": "Children node that can be added"
12920
+ },
12921
+ "variant": {
12922
+ "type": {
12923
+ "name": "objectOf",
12924
+ "value": {
12925
+ "name": "union",
12926
+ "value": [
12927
+ {
12928
+ "name": "string"
12929
+ },
12930
+ {
12931
+ "name": "number"
12932
+ },
12933
+ {
12934
+ "name": "bool"
12935
+ }
12936
+ ]
12937
+ }
12938
+ },
12939
+ "required": false,
12428
12940
  "description": ""
12429
12941
  }
12430
12942
  },
@@ -13365,6 +13877,17 @@
13365
13877
  "required": false,
13366
13878
  "description": "Select English or French copy for the accessible label."
13367
13879
  },
13880
+ "inline": {
13881
+ "defaultValue": {
13882
+ "value": "false",
13883
+ "computed": false
13884
+ },
13885
+ "type": {
13886
+ "name": "bool"
13887
+ },
13888
+ "required": false,
13889
+ "description": "Display tooltip icon button as an inline element."
13890
+ },
13368
13891
  "children": {
13369
13892
  "type": {
13370
13893
  "name": "union",