@navikt/ds-react 0.18.2 → 0.18.5

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 (118) hide show
  1. package/_docs.json +186 -209
  2. package/cjs/form/ConfirmationPanel.js +10 -5
  3. package/esm/accordion/Accordion.d.ts +1 -1
  4. package/esm/accordion/AccordionContent.d.ts +3 -1
  5. package/esm/accordion/AccordionContent.js.map +1 -1
  6. package/esm/accordion/AccordionHeader.d.ts +1 -1
  7. package/esm/accordion/AccordionItem.d.ts +6 -5
  8. package/esm/accordion/AccordionItem.js.map +1 -1
  9. package/esm/alert/Alert.d.ts +3 -2
  10. package/esm/alert/Alert.js.map +1 -1
  11. package/esm/button/Button.d.ts +1 -2
  12. package/esm/button/Button.js.map +1 -1
  13. package/esm/form/ConfirmationPanel.d.ts +9 -1
  14. package/esm/form/ConfirmationPanel.js +10 -5
  15. package/esm/form/ConfirmationPanel.js.map +1 -1
  16. package/esm/form/Fieldset/Fieldset.d.ts +4 -1
  17. package/esm/form/Fieldset/Fieldset.js.map +1 -1
  18. package/esm/form/Select.d.ts +2 -2
  19. package/esm/form/Switch.d.ts +1 -0
  20. package/esm/form/Switch.js.map +1 -1
  21. package/esm/form/TextField.d.ts +4 -4
  22. package/esm/form/Textarea.d.ts +10 -3
  23. package/esm/form/Textarea.js.map +1 -1
  24. package/esm/form/checkbox/Checkbox.d.ts +2 -2
  25. package/esm/form/checkbox/CheckboxGroup.d.ts +2 -2
  26. package/esm/form/error-summary/ErrorSummary.d.ts +2 -2
  27. package/esm/form/radio/Radio.d.ts +1 -1
  28. package/esm/form/radio/RadioGroup.d.ts +4 -4
  29. package/esm/form/search/Search.d.ts +2 -2
  30. package/esm/form/useFormField.d.ts +1 -0
  31. package/esm/form/useFormField.js.map +1 -1
  32. package/esm/help-text/HelpText.d.ts +12 -1
  33. package/esm/help-text/HelpText.js.map +1 -1
  34. package/esm/link-panel/LinkPanel.d.ts +2 -1
  35. package/esm/link-panel/LinkPanel.js.map +1 -1
  36. package/esm/loader/Loader.d.ts +6 -2
  37. package/esm/loader/Loader.js.map +1 -1
  38. package/esm/modal/Modal.d.ts +4 -4
  39. package/esm/pagination/Pagination.d.ts +1 -0
  40. package/esm/pagination/Pagination.js.map +1 -1
  41. package/esm/panel/Panel.d.ts +1 -1
  42. package/esm/popover/Popover.d.ts +7 -6
  43. package/esm/popover/Popover.js.map +1 -1
  44. package/esm/speech-bubble/SpeechBubble.d.ts +3 -3
  45. package/esm/step-indicator/Step.d.ts +2 -0
  46. package/esm/step-indicator/Step.js.map +1 -1
  47. package/esm/stepper/Step.d.ts +2 -1
  48. package/esm/stepper/Step.js.map +1 -1
  49. package/esm/table/ColumnHeader.d.ts +1 -1
  50. package/esm/table/DataCell.d.ts +1 -1
  51. package/esm/table/ExpandableRow.d.ts +1 -1
  52. package/esm/table/HeaderCell.d.ts +1 -1
  53. package/esm/table/index.d.ts +1 -1
  54. package/esm/table/index.js.map +1 -1
  55. package/esm/tabs/Tab.d.ts +2 -2
  56. package/esm/tabs/TabList.d.ts +1 -1
  57. package/esm/tabs/TabPanel.d.ts +1 -1
  58. package/esm/tabs/Tabs.d.ts +1 -4
  59. package/esm/tabs/Tabs.js.map +1 -1
  60. package/esm/tag/Tag.d.ts +3 -4
  61. package/esm/tag/Tag.js.map +1 -1
  62. package/esm/toggle-group/ToggleGroup.d.ts +1 -1
  63. package/esm/tooltip/Tooltip.d.ts +8 -6
  64. package/esm/tooltip/Tooltip.js.map +1 -1
  65. package/esm/typography/BodyLong.d.ts +1 -1
  66. package/esm/typography/BodyShort.d.ts +1 -1
  67. package/esm/typography/Detail.d.ts +1 -1
  68. package/esm/typography/Heading.d.ts +2 -2
  69. package/esm/typography/Ingress.d.ts +1 -1
  70. package/esm/typography/Label.d.ts +1 -1
  71. package/package.json +2 -2
  72. package/src/accordion/Accordion.tsx +1 -1
  73. package/src/accordion/AccordionContent.tsx +3 -1
  74. package/src/accordion/AccordionHeader.tsx +1 -1
  75. package/src/accordion/AccordionItem.tsx +6 -5
  76. package/src/alert/Alert.tsx +3 -2
  77. package/src/button/Button.tsx +1 -2
  78. package/src/form/ConfirmationPanel.tsx +38 -13
  79. package/src/form/Fieldset/Fieldset.tsx +4 -1
  80. package/src/form/Select.tsx +2 -2
  81. package/src/form/Switch.tsx +1 -0
  82. package/src/form/TextField.tsx +4 -4
  83. package/src/form/Textarea.tsx +10 -3
  84. package/src/form/checkbox/Checkbox.tsx +2 -2
  85. package/src/form/checkbox/CheckboxGroup.tsx +2 -2
  86. package/src/form/error-summary/ErrorSummary.tsx +2 -2
  87. package/src/form/radio/Radio.tsx +1 -1
  88. package/src/form/radio/RadioGroup.tsx +4 -4
  89. package/src/form/search/Search.tsx +2 -2
  90. package/src/form/useFormField.ts +1 -0
  91. package/src/help-text/HelpText.tsx +12 -1
  92. package/src/link-panel/LinkPanel.tsx +2 -1
  93. package/src/loader/Loader.tsx +5 -4
  94. package/src/modal/Modal.tsx +4 -4
  95. package/src/pagination/Pagination.tsx +1 -0
  96. package/src/panel/Panel.tsx +1 -1
  97. package/src/popover/Popover.tsx +7 -6
  98. package/src/speech-bubble/SpeechBubble.tsx +3 -3
  99. package/src/step-indicator/Step.tsx +2 -0
  100. package/src/stepper/Step.tsx +2 -1
  101. package/src/table/ColumnHeader.tsx +1 -1
  102. package/src/table/DataCell.tsx +1 -1
  103. package/src/table/ExpandableRow.tsx +1 -1
  104. package/src/table/HeaderCell.tsx +1 -1
  105. package/src/table/index.ts +1 -1
  106. package/src/tabs/Tab.tsx +2 -2
  107. package/src/tabs/TabList.tsx +1 -1
  108. package/src/tabs/TabPanel.tsx +1 -1
  109. package/src/tabs/Tabs.tsx +1 -4
  110. package/src/tag/Tag.tsx +3 -4
  111. package/src/toggle-group/ToggleGroup.tsx +1 -1
  112. package/src/tooltip/Tooltip.tsx +8 -6
  113. package/src/typography/BodyLong.tsx +1 -1
  114. package/src/typography/BodyShort.tsx +1 -1
  115. package/src/typography/Detail.tsx +1 -1
  116. package/src/typography/Heading.tsx +2 -2
  117. package/src/typography/Ingress.tsx +1 -1
  118. package/src/typography/Label.tsx +1 -1
