@navikt/ds-react 1.5.9-next.1 → 1.5.10

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 (156) hide show
  1. package/_docs.json +694 -303
  2. package/cjs/modal/Modal.js +8 -2
  3. package/esm/accordion/Accordion.d.ts +17 -0
  4. package/esm/accordion/AccordionContent.d.ts +10 -0
  5. package/esm/accordion/AccordionHeader.d.ts +10 -0
  6. package/esm/accordion/AccordionItem.d.ts +26 -0
  7. package/esm/accordion/index.d.ts +1 -0
  8. package/esm/alert/Alert.d.ts +31 -0
  9. package/esm/alert/index.d.ts +2 -0
  10. package/esm/button/Button.d.ts +39 -0
  11. package/esm/button/index.d.ts +2 -0
  12. package/esm/chat/Bubble.d.ts +22 -0
  13. package/esm/chat/Chat.d.ts +38 -0
  14. package/esm/chat/index.d.ts +1 -0
  15. package/esm/chips/Chips.d.ts +17 -0
  16. package/esm/chips/Removable.d.ts +23 -0
  17. package/esm/chips/Toggle.d.ts +13 -0
  18. package/esm/chips/index.d.ts +1 -0
  19. package/esm/date/DateInput.d.ts +25 -0
  20. package/esm/date/datepicker/DatePicker.d.ts +90 -0
  21. package/esm/date/datepicker/DatePickerStandalone.d.ts +12 -0
  22. package/esm/date/datepicker/DayButton.d.ts +3 -0
  23. package/esm/date/datepicker/Head.d.ts +3 -0
  24. package/esm/date/datepicker/caption/Caption.d.ts +4 -0
  25. package/esm/date/datepicker/caption/DropdownCaption.d.ts +4 -0
  26. package/esm/date/datepicker/caption/index.d.ts +2 -0
  27. package/esm/date/hooks/index.d.ts +8 -0
  28. package/esm/date/hooks/useDateInputContext.d.ts +18 -0
  29. package/esm/date/hooks/useDatepicker.d.ts +63 -0
  30. package/esm/date/hooks/useMonthPicker.d.ts +58 -0
  31. package/esm/date/hooks/useRangeDatepicker.d.ts +53 -0
  32. package/esm/date/hooks/useSharedMonthContext.d.ts +21 -0
  33. package/esm/date/index.d.ts +6 -0
  34. package/esm/date/monthpicker/MonthButton.d.ts +11 -0
  35. package/esm/date/monthpicker/MonthCaption.d.ts +3 -0
  36. package/esm/date/monthpicker/MonthPicker.d.ts +85 -0
  37. package/esm/date/monthpicker/MonthPickerStandalone.d.ts +11 -0
  38. package/esm/date/monthpicker/MonthSelector.d.ts +3 -0
  39. package/esm/date/utils/check-dates.d.ts +4 -0
  40. package/esm/date/utils/dates-disabled.d.ts +1 -0
  41. package/esm/date/utils/format-date.d.ts +1 -0
  42. package/esm/date/utils/get-dates.d.ts +2 -0
  43. package/esm/date/utils/get-initial-year.d.ts +5 -0
  44. package/esm/date/utils/index.d.ts +10 -0
  45. package/esm/date/utils/is-match.d.ts +4 -0
  46. package/esm/date/utils/labels.d.ts +6 -0
  47. package/esm/date/utils/locale.d.ts +2 -0
  48. package/esm/date/utils/navigation.d.ts +2 -0
  49. package/esm/date/utils/parse-date.d.ts +3 -0
  50. package/esm/form/ConfirmationPanel.d.ts +22 -0
  51. package/esm/form/Fieldset/Fieldset.d.ts +42 -0
  52. package/esm/form/Fieldset/index.d.ts +1 -0
  53. package/esm/form/Fieldset/useFieldset.d.ts +14 -0
  54. package/esm/form/Select.d.ts +26 -0
  55. package/esm/form/Switch.d.ts +27 -0
  56. package/esm/form/TextField.d.ts +31 -0
  57. package/esm/form/Textarea.d.ts +48 -0
  58. package/esm/form/checkbox/Checkbox.d.ts +36 -0
  59. package/esm/form/checkbox/CheckboxGroup.d.ts +28 -0
  60. package/esm/form/checkbox/index.d.ts +2 -0
  61. package/esm/form/checkbox/useCheckbox.d.ts +21 -0
  62. package/esm/form/error-summary/ErrorSummary.d.ts +27 -0
  63. package/esm/form/error-summary/ErrorSummaryItem.d.ts +11 -0
  64. package/esm/form/error-summary/index.d.ts +2 -0
  65. package/esm/form/index.d.ts +10 -0
  66. package/esm/form/radio/Radio.d.ts +18 -0
  67. package/esm/form/radio/RadioGroup.d.ts +38 -0
  68. package/esm/form/radio/index.d.ts +2 -0
  69. package/esm/form/radio/useRadio.d.ts +23 -0
  70. package/esm/form/search/Search.d.ts +57 -0
  71. package/esm/form/search/SearchButton.d.ts +11 -0
  72. package/esm/form/search/index.d.ts +1 -0
  73. package/esm/form/useFormField.d.ts +44 -0
  74. package/esm/grid/Cell.d.ts +26 -0
  75. package/esm/grid/ContentContainer.d.ts +9 -0
  76. package/esm/grid/Grid.d.ts +9 -0
  77. package/esm/grid/index.d.ts +3 -0
  78. package/esm/guide-panel/Guide.d.ts +14 -0
  79. package/esm/guide-panel/GuidePanel.d.ts +18 -0
  80. package/esm/guide-panel/Illustration.d.ts +7 -0
  81. package/esm/guide-panel/index.d.ts +3 -0
  82. package/esm/help-text/HelpText.d.ts +17 -0
  83. package/esm/help-text/index.d.ts +2 -0
  84. package/esm/index.d.ts +27 -0
  85. package/esm/link/Link.d.ts +10 -0
  86. package/esm/link/index.d.ts +2 -0
  87. package/esm/link-panel/LinkPanel.d.ts +22 -0
  88. package/esm/link-panel/LinkPanelDescription.d.ts +7 -0
  89. package/esm/link-panel/LinkPanelTitle.d.ts +8 -0
  90. package/esm/link-panel/index.d.ts +2 -0
  91. package/esm/loader/Loader.d.ts +26 -0
  92. package/esm/loader/index.d.ts +2 -0
  93. package/esm/modal/Modal.d.ts +59 -0
  94. package/esm/modal/Modal.js +8 -2
  95. package/esm/modal/Modal.js.map +1 -1
  96. package/esm/modal/ModalContent.d.ts +10 -0
  97. package/esm/modal/index.d.ts +2 -0
  98. package/esm/pagination/Pagination.d.ts +53 -0
  99. package/esm/pagination/PaginationItem.d.ts +22 -0
  100. package/esm/pagination/index.d.ts +1 -0
  101. package/esm/panel/Panel.d.ts +16 -0
  102. package/esm/panel/index.d.ts +2 -0
  103. package/esm/popover/Popover.d.ts +47 -0
  104. package/esm/popover/PopoverContent.d.ts +10 -0
  105. package/esm/popover/index.d.ts +2 -0
  106. package/esm/provider/Provider.d.ts +20 -0
  107. package/esm/provider/index.d.ts +1 -0
  108. package/esm/read-more/ReadMore.d.ts +28 -0
  109. package/esm/read-more/index.d.ts +2 -0
  110. package/esm/stepper/Step.d.ts +28 -0
  111. package/esm/stepper/Stepper.d.ts +41 -0
  112. package/esm/stepper/index.d.ts +1 -0
  113. package/esm/table/Body.d.ts +7 -0
  114. package/esm/table/ColumnHeader.d.ts +17 -0
  115. package/esm/table/DataCell.d.ts +12 -0
  116. package/esm/table/ExpandableRow.d.ts +41 -0
  117. package/esm/table/Header.d.ts +7 -0
  118. package/esm/table/HeaderCell.d.ts +13 -0
  119. package/esm/table/Row.d.ts +17 -0
  120. package/esm/table/Table.d.ts +49 -0
  121. package/esm/table/index.d.ts +8 -0
  122. package/esm/tabs/Tab.d.ts +19 -0
  123. package/esm/tabs/TabList.d.ts +10 -0
  124. package/esm/tabs/TabPanel.d.ts +14 -0
  125. package/esm/tabs/Tabs.d.ts +52 -0
  126. package/esm/tabs/index.d.ts +4 -0
  127. package/esm/tag/Tag.d.ts +14 -0
  128. package/esm/tag/index.d.ts +1 -0
  129. package/esm/toggle-group/ToggleGroup.d.ts +38 -0
  130. package/esm/toggle-group/ToggleItem.d.ts +14 -0
  131. package/esm/toggle-group/index.d.ts +2 -0
  132. package/esm/tooltip/Tooltip.d.ts +53 -0
  133. package/esm/tooltip/index.d.ts +1 -0
  134. package/esm/typography/BodyLong.d.ts +19 -0
  135. package/esm/typography/BodyShort.d.ts +19 -0
  136. package/esm/typography/Detail.d.ts +23 -0
  137. package/esm/typography/ErrorMessage.d.ts +19 -0
  138. package/esm/typography/Heading.d.ts +24 -0
  139. package/esm/typography/Ingress.d.ts +14 -0
  140. package/esm/typography/Label.d.ts +19 -0
  141. package/esm/typography/index.d.ts +7 -0
  142. package/esm/util/AnimateHeight.d.ts +10 -0
  143. package/esm/util/OverridableComponent.d.ts +7 -0
  144. package/esm/util/TextareaAutoSize.d.ts +14 -0
  145. package/esm/util/debounce.d.ts +4 -0
  146. package/esm/util/index.d.ts +13 -0
  147. package/esm/util/mergeRefs.d.ts +2 -0
  148. package/esm/util/useId.d.ts +7 -0
  149. package/package.json +2 -2
  150. package/src/chat/chat.stories.tsx +2 -2
  151. package/src/form/stories/switch.stories.tsx +1 -0
  152. package/src/grid/grid.stories.tsx +1 -1
  153. package/src/guide-panel/guidepanel.stories.tsx +8 -4
  154. package/src/modal/Modal.tsx +10 -5
  155. package/src/modal/modal.stories.tsx +33 -7
  156. package/src/tabs/Tabs.stories.tsx +3 -3
