@navikt/ds-react 0.18.2-alpha.0 → 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 (121) hide show
  1. package/LICENCE +31 -0
  2. package/_docs.json +433 -473
  3. package/cjs/form/radio/useRadio.js +8 -12
  4. package/esm/accordion/Accordion.d.ts +1 -1
  5. package/esm/accordion/AccordionContent.d.ts +3 -1
  6. package/esm/accordion/AccordionContent.js.map +1 -1
  7. package/esm/accordion/AccordionHeader.d.ts +1 -1
  8. package/esm/accordion/AccordionItem.d.ts +6 -5
  9. package/esm/accordion/AccordionItem.js.map +1 -1
  10. package/esm/alert/Alert.d.ts +3 -2
  11. package/esm/alert/Alert.js.map +1 -1
  12. package/esm/button/Button.d.ts +1 -2
  13. package/esm/button/Button.js.map +1 -1
  14. package/esm/form/ConfirmationPanel.d.ts +1 -1
  15. package/esm/form/Fieldset/Fieldset.d.ts +4 -1
  16. package/esm/form/Fieldset/Fieldset.js.map +1 -1
  17. package/esm/form/Select.d.ts +2 -2
  18. package/esm/form/Switch.d.ts +1 -0
  19. package/esm/form/Switch.js.map +1 -1
  20. package/esm/form/TextField.d.ts +4 -4
  21. package/esm/form/Textarea.d.ts +10 -3
  22. package/esm/form/Textarea.js.map +1 -1
  23. package/esm/form/checkbox/Checkbox.d.ts +2 -2
  24. package/esm/form/checkbox/CheckboxGroup.d.ts +2 -2
  25. package/esm/form/error-summary/ErrorSummary.d.ts +2 -2
  26. package/esm/form/radio/Radio.d.ts +1 -1
  27. package/esm/form/radio/RadioGroup.d.ts +4 -4
  28. package/esm/form/radio/useRadio.d.ts +19 -1
  29. package/esm/form/radio/useRadio.js +9 -13
  30. package/esm/form/radio/useRadio.js.map +1 -1
  31. package/esm/form/search/Search.d.ts +2 -2
  32. package/esm/form/useFormField.d.ts +1 -0
  33. package/esm/form/useFormField.js.map +1 -1
  34. package/esm/help-text/HelpText.d.ts +12 -1
  35. package/esm/help-text/HelpText.js.map +1 -1
  36. package/esm/link-panel/LinkPanel.d.ts +2 -1
  37. package/esm/link-panel/LinkPanel.js.map +1 -1
  38. package/esm/loader/Loader.d.ts +6 -2
  39. package/esm/loader/Loader.js.map +1 -1
  40. package/esm/modal/Modal.d.ts +4 -4
  41. package/esm/pagination/Pagination.d.ts +1 -0
  42. package/esm/pagination/Pagination.js.map +1 -1
  43. package/esm/panel/Panel.d.ts +1 -1
  44. package/esm/popover/Popover.d.ts +7 -6
  45. package/esm/popover/Popover.js.map +1 -1
  46. package/esm/speech-bubble/SpeechBubble.d.ts +3 -3
  47. package/esm/step-indicator/Step.d.ts +2 -0
  48. package/esm/step-indicator/Step.js.map +1 -1
  49. package/esm/stepper/Step.d.ts +2 -1
  50. package/esm/stepper/Step.js.map +1 -1
  51. package/esm/table/ColumnHeader.d.ts +1 -1
  52. package/esm/table/DataCell.d.ts +1 -1
  53. package/esm/table/ExpandableRow.d.ts +1 -1
  54. package/esm/table/HeaderCell.d.ts +1 -1
  55. package/esm/table/index.d.ts +1 -1
  56. package/esm/table/index.js.map +1 -1
  57. package/esm/tabs/Tab.d.ts +2 -2
  58. package/esm/tabs/TabList.d.ts +1 -1
  59. package/esm/tabs/TabPanel.d.ts +1 -1
  60. package/esm/tabs/Tabs.d.ts +1 -4
  61. package/esm/tabs/Tabs.js.map +1 -1
  62. package/esm/tag/Tag.d.ts +3 -4
  63. package/esm/tag/Tag.js.map +1 -1
  64. package/esm/toggle-group/ToggleGroup.d.ts +1 -1
  65. package/esm/tooltip/Tooltip.d.ts +8 -6
  66. package/esm/tooltip/Tooltip.js.map +1 -1
  67. package/esm/typography/BodyLong.d.ts +1 -1
  68. package/esm/typography/BodyShort.d.ts +1 -1
  69. package/esm/typography/Detail.d.ts +1 -1
  70. package/esm/typography/Heading.d.ts +2 -2
  71. package/esm/typography/Ingress.d.ts +1 -1
  72. package/esm/typography/Label.d.ts +1 -1
  73. package/package.json +3 -2
  74. package/src/accordion/Accordion.tsx +1 -1
  75. package/src/accordion/AccordionContent.tsx +3 -1
  76. package/src/accordion/AccordionHeader.tsx +1 -1
  77. package/src/accordion/AccordionItem.tsx +6 -5
  78. package/src/alert/Alert.tsx +3 -2
  79. package/src/button/Button.tsx +1 -2
  80. package/src/form/ConfirmationPanel.tsx +1 -1
  81. package/src/form/Fieldset/Fieldset.tsx +4 -1
  82. package/src/form/Select.tsx +2 -2
  83. package/src/form/Switch.tsx +1 -0
  84. package/src/form/TextField.tsx +4 -4
  85. package/src/form/Textarea.tsx +10 -3
  86. package/src/form/checkbox/Checkbox.tsx +2 -2
  87. package/src/form/checkbox/CheckboxGroup.tsx +2 -2
  88. package/src/form/error-summary/ErrorSummary.tsx +2 -2
  89. package/src/form/radio/Radio.tsx +1 -1
  90. package/src/form/radio/RadioGroup.tsx +4 -4
  91. package/src/form/radio/useRadio.ts +21 -27
  92. package/src/form/search/Search.tsx +2 -2
  93. package/src/form/useFormField.ts +1 -0
  94. package/src/help-text/HelpText.tsx +12 -1
  95. package/src/link-panel/LinkPanel.tsx +2 -1
  96. package/src/loader/Loader.tsx +5 -4
  97. package/src/modal/Modal.tsx +4 -4
  98. package/src/pagination/Pagination.tsx +1 -0
  99. package/src/panel/Panel.tsx +1 -1
  100. package/src/popover/Popover.tsx +7 -6
  101. package/src/speech-bubble/SpeechBubble.tsx +3 -3
  102. package/src/step-indicator/Step.tsx +2 -0
  103. package/src/stepper/Step.tsx +2 -1
  104. package/src/table/ColumnHeader.tsx +1 -1
  105. package/src/table/DataCell.tsx +1 -1
  106. package/src/table/ExpandableRow.tsx +1 -1
  107. package/src/table/HeaderCell.tsx +1 -1
  108. package/src/table/index.ts +1 -1
  109. package/src/tabs/Tab.tsx +2 -2
  110. package/src/tabs/TabList.tsx +1 -1
  111. package/src/tabs/TabPanel.tsx +1 -1
  112. package/src/tabs/Tabs.tsx +1 -4
  113. package/src/tag/Tag.tsx +3 -4
  114. package/src/toggle-group/ToggleGroup.tsx +1 -1
  115. package/src/tooltip/Tooltip.tsx +8 -6
  116. package/src/typography/BodyLong.tsx +1 -1
  117. package/src/typography/BodyShort.tsx +1 -1
  118. package/src/typography/Detail.tsx +1 -1
  119. package/src/typography/Heading.tsx +2 -2
  120. package/src/typography/Ingress.tsx +1 -1
  121. 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",
@@ -27,12 +27,12 @@
27
27
  "description": "",
28
28
  "name": "className",
29
29
  "parent": {
30
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
30
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
31
31
  "name": "HTMLAttributes"
32
32
  },
33
33
  "declarations": [
34
34
  {
35
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
35
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
36
36
  "name": "HTMLAttributes"
37
37
  }
38
38
  ],
@@ -46,12 +46,12 @@
46
46
  "description": "",
47
47
  "name": "ref",
48
48
  "parent": {
49
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
49
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
50
50
  "name": "RefAttributes"
51
51
  },
52
52
  "declarations": [
53
53
  {
54
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
54
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
55
55
  "name": "RefAttributes"
56
56
  }
57
57
  ],
@@ -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",
@@ -90,12 +90,12 @@
90
90
  "description": "",
91
91
  "name": "className",
