@navikt/ds-react 0.18.3 → 0.18.4

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 (112) hide show
  1. package/_docs.json +152 -192
  2. package/esm/accordion/Accordion.d.ts +1 -1
  3. package/esm/accordion/AccordionContent.d.ts +3 -1
  4. package/esm/accordion/AccordionContent.js.map +1 -1
  5. package/esm/accordion/AccordionHeader.d.ts +1 -1
  6. package/esm/accordion/AccordionItem.d.ts +6 -5
  7. package/esm/accordion/AccordionItem.js.map +1 -1
  8. package/esm/alert/Alert.d.ts +3 -2
  9. package/esm/alert/Alert.js.map +1 -1
  10. package/esm/button/Button.d.ts +1 -2
  11. package/esm/button/Button.js.map +1 -1
  12. package/esm/form/ConfirmationPanel.d.ts +1 -1
  13. package/esm/form/Fieldset/Fieldset.d.ts +4 -1
  14. package/esm/form/Fieldset/Fieldset.js.map +1 -1
  15. package/esm/form/Select.d.ts +2 -2
  16. package/esm/form/Switch.d.ts +1 -0
  17. package/esm/form/Switch.js.map +1 -1
  18. package/esm/form/TextField.d.ts +4 -4
  19. package/esm/form/Textarea.d.ts +10 -3
  20. package/esm/form/Textarea.js.map +1 -1
  21. package/esm/form/checkbox/Checkbox.d.ts +2 -2
  22. package/esm/form/checkbox/CheckboxGroup.d.ts +2 -2
  23. package/esm/form/error-summary/ErrorSummary.d.ts +2 -2
  24. package/esm/form/radio/Radio.d.ts +1 -1
  25. package/esm/form/radio/RadioGroup.d.ts +4 -4
  26. package/esm/form/search/Search.d.ts +2 -2
  27. package/esm/form/useFormField.d.ts +1 -0
  28. package/esm/form/useFormField.js.map +1 -1
  29. package/esm/help-text/HelpText.d.ts +12 -1
  30. package/esm/help-text/HelpText.js.map +1 -1
  31. package/esm/link-panel/LinkPanel.d.ts +2 -1
  32. package/esm/link-panel/LinkPanel.js.map +1 -1
  33. package/esm/loader/Loader.d.ts +6 -2
  34. package/esm/loader/Loader.js.map +1 -1
  35. package/esm/modal/Modal.d.ts +4 -4
  36. package/esm/pagination/Pagination.d.ts +1 -0
  37. package/esm/pagination/Pagination.js.map +1 -1
  38. package/esm/panel/Panel.d.ts +1 -1
  39. package/esm/popover/Popover.d.ts +7 -6
  40. package/esm/popover/Popover.js.map +1 -1
  41. package/esm/speech-bubble/SpeechBubble.d.ts +3 -3
  42. package/esm/step-indicator/Step.d.ts +2 -0
  43. package/esm/step-indicator/Step.js.map +1 -1
  44. package/esm/stepper/Step.d.ts +2 -1
  45. package/esm/stepper/Step.js.map +1 -1
  46. package/esm/table/ColumnHeader.d.ts +1 -1
  47. package/esm/table/DataCell.d.ts +1 -1
  48. package/esm/table/ExpandableRow.d.ts +1 -1
  49. package/esm/table/HeaderCell.d.ts +1 -1
  50. package/esm/tabs/Tab.d.ts +2 -2
  51. package/esm/tabs/TabList.d.ts +1 -1
  52. package/esm/tabs/TabPanel.d.ts +1 -1
  53. package/esm/tabs/Tabs.d.ts +1 -4
  54. package/esm/tabs/Tabs.js.map +1 -1
  55. package/esm/tag/Tag.d.ts +3 -4
  56. package/esm/tag/Tag.js.map +1 -1
  57. package/esm/toggle-group/ToggleGroup.d.ts +1 -1
  58. package/esm/tooltip/Tooltip.d.ts +8 -6
  59. package/esm/tooltip/Tooltip.js.map +1 -1
  60. package/esm/typography/BodyLong.d.ts +1 -1
  61. package/esm/typography/BodyShort.d.ts +1 -1
  62. package/esm/typography/Detail.d.ts +1 -1
  63. package/esm/typography/Heading.d.ts +2 -2
  64. package/esm/typography/Ingress.d.ts +1 -1
  65. package/esm/typography/Label.d.ts +1 -1
  66. package/package.json +2 -2
  67. package/src/accordion/Accordion.tsx +1 -1
  68. package/src/accordion/AccordionContent.tsx +3 -1
  69. package/src/accordion/AccordionHeader.tsx +1 -1
  70. package/src/accordion/AccordionItem.tsx +6 -5
  71. package/src/alert/Alert.tsx +3 -2
  72. package/src/button/Button.tsx +1 -2
  73. package/src/form/ConfirmationPanel.tsx +1 -1
  74. package/src/form/Fieldset/Fieldset.tsx +4 -1
  75. package/src/form/Select.tsx +2 -2
  76. package/src/form/Switch.tsx +1 -0
  77. package/src/form/TextField.tsx +4 -4
  78. package/src/form/Textarea.tsx +10 -3
  79. package/src/form/checkbox/Checkbox.tsx +2 -2
  80. package/src/form/checkbox/CheckboxGroup.tsx +2 -2
  81. package/src/form/error-summary/ErrorSummary.tsx +2 -2
  82. package/src/form/radio/Radio.tsx +1 -1
  83. package/src/form/radio/RadioGroup.tsx +4 -4
  84. package/src/form/search/Search.tsx +2 -2
  85. package/src/form/useFormField.ts +1 -0
  86. package/src/help-text/HelpText.tsx +12 -1
  87. package/src/link-panel/LinkPanel.tsx +2 -1
  88. package/src/loader/Loader.tsx +5 -4
  89. package/src/modal/Modal.tsx +4 -4
  90. package/src/pagination/Pagination.tsx +1 -0
  91. package/src/panel/Panel.tsx +1 -1
  92. package/src/popover/Popover.tsx +7 -6
  93. package/src/speech-bubble/SpeechBubble.tsx +3 -3
  94. package/src/step-indicator/Step.tsx +2 -0
  95. package/src/stepper/Step.tsx +2 -1
  96. package/src/table/ColumnHeader.tsx +1 -1
  97. package/src/table/DataCell.tsx +1 -1
  98. package/src/table/ExpandableRow.tsx +1 -1
  99. package/src/table/HeaderCell.tsx +1 -1
  100. package/src/tabs/Tab.tsx +2 -2
  101. package/src/tabs/TabList.tsx +1 -1
  102. package/src/tabs/TabPanel.tsx +1 -1
  103. package/src/tabs/Tabs.tsx +1 -4
  104. package/src/tag/Tag.tsx +3 -4
  105. package/src/toggle-group/ToggleGroup.tsx +1 -1
  106. package/src/tooltip/Tooltip.tsx +8 -6
  107. package/src/typography/BodyLong.tsx +1 -1
  108. package/src/typography/BodyShort.tsx +1 -1
  109. package/src/typography/Detail.tsx +1 -1
  110. package/src/typography/Heading.tsx +2 -2
  111. package/src/typography/Ingress.tsx +1 -1
  112. 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": {