package/_docs.json CHANGED
@@ -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": "Designsystemet/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": "Designsystemet/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": "Designsystemet/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": "Designsystemet/node_modules/@types/react/index.d.ts",
55
55
  "name": "RefAttributes"
56
56
  }
57
57
  ],
@@ -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": "Designsystemet/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": "Designsystemet/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": "Designsystemet/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": "Designsystemet/node_modules/@types/react/index.d.ts",
118
118
  "name": "RefAttributes"
119
119
  }
120
120
  ],
@@ -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": "Designsystemet/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": "Designsystemet/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": "Designsystemet/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": "Designsystemet/node_modules/@types/react/index.d.ts",
181
181
  "name": "RefAttributes"
182
182
  }
183
183
  ],
@@ -256,12 +256,12 @@
256
256
  "description": "",
257
257
  "name": "className",
258
258
  "parent": {
259
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
259
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
260
260
  "name": "HTMLAttributes"
261
261
  },
262
262
  "declarations": [
263
263
  {
264
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
264
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
265
265
  "name": "HTMLAttributes"
266
266
  }
267
267
  ],
@@ -275,12 +275,12 @@
275
275
  "description": "",
276
276
  "name": "ref",
277
277
  "parent": {
278
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
278
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
279
279
  "name": "RefAttributes"
280
280
  },
281
281
  "declarations": [
282
282
  {
283
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
283
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
284
284
  "name": "RefAttributes"
285
285
  }
286
286
  ],
@@ -401,12 +401,12 @@
401
401
  "description": "",
402
402
  "name": "className",
403
403
  "parent": {
404
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
404
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
405
405
  "name": "HTMLAttributes"
406
406
  },
407
407
  "declarations": [
408
408
  {
409
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
409
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
410
410
  "name": "HTMLAttributes"
411
411
  }
412
412
  ],
@@ -420,12 +420,12 @@
420
420
  "description": "",
421
421
  "name": "ref",
422
422
  "parent": {
423
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
423
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
424
424
  "name": "RefAttributes"
425
425
  },
426
426
  "declarations": [
427
427
  {
428
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
428
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
429
429
  "name": "RefAttributes"
430
430
  }
431
431
  ],
@@ -586,12 +586,12 @@
586
586
  "description": "",
587
587
  "name": "className",
588
588
  "parent": {
589
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
589
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
590
590
  "name": "HTMLAttributes"
591
591
  },
592
592
  "declarations": [
593
593
  {
594
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
594
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
595
595
  "name": "HTMLAttributes"
596
596
  }
597
597
  ],
@@ -605,12 +605,12 @@
605
605
  "description": "",
606
606
  "name": "ref",
607
607
  "parent": {
608
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
608
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
609
609
  "name": "RefAttributes"
610
610
  },
611
611
  "declarations": [
612
612
  {
613
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
613
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
614
614
  "name": "RefAttributes"
615
615
  }
616
616
  ],
@@ -706,12 +706,12 @@
706
706
  "description": "",
707
707
  "name": "className",
708
708
  "parent": {
709
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
709
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
710
710
  "name": "HTMLAttributes"
711
711
  },
712
712
  "declarations": [
713
713
  {
714
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
714
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
715
715
  "name": "HTMLAttributes"
716
716
  }
717
717
  ],
@@ -725,12 +725,12 @@
725
725
  "description": "",
726
726
  "name": "ref",
727
727
  "parent": {
728
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
728
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
729
729
  "name": "RefAttributes"
730
730
  },
731
731
  "declarations": [
732
732
  {
733
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
733
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
734
734
  "name": "RefAttributes"
735
735
  }
736
736
  ],
@@ -885,12 +885,12 @@
885
885
  "description": "",
886
886
  "name": "className",
887
887
  "parent": {
888
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
888
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
889
889
  "name": "HTMLAttributes"
890
890
  },
891
891
  "declarations": [
892
892
  {
893
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
893
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
894
894
  "name": "HTMLAttributes"
895
895
  }
896
896
  ],
@@ -904,12 +904,12 @@
904
904
  "description": "",
905
905
  "name": "ref",
906
906
  "parent": {
907
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
907
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
908
908
  "name": "RefAttributes"
909
909
  },
910
910
  "declarations": [
911
911
  {
912
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
912
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
913
913
  "name": "RefAttributes"
914
914
  }
915
915
  ],
@@ -920,6 +920,239 @@
920
920
  }
921
921
  }
922
922
  },