92
92
  "parent": {
93
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
93
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
94
94
  "name": "HTMLAttributes"
95
95
  },
96
96
  "declarations": [
97
97
  {
98
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
98
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
99
99
  "name": "HTMLAttributes"
100
100
  }
101
101
  ],
@@ -109,12 +109,12 @@
109
109
  "description": "",
110
110
  "name": "ref",
111
111
  "parent": {
112
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
112
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
113
113
  "name": "RefAttributes"
114
114
  },
115
115
  "declarations": [
116
116
  {
117
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
117
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
118
118
  "name": "RefAttributes"
119
119
  }
120
120
  ],
@@ -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",
@@ -153,12 +153,12 @@
153
153
  "description": "",
154
154
  "name": "className",
155
155
  "parent": {
156
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
156
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
157
157
  "name": "HTMLAttributes"
158
158
  },
159
159
  "declarations": [
160
160
  {
161
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
161
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
162
162
  "name": "HTMLAttributes"
163
163
  }
164
164
  ],
@@ -172,12 +172,12 @@
172
172
  "description": "",
173
173
  "name": "ref",
174
174
  "parent": {
175
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
175
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
176
176
  "name": "RefAttributes"
177
177
  },
178
178
  "declarations": [
179
179
  {
180
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
180
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
181
181
  "name": "RefAttributes"
182
182
  }
183
183
  ],
@@ -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",
@@ -277,12 +277,12 @@
277
277
  "description": "",
278
278
  "name": "className",
279
279
  "parent": {
280
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
280
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
281
281
  "name": "HTMLAttributes"
282
282
  },
283
283
  "declarations": [
284
284
  {
285
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
285
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
286
286
  "name": "HTMLAttributes"
287
287
  }
288
288
  ],
@@ -296,12 +296,12 @@
296
296
  "description": "",
297
297
  "name": "ref",
298
298
  "parent": {
299
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
299
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
300
300
  "name": "RefAttributes"
301
301
  },
302
302
  "declarations": [
303
303
  {
304
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
304
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
305
305
  "name": "RefAttributes"
306
306
  }
307
307
  ],
@@ -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",
@@ -422,12 +422,12 @@
422
422
  "description": "",
423
423
  "name": "className",
424
424
  "parent": {
425
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
425
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
426
426
  "name": "HTMLAttributes"
427
427
  },
428
428
  "declarations": [
429
429
  {
430
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
430
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
431
431
  "name": "HTMLAttributes"
432
432
  }
433
433
  ],
@@ -441,12 +441,12 @@
441
441
  "description": "",
442
442
  "name": "ref",
443
443
  "parent": {
444
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
444
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
445
445
  "name": "RefAttributes"
446
446
  },
447
447
  "declarations": [
448
448
  {
449
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
449
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
450
450
  "name": "RefAttributes"
451
451
  }
452
452
  ],
@@ -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": {
@@ -569,12 +567,12 @@
569
567
  "description": "",
570
568
  "name": "className",
571
569
  "parent": {
572
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
570
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
573
571
  "name": "HTMLAttributes"
574
572
  },
575
573
  "declarations": [
576
574
  {
577
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
575
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
578
576
  "name": "HTMLAttributes"
579
577
  }
580
578
  ],
@@ -588,12 +586,12 @@
588
586
  "description": "",
589
587
  "name": "ref",
590
588
  "parent": {
591
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
589
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
592
590
  "name": "RefAttributes"
593
591
  },
594
592
  "declarations": [
595
593
  {
596
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
594
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
597
595
  "name": "RefAttributes"
598
596
  }
599
597
  ],
@@ -632,12 +630,12 @@
632
630
  "description": "",
633
631
  "name": "className",
634
632
  "parent": {
635
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
633
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
636
634
  "name": "HTMLAttributes"
637
635
  },
638
636
  "declarations": [
639
637
  {
640
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
638
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
641
639
  "name": "HTMLAttributes"
642
640
  }
643
641
  ],
@@ -651,12 +649,12 @@
651
649
  "description": "",
652
650
  "name": "ref",
653
651
  "parent": {
654
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
652
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
655
653
  "name": "RefAttributes"
656
654
  },
657
655
  "declarations": [
658
656
  {
659
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
657
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
660
658
  "name": "RefAttributes"
661
659
  }
662
660
  ],
@@ -714,12 +712,12 @@
714
712
  "description": "",
715
713
  "name": "className",
716
714
  "parent": {
717
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
715
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
718
716
  "name": "HTMLAttributes"
719
717
  },
720
718
  "declarations": [
721
719
  {
722
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
720
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
723
721
  "name": "HTMLAttributes"
724
722
  }
725
723
  ],
@@ -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,57 +842,17 @@
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": "",
890
848
  "name": "ref",
891
849
  "parent": {
892
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
850
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
893
851
  "name": "RefAttributes"
894
852
  },
895
853
  "declarations": [
896
854
  {
897
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
855
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
898
856
  "name": "RefAttributes"
899
857
  }
900
858
  ],
@@ -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",
@@ -1109,12 +1067,12 @@
1109
1067
  "description": "",
1110
1068
  "name": "className",
1111
1069
  "parent": {
1112
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1070
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1113
1071
  "name": "HTMLAttributes"
1114
1072
  },
1115
1073
  "declarations": [
1116
1074
  {
1117
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1075
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1118
1076
  "name": "HTMLAttributes"
1119
1077
  }
1120
1078
  ],
@@ -1128,12 +1086,12 @@
1128
1086
  "description": "",
1129
1087
  "name": "ref",
1130
1088
  "parent": {
1131
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1089
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1132
1090
  "name": "RefAttributes"
1133
1091
  },
1134
1092
  "declarations": [
1135
1093
  {
1136
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1094
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1137
1095
  "name": "RefAttributes"
1138
1096
  }
1139
1097
  ],
@@ -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",
@@ -1305,12 +1265,12 @@
1305
1265
  "description": "",
1306
1266
  "name": "className",
1307
1267
  "parent": {
1308
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1268
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1309
1269
  "name": "HTMLAttributes"
1310
1270
  },
1311
1271
  "declarations": [
1312
1272
  {
1313
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1273
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1314
1274
  "name": "HTMLAttributes"
1315
1275
  }
1316
1276
  ],
@@ -1324,12 +1284,12 @@
1324
1284
  "description": "",
1325
1285
  "name": "ref",
1326
1286
  "parent": {
1327
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1287
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1328
1288
  "name": "RefAttributes"
1329
1289
  },
1330
1290
  "declarations": [
1331
1291
  {
1332
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1292
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1333
1293
  "name": "RefAttributes"
1334
1294
  }
1335
1295
  ],
@@ -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",
@@ -1579,12 +1539,12 @@
1579
1539
  "description": "",
1580
1540
  "name": "className",
1581
1541
  "parent": {
1582
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1542
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1583
1543
  "name": "HTMLAttributes"
1584
1544
  },
1585
1545
  "declarations": [
1586
1546
  {
1587
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1547
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1588
1548
  "name": "HTMLAttributes"
1589
1549
  }
1590
1550
  ],
@@ -1598,12 +1558,12 @@
1598
1558
  "description": "",
1599
1559
  "name": "ref",
1600
1560
  "parent": {
1601
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1561
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1602
1562
  "name": "RefAttributes"
1603
1563
  },
1604
1564
  "declarations": [
1605
1565
  {
1606
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1566
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1607
1567
  "name": "RefAttributes"
1608
1568
  }
1609
1569
  ],
@@ -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",
@@ -1870,12 +1830,12 @@
1870
1830
  "description": "",
1871
1831
  "name": "className",
1872
1832
  "parent": {
1873
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1833
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1874
1834
  "name": "HTMLAttributes"
1875
1835
  },
1876
1836
  "declarations": [
1877
1837
  {
1878
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1838
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1879
1839
  "name": "HTMLAttributes"
1880
1840
  }
1881
1841
  ],
@@ -1889,12 +1849,12 @@
1889
1849
  "description": "",
1890
1850
  "name": "ref",
1891
1851
  "parent": {
1892
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1852
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1893
1853
  "name": "RefAttributes"
1894
1854
  },
1895
1855
  "declarations": [
1896
1856
  {
1897
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1857
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
1898
1858
  "name": "RefAttributes"
1899
1859
  }
1900
1860
  ],
@@ -2042,12 +2002,12 @@
2042
2002
  "description": "",
2043
2003
  "name": "className",
2044
2004
  "parent": {
2045
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2005
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2046
2006
  "name": "HTMLAttributes"
2047
2007
  },
2048
2008
  "declarations": [
2049
2009
  {
2050
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2010
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2051
2011
  "name": "HTMLAttributes"
2052
2012
  }
2053
2013
  ],