@@ -732,7 +730,7 @@
732
730
  "defaultValue": {
733
731
  "value": "false"
734
732
  },
735
- "description": "Checkbox has error",
733
+ "description": "Adds error indication on checkbox",
736
734
  "name": "error",
737
735
  "parent": {
738
736
  "fileName": "react/src/form/checkbox/Checkbox.tsx",
@@ -770,7 +768,7 @@
770
768
  },
771
769
  "disabled": {
772
770
  "defaultValue": null,
773
- "description": "Disables element",
771
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
774
772
  "name": "disabled",
775
773
  "parent": {
776
774
  "fileName": "react/src/form/useFormField.ts",
@@ -844,46 +842,6 @@
844
842
  "name": "any"
845
843
  }
846
844
  },
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
845
  "ref": {
888
846
  "defaultValue": null,
889
847
  "description": "",
@@ -916,7 +874,7 @@
916
874
  "props": {
917
875
  "children": {
918
876
  "defaultValue": null,
919
- "description": "Collection of <option>-elements",
877
+ "description": "Collection of <option />-elements",
920
878
  "name": "children",
921
879
  "parent": {
922
880
  "fileName": "src/form/Select.tsx",
@@ -935,7 +893,7 @@
935
893
  },
936
894
  "htmlSize": {
937
895
  "defaultValue": null,
938
- "description": "Expose the HTML size attribute",
896
+ "description": "Exposes the HTML size attribute",
939
897
  "name": "htmlSize",
940
898
  "parent": {
941
899
  "fileName": "src/form/Select.tsx",
@@ -1049,7 +1007,7 @@
1049
1007
  },
1050
1008
  "disabled": {
1051
1009
  "defaultValue": null,
1052
- "description": "Disables element",
1010
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1053
1011
  "name": "disabled",
1054
1012
  "parent": {
1055
1013
  "fileName": "react/src/form/useFormField.ts",
@@ -1206,7 +1164,9 @@
1206
1164
  }
1207
1165
  },
1208
1166
  "position": {
1209
- "defaultValue": null,
1167
+ "defaultValue": {
1168
+ "value": "\"left\""
1169
+ },
1210
1170
  "description": "Positions switch on left/right side of label",
1211
1171
  "name": "position",
1212
1172
  "parent": {
@@ -1245,7 +1205,7 @@
1245
1205
  },
1246
1206
  "disabled": {
1247
1207
  "defaultValue": null,
1248
- "description": "Disables element",
1208
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1249
1209
  "name": "disabled",
1250
1210
  "parent": {
1251
1211
  "fileName": "react/src/form/useFormField.ts",
@@ -1346,7 +1306,7 @@
1346
1306
  "props": {
1347
1307
  "value": {
1348
1308
  "defaultValue": null,
1349
- "description": "The current value (controlled).",
1309
+ "description": "Controlled value",
1350
1310
  "name": "value",
1351
1311
  "parent": {
1352
1312
  "fileName": "src/form/TextField.tsx",
@@ -1365,7 +1325,7 @@
1365
1325
  },
1366
1326
  "defaultValue": {
1367
1327
  "defaultValue": null,
1368
- "description": "The default value (uncontrolled).",
1328
+ "description": "Defaults input-value without needing controlled-state",
1369
1329
  "name": "defaultValue",
1370
1330
  "parent": {
1371
1331
  "fileName": "src/form/TextField.tsx",
@@ -1384,7 +1344,7 @@
1384
1344
  },
1385
1345
  "htmlSize": {
1386
1346
  "defaultValue": null,
1387
- "description": "Expose the HTML size attribute",
1347
+ "description": "Exposes the HTML size attribute",
1388
1348
  "name": "htmlSize",
1389
1349
  "parent": {
1390
1350
  "fileName": "src/form/TextField.tsx",
@@ -1443,7 +1403,7 @@
1443
1403
  "defaultValue": {
1444
1404
  "value": "\"text\""
1445
1405
  },
1446
- "description": "Type of form control",
1406
+ "description": "Type of form control. Picking the correct type helps user fill inn their required information",
1447
1407
  "name": "type",
1448
1408
  "parent": {
1449
1409
  "fileName": "src/form/TextField.tsx",
@@ -1519,7 +1479,7 @@
1519
1479
  },
1520
1480
  "disabled": {
1521
1481
  "defaultValue": null,
1522
- "description": "Disables element",
1482
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1523
1483
  "name": "disabled",
1524
1484
  "parent": {
1525
1485
  "fileName": "react/src/form/useFormField.ts",
@@ -1620,7 +1580,7 @@
1620
1580
  "props": {
1621
1581
  "maxLength": {
1622
1582
  "defaultValue": null,
1623
- "description": "Visually allowed length of content",
1583
+ "description": "Allowed character-count for content\n@note This is just a visual validator, you need to set actual character-limits if needed",
1624
1584
  "name": "maxLength",
1625
1585
  "parent": {
1626
1586
  "fileName": "src/form/Textarea.tsx",
@@ -1639,7 +1599,7 @@
1639
1599
  },
1640
1600
  "value": {
1641
1601
  "defaultValue": null,
1642
- "description": "",
1602
+ "description": "Controlled value",
1643
1603
  "name": "value",
1644
1604
  "parent": {
1645
1605
  "fileName": "src/form/Textarea.tsx",
@@ -1658,7 +1618,7 @@
1658
1618
  },
1659
1619
  "defaultValue": {
1660
1620
  "defaultValue": null,
1661
- "description": "",
1621
+ "description": "Defaults input-value without needing controlled-state",
1662
1622
  "name": "defaultValue",
1663
1623
  "parent": {
1664
1624
  "fileName": "src/form/Textarea.tsx",
@@ -1677,7 +1637,7 @@
1677
1637
  },
1678
1638
  "maxRows": {
1679
1639
  "defaultValue": null,
1680
- "description": "Maximum number of rows to display.\n@bug Internal scrolling with `maxLength` scrolls over maxLength-text",
1640
+ "description": "Maximum number of character rows to display.\n@bug Internal scrolling with `maxLength` scrolls over maxLength-text",
1681
1641
  "name": "maxRows",
1682
1642
  "parent": {
1683
1643
  "fileName": "src/form/Textarea.tsx",
@@ -1696,7 +1656,7 @@
1696
1656
  },
1697
1657
  "minRows": {
1698
1658
  "defaultValue": null,
1699
- "description": "Minimum number of rows to display.",
1659
+ "description": "Minimum number of character-rows to display when empty.",
1700
1660
  "name": "minRows",
1701
1661
  "parent": {
1702
1662
  "fileName": "src/form/Textarea.tsx",
@@ -1810,7 +1770,7 @@
1810
1770
  },
1811
1771
  "disabled": {
1812
1772
  "defaultValue": null,
1813
- "description": "Disables element",
1773
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
1814
1774
  "name": "disabled",
1815
1775
  "parent": {
1816
1776
  "fileName": "react/src/form/useFormField.ts",
@@ -2396,7 +2356,7 @@
2396
2356
  "props": {
2397
2357
  "children": {
2398
2358
  "defaultValue": null,
2399
- "description": "Component content",
2359
+ "description": "Helptext-dialog content",
2400
2360
  "name": "children",
2401
2361
  "parent": {
2402
2362
  "fileName": "src/help-text/HelpText.tsx",
@@ -2413,6 +2373,48 @@
2413
2373
  "name": "ReactNode"
2414
2374
  }
2415
2375
  },
2376
+ "title": {
2377
+ "defaultValue": {
2378
+ "value": "hjelp"
2379
+ },
2380
+ "description": "Adds a title-tooltip with the given text",
2381
+ "name": "title",
2382
+ "parent": {
2383
+ "fileName": "src/help-text/HelpText.tsx",
2384
+ "name": "HelpTextProps"
2385
+ },
2386
+ "declarations": [
2387
+ {
2388
+ "fileName": "src/help-text/HelpText.tsx",
2389
+ "name": "HelpTextProps"
2390
+ }
2391
+ ],
2392
+ "required": false,
2393
+ "type": {
2394
+ "name": "string"
2395
+ }
2396
+ },
2397
+ "placement": {
2398
+ "defaultValue": {
2399
+ "value": "top"
2400
+ },
2401
+ "description": "Default dialog-placement on open",
2402
+ "name": "placement",
2403
+ "parent": {
2404
+ "fileName": "src/help-text/HelpText.tsx",
2405
+ "name": "HelpTextProps"
2406
+ },
2407
+ "declarations": [
2408
+ {
2409
+ "fileName": "src/help-text/HelpText.tsx",
2410
+ "name": "HelpTextProps"
2411
+ }
2412
+ ],
2413
+ "required": false,
2414
+ "type": {
2415
+ "name": "Placement"
2416
+ }
2417
+ },
2416
2418
  "className": {
2417
2419
  "defaultValue": null,
2418
2420
  "description": "",
@@ -2453,27 +2455,6 @@
2453
2455
  "name": "\"absolute\" | \"fixed\""
2454
2456
  }
2455
2457
  },
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
2458
  "ref": {
2478
2459
  "defaultValue": null,
2479
2460
  "description": "",
@@ -2585,7 +2566,7 @@
2585
2566
  "defaultValue": {
2586
2567
  "value": "true"
2587
2568
  },
2588
- "description": "Toggles border on panel",
2569
+ "description": "Adds border to panel if true",
2589
2570
  "name": "border",
2590
2571
  "parent": {
2591
2572
  "fileName": "src/link-panel/LinkPanel.tsx",
@@ -2757,7 +2738,7 @@
2757
2738
  "defaultValue": {
2758
2739
  "value": "medium"
2759
2740
  },
2760
- "description": "Changes sizing\n64px | 40px | 32px | 24px | 20px | 16px",
2741
+ "description": "Changes Loader width/height\n64px | 40px | 32px | 24px | 20px | 16px",
2761
2742
  "name": "size",
2762
2743
  "parent": {
2763
2744
  "fileName": "src/loader/Loader.tsx",
@@ -2799,7 +2780,7 @@
2799
2780
  "defaultValue": {
2800
2781
  "value": "false"
2801
2782
  },
2802
- "description": "",
2783
+ "description": "Sets svg-background to transparent",
2803
2784
  "name": "transparent",
2804
2785
  "parent": {
2805
2786
  "fileName": "src/loader/Loader.tsx",
@@ -2820,7 +2801,7 @@
2820
2801
  "defaultValue": {
2821
2802
  "value": "neutral"
2822
2803
  },
2823
- "description": "Colored variants for loader",
2804
+ "description": "Colored variants for Loader",
2824
2805
  "name": "variant",
2825
2806
  "parent": {
2826
2807
  "fileName": "src/loader/Loader.tsx",
@@ -3200,7 +3181,7 @@
3200
3181
  },
3201
3182
  "onClose": {
3202
3183
  "defaultValue": null,
3203
- "description": "Called when modal wants to close",
3184
+ "description": "Callback for modal wanting to close",
3204
3185
  "name": "onClose",
3205
3186
  "parent": {
3206
3187
  "fileName": "src/modal/Modal.tsx",
@@ -3221,7 +3202,7 @@
3221
3202
  "defaultValue": {
3222
3203
  "value": "true"
3223
3204
  },
3224
- "description": "If modal should close on overlay click",
3205
+ "description": "If modal should close on overlay click (click outside Modal)",
3225
3206
  "name": "shouldCloseOnOverlayClick",
3226
3207
  "parent": {
3227
3208
  "fileName": "src/modal/Modal.tsx",
@@ -3261,7 +3242,7 @@
3261
3242
  "defaultValue": {
3262
3243
  "value": "true"
3263
3244
  },
3264
- "description": "Toggles addition of a X-button on modal",
3245
+ "description": "Removes close-button(X) when false",
3265
3246
  "name": "closeButton",
3266
3247
  "parent": {
3267
3248
  "fileName": "src/modal/Modal.tsx",
@@ -3280,7 +3261,7 @@
3280
3261
  },
3281
3262
  "parentSelector": {
3282
3263
  "defaultValue": null,
3283
- "description": "Callback for getting parent element modal will attach to",
3264
+ "description": "Callback for setting parent element modal will attach to",
3284
3265
  "name": "parentSelector",
3285
3266
  "parent": {
3286
3267
  "fileName": "src/modal/Modal.tsx",
@@ -3652,7 +3633,7 @@
3652
3633
  "props": {
3653
3634
  "page": {
3654
3635
  "defaultValue": null,
3655
- "description": "Current page",
3636
+ "description": "Current page\n@note Pagination indexing starts at 1",
3656
3637
  "name": "page",
3657
3638
  "parent": {
3658
3639
  "fileName": "src/pagination/Pagination.tsx",
@@ -3858,7 +3839,7 @@
3858
3839
  "defaultValue": {
3859
3840
  "value": "false"
3860
3841
  },
3861
- "description": "Toggles border on panel",
3842
+ "description": "Adds a border to panel when true",
3862
3843
  "name": "border",
3863
3844
  "parent": {
3864
3845
  "fileName": "src/panel/Panel.tsx",
@@ -3919,10 +3900,10 @@
3919
3900
  "filePath": "src/popover/Popover.tsx",
3920
3901
  "displayName": "Popover",
3921
3902
  "props": {
3922
- "anchorEl": {
3903
+ "children": {
3923
3904
  "defaultValue": null,
3924
- "description": "Element popover anchors to",
3925
- "name": "anchorEl",
3905
+ "description": "Popover content",
3906
+ "name": "children",
3926
3907
  "parent": {
3927
3908
  "fileName": "src/popover/Popover.tsx",
3928
3909
  "name": "PopoverProps"
@@ -3935,13 +3916,13 @@
3935
3916
  ],
3936
3917
  "required": true,
3937
3918
  "type": {
3938
- "name": "Element | null"
3919
+ "name": "ReactNode"
3939
3920
  }
3940
3921
  },
3941
- "open": {
3922
+ "anchorEl": {
3942
3923
  "defaultValue": null,
3943
- "description": "Open state",
3944
- "name": "open",
3924
+ "description": "Element popover anchors to",
3925
+ "name": "anchorEl",
3945
3926
  "parent": {
3946
3927
  "fileName": "src/popover/Popover.tsx",
3947
3928
  "name": "PopoverProps"
@@ -3954,13 +3935,13 @@
3954
3935
  ],
3955
3936
  "required": true,
3956
3937
  "type": {
3957
- "name": "boolean"
3938
+ "name": "Element | null"
3958
3939
  }
3959
3940
  },
3960
- "onClose": {
3941
+ "open": {
3961
3942
  "defaultValue": null,
3962
- "description": "onClose callback",
3963
- "name": "onClose",
3943
+ "description": "Open state",
3944
+ "name": "open",
3964
3945
  "parent": {
3965
3946
  "fileName": "src/popover/Popover.tsx",
3966
3947
  "name": "PopoverProps"
@@ -3973,13 +3954,13 @@
3973
3954
  ],
3974
3955
  "required": true,
3975
3956
  "type": {
3976
- "name": "() => void"
3957
+ "name": "boolean"
3977
3958
  }
3978
3959
  },
3979
- "children": {
3960
+ "onClose": {
3980
3961
  "defaultValue": null,
3981
- "description": "Popover content",
3982
- "name": "children",
3962
+ "description": "onClose callback",
3963
+ "name": "onClose",
3983
3964
  "parent": {
3984
3965
  "fileName": "src/popover/Popover.tsx",
3985
3966
  "name": "PopoverProps"
@@ -3992,14 +3973,14 @@
3992
3973
  ],
3993
3974
  "required": true,
3994
3975
  "type": {
3995
- "name": "ReactNode"
3976
+ "name": "() => void"
3996
3977
  }
3997
3978
  },
3998
3979
  "placement": {
3999
3980
  "defaultValue": {
4000
3981
  "value": "\"right\""
4001
3982
  },
4002
- "description": "Orientation for popover",
3983
+ "description": "Orientation for popover\n@note Try to keep general usage to \"top\", \"bottom\", \"left\", \"right\"",
4003
3984
  "name": "placement",
4004
3985
  "parent": {
4005
3986
  "fileName": "src/popover/Popover.tsx",
@@ -4020,7 +4001,7 @@
4020
4001
  "defaultValue": {
4021
4002
  "value": "true"
4022
4003
  },
4023
- "description": "Toggles rendering of arrow",
4004
+ "description": "Adds a arrow from dialog to anchor when true",
4024
4005
  "name": "arrow",
4025
4006
  "parent": {
4026
4007
  "fileName": "src/popover/Popover.tsx",
@@ -4432,7 +4413,7 @@
4432
4413
  "props": {
4433
4414
  "children": {
4434
4415
  "defaultValue": null,
4435
- "description": "Children of type <Bubble />",
4416
+ "description": "Children of type <SpeechBubble.Bubble />",
4436
4417
  "name": "children",
4437
4418
  "parent": {
4438
4419
  "fileName": "src/speech-bubble/SpeechBubble.tsx",
@@ -4470,7 +4451,7 @@
4470
4451
  },
4471
4452
  "illustration": {
4472
4453
  "defaultValue": null,
4473
- "description": "Illustration for messenger",
4454
+ "description": "Illustration for messenger. Regular text for initials works to",
4474
4455
  "name": "illustration",
4475
4456
  "parent": {
4476
4457
  "fileName": "src/speech-bubble/SpeechBubble.tsx",
@@ -4489,7 +4470,7 @@
4489
4470
  },
4490
4471
  "backgroundColor": {
4491
4472
  "defaultValue": null,
4492
- "description": "Background color bubbles",
4473
+ "description": "Background color on bubbles",
4493
4474
  "name": "backgroundColor",
4494
4475
  "parent": {
4495
4476
  "fileName": "src/speech-bubble/SpeechBubble.tsx",
@@ -4611,7 +4592,7 @@
4611
4592
  },
4612
4593
  "disabled": {
4613
4594
  "defaultValue": null,
4614
- "description": "Disables interaction with element",
4595
+ "description": "Disables interaction with element\n@note We recommend not using disabled if possible",
4615
4596
  "name": "disabled",
4616
4597
  "parent": {
4617
4598
  "fileName": "src/step-indicator/Step.tsx",
@@ -4630,7 +4611,7 @@
4630
4611
  },
4631
4612
  "index": {
4632
4613
  "defaultValue": null,
4633
- "description": "Handled by StepIndicator",
4614
+ "description": "Handled by StepIndicator\n@private",
4634
4615
  "name": "index",
4635
4616
  "parent": {
4636
4617
  "fileName": "src/step-indicator/Step.tsx",
@@ -4834,7 +4815,7 @@
4834
4815
  "props": {
4835
4816
  "children": {
4836
4817
  "defaultValue": null,
4837
- "description": "Text content under indicator",
4818
+ "description": "Text content by indicator",
4838
4819
  "name": "children",
4839
4820
  "parent": {
4840
4821
  "fileName": "src/stepper/Step.tsx",
@@ -4855,7 +4836,7 @@
4855
4836
  "defaultValue": {
4856
4837
  "value": "0"
4857
4838
  },
4858
- "description": "Handled by Stepper",
4839
+ "description": "Handled by Stepper\n@private",
4859
4840
  "name": "index",
4860
4841
  "parent": {
4861
4842
  "fileName": "src/stepper/Step.tsx",
@@ -5084,7 +5065,7 @@
5084
5065
  "defaultValue": {
5085
5066
  "value": "false"
5086
5067
  },
5087
- "description": "Column is sortable",
5068
+ "description": "Column is sortable, adds indicators to show sorting",
5088
5069
  "name": "sortable",
5089
5070
  "parent": {
5090
5071
  "fileName": "src/table/ColumnHeader.tsx",
@@ -5124,7 +5105,7 @@
5124
5105
  "defaultValue": {
5125
5106
  "value": "\"left\""
5126
5107
  },
5127
- "description": "Content alignment",
5108
+ "description": "Content alignment inside cell",
5128
5109
  "name": "align",
5129
5110
  "parent": {
5130
5111
  "fileName": "react/src/table/HeaderCell.tsx",
@@ -5189,7 +5170,7 @@
5189
5170
  "defaultValue": {
5190
5171
  "value": "\"left\""
5191
5172
  },
5192
- "description": "Content alignment",
5173
+ "description": "Content alignment inside cell",
5193
5174
  "name": "align",
5194
5175
  "parent": {
5195
5176
  "fileName": "src/table/DataCell.tsx",
@@ -5353,7 +5334,7 @@
5353
5334
  "defaultValue": {
5354
5335
  "value": "false"
5355
5336
  },
5356
- "description": "Disable expansion",
5337
+ "description": "Disable expansio",
5357
5338
  "name": "expansionDisabled",
5358
5339
  "parent": {
5359
5340
  "fileName": "src/table/ExpandableRow.tsx",
@@ -5502,7 +5483,7 @@
5502
5483
  "defaultValue": {
5503
5484
  "value": "\"left\""
5504
5485
  },
5505
- "description": "Content alignment",
5486
+ "description": "Content alignment inside cell",
5506
5487
  "name": "align",
5507
5488
  "parent": {
5508
5489
  "fileName": "src/table/HeaderCell.tsx",
@@ -5754,7 +5735,7 @@
5754
5735
  "props": {
5755
5736
  "label": {
5756
5737
  "defaultValue": null,
5757
- "description": "Content",
5738
+ "description": "Tab label",
5758
5739
  "name": "label",
5759
5740
  "parent": {
5760
5741
  "fileName": "src/tabs/Tab.tsx",
@@ -5773,7 +5754,7 @@
5773
5754
  },
5774
5755
  "icon": {
5775
5756
  "defaultValue": null,
5776
- "description": "Icon",
5757
+ "description": "Tab Icon",
5777
5758
  "name": "icon",
5778
5759
  "parent": {
5779
5760
  "fileName": "src/tabs/Tab.tsx",
@@ -5876,7 +5857,7 @@
5876
5857
  "props": {
5877
5858
  "children": {
5878
5859
  "defaultValue": null,
5879
- "description": "Tab elements",
5860
+ "description": "<Tabs.Tab /> elements",
5880
5861
  "name": "children",
5881
5862
  "parent": {
5882
5863
  "fileName": "src/tabs/TabList.tsx",
@@ -5958,7 +5939,7 @@
5958
5939
  "props": {
5959
5940
  "children": {
5960
5941
  "defaultValue": null,
5961
- "description": "Tab panel",
5942
+ "description": "Tab panel content",
5962
5943
  "name": "children",
5963
5944
  "parent": {
5964
5945
  "fileName": "src/tabs/TabPanel.tsx",
@@ -6038,25 +6019,6 @@
6038
6019
  "filePath": "src/tabs/Tabs.tsx",
6039
6020
  "displayName": "Tabs",
6040
6021
  "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
6022
  "size": {
6061
6023
  "defaultValue": {
6062
6024
  "value": "\"medium\""
@@ -6080,7 +6042,7 @@
6080
6042
  },
6081
6043
  "onChange": {
6082
6044
  "defaultValue": null,
6083
- "description": "onChange",
6045
+ "description": "onChange callback for selected Tab",
6084
6046
  "name": "onChange",
6085
6047
  "parent": {
6086
6048
  "fileName": "src/tabs/Tabs.tsx",
@@ -6202,7 +6164,7 @@
6202
6164
  "props": {
6203
6165
  "children": {
6204
6166
  "defaultValue": null,
6205
- "description": "Tag",
6167
+ "description": "Tag label",
6206
6168
  "name": "children",
6207
6169
  "parent": {
6208
6170
  "fileName": "src/tag/Tag.tsx",
@@ -6221,7 +6183,7 @@
6221
6183
  },
6222
6184
  "variant": {
6223
6185
  "defaultValue": null,
6224
- "description": "Changes background-color and border-color",
6186
+ "description": "Changes background and border color",
6225
6187
  "name": "variant",
6226
6188
  "parent": {
6227
6189
  "fileName": "src/tag/Tag.tsx",
@@ -6242,7 +6204,7 @@
6242
6204
  "defaultValue": {
6243
6205
  "value": "medium"
6244
6206
  },
6245
- "description": "Changes sizing of tag",
6207
+ "description": "Changes padding and font-sizes",
6246
6208
  "name": "size",
6247
6209
  "parent": {
6248
6210
  "fileName": "src/tag/Tag.tsx",
@@ -6383,7 +6345,7 @@
6383
6345
  },
6384
6346
  "onChange": {
6385
6347
  "defaultValue": null,
6386
- "description": "Returns elements that wants to be active",
6348
+ "description": "Callback for selected toggle",
6387
6349
  "name": "onChange",
6388
6350
  "parent": {
6389
6351
  "fileName": "src/toggle-group/ToggleGroup.tsx",
@@ -6547,7 +6509,7 @@
6547
6509
  "props": {
6548
6510
  "children": {
6549
6511
  "defaultValue": null,
6550
- "description": "Element tooltip anchors to",
6512
+ "description": "Element tooltip anchors to\n@note Needs to be React.ReactElement, does not support multiple children/react fragment",
6551
6513
  "name": "children",
6552
6514
  "parent": {
6553
6515
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6587,7 +6549,7 @@
6587
6549
  "defaultValue": {
6588
6550
  "value": "false"
6589
6551
  },
6590
- "description": "Tells tooltip to start in open state\n@note \"open\"-prop overwrites this",
6552
+ "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
6553
  "name": "defaultOpen",
6592
6554
  "parent": {
6593
6555
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6669,7 +6631,7 @@
6669
6631
  },
6670
6632
  "content": {
6671
6633
  "defaultValue": null,
6672
- "description": "Content shown in tooltip",
6634
+ "description": "Text-content inside tooltip",
6673
6635
  "name": "content",
6674
6636
  "parent": {
6675
6637
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6690,7 +6652,7 @@
6690
6652
  "defaultValue": {
6691
6653
  "value": "80"
6692
6654
  },
6693
- "description": "Sets max allowed character length",
6655
+ "description": "Sets max allowed character length.",
6694
6656
  "name": "maxChar",
6695
6657
  "parent": {
6696
6658
  "fileName": "src/tooltip/Tooltip.tsx",
@@ -6838,7 +6800,7 @@
6838
6800
  },
6839
6801
  "spacing": {
6840
6802
  "defaultValue": null,
6841
- "description": "Adds margins to typo",
6803
+ "description": "Adds margin-bottom",
6842
6804
  "name": "spacing",
6843
6805
  "parent": {
6844
6806
  "fileName": "src/typography/BodyLong.tsx",
@@ -6941,7 +6903,7 @@
6941
6903
  },
6942
6904
  "spacing": {
6943
6905
  "defaultValue": null,
6944
- "description": "Adds margins to typo",
6906
+ "description": "Adds margin-bottom",
6945
6907
  "name": "spacing",
6946
6908
  "parent": {
6947
6909
  "fileName": "src/typography/BodyShort.tsx",
@@ -7044,7 +7006,7 @@
7044
7006
  },
7045
7007
  "spacing": {
7046
7008
  "defaultValue": null,
7047
- "description": "Adds margins to typo",
7009
+ "description": "Adds margin-bottom",
7048
7010
  "name": "spacing",
7049
7011
  "parent": {
7050
7012
  "fileName": "src/typography/Detail.tsx",
@@ -7128,7 +7090,7 @@
7128
7090
  },
7129
7091
  "size": {
7130
7092
  "defaultValue": null,
7131
- "description": "Sizes from largest \"2xl\" to smallest \"s\"",
7093
+ "description": "Changes text-sizing",
7132
7094
  "name": "size",
7133
7095
  "parent": {
7134
7096
  "fileName": "src/typography/Heading.tsx",
@@ -7168,7 +7130,7 @@
7168
7130
  "defaultValue": {
7169
7131
  "value": "false"
7170
7132
  },
7171
- "description": "Adds margins to typo",
7133
+ "description": "Adds margin-bottom",
7172
7134
  "name": "spacing",
7173
7135
  "parent": {
7174
7136
  "fileName": "src/typography/Heading.tsx",
@@ -7250,7 +7212,7 @@
7250
7212
  },
7251
7213
  "spacing": {
7252
7214
  "defaultValue": null,
7253
- "description": "Adds margins to typo",
7215
+ "description": "Adds margin-bottom",
7254
7216
  "name": "spacing",
7255
7217
  "parent": {
7256
7218
  "fileName": "src/typography/Ingress.tsx",
@@ -7353,7 +7315,7 @@
7353
7315
  },
7354
7316
  "spacing": {
7355
7317
  "defaultValue": null,
7356
- "description": "Adds margins to typo",
7318
+ "description": "Adds margin-bottom",
7357
7319
  "name": "spacing",
7358
7320
  "parent": {
7359
7321
  "fileName": "src/typography/Label.tsx",
@@ -7551,7 +7513,7 @@
7551
7513
  },
7552
7514
  "disabled": {
7553
7515
  "defaultValue": null,
7554
- "description": "Disables element",
7516
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
7555
7517
  "name": "disabled",
7556
7518
  "parent": {
7557
7519
  "fileName": "react/src/form/useFormField.ts",
@@ -7654,7 +7616,7 @@
7654
7616
  "defaultValue": {
7655
7617
  "value": "false"
7656
7618
  },
7657
- "description": "Checkbox has error",
7619
+ "description": "Adds error indication on checkbox",
7658
7620
  "name": "error",
7659
7621
  "parent": {
7660
7622
  "fileName": "src/form/checkbox/Checkbox.tsx",
@@ -7673,7 +7635,7 @@
7673
7635
  },
7674
7636
  "children": {
7675
7637
  "defaultValue": null,
7676
- "description": "Label for checkbox",
7638
+ "description": "Checkbox label",
7677
7639
  "name": "children",
7678
7640
  "parent": {
7679
7641
  "fileName": "src/form/checkbox/Checkbox.tsx",
@@ -7770,7 +7732,7 @@
7770
7732
  },
7771
7733
  "disabled": {
7772
7734
  "defaultValue": null,
7773
- "description": "Disables element",
7735
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
7774
7736
  "name": "disabled",
7775
7737
  "parent": {
7776
7738
  "fileName": "react/src/form/useFormField.ts",
@@ -7871,7 +7833,7 @@
7871
7833
  "props": {
7872
7834
  "children": {
7873
7835
  "defaultValue": null,
7874
- "description": "Checkboxes",
7836
+ "description": "Collection of <Checkbox/>",
7875
7837
  "name": "children",
7876
7838
  "parent": {
7877
7839
  "fileName": "src/form/checkbox/CheckboxGroup.tsx",
@@ -7890,7 +7852,7 @@
7890
7852
  },
7891
7853
  "value": {
7892
7854
  "defaultValue": null,
7893
- "description": "Controlled state for group",
7855
+ "description": "Controlled state for checkboxes.",
7894
7856
  "name": "value",
7895
7857
  "parent": {
7896
7858
  "fileName": "src/form/checkbox/CheckboxGroup.tsx",
@@ -8044,7 +8006,7 @@
8044
8006
  },
8045
8007
  "disabled": {
8046
8008
  "defaultValue": null,
8047
- "description": "Disables element",
8009
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8048
8010
  "name": "disabled",
8049
8011
  "parent": {
8050
8012
  "fileName": "react/src/form/useFormField.ts",
@@ -8145,7 +8107,7 @@
8145
8107
  "props": {
8146
8108
  "children": {
8147
8109
  "defaultValue": null,
8148
- "description": "ErrorSummaryItems",
8110
+ "description": "Collectipn of ErrorSummary.Item",
8149
8111
  "name": "children",
8150
8112
  "parent": {
8151
8113
  "fileName": "src/form/error-summary/ErrorSummary.tsx",
@@ -8206,7 +8168,7 @@
8206
8168
  "defaultValue": {
8207
8169
  "value": "\"h2\""
8208
8170
  },
8209
- "description": "Allows setting a different HTML <tag>",
8171
+ "description": "Allows setting a different HTML h-tag",
8210
8172
  "name": "headingTag",
8211
8173
  "parent": {
8212
8174
  "fileName": "src/form/error-summary/ErrorSummary.tsx",
@@ -8332,7 +8294,7 @@
8332
8294
  "props": {
8333
8295
  "children": {
8334
8296
  "defaultValue": null,
8335
- "description": "Label for radio",
8297
+ "description": "Radio label",
8336
8298
  "name": "children",
8337
8299
  "parent": {
8338
8300
  "fileName": "src/form/radio/Radio.tsx",
@@ -8389,7 +8351,7 @@
8389
8351
  },
8390
8352
  "disabled": {
8391
8353
  "defaultValue": null,
8392
- "description": "Disables element",
8354
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8393
8355
  "name": "disabled",
8394
8356
  "parent": {
8395
8357
  "fileName": "react/src/form/useFormField.ts",
@@ -8490,7 +8452,7 @@
8490
8452
  "props": {
8491
8453
  "children": {
8492
8454
  "defaultValue": null,
8493
- "description": "Collection of <Radio>-elements",
8455
+ "description": "Collection of <Radio />-elements",
8494
8456
  "name": "children",
8495
8457
  "parent": {
8496
8458
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8528,7 +8490,7 @@
8528
8490
  },
8529
8491
  "defaultValue": {
8530
8492
  "defaultValue": null,
8531
- "description": "Default checked radiobutton",
8493
+ "description": "Default checked Radio",
8532
8494
  "name": "defaultValue",
8533
8495
  "parent": {
8534
8496
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8547,7 +8509,7 @@
8547
8509
  },
8548
8510
  "value": {
8549
8511
  "defaultValue": null,
8550
- "description": "Controlled state for Radiobutton",
8512
+ "description": "Controlled state for Radio",
8551
8513
  "name": "value",
8552
8514
  "parent": {
8553
8515
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8568,7 +8530,7 @@
8568
8530
  "defaultValue": {
8569
8531
  "value": "() => {}"
8570
8532
  },
8571
- "description": "Returns current checked radiobutton in group",
8533
+ "description": "Returns current checked Radio in group",
8572
8534
  "name": "onChange",
8573
8535
  "parent": {
8574
8536
  "fileName": "src/form/radio/RadioGroup.tsx",
@@ -8701,7 +8663,7 @@
8701
8663
  },
8702
8664
  "disabled": {
8703
8665
  "defaultValue": null,
8704
- "description": "Disables element",
8666
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8705
8667
  "name": "disabled",
8706
8668
  "parent": {
8707
8669
  "fileName": "react/src/form/useFormField.ts",
@@ -8802,7 +8764,7 @@
8802
8764
  "props": {
8803
8765
  "label": {
8804
8766
  "defaultValue": null,
8805
- "description": "Search label\n@info Will be hidden by default, is required for accessibility reasons.",
8767
+ "description": "Search label\n@note Will be hidden by default, is required for accessibility reasons.",
8806
8768
  "name": "label",
8807
8769
  "parent": {
8808
8770
  "fileName": "src/form/search/Search.tsx",
@@ -8924,7 +8886,7 @@
8924
8886
  "defaultValue": {
8925
8887
  "value": "\"primary\""
8926
8888
  },
8927
- "description": "Changes button-variant",
8889
+ "description": "Changes button-variant, \"simple\" removes button",
8928
8890
  "name": "variant",
8929
8891
  "parent": {
8930
8892
  "fileName": "src/form/search/Search.tsx",
@@ -8962,7 +8924,7 @@
8962
8924
  },
8963
8925
  "disabled": {
8964
8926
  "defaultValue": null,
8965
- "description": "Disables element",
8927
+ "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
8966
8928
  "name": "disabled",
8967
8929
  "parent": {
8968
8930
  "fileName": "react/src/form/useFormField.ts",
@@ -9081,9 +9043,7 @@
9081
9043
  }
9082
9044
  },
9083
9045
  "disabled": {
9084
- "defaultValue": {
9085
- "value": "false"
9086
- },
9046
+ "defaultValue": null,
9087
9047
  "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
9048
  "name": "disabled",
9089
9049
  "parent": {