923
+ {
924
+ "filePath": "src/chips/Chips.tsx",
925
+ "displayName": "Chips",
926
+ "props": {
927
+ "size": {
928
+ "defaultValue": {
929
+ "value": "\"medium\""
930
+ },
931
+ "description": "Changes padding and font-sizes",
932
+ "name": "size",
933
+ "parent": {
934
+ "fileName": "src/chips/Chips.tsx",
935
+ "name": "ChipsProps"
936
+ },
937
+ "declarations": [
938
+ {
939
+ "fileName": "src/chips/Chips.tsx",
940
+ "name": "ChipsProps"
941
+ }
942
+ ],
943
+ "required": false,
944
+ "type": {
945
+ "name": "\"medium\" | \"small\""
946
+ }
947
+ },
948
+ "className": {
949
+ "defaultValue": null,
950
+ "description": "",
951
+ "name": "className",
952
+ "parent": {
953
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
954
+ "name": "HTMLAttributes"
955
+ },
956
+ "declarations": [
957
+ {
958
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
959
+ "name": "HTMLAttributes"
960
+ }
961
+ ],
962
+ "required": false,
963
+ "type": {
964
+ "name": "string"
965
+ }
966
+ },
967
+ "ref": {
968
+ "defaultValue": null,
969
+ "description": "",
970
+ "name": "ref",
971
+ "parent": {
972
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
973
+ "name": "RefAttributes"
974
+ },
975
+ "declarations": [
976
+ {
977
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
978
+ "name": "RefAttributes"
979
+ }
980
+ ],
981
+ "required": false,
982
+ "type": {
983
+ "name": "Ref<HTMLUListElement>"
984
+ }
985
+ }
986
+ }
987
+ },
988
+ {
989
+ "filePath": "src/chips/Removable.tsx",
990
+ "displayName": "RemovableChips",
991
+ "props": {
992
+ "variant": {
993
+ "defaultValue": {
994
+ "value": "\"action\""
995
+ },
996
+ "description": "Chip-variants",
997
+ "name": "variant",
998
+ "parent": {
999
+ "fileName": "src/chips/Removable.tsx",
1000
+ "name": "RemovableChipsProps"
1001
+ },
1002
+ "declarations": [
1003
+ {
1004
+ "fileName": "src/chips/Removable.tsx",
1005
+ "name": "RemovableChipsProps"
1006
+ }
1007
+ ],
1008
+ "required": false,
1009
+ "type": {
1010
+ "name": "\"action\" | \"neutral\""
1011
+ }
1012
+ },
1013
+ "removeLabel": {
1014
+ "defaultValue": {
1015
+ "value": "\"slett filter\""
1016
+ },
1017
+ "description": "Replaces label read for screen-readers",
1018
+ "name": "removeLabel",
1019
+ "parent": {
1020
+ "fileName": "src/chips/Removable.tsx",
1021
+ "name": "RemovableChipsProps"
1022
+ },
1023
+ "declarations": [
1024
+ {
1025
+ "fileName": "src/chips/Removable.tsx",
1026
+ "name": "RemovableChipsProps"
1027
+ }
1028
+ ],
1029
+ "required": false,
1030
+ "type": {
1031
+ "name": "string"
1032
+ }
1033
+ },
1034
+ "onDelete": {
1035
+ "defaultValue": null,
1036
+ "description": "Click callback",
1037
+ "name": "onDelete",
1038
+ "parent": {
1039
+ "fileName": "src/chips/Removable.tsx",
1040
+ "name": "RemovableChipsProps"
1041
+ },
1042
+ "declarations": [
1043
+ {
1044
+ "fileName": "src/chips/Removable.tsx",
1045
+ "name": "RemovableChipsProps"
1046
+ }
1047
+ ],
1048
+ "required": false,
1049
+ "type": {
1050
+ "name": "(() => void)"
1051
+ }
1052
+ },
1053
+ "className": {
1054
+ "defaultValue": null,
1055
+ "description": "",
1056
+ "name": "className",
1057
+ "parent": {
1058
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1059
+ "name": "HTMLAttributes"
1060
+ },
1061
+ "declarations": [
1062
+ {
1063
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1064
+ "name": "HTMLAttributes"
1065
+ }
1066
+ ],
1067
+ "required": false,
1068
+ "type": {
1069
+ "name": "string"
1070
+ }
1071
+ },
1072
+ "ref": {
1073
+ "defaultValue": null,
1074
+ "description": "",
1075
+ "name": "ref",
1076
+ "parent": {
1077
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1078
+ "name": "RefAttributes"
1079
+ },
1080
+ "declarations": [
1081
+ {
1082
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1083
+ "name": "RefAttributes"
1084
+ }
1085
+ ],
1086
+ "required": false,
1087
+ "type": {
1088
+ "name": "Ref<HTMLButtonElement>"
1089
+ }
1090
+ }
1091
+ }
1092
+ },
1093
+ {
1094
+ "filePath": "src/chips/Toggle.tsx",
1095
+ "displayName": "ToggleChips",
1096
+ "props": {
1097
+ "selected": {
1098
+ "defaultValue": null,
1099
+ "description": "Toggles aria-pressed and visual-changes",
1100
+ "name": "selected",
1101
+ "parent": {
1102
+ "fileName": "src/chips/Toggle.tsx",
1103
+ "name": "ToggleChipsProps"
1104
+ },
1105
+ "declarations": [
1106
+ {
1107
+ "fileName": "src/chips/Toggle.tsx",
1108
+ "name": "ToggleChipsProps"
1109
+ }
1110
+ ],
1111
+ "required": false,
1112
+ "type": {
1113
+ "name": "boolean"
1114
+ }
1115
+ },
1116
+ "className": {
1117
+ "defaultValue": null,
1118
+ "description": "",
1119
+ "name": "className",
1120
+ "parent": {
1121
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1122
+ "name": "HTMLAttributes"
1123
+ },
1124
+ "declarations": [
1125
+ {
1126
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1127
+ "name": "HTMLAttributes"
1128
+ }
1129
+ ],
1130
+ "required": false,
1131
+ "type": {
1132
+ "name": "string"
1133
+ }
1134
+ },
1135
+ "ref": {
1136
+ "defaultValue": null,
1137
+ "description": "",
1138
+ "name": "ref",
1139
+ "parent": {
1140
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1141
+ "name": "RefAttributes"
1142
+ },
1143
+ "declarations": [
1144
+ {
1145
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1146
+ "name": "RefAttributes"
1147
+ }
1148
+ ],
1149
+ "required": false,
1150
+ "type": {
1151
+ "name": "Ref<HTMLButtonElement>"
1152
+ }
1153
+ }
1154
+ }
1155
+ },
923
1156
  {
924
1157
  "filePath": "src/date/DateInput.tsx",
925
1158
  "displayName": "DatePickerInput",
@@ -1104,12 +1337,12 @@
1104
1337
  "description": "",
1105
1338
  "name": "className",
1106
1339
  "parent": {
1107
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1340
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1108
1341
  "name": "HTMLAttributes"
1109
1342
  },
1110
1343
  "declarations": [
1111
1344
  {
1112
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1345
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1113
1346
  "name": "HTMLAttributes"
1114
1347
  }
1115
1348
  ],
@@ -1123,12 +1356,12 @@
1123
1356
  "description": "",
1124
1357
  "name": "ref",
1125
1358
  "parent": {
1126
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1359
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1127
1360
  "name": "RefAttributes"
1128
1361
  },
1129
1362
  "declarations": [
1130
1363
  {
1131
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1364
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1132
1365
  "name": "RefAttributes"
1133
1366
  }
1134
1367
  ],
@@ -1323,12 +1556,12 @@
1323
1556
  "description": "",
1324
1557
  "name": "className",
1325
1558
  "parent": {
1326
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1559
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1327
1560
  "name": "HTMLAttributes"
1328
1561
  },
1329
1562
  "declarations": [
1330
1563
  {
1331
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1564
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1332
1565
  "name": "HTMLAttributes"
1333
1566
  }
1334
1567
  ],
@@ -1342,12 +1575,12 @@
1342
1575
  "description": "",
1343
1576
  "name": "ref",
1344
1577
  "parent": {
1345
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1578
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1346
1579
  "name": "RefAttributes"
1347
1580
  },
1348
1581
  "declarations": [
1349
1582
  {
1350
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1583
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1351
1584
  "name": "RefAttributes"
1352
1585
  }
1353
1586
  ],
@@ -1443,12 +1676,12 @@
1443
1676
  "description": "",
1444
1677
  "name": "className",
1445
1678
  "parent": {
1446
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1679
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1447
1680
  "name": "HTMLAttributes"
1448
1681
  },
1449
1682
  "declarations": [
1450
1683
  {
1451
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1684
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1452
1685
  "name": "HTMLAttributes"
1453
1686
  }
1454
1687
  ],
@@ -1557,12 +1790,12 @@
1557
1790
  "description": "",
1558
1791
  "name": "ref",
1559
1792
  "parent": {
1560
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1793
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1561
1794
  "name": "RefAttributes"
1562
1795
  },
1563
1796
  "declarations": [
1564
1797
  {
1565
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
1798
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1566
1799
  "name": "RefAttributes"
1567
1800
  }
1568
1801
  ],
@@ -1791,12 +2024,12 @@
1791
2024
  "description": "",
1792
2025
  "name": "className",
1793
2026
  "parent": {
1794
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2027
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1795
2028
  "name": "HTMLAttributes"
1796
2029
  },
1797
2030
  "declarations": [
1798
2031
  {
1799
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2032
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1800
2033
  "name": "HTMLAttributes"
1801
2034
  }
1802
2035
  ],
@@ -1810,12 +2043,12 @@
1810
2043
  "description": "",
1811
2044
  "name": "ref",
1812
2045
  "parent": {
1813
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2046
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1814
2047
  "name": "RefAttributes"
1815
2048
  },
1816
2049
  "declarations": [
1817
2050
  {
1818
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2051
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1819
2052
  "name": "RefAttributes"
1820
2053
  }
1821
2054
  ],
@@ -1989,12 +2222,12 @@
1989
2222
  "description": "",
1990
2223
  "name": "className",
1991
2224
  "parent": {
1992
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2225
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1993
2226
  "name": "HTMLAttributes"
1994
2227
  },
1995
2228
  "declarations": [
1996
2229
  {
1997
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2230
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
1998
2231
  "name": "HTMLAttributes"
1999
2232
  }
2000
2233
  ],
@@ -2008,12 +2241,12 @@
2008
2241
  "description": "",
2009
2242
  "name": "ref",
2010
2243
  "parent": {
2011
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2244
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2012
2245
  "name": "RefAttributes"
2013
2246
  },
2014
2247
  "declarations": [
2015
2248
  {
2016
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2249
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2017
2250
  "name": "RefAttributes"
2018
2251
  }
2019
2252
  ],
@@ -2263,12 +2496,12 @@
2263
2496
  "description": "",
2264
2497
  "name": "className",
2265
2498
  "parent": {
2266
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2499
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2267
2500
  "name": "HTMLAttributes"
2268
2501
  },
2269
2502
  "declarations": [
2270
2503
  {
2271
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2504
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2272
2505
  "name": "HTMLAttributes"
2273
2506
  }
2274
2507
  ],
@@ -2282,12 +2515,12 @@
2282
2515
  "description": "",
2283
2516
  "name": "ref",
2284
2517
  "parent": {
2285
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2518
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2286
2519
  "name": "RefAttributes"
2287
2520
  },
2288
2521
  "declarations": [
2289
2522
  {
2290
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2523
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2291
2524
  "name": "RefAttributes"
2292
2525
  }
2293
2526
  ],
@@ -2573,12 +2806,12 @@
2573
2806
  "description": "",
2574
2807
  "name": "className",
2575
2808
  "parent": {
2576
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2809
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2577
2810
  "name": "HTMLAttributes"
2578
2811
  },
2579
2812
  "declarations": [
2580
2813
  {
2581
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2814
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2582
2815
  "name": "HTMLAttributes"
2583
2816
  }
2584
2817
  ],
@@ -2592,12 +2825,12 @@
2592
2825
  "description": "",
2593
2826
  "name": "ref",
2594
2827
  "parent": {
2595
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2828
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2596
2829
  "name": "RefAttributes"
2597
2830
  },
2598
2831
  "declarations": [
2599
2832
  {
2600
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2833
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2601
2834
  "name": "RefAttributes"
2602
2835
  }
2603
2836
  ],
@@ -2745,12 +2978,12 @@
2745
2978
  "description": "",
2746
2979
  "name": "className",
2747
2980
  "parent": {
2748
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2981
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2749
2982
  "name": "HTMLAttributes"
2750
2983
  },
2751
2984
  "declarations": [
2752
2985
  {
2753
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
2986
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2754
2987
  "name": "HTMLAttributes"
2755
2988
  }
2756
2989
  ],
@@ -2764,12 +2997,12 @@
2764
2997
  "description": "",
2765
2998
  "name": "ref",
2766
2999
  "parent": {
2767
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3000
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2768
3001
  "name": "RefAttributes"
2769
3002
  },
2770
3003
  "declarations": [
2771
3004
  {
2772
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3005
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2773
3006
  "name": "RefAttributes"
2774
3007
  }
2775
3008
  ],
@@ -2808,12 +3041,12 @@
2808
3041
  "description": "",
2809
3042
  "name": "className",
2810
3043
  "parent": {
2811
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3044
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2812
3045
  "name": "HTMLAttributes"
2813
3046
  },
2814
3047
  "declarations": [
2815
3048
  {
2816
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3049
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2817
3050
  "name": "HTMLAttributes"
2818
3051
  }
2819
3052
  ],
@@ -2827,12 +3060,12 @@
2827
3060
  "description": "",
2828
3061
  "name": "ref",
2829
3062
  "parent": {
2830
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3063
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2831
3064
  "name": "RefAttributes"
2832
3065
  },
2833
3066
  "declarations": [
2834
3067
  {
2835
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3068
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2836
3069
  "name": "RefAttributes"
2837
3070
  }
2838
3071
  ],
@@ -2871,12 +3104,12 @@
2871
3104
  "description": "",
2872
3105
  "name": "className",
2873
3106
  "parent": {
2874
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3107
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2875
3108
  "name": "HTMLAttributes"
2876
3109
  },
2877
3110
  "declarations": [
2878
3111
  {
2879
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3112
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2880
3113
  "name": "HTMLAttributes"
2881
3114
  }
2882
3115
  ],
@@ -2890,12 +3123,12 @@
2890
3123
  "description": "",
2891
3124
  "name": "ref",
2892
3125
  "parent": {
2893
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3126
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2894
3127
  "name": "RefAttributes"
2895
3128
  },
2896
3129
  "declarations": [
2897
3130
  {
2898
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3131
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2899
3132
  "name": "RefAttributes"
2900
3133
  }
2901
3134
  ],
@@ -2955,12 +3188,12 @@
2955
3188
  "description": "",
2956
3189
  "name": "className",
2957
3190
  "parent": {
2958
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3191
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2959
3192
  "name": "HTMLAttributes"
2960
3193
  },
2961
3194
  "declarations": [
2962
3195
  {
2963
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3196
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2964
3197
  "name": "HTMLAttributes"
2965
3198
  }
2966
3199
  ],
@@ -2974,12 +3207,12 @@
2974
3207
  "description": "",
2975
3208
  "name": "ref",
2976
3209
  "parent": {
2977
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3210
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2978
3211
  "name": "RefAttributes"
2979
3212
  },
2980
3213
  "declarations": [
2981
3214
  {
2982
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3215
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
2983
3216
  "name": "RefAttributes"
2984
3217
  }
2985
3218
  ],
@@ -3058,12 +3291,12 @@
3058
3291
  "description": "",
3059
3292
  "name": "className",
3060
3293
  "parent": {
3061
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3294
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3062
3295
  "name": "HTMLAttributes"
3063
3296
  },
3064
3297
  "declarations": [
3065
3298
  {
3066
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3299
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3067
3300
  "name": "HTMLAttributes"
3068
3301
  }
3069
3302
  ],
@@ -3077,12 +3310,12 @@
3077
3310
  "description": "",
3078
3311
  "name": "ref",
3079
3312
  "parent": {
3080
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3313
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3081
3314
  "name": "RefAttributes"
3082
3315
  },
3083
3316
  "declarations": [
3084
3317
  {
3085
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3318
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3086
3319
  "name": "RefAttributes"
3087
3320
  }
3088
3321
  ],
@@ -3144,12 +3377,12 @@
3144
3377
  "description": "",
3145
3378
  "name": "className",
3146
3379
  "parent": {
3147
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3380
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3148
3381
  "name": "HTMLAttributes"
3149
3382
  },
3150
3383
  "declarations": [
3151
3384
  {
3152
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3385
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3153
3386
  "name": "HTMLAttributes"
3154
3387
  }
3155
3388
  ],
@@ -3184,12 +3417,12 @@
3184
3417
  "description": "",
3185
3418
  "name": "ref",
3186
3419
  "parent": {
3187
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3420
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3188
3421
  "name": "RefAttributes"
3189
3422
  },
3190
3423
  "declarations": [
3191
3424
  {
3192
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3425
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3193
3426
  "name": "RefAttributes"
3194
3427
  }
3195
3428
  ],
@@ -3228,12 +3461,12 @@
3228
3461
  "description": "",
3229
3462
  "name": "className",
3230
3463
  "parent": {
3231
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3464
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3232
3465
  "name": "HTMLAttributes"
3233
3466
  },
3234
3467
  "declarations": [
3235
3468
  {
3236
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3469
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3237
3470
  "name": "HTMLAttributes"
3238
3471
  }
3239
3472
  ],
@@ -3247,12 +3480,12 @@
3247
3480
  "description": "",
3248
3481
  "name": "ref",
3249
3482
  "parent": {
3250
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3483
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3251
3484
  "name": "RefAttributes"
3252
3485
  },
3253
3486
  "declarations": [
3254
3487
  {
3255
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3488
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3256
3489
  "name": "RefAttributes"
3257
3490
  }
3258
3491
  ],
@@ -3312,12 +3545,12 @@
3312
3545
  "description": "",
3313
3546
  "name": "className",
3314
3547
  "parent": {
3315
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3548
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3316
3549
  "name": "HTMLAttributes"
3317
3550
  },
3318
3551
  "declarations": [
3319
3552
  {
3320
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3553
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3321
3554
  "name": "HTMLAttributes"
3322
3555
  }
3323
3556
  ],
@@ -3331,12 +3564,12 @@
3331
3564
  "description": "",
3332
3565
  "name": "ref",
3333
3566
  "parent": {
3334
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3567
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3335
3568
  "name": "RefAttributes"
3336
3569
  },
3337
3570
  "declarations": [
3338
3571
  {
3339
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3572
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3340
3573
  "name": "RefAttributes"
3341
3574
  }
3342
3575
  ],
@@ -3356,12 +3589,12 @@
3356
3589
  "description": "",
3357
3590
  "name": "className",
3358
3591
  "parent": {
3359
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3592
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3360
3593
  "name": "HTMLAttributes"
3361
3594
  },
3362
3595
  "declarations": [
3363
3596
  {
3364
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3597
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3365
3598
  "name": "HTMLAttributes"
3366
3599
  }
3367
3600
  ],
@@ -3375,12 +3608,12 @@
3375
3608
  "description": "",
3376
3609
  "name": "ref",
3377
3610
  "parent": {
3378
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3611
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3379
3612
  "name": "RefAttributes"
3380
3613
  },
3381
3614
  "declarations": [
3382
3615
  {
3383
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3616
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3384
3617
  "name": "RefAttributes"
3385
3618
  }
3386
3619
  ],
@@ -3400,12 +3633,12 @@
3400
3633
  "description": "",
3401
3634
  "name": "className",
3402
3635
  "parent": {
3403
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3636
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3404
3637
  "name": "HTMLAttributes"
3405
3638
  },
3406
3639
  "declarations": [
3407
3640
  {
3408
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3641
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3409
3642
  "name": "HTMLAttributes"
3410
3643
  }
3411
3644
  ],
@@ -3419,12 +3652,12 @@
3419
3652
  "description": "",
3420
3653
  "name": "ref",
3421
3654
  "parent": {
3422
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3655
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3423
3656
  "name": "RefAttributes"
3424
3657
  },
3425
3658
  "declarations": [
3426
3659
  {
3427
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3660
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3428
3661
  "name": "RefAttributes"
3429
3662
  }
3430
3663
  ],
@@ -3444,12 +3677,12 @@
3444
3677
  "description": "",
3445
3678
  "name": "className",
3446
3679
  "parent": {
3447
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3680
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3448
3681
  "name": "SVGAttributes"
3449
3682
  },
3450
3683
  "declarations": [
3451
3684
  {
3452
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3685
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3453
3686
  "name": "SVGAttributes"
3454
3687
  }
3455
3688
  ],
@@ -3547,12 +3780,12 @@
3547
3780
  "description": "",
3548
3781
  "name": "ref",
3549
3782
  "parent": {
3550
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3783
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3551
3784
  "name": "RefAttributes"
3552
3785
  },
3553
3786
  "declarations": [
3554
3787
  {
3555
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
3788
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3556
3789
  "name": "RefAttributes"
3557
3790
  }
3558
3791
  ],
@@ -3823,12 +4056,12 @@
3823
4056
  "description": "",
3824
4057
  "name": "ref",
3825
4058
  "parent": {
3826
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4059
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3827
4060
  "name": "RefAttributes"
3828
4061
  },
3829
4062
  "declarations": [
3830
4063
  {
3831
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4064
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3832
4065
  "name": "RefAttributes"
3833
4066
  }
3834
4067
  ],
@@ -3867,12 +4100,12 @@
3867
4100
  "description": "",
3868
4101
  "name": "className",
3869
4102
  "parent": {
3870
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4103
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3871
4104
  "name": "HTMLAttributes"
3872
4105
  },
3873
4106
  "declarations": [
3874
4107
  {
3875
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4108
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3876
4109
  "name": "HTMLAttributes"
3877
4110
  }
3878
4111
  ],
@@ -3886,12 +4119,12 @@
3886
4119
  "description": "",
3887
4120
  "name": "ref",
3888
4121
  "parent": {
3889
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4122
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3890
4123
  "name": "RefAttributes"
3891
4124
  },
3892
4125
  "declarations": [
3893
4126
  {
3894
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4127
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
3895
4128
  "name": "RefAttributes"
3896
4129
  }
3897
4130
  ],
@@ -4119,12 +4352,12 @@
4119
4352
  "description": "",
4120
4353
  "name": "className",
4121
4354
  "parent": {
4122
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4355
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4123
4356
  "name": "HTMLAttributes"
4124
4357
  },
4125
4358
  "declarations": [
4126
4359
  {
4127
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4360
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4128
4361
  "name": "HTMLAttributes"
4129
4362
  }
4130
4363
  ],
@@ -4138,12 +4371,12 @@
4138
4371
  "description": "",
4139
4372
  "name": "ref",
4140
4373
  "parent": {
4141
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4374
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4142
4375
  "name": "RefAttributes"
4143
4376
  },
4144
4377
  "declarations": [
4145
4378
  {
4146
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4379
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4147
4380
  "name": "RefAttributes"
4148
4381
  }
4149
4382
  ],
@@ -4344,12 +4577,12 @@
4344
4577
  "description": "",
4345
4578
  "name": "className",
4346
4579
  "parent": {
4347
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4580
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4348
4581
  "name": "HTMLAttributes"
4349
4582
  },
4350
4583
  "declarations": [
4351
4584
  {
4352
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4585
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4353
4586
  "name": "HTMLAttributes"
4354
4587
  }
4355
4588
  ],
@@ -4363,12 +4596,12 @@
4363
4596
  "description": "",
4364
4597
  "name": "ref",
4365
4598
  "parent": {
4366
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4599
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4367
4600
  "name": "RefAttributes"
4368
4601
  },
4369
4602
  "declarations": [
4370
4603
  {
4371
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4604
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4372
4605
  "name": "RefAttributes"
4373
4606
  }
4374
4607
  ],
@@ -4428,12 +4661,12 @@
4428
4661
  "description": "",
4429
4662
  "name": "className",
4430
4663
  "parent": {
4431
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4664
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4432
4665
  "name": "HTMLAttributes"
4433
4666
  },
4434
4667
  "declarations": [
4435
4668
  {
4436
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4669
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4437
4670
  "name": "HTMLAttributes"
4438
4671
  }
4439
4672
  ],
@@ -4447,12 +4680,12 @@
4447
4680
  "description": "",
4448
4681
  "name": "ref",
4449
4682
  "parent": {
4450
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4683
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4451
4684
  "name": "RefAttributes"
4452
4685
  },
4453
4686
  "declarations": [
4454
4687
  {
4455
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4688
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4456
4689
  "name": "RefAttributes"
4457
4690
  }
4458
4691
  ],
@@ -4632,12 +4865,12 @@
4632
4865
  "description": "",
4633
4866
  "name": "className",
4634
4867
  "parent": {
4635
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4868
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4636
4869
  "name": "HTMLAttributes"
4637
4870
  },
4638
4871
  "declarations": [
4639
4872
  {
4640
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4873
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4641
4874
  "name": "HTMLAttributes"
4642
4875
  }
4643
4876
  ],
@@ -4651,12 +4884,12 @@
4651
4884
  "description": "",
4652
4885
  "name": "ref",
4653
4886
  "parent": {
4654
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4887
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4655
4888
  "name": "RefAttributes"
4656
4889
  },
4657
4890
  "declarations": [
4658
4891
  {
4659
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4892
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4660
4893
  "name": "RefAttributes"
4661
4894
  }
4662
4895
  ],
@@ -4695,12 +4928,12 @@
4695
4928
  "description": "",
4696
4929
  "name": "className",
4697
4930
  "parent": {
4698
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4931
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4699
4932
  "name": "HTMLAttributes"
4700
4933
  },
4701
4934
  "declarations": [
4702
4935
  {
4703
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4936
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4704
4937
  "name": "HTMLAttributes"
4705
4938
  }
4706
4939
  ],
@@ -4714,12 +4947,12 @@
4714
4947
  "description": "",
4715
4948
  "name": "ref",
4716
4949
  "parent": {
4717
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4950
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4718
4951
  "name": "RefAttributes"
4719
4952
  },
4720
4953
  "declarations": [
4721
4954
  {
4722
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
4955
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4723
4956
  "name": "RefAttributes"
4724
4957
  }
4725
4958
  ],
@@ -4882,12 +5115,12 @@
4882
5115
  "description": "",
4883
5116
  "name": "className",
4884
5117
  "parent": {
4885
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5118
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4886
5119
  "name": "HTMLAttributes"
4887
5120
  },
4888
5121
  "declarations": [
4889
5122
  {
4890
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5123
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4891
5124
  "name": "HTMLAttributes"
4892
5125
  }
4893
5126
  ],
@@ -4901,12 +5134,12 @@
4901
5134
  "description": "",
4902
5135
  "name": "ref",
4903
5136
  "parent": {
4904
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5137
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4905
5138
  "name": "RefAttributes"
4906
5139
  },
4907
5140
  "declarations": [
4908
5141
  {
4909
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5142
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
4910
5143
  "name": "RefAttributes"
4911
5144
  }
4912
5145
  ],
@@ -5008,12 +5241,12 @@
5008
5241
  "description": "",
5009
5242
  "name": "className",
5010
5243
  "parent": {
5011
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5244
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5012
5245
  "name": "HTMLAttributes"
5013
5246
  },
5014
5247
  "declarations": [
5015
5248
  {
5016
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5249
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5017
5250
  "name": "HTMLAttributes"
5018
5251
  }
5019
5252
  ],
@@ -5027,12 +5260,12 @@
5027
5260
  "description": "",
5028
5261
  "name": "ref",
5029
5262
  "parent": {
5030
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5263
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5031
5264
  "name": "RefAttributes"
5032
5265
  },
5033
5266
  "declarations": [
5034
5267
  {
5035
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5268
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5036
5269
  "name": "RefAttributes"
5037
5270
  }
5038
5271
  ],
@@ -5151,12 +5384,12 @@
5151
5384
  "description": "",
5152
5385
  "name": "className",
5153
5386
  "parent": {
5154
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5387
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5155
5388
  "name": "HTMLAttributes"
5156
5389
  },
5157
5390
  "declarations": [
5158
5391
  {
5159
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5392
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5160
5393
  "name": "HTMLAttributes"
5161
5394
  }
5162
5395
  ],
@@ -5170,12 +5403,12 @@
5170
5403
  "description": "",
5171
5404
  "name": "ref",
5172
5405
  "parent": {
5173
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5406
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5174
5407
  "name": "RefAttributes"
5175
5408
  },
5176
5409
  "declarations": [
5177
5410
  {
5178
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5411
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5179
5412
  "name": "RefAttributes"
5180
5413
  }
5181
5414
  ],
@@ -5195,12 +5428,12 @@
5195
5428
  "description": "",
5196
5429
  "name": "className",
5197
5430
  "parent": {
5198
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5431
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5199
5432
  "name": "HTMLAttributes"
5200
5433
  },
5201
5434
  "declarations": [
5202
5435
  {
5203
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5436
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5204
5437
  "name": "HTMLAttributes"
5205
5438
  }
5206
5439
  ],
@@ -5214,12 +5447,12 @@
5214
5447
  "description": "",
5215
5448
  "name": "ref",
5216
5449
  "parent": {
5217
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5450
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5218
5451
  "name": "RefAttributes"
5219
5452
  },
5220
5453
  "declarations": [
5221
5454
  {
5222
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5455
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5223
5456
  "name": "RefAttributes"
5224
5457
  }
5225
5458
  ],
@@ -5319,12 +5552,12 @@
5319
5552
  "description": "",
5320
5553
  "name": "className",
5321
5554
  "parent": {
5322
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5555
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5323
5556
  "name": "HTMLAttributes"
5324
5557
  },
5325
5558
  "declarations": [
5326
5559
  {
5327
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5560
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5328
5561
  "name": "HTMLAttributes"
5329
5562
  }
5330
5563
  ],
@@ -5338,12 +5571,12 @@
5338
5571
  "description": "",
5339
5572
  "name": "ref",
5340
5573
  "parent": {
5341
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5574
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5342
5575
  "name": "RefAttributes"
5343
5576
  },
5344
5577
  "declarations": [
5345
5578
  {
5346
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5579
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5347
5580
  "name": "RefAttributes"
5348
5581
  }
5349
5582
  ],
@@ -5384,12 +5617,12 @@
5384
5617
  "description": "",
5385
5618
  "name": "className",
5386
5619
  "parent": {
5387
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5620
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5388
5621
  "name": "HTMLAttributes"
5389
5622
  },
5390
5623
  "declarations": [
5391
5624
  {
5392
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5625
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5393
5626
  "name": "HTMLAttributes"
5394
5627
  }
5395
5628
  ],
@@ -5403,12 +5636,12 @@
5403
5636
  "description": "",
5404
5637
  "name": "ref",
5405
5638
  "parent": {
5406
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5639
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5407
5640
  "name": "RefAttributes"
5408
5641
  },
5409
5642
  "declarations": [
5410
5643
  {
5411
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5644
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5412
5645
  "name": "RefAttributes"
5413
5646
  }
5414
5647
  ],
@@ -5611,12 +5844,12 @@
5611
5844
  "description": "",
5612
5845
  "name": "className",
5613
5846
  "parent": {
5614
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5847
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5615
5848
  "name": "HTMLAttributes"
5616
5849
  },
5617
5850
  "declarations": [
5618
5851
  {
5619
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5852
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5620
5853
  "name": "HTMLAttributes"
5621
5854
  }
5622
5855
  ],
@@ -5630,12 +5863,12 @@
5630
5863
  "description": "",
5631
5864
  "name": "ref",
5632
5865
  "parent": {
5633
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5866
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5634
5867
  "name": "RefAttributes"
5635
5868
  },
5636
5869
  "declarations": [
5637
5870
  {
5638
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5871
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5639
5872
  "name": "RefAttributes"
5640
5873
  }
5641
5874
  ],
@@ -5655,12 +5888,12 @@
5655
5888
  "description": "",
5656
5889
  "name": "className",
5657
5890
  "parent": {
5658
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5891
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5659
5892
  "name": "HTMLAttributes"
5660
5893
  },
5661
5894
  "declarations": [
5662
5895
  {
5663
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5896
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5664
5897
  "name": "HTMLAttributes"
5665
5898
  }
5666
5899
  ],
@@ -5674,12 +5907,12 @@
5674
5907
  "description": "",
5675
5908
  "name": "ref",
5676
5909
  "parent": {
5677
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5910
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5678
5911
  "name": "RefAttributes"
5679
5912
  },
5680
5913
  "declarations": [
5681
5914
  {
5682
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5915
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5683
5916
  "name": "RefAttributes"
5684
5917
  }
5685
5918
  ],
@@ -5739,12 +5972,12 @@
5739
5972
  "description": "",
5740
5973
  "name": "className",
5741
5974
  "parent": {
5742
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5975
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5743
5976
  "name": "HTMLAttributes"
5744
5977
  },
5745
5978
  "declarations": [
5746
5979
  {
5747
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5980
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5748
5981
  "name": "HTMLAttributes"
5749
5982
  }
5750
5983
  ],
@@ -5758,12 +5991,12 @@
5758
5991
  "description": "",
5759
5992
  "name": "ref",
5760
5993
  "parent": {
5761
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5994
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5762
5995
  "name": "RefAttributes"
5763
5996
  },
5764
5997
  "declarations": [
5765
5998
  {
5766
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
5999
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5767
6000
  "name": "RefAttributes"
5768
6001
  }
5769
6002
  ],
@@ -5825,12 +6058,12 @@
5825
6058
  "description": "",
5826
6059
  "name": "className",
5827
6060
  "parent": {
5828
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6061
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5829
6062
  "name": "HTMLAttributes"
5830
6063
  },
5831
6064
  "declarations": [
5832
6065
  {
5833
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6066
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5834
6067
  "name": "HTMLAttributes"
5835
6068
  }
5836
6069
  ],
@@ -5844,12 +6077,12 @@
5844
6077
  "description": "",
5845
6078
  "name": "ref",
5846
6079
  "parent": {
5847
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6080
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5848
6081
  "name": "RefAttributes"
5849
6082
  },
5850
6083
  "declarations": [
5851
6084
  {
5852
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6085
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5853
6086
  "name": "RefAttributes"
5854
6087
  }
5855
6088
  ],
@@ -5949,12 +6182,12 @@
5949
6182
  "description": "",
5950
6183
  "name": "className",
5951
6184
  "parent": {
5952
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6185
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5953
6186
  "name": "HTMLAttributes"
5954
6187
  },
5955
6188
  "declarations": [
5956
6189
  {
5957
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6190
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5958
6191
  "name": "HTMLAttributes"
5959
6192
  }
5960
6193
  ],
@@ -5968,12 +6201,12 @@
5968
6201
  "description": "",
5969
6202
  "name": "ref",
5970
6203
  "parent": {
5971
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6204
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5972
6205
  "name": "RefAttributes"
5973
6206
  },
5974
6207
  "declarations": [
5975
6208
  {
5976
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6209
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
5977
6210
  "name": "RefAttributes"
5978
6211
  }
5979
6212
  ],
@@ -6050,12 +6283,12 @@
6050
6283
  "description": "",
6051
6284
  "name": "className",
6052
6285
  "parent": {
6053
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6286
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6054
6287
  "name": "HTMLAttributes"
6055
6288
  },
6056
6289
  "declarations": [
6057
6290
  {
6058
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6291
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6059
6292
  "name": "HTMLAttributes"
6060
6293
  }
6061
6294
  ],
@@ -6069,12 +6302,12 @@
6069
6302
  "description": "",
6070
6303
  "name": "ref",
6071
6304
  "parent": {
6072
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6305
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6073
6306
  "name": "RefAttributes"
6074
6307
  },
6075
6308
  "declarations": [
6076
6309
  {
6077
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6310
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6078
6311
  "name": "RefAttributes"
6079
6312
  }
6080
6313
  ],
@@ -6113,12 +6346,12 @@
6113
6346
  "description": "",
6114
6347
  "name": "className",
6115
6348
  "parent": {
6116
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6349
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6117
6350
  "name": "HTMLAttributes"
6118
6351
  },
6119
6352
  "declarations": [
6120
6353
  {
6121
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6354
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6122
6355
  "name": "HTMLAttributes"
6123
6356
  }
6124
6357
  ],
@@ -6132,12 +6365,12 @@
6132
6365
  "description": "",
6133
6366
  "name": "ref",
6134
6367
  "parent": {
6135
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6368
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6136
6369
  "name": "RefAttributes"
6137
6370
  },
6138
6371
  "declarations": [
6139
6372
  {
6140
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6373
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6141
6374
  "name": "RefAttributes"
6142
6375
  }
6143
6376
  ],
@@ -6195,12 +6428,12 @@
6195
6428
  "description": "",
6196
6429
  "name": "className",
6197
6430
  "parent": {
6198
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6431
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6199
6432
  "name": "HTMLAttributes"
6200
6433
  },
6201
6434
  "declarations": [
6202
6435
  {
6203
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6436
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6204
6437
  "name": "HTMLAttributes"
6205
6438
  }
6206
6439
  ],
@@ -6214,12 +6447,12 @@
6214
6447
  "description": "",
6215
6448
  "name": "ref",
6216
6449
  "parent": {
6217
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6450
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6218
6451
  "name": "RefAttributes"
6219
6452
  },
6220
6453
  "declarations": [
6221
6454
  {
6222
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6455
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6223
6456
  "name": "RefAttributes"
6224
6457
  }
6225
6458
  ],
@@ -6380,12 +6613,12 @@
6380
6613
  "description": "",
6381
6614
  "name": "className",
6382
6615
  "parent": {
6383
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6616
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6384
6617
  "name": "HTMLAttributes"
6385
6618
  },
6386
6619
  "declarations": [
6387
6620
  {
6388
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6621
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6389
6622
  "name": "HTMLAttributes"
6390
6623
  }
6391
6624
  ],
@@ -6399,12 +6632,12 @@
6399
6632
  "description": "",
6400
6633
  "name": "ref",
6401
6634
  "parent": {
6402
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6635
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6403
6636
  "name": "RefAttributes"
6404
6637
  },
6405
6638
  "declarations": [
6406
6639
  {
6407
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6640
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6408
6641
  "name": "RefAttributes"
6409
6642
  }
6410
6643
  ],
@@ -6419,28 +6652,9 @@
6419
6652
  "filePath": "src/tag/Tag.tsx",
6420
6653
  "displayName": "Tag",
6421
6654
  "props": {
6422
- "children": {
6423
- "defaultValue": null,
6424
- "description": "Tag label",
6425
- "name": "children",
6426
- "parent": {
6427
- "fileName": "src/tag/Tag.tsx",
6428
- "name": "TagProps"
6429
- },
6430
- "declarations": [
6431
- {
6432
- "fileName": "src/tag/Tag.tsx",
6433
- "name": "TagProps"
6434
- }
6435
- ],
6436
- "required": true,
6437
- "type": {
6438
- "name": "ReactNode"
6439
- }
6440
- },
6441
6655
  "variant": {
6442
6656
  "defaultValue": null,
6443
- "description": "Changes background and border color",
6657
+ "description": "Changes visual profile of tag",
6444
6658
  "name": "variant",
6445
6659
  "parent": {
6446
6660
  "fileName": "src/tag/Tag.tsx",
@@ -6454,14 +6668,14 @@
6454
6668
  ],
6455
6669
  "required": true,
6456
6670
  "type": {
6457
- "name": "\"warning\" | \"error\" | \"info\" | \"success\""
6671
+ "name": "\"warning\" | \"warning-filled\" | \"error\" | \"error-filled\" | \"info\" | \"info-filled\" | \"success\" | \"success-filled\" | \"neutral\" | \"neutral-filled\" | \"alt1\" | \"alt1-filled\" | \"alt2\" | \"alt2-filled\" | \"alt3\" | \"alt3-filled\""
6458
6672
  }
6459
6673
  },
6460
6674
  "size": {
6461
6675
  "defaultValue": {
6462
6676
  "value": "medium"
6463
6677
  },
6464
- "description": "Changes padding and font-sizes",
6678
+ "description": "",
6465
6679
  "name": "size",
6466
6680
  "parent": {
6467
6681
  "fileName": "src/tag/Tag.tsx",
@@ -6475,7 +6689,7 @@
6475
6689
  ],
6476
6690
  "required": false,
6477
6691
  "type": {
6478
- "name": "\"medium\" | \"small\""
6692
+ "name": "\"medium\" | \"small\" | \"xsmall\""
6479
6693
  }
6480
6694
  },
6481
6695
  "className": {
@@ -6483,12 +6697,12 @@
6483
6697
  "description": "",
6484
6698
  "name": "className",
6485
6699
  "parent": {
6486
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6700
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6487
6701
  "name": "HTMLAttributes"
6488
6702
  },
6489
6703
  "declarations": [
6490
6704
  {
6491
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6705
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6492
6706
  "name": "HTMLAttributes"
6493
6707
  }
6494
6708
  ],
@@ -6502,12 +6716,12 @@
6502
6716
  "description": "",
6503
6717
  "name": "ref",
6504
6718
  "parent": {
6505
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6719
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6506
6720
  "name": "RefAttributes"
6507
6721
  },
6508
6722
  "declarations": [
6509
6723
  {
6510
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6724
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6511
6725
  "name": "RefAttributes"
6512
6726
  }
6513
6727
  ],
@@ -6643,12 +6857,12 @@
6643
6857
  "description": "",
6644
6858
  "name": "className",
6645
6859
  "parent": {
6646
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6860
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6647
6861
  "name": "HTMLAttributes"
6648
6862
  },
6649
6863
  "declarations": [
6650
6864
  {
6651
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6865
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6652
6866
  "name": "HTMLAttributes"
6653
6867
  }
6654
6868
  ],
@@ -6662,12 +6876,12 @@
6662
6876
  "description": "",
6663
6877
  "name": "ref",
6664
6878
  "parent": {
6665
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6879
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6666
6880
  "name": "RefAttributes"
6667
6881
  },
6668
6882
  "declarations": [
6669
6883
  {
6670
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6884
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6671
6885
  "name": "RefAttributes"
6672
6886
  }
6673
6887
  ],
@@ -6725,12 +6939,12 @@
6725
6939
  "description": "",
6726
6940
  "name": "className",
6727
6941
  "parent": {
6728
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6942
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6729
6943
  "name": "HTMLAttributes"
6730
6944
  },
6731
6945
  "declarations": [
6732
6946
  {
6733
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6947
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6734
6948
  "name": "HTMLAttributes"
6735
6949
  }
6736
6950
  ],
@@ -6744,12 +6958,12 @@
6744
6958
  "description": "",
6745
6959
  "name": "ref",
6746
6960
  "parent": {
6747
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6961
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6748
6962
  "name": "RefAttributes"
6749
6963
  },
6750
6964
  "declarations": [
6751
6965
  {
6752
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
6966
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6753
6967
  "name": "RefAttributes"
6754
6968
  }
6755
6969
  ],
@@ -6971,12 +7185,12 @@
6971
7185
  "description": "",
6972
7186
  "name": "className",
6973
7187
  "parent": {
6974
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7188
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6975
7189
  "name": "HTMLAttributes"
6976
7190
  },
6977
7191
  "declarations": [
6978
7192
  {
6979
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7193
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6980
7194
  "name": "HTMLAttributes"
6981
7195
  }
6982
7196
  ],
@@ -6990,12 +7204,12 @@
6990
7204
  "description": "",
6991
7205
  "name": "ref",
6992
7206
  "parent": {
6993
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7207
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6994
7208
  "name": "RefAttributes"
6995
7209
  },
6996
7210
  "declarations": [
6997
7211
  {
6998
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7212
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
6999
7213
  "name": "RefAttributes"
7000
7214
  }
7001
7215
  ],
@@ -7074,12 +7288,12 @@
7074
7288
  "description": "",
7075
7289
  "name": "className",
7076
7290
  "parent": {
7077
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7291
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7078
7292
  "name": "HTMLAttributes"
7079
7293
  },
7080
7294
  "declarations": [
7081
7295
  {
7082
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7296
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7083
7297
  "name": "HTMLAttributes"
7084
7298
  }
7085
7299
  ],
@@ -7093,12 +7307,12 @@
7093
7307
  "description": "",
7094
7308
  "name": "ref",
7095
7309
  "parent": {
7096
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7310
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7097
7311
  "name": "RefAttributes"
7098
7312
  },
7099
7313
  "declarations": [
7100
7314
  {
7101
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7315
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7102
7316
  "name": "RefAttributes"
7103
7317
  }
7104
7318
  ],
@@ -7177,12 +7391,12 @@
7177
7391
  "description": "",
7178
7392
  "name": "className",
7179
7393
  "parent": {
7180
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7394
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7181
7395
  "name": "HTMLAttributes"
7182
7396
  },
7183
7397
  "declarations": [
7184
7398
  {
7185
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7399
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7186
7400
  "name": "HTMLAttributes"
7187
7401
  }
7188
7402
  ],
@@ -7196,12 +7410,12 @@
7196
7410
  "description": "",
7197
7411
  "name": "ref",
7198
7412
  "parent": {
7199
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7413
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7200
7414
  "name": "RefAttributes"
7201
7415
  },
7202
7416
  "declarations": [
7203
7417
  {
7204
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7418
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7205
7419
  "name": "RefAttributes"
7206
7420
  }
7207
7421
  ],
@@ -7299,12 +7513,12 @@
7299
7513
  "description": "",
7300
7514
  "name": "className",
7301
7515
  "parent": {
7302
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7516
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7303
7517
  "name": "HTMLAttributes"
7304
7518
  },
7305
7519
  "declarations": [
7306
7520
  {
7307
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7521
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7308
7522
  "name": "HTMLAttributes"
7309
7523
  }
7310
7524
  ],
@@ -7318,12 +7532,12 @@
7318
7532
  "description": "",
7319
7533
  "name": "ref",
7320
7534
  "parent": {
7321
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7535
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7322
7536
  "name": "RefAttributes"
7323
7537
  },
7324
7538
  "declarations": [
7325
7539
  {
7326
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7540
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7327
7541
  "name": "RefAttributes"
7328
7542
  }
7329
7543
  ],
@@ -7402,12 +7616,12 @@
7402
7616
  "description": "",
7403
7617
  "name": "className",
7404
7618
  "parent": {
7405
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7619
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7406
7620
  "name": "HTMLAttributes"
7407
7621
  },
7408
7622
  "declarations": [
7409
7623
  {
7410
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7624
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7411
7625
  "name": "HTMLAttributes"
7412
7626
  }
7413
7627
  ],
@@ -7421,12 +7635,12 @@
7421
7635
  "description": "",
7422
7636
  "name": "ref",
7423
7637
  "parent": {
7424
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7638
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7425
7639
  "name": "RefAttributes"
7426
7640
  },
7427
7641
  "declarations": [
7428
7642
  {
7429
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7643
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7430
7644
  "name": "RefAttributes"
7431
7645
  }
7432
7646
  ],
@@ -7526,12 +7740,12 @@
7526
7740
  "description": "",
7527
7741
  "name": "className",
7528
7742
  "parent": {
7529
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7743
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7530
7744
  "name": "HTMLAttributes"
7531
7745
  },
7532
7746
  "declarations": [
7533
7747
  {
7534
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7748
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7535
7749
  "name": "HTMLAttributes"
7536
7750
  }
7537
7751
  ],
@@ -7545,12 +7759,12 @@
7545
7759
  "description": "",
7546
7760
  "name": "ref",
7547
7761
  "parent": {
7548
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7762
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7549
7763
  "name": "RefAttributes"
7550
7764
  },
7551
7765
  "declarations": [
7552
7766
  {
7553
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7767
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7554
7768
  "name": "RefAttributes"
7555
7769
  }
7556
7770
  ],
@@ -7608,12 +7822,12 @@
7608
7822
  "description": "",
7609
7823
  "name": "className",
7610
7824
  "parent": {
7611
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7825
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7612
7826
  "name": "HTMLAttributes"
7613
7827
  },
7614
7828
  "declarations": [
7615
7829
  {
7616
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7830
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7617
7831
  "name": "HTMLAttributes"
7618
7832
  }
7619
7833
  ],
@@ -7627,12 +7841,12 @@
7627
7841
  "description": "",
7628
7842
  "name": "ref",
7629
7843
  "parent": {
7630
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7844
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7631
7845
  "name": "RefAttributes"
7632
7846
  },
7633
7847
  "declarations": [
7634
7848
  {
7635
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7849
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7636
7850
  "name": "RefAttributes"
7637
7851
  }
7638
7852
  ],
@@ -7711,12 +7925,12 @@
7711
7925
  "description": "",
7712
7926
  "name": "className",
7713
7927
  "parent": {
7714
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7928
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7715
7929
  "name": "HTMLAttributes"
7716
7930
  },
7717
7931
  "declarations": [
7718
7932
  {
7719
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7933
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7720
7934
  "name": "HTMLAttributes"
7721
7935
  }
7722
7936
  ],
@@ -7730,12 +7944,12 @@
7730
7944
  "description": "",
7731
7945
  "name": "ref",
7732
7946
  "parent": {
7733
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7947
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7734
7948
  "name": "RefAttributes"
7735
7949
  },
7736
7950
  "declarations": [
7737
7951
  {
7738
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
7952
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7739
7953
  "name": "RefAttributes"
7740
7954
  }
7741
7955
  ],
@@ -7833,12 +8047,12 @@
7833
8047
  "description": "",
7834
8048
  "name": "className",
7835
8049
  "parent": {
7836
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8050
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7837
8051
  "name": "HTMLAttributes"
7838
8052
  },
7839
8053
  "declarations": [
7840
8054
  {
7841
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8055
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7842
8056
  "name": "HTMLAttributes"
7843
8057
  }
7844
8058
  ],
@@ -7898,12 +8112,12 @@
7898
8112
  "description": "",
7899
8113
  "name": "className",
7900
8114
  "parent": {
7901
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8115
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7902
8116
  "name": "HTMLAttributes"
7903
8117
  },
7904
8118
  "declarations": [
7905
8119
  {
7906
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8120
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7907
8121
  "name": "HTMLAttributes"
7908
8122
  }
7909
8123
  ],
@@ -7917,12 +8131,12 @@
7917
8131
  "description": "",
7918
8132
  "name": "ref",
7919
8133
  "parent": {
7920
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8134
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7921
8135
  "name": "RefAttributes"
7922
8136
  },
7923
8137
  "declarations": [
7924
8138
  {
7925
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8139
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
7926
8140
  "name": "RefAttributes"
7927
8141
  }
7928
8142
  ],
@@ -8611,12 +8825,12 @@
8611
8825
  "description": "",
8612
8826
  "name": "ref",
8613
8827
  "parent": {
8614
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8828
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
8615
8829
  "name": "RefAttributes"
8616
8830
  },
8617
8831
  "declarations": [
8618
8832
  {
8619
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
8833
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
8620
8834
  "name": "RefAttributes"
8621
8835
  }
8622
8836
  ],
@@ -8698,6 +8912,25 @@
8698
8912
  "name": "Date"
8699
8913
  }
8700
8914
  },
8915
+ "defaultMonth": {
8916
+ "defaultValue": null,
8917
+ "description": "Default shown month",
8918
+ "name": "defaultMonth",
8919
+ "parent": {
8920
+ "fileName": "src/date/hooks/useDatepicker.tsx",
8921
+ "name": "UseDatepickerOptions"
8922
+ },
8923
+ "declarations": [
8924
+ {
8925
+ "fileName": "src/date/hooks/useDatepicker.tsx",
8926
+ "name": "UseDatepickerOptions"
8927
+ }
8928
+ ],
8929
+ "required": false,
8930
+ "type": {
8931
+ "name": "Date"
8932
+ }
8933
+ },
8701
8934
  "required": {
8702
8935
  "defaultValue": null,
8703
8936
  "description": "Make selection of Date required",
@@ -8736,6 +8969,46 @@
8736
8969
  "name": "((val?: Date) => void)"
8737
8970
  }
8738
8971
  },