@@ -2061,12 +2021,12 @@
2061
2021
  "description": "",
2062
2022
  "name": "ref",
2063
2023
  "parent": {
2064
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2024
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2065
2025
  "name": "RefAttributes"
2066
2026
  },
2067
2027
  "declarations": [
2068
2028
  {
2069
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2029
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2070
2030
  "name": "RefAttributes"
2071
2031
  }
2072
2032
  ],
@@ -2105,12 +2065,12 @@
2105
2065
  "description": "",
2106
2066
  "name": "className",
2107
2067
  "parent": {
2108
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2068
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2109
2069
  "name": "HTMLAttributes"
2110
2070
  },
2111
2071
  "declarations": [
2112
2072
  {
2113
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2073
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2114
2074
  "name": "HTMLAttributes"
2115
2075
  }
2116
2076
  ],
@@ -2124,12 +2084,12 @@
2124
2084
  "description": "",
2125
2085
  "name": "ref",
2126
2086
  "parent": {
2127
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2087
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2128
2088
  "name": "RefAttributes"
2129
2089
  },
2130
2090
  "declarations": [
2131
2091
  {
2132
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2092
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2133
2093
  "name": "RefAttributes"
2134
2094
  }
2135
2095
  ],
@@ -2168,12 +2128,12 @@
2168
2128
  "description": "",
2169
2129
  "name": "className",
2170
2130
  "parent": {
2171
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2131
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2172
2132
  "name": "HTMLAttributes"
2173
2133
  },
2174
2134
  "declarations": [
2175
2135
  {
2176
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2136
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2177
2137
  "name": "HTMLAttributes"
2178
2138
  }
2179
2139
  ],
@@ -2187,12 +2147,12 @@
2187
2147
  "description": "",
2188
2148
  "name": "ref",
2189
2149
  "parent": {
2190
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2150
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2191
2151
  "name": "RefAttributes"
2192
2152
  },
2193
2153
  "declarations": [
2194
2154
  {
2195
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2155
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2196
2156
  "name": "RefAttributes"
2197
2157
  }
2198
2158
  ],
@@ -2252,12 +2212,12 @@
2252
2212
  "description": "",
2253
2213
  "name": "className",
2254
2214
  "parent": {
2255
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2215
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2256
2216
  "name": "HTMLAttributes"
2257
2217
  },
2258
2218
  "declarations": [
2259
2219
  {
2260
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2220
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2261
2221
  "name": "HTMLAttributes"
2262
2222
  }
2263
2223
  ],
@@ -2271,12 +2231,12 @@
2271
2231
  "description": "",
2272
2232
  "name": "ref",
2273
2233
  "parent": {
2274
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2234
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2275
2235
  "name": "RefAttributes"
2276
2236
  },
2277
2237
  "declarations": [
2278
2238
  {
2279
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2239
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2280
2240
  "name": "RefAttributes"
2281
2241
  }
2282
2242
  ],
@@ -2355,12 +2315,12 @@
2355
2315
  "description": "",
2356
2316
  "name": "className",
2357
2317
  "parent": {
2358
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2318
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2359
2319
  "name": "HTMLAttributes"
2360
2320
  },
2361
2321
  "declarations": [
2362
2322
  {
2363
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2323
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2364
2324
  "name": "HTMLAttributes"
2365
2325
  }
2366
2326
  ],
@@ -2374,12 +2334,12 @@
2374
2334
  "description": "",
2375
2335
  "name": "ref",
2376
2336
  "parent": {
2377
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2337
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2378
2338
  "name": "RefAttributes"
2379
2339
  },
2380
2340
  "declarations": [
2381
2341
  {
2382
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2342
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2383
2343
  "name": "RefAttributes"
2384
2344
  }
2385
2345
  ],
@@ -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,18 +2373,20 @@
2413
2373
  "name": "ReactNode"
2414
2374
  }
2415
2375
  },
2416
- "className": {
2417
- "defaultValue": null,
2418
- "description": "",
2419
- "name": "className",
2376
+ "title": {
2377
+ "defaultValue": {
2378
+ "value": "hjelp"
2379
+ },
2380
+ "description": "Adds a title-tooltip with the given text",
2381
+ "name": "title",
2420
2382
  "parent": {
2421
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2422
- "name": "HTMLAttributes"
2383
+ "fileName": "src/help-text/HelpText.tsx",
2384
+ "name": "HelpTextProps"
2423
2385
  },
2424
2386
  "declarations": [
2425
2387
  {
2426
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2427
- "name": "HTMLAttributes"
2388
+ "fileName": "src/help-text/HelpText.tsx",
2389
+ "name": "HelpTextProps"
2428
2390
  }
2429
2391
  ],
2430
2392
  "required": false,
@@ -2432,33 +2394,52 @@
2432
2394
  "name": "string"
2433
2395
  }
2434
2396
  },