package/_docs.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "props": {
6
6
  "children": {
7
7
  "defaultValue": null,
8
- "description": "Content inside accordion",
8
+ "description": "Instances of Accordion.Item",
9
9
  "name": "children",
10
10
  "parent": {
11
11
  "fileName": "src/accordion/Accordion.tsx",
@@ -68,7 +68,7 @@
68
68
  "props": {
69
69
  "children": {
70
70
  "defaultValue": null,
71
- "description": "Accordion panel content",
71
+ "description": "Content inside Accordion.Content\nIf renderContentWhenClosed is false in Accordion.Item,\nthis will be removed from dom when Accordion is closed",
72
72
  "name": "children",
73
73
  "parent": {
74
74
  "fileName": "src/accordion/AccordionContent.tsx",
@@ -131,7 +131,7 @@
131
131
  "props": {
132
132
  "children": {
133
133
  "defaultValue": null,
134
- "description": "Accordion button content",
134
+ "description": "Text inside Accordion.Header",
135
135
  "name": "children",
136
136
  "parent": {
137
137
  "fileName": "src/accordion/AccordionHeader.tsx",
@@ -194,7 +194,7 @@
194
194
  "props": {
195
195
  "children": {
196
196
  "defaultValue": null,
197
- "description": "Content inside Accordion.Item",
197
+ "description": "Content in Accordion.Item\nShould include one Accordion.Header and one Accordion.Content",
198
198
  "name": "children",
199
199
  "parent": {
200
200
  "fileName": "src/accordion/AccordionItem.tsx",
@@ -213,7 +213,7 @@
213
213
  },
214
214
  "open": {
215
215
  "defaultValue": null,
216
- "description": "Opens component if 'true', closes if 'false'\nUsing this props removes automatic control of open-state",
216
+ "description": "Controlled open-state\nUsing this removes automatic control of open-state",
217
217
  "name": "open",
218
218
  "parent": {
219
219
  "fileName": "src/accordion/AccordionItem.tsx",
@@ -234,7 +234,7 @@
234
234
  "defaultValue": {
235
235
  "value": "false"
236
236
  },
237
- "description": "Defaults the accordion to opened state if not controlled",
237
+ "description": "Defaults the accordion to open if not controlled",
238
238
  "name": "defaultOpen",
239
239
  "parent": {
240
240
  "fileName": "src/accordion/AccordionItem.tsx",
@@ -255,7 +255,7 @@
255
255
  "defaultValue": {
256
256
  "value": "false"
257
257
  },
258
- "description": "Removes content-element from dom when closed",
258
+ "description": "Removes content inside Accordion.Content if false from dom when closed",
259
259
  "name": "renderContentWhenClosed",
260
260
  "parent": {
261
261
  "fileName": "src/accordion/AccordionItem.tsx",
@@ -337,7 +337,7 @@
337
337
  },
338
338
  "variant": {
339
339
  "defaultValue": null,
340
- "description": "Decides what design the alert will have",
340
+ "description": "Changes colors and icon usage when changed",
341
341
  "name": "variant",
342
342
  "parent": {
343
343
  "fileName": "src/alert/Alert.tsx",
@@ -523,9 +523,7 @@
523
523
  }
524
524
  },
525
525
  "disabled": {
526
- "defaultValue": {
527
- "value": "false"
528
- },
526
+ "defaultValue": null,
529
527
  "description": "Prevent the user from interacting with the button: it cannot be pressed or focused.\n@note Avoid using if possible for accessibility purposes",
530
528
  "name": "disabled",
531
529
  "parent": {
@@ -709,44 +707,61 @@
709
707
  "name": "ReactNode"
710
708
  }
711
709
  },
712
- "className": {
710
+ "error": {
713
711
  "defaultValue": null,
714
- "description": "",
715
- "name": "className",
712
+ "description": "Error message for element",
713
+ "name": "error",
716
714
  "parent": {
717
- "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
718
- "name": "HTMLAttributes"
715
+ "fileName": "src/form/ConfirmationPanel.tsx",
716
+ "name": "ConfirmationPanelProps"
719
717
  },
720
718
  "declarations": [
721
719
  {
722
- "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
723
- "name": "HTMLAttributes"
720
+ "fileName": "src/form/ConfirmationPanel.tsx",
721
+ "name": "ConfirmationPanelProps"
724
722
  }
725
723
  ],
726
724
  "required": false,
727
725
  "type": {
728
- "name": "string"
726
+ "name": "ReactNode"
729
727
  }
730
728
  },
731
- "error": {
732
- "defaultValue": {
733
- "value": "false"
729
+ "errorId": {
730
+ "defaultValue": null,
731
+ "description": "Override internal errorId",
732
+ "name": "errorId",
733
+ "parent": {
734
+ "fileName": "src/form/ConfirmationPanel.tsx",
735
+ "name": "ConfirmationPanelProps"
734
736
  },
735
- "description": "Checkbox has error",
736
- "name": "error",
737
+ "declarations": [
738
+ {
739
+ "fileName": "src/form/ConfirmationPanel.tsx",
740
+ "name": "ConfirmationPanelProps"
741
+ }
742
+ ],
743
+ "required": false,
744
+ "type": {
745
+ "name": "string"
746
+ }
747
+ },
748
+ "className": {
749
+ "defaultValue": null,
750
+ "description": "",
751
+ "name": "className",
737
752
  "parent": {
738
- "fileName": "react/src/form/checkbox/Checkbox.tsx",
739
- "name": "CheckboxProps"
753
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
754
+ "name": "HTMLAttributes"
740
755
  },
741
756
  "declarations": [
742
757
  {
743
- "fileName": "react/src/form/checkbox/Checkbox.tsx",
744
- "name": "CheckboxProps"
758
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
759
+ "name": "HTMLAttributes"
745
760
  }
746
761
  ],
747
762
  "required": false,
748
763
  "type": {
749
- "name": "boolean"
764
+ "name": "string"
750
765
  }
751
766
  },
752
767
  "size": {
@@ -770,7 +785,7 @@
770
785
  },
771
786
  "disabled": {
772
787
  "defaultValue": null,
773
- "description": "Disables element",
788
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
774
789
  "name": "disabled",
775
790
  "parent": {
776
791
  "fileName": "react/src/form/useFormField.ts",
@@ -844,46 +859,6 @@
844
859
  "name": "any"
845
860
  }
846
861
  },
847
- "hideLabel": {
848
- "defaultValue": null,
849
- "description": "Hides label and makes it viewable for screen-readers only.",
850
- "name": "hideLabel",
851
- "parent": {
852
- "fileName": "react/src/form/checkbox/Checkbox.tsx",
853
- "name": "CheckboxProps"
854
- },
855
- "declarations": [
856
- {
857
- "fileName": "react/src/form/checkbox/Checkbox.tsx",
858
- "name": "CheckboxProps"
859
- }
860
- ],
861
- "required": false,
862
- "type": {
863
- "name": "boolean"
864
- }
865
- },
866
- "indeterminate": {
867
- "defaultValue": {
868
- "value": "false"
869
- },
870
- "description": "Specify whether the Checkbox is in an indeterminate state",
871
- "name": "indeterminate",
872
- "parent": {
873
- "fileName": "react/src/form/checkbox/Checkbox.tsx",
874
- "name": "CheckboxProps"
875
- },
876
- "declarations": [
877
- {
878
- "fileName": "react/src/form/checkbox/Checkbox.tsx",
879
- "name": "CheckboxProps"
880
- }
881
- ],
882
- "required": false,
883
- "type": {
884
- "name": "boolean"
885
- }
886
- },
887
862
  "ref": {
888
863
  "defaultValue": null,
889
864
  "description": "",
@@ -916,7 +891,7 @@
916
891
  "props": {
917
892
  "children": {
918
893
  "defaultValue": null,
919
- "description": "Collection of <option>-elements",
894
+ "description": "Collection of <option />-elements",
920
895
  "name": "children",
921
896
  "parent": {
922
897
  "fileName": "src/form/Select.tsx",
@@ -935,7 +910,7 @@
935
910
  },
936
911
  "htmlSize": {
937
912
  "defaultValue": null,
938
- "description": "Expose the HTML size attribute",
913
+ "description": "Exposes the HTML size attribute",
939
914
  "name": "htmlSize",
940
915
  "parent": {
941
916
  "fileName": "src/form/Select.tsx",
@@ -1049,7 +1024,7 @@
1049
1024
  },
1050
1025
  "disabled": {
1051
1026
  "defaultValue": null,
1052
- "description": "Disables element",
1027
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1053
1028
  "name": "disabled",
1054
1029
  "parent": {
1055
1030
  "fileName": "react/src/form/useFormField.ts",
@@ -1206,7 +1181,9 @@
1206
1181
  }
1207
1182
  },
1208
1183
  "position": {
1209
- "defaultValue": null,
1184
+ "defaultValue": {
1185
+ "value": "\"left\""
1186
+ },
1210
1187
  "description": "Positions switch on left/right side of label",
1211
1188
  "name": "position",
1212
1189
  "parent": {
@@ -1245,7 +1222,7 @@
1245
1222
  },
1246
1223
  "disabled": {
1247
1224
  "defaultValue": null,
1248
- "description": "Disables element",
1225
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1249
1226
  "name": "disabled",
1250
1227
  "parent": {
1251
1228
  "fileName": "react/src/form/useFormField.ts",
@@ -1346,7 +1323,7 @@
1346
1323
  "props": {
1347
1324
  "value": {
1348
1325
  "defaultValue": null,
1349
- "description": "The current value (controlled).",
1326
+ "description": "Controlled value",
1350
1327
  "name": "value",
1351
1328
  "parent": {
1352
1329
  "fileName": "src/form/TextField.tsx",
@@ -1365,7 +1342,7 @@
1365
1342
  },
1366
1343
  "defaultValue": {
1367
1344
  "defaultValue": null,
1368
- "description": "The default value (uncontrolled).",
1345
+ "description": "Defaults input-value without needing controlled-state",
1369
1346
  "name": "defaultValue",
1370
1347
  "parent": {
1371
1348
  "fileName": "src/form/TextField.tsx",
@@ -1384,7 +1361,7 @@
1384
1361
  },
1385
1362
  "htmlSize": {
1386
1363
  "defaultValue": null,
1387
- "description": "Expose the HTML size attribute",
1364
+ "description": "Exposes the HTML size attribute",
1388
1365
  "name": "htmlSize",
1389
1366
  "parent": {
1390
1367
  "fileName": "src/form/TextField.tsx",
@@ -1443,7 +1420,7 @@
1443
1420
  "defaultValue": {
1444
1421
  "value": "\"text\""
1445
1422
  },
1446
- "description": "Type of form control",
1423
+ "description": "Type of form control. Picking the correct type helps user fill inn their required information",
1447
1424
  "name": "type",
1448
1425
  "parent": {
1449
1426
  "fileName": "src/form/TextField.tsx",
@@ -1519,7 +1496,7 @@
1519
1496
  },
1520
1497
  "disabled": {
1521
1498
  "defaultValue": null,
1522
- "description": "Disables element",
1499
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1523
1500
  "name": "disabled",
1524
1501
  "parent": {
1525
1502
  "fileName": "react/src/form/useFormField.ts",
@@ -1620,7 +1597,7 @@
1620
1597
  "props": {
1621
1598
  "maxLength": {
1622
1599
  "defaultValue": null,
1623
- "description": "Visually allowed length of content",
1600
+ "description": "Allowed character-count for content\n@note This is just a visual validator, you need to set actual character-limits if needed",
1624
1601
  "name": "maxLength",
1625
1602
  "parent": {
1626
1603
  "fileName": "src/form/Textarea.tsx",
@@ -1639,7 +1616,7 @@
1639
1616
  },
1640
1617
  "value": {
1641
1618
  "defaultValue": null,
1642
- "description": "",
1619
+ "description": "Controlled value",
1643
1620
  "name": "value",
1644
1621
  "parent": {
1645
1622
  "fileName": "src/form/Textarea.tsx",
@@ -1658,7 +1635,7 @@
1658
1635
  },
1659
1636
  "defaultValue": {
1660
1637
  "defaultValue": null,
1661
- "description": "",
1638
+ "description": "Defaults input-value without needing controlled-state",
1662
1639
  "name": "defaultValue",
1663
1640
  "parent": {
1664
1641
  "fileName": "src/form/Textarea.tsx",
@@ -1677,7 +1654,7 @@
1677
1654
  },
1678
1655
  "maxRows": {
1679
1656
  "defaultValue": null,
1680
- "description": "Maximum number of rows to display.\n@bug Internal scrolling with `maxLength` scrolls over maxLength-text",
1657
+ "description": "Maximum number of character rows to display.\n@bug Internal scrolling with `maxLength` scrolls over maxLength-text",
1681
1658
  "name": "maxRows",
1682
1659
  "parent": {
1683
1660
  "fileName": "src/form/Textarea.tsx",
@@ -1696,7 +1673,7 @@
1696
1673
  },
1697
1674
  "minRows": {
1698
1675
  "defaultValue": null,
1699
- "description": "Minimum number of rows to display.",
1676
+ "description": "Minimum number of character-rows to display when empty.",
1700
1677
  "name": "minRows",
1701
1678
  "parent": {
1702
1679
  "fileName": "src/form/Textarea.tsx",
@@ -1810,7 +1787,7 @@
1810
1787
  },
1811
1788
  "disabled": {
1812
1789
  "defaultValue": null,
1813
- "description": "Disables element",
1790
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1814
1791
  "name": "disabled",
1815
1792
  "parent": {
1816
1793
  "fileName": "react/src/form/useFormField.ts",
@@ -2396,7 +2373,7 @@
2396
2373
  "props": {
2397
2374
  "children": {
2398
2375
  "defaultValue": null,
2399
- "description": "Component content",
2376
+ "description": "Helptext-dialog content",
2400
2377
  "name": "children",
2401
2378
  "parent": {
2402
2379
  "fileName": "src/help-text/HelpText.tsx",
@@ -2413,6 +2390,48 @@
2413
2390
  "name": "ReactNode"
2414
2391
  }
2415
2392
  },
2393
+ "title": {
2394
+ "defaultValue": {
2395
+ "value": "hjelp"
2396
+ },
2397
+ "description": "Adds a title-tooltip with the given text",
2398
+ "name": "title",
2399
+ "parent": {
2400
+ "fileName": "src/help-text/HelpText.tsx",
2401
+ "name": "HelpTextProps"
2402
+ },
2403
+ "declarations": [
2404
+ {
2405
+ "fileName": "src/help-text/HelpText.tsx",
2406
+ "name": "HelpTextProps"
2407
+ }
2408
+ ],
2409
+ "required": false,
2410
+ "type": {
2411
+ "name": "string"
2412
+ }
2413
+ },
2414
+ "placement": {
2415
+ "defaultValue": {
2416
+ "value": "top"
2417
+ },
2418
+ "description": "Default dialog-placement on open",
2419
+ "name": "placement",
2420
+ "parent": {
2421
+ "fileName": "src/help-text/HelpText.tsx",
2422
+ "name": "HelpTextProps"
2423
+ },
2424
+ "declarations": [
2425
+ {
2426
+ "fileName": "src/help-text/HelpText.tsx",
2427
+ "name": "HelpTextProps"
2428
+ }
2429
+ ],
2430
+ "required": false,
2431
+ "type": {
2432
+ "name": "Placement"
2433
+ }
2434
+ },
2416
2435
  "className": {
2417
2436
  "defaultValue": null,
2418
2437
  "description": "",
@@ -2453,27 +2472,6 @@
2453
2472
  "name": "\"absolute\" | \"fixed\""
2454
2473
  }
2455
2474
  },
2456
- "placement": {
2457
- "defaultValue": {
2458
- "value": "top"
2459
- },
2460
- "description": "Orientation for popover",
2461
- "name": "placement",
2462
- "parent": {
2463
- "fileName": "react/src/popover/Popover.tsx",
2464
- "name": "PopoverProps"
2465
- },
2466
- "declarations": [
2467
- {
2468
- "fileName": "react/src/popover/Popover.tsx",
2469
- "name": "PopoverProps"
2470
- }
2471
- ],
2472
- "required": false,
2473
- "type": {
2474
- "name": "Placement"
2475
- }
2476
- },
2477
2475
  "ref": {
2478
2476
  "defaultValue": null,
2479
2477
  "description": "",
@@ -2585,7 +2583,7 @@
2585
2583
  "defaultValue": {
2586
2584
  "value": "true"
2587
2585
  },
2588
- "description": "Toggles border on panel",
2586
+ "description": "Adds border to panel if true",
2589
2587
  "name": "border",
2590
2588
  "parent": {
2591
2589
  "fileName": "src/link-panel/LinkPanel.tsx",
@@ -2757,7 +2755,7 @@
2757
2755
  "defaultValue": {
2758
2756
  "value": "medium"
2759
2757
  },
2760
- "description": "Changes sizing\n64px | 40px | 32px | 24px | 20px | 16px",
2758
+ "description": "Changes Loader width/height\n64px | 40px | 32px | 24px | 20px | 16px",
2761
2759
  "name": "size",
2762
2760
  "parent": {
2763
2761
  "fileName": "src/loader/Loader.tsx",
@@ -2799,7 +2797,7 @@
2799
2797
  "defaultValue": {
2800
2798
  "value": "false"
2801
2799
  },
2802
- "description": "",
2800
+ "description": "Sets svg-background to transparent",
2803
2801
  "name": "transparent",
2804
2802
  "parent": {
2805
2803
  "fileName": "src/loader/Loader.tsx",
@@ -2820,7 +2818,7 @@
2820
2818
  "defaultValue": {
2821
2819
  "value": "neutral"
2822
2820
  },
2823
- "description": "Colored variants for loader",
2821
+ "description": "Colored variants for Loader",
2824
2822
  "name": "variant",
2825
2823
  "parent": {
2826
2824
  "fileName": "src/loader/Loader.tsx",
@@ -3200,7 +3198,7 @@
3200
3198
  },
3201
3199
  "onClose": {
3202
3200
  "defaultValue": null,
3203
- "description": "Called when modal wants to close",
3201
+ "description": "Callback for modal wanting to close",
3204
3202
  "name": "onClose",
3205
3203
  "parent": {
3206
3204
  "fileName": "src/modal/Modal.tsx",
@@ -3221,7 +3219,7 @@
3221
3219
  "defaultValue": {
3222
3220
  "value": "true"
3223
3221
  },
3224
- "description": "If modal should close on overlay click",
3222
+ "description": "If modal should close on overlay click (click outside Modal)",
3225
3223
  "name": "shouldCloseOnOverlayClick",
3226
3224
  "parent": {
3227
3225
  "fileName": "src/modal/Modal.tsx",
@@ -3261,7 +3259,7 @@
3261
3259
  "defaultValue": {
3262
3260
  "value": "true"
3263
3261
  },
3264
- "description": "Toggles addition of a X-button on modal",
3262
+ "description": "Removes close-button(X) when false",
3265
3263
  "name": "closeButton",
3266
3264
  "parent": {
3267
3265
  "fileName": "src/modal/Modal.tsx",
@@ -3280,7 +3278,7 @@
3280
3278
  },
3281
3279
  "parentSelector": {
3282
3280
  "defaultValue": null,
3283
- "description": "Callback for getting parent element modal will attach to",
3281
+ "description": "Callback for setting parent element modal will attach to",
3284
3282
  "name": "parentSelector",
3285
3283
  "parent": {
3286
3284
  "fileName": "src/modal/Modal.tsx",
@@ -3652,7 +3650,7 @@
3652
3650
  "props": {
3653
3651
  "page": {
3654
3652
  "defaultValue": null,
3655
- "description": "Current page",
3653
+ "description": "Current page\n@note Pagination indexing starts at 1",
3656
3654
  "name": "page",
3657
3655
  "parent": {
3658
3656
  "fileName": "src/pagination/Pagination.tsx",
@@ -3858,7 +3856,7 @@
3858
3856
  "defaultValue": {
3859
3857
  "value": "false"
3860
3858
  },
3861
- "description": "Toggles border on panel",
3859
+ "description": "Adds a border to panel when true",
3862
3860
  "name": "border",
3863
3861
  "parent": {
3864
3862
  "fileName": "src/panel/Panel.tsx",
@@ -3919,10 +3917,10 @@
3919
3917
  "filePath": "src/popover/Popover.tsx",
3920
3918
  "displayName": "Popover",
3921
3919
  "props": {
3922
- "anchorEl": {
3920
+ "children": {
3923
3921
  "defaultValue": null,
3924
- "description": "Element popover anchors to",
3925
- "name": "anchorEl",
3922
+ "description": "Popover content",
3923
+ "name": "children",
3926
3924
  "parent": {
3927
3925
  "fileName": "src/popover/Popover.tsx",
3928
3926
  "name": "PopoverProps"
@@ -3935,13 +3933,13 @@
3935
3933
  ],
3936
3934
  "required": true,
3937
3935
  "type": {
3938
- "name": "Element | null"
3936
+ "name": "ReactNode"
3939
3937
  }
3940
3938
  },
3941
- "open": {
3939
+ "anchorEl": {
3942
3940
  "defaultValue": null,
3943
- "description": "Open state",
3944
- "name": "open",
3941
+ "description": "Element popover anchors to",
3942
+ "name": "anchorEl",
3945
3943
  "parent": {
3946
3944
  "fileName": "src/popover/Popover.tsx",
3947
3945
  "name": "PopoverProps"
@@ -3954,13 +3952,13 @@
3954
3952
  ],
3955
3953
  "required": true,
3956
3954
  "type": {
3957
- "name": "boolean"
3955
+ "name": "Element | null"
3958
3956
  }
3959
3957
  },
3960
- "onClose": {
3958
+ "open": {
3961
3959
  "defaultValue": null,
3962
- "description": "onClose callback",
3963
- "name": "onClose",
3960
+ "description": "Open state",
3961
+ "name": "open",
3964
3962
  "parent": {
3965
3963
  "fileName": "src/popover/Popover.tsx",
3966
3964
  "name": "PopoverProps"
@@ -3973,13 +3971,13 @@
3973
3971
  ],
3974
3972
  "required": true,
3975
3973
  "type": {
3976
- "name": "() => void"
3974
+ "name": "boolean"
3977
3975
  }
3978
3976
  },
3979
- "children": {
3977
+ "onClose": {
3980
3978
  "defaultValue": null,
3981
- "description": "Popover content",
3982
- "name": "children",
3979
+ "description": "onClose callback",
3980
+ "name": "onClose",
3983
3981
  "parent": {
3984
3982
  "fileName": "src/popover/Popover.tsx",
3985
3983
  "name": "PopoverProps"
@@ -3992,14 +3990,14 @@
3992
3990
  ],
3993
3991
  "required": true,
3994
3992
  "type": {
3995
- "name": "ReactNode"
3993
+ "name": "() => void"
3996
3994
  }
3997
3995
  },
3998
3996
  "placement": {
3999
3997
  "defaultValue": {
4000
3998
  "value": "\"right\""
4001
3999
  },
4002
- "description": "Orientation for popover",
4000
+ "description": "Orientation for popover\n@note Try to keep general usage to \"top\", \"bottom\", \"left\", \"right\"",
4003
4001
  "name": "placement",
4004
4002
  "parent": {
4005
4003
  "fileName": "src/popover/Popover.tsx",
@@ -4020,7 +4018,7 @@
4020
4018
  "defaultValue": {
4021
4019
  "value": "true"
4022
4020
  },
4023
- "description": "Toggles rendering of arrow",
4021
+ "description": "Adds a arrow from dialog to anchor when true",
4024
4022
  "name": "arrow",
4025
4023
  "parent": {
4026
4024
  "fileName": "src/popover/Popover.tsx",
@@ -4432,7 +4430,7 @@
4432
4430
  "props": {
4433
4431
  "children": {
4434
4432
  "defaultValue": null,
4435
- "description": "Children of type <Bubble />",
4433
+ "description": "Children of type <SpeechBubble.Bubble />",
4436
4434
  "name": "children",
4437
4435
  "parent": {
4438
4436
  "fileName": "src/speech-bubble/SpeechBubble.tsx",
@@ -4470,7 +4468,7 @@
4470
4468
  },
4471
4469
  "illustration": {
4472
4470
  "defaultValue": null,
4473
- "description": "Illustration for messenger",
4471
+ "description": "Illustration for messenger. Regular text for initials works to",
4474
4472
  "name": "illustration",
4475
4473
  "parent": {
4476
4474
  "fileName": "src/speech-bubble/SpeechBubble.tsx",
@@ -4489,7 +4487,7 @@
4489
4487
  },
4490
4488
  "backgroundColor": {
4491
4489
  "defaultValue": null,
4492
- "description": "Background color bubbles",
4490
+ "description": "Background color on bubbles",
4493
4491
  "name": "backgroundColor",
4494
4492
  "parent": {
4495
4493
  "fileName": "src/speech-bubble/SpeechBubble.tsx",
@@ -4611,7 +4609,7 @@
4611
4609
  },
4612
4610
  "disabled": {
4613
4611
  "defaultValue": null,
4614
- "description": "Disables interaction with element",
4612
+ "description": "Disables interaction with element\n@note We recommend not using disabled if possible",
4615
4613
  "name": "disabled",
4616
4614
  "parent": {
4617
4615
  "fileName": "src/step-indicator/Step.tsx",
@@ -4630,7 +4628,7 @@
4630
4628
  },
4631
4629
  "index": {
4632
4630
  "defaultValue": null,
4633
- "description": "Handled by StepIndicator",
4631
+ "description": "Handled by StepIndicator\n@private",
4634
4632
  "name": "index",
4635
4633
  "parent": {
4636
4634
  "fileName": "src/step-indicator/Step.tsx",
@@ -4834,7 +4832,7 @@
4834
4832
  "props": {
4835
4833
  "children": {
4836
4834
  "defaultValue": null,
4837
- "description": "Text content under indicator",
4835
+ "description": "Text content by indicator",
4838
4836
  "name": "children",
4839
4837
  "parent": {
4840
4838
  "fileName": "src/stepper/Step.tsx",
@@ -4855,7 +4853,7 @@
4855
4853
  "defaultValue": {
4856
4854
  "value": "0"
4857
4855
  },
4858
- "description": "Handled by Stepper",
4856
+ "description": "Handled by Stepper\n@private",
4859
4857
  "name": "index",
4860
4858
  "parent": {
4861
4859
  "fileName": "src/stepper/Step.tsx",
@@ -5084,7 +5082,7 @@
5084
5082
  "defaultValue": {
5085
5083
  "value": "false"
5086
5084
  },
5087
- "description": "Column is sortable",
5085
+ "description": "Column is sortable, adds indicators to show sorting",
5088
5086
  "name": "sortable",
5089
5087
  "parent": {
5090
5088
  "fileName": "src/table/ColumnHeader.tsx",
@@ -5124,7 +5122,7 @@
5124
5122
  "defaultValue": {
5125
5123
  "value": "\"left\""
5126
5124
  },
5127
- "description": "Content alignment",
5125
+ "description": "Content alignment inside cell",
5128
5126
  "name": "align",
5129
5127
  "parent": {
5130
5128
  "fileName": "react/src/table/HeaderCell.tsx",
@@ -5189,7 +5187,7 @@
5189
5187
  "defaultValue": {
5190
5188
  "value": "\"left\""
5191
5189
  },
5192
- "description": "Content alignment",
5190
+ "description": "Content alignment inside cell",
5193
5191
  "name": "align",
5194
5192
  "parent": {
5195
5193
  "fileName": "src/table/DataCell.tsx",
@@ -5353,7 +5351,7 @@
5353
5351
  "defaultValue": {
5354
5352
  "value": "false"
5355
5353
  },
5356
- "description": "Disable expansion",
5354
+ "description": "Disable expansio",
5357
5355
  "name": "expansionDisabled",
5358
5356
  "parent": {
5359
5357
  "fileName": "src/table/ExpandableRow.tsx",
@@ -5502,7 +5500,7 @@
5502
5500
  "defaultValue": {
5503
5501
  "value": "\"left\""
5504
5502
  },
5505
- "description": "Content alignment",
5503
+ "description": "Content alignment inside cell",
5506
5504
  "name": "align",
5507
5505
  "parent": {
5508
5506
  "fileName": "src/table/HeaderCell.tsx",
@@ -5754,7 +5752,7 @@
5754
5752
  "props": {
5755
5753
  "label": {
5756
5754
  "defaultValue": null,
5757
- "description": "Content",
5755
+ "description": "Tab label",
5758
5756
  "name": "label",
5759
5757
  "parent": {
5760
5758
  "fileName": "src/tabs/Tab.tsx",
@@ -5773,7 +5771,7 @@
5773
5771
  },
5774
5772
  "icon": {
5775
5773
  "defaultValue": null,
5776
- "description": "Icon",
5774
+ "description": "Tab Icon",
5777
5775
  "name": "icon",
5778
5776
  "parent": {
5779
5777
  "fileName": "src/tabs/Tab.tsx",
@@ -5876,7 +5874,7 @@
5876
5874
  "props": {
5877
5875
  "children": {
5878
5876
  "defaultValue": null,
5879
- "description": "Tab elements",
5877
+ "description": "<Tabs.Tab /> elements",
5880
5878
  "name": "children",
5881
5879
  "parent": {
5882
5880
  "fileName": "src/tabs/TabList.tsx",
@@ -5958,7 +5956,7 @@
5958
5956
  "props": {
5959
5957
  "children": {
5960
5958
  "defaultValue": null,
5961
- "description": "Tab panel",
5959
+ "description": "Tab panel content",
5962
5960
  "name": "children",
5963
5961
  "parent": {
5964
5962
  "fileName": "src/tabs/TabPanel.tsx",
@@ -6038,25 +6036,6 @@
6038
6036
  "filePath": "src/tabs/Tabs.tsx",
6039
6037
  "displayName": "Tabs",
6040
6038
  "props": {
6041
- "children": {
6042
- "defaultValue": null,
6043
- "description": "Tabs elements",
6044
- "name": "children",
6045
- "parent": {
6046
- "fileName": "src/tabs/Tabs.tsx",
6047
- "name": "TabsProps"
6048
- },
6049
- "declarations": [
6050
- {
6051
- "fileName": "src/tabs/Tabs.tsx",
6052
- "name": "TabsProps"
6053
- }
6054
- ],
6055
- "required": true,
6056
- "type": {
6057
- "name": "ReactNode"
6058
- }
6059
- },
6060
6039
  "size": {
6061
6040
  "defaultValue": {
6062
6041
  "value": "\"medium\""
@@ -6080,7 +6059,7 @@
6080
6059
  },
6081
6060
  "onChange": {
6082
6061
  "defaultValue": null,
6083
- "description": "onChange",
6062
+ "description": "onChange callback for selected Tab",
6084
6063
  "name": "onChange",
6085
6064
  "parent": {
6086
6065
  "fileName": "src/tabs/Tabs.tsx",
@@ -6202,7 +6181,7 @@
6202
6181
  "props": {
6203
6182
  "children": {
6204
6183
  "defaultValue": null,
6205
- "description": "Tag",
6184
+ "description": "Tag label",
6206
6185
  "name": "children",
6207
6186
  "parent": {
6208
6187
  "fileName": "src/tag/Tag.tsx",
@@ -6221,7 +6200,7 @@
6221
6200
  },
6222
6201
  "variant": {
6223
6202
  "defaultValue": null,
6224
- "description": "Changes background-color and border-color",
6203
+ "description": "Changes background and border color",
6225
6204
  "name": "variant",
6226
6205
  "parent": {
6227
6206
  "fileName": "src/tag/Tag.tsx",
@@ -6242,7 +6221,7 @@
6242
6221
  "defaultValue": {
6243
6222
  "value": "medium"
6244
6223
  },
6245
- "description": "Changes sizing of tag",
6224
+ "description": "Changes padding and font-sizes",
6246
6225
  "name": "size",
6247
6226
  "parent": {
6248
6227
  "fileName": "src/tag/Tag.tsx",
@@ -6383,7 +6362,7 @@
6383
6362
  },
6384
6363
  "onChange": {
6385
6364
  "defaultValue": null,
6386
- "description": "Returns elements that wants to be active",
6365
+ "description": "Callback for selected toggle",
6387
6366
  "name": "onChange",
6388
6367
  "parent": {
6389
6368
  "fileName": "src/toggle-group/ToggleGroup.tsx",
@@ -6547,7 +6526,7 @@
6547
6526
  "props": {
6548
6527
  "children": {
6549
6528
  "defaultValue": null,
6550
- "description": "Element tooltip anchors to",
6529
+ "description": "Element tooltip anchors to\n@note Needs to be React.ReactElement, does not support multiple children/react fragment",
6551
6530
  "name": "children",
6552
6531
  "parent": {
6553
6532
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6587,7 +6566,7 @@
6587
6566
  "defaultValue": {
6588
6567
  "value": "false"
6589
6568
  },
6590
- "description": "Tells tooltip to start in open state\n@note \"open\"-prop overwrites this",
6569
+ "description": "Tells tooltip to start in open state.\nUse sparingly synce hover/focus on other elements will close it\n@note \"open\"-prop overwrites this",
6591
6570
  "name": "defaultOpen",
6592
6571
  "parent": {
6593
6572
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6669,7 +6648,7 @@
6669
6648
  },
6670
6649
  "content": {
6671
6650
  "defaultValue": null,
6672
- "description": "Content shown in tooltip",
6651
+ "description": "Text-content inside tooltip",
6673
6652
  "name": "content",
6674
6653
  "parent": {
6675
6654
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6690,7 +6669,7 @@
6690
6669
  "defaultValue": {
6691
6670
  "value": "80"
6692
6671
  },
6693
- "description": "Sets max allowed character length",
6672
+ "description": "Sets max allowed character length.",
6694
6673
  "name": "maxChar",
6695
6674
  "parent": {
6696
6675
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6838,7 +6817,7 @@
6838
6817
  },
6839
6818
  "spacing": {
6840
6819
  "defaultValue": null,
6841
- "description": "Adds margins to typo",
6820
+ "description": "Adds margin-bottom",
6842
6821
  "name": "spacing",
6843
6822
  "parent": {
6844
6823
  "fileName": "src/typography/BodyLong.tsx",
@@ -6941,7 +6920,7 @@
6941
6920
  },
6942
6921
  "spacing": {
6943
6922
  "defaultValue": null,
6944
- "description": "Adds margins to typo",
6923
+ "description": "Adds margin-bottom",
6945
6924
  "name": "spacing",
6946
6925
  "parent": {
6947
6926
  "fileName": "src/typography/BodyShort.tsx",
@@ -7044,7 +7023,7 @@
7044
7023
  },
7045
7024
  "spacing": {
7046
7025
  "defaultValue": null,
7047
- "description": "Adds margins to typo",
7026
+ "description": "Adds margin-bottom",
7048
7027
  "name": "spacing",
7049
7028
  "parent": {
7050
7029
  "fileName": "src/typography/Detail.tsx",
@@ -7128,7 +7107,7 @@
7128
7107
  },
7129
7108
  "size": {
7130
7109
  "defaultValue": null,
7131
- "description": "Sizes from largest \"2xl\" to smallest \"s\"",
7110
+ "description": "Changes text-sizing",
7132
7111
  "name": "size",
7133
7112
  "parent": {
7134
7113
  "fileName": "src/typography/Heading.tsx",
@@ -7168,7 +7147,7 @@
7168
7147
  "defaultValue": {
7169
7148
  "value": "false"
7170
7149
  },
7171
- "description": "Adds margins to typo",
7150
+ "description": "Adds margin-bottom",
7172
7151
  "name": "spacing",
7173
7152
  "parent": {
7174
7153
  "fileName": "src/typography/Heading.tsx",
@@ -7250,7 +7229,7 @@
7250
7229
  },
7251
7230
  "spacing": {
7252
7231
  "defaultValue": null,
7253
- "description": "Adds margins to typo",
7232
+ "description": "Adds margin-bottom",
7254
7233
  "name": "spacing",
7255
7234
  "parent": {
7256
7235
  "fileName": "src/typography/Ingress.tsx",
@@ -7353,7 +7332,7 @@
7353
7332
  },
7354
7333
  "spacing": {
7355
7334
  "defaultValue": null,
7356
- "description": "Adds margins to typo",
7335
+ "description": "Adds margin-bottom",
7357
7336
  "name": "spacing",
7358
7337
  "parent": {
7359
7338
  "fileName": "src/typography/Label.tsx",
@@ -7551,7 +7530,7 @@
7551
7530
  },
7552
7531
  "disabled": {
7553
7532
  "defaultValue": null,
7554
- "description": "Disables element",
7533
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
7555
7534
  "name": "disabled",
7556
7535
  "parent": {
7557
7536
  "fileName": "react/src/form/useFormField.ts",
@@ -7654,7 +7633,7 @@
7654
7633
  "defaultValue": {
7655
7634
  "value": "false"
7656
7635
  },
7657
- "description": "Checkbox has error",
7636
+ "description": "Adds error indication on checkbox",
7658
7637
  "name": "error",
7659
7638
  "parent": {
7660
7639
  "fileName": "src/form/checkbox/Checkbox.tsx",
@@ -7673,7 +7652,7 @@
7673
7652
  },
7674
7653
  "children": {
7675
7654
  "defaultValue": null,
7676
- "description": "Label for checkbox",
7655
+ "description": "Checkbox label",
7677
7656
  "name": "children",
7678
7657
  "parent": {
7679
7658
  "fileName": "src/form/checkbox/Checkbox.tsx",
@@ -7770,7 +7749,7 @@
7770
7749
  },
7771
7750
  "disabled": {
7772
7751
  "defaultValue": null,
7773
- "description": "Disables element",
7752
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
7774
7753
  "name": "disabled",
7775
7754
  "parent": {
7776
7755
  "fileName": "react/src/form/useFormField.ts",
@@ -7871,7 +7850,7 @@
7871
7850
  "props": {
7872
7851
  "children": {
7873
7852
  "defaultValue": null,
7874
- "description": "Checkboxes",
7853
+ "description": "Collection of <Checkbox/>",
7875
7854
  "name": "children",
7876
7855
  "parent": {
7877
7856
  "fileName": "src/form/checkbox/CheckboxGroup.tsx",
@@ -7890,7 +7869,7 @@
7890
7869
  },
7891
7870
  "value": {
7892
7871
  "defaultValue": null,
7893
- "description": "Controlled state for group",
7872
+ "description": "Controlled state for checkboxes.",
7894
7873
  "name": "value",
7895
7874
  "parent": {
7896
7875
  "fileName": "src/form/checkbox/CheckboxGroup.tsx",
@@ -8044,7 +8023,7 @@
8044
8023
  },
8045
8024
  "disabled": {
8046
8025
  "defaultValue": null,
8047
- "description": "Disables element",
8026
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8048
8027
  "name": "disabled",
8049
8028
  "parent": {
8050
8029
  "fileName": "react/src/form/useFormField.ts",
@@ -8145,7 +8124,7 @@
8145
8124
  "props": {
8146
8125
  "children": {
8147
8126
  "defaultValue": null,
8148
- "description": "ErrorSummaryItems",
8127
+ "description": "Collectipn of ErrorSummary.Item",
8149
8128
  "name": "children",
8150
8129
  "parent": {
8151
8130
  "fileName": "src/form/error-summary/ErrorSummary.tsx",
@@ -8206,7 +8185,7 @@
8206
8185
  "defaultValue": {
8207
8186
  "value": "\"h2\""
8208
8187
  },
8209
- "description": "Allows setting a different HTML <tag>",
8188
+ "description": "Allows setting a different HTML h-tag",
8210
8189
  "name": "headingTag",
8211
8190
  "parent": {
8212
8191
  "fileName": "src/form/error-summary/ErrorSummary.tsx",
@@ -8332,7 +8311,7 @@
8332
8311
  "props": {
8333
8312
  "children": {
8334
8313
  "defaultValue": null,
8335
- "description": "Label for radio",
8314
+ "description": "Radio label",
8336
8315
  "name": "children",
8337
8316
  "parent": {
8338
8317
  "fileName": "src/form/radio/Radio.tsx",
@@ -8389,7 +8368,7 @@
8389
8368
  },
8390
8369
  "disabled": {
8391
8370
  "defaultValue": null,
8392
- "description": "Disables element",
8371
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8393
8372
  "name": "disabled",
8394
8373
  "parent": {
8395
8374
  "fileName": "react/src/form/useFormField.ts",
@@ -8490,7 +8469,7 @@
8490
8469
  "props": {
8491
8470
  "children": {
8492
8471
  "defaultValue": null,
8493
- "description": "Collection of <Radio>-elements",
8472
+ "description": "Collection of <Radio />-elements",
8494
8473
  "name": "children",
8495
8474
  "parent": {
8496
8475
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8528,7 +8507,7 @@
8528
8507
  },
8529
8508
  "defaultValue": {
8530
8509
  "defaultValue": null,
8531
- "description": "Default checked radiobutton",
8510
+ "description": "Default checked Radio",
8532
8511
  "name": "defaultValue",
8533
8512
  "parent": {
8534
8513
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8547,7 +8526,7 @@
8547
8526
  },
8548
8527
  "value": {
8549
8528
  "defaultValue": null,
8550
- "description": "Controlled state for Radiobutton",
8529
+ "description": "Controlled state for Radio",
8551
8530
  "name": "value",
8552
8531
  "parent": {
8553
8532
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8568,7 +8547,7 @@
8568
8547
  "defaultValue": {
8569
8548
  "value": "() => {}"
8570
8549
  },
8571
- "description": "Returns current checked radiobutton in group",
8550
+ "description": "Returns current checked Radio in group",
8572
8551
  "name": "onChange",
8573
8552
  "parent": {
8574
8553
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8701,7 +8680,7 @@
8701
8680
  },
8702
8681
  "disabled": {
8703
8682
  "defaultValue": null,
8704
- "description": "Disables element",
8683
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8705
8684
  "name": "disabled",
8706
8685
  "parent": {
8707
8686
  "fileName": "react/src/form/useFormField.ts",
@@ -8802,7 +8781,7 @@
8802
8781
  "props": {
8803
8782
  "label": {
8804
8783
  "defaultValue": null,
8805
- "description": "Search label\n@info Will be hidden by default, is required for accessibility reasons.",
8784
+ "description": "Search label\n@note Will be hidden by default, is required for accessibility reasons.",
8806
8785
  "name": "label",
8807
8786
  "parent": {
8808
8787
  "fileName": "src/form/search/Search.tsx",
@@ -8924,7 +8903,7 @@
8924
8903
  "defaultValue": {
8925
8904
  "value": "\"primary\""
8926
8905
  },
8927
- "description": "Changes button-variant",
8906
+ "description": "Changes button-variant, \"simple\" removes button",
8928
8907
  "name": "variant",
8929
8908
  "parent": {
8930
8909
  "fileName": "src/form/search/Search.tsx",
@@ -8962,7 +8941,7 @@
8962
8941
  },
8963
8942
  "disabled": {
8964
8943
  "defaultValue": null,
8965
- "description": "Disables element",
8944
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8966
8945
  "name": "disabled",
8967
8946
  "parent": {
8968
8947
  "fileName": "react/src/form/useFormField.ts",
@@ -9081,9 +9060,7 @@
9081
9060
  }
9082
9061
  },
9083
9062
  "disabled": {
9084
- "defaultValue": {
9085
- "value": "false"
9086
- },
9063
+ "defaultValue": null,
9087
9064
  "description": "Prevent the user from interacting with the button: it cannot be pressed or focused.\n@note Avoid using if possible for accessibility purposes",
9088
9065
  "name": "disabled",
9089
9066
  "parent": {