8972
+ "inputFormat": {
8973
+ "defaultValue": {
8974
+ "value": "\"dd.MM.yyyy\""
8975
+ },
8976
+ "description": "Input-format",
8977
+ "name": "inputFormat",
8978
+ "parent": {
8979
+ "fileName": "src/date/hooks/useDatepicker.tsx",
8980
+ "name": "UseDatepickerOptions"
8981
+ },
8982
+ "declarations": [
8983
+ {
8984
+ "fileName": "src/date/hooks/useDatepicker.tsx",
8985
+ "name": "UseDatepickerOptions"
8986
+ }
8987
+ ],
8988
+ "required": false,
8989
+ "type": {
8990
+ "name": "string"
8991
+ }
8992
+ },
8993
+ "onValidate": {
8994
+ "defaultValue": null,
8995
+ "description": "validation-callback",
8996
+ "name": "onValidate",
8997
+ "parent": {
8998
+ "fileName": "src/date/hooks/useDatepicker.tsx",
8999
+ "name": "UseDatepickerOptions"
9000
+ },
9001
+ "declarations": [
9002
+ {
9003
+ "fileName": "src/date/hooks/useDatepicker.tsx",
9004
+ "name": "UseDatepickerOptions"
9005
+ }
9006
+ ],
9007
+ "required": false,
9008
+ "type": {
9009
+ "name": "((val: DateValidationT) => void)"
9010
+ }
9011
+ },
8739
9012
  "locale": {
8740
9013
  "defaultValue": {
8741
9014
  "value": "\"nb\" (norsk bokmål)"
@@ -8879,6 +9152,65 @@
8879
9152
  "name": "((date?: Date) => void)"
8880
9153
  }
8881
9154
  },