2435
- "strategy": {
2397
+ "placement": {
2436
2398
  "defaultValue": {
2437
- "value": "absolute"
2399
+ "value": "top"
2438
2400
  },
2439
- "description": "Changes what CSS position property to use\nYou want to use \"fixed\" if reference element is inside a fixed container, but popover is not",
2440
- "name": "strategy",
2401
+ "description": "Default dialog-placement on open",
2402
+ "name": "placement",
2441
2403
  "parent": {
2442
- "fileName": "react/src/popover/Popover.tsx",
2443
- "name": "PopoverProps"
2404
+ "fileName": "src/help-text/HelpText.tsx",
2405
+ "name": "HelpTextProps"
2444
2406
  },
2445
2407
  "declarations": [
2446
2408
  {
2447
- "fileName": "react/src/popover/Popover.tsx",
2448
- "name": "PopoverProps"
2409
+ "fileName": "src/help-text/HelpText.tsx",
2410
+ "name": "HelpTextProps"
2449
2411
  }
2450
2412
  ],
2451
2413
  "required": false,
2452
2414
  "type": {
2453
- "name": "\"absolute\" | \"fixed\""
2415
+ "name": "Placement"
2454
2416
  }
2455
2417
  },
2456
- "placement": {
2418
+ "className": {
2419
+ "defaultValue": null,
2420
+ "description": "",
2421
+ "name": "className",
2422
+ "parent": {
2423
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2424
+ "name": "HTMLAttributes"
2425
+ },
2426
+ "declarations": [
2427
+ {
2428
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2429
+ "name": "HTMLAttributes"
2430
+ }
2431
+ ],
2432
+ "required": false,
2433
+ "type": {
2434
+ "name": "string"
2435
+ }
2436
+ },
2437
+ "strategy": {
2457
2438
  "defaultValue": {
2458
- "value": "top"
2439
+ "value": "absolute"
2459
2440
  },
2460
- "description": "Orientation for popover",
2461
- "name": "placement",
2441
+ "description": "Changes what CSS position property to use\nYou want to use \"fixed\" if reference element is inside a fixed container, but popover is not",
2442
+ "name": "strategy",
2462
2443
  "parent": {
2463
2444
  "fileName": "react/src/popover/Popover.tsx",
2464
2445
  "name": "PopoverProps"
@@ -2471,7 +2452,7 @@
2471
2452
  ],
2472
2453
  "required": false,
2473
2454
  "type": {
2474
- "name": "Placement"
2455
+ "name": "\"absolute\" | \"fixed\""
2475
2456
  }
2476
2457
  },
2477
2458
  "ref": {
@@ -2479,12 +2460,12 @@
2479
2460
  "description": "",
2480
2461
  "name": "ref",
2481
2462
  "parent": {
2482
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2463
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2483
2464
  "name": "RefAttributes"
2484
2465
  },
2485
2466
  "declarations": [
2486
2467
  {
2487
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2468
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2488
2469
  "name": "RefAttributes"
2489
2470
  }
2490
2471
  ],
@@ -2523,12 +2504,12 @@
2523
2504
  "description": "",
2524
2505
  "name": "className",
2525
2506
  "parent": {
2526
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2507
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2527
2508
  "name": "HTMLAttributes"
2528
2509
  },
2529
2510
  "declarations": [
2530
2511
  {
2531
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2512
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2532
2513
  "name": "HTMLAttributes"
2533
2514
  }
2534
2515
  ],
@@ -2542,12 +2523,12 @@
2542
2523
  "description": "",
2543
2524
  "name": "ref",
2544
2525
  "parent": {
2545
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2526
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2546
2527
  "name": "RefAttributes"
2547
2528
  },
2548
2529
  "declarations": [
2549
2530
  {
2550
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2531
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2551
2532
  "name": "RefAttributes"
2552
2533
  }
2553
2534
  ],
@@ -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",
@@ -2607,12 +2588,12 @@
2607
2588
  "description": "",
2608
2589
  "name": "className",
2609
2590
  "parent": {
2610
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2591
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2611
2592
  "name": "HTMLAttributes"
2612
2593
  },
2613
2594
  "declarations": [
2614
2595
  {
2615
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2596
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2616
2597
  "name": "HTMLAttributes"
2617
2598
  }
2618
2599
  ],
@@ -2626,12 +2607,12 @@
2626
2607
  "description": "",
2627
2608
  "name": "ref",
2628
2609
  "parent": {
2629
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2610
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2630
2611
  "name": "RefAttributes"
2631
2612
  },
2632
2613
  "declarations": [
2633
2614
  {
2634
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2615
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2635
2616
  "name": "RefAttributes"
2636
2617
  }
2637
2618
  ],
@@ -2651,12 +2632,12 @@
2651
2632
  "description": "",
2652
2633
  "name": "className",
2653
2634
  "parent": {
2654
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2635
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2655
2636
  "name": "HTMLAttributes"
2656
2637
  },
2657
2638
  "declarations": [
2658
2639
  {
2659
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2640
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2660
2641
  "name": "HTMLAttributes"
2661
2642
  }
2662
2643
  ],
@@ -2670,12 +2651,12 @@
2670
2651
  "description": "",
2671
2652
  "name": "ref",
2672
2653
  "parent": {
2673
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2654
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2674
2655
  "name": "RefAttributes"
2675
2656
  },
2676
2657
  "declarations": [
2677
2658
  {
2678
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2659
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2679
2660
  "name": "RefAttributes"
2680
2661
  }
2681
2662
  ],
@@ -2695,12 +2676,12 @@
2695
2676
  "description": "",
2696
2677
  "name": "className",
2697
2678
  "parent": {
2698
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2679
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2699
2680
  "name": "HTMLAttributes"
2700
2681
  },
2701
2682
  "declarations": [
2702
2683
  {
2703
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2684
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2704
2685
  "name": "HTMLAttributes"
2705
2686
  }
2706
2687
  ],
@@ -2714,12 +2695,12 @@
2714
2695
  "description": "",
2715
2696
  "name": "ref",
2716
2697
  "parent": {
2717
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2698
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2718
2699
  "name": "RefAttributes"
2719
2700
  },
2720
2701
  "declarations": [
2721
2702
  {
2722
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2703
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2723
2704
  "name": "RefAttributes"
2724
2705
  }
2725
2706
  ],
@@ -2739,12 +2720,12 @@
2739
2720
  "description": "",
2740
2721
  "name": "className",
2741
2722
  "parent": {
2742
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2723
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2743
2724
  "name": "SVGAttributes"
2744
2725
  },
2745
2726
  "declarations": [
2746
2727
  {
2747
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2728
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2748
2729
  "name": "SVGAttributes"
2749
2730
  }
2750
2731
  ],
@@ -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",
@@ -2842,12 +2823,12 @@
2842
2823
  "description": "",
2843
2824
  "name": "ref",
2844
2825
  "parent": {
2845
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2826
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2846
2827
  "name": "RefAttributes"
2847
2828
  },
2848
2829
  "declarations": [
2849
2830
  {
2850
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2831
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2851
2832
  "name": "RefAttributes"
2852
2833
  }
2853
2834
  ],
@@ -2867,12 +2848,12 @@
2867
2848
  "description": "",
2868
2849
  "name": "className",
2869
2850
  "parent": {
2870
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2851
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2871
2852
  "name": "HTMLAttributes"
2872
2853
  },
2873
2854
  "declarations": [
2874
2855
  {
2875
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2856
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2876
2857
  "name": "HTMLAttributes"
2877
2858
  }
2878
2859
  ],
@@ -2886,12 +2867,12 @@
2886
2867
  "description": "",
2887
2868
  "name": "ref",
2888
2869
  "parent": {
2889
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2870
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2890
2871
  "name": "RefAttributes"
2891
2872
  },
2892
2873
  "declarations": [
2893
2874
  {
2894
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2875
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2895
2876
  "name": "RefAttributes"
2896
2877
  }
2897
2878
  ],
@@ -2951,12 +2932,12 @@
2951
2932
  "description": "",
2952
2933
  "name": "className",
2953
2934
  "parent": {
2954
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2935
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2955
2936
  "name": "HTMLAttributes"
2956
2937
  },
2957
2938
  "declarations": [
2958
2939
  {
2959
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2940
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2960
2941
  "name": "HTMLAttributes"
2961
2942
  }
2962
2943
  ],
@@ -2970,12 +2951,12 @@
2970
2951
  "description": "",
2971
2952
  "name": "ref",
2972
2953
  "parent": {
2973
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2954
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2974
2955
  "name": "RefAttributes"
2975
2956
  },
2976
2957
  "declarations": [
2977
2958
  {
2978
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2959
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
2979
2960
  "name": "RefAttributes"
2980
2961
  }
2981
2962
  ],
@@ -3035,12 +3016,12 @@
3035
3016
  "description": "",
3036
3017
  "name": "className",
3037
3018
  "parent": {
3038
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3019
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3039
3020
  "name": "HTMLAttributes"
3040
3021
  },
3041
3022
  "declarations": [
3042
3023
  {
3043
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3024
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3044
3025
  "name": "HTMLAttributes"
3045
3026
  }
3046
3027
  ],
@@ -3054,12 +3035,12 @@
3054
3035
  "description": "",
3055
3036
  "name": "ref",
3056
3037
  "parent": {
3057
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3038
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3058
3039
  "name": "RefAttributes"
3059
3040
  },
3060
3041
  "declarations": [
3061
3042
  {
3062
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3043
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3063
3044
  "name": "RefAttributes"
3064
3045
  }
3065
3046
  ],
@@ -3100,12 +3081,12 @@
3100
3081
  "description": "",
3101
3082
  "name": "className",
3102
3083
  "parent": {
3103
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3084
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3104
3085
  "name": "HTMLAttributes"
3105
3086
  },
3106
3087
  "declarations": [
3107
3088
  {
3108
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3089
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3109
3090
  "name": "HTMLAttributes"
3110
3091
  }
3111
3092
  ],
@@ -3119,12 +3100,12 @@
3119
3100
  "description": "",
3120
3101
  "name": "ref",
3121
3102
  "parent": {
3122
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3103
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3123
3104
  "name": "RefAttributes"
3124
3105
  },
3125
3106
  "declarations": [
3126
3107
  {
3127
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3108
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3128
3109
  "name": "RefAttributes"
3129
3110
  }
3130
3111
  ],
@@ -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",
@@ -3378,12 +3359,12 @@
3378
3359
  "description": "",
3379
3360
  "name": "ref",
3380
3361
  "parent": {
3381
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3362
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3382
3363
  "name": "RefAttributes"
3383
3364
  },
3384
3365
  "declarations": [
3385
3366
  {
3386
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3367
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3387
3368
  "name": "RefAttributes"
3388
3369
  }
3389
3370
  ],
@@ -3422,12 +3403,12 @@
3422
3403
  "description": "",
3423
3404
  "name": "className",
3424
3405
  "parent": {
3425
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3406
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3426
3407
  "name": "HTMLAttributes"
3427
3408
  },
3428
3409
  "declarations": [
3429
3410
  {
3430
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3411
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3431
3412
  "name": "HTMLAttributes"
3432
3413
  }
3433
3414
  ],
@@ -3441,12 +3422,12 @@
3441
3422
  "description": "",
3442
3423
  "name": "ref",
3443
3424
  "parent": {
3444
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3425
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3445
3426
  "name": "RefAttributes"
3446
3427
  },
3447
3428
  "declarations": [
3448
3429
  {
3449
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3430
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3450
3431
  "name": "RefAttributes"
3451
3432
  }
3452
3433
  ],
@@ -3565,12 +3546,12 @@
3565
3546
  "description": "",
3566
3547
  "name": "className",
3567
3548
  "parent": {
3568
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3549
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3569
3550
  "name": "HTMLAttributes"
3570
3551
  },
3571
3552
  "declarations": [
3572
3553
  {
3573
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3554
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3574
3555
  "name": "HTMLAttributes"
3575
3556
  }
3576
3557
  ],
@@ -3584,12 +3565,12 @@
3584
3565
  "description": "",
3585
3566
  "name": "ref",
3586
3567
  "parent": {
3587
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3568
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3588
3569
  "name": "RefAttributes"
3589
3570
  },
3590
3571
  "declarations": [
3591
3572
  {
3592
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3573
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3593
3574
  "name": "RefAttributes"
3594
3575
  }
3595
3576
  ],
@@ -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",
@@ -3796,12 +3777,12 @@
3796
3777
  "description": "",
3797
3778
  "name": "className",
3798
3779
  "parent": {
3799
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3780
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3800
3781
  "name": "HTMLAttributes"
3801
3782
  },
3802
3783
  "declarations": [
3803
3784
  {
3804
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3785
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3805
3786
  "name": "HTMLAttributes"
3806
3787
  }
3807
3788
  ],
@@ -3815,12 +3796,12 @@
3815
3796
  "description": "",
3816
3797
  "name": "ref",
3817
3798
  "parent": {
3818
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3799
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3819
3800
  "name": "RefAttributes"
3820
3801
  },
3821
3802
  "declarations": [
3822
3803
  {
3823
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3804
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3824
3805
  "name": "RefAttributes"
3825
3806
  }
3826
3807
  ],
@@ -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",
@@ -3880,12 +3861,12 @@
3880
3861
  "description": "",
3881
3862
  "name": "className",
3882
3863
  "parent": {
3883
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3864
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3884
3865
  "name": "HTMLAttributes"
3885
3866
  },
3886
3867
  "declarations": [
3887
3868
  {
3888
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3869
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3889
3870
  "name": "HTMLAttributes"
3890
3871
  }
3891
3872
  ],
@@ -3899,12 +3880,12 @@
3899
3880
  "description": "",
3900
3881
  "name": "ref",
3901
3882
  "parent": {
3902
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3883
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3903
3884
  "name": "RefAttributes"
3904
3885
  },
3905
3886
  "declarations": [
3906
3887
  {
3907
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3888
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
3908
3889
  "name": "RefAttributes"
3909
3890
  }
3910
3891
  ],
@@ -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",
@@ -4084,12 +4065,12 @@
4084
4065
  "description": "",
4085
4066
  "name": "className",
4086
4067
  "parent": {
4087
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4068
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4088
4069
  "name": "HTMLAttributes"
4089
4070
  },
4090
4071
  "declarations": [
4091
4072
  {
4092
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4073
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4093
4074
  "name": "HTMLAttributes"
4094
4075
  }
4095
4076
  ],
@@ -4103,12 +4084,12 @@
4103
4084
  "description": "",
4104
4085
  "name": "ref",
4105
4086
  "parent": {
4106
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4087
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4107
4088
  "name": "RefAttributes"
4108
4089
  },
4109
4090
  "declarations": [
4110
4091
  {
4111
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4092
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4112
4093
  "name": "RefAttributes"
4113
4094
  }
4114
4095
  ],
@@ -4147,12 +4128,12 @@
4147
4128
  "description": "",
4148
4129
  "name": "className",
4149
4130
  "parent": {
4150
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4131
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4151
4132
  "name": "HTMLAttributes"
4152
4133
  },
4153
4134
  "declarations": [
4154
4135
  {
4155
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4136
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4156
4137
  "name": "HTMLAttributes"
4157
4138
  }
4158
4139
  ],
@@ -4166,12 +4147,12 @@
4166
4147
  "description": "",
4167
4148
  "name": "ref",
4168
4149
  "parent": {
4169
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4150
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4170
4151
  "name": "RefAttributes"
4171
4152
  },
4172
4153
  "declarations": [
4173
4154
  {
4174
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4155
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4175
4156
  "name": "RefAttributes"
4176
4157
  }
4177
4158
  ],
@@ -4290,12 +4271,12 @@
4290
4271
  "description": "",
4291
4272
  "name": "className",
4292
4273
  "parent": {
4293
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4274
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4294
4275
  "name": "HTMLAttributes"
4295
4276
  },
4296
4277
  "declarations": [
4297
4278
  {
4298
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4279
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4299
4280
  "name": "HTMLAttributes"
4300
4281
  }
4301
4282
  ],
@@ -4309,12 +4290,12 @@
4309
4290
  "description": "",
4310
4291
  "name": "ref",
4311
4292
  "parent": {
4312
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4293
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4313
4294
  "name": "RefAttributes"
4314
4295
  },
4315
4296
  "declarations": [
4316
4297
  {
4317
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4298
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4318
4299
  "name": "RefAttributes"
4319
4300
  }
4320
4301
  ],
@@ -4391,12 +4372,12 @@
4391
4372
  "description": "",
4392
4373
  "name": "className",
4393
4374
  "parent": {
4394
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4375
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4395
4376
  "name": "HTMLAttributes"
4396
4377
  },
4397
4378
  "declarations": [
4398
4379
  {
4399
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4380
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4400
4381
  "name": "HTMLAttributes"
4401
4382
  }
4402
4383
  ],
@@ -4410,12 +4391,12 @@
4410
4391
  "description": "",
4411
4392
  "name": "ref",
4412
4393
  "parent": {
4413
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4394
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4414
4395
  "name": "RefAttributes"
4415
4396
  },
4416
4397
  "declarations": [
4417
4398
  {
4418
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4399
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4419
4400
  "name": "RefAttributes"
4420
4401
  }
4421
4402
  ],
@@ -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",
@@ -4551,12 +4532,12 @@
4551
4532
  "description": "",
4552
4533
  "name": "className",
4553
4534
  "parent": {
4554
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4535
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4555
4536
  "name": "HTMLAttributes"
4556
4537
  },
4557
4538
  "declarations": [
4558
4539
  {
4559
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4540
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4560
4541
  "name": "HTMLAttributes"
4561
4542
  }
4562
4543
  ],
@@ -4570,12 +4551,12 @@
4570
4551
  "description": "",
4571
4552
  "name": "ref",
4572
4553
  "parent": {
4573
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4554
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4574
4555
  "name": "RefAttributes"
4575
4556
  },
4576
4557
  "declarations": [
4577
4558
  {
4578
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4559
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4579
4560
  "name": "RefAttributes"
4580
4561
  }
4581
4562
  ],
@@ -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",
@@ -4652,12 +4633,12 @@
4652
4633
  "description": "",
4653
4634
  "name": "className",
4654
4635
  "parent": {
4655
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4636
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4656
4637
  "name": "HTMLAttributes"
4657
4638
  },
4658
4639
  "declarations": [
4659
4640
  {
4660
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4641
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4661
4642
  "name": "HTMLAttributes"
4662
4643
  }
4663
4644
  ],
@@ -4671,12 +4652,12 @@
4671
4652
  "description": "",
4672
4653
  "name": "ref",
4673
4654
  "parent": {
4674
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4655
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4675
4656
  "name": "RefAttributes"
4676
4657
  },
4677
4658
  "declarations": [
4678
4659
  {
4679
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4660
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4680
4661
  "name": "RefAttributes"
4681
4662
  }
4682
4663
  ],
@@ -4812,12 +4793,12 @@
4812
4793
  "description": "",
4813
4794
  "name": "ref",
4814
4795
  "parent": {
4815
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4796
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4816
4797
  "name": "RefAttributes"
4817
4798
  },
4818
4799
  "declarations": [
4819
4800
  {
4820
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4801
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4821
4802
  "name": "RefAttributes"
4822
4803
  }
4823
4804
  ],
@@ -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",
@@ -4877,12 +4858,12 @@
4877
4858
  "description": "",
4878
4859
  "name": "className",
4879
4860
  "parent": {
4880
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4861
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4881
4862
  "name": "HTMLAttributes"
4882
4863
  },
4883
4864
  "declarations": [
4884
4865
  {
4885
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4866
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4886
4867
  "name": "HTMLAttributes"
4887
4868
  }
4888
4869
  ],
@@ -4896,12 +4877,12 @@
4896
4877
  "description": "",
4897
4878
  "name": "ref",
4898
4879
  "parent": {
4899
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4880
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4900
4881
  "name": "RefAttributes"
4901
4882
  },
4902
4883
  "declarations": [
4903
4884
  {
4904
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4885
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
4905
4886
  "name": "RefAttributes"
4906
4887
  }
4907
4888
  ],
@@ -4997,12 +4978,12 @@
4997
4978
  "description": "",
4998
4979
  "name": "ref",
4999
4980
  "parent": {
5000
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4981
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5001
4982
  "name": "RefAttributes"
5002
4983
  },
5003
4984
  "declarations": [
5004
4985
  {
5005
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4986
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5006
4987
  "name": "RefAttributes"
5007
4988
  }
5008
4989
  ],
@@ -5022,12 +5003,12 @@
5022
5003
  "description": "",
5023
5004
  "name": "className",
5024
5005
  "parent": {
5025
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5006
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5026
5007
  "name": "HTMLAttributes"
5027
5008
  },
5028
5009
  "declarations": [
5029
5010
  {
5030
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5011
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5031
5012
  "name": "HTMLAttributes"
5032
5013
  }
5033
5014
  ],
@@ -5041,12 +5022,12 @@
5041
5022
  "description": "",
5042
5023
  "name": "ref",
5043
5024
  "parent": {
5044
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5025
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5045
5026
  "name": "RefAttributes"
5046
5027
  },
5047
5028
  "declarations": [
5048
5029
  {
5049
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5030
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5050
5031
  "name": "RefAttributes"
5051
5032
  }
5052
5033
  ],
@@ -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",
@@ -5146,12 +5127,12 @@
5146
5127
  "description": "",
5147
5128
  "name": "className",
5148
5129
  "parent": {
5149
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5130
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5150
5131
  "name": "HTMLAttributes"
5151
5132
  },
5152
5133
  "declarations": [
5153
5134
  {
5154
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5135
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5155
5136
  "name": "HTMLAttributes"
5156
5137
  }
5157
5138
  ],
@@ -5165,12 +5146,12 @@
5165
5146
  "description": "",
5166
5147
  "name": "ref",
5167
5148
  "parent": {
5168
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5149
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5169
5150
  "name": "RefAttributes"
5170
5151
  },
5171
5152
  "declarations": [
5172
5153
  {
5173
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5154
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5174
5155
  "name": "RefAttributes"
5175
5156
  }
5176
5157
  ],
@@ -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",
@@ -5211,12 +5192,12 @@
5211
5192
  "description": "",
5212
5193
  "name": "className",
5213
5194
  "parent": {
5214
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5195
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5215
5196
  "name": "HTMLAttributes"
5216
5197
  },
5217
5198
  "declarations": [
5218
5199
  {
5219
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5200
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5220
5201
  "name": "HTMLAttributes"
5221
5202
  }
5222
5203
  ],
@@ -5230,12 +5211,12 @@
5230
5211
  "description": "",
5231
5212
  "name": "ref",
5232
5213
  "parent": {
5233
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5214
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5234
5215
  "name": "RefAttributes"
5235
5216
  },
5236
5217
  "declarations": [
5237
5218
  {
5238
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5219
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5239
5220
  "name": "RefAttributes"
5240
5221
  }
5241
5222
  ],
@@ -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",
@@ -5396,12 +5377,12 @@
5396
5377
  "description": "",
5397
5378
  "name": "className",
5398
5379
  "parent": {
5399
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5380
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5400
5381
  "name": "HTMLAttributes"
5401
5382
  },
5402
5383
  "declarations": [
5403
5384
  {
5404
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5385
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5405
5386
  "name": "HTMLAttributes"
5406
5387
  }
5407
5388
  ],
@@ -5415,12 +5396,12 @@
5415
5396
  "description": "",
5416
5397
  "name": "ref",
5417
5398
  "parent": {
5418
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5399
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5419
5400
  "name": "RefAttributes"
5420
5401
  },
5421
5402
  "declarations": [
5422
5403
  {
5423
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5404
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5424
5405
  "name": "RefAttributes"
5425
5406
  }
5426
5407
  ],
@@ -5440,12 +5421,12 @@
5440
5421
  "description": "",
5441
5422
  "name": "className",
5442
5423
  "parent": {
5443
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5424
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5444
5425
  "name": "HTMLAttributes"
5445
5426
  },
5446
5427
  "declarations": [
5447
5428
  {
5448
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5429
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5449
5430
  "name": "HTMLAttributes"
5450
5431
  }
5451
5432
  ],
@@ -5459,12 +5440,12 @@
5459
5440
  "description": "",
5460
5441
  "name": "ref",
5461
5442
  "parent": {
5462
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5443
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5463
5444
  "name": "RefAttributes"
5464
5445
  },
5465
5446
  "declarations": [
5466
5447
  {
5467
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5448
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5468
5449
  "name": "RefAttributes"
5469
5450
  }
5470
5451
  ],
@@ -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",
@@ -5524,12 +5505,12 @@
5524
5505
  "description": "",
5525
5506
  "name": "className",
5526
5507
  "parent": {
5527
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5508
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5528
5509
  "name": "HTMLAttributes"
5529
5510
  },
5530
5511
  "declarations": [
5531
5512
  {
5532
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5513
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5533
5514
  "name": "HTMLAttributes"
5534
5515
  }
5535
5516
  ],
@@ -5543,12 +5524,12 @@
5543
5524
  "description": "",
5544
5525
  "name": "ref",
5545
5526
  "parent": {
5546
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5527
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5547
5528
  "name": "RefAttributes"
5548
5529
  },
5549
5530
  "declarations": [
5550
5531
  {
5551
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5532
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5552
5533
  "name": "RefAttributes"
5553
5534
  }
5554
5535
  ],
@@ -5589,12 +5570,12 @@
5589
5570
  "description": "",
5590
5571
  "name": "className",
5591
5572
  "parent": {
5592
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5573
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5593
5574
  "name": "HTMLAttributes"
5594
5575
  },
5595
5576
  "declarations": [
5596
5577
  {
5597
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5578
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5598
5579
  "name": "HTMLAttributes"
5599
5580
  }
5600
5581
  ],
@@ -5608,12 +5589,12 @@
5608
5589
  "description": "",
5609
5590
  "name": "ref",
5610
5591
  "parent": {
5611
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5592
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5612
5593
  "name": "RefAttributes"
5613
5594
  },
5614
5595
  "declarations": [
5615
5596
  {
5616
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5597
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5617
5598
  "name": "RefAttributes"
5618
5599
  }
5619
5600
  ],
@@ -5713,12 +5694,12 @@
5713
5694
  "description": "",
5714
5695
  "name": "className",
5715
5696
  "parent": {
5716
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5697
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5717
5698
  "name": "HTMLAttributes"
5718
5699
  },
5719
5700
  "declarations": [
5720
5701
  {
5721
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5702
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5722
5703
  "name": "HTMLAttributes"
5723
5704
  }
5724
5705
  ],
@@ -5732,12 +5713,12 @@
5732
5713
  "description": "",
5733
5714
  "name": "ref",
5734
5715
  "parent": {
5735
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5716
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5736
5717
  "name": "RefAttributes"
5737
5718
  },
5738
5719
  "declarations": [
5739
5720
  {
5740
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5721
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5741
5722
  "name": "RefAttributes"
5742
5723
  }
5743
5724
  ],
@@ -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",
@@ -5835,12 +5816,12 @@
5835
5816
  "description": "",
5836
5817
  "name": "className",
5837
5818
  "parent": {
5838
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5819
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5839
5820
  "name": "HTMLAttributes"
5840
5821
  },
5841
5822
  "declarations": [
5842
5823
  {
5843
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5824
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5844
5825
  "name": "HTMLAttributes"
5845
5826
  }
5846
5827
  ],
@@ -5854,12 +5835,12 @@
5854
5835
  "description": "",
5855
5836
  "name": "ref",
5856
5837
  "parent": {
5857
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5838
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5858
5839
  "name": "RefAttributes"
5859
5840
  },
5860
5841
  "declarations": [
5861
5842
  {
5862
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5843
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5863
5844
  "name": "RefAttributes"
5864
5845
  }
5865
5846
  ],
@@ -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",
@@ -5917,12 +5898,12 @@
5917
5898
  "description": "",
5918
5899
  "name": "className",
5919
5900
  "parent": {
5920
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5901
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5921
5902
  "name": "HTMLAttributes"
5922
5903
  },
5923
5904
  "declarations": [
5924
5905
  {
5925
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5906
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5926
5907
  "name": "HTMLAttributes"
5927
5908
  }
5928
5909
  ],
@@ -5936,12 +5917,12 @@
5936
5917
  "description": "",
5937
5918
  "name": "ref",
5938
5919
  "parent": {
5939
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5920
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5940
5921
  "name": "RefAttributes"
5941
5922
  },
5942
5923
  "declarations": [
5943
5924
  {
5944
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5925
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
5945
5926
  "name": "RefAttributes"
5946
5927
  }
5947
5928
  ],
@@ -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",
@@ -5999,12 +5980,12 @@
5999
5980
  "description": "",
6000
5981
  "name": "className",
6001
5982
  "parent": {
6002
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5983
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6003
5984
  "name": "HTMLAttributes"
6004
5985
  },
6005
5986
  "declarations": [
6006
5987
  {
6007
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5988
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6008
5989
  "name": "HTMLAttributes"
6009
5990
  }
6010
5991
  ],
@@ -6018,12 +5999,12 @@
6018
5999
  "description": "",
6019
6000
  "name": "ref",
6020
6001
  "parent": {
6021
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6002
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6022
6003
  "name": "RefAttributes"
6023
6004
  },
6024
6005
  "declarations": [
6025
6006
  {
6026
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6007
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6027
6008
  "name": "RefAttributes"
6028
6009
  }
6029
6010
  ],
@@ -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",
@@ -6161,12 +6123,12 @@
6161
6123
  "description": "",
6162
6124
  "name": "className",
6163
6125
  "parent": {
6164
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6126
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6165
6127
  "name": "HTMLAttributes"
6166
6128
  },
6167
6129
  "declarations": [
6168
6130
  {
6169
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6131
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6170
6132
  "name": "HTMLAttributes"
6171
6133
  }
6172
6134
  ],
@@ -6180,12 +6142,12 @@
6180
6142
  "description": "",
6181
6143
  "name": "ref",
6182
6144
  "parent": {
6183
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6145
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6184
6146
  "name": "RefAttributes"
6185
6147
  },
6186
6148
  "declarations": [
6187
6149
  {
6188
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6150
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6189
6151
  "name": "RefAttributes"
6190
6152
  }
6191
6153
  ],
@@ -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",
@@ -6264,12 +6226,12 @@
6264
6226
  "description": "",
6265
6227
  "name": "className",
6266
6228
  "parent": {
6267
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6229
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6268
6230
  "name": "HTMLAttributes"
6269
6231
  },
6270
6232
  "declarations": [
6271
6233
  {
6272
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6234
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6273
6235
  "name": "HTMLAttributes"
6274
6236
  }
6275
6237
  ],
@@ -6283,12 +6245,12 @@
6283
6245
  "description": "",
6284
6246
  "name": "ref",
6285
6247
  "parent": {
6286
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6248
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6287
6249
  "name": "RefAttributes"
6288
6250
  },
6289
6251
  "declarations": [
6290
6252
  {
6291
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6253
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6292
6254
  "name": "RefAttributes"
6293
6255
  }
6294
6256
  ],
@@ -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",
@@ -6424,12 +6386,12 @@
6424
6386
  "description": "",
6425
6387
  "name": "className",
6426
6388
  "parent": {
6427
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6389
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6428
6390
  "name": "HTMLAttributes"
6429
6391
  },
6430
6392
  "declarations": [
6431
6393
  {
6432
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6394
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6433
6395
  "name": "HTMLAttributes"
6434
6396
  }
6435
6397
  ],
@@ -6443,12 +6405,12 @@
6443
6405
  "description": "",
6444
6406
  "name": "ref",
6445
6407
  "parent": {
6446
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6408
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6447
6409
  "name": "RefAttributes"
6448
6410
  },
6449
6411
  "declarations": [
6450
6412
  {
6451
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6413
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6452
6414
  "name": "RefAttributes"
6453
6415
  }
6454
6416
  ],
@@ -6506,12 +6468,12 @@
6506
6468
  "description": "",
6507
6469
  "name": "className",
6508
6470
  "parent": {
6509
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6471
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6510
6472
  "name": "HTMLAttributes"
6511
6473
  },
6512
6474
  "declarations": [
6513
6475
  {
6514
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6476
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6515
6477
  "name": "HTMLAttributes"
6516
6478
  }
6517
6479
  ],
@@ -6525,12 +6487,12 @@
6525
6487
  "description": "",
6526
6488
  "name": "ref",
6527
6489
  "parent": {
6528
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6490
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6529
6491
  "name": "RefAttributes"
6530
6492
  },
6531
6493
  "declarations": [
6532
6494
  {
6533
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6495
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6534
6496
  "name": "RefAttributes"
6535
6497
  }
6536
6498
  ],
@@ -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",
@@ -6752,12 +6714,12 @@
6752
6714
  "description": "",
6753
6715
  "name": "className",
6754
6716
  "parent": {
6755
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6717
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6756
6718
  "name": "HTMLAttributes"
6757
6719
  },
6758
6720
  "declarations": [
6759
6721
  {
6760
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6722
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6761
6723
  "name": "HTMLAttributes"
6762
6724
  }
6763
6725
  ],
@@ -6771,12 +6733,12 @@
6771
6733
  "description": "",
6772
6734
  "name": "ref",
6773
6735
  "parent": {
6774
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6736
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6775
6737
  "name": "RefAttributes"
6776
6738
  },
6777
6739
  "declarations": [
6778
6740
  {
6779
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6741
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6780
6742
  "name": "RefAttributes"
6781
6743
  }
6782
6744
  ],
@@ -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",
@@ -6860,12 +6822,12 @@
6860
6822
  "description": "",
6861
6823
  "name": "className",
6862
6824
  "parent": {
6863
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6825
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6864
6826
  "name": "HTMLAttributes"
6865
6827
  },
6866
6828
  "declarations": [
6867
6829
  {
6868
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6830
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6869
6831
  "name": "HTMLAttributes"
6870
6832
  }
6871
6833
  ],
@@ -6879,12 +6841,12 @@
6879
6841
  "description": "",
6880
6842
  "name": "ref",
6881
6843
  "parent": {
6882
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6844
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6883
6845
  "name": "RefAttributes"
6884
6846
  },
6885
6847
  "declarations": [
6886
6848
  {
6887
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6849
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6888
6850
  "name": "RefAttributes"
6889
6851
  }
6890
6852
  ],
@@ -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",
@@ -6963,12 +6925,12 @@
6963
6925
  "description": "",
6964
6926
  "name": "className",
6965
6927
  "parent": {
6966
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6928
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6967
6929
  "name": "HTMLAttributes"
6968
6930
  },
6969
6931
  "declarations": [
6970
6932
  {
6971
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6933
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6972
6934
  "name": "HTMLAttributes"
6973
6935
  }
6974
6936
  ],
@@ -6982,12 +6944,12 @@
6982
6944
  "description": "",
6983
6945
  "name": "ref",
6984
6946
  "parent": {
6985
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6947
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6986
6948
  "name": "RefAttributes"
6987
6949
  },
6988
6950
  "declarations": [
6989
6951
  {
6990
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6952
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
6991
6953
  "name": "RefAttributes"
6992
6954
  }
6993
6955
  ],
@@ -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",
@@ -7066,12 +7028,12 @@
7066
7028
  "description": "",
7067
7029
  "name": "className",
7068
7030
  "parent": {
7069
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7031
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7070
7032
  "name": "HTMLAttributes"
7071
7033
  },
7072
7034
  "declarations": [
7073
7035
  {
7074
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7036
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7075
7037
  "name": "HTMLAttributes"
7076
7038
  }
7077
7039
  ],
@@ -7085,12 +7047,12 @@
7085
7047
  "description": "",
7086
7048
  "name": "ref",
7087
7049
  "parent": {
7088
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7050
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7089
7051
  "name": "RefAttributes"
7090
7052
  },
7091
7053
  "declarations": [
7092
7054
  {
7093
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7055
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7094
7056
  "name": "RefAttributes"
7095
7057
  }
7096
7058
  ],
@@ -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",
@@ -7190,12 +7152,12 @@
7190
7152
  "description": "",
7191
7153
  "name": "className",
7192
7154
  "parent": {
7193
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7155
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7194
7156
  "name": "HTMLAttributes"
7195
7157
  },
7196
7158
  "declarations": [
7197
7159
  {
7198
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7160
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7199
7161
  "name": "HTMLAttributes"
7200
7162
  }
7201
7163
  ],
@@ -7209,12 +7171,12 @@
7209
7171
  "description": "",
7210
7172
  "name": "ref",
7211
7173
  "parent": {
7212
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7174
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7213
7175
  "name": "RefAttributes"
7214
7176
  },
7215
7177
  "declarations": [
7216
7178
  {
7217
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7179
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7218
7180
  "name": "RefAttributes"
7219
7181
  }
7220
7182
  ],
@@ -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",
@@ -7272,12 +7234,12 @@
7272
7234
  "description": "",
7273
7235
  "name": "className",
7274
7236
  "parent": {
7275
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7237
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7276
7238
  "name": "HTMLAttributes"
7277
7239
  },
7278
7240
  "declarations": [
7279
7241
  {
7280
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7242
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7281
7243
  "name": "HTMLAttributes"
7282
7244
  }
7283
7245
  ],
@@ -7291,12 +7253,12 @@
7291
7253
  "description": "",
7292
7254
  "name": "ref",
7293
7255
  "parent": {
7294
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7256
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7295
7257
  "name": "RefAttributes"
7296
7258
  },
7297
7259
  "declarations": [
7298
7260
  {
7299
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7261
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7300
7262
  "name": "RefAttributes"
7301
7263
  }
7302
7264
  ],
@@ -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",
@@ -7375,12 +7337,12 @@
7375
7337
  "description": "",
7376
7338
  "name": "className",
7377
7339
  "parent": {
7378
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7340
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7379
7341
  "name": "HTMLAttributes"
7380
7342
  },
7381
7343
  "declarations": [
7382
7344
  {
7383
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7345
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7384
7346
  "name": "HTMLAttributes"
7385
7347
  }
7386
7348
  ],
@@ -7394,12 +7356,12 @@
7394
7356
  "description": "",
7395
7357
  "name": "ref",
7396
7358
  "parent": {
7397
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7359
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7398
7360
  "name": "RefAttributes"
7399
7361
  },
7400
7362
  "declarations": [
7401
7363
  {
7402
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7364
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7403
7365
  "name": "RefAttributes"
7404
7366
  }
7405
7367
  ],
@@ -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",
@@ -7611,12 +7573,12 @@
7611
7573
  "description": "",
7612
7574
  "name": "className",
7613
7575
  "parent": {
7614
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7576
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7615
7577
  "name": "HTMLAttributes"
7616
7578
  },
7617
7579
  "declarations": [
7618
7580
  {
7619
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7581
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7620
7582
  "name": "HTMLAttributes"
7621
7583
  }
7622
7584
  ],
@@ -7630,12 +7592,12 @@
7630
7592
  "description": "",
7631
7593
  "name": "ref",
7632
7594
  "parent": {
7633
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7595
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7634
7596
  "name": "RefAttributes"
7635
7597
  },
7636
7598
  "declarations": [
7637
7599
  {
7638
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7600
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7639
7601
  "name": "RefAttributes"
7640
7602
  }
7641
7603
  ],
@@ -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",
@@ -7830,12 +7792,12 @@
7830
7792
  "description": "",
7831
7793
  "name": "className",
7832
7794
  "parent": {
7833
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7795
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7834
7796
  "name": "HTMLAttributes"
7835
7797
  },
7836
7798
  "declarations": [
7837
7799
  {
7838
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7800
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7839
7801
  "name": "HTMLAttributes"
7840
7802
  }
7841
7803
  ],
@@ -7849,12 +7811,12 @@
7849
7811
  "description": "",
7850
7812
  "name": "ref",
7851
7813
  "parent": {
7852
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7814
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7853
7815
  "name": "RefAttributes"
7854
7816
  },
7855
7817
  "declarations": [
7856
7818
  {
7857
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7819
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
7858
7820
  "name": "RefAttributes"
7859
7821
  }
7860
7822
  ],
@@ -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",
@@ -8104,12 +8066,12 @@
8104
8066
  "description": "",
8105
8067
  "name": "className",
8106
8068
  "parent": {
8107
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8069
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8108
8070
  "name": "HTMLAttributes"
8109
8071
  },
8110
8072
  "declarations": [
8111
8073
  {
8112
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8074
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8113
8075
  "name": "HTMLAttributes"
8114
8076
  }
8115
8077
  ],
@@ -8123,12 +8085,12 @@
8123
8085
  "description": "",
8124
8086
  "name": "ref",
8125
8087
  "parent": {
8126
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8088
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8127
8089
  "name": "RefAttributes"
8128
8090
  },
8129
8091
  "declarations": [
8130
8092
  {
8131
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8093
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8132
8094
  "name": "RefAttributes"
8133
8095
  }
8134
8096
  ],
@@ -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",
@@ -8228,12 +8190,12 @@
8228
8190
  "description": "",
8229
8191
  "name": "className",
8230
8192
  "parent": {
8231
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8193
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8232
8194
  "name": "HTMLAttributes"
8233
8195
  },
8234
8196
  "declarations": [
8235
8197
  {
8236
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8198
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8237
8199
  "name": "HTMLAttributes"
8238
8200
  }
8239
8201
  ],
@@ -8247,12 +8209,12 @@
8247
8209
  "description": "",
8248
8210
  "name": "ref",
8249
8211
  "parent": {
8250
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8212
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8251
8213
  "name": "RefAttributes"
8252
8214
  },
8253
8215
  "declarations": [
8254
8216
  {
8255
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8217
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8256
8218
  "name": "RefAttributes"
8257
8219
  }
8258
8220
  ],
@@ -8291,12 +8253,12 @@
8291
8253
  "description": "",
8292
8254
  "name": "className",
8293
8255
  "parent": {
8294
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8256
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8295
8257
  "name": "HTMLAttributes"
8296
8258
  },
8297
8259
  "declarations": [
8298
8260
  {
8299
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8261
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8300
8262
  "name": "HTMLAttributes"
8301
8263
  }
8302
8264
  ],
@@ -8310,12 +8272,12 @@
8310
8272
  "description": "",
8311
8273
  "name": "ref",
8312
8274
  "parent": {
8313
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8275
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8314
8276
  "name": "RefAttributes"
8315
8277
  },
8316
8278
  "declarations": [
8317
8279
  {
8318
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8280
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8319
8281
  "name": "RefAttributes"
8320
8282
  }
8321
8283
  ],
@@ -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",
@@ -8449,12 +8411,12 @@
8449
8411
  "description": "",
8450
8412
  "name": "className",
8451
8413
  "parent": {
8452
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8414
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8453
8415
  "name": "HTMLAttributes"
8454
8416
  },
8455
8417
  "declarations": [
8456
8418
  {
8457
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8419
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8458
8420
  "name": "HTMLAttributes"
8459
8421
  }
8460
8422
  ],
@@ -8468,12 +8430,12 @@
8468
8430
  "description": "",
8469
8431
  "name": "ref",
8470
8432
  "parent": {
8471
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8433
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8472
8434
  "name": "RefAttributes"
8473
8435
  },
8474
8436
  "declarations": [
8475
8437
  {
8476
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8438
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8477
8439
  "name": "RefAttributes"
8478
8440
  }
8479
8441
  ],
@@ -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",
@@ -8761,12 +8723,12 @@
8761
8723
  "description": "",
8762
8724
  "name": "className",
8763
8725
  "parent": {
8764
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8726
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8765
8727
  "name": "HTMLAttributes"
8766
8728
  },
8767
8729
  "declarations": [
8768
8730
  {
8769
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8731
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8770
8732
  "name": "HTMLAttributes"
8771
8733
  }
8772
8734
  ],
@@ -8780,12 +8742,12 @@
8780
8742
  "description": "",
8781
8743
  "name": "ref",
8782
8744
  "parent": {
8783
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8745
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8784
8746
  "name": "RefAttributes"
8785
8747
  },
8786
8748
  "declarations": [
8787
8749
  {
8788
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8750
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
8789
8751
  "name": "RefAttributes"
8790
8752
  }
8791
8753
  ],
@@ -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",
@@ -9022,12 +8984,12 @@
9022
8984
  "description": "",
9023
8985
  "name": "className",
9024
8986
  "parent": {
9025
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8987
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9026
8988
  "name": "HTMLAttributes"
9027
8989
  },
9028
8990
  "declarations": [
9029
8991
  {
9030
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8992
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9031
8993
  "name": "HTMLAttributes"
9032
8994
  }
9033
8995
  ],
@@ -9041,12 +9003,12 @@
9041
9003
  "description": "",
9042
9004
  "name": "ref",
9043
9005
  "parent": {
9044
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
9006
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9045
9007
  "name": "RefAttributes"
9046
9008
  },
9047
9009
  "declarations": [
9048
9010
  {
9049
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
9011
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9050
9012
  "name": "RefAttributes"
9051
9013
  }
9052
9014
  ],
@@ -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": {
@@ -9127,12 +9087,12 @@
9127
9087
  "description": "",
9128
9088
  "name": "className",
9129
9089
  "parent": {
9130
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
9090
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9131
9091
  "name": "HTMLAttributes"
9132
9092
  },
9133
9093
  "declarations": [
9134
9094
  {
9135
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
9095
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9136
9096
  "name": "HTMLAttributes"
9137
9097
  }
9138
9098
  ],
@@ -9146,12 +9106,12 @@
9146
9106
  "description": "",
9147
9107
  "name": "ref",
9148
9108
  "parent": {
9149
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
9109
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9150
9110
  "name": "RefAttributes"
9151
9111
  },
9152
9112
  "declarations": [
9153
9113
  {
9154
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
9114
+ "fileName": "nav-frontend-moduler/node_modules/@types/react/index.d.ts",
9155
9115
  "name": "RefAttributes"
9156
9116
  }
9157
9117
  ],