9155
+ "inputFormat": {
9156
+ "defaultValue": {
9157
+ "value": "\"MMMM yyyy\""
9158
+ },
9159
+ "description": "Input-format",
9160
+ "name": "inputFormat",
9161
+ "parent": {
9162
+ "fileName": "src/date/hooks/useMonthPicker.tsx",
9163
+ "name": "UseMonthPickerOptions"
9164
+ },
9165
+ "declarations": [
9166
+ {
9167
+ "fileName": "src/date/hooks/useMonthPicker.tsx",
9168
+ "name": "UseMonthPickerOptions"
9169
+ }
9170
+ ],
9171
+ "required": false,
9172
+ "type": {
9173
+ "name": "string"
9174
+ }
9175
+ },
9176
+ "onValidate": {
9177
+ "defaultValue": null,
9178
+ "description": "validation-callback",
9179
+ "name": "onValidate",
9180
+ "parent": {
9181
+ "fileName": "src/date/hooks/useMonthPicker.tsx",
9182
+ "name": "UseMonthPickerOptions"
9183
+ },
9184
+ "declarations": [
9185
+ {
9186
+ "fileName": "src/date/hooks/useMonthPicker.tsx",
9187
+ "name": "UseMonthPickerOptions"
9188
+ }
9189
+ ],
9190
+ "required": false,
9191
+ "type": {
9192
+ "name": "((val: MonthValidationT) => void)"
9193
+ }
9194
+ },
9195
+ "defaultYear": {
9196
+ "defaultValue": null,
9197
+ "description": "Default shown year",
9198
+ "name": "defaultYear",
9199
+ "parent": {
9200
+ "fileName": "src/date/hooks/useMonthPicker.tsx",
9201
+ "name": "UseMonthPickerOptions"
9202
+ },
9203
+ "declarations": [
9204
+ {
9205
+ "fileName": "src/date/hooks/useMonthPicker.tsx",
9206
+ "name": "UseMonthPickerOptions"
9207
+ }
9208
+ ],
9209
+ "required": false,
9210
+ "type": {
9211
+ "name": "Date"
9212
+ }
9213
+ },
8882
9214
  "locale": {
8883
9215
  "defaultValue": {
8884
9216
  "value": "\"nb\" (norsk bokmål)"
@@ -9020,6 +9352,25 @@
9020
9352
  "name": "((val?: DateRange) => void)"
9021
9353
  }
9022
9354
  },
9355
+ "onValidate": {
9356
+ "defaultValue": null,
9357
+ "description": "validation-callback",
9358
+ "name": "onValidate",
9359
+ "parent": {
9360
+ "fileName": "src/date/hooks/useRangeDatepicker.tsx",
9361
+ "name": "UseRangeDatepickerOptions"
9362
+ },
9363
+ "declarations": [
9364
+ {
9365
+ "fileName": "src/date/hooks/useRangeDatepicker.tsx",
9366
+ "name": "UseRangeDatepickerOptions"
9367
+ }
9368
+ ],
9369
+ "required": false,
9370
+ "type": {
9371
+ "name": "((val: RangeValidationT) => void)"
9372
+ }
9373
+ },
9023
9374
  "locale": {
9024
9375
  "defaultValue": {
9025
9376
  "value": "\"nb\" (norsk bokmål)"
@@ -9119,6 +9470,25 @@
9119
9470
  "name": "boolean"
9120
9471
  }
9121
9472
  },
9473
+ "defaultMonth": {
9474
+ "defaultValue": null,
9475
+ "description": "Default shown month",
9476
+ "name": "defaultMonth",
9477
+ "parent": {
9478
+ "fileName": "react/src/date/hooks/useDatepicker.tsx",
9479
+ "name": "UseDatepickerOptions"
9480
+ },
9481
+ "declarations": [
9482
+ {
9483
+ "fileName": "react/src/date/hooks/useDatepicker.tsx",
9484
+ "name": "UseDatepickerOptions"
9485
+ }
9486
+ ],
9487
+ "required": false,
9488
+ "type": {
9489
+ "name": "Date"
9490
+ }
9491
+ },
9122
9492
  "required": {
9123
9493
  "defaultValue": null,
9124
9494
  "description": "Make selection of Date required",
@@ -9137,6 +9507,27 @@
9137
9507
  "type": {
9138
9508
  "name": "boolean"
9139
9509
  }
9510
+ },
9511
+ "inputFormat": {
9512
+ "defaultValue": {
9513
+ "value": "\"dd.MM.yyyy\""
9514
+ },
9515
+ "description": "Input-format",
9516
+ "name": "inputFormat",
9517
+ "parent": {
9518
+ "fileName": "react/src/date/hooks/useDatepicker.tsx",
9519
+ "name": "UseDatepickerOptions"
9520
+ },
9521
+ "declarations": [
9522
+ {
9523
+ "fileName": "react/src/date/hooks/useDatepicker.tsx",
9524
+ "name": "UseDatepickerOptions"
9525
+ }
9526
+ ],
9527
+ "required": false,
9528
+ "type": {
9529
+ "name": "string"
9530
+ }
9140
9531
  }
9141
9532
  }
9142
9533
  },
@@ -9877,12 +10268,12 @@
9877
10268
  "description": "",
9878
10269
  "name": "ref",
9879
10270
  "parent": {
9880
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10271
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
9881
10272
  "name": "RefAttributes"
9882
10273
  },
9883
10274
  "declarations": [
9884
10275
  {
9885
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10276
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
9886
10277
  "name": "RefAttributes"
9887
10278
  }
9888
10279
  ],
@@ -10094,12 +10485,12 @@
10094
10485
  "description": "",
10095
10486
  "name": "className",
10096
10487
  "parent": {
10097
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10488
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10098
10489
  "name": "HTMLAttributes"
10099
10490
  },
10100
10491
  "declarations": [
10101
10492
  {
10102
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10493
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10103
10494
  "name": "HTMLAttributes"
10104
10495
  }
10105
10496
  ],
@@ -10113,12 +10504,12 @@
10113
10504
  "description": "",
10114
10505
  "name": "ref",
10115
10506
  "parent": {
10116
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10507
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10117
10508
  "name": "RefAttributes"
10118
10509
  },
10119
10510
  "declarations": [
10120
10511
  {
10121
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10512
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10122
10513
  "name": "RefAttributes"
10123
10514
  }
10124
10515
  ],
@@ -10332,12 +10723,12 @@
10332
10723
  "description": "",
10333
10724
  "name": "className",
10334
10725
  "parent": {
10335
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10726
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10336
10727
  "name": "HTMLAttributes"
10337
10728
  },
10338
10729
  "declarations": [
10339
10730
  {
10340
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10731
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10341
10732
  "name": "HTMLAttributes"
10342
10733
  }
10343
10734
  ],
@@ -10351,12 +10742,12 @@
10351
10742
  "description": "",
10352
10743
  "name": "ref",
10353
10744
  "parent": {
10354
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10745
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10355
10746
  "name": "RefAttributes"
10356
10747
  },
10357
10748
  "declarations": [
10358
10749
  {
10359
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
10750
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10360
10751
  "name": "RefAttributes"
10361
10752
  }
10362
10753
  ],
@@ -10606,12 +10997,12 @@
10606
10997
  "description": "",
10607
10998
  "name": "className",
10608
10999
  "parent": {
10609
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11000
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10610
11001
  "name": "HTMLAttributes"
10611
11002
  },
10612
11003
  "declarations": [
10613
11004
  {
10614
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11005
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10615
11006
  "name": "HTMLAttributes"
10616
11007
  }
10617
11008
  ],
@@ -10625,12 +11016,12 @@
10625
11016
  "description": "",
10626
11017
  "name": "ref",
10627
11018
  "parent": {
10628
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11019
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10629
11020
  "name": "RefAttributes"
10630
11021
  },
10631
11022
  "declarations": [
10632
11023
  {
10633
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11024
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10634
11025
  "name": "RefAttributes"
10635
11026
  }
10636
11027
  ],
@@ -10730,12 +11121,12 @@
10730
11121
  "description": "",
10731
11122
  "name": "className",
10732
11123
  "parent": {
10733
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11124
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10734
11125
  "name": "HTMLAttributes"
10735
11126
  },
10736
11127
  "declarations": [
10737
11128
  {
10738
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11129
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10739
11130
  "name": "HTMLAttributes"
10740
11131
  }
10741
11132
  ],
@@ -10749,12 +11140,12 @@
10749
11140
  "description": "",
10750
11141
  "name": "ref",
10751
11142
  "parent": {
10752
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11143
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10753
11144
  "name": "RefAttributes"
10754
11145
  },
10755
11146
  "declarations": [
10756
11147
  {
10757
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11148
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10758
11149
  "name": "RefAttributes"
10759
11150
  }
10760
11151
  ],
@@ -10793,12 +11184,12 @@
10793
11184
  "description": "",
10794
11185
  "name": "className",
10795
11186
  "parent": {
10796
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11187
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10797
11188
  "name": "HTMLAttributes"
10798
11189
  },
10799
11190
  "declarations": [
10800
11191
  {
10801
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11192
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10802
11193
  "name": "HTMLAttributes"
10803
11194
  }
10804
11195
  ],
@@ -10812,12 +11203,12 @@
10812
11203
  "description": "",
10813
11204
  "name": "ref",
10814
11205
  "parent": {
10815
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11206
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10816
11207
  "name": "RefAttributes"
10817
11208
  },
10818
11209
  "declarations": [
10819
11210
  {
10820
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11211
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10821
11212
  "name": "RefAttributes"
10822
11213
  }
10823
11214
  ],
@@ -10951,12 +11342,12 @@
10951
11342
  "description": "",
10952
11343
  "name": "className",
10953
11344
  "parent": {
10954
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11345
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10955
11346
  "name": "HTMLAttributes"
10956
11347
  },
10957
11348
  "declarations": [
10958
11349
  {
10959
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11350
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10960
11351
  "name": "HTMLAttributes"
10961
11352
  }
10962
11353
  ],
@@ -10970,12 +11361,12 @@
10970
11361
  "description": "",
10971
11362
  "name": "ref",
10972
11363
  "parent": {
10973
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11364
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10974
11365
  "name": "RefAttributes"
10975
11366
  },
10976
11367
  "declarations": [
10977
11368
  {
10978
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11369
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
10979
11370
  "name": "RefAttributes"
10980
11371
  }
10981
11372
  ],
@@ -11263,12 +11654,12 @@
11263
11654
  "description": "",
11264
11655
  "name": "className",
11265
11656
  "parent": {
11266
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11657
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11267
11658
  "name": "HTMLAttributes"
11268
11659
  },
11269
11660
  "declarations": [
11270
11661
  {
11271
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11662
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11272
11663
  "name": "HTMLAttributes"
11273
11664
  }
11274
11665
  ],
@@ -11282,12 +11673,12 @@
11282
11673
  "description": "",
11283
11674
  "name": "ref",
11284
11675
  "parent": {
11285
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11676
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11286
11677
  "name": "RefAttributes"
11287
11678
  },
11288
11679
  "declarations": [
11289
11680
  {
11290
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11681
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11291
11682
  "name": "RefAttributes"
11292
11683
  }
11293
11684
  ],
@@ -11562,12 +11953,12 @@
11562
11953
  "description": "",
11563
11954
  "name": "className",
11564
11955
  "parent": {
11565
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11956
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11566
11957
  "name": "HTMLAttributes"
11567
11958
  },
11568
11959
  "declarations": [
11569
11960
  {
11570
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11961
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11571
11962
  "name": "HTMLAttributes"
11572
11963
  }
11573
11964
  ],
@@ -11581,12 +11972,12 @@
11581
11972
  "description": "",
11582
11973
  "name": "ref",
11583
11974
  "parent": {
11584
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11975
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11585
11976
  "name": "RefAttributes"
11586
11977
  },
11587
11978
  "declarations": [
11588
11979
  {
11589
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
11980
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11590
11981
  "name": "RefAttributes"
11591
11982
  }
11592
11983
  ],
@@ -11705,12 +12096,12 @@
11705
12096
  "description": "",
11706
12097
  "name": "className",
11707
12098
  "parent": {
11708
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
12099
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11709
12100
  "name": "HTMLAttributes"
11710
12101
  },
11711
12102
  "declarations": [
11712
12103
  {
11713
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
12104
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11714
12105
  "name": "HTMLAttributes"
11715
12106
  }
11716
12107
  ],
@@ -11724,12 +12115,12 @@
11724
12115
  "description": "",
11725
12116
  "name": "ref",
11726
12117
  "parent": {
11727
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
12118
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11728
12119
  "name": "RefAttributes"
11729
12120
  },
11730
12121
  "declarations": [
11731
12122
  {
11732
- "fileName": "nfm/node_modules/@types/react/index.d.ts",
12123
+ "fileName": "Designsystemet/node_modules/@types/react/index.d.ts",
11733
12124
  "name": "RefAttributes"
11734
12125
  }
11735
12126
  ],