@navikt/ds-react 5.6.0-beta.0 → 5.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (162) hide show
  1. package/_docs.json +1495 -652
  2. package/cjs/accordion/Accordion.js +1 -0
  3. package/cjs/accordion/AccordionContext.js +1 -1
  4. package/cjs/accordion/AccordionHeader.js +2 -2
  5. package/cjs/accordion/AccordionItem.js +3 -0
  6. package/cjs/date/datepicker/DatePicker.js +30 -34
  7. package/cjs/date/datepicker/DatePickerStandalone.js +23 -26
  8. package/cjs/date/datepicker/parts/Caption.js +28 -0
  9. package/cjs/date/datepicker/{DayButton.js → parts/DayButton.js} +1 -2
  10. package/cjs/date/datepicker/{caption → parts}/DropdownCaption.js +13 -7
  11. package/cjs/date/datepicker/parts/HeadRow.js +36 -0
  12. package/cjs/date/datepicker/parts/Row.js +23 -0
  13. package/cjs/date/datepicker/{TableHead.js → parts/TableHead.js} +4 -3
  14. package/cjs/date/datepicker/parts/WeekNumber.js +35 -0
  15. package/cjs/date/datepicker/parts/WeekRow.js +34 -0
  16. package/cjs/date/utils/get-month-weeks.js +46 -0
  17. package/cjs/date/utils/labels.js +40 -1
  18. package/cjs/index.js +1 -0
  19. package/cjs/layout/bleed/Bleed.js +25 -5
  20. package/cjs/layout/bleed/index.js +1 -4
  21. package/cjs/layout/box/Box.js +1 -1
  22. package/cjs/layout/responsive/Responsive.js +8 -6
  23. package/cjs/layout/utilities/css.js +37 -14
  24. package/esm/accordion/Accordion.js +1 -0
  25. package/esm/accordion/Accordion.js.map +1 -1
  26. package/esm/accordion/AccordionContext.d.ts +1 -0
  27. package/esm/accordion/AccordionContext.js +1 -1
  28. package/esm/accordion/AccordionContext.js.map +1 -1
  29. package/esm/accordion/AccordionHeader.js +2 -2
  30. package/esm/accordion/AccordionHeader.js.map +1 -1
  31. package/esm/accordion/AccordionItem.js +3 -0
  32. package/esm/accordion/AccordionItem.js.map +1 -1
  33. package/esm/date/datepicker/DatePicker.d.ts +14 -5
  34. package/esm/date/datepicker/DatePicker.js +29 -33
  35. package/esm/date/datepicker/DatePicker.js.map +1 -1
  36. package/esm/date/datepicker/DatePickerStandalone.d.ts +3 -2
  37. package/esm/date/datepicker/DatePickerStandalone.js +22 -25
  38. package/esm/date/datepicker/DatePickerStandalone.js.map +1 -1
  39. package/esm/date/datepicker/{caption → parts}/Caption.d.ts +3 -0
  40. package/esm/date/datepicker/parts/Caption.js +22 -0
  41. package/esm/date/datepicker/parts/Caption.js.map +1 -0
  42. package/esm/date/datepicker/parts/DayButton.d.ts +4 -0
  43. package/esm/date/datepicker/{DayButton.js → parts/DayButton.js} +2 -1
  44. package/esm/date/datepicker/parts/DayButton.js.map +1 -0
  45. package/esm/date/datepicker/{caption → parts}/DropdownCaption.d.ts +3 -0
  46. package/esm/date/datepicker/parts/DropdownCaption.js +44 -0
  47. package/esm/date/datepicker/parts/DropdownCaption.js.map +1 -0
  48. package/esm/date/datepicker/parts/HeadRow.d.ts +11 -0
  49. package/esm/date/datepicker/parts/HeadRow.js +29 -0
  50. package/esm/date/datepicker/parts/HeadRow.js.map +1 -0
  51. package/esm/date/datepicker/parts/Row.d.ts +17 -0
  52. package/esm/date/datepicker/parts/Row.js +19 -0
  53. package/esm/date/datepicker/parts/Row.js.map +1 -0
  54. package/esm/date/datepicker/parts/TableHead.d.ts +6 -0
  55. package/esm/date/datepicker/{TableHead.js → parts/TableHead.js} +5 -2
  56. package/esm/date/datepicker/parts/TableHead.js.map +1 -0
  57. package/esm/date/datepicker/parts/WeekNumber.d.ts +13 -0
  58. package/esm/date/datepicker/parts/WeekNumber.js +31 -0
  59. package/esm/date/datepicker/parts/WeekNumber.js.map +1 -0
  60. package/esm/date/datepicker/parts/WeekRow.d.ts +5 -0
  61. package/esm/date/datepicker/parts/WeekRow.js +30 -0
  62. package/esm/date/datepicker/parts/WeekRow.js.map +1 -0
  63. package/esm/date/utils/get-month-weeks.d.ts +16 -0
  64. package/esm/date/utils/get-month-weeks.js +42 -0
  65. package/esm/date/utils/get-month-weeks.js.map +1 -0
  66. package/esm/date/utils/labels.d.ts +9 -0
  67. package/esm/date/utils/labels.js +36 -0
  68. package/esm/date/utils/labels.js.map +1 -1
  69. package/esm/form/Fieldset/useFieldset.d.ts +1 -1
  70. package/esm/form/checkbox/useCheckbox.d.ts +1 -1
  71. package/esm/form/combobox/Combobox.d.ts +1 -1
  72. package/esm/form/radio/useRadio.d.ts +1 -1
  73. package/esm/index.d.ts +1 -0
  74. package/esm/index.js +1 -0
  75. package/esm/index.js.map +1 -1
  76. package/esm/layout/bleed/Bleed.d.ts +46 -7
  77. package/esm/layout/bleed/Bleed.js +25 -5
  78. package/esm/layout/bleed/Bleed.js.map +1 -1
  79. package/esm/layout/bleed/index.d.ts +1 -1
  80. package/esm/layout/bleed/index.js +1 -1
  81. package/esm/layout/bleed/index.js.map +1 -1
  82. package/esm/layout/box/Box.js +1 -1
  83. package/esm/layout/box/Box.js.map +1 -1
  84. package/esm/layout/responsive/Responsive.d.ts +8 -4
  85. package/esm/layout/responsive/Responsive.js +8 -6
  86. package/esm/layout/responsive/Responsive.js.map +1 -1
  87. package/esm/layout/utilities/css.d.ts +1 -1
  88. package/esm/layout/utilities/css.js +37 -14
  89. package/esm/layout/utilities/css.js.map +1 -1
  90. package/package.json +5 -4
  91. package/src/accordion/Accordion.tsx +1 -0
  92. package/src/accordion/AccordionContext.tsx +2 -1
  93. package/src/accordion/AccordionHeader.tsx +2 -2
  94. package/src/accordion/AccordionItem.tsx +4 -0
  95. package/src/date/datepicker/DatePicker.tsx +63 -58
  96. package/src/date/datepicker/DatePickerStandalone.tsx +36 -37
  97. package/src/date/datepicker/datepicker.stories.tsx +66 -1
  98. package/src/date/datepicker/{caption → parts}/Caption.tsx +19 -17
  99. package/src/date/datepicker/{DayButton.tsx → parts/DayButton.tsx} +3 -1
  100. package/src/date/datepicker/parts/DropdownCaption.tsx +113 -0
  101. package/src/date/datepicker/parts/HeadRow.tsx +56 -0
  102. package/src/date/datepicker/parts/Row.tsx +47 -0
  103. package/src/date/datepicker/{TableHead.tsx → parts/TableHead.tsx} +6 -2
  104. package/src/date/datepicker/parts/WeekNumber.tsx +79 -0
  105. package/src/date/datepicker/parts/WeekRow.tsx +60 -0
  106. package/src/date/utils/__tests__/get-month-weeks.test.ts +113 -0
  107. package/src/date/utils/get-month-weeks.ts +93 -0
  108. package/src/date/utils/labels.ts +51 -0
  109. package/src/index.ts +1 -0
  110. package/src/layout/bleed/Bleed.stories.tsx +381 -0
  111. package/src/layout/bleed/Bleed.tsx +130 -0
  112. package/src/layout/bleed/index.ts +1 -0
  113. package/src/layout/box/Box.tsx +1 -0
  114. package/src/layout/responsive/Responsive.tsx +21 -6
  115. package/src/layout/responsive/hide.stories.tsx +35 -0
  116. package/src/layout/responsive/show.stories.tsx +35 -0
  117. package/src/layout/utilities/css.ts +59 -19
  118. package/cjs/date/datepicker/caption/Caption.js +0 -23
  119. package/cjs/date/datepicker/caption/index.js +0 -10
  120. package/cjs/date/datepicker/caption/package.json +0 -6
  121. package/cjs/layout/content-box/ContentBox.js +0 -56
  122. package/cjs/layout/content-box/index.js +0 -8
  123. package/cjs/layout/content-box/package.json +0 -6
  124. package/cjs/layout/page-demo/AvatarPanel.js +0 -18
  125. package/cjs/layout/page-demo/Filter.js +0 -21
  126. package/cjs/layout/page-demo/Header.js +0 -48
  127. package/cjs/layout/page-demo/Intro.js +0 -36
  128. package/cjs/layout/page-demo/Sidebar.js +0 -49
  129. package/esm/date/datepicker/DayButton.d.ts +0 -3
  130. package/esm/date/datepicker/DayButton.js.map +0 -1
  131. package/esm/date/datepicker/TableHead.d.ts +0 -3
  132. package/esm/date/datepicker/TableHead.js.map +0 -1
  133. package/esm/date/datepicker/caption/Caption.js +0 -17
  134. package/esm/date/datepicker/caption/Caption.js.map +0 -1
  135. package/esm/date/datepicker/caption/DropdownCaption.js +0 -38
  136. package/esm/date/datepicker/caption/DropdownCaption.js.map +0 -1
  137. package/esm/date/datepicker/caption/index.d.ts +0 -2
  138. package/esm/date/datepicker/caption/index.js +0 -3
  139. package/esm/date/datepicker/caption/index.js.map +0 -1
  140. package/esm/layout/content-box/ContentBox.d.ts +0 -8
  141. package/esm/layout/content-box/ContentBox.js +0 -28
  142. package/esm/layout/content-box/ContentBox.js.map +0 -1
  143. package/esm/layout/content-box/index.d.ts +0 -1
  144. package/esm/layout/content-box/index.js +0 -2
  145. package/esm/layout/content-box/index.js.map +0 -1
  146. package/esm/layout/page-demo/AvatarPanel.d.ts +0 -4
  147. package/esm/layout/page-demo/AvatarPanel.js +0 -12
  148. package/esm/layout/page-demo/AvatarPanel.js.map +0 -1
  149. package/esm/layout/page-demo/Filter.d.ts +0 -2
  150. package/esm/layout/page-demo/Filter.js +0 -15
  151. package/esm/layout/page-demo/Filter.js.map +0 -1
  152. package/esm/layout/page-demo/Header.d.ts +0 -2
  153. package/esm/layout/page-demo/Header.js +0 -42
  154. package/esm/layout/page-demo/Header.js.map +0 -1
  155. package/esm/layout/page-demo/Intro.d.ts +0 -2
  156. package/esm/layout/page-demo/Intro.js +0 -30
  157. package/esm/layout/page-demo/Intro.js.map +0 -1
  158. package/esm/layout/page-demo/Sidebar.d.ts +0 -4
  159. package/esm/layout/page-demo/Sidebar.js +0 -41
  160. package/esm/layout/page-demo/Sidebar.js.map +0 -1
  161. package/src/date/datepicker/caption/DropdownCaption.tsx +0 -108
  162. package/src/date/datepicker/caption/index.ts +0 -2
package/_docs.json CHANGED
@@ -111,12 +111,12 @@
111
111
  "description": "",
112
112
  "name": "className",
113
113
  "parent": {
114
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
114
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
115
115
  "name": "HTMLAttributes"
116
116
  },
117
117
  "declarations": [
118
118
  {
119
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
119
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
120
120
  "name": "HTMLAttributes"
121
121
  }
122
122
  ],
@@ -130,12 +130,12 @@
130
130
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
131
131
  "name": "ref",
132
132
  "parent": {
133
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
133
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
134
134
  "name": "RefAttributes"
135
135
  },
136
136
  "declarations": [
137
137
  {
138
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
138
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
139
139
  "name": "RefAttributes"
140
140
  }
141
141
  ],
@@ -174,12 +174,12 @@
174
174
  "description": "",
175
175
  "name": "className",
176
176
  "parent": {
177
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
177
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
178
178
  "name": "HTMLAttributes"
179
179
  },
180
180
  "declarations": [
181
181
  {
182
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
182
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
183
183
  "name": "HTMLAttributes"
184
184
  }
185
185
  ],
@@ -193,12 +193,12 @@
193
193
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
194
194
  "name": "ref",
195
195
  "parent": {
196
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
196
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
197
197
  "name": "RefAttributes"
198
198
  },
199
199
  "declarations": [
200
200
  {
201
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
201
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
202
202
  "name": "RefAttributes"
203
203
  }
204
204
  ],
@@ -237,12 +237,12 @@
237
237
  "description": "",
238
238
  "name": "className",
239
239
  "parent": {
240
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
240
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
241
241
  "name": "HTMLAttributes"
242
242
  },
243
243
  "declarations": [
244
244
  {
245
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
245
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
246
246
  "name": "HTMLAttributes"
247
247
  }
248
248
  ],
@@ -256,12 +256,12 @@
256
256
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
257
257
  "name": "ref",
258
258
  "parent": {
259
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
259
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
260
260
  "name": "RefAttributes"
261
261
  },
262
262
  "declarations": [
263
263
  {
264
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
264
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
265
265
  "name": "RefAttributes"
266
266
  }
267
267
  ],
@@ -340,12 +340,12 @@
340
340
  "description": "",
341
341
  "name": "className",
342
342
  "parent": {
343
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
343
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
344
344
  "name": "HTMLAttributes"
345
345
  },
346
346
  "declarations": [
347
347
  {
348
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
348
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
349
349
  "name": "HTMLAttributes"
350
350
  }
351
351
  ],
@@ -359,12 +359,12 @@
359
359
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
360
360
  "name": "ref",
361
361
  "parent": {
362
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
362
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
363
363
  "name": "RefAttributes"
364
364
  },
365
365
  "declarations": [
366
366
  {
367
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
367
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
368
368
  "name": "RefAttributes"
369
369
  }
370
370
  ],
@@ -525,12 +525,12 @@
525
525
  "description": "",
526
526
  "name": "className",
527
527
  "parent": {
528
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
528
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
529
529
  "name": "HTMLAttributes"
530
530
  },
531
531
  "declarations": [
532
532
  {
533
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
533
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
534
534
  "name": "HTMLAttributes"
535
535
  }
536
536
  ],
@@ -544,12 +544,12 @@
544
544
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
545
545
  "name": "ref",
546
546
  "parent": {
547
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
547
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
548
548
  "name": "RefAttributes"
549
549
  },
550
550
  "declarations": [
551
551
  {
552
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
552
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
553
553
  "name": "RefAttributes"
554
554
  }
555
555
  ],
@@ -710,12 +710,12 @@
710
710
  "description": "",
711
711
  "name": "className",
712
712
  "parent": {
713
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
713
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
714
714
  "name": "HTMLAttributes"
715
715
  },
716
716
  "declarations": [
717
717
  {
718
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
718
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
719
719
  "name": "HTMLAttributes"
720
720
  }
721
721
  ],
@@ -729,12 +729,12 @@
729
729
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
730
730
  "name": "ref",
731
731
  "parent": {
732
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
732
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
733
733
  "name": "RefAttributes"
734
734
  },
735
735
  "declarations": [
736
736
  {
737
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
737
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
738
738
  "name": "RefAttributes"
739
739
  }
740
740
  ],
@@ -849,12 +849,12 @@
849
849
  "description": "",
850
850
  "name": "className",
851
851
  "parent": {
852
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
852
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
853
853
  "name": "HTMLAttributes"
854
854
  },
855
855
  "declarations": [
856
856
  {
857
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
857
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
858
858
  "name": "HTMLAttributes"
859
859
  }
860
860
  ],
@@ -868,12 +868,12 @@
868
868
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
869
869
  "name": "ref",
870
870
  "parent": {
871
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
871
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
872
872
  "name": "RefAttributes"
873
873
  },
874
874
  "declarations": [
875
875
  {
876
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
876
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
877
877
  "name": "RefAttributes"
878
878
  }
879
879
  ],
@@ -1091,12 +1091,12 @@
1091
1091
  "description": "",
1092
1092
  "name": "className",
1093
1093
  "parent": {
1094
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1094
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1095
1095
  "name": "HTMLAttributes"
1096
1096
  },
1097
1097
  "declarations": [
1098
1098
  {
1099
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1099
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1100
1100
  "name": "HTMLAttributes"
1101
1101
  }
1102
1102
  ],
@@ -1110,12 +1110,12 @@
1110
1110
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
1111
1111
  "name": "ref",
1112
1112
  "parent": {
1113
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1113
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1114
1114
  "name": "RefAttributes"
1115
1115
  },
1116
1116
  "declarations": [
1117
1117
  {
1118
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1118
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1119
1119
  "name": "RefAttributes"
1120
1120
  }
1121
1121
  ],
@@ -1156,12 +1156,12 @@
1156
1156
  "description": "",
1157
1157
  "name": "className",
1158
1158
  "parent": {
1159
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1159
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1160
1160
  "name": "HTMLAttributes"
1161
1161
  },
1162
1162
  "declarations": [
1163
1163
  {
1164
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1164
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1165
1165
  "name": "HTMLAttributes"
1166
1166
  }
1167
1167
  ],
@@ -1175,12 +1175,12 @@
1175
1175
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
1176
1176
  "name": "ref",
1177
1177
  "parent": {
1178
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1178
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1179
1179
  "name": "RefAttributes"
1180
1180
  },
1181
1181
  "declarations": [
1182
1182
  {
1183
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1183
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1184
1184
  "name": "RefAttributes"
1185
1185
  }
1186
1186
  ],
@@ -1261,12 +1261,12 @@
1261
1261
  "description": "",
1262
1262
  "name": "className",
1263
1263
  "parent": {
1264
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1264
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1265
1265
  "name": "HTMLAttributes"
1266
1266
  },
1267
1267
  "declarations": [
1268
1268
  {
1269
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1269
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1270
1270
  "name": "HTMLAttributes"
1271
1271
  }
1272
1272
  ],
@@ -1280,12 +1280,12 @@
1280
1280
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
1281
1281
  "name": "ref",
1282
1282
  "parent": {
1283
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1283
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1284
1284
  "name": "RefAttributes"
1285
1285
  },
1286
1286
  "declarations": [
1287
1287
  {
1288
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1288
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1289
1289
  "name": "RefAttributes"
1290
1290
  }
1291
1291
  ],
@@ -1366,12 +1366,12 @@
1366
1366
  "description": "",
1367
1367
  "name": "className",
1368
1368
  "parent": {
1369
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1369
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1370
1370
  "name": "HTMLAttributes"
1371
1371
  },
1372
1372
  "declarations": [
1373
1373
  {
1374
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1374
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1375
1375
  "name": "HTMLAttributes"
1376
1376
  }
1377
1377
  ],
@@ -1385,12 +1385,12 @@
1385
1385
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
1386
1386
  "name": "ref",
1387
1387
  "parent": {
1388
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1388
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1389
1389
  "name": "RefAttributes"
1390
1390
  },
1391
1391
  "declarations": [
1392
1392
  {
1393
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1393
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1394
1394
  "name": "RefAttributes"
1395
1395
  }
1396
1396
  ],
@@ -1471,12 +1471,12 @@
1471
1471
  "description": "",
1472
1472
  "name": "className",
1473
1473
  "parent": {
1474
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1474
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1475
1475
  "name": "HTMLAttributes"
1476
1476
  },
1477
1477
  "declarations": [
1478
1478
  {
1479
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1479
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1480
1480
  "name": "HTMLAttributes"
1481
1481
  }
1482
1482
  ],
@@ -1490,12 +1490,12 @@
1490
1490
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
1491
1491
  "name": "ref",
1492
1492
  "parent": {
1493
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1493
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1494
1494
  "name": "RefAttributes"
1495
1495
  },
1496
1496
  "declarations": [
1497
1497
  {
1498
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1498
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1499
1499
  "name": "RefAttributes"
1500
1500
  }
1501
1501
  ],
@@ -1761,12 +1761,12 @@
1761
1761
  "description": "",
1762
1762
  "name": "className",
1763
1763
  "parent": {
1764
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1764
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1765
1765
  "name": "HTMLAttributes"
1766
1766
  },
1767
1767
  "declarations": [
1768
1768
  {
1769
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1769
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1770
1770
  "name": "HTMLAttributes"
1771
1771
  }
1772
1772
  ],
@@ -1780,12 +1780,12 @@
1780
1780
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
1781
1781
  "name": "ref",
1782
1782
  "parent": {
1783
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1783
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1784
1784
  "name": "RefAttributes"
1785
1785
  },
1786
1786
  "declarations": [
1787
1787
  {
1788
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
1788
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
1789
1789
  "name": "RefAttributes"
1790
1790
  }
1791
1791
  ],
@@ -1999,12 +1999,12 @@
1999
1999
  "description": "",
2000
2000
  "name": "className",
2001
2001
  "parent": {
2002
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2002
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2003
2003
  "name": "HTMLAttributes"
2004
2004
  },
2005
2005
  "declarations": [
2006
2006
  {
2007
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2007
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2008
2008
  "name": "HTMLAttributes"
2009
2009
  }
2010
2010
  ],
@@ -2018,12 +2018,12 @@
2018
2018
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2019
2019
  "name": "ref",
2020
2020
  "parent": {
2021
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2021
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2022
2022
  "name": "RefAttributes"
2023
2023
  },
2024
2024
  "declarations": [
2025
2025
  {
2026
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2026
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2027
2027
  "name": "RefAttributes"
2028
2028
  }
2029
2029
  ],
@@ -2237,12 +2237,12 @@
2237
2237
  "description": "",
2238
2238
  "name": "className",
2239
2239
  "parent": {
2240
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2240
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2241
2241
  "name": "HTMLAttributes"
2242
2242
  },
2243
2243
  "declarations": [
2244
2244
  {
2245
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2245
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2246
2246
  "name": "HTMLAttributes"
2247
2247
  }
2248
2248
  ],
@@ -2256,12 +2256,12 @@
2256
2256
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2257
2257
  "name": "ref",
2258
2258
  "parent": {
2259
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2259
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2260
2260
  "name": "RefAttributes"
2261
2261
  },
2262
2262
  "declarations": [
2263
2263
  {
2264
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2264
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2265
2265
  "name": "RefAttributes"
2266
2266
  }
2267
2267
  ],
@@ -2386,12 +2386,12 @@
2386
2386
  "description": "",
2387
2387
  "name": "className",
2388
2388
  "parent": {
2389
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2389
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2390
2390
  "name": "HTMLAttributes"
2391
2391
  },
2392
2392
  "declarations": [
2393
2393
  {
2394
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2394
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2395
2395
  "name": "HTMLAttributes"
2396
2396
  }
2397
2397
  ],
@@ -2405,12 +2405,12 @@
2405
2405
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2406
2406
  "name": "ref",
2407
2407
  "parent": {
2408
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2408
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2409
2409
  "name": "RefAttributes"
2410
2410
  },
2411
2411
  "declarations": [
2412
2412
  {
2413
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2413
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2414
2414
  "name": "RefAttributes"
2415
2415
  }
2416
2416
  ],
@@ -2510,12 +2510,12 @@
2510
2510
  "description": "",
2511
2511
  "name": "className",
2512
2512
  "parent": {
2513
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2513
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2514
2514
  "name": "HTMLAttributes"
2515
2515
  },
2516
2516
  "declarations": [
2517
2517
  {
2518
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2518
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2519
2519
  "name": "HTMLAttributes"
2520
2520
  }
2521
2521
  ],
@@ -2529,12 +2529,12 @@
2529
2529
  "description": "Defines a string value that labels the current element.\nShould be set if not using 'aria-labelledby'\n@see aria-labelledby.",
2530
2530
  "name": "aria-label",
2531
2531
  "parent": {
2532
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2532
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2533
2533
  "name": "AriaAttributes"
2534
2534
  },
2535
2535
  "declarations": [
2536
2536
  {
2537
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2537
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2538
2538
  "name": "AriaAttributes"
2539
2539
  },
2540
2540
  {
@@ -2542,7 +2542,7 @@
2542
2542
  "name": "TypeLiteral"
2543
2543
  },
2544
2544
  {
2545
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2545
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2546
2546
  "name": "AriaAttributes"
2547
2547
  }
2548
2548
  ],
@@ -2556,16 +2556,16 @@
2556
2556
  "description": "Identifies the element (or elements) that labels the current element.\nShould be set if not using 'aria-label'\n@see aria-describedby.",
2557
2557
  "name": "aria-labelledby",
2558
2558
  "parent": {
2559
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2559
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2560
2560
  "name": "AriaAttributes"
2561
2561
  },
2562
2562
  "declarations": [
2563
2563
  {
2564
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2564
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2565
2565
  "name": "AriaAttributes"
2566
2566
  },
2567
2567
  {
2568
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2568
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2569
2569
  "name": "AriaAttributes"
2570
2570
  },
2571
2571
  {
@@ -2583,12 +2583,12 @@
2583
2583
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2584
2584
  "name": "ref",
2585
2585
  "parent": {
2586
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2586
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2587
2587
  "name": "RefAttributes"
2588
2588
  },
2589
2589
  "declarations": [
2590
2590
  {
2591
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2591
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2592
2592
  "name": "RefAttributes"
2593
2593
  }
2594
2594
  ],
@@ -2608,12 +2608,12 @@
2608
2608
  "description": "",
2609
2609
  "name": "className",
2610
2610
  "parent": {
2611
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2611
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2612
2612
  "name": "HTMLAttributes"
2613
2613
  },
2614
2614
  "declarations": [
2615
2615
  {
2616
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2616
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2617
2617
  "name": "HTMLAttributes"
2618
2618
  }
2619
2619
  ],
@@ -2627,12 +2627,12 @@
2627
2627
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2628
2628
  "name": "ref",
2629
2629
  "parent": {
2630
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2630
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2631
2631
  "name": "RefAttributes"
2632
2632
  },
2633
2633
  "declarations": [
2634
2634
  {
2635
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2635
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2636
2636
  "name": "RefAttributes"
2637
2637
  }
2638
2638
  ],
@@ -2652,12 +2652,12 @@
2652
2652
  "description": "",
2653
2653
  "name": "className",
2654
2654
  "parent": {
2655
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2655
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2656
2656
  "name": "HTMLAttributes"
2657
2657
  },
2658
2658
  "declarations": [
2659
2659
  {
2660
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2660
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2661
2661
  "name": "HTMLAttributes"
2662
2662
  }
2663
2663
  ],
@@ -2671,12 +2671,12 @@
2671
2671
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2672
2672
  "name": "ref",
2673
2673
  "parent": {
2674
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2674
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2675
2675
  "name": "RefAttributes"
2676
2676
  },
2677
2677
  "declarations": [
2678
2678
  {
2679
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2679
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2680
2680
  "name": "RefAttributes"
2681
2681
  }
2682
2682
  ],
@@ -2696,12 +2696,12 @@
2696
2696
  "description": "",
2697
2697
  "name": "className",
2698
2698
  "parent": {
2699
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2699
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2700
2700
  "name": "HTMLAttributes"
2701
2701
  },
2702
2702
  "declarations": [
2703
2703
  {
2704
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2704
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2705
2705
  "name": "HTMLAttributes"
2706
2706
  }
2707
2707
  ],
@@ -2715,12 +2715,12 @@
2715
2715
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2716
2716
  "name": "ref",
2717
2717
  "parent": {
2718
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2718
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2719
2719
  "name": "RefAttributes"
2720
2720
  },
2721
2721
  "declarations": [
2722
2722
  {
2723
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2723
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2724
2724
  "name": "RefAttributes"
2725
2725
  }
2726
2726
  ],
@@ -2761,12 +2761,12 @@
2761
2761
  "description": "",
2762
2762
  "name": "className",
2763
2763
  "parent": {
2764
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2764
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2765
2765
  "name": "HTMLAttributes"
2766
2766
  },
2767
2767
  "declarations": [
2768
2768
  {
2769
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2769
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2770
2770
  "name": "HTMLAttributes"
2771
2771
  }
2772
2772
  ],
@@ -2780,12 +2780,12 @@
2780
2780
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2781
2781
  "name": "ref",
2782
2782
  "parent": {
2783
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2783
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2784
2784
  "name": "RefAttributes"
2785
2785
  },
2786
2786
  "declarations": [
2787
2787
  {
2788
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2788
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2789
2789
  "name": "RefAttributes"
2790
2790
  }
2791
2791
  ],
@@ -2881,12 +2881,12 @@
2881
2881
  "description": "",
2882
2882
  "name": "className",
2883
2883
  "parent": {
2884
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2884
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2885
2885
  "name": "HTMLAttributes"
2886
2886
  },
2887
2887
  "declarations": [
2888
2888
  {
2889
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2889
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2890
2890
  "name": "HTMLAttributes"
2891
2891
  }
2892
2892
  ],
@@ -2995,12 +2995,12 @@
2995
2995
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
2996
2996
  "name": "ref",
2997
2997
  "parent": {
2998
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
2998
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
2999
2999
  "name": "RefAttributes"
3000
3000
  },
3001
3001
  "declarations": [
3002
3002
  {
3003
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3003
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3004
3004
  "name": "RefAttributes"
3005
3005
  }
3006
3006
  ],
@@ -3286,12 +3286,12 @@
3286
3286
  "description": "",
3287
3287
  "name": "className",
3288
3288
  "parent": {
3289
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3289
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3290
3290
  "name": "HTMLAttributes"
3291
3291
  },
3292
3292
  "declarations": [
3293
3293
  {
3294
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3294
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3295
3295
  "name": "HTMLAttributes"
3296
3296
  }
3297
3297
  ],
@@ -3305,12 +3305,12 @@
3305
3305
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
3306
3306
  "name": "ref",
3307
3307
  "parent": {
3308
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3308
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3309
3309
  "name": "RefAttributes"
3310
3310
  },
3311
3311
  "declarations": [
3312
3312
  {
3313
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3313
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3314
3314
  "name": "RefAttributes"
3315
3315
  }
3316
3316
  ],
@@ -3503,12 +3503,12 @@
3503
3503
  "description": "",
3504
3504
  "name": "className",
3505
3505
  "parent": {
3506
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3506
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3507
3507
  "name": "HTMLAttributes"
3508
3508
  },
3509
3509
  "declarations": [
3510
3510
  {
3511
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3511
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3512
3512
  "name": "HTMLAttributes"
3513
3513
  }
3514
3514
  ],
@@ -3522,12 +3522,12 @@
3522
3522
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
3523
3523
  "name": "ref",
3524
3524
  "parent": {
3525
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3525
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3526
3526
  "name": "RefAttributes"
3527
3527
  },
3528
3528
  "declarations": [
3529
3529
  {
3530
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3530
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3531
3531
  "name": "RefAttributes"
3532
3532
  }
3533
3533
  ],
@@ -3796,12 +3796,12 @@
3796
3796
  "description": "",
3797
3797
  "name": "className",
3798
3798
  "parent": {
3799
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3799
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3800
3800
  "name": "HTMLAttributes"
3801
3801
  },
3802
3802
  "declarations": [
3803
3803
  {
3804
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3804
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3805
3805
  "name": "HTMLAttributes"
3806
3806
  }
3807
3807
  ],
@@ -3815,12 +3815,12 @@
3815
3815
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
3816
3816
  "name": "ref",
3817
3817
  "parent": {
3818
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3818
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3819
3819
  "name": "RefAttributes"
3820
3820
  },
3821
3821
  "declarations": [
3822
3822
  {
3823
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
3823
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
3824
3824
  "name": "RefAttributes"
3825
3825
  }
3826
3826
  ],
@@ -4144,12 +4144,12 @@
4144
4144
  "description": "",
4145
4145
  "name": "className",
4146
4146
  "parent": {
4147
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4147
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4148
4148
  "name": "HTMLAttributes"
4149
4149
  },
4150
4150
  "declarations": [
4151
4151
  {
4152
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4152
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4153
4153
  "name": "HTMLAttributes"
4154
4154
  }
4155
4155
  ],
@@ -4163,12 +4163,12 @@
4163
4163
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4164
4164
  "name": "ref",
4165
4165
  "parent": {
4166
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4166
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4167
4167
  "name": "RefAttributes"
4168
4168
  },
4169
4169
  "declarations": [
4170
4170
  {
4171
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4171
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4172
4172
  "name": "RefAttributes"
4173
4173
  }
4174
4174
  ],
@@ -4325,12 +4325,12 @@
4325
4325
  "description": "",
4326
4326
  "name": "className",
4327
4327
  "parent": {
4328
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4328
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4329
4329
  "name": "HTMLAttributes"
4330
4330
  },
4331
4331
  "declarations": [
4332
4332
  {
4333
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4333
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4334
4334
  "name": "HTMLAttributes"
4335
4335
  }
4336
4336
  ],
@@ -4344,12 +4344,12 @@
4344
4344
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4345
4345
  "name": "ref",
4346
4346
  "parent": {
4347
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4347
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4348
4348
  "name": "RefAttributes"
4349
4349
  },
4350
4350
  "declarations": [
4351
4351
  {
4352
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4352
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4353
4353
  "name": "RefAttributes"
4354
4354
  }
4355
4355
  ],
@@ -4388,12 +4388,12 @@
4388
4388
  "description": "",
4389
4389
  "name": "className",
4390
4390
  "parent": {
4391
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4391
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4392
4392
  "name": "HTMLAttributes"
4393
4393
  },
4394
4394
  "declarations": [
4395
4395
  {
4396
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4396
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4397
4397
  "name": "HTMLAttributes"
4398
4398
  }
4399
4399
  ],
@@ -4407,12 +4407,12 @@
4407
4407
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4408
4408
  "name": "ref",
4409
4409
  "parent": {
4410
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4410
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4411
4411
  "name": "RefAttributes"
4412
4412
  },
4413
4413
  "declarations": [
4414
4414
  {
4415
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4415
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4416
4416
  "name": "RefAttributes"
4417
4417
  }
4418
4418
  ],
@@ -4491,12 +4491,12 @@
4491
4491
  "description": "",
4492
4492
  "name": "className",
4493
4493
  "parent": {
4494
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4494
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4495
4495
  "name": "HTMLAttributes"
4496
4496
  },
4497
4497
  "declarations": [
4498
4498
  {
4499
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4499
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4500
4500
  "name": "HTMLAttributes"
4501
4501
  }
4502
4502
  ],
@@ -4510,12 +4510,12 @@
4510
4510
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4511
4511
  "name": "ref",
4512
4512
  "parent": {
4513
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4513
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4514
4514
  "name": "RefAttributes"
4515
4515
  },
4516
4516
  "declarations": [
4517
4517
  {
4518
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4518
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4519
4519
  "name": "RefAttributes"
4520
4520
  }
4521
4521
  ],
@@ -4596,12 +4596,12 @@
4596
4596
  "description": "",
4597
4597
  "name": "className",
4598
4598
  "parent": {
4599
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4599
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4600
4600
  "name": "HTMLAttributes"
4601
4601
  },
4602
4602
  "declarations": [
4603
4603
  {
4604
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4604
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4605
4605
  "name": "HTMLAttributes"
4606
4606
  }
4607
4607
  ],
@@ -4636,12 +4636,12 @@
4636
4636
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4637
4637
  "name": "ref",
4638
4638
  "parent": {
4639
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4639
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4640
4640
  "name": "RefAttributes"
4641
4641
  },
4642
4642
  "declarations": [
4643
4643
  {
4644
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4644
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4645
4645
  "name": "RefAttributes"
4646
4646
  }
4647
4647
  ],
@@ -4699,12 +4699,12 @@
4699
4699
  "description": "",
4700
4700
  "name": "className",
4701
4701
  "parent": {
4702
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4702
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4703
4703
  "name": "HTMLAttributes"
4704
4704
  },
4705
4705
  "declarations": [
4706
4706
  {
4707
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4707
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4708
4708
  "name": "HTMLAttributes"
4709
4709
  }
4710
4710
  ],
@@ -4718,12 +4718,12 @@
4718
4718
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4719
4719
  "name": "ref",
4720
4720
  "parent": {
4721
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4721
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4722
4722
  "name": "RefAttributes"
4723
4723
  },
4724
4724
  "declarations": [
4725
4725
  {
4726
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4726
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4727
4727
  "name": "RefAttributes"
4728
4728
  }
4729
4729
  ],
@@ -4762,12 +4762,12 @@
4762
4762
  "description": "",
4763
4763
  "name": "className",
4764
4764
  "parent": {
4765
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4765
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4766
4766
  "name": "HTMLAttributes"
4767
4767
  },
4768
4768
  "declarations": [
4769
4769
  {
4770
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4770
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4771
4771
  "name": "HTMLAttributes"
4772
4772
  }
4773
4773
  ],
@@ -4781,12 +4781,12 @@
4781
4781
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4782
4782
  "name": "ref",
4783
4783
  "parent": {
4784
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4784
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4785
4785
  "name": "RefAttributes"
4786
4786
  },
4787
4787
  "declarations": [
4788
4788
  {
4789
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4789
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4790
4790
  "name": "RefAttributes"
4791
4791
  }
4792
4792
  ],
@@ -4825,12 +4825,12 @@
4825
4825
  "description": "",
4826
4826
  "name": "className",
4827
4827
  "parent": {
4828
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4828
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4829
4829
  "name": "HTMLAttributes"
4830
4830
  },
4831
4831
  "declarations": [
4832
4832
  {
4833
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4833
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4834
4834
  "name": "HTMLAttributes"
4835
4835
  }
4836
4836
  ],
@@ -4844,12 +4844,12 @@
4844
4844
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4845
4845
  "name": "ref",
4846
4846
  "parent": {
4847
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4847
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4848
4848
  "name": "RefAttributes"
4849
4849
  },
4850
4850
  "declarations": [
4851
4851
  {
4852
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4852
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4853
4853
  "name": "RefAttributes"
4854
4854
  }
4855
4855
  ],
@@ -4907,12 +4907,12 @@
4907
4907
  "description": "",
4908
4908
  "name": "className",
4909
4909
  "parent": {
4910
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4910
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4911
4911
  "name": "HTMLAttributes"
4912
4912
  },
4913
4913
  "declarations": [
4914
4914
  {
4915
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4915
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4916
4916
  "name": "HTMLAttributes"
4917
4917
  }
4918
4918
  ],
@@ -4926,12 +4926,12 @@
4926
4926
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
4927
4927
  "name": "ref",
4928
4928
  "parent": {
4929
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4929
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4930
4930
  "name": "RefAttributes"
4931
4931
  },
4932
4932
  "declarations": [
4933
4933
  {
4934
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4934
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4935
4935
  "name": "RefAttributes"
4936
4936
  }
4937
4937
  ],
@@ -4989,12 +4989,12 @@
4989
4989
  "description": "",
4990
4990
  "name": "className",
4991
4991
  "parent": {
4992
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4992
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4993
4993
  "name": "HTMLAttributes"
4994
4994
  },
4995
4995
  "declarations": [
4996
4996
  {
4997
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
4997
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
4998
4998
  "name": "HTMLAttributes"
4999
4999
  }
5000
5000
  ],
@@ -5008,12 +5008,12 @@
5008
5008
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5009
5009
  "name": "ref",
5010
5010
  "parent": {
5011
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5011
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5012
5012
  "name": "RefAttributes"
5013
5013
  },
5014
5014
  "declarations": [
5015
5015
  {
5016
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5016
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5017
5017
  "name": "RefAttributes"
5018
5018
  }
5019
5019
  ],
@@ -5115,12 +5115,12 @@
5115
5115
  "description": "",
5116
5116
  "name": "className",
5117
5117
  "parent": {
5118
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5118
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5119
5119
  "name": "HTMLAttributes"
5120
5120
  },
5121
5121
  "declarations": [
5122
5122
  {
5123
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5123
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5124
5124
  "name": "HTMLAttributes"
5125
5125
  }
5126
5126
  ],
@@ -5134,12 +5134,12 @@
5134
5134
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5135
5135
  "name": "ref",
5136
5136
  "parent": {
5137
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5137
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5138
5138
  "name": "RefAttributes"
5139
5139
  },
5140
5140
  "declarations": [
5141
5141
  {
5142
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5142
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5143
5143
  "name": "RefAttributes"
5144
5144
  }
5145
5145
  ],
@@ -5199,12 +5199,12 @@
5199
5199
  "description": "",
5200
5200
  "name": "className",
5201
5201
  "parent": {
5202
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5202
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5203
5203
  "name": "HTMLAttributes"
5204
5204
  },
5205
5205
  "declarations": [
5206
5206
  {
5207
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5207
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5208
5208
  "name": "HTMLAttributes"
5209
5209
  }
5210
5210
  ],
@@ -5218,12 +5218,12 @@
5218
5218
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5219
5219
  "name": "ref",
5220
5220
  "parent": {
5221
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5221
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5222
5222
  "name": "RefAttributes"
5223
5223
  },
5224
5224
  "declarations": [
5225
5225
  {
5226
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5226
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5227
5227
  "name": "RefAttributes"
5228
5228
  }
5229
5229
  ],
@@ -5243,12 +5243,12 @@
5243
5243
  "description": "",
5244
5244
  "name": "className",
5245
5245
  "parent": {
5246
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5246
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5247
5247
  "name": "HTMLAttributes"
5248
5248
  },
5249
5249
  "declarations": [
5250
5250
  {
5251
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5251
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5252
5252
  "name": "HTMLAttributes"
5253
5253
  }
5254
5254
  ],
@@ -5262,12 +5262,12 @@
5262
5262
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5263
5263
  "name": "ref",
5264
5264
  "parent": {
5265
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5265
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5266
5266
  "name": "RefAttributes"
5267
5267
  },
5268
5268
  "declarations": [
5269
5269
  {
5270
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5270
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5271
5271
  "name": "RefAttributes"
5272
5272
  }
5273
5273
  ],
@@ -5287,12 +5287,12 @@
5287
5287
  "description": "",
5288
5288
  "name": "className",
5289
5289
  "parent": {
5290
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5290
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5291
5291
  "name": "HTMLAttributes"
5292
5292
  },
5293
5293
  "declarations": [
5294
5294
  {
5295
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5295
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5296
5296
  "name": "HTMLAttributes"
5297
5297
  }
5298
5298
  ],
@@ -5306,12 +5306,12 @@
5306
5306
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5307
5307
  "name": "ref",
5308
5308
  "parent": {
5309
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5309
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5310
5310
  "name": "RefAttributes"
5311
5311
  },
5312
5312
  "declarations": [
5313
5313
  {
5314
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5314
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5315
5315
  "name": "RefAttributes"
5316
5316
  }
5317
5317
  ],
@@ -5432,12 +5432,12 @@
5432
5432
  "description": "",
5433
5433
  "name": "className",
5434
5434
  "parent": {
5435
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5435
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5436
5436
  "name": "HTMLAttributes"
5437
5437
  },
5438
5438
  "declarations": [
5439
5439
  {
5440
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5440
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5441
5441
  "name": "HTMLAttributes"
5442
5442
  }
5443
5443
  ],
@@ -5514,12 +5514,12 @@
5514
5514
  "description": "",
5515
5515
  "name": "className",
5516
5516
  "parent": {
5517
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5517
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5518
5518
  "name": "HTMLAttributes"
5519
5519
  },
5520
5520
  "declarations": [
5521
5521
  {
5522
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5522
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5523
5523
  "name": "HTMLAttributes"
5524
5524
  }
5525
5525
  ],
@@ -5533,12 +5533,12 @@
5533
5533
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5534
5534
  "name": "ref",
5535
5535
  "parent": {
5536
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5536
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5537
5537
  "name": "RefAttributes"
5538
5538
  },
5539
5539
  "declarations": [
5540
5540
  {
5541
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5541
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5542
5542
  "name": "RefAttributes"
5543
5543
  }
5544
5544
  ],
@@ -5642,12 +5642,12 @@
5642
5642
  "description": "",
5643
5643
  "name": "className",
5644
5644
  "parent": {
5645
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5645
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5646
5646
  "name": "SVGAttributes"
5647
5647
  },
5648
5648
  "declarations": [
5649
5649
  {
5650
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5650
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5651
5651
  "name": "SVGAttributes"
5652
5652
  }
5653
5653
  ],
@@ -5661,16 +5661,16 @@
5661
5661
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5662
5662
  "name": "ref",
5663
5663
  "parent": {
5664
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5664
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5665
5665
  "name": "ClassAttributes"
5666
5666
  },
5667
5667
  "declarations": [
5668
5668
  {
5669
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5669
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5670
5670
  "name": "ClassAttributes"
5671
5671
  },
5672
5672
  {
5673
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5673
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5674
5674
  "name": "RefAttributes"
5675
5675
  }
5676
5676
  ],
@@ -5882,12 +5882,12 @@
5882
5882
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5883
5883
  "name": "ref",
5884
5884
  "parent": {
5885
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5885
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5886
5886
  "name": "RefAttributes"
5887
5887
  },
5888
5888
  "declarations": [
5889
5889
  {
5890
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5890
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5891
5891
  "name": "RefAttributes"
5892
5892
  }
5893
5893
  ],
@@ -5907,12 +5907,12 @@
5907
5907
  "description": "",
5908
5908
  "name": "className",
5909
5909
  "parent": {
5910
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5910
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5911
5911
  "name": "HTMLAttributes"
5912
5912
  },
5913
5913
  "declarations": [
5914
5914
  {
5915
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5915
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5916
5916
  "name": "HTMLAttributes"
5917
5917
  }
5918
5918
  ],
@@ -5926,12 +5926,12 @@
5926
5926
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5927
5927
  "name": "ref",
5928
5928
  "parent": {
5929
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5929
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5930
5930
  "name": "RefAttributes"
5931
5931
  },
5932
5932
  "declarations": [
5933
5933
  {
5934
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5934
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5935
5935
  "name": "RefAttributes"
5936
5936
  }
5937
5937
  ],
@@ -5951,12 +5951,12 @@
5951
5951
  "description": "",
5952
5952
  "name": "className",
5953
5953
  "parent": {
5954
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5954
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5955
5955
  "name": "HTMLAttributes"
5956
5956
  },
5957
5957
  "declarations": [
5958
5958
  {
5959
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5959
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5960
5960
  "name": "HTMLAttributes"
5961
5961
  }
5962
5962
  ],
@@ -5970,12 +5970,12 @@
5970
5970
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
5971
5971
  "name": "ref",
5972
5972
  "parent": {
5973
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5973
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5974
5974
  "name": "RefAttributes"
5975
5975
  },
5976
5976
  "declarations": [
5977
5977
  {
5978
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
5978
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
5979
5979
  "name": "RefAttributes"
5980
5980
  }
5981
5981
  ],
@@ -6016,12 +6016,12 @@
6016
6016
  "description": "",
6017
6017
  "name": "className",
6018
6018
  "parent": {
6019
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6019
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6020
6020
  "name": "HTMLAttributes"
6021
6021
  },
6022
6022
  "declarations": [
6023
6023
  {
6024
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6024
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6025
6025
  "name": "HTMLAttributes"
6026
6026
  }
6027
6027
  ],
@@ -6035,12 +6035,12 @@
6035
6035
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
6036
6036
  "name": "ref",
6037
6037
  "parent": {
6038
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6038
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6039
6039
  "name": "RefAttributes"
6040
6040
  },
6041
6041
  "declarations": [
6042
6042
  {
6043
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6043
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6044
6044
  "name": "RefAttributes"
6045
6045
  }
6046
6046
  ],
@@ -6260,7 +6260,7 @@
6260
6260
  ],
6261
6261
  "required": false,
6262
6262
  "type": {
6263
- "name": "((item: PaginationItemProps) => ReactElement<any, any> | null)"
6263
+ "name": "((item: PaginationItemProps) => ReactNode)"
6264
6264
  }
6265
6265
  },
6266
6266
  "className": {
@@ -6268,12 +6268,12 @@
6268
6268
  "description": "",
6269
6269
  "name": "className",
6270
6270
  "parent": {
6271
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6271
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6272
6272
  "name": "HTMLAttributes"
6273
6273
  },
6274
6274
  "declarations": [
6275
6275
  {
6276
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6276
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6277
6277
  "name": "HTMLAttributes"
6278
6278
  }
6279
6279
  ],
@@ -6287,12 +6287,12 @@
6287
6287
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
6288
6288
  "name": "ref",
6289
6289
  "parent": {
6290
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6290
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6291
6291
  "name": "RefAttributes"
6292
6292
  },
6293
6293
  "declarations": [
6294
6294
  {
6295
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6295
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6296
6296
  "name": "RefAttributes"
6297
6297
  }
6298
6298
  ],
@@ -6493,12 +6493,12 @@
6493
6493
  "description": "",
6494
6494
  "name": "className",
6495
6495
  "parent": {
6496
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6496
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6497
6497
  "name": "HTMLAttributes"
6498
6498
  },
6499
6499
  "declarations": [
6500
6500
  {
6501
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6501
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6502
6502
  "name": "HTMLAttributes"
6503
6503
  }
6504
6504
  ],
@@ -6512,12 +6512,12 @@
6512
6512
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
6513
6513
  "name": "ref",
6514
6514
  "parent": {
6515
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6515
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6516
6516
  "name": "RefAttributes"
6517
6517
  },
6518
6518
  "declarations": [
6519
6519
  {
6520
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6520
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6521
6521
  "name": "RefAttributes"
6522
6522
  }
6523
6523
  ],
@@ -6577,12 +6577,12 @@
6577
6577
  "description": "",
6578
6578
  "name": "className",
6579
6579
  "parent": {
6580
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6580
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6581
6581
  "name": "HTMLAttributes"
6582
6582
  },
6583
6583
  "declarations": [
6584
6584
  {
6585
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6585
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6586
6586
  "name": "HTMLAttributes"
6587
6587
  }
6588
6588
  ],
@@ -6596,12 +6596,12 @@
6596
6596
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
6597
6597
  "name": "ref",
6598
6598
  "parent": {
6599
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6599
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6600
6600
  "name": "RefAttributes"
6601
6601
  },
6602
6602
  "declarations": [
6603
6603
  {
6604
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6604
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6605
6605
  "name": "RefAttributes"
6606
6606
  }
6607
6607
  ],
@@ -6802,12 +6802,12 @@
6802
6802
  "description": "",
6803
6803
  "name": "className",
6804
6804
  "parent": {
6805
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6805
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6806
6806
  "name": "HTMLAttributes"
6807
6807
  },
6808
6808
  "declarations": [
6809
6809
  {
6810
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6810
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6811
6811
  "name": "HTMLAttributes"
6812
6812
  }
6813
6813
  ],
@@ -6821,12 +6821,12 @@
6821
6821
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
6822
6822
  "name": "ref",
6823
6823
  "parent": {
6824
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6824
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6825
6825
  "name": "RefAttributes"
6826
6826
  },
6827
6827
  "declarations": [
6828
6828
  {
6829
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6829
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6830
6830
  "name": "RefAttributes"
6831
6831
  }
6832
6832
  ],
@@ -6846,12 +6846,12 @@
6846
6846
  "description": "",
6847
6847
  "name": "className",
6848
6848
  "parent": {
6849
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6849
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6850
6850
  "name": "HTMLAttributes"
6851
6851
  },
6852
6852
  "declarations": [
6853
6853
  {
6854
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6854
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6855
6855
  "name": "HTMLAttributes"
6856
6856
  }
6857
6857
  ],
@@ -6865,12 +6865,12 @@
6865
6865
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
6866
6866
  "name": "ref",
6867
6867
  "parent": {
6868
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6868
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6869
6869
  "name": "RefAttributes"
6870
6870
  },
6871
6871
  "declarations": [
6872
6872
  {
6873
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
6873
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
6874
6874
  "name": "RefAttributes"
6875
6875
  }
6876
6876
  ],
@@ -7014,12 +7014,12 @@
7014
7014
  "description": "",
7015
7015
  "name": "className",
7016
7016
  "parent": {
7017
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7017
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7018
7018
  "name": "HTMLAttributes"
7019
7019
  },
7020
7020
  "declarations": [
7021
7021
  {
7022
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7022
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7023
7023
  "name": "HTMLAttributes"
7024
7024
  }
7025
7025
  ],
@@ -7033,12 +7033,12 @@
7033
7033
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7034
7034
  "name": "ref",
7035
7035
  "parent": {
7036
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7036
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7037
7037
  "name": "RefAttributes"
7038
7038
  },
7039
7039
  "declarations": [
7040
7040
  {
7041
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7041
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7042
7042
  "name": "RefAttributes"
7043
7043
  }
7044
7044
  ],
@@ -7112,17 +7112,38 @@
7112
7112
  "name": "string | number"
7113
7113
  }
7114
7114
  },
7115
+ "as": {
7116
+ "defaultValue": {
7117
+ "value": "\"div\""
7118
+ },
7119
+ "description": "Overrides html-tag",
7120
+ "name": "as",
7121
+ "parent": {
7122
+ "fileName": "src/skeleton/Skeleton.tsx",
7123
+ "name": "SkeletonProps"
7124
+ },
7125
+ "declarations": [
7126
+ {
7127
+ "fileName": "src/skeleton/Skeleton.tsx",
7128
+ "name": "SkeletonProps"
7129
+ }
7130
+ ],
7131
+ "required": false,
7132
+ "type": {
7133
+ "name": "\"div\" | \"span\""
7134
+ }
7135
+ },
7115
7136
  "className": {
7116
7137
  "defaultValue": null,
7117
7138
  "description": "",
7118
7139
  "name": "className",
7119
7140
  "parent": {
7120
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7141
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7121
7142
  "name": "HTMLAttributes"
7122
7143
  },
7123
7144
  "declarations": [
7124
7145
  {
7125
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7146
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7126
7147
  "name": "HTMLAttributes"
7127
7148
  }
7128
7149
  ],
@@ -7136,12 +7157,12 @@
7136
7157
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7137
7158
  "name": "ref",
7138
7159
  "parent": {
7139
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7160
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7140
7161
  "name": "RefAttributes"
7141
7162
  },
7142
7163
  "declarations": [
7143
7164
  {
7144
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7165
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7145
7166
  "name": "RefAttributes"
7146
7167
  }
7147
7168
  ],
@@ -7243,12 +7264,12 @@
7243
7264
  "description": "",
7244
7265
  "name": "className",
7245
7266
  "parent": {
7246
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7267
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7247
7268
  "name": "HTMLAttributes"
7248
7269
  },
7249
7270
  "declarations": [
7250
7271
  {
7251
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7272
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7252
7273
  "name": "HTMLAttributes"
7253
7274
  }
7254
7275
  ],
@@ -7262,12 +7283,12 @@
7262
7283
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7263
7284
  "name": "ref",
7264
7285
  "parent": {
7265
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7286
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7266
7287
  "name": "RefAttributes"
7267
7288
  },
7268
7289
  "declarations": [
7269
7290
  {
7270
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7291
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7271
7292
  "name": "RefAttributes"
7272
7293
  }
7273
7294
  ],
@@ -7386,12 +7407,12 @@
7386
7407
  "description": "",
7387
7408
  "name": "className",
7388
7409
  "parent": {
7389
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7410
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7390
7411
  "name": "HTMLAttributes"
7391
7412
  },
7392
7413
  "declarations": [
7393
7414
  {
7394
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7415
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7395
7416
  "name": "HTMLAttributes"
7396
7417
  }
7397
7418
  ],
@@ -7405,12 +7426,12 @@
7405
7426
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7406
7427
  "name": "ref",
7407
7428
  "parent": {
7408
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7429
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7409
7430
  "name": "RefAttributes"
7410
7431
  },
7411
7432
  "declarations": [
7412
7433
  {
7413
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7434
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7414
7435
  "name": "RefAttributes"
7415
7436
  }
7416
7437
  ],
@@ -7430,12 +7451,12 @@
7430
7451
  "description": "",
7431
7452
  "name": "className",
7432
7453
  "parent": {
7433
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7454
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7434
7455
  "name": "HTMLAttributes"
7435
7456
  },
7436
7457
  "declarations": [
7437
7458
  {
7438
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7459
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7439
7460
  "name": "HTMLAttributes"
7440
7461
  }
7441
7462
  ],
@@ -7449,12 +7470,12 @@
7449
7470
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7450
7471
  "name": "ref",
7451
7472
  "parent": {
7452
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7473
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7453
7474
  "name": "RefAttributes"
7454
7475
  },
7455
7476
  "declarations": [
7456
7477
  {
7457
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7478
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7458
7479
  "name": "RefAttributes"
7459
7480
  }
7460
7481
  ],
@@ -7554,12 +7575,12 @@
7554
7575
  "description": "",
7555
7576
  "name": "className",
7556
7577
  "parent": {
7557
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7578
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7558
7579
  "name": "HTMLAttributes"
7559
7580
  },
7560
7581
  "declarations": [
7561
7582
  {
7562
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7583
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7563
7584
  "name": "HTMLAttributes"
7564
7585
  }
7565
7586
  ],
@@ -7573,12 +7594,12 @@
7573
7594
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7574
7595
  "name": "ref",
7575
7596
  "parent": {
7576
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7597
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7577
7598
  "name": "RefAttributes"
7578
7599
  },
7579
7600
  "declarations": [
7580
7601
  {
7581
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7602
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7582
7603
  "name": "RefAttributes"
7583
7604
  }
7584
7605
  ],
@@ -7619,12 +7640,12 @@
7619
7640
  "description": "",
7620
7641
  "name": "className",
7621
7642
  "parent": {
7622
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7643
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7623
7644
  "name": "HTMLAttributes"
7624
7645
  },
7625
7646
  "declarations": [
7626
7647
  {
7627
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7648
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7628
7649
  "name": "HTMLAttributes"
7629
7650
  }
7630
7651
  ],
@@ -7638,12 +7659,12 @@
7638
7659
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7639
7660
  "name": "ref",
7640
7661
  "parent": {
7641
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7662
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7642
7663
  "name": "RefAttributes"
7643
7664
  },
7644
7665
  "declarations": [
7645
7666
  {
7646
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7667
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7647
7668
  "name": "RefAttributes"
7648
7669
  }
7649
7670
  ],
@@ -7867,12 +7888,12 @@
7867
7888
  "description": "",
7868
7889
  "name": "className",
7869
7890
  "parent": {
7870
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7891
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7871
7892
  "name": "HTMLAttributes"
7872
7893
  },
7873
7894
  "declarations": [
7874
7895
  {
7875
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7896
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7876
7897
  "name": "HTMLAttributes"
7877
7898
  }
7878
7899
  ],
@@ -7886,12 +7907,12 @@
7886
7907
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7887
7908
  "name": "ref",
7888
7909
  "parent": {
7889
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7910
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7890
7911
  "name": "RefAttributes"
7891
7912
  },
7892
7913
  "declarations": [
7893
7914
  {
7894
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7915
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7895
7916
  "name": "RefAttributes"
7896
7917
  }
7897
7918
  ],
@@ -7911,12 +7932,12 @@
7911
7932
  "description": "",
7912
7933
  "name": "className",
7913
7934
  "parent": {
7914
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7935
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7915
7936
  "name": "HTMLAttributes"
7916
7937
  },
7917
7938
  "declarations": [
7918
7939
  {
7919
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7940
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7920
7941
  "name": "HTMLAttributes"
7921
7942
  }
7922
7943
  ],
@@ -7930,12 +7951,12 @@
7930
7951
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
7931
7952
  "name": "ref",
7932
7953
  "parent": {
7933
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7954
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7934
7955
  "name": "RefAttributes"
7935
7956
  },
7936
7957
  "declarations": [
7937
7958
  {
7938
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
7959
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7939
7960
  "name": "RefAttributes"
7940
7961
  }
7941
7962
  ],
@@ -7995,12 +8016,12 @@
7995
8016
  "description": "",
7996
8017
  "name": "className",
7997
8018
  "parent": {
7998
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8019
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
7999
8020
  "name": "HTMLAttributes"
8000
8021
  },
8001
8022
  "declarations": [
8002
8023
  {
8003
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8024
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8004
8025
  "name": "HTMLAttributes"
8005
8026
  }
8006
8027
  ],
@@ -8014,12 +8035,12 @@
8014
8035
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8015
8036
  "name": "ref",
8016
8037
  "parent": {
8017
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8038
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8018
8039
  "name": "RefAttributes"
8019
8040
  },
8020
8041
  "declarations": [
8021
8042
  {
8022
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8043
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8023
8044
  "name": "RefAttributes"
8024
8045
  }
8025
8046
  ],
@@ -8081,12 +8102,12 @@
8081
8102
  "description": "",
8082
8103
  "name": "className",
8083
8104
  "parent": {
8084
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8105
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8085
8106
  "name": "HTMLAttributes"
8086
8107
  },
8087
8108
  "declarations": [
8088
8109
  {
8089
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8110
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8090
8111
  "name": "HTMLAttributes"
8091
8112
  }
8092
8113
  ],
@@ -8100,12 +8121,12 @@
8100
8121
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8101
8122
  "name": "ref",
8102
8123
  "parent": {
8103
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8124
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8104
8125
  "name": "RefAttributes"
8105
8126
  },
8106
8127
  "declarations": [
8107
8128
  {
8108
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8129
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8109
8130
  "name": "RefAttributes"
8110
8131
  }
8111
8132
  ],
@@ -8205,12 +8226,12 @@
8205
8226
  "description": "",
8206
8227
  "name": "className",
8207
8228
  "parent": {
8208
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8229
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8209
8230
  "name": "HTMLAttributes"
8210
8231
  },
8211
8232
  "declarations": [
8212
8233
  {
8213
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8234
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8214
8235
  "name": "HTMLAttributes"
8215
8236
  }
8216
8237
  ],
@@ -8224,12 +8245,12 @@
8224
8245
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8225
8246
  "name": "ref",
8226
8247
  "parent": {
8227
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8248
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8228
8249
  "name": "RefAttributes"
8229
8250
  },
8230
8251
  "declarations": [
8231
8252
  {
8232
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8253
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8233
8254
  "name": "RefAttributes"
8234
8255
  }
8235
8256
  ],
@@ -8306,12 +8327,12 @@
8306
8327
  "description": "",
8307
8328
  "name": "className",
8308
8329
  "parent": {
8309
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8330
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8310
8331
  "name": "HTMLAttributes"
8311
8332
  },
8312
8333
  "declarations": [
8313
8334
  {
8314
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8335
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8315
8336
  "name": "HTMLAttributes"
8316
8337
  }
8317
8338
  ],
@@ -8325,12 +8346,12 @@
8325
8346
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8326
8347
  "name": "ref",
8327
8348
  "parent": {
8328
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8349
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8329
8350
  "name": "RefAttributes"
8330
8351
  },
8331
8352
  "declarations": [
8332
8353
  {
8333
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8354
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8334
8355
  "name": "RefAttributes"
8335
8356
  }
8336
8357
  ],
@@ -8369,12 +8390,12 @@
8369
8390
  "description": "",
8370
8391
  "name": "className",
8371
8392
  "parent": {
8372
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8393
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8373
8394
  "name": "HTMLAttributes"
8374
8395
  },
8375
8396
  "declarations": [
8376
8397
  {
8377
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8398
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8378
8399
  "name": "HTMLAttributes"
8379
8400
  }
8380
8401
  ],
@@ -8388,12 +8409,12 @@
8388
8409
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8389
8410
  "name": "ref",
8390
8411
  "parent": {
8391
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8412
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8392
8413
  "name": "RefAttributes"
8393
8414
  },
8394
8415
  "declarations": [
8395
8416
  {
8396
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8417
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8397
8418
  "name": "RefAttributes"
8398
8419
  }
8399
8420
  ],
@@ -8451,12 +8472,12 @@
8451
8472
  "description": "",
8452
8473
  "name": "className",
8453
8474
  "parent": {
8454
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8475
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8455
8476
  "name": "HTMLAttributes"
8456
8477
  },
8457
8478
  "declarations": [
8458
8479
  {
8459
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8480
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8460
8481
  "name": "HTMLAttributes"
8461
8482
  }
8462
8483
  ],
@@ -8470,12 +8491,12 @@
8470
8491
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8471
8492
  "name": "ref",
8472
8493
  "parent": {
8473
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8494
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8474
8495
  "name": "RefAttributes"
8475
8496
  },
8476
8497
  "declarations": [
8477
8498
  {
8478
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8499
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8479
8500
  "name": "RefAttributes"
8480
8501
  }
8481
8502
  ],
@@ -8636,12 +8657,12 @@
8636
8657
  "description": "",
8637
8658
  "name": "className",
8638
8659
  "parent": {
8639
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8660
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8640
8661
  "name": "HTMLAttributes"
8641
8662
  },
8642
8663
  "declarations": [
8643
8664
  {
8644
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8665
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8645
8666
  "name": "HTMLAttributes"
8646
8667
  }
8647
8668
  ],
@@ -8655,12 +8676,12 @@
8655
8676
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8656
8677
  "name": "ref",
8657
8678
  "parent": {
8658
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8679
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8659
8680
  "name": "RefAttributes"
8660
8681
  },
8661
8682
  "declarations": [
8662
8683
  {
8663
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8684
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8664
8685
  "name": "RefAttributes"
8665
8686
  }
8666
8687
  ],
@@ -8720,12 +8741,12 @@
8720
8741
  "description": "",
8721
8742
  "name": "className",
8722
8743
  "parent": {
8723
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8744
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8724
8745
  "name": "HTMLAttributes"
8725
8746
  },
8726
8747
  "declarations": [
8727
8748
  {
8728
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8749
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8729
8750
  "name": "HTMLAttributes"
8730
8751
  }
8731
8752
  ],
@@ -8739,12 +8760,12 @@
8739
8760
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8740
8761
  "name": "ref",
8741
8762
  "parent": {
8742
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8763
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8743
8764
  "name": "RefAttributes"
8744
8765
  },
8745
8766
  "declarations": [
8746
8767
  {
8747
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8768
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8748
8769
  "name": "RefAttributes"
8749
8770
  }
8750
8771
  ],
@@ -8823,12 +8844,12 @@
8823
8844
  "description": "",
8824
8845
  "name": "className",
8825
8846
  "parent": {
8826
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8847
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8827
8848
  "name": "HTMLAttributes"
8828
8849
  },
8829
8850
  "declarations": [
8830
8851
  {
8831
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8852
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8832
8853
  "name": "HTMLAttributes"
8833
8854
  }
8834
8855
  ],
@@ -8842,12 +8863,12 @@
8842
8863
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
8843
8864
  "name": "ref",
8844
8865
  "parent": {
8845
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8866
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8846
8867
  "name": "RefAttributes"
8847
8868
  },
8848
8869
  "declarations": [
8849
8870
  {
8850
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8871
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8851
8872
  "name": "RefAttributes"
8852
8873
  }
8853
8874
  ],
@@ -8945,12 +8966,12 @@
8945
8966
  "description": "",
8946
8967
  "name": "className",
8947
8968
  "parent": {
8948
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8969
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8949
8970
  "name": "HTMLAttributes"
8950
8971
  },
8951
8972
  "declarations": [
8952
8973
  {
8953
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
8974
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
8954
8975
  "name": "HTMLAttributes"
8955
8976
  }
8956
8977
  ],
@@ -9029,12 +9050,12 @@
9029
9050
  "description": "",
9030
9051
  "name": "className",
9031
9052
  "parent": {
9032
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9053
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9033
9054
  "name": "HTMLAttributes"
9034
9055
  },
9035
9056
  "declarations": [
9036
9057
  {
9037
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9058
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9038
9059
  "name": "HTMLAttributes"
9039
9060
  }
9040
9061
  ],
@@ -9048,12 +9069,12 @@
9048
9069
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
9049
9070
  "name": "ref",
9050
9071
  "parent": {
9051
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9072
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9052
9073
  "name": "RefAttributes"
9053
9074
  },
9054
9075
  "declarations": [
9055
9076
  {
9056
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9077
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9057
9078
  "name": "RefAttributes"
9058
9079
  }
9059
9080
  ],
@@ -9210,12 +9231,12 @@
9210
9231
  "description": "",
9211
9232
  "name": "className",
9212
9233
  "parent": {
9213
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9234
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9214
9235
  "name": "HTMLAttributes"
9215
9236
  },
9216
9237
  "declarations": [
9217
9238
  {
9218
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9239
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9219
9240
  "name": "HTMLAttributes"
9220
9241
  }
9221
9242
  ],
@@ -9229,12 +9250,12 @@
9229
9250
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
9230
9251
  "name": "ref",
9231
9252
  "parent": {
9232
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9253
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9233
9254
  "name": "RefAttributes"
9234
9255
  },
9235
9256
  "declarations": [
9236
9257
  {
9237
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9258
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9238
9259
  "name": "RefAttributes"
9239
9260
  }
9240
9261
  ],
@@ -9292,12 +9313,12 @@
9292
9313
  "description": "",
9293
9314
  "name": "className",
9294
9315
  "parent": {
9295
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9316
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9296
9317
  "name": "HTMLAttributes"
9297
9318
  },
9298
9319
  "declarations": [
9299
9320
  {
9300
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9321
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9301
9322
  "name": "HTMLAttributes"
9302
9323
  }
9303
9324
  ],
@@ -9311,12 +9332,12 @@
9311
9332
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
9312
9333
  "name": "ref",
9313
9334
  "parent": {
9314
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9335
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9315
9336
  "name": "RefAttributes"
9316
9337
  },
9317
9338
  "declarations": [
9318
9339
  {
9319
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9340
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9320
9341
  "name": "RefAttributes"
9321
9342
  }
9322
9343
  ],
@@ -9538,12 +9559,12 @@
9538
9559
  "description": "",
9539
9560
  "name": "className",
9540
9561
  "parent": {
9541
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9562
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9542
9563
  "name": "HTMLAttributes"
9543
9564
  },
9544
9565
  "declarations": [
9545
9566
  {
9546
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9567
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9547
9568
  "name": "HTMLAttributes"
9548
9569
  }
9549
9570
  ],
@@ -9557,12 +9578,12 @@
9557
9578
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
9558
9579
  "name": "ref",
9559
9580
  "parent": {
9560
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9581
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9561
9582
  "name": "RefAttributes"
9562
9583
  },
9563
9584
  "declarations": [
9564
9585
  {
9565
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9586
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9566
9587
  "name": "RefAttributes"
9567
9588
  }
9568
9589
  ],
@@ -9714,12 +9735,12 @@
9714
9735
  "description": "",
9715
9736
  "name": "className",
9716
9737
  "parent": {
9717
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9738
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9718
9739
  "name": "HTMLAttributes"
9719
9740
  },
9720
9741
  "declarations": [
9721
9742
  {
9722
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9743
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9723
9744
  "name": "HTMLAttributes"
9724
9745
  }
9725
9746
  ],
@@ -9733,12 +9754,12 @@
9733
9754
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
9734
9755
  "name": "ref",
9735
9756
  "parent": {
9736
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9757
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9737
9758
  "name": "RefAttributes"
9738
9759
  },
9739
9760
  "declarations": [
9740
9761
  {
9741
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9762
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9742
9763
  "name": "RefAttributes"
9743
9764
  }
9744
9765
  ],
@@ -9890,12 +9911,12 @@
9890
9911
  "description": "",
9891
9912
  "name": "className",
9892
9913
  "parent": {
9893
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9914
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9894
9915
  "name": "HTMLAttributes"
9895
9916
  },
9896
9917
  "declarations": [
9897
9918
  {
9898
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9919
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9899
9920
  "name": "HTMLAttributes"
9900
9921
  }
9901
9922
  ],
@@ -9909,12 +9930,12 @@
9909
9930
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
9910
9931
  "name": "ref",
9911
9932
  "parent": {
9912
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9933
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9913
9934
  "name": "RefAttributes"
9914
9935
  },
9915
9936
  "declarations": [
9916
9937
  {
9917
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
9938
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
9918
9939
  "name": "RefAttributes"
9919
9940
  }
9920
9941
  ],
@@ -10085,12 +10106,12 @@
10085
10106
  "description": "",
10086
10107
  "name": "className",
10087
10108
  "parent": {
10088
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10109
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10089
10110
  "name": "HTMLAttributes"
10090
10111
  },
10091
10112
  "declarations": [
10092
10113
  {
10093
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10114
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10094
10115
  "name": "HTMLAttributes"
10095
10116
  }
10096
10117
  ],
@@ -10104,12 +10125,12 @@
10104
10125
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
10105
10126
  "name": "ref",
10106
10127
  "parent": {
10107
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10128
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10108
10129
  "name": "RefAttributes"
10109
10130
  },
10110
10131
  "declarations": [
10111
10132
  {
10112
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10133
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10113
10134
  "name": "RefAttributes"
10114
10135
  }
10115
10136
  ],
@@ -10184,12 +10205,12 @@
10184
10205
  "description": "",
10185
10206
  "name": "className",
10186
10207
  "parent": {
10187
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10208
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10188
10209
  "name": "HTMLAttributes"
10189
10210
  },
10190
10211
  "declarations": [
10191
10212
  {
10192
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10213
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10193
10214
  "name": "HTMLAttributes"
10194
10215
  }
10195
10216
  ],
@@ -10203,12 +10224,12 @@
10203
10224
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
10204
10225
  "name": "ref",
10205
10226
  "parent": {
10206
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10227
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10207
10228
  "name": "RefAttributes"
10208
10229
  },
10209
10230
  "declarations": [
10210
10231
  {
10211
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10232
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10212
10233
  "name": "RefAttributes"
10213
10234
  }
10214
10235
  ],
@@ -10347,12 +10368,12 @@
10347
10368
  "description": "",
10348
10369
  "name": "className",
10349
10370
  "parent": {
10350
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10371
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10351
10372
  "name": "HTMLAttributes"
10352
10373
  },
10353
10374
  "declarations": [
10354
10375
  {
10355
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10376
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10356
10377
  "name": "HTMLAttributes"
10357
10378
  }
10358
10379
  ],
@@ -10366,12 +10387,12 @@
10366
10387
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
10367
10388
  "name": "ref",
10368
10389
  "parent": {
10369
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10390
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10370
10391
  "name": "RefAttributes"
10371
10392
  },
10372
10393
  "declarations": [
10373
10394
  {
10374
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10395
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10375
10396
  "name": "RefAttributes"
10376
10397
  }
10377
10398
  ],
@@ -10429,12 +10450,12 @@
10429
10450
  "description": "",
10430
10451
  "name": "className",
10431
10452
  "parent": {
10432
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10453
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10433
10454
  "name": "HTMLAttributes"
10434
10455
  },
10435
10456
  "declarations": [
10436
10457
  {
10437
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10458
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10438
10459
  "name": "HTMLAttributes"
10439
10460
  }
10440
10461
  ],
@@ -10448,12 +10469,12 @@
10448
10469
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
10449
10470
  "name": "ref",
10450
10471
  "parent": {
10451
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10472
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10452
10473
  "name": "RefAttributes"
10453
10474
  },
10454
10475
  "declarations": [
10455
10476
  {
10456
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10477
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10457
10478
  "name": "RefAttributes"
10458
10479
  }
10459
10480
  ],
@@ -10558,12 +10579,12 @@
10558
10579
  "description": "",
10559
10580
  "name": "className",
10560
10581
  "parent": {
10561
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10582
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10562
10583
  "name": "HTMLAttributes"
10563
10584
  },
10564
10585
  "declarations": [
10565
10586
  {
10566
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10587
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10567
10588
  "name": "HTMLAttributes"
10568
10589
  }
10569
10590
  ],
@@ -10577,12 +10598,12 @@
10577
10598
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
10578
10599
  "name": "ref",
10579
10600
  "parent": {
10580
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10601
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10581
10602
  "name": "RefAttributes"
10582
10603
  },
10583
10604
  "declarations": [
10584
10605
  {
10585
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10606
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10586
10607
  "name": "RefAttributes"
10587
10608
  }
10588
10609
  ],
@@ -10682,12 +10703,37 @@
10682
10703
  "description": "",
10683
10704
  "name": "className",
10684
10705
  "parent": {
10685
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10706
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10707
+ "name": "HTMLAttributes"
10708
+ },
10709
+ "declarations": [
10710
+ {
10711
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10712
+ "name": "HTMLAttributes"
10713
+ }
10714
+ ],
10715
+ "required": false,
10716
+ "type": {
10717
+ "name": "string"
10718
+ }
10719
+ }
10720
+ }
10721
+ },
10722
+ {
10723
+ "filePath": "src/util/Slot.tsx",
10724
+ "displayName": "Slot",
10725
+ "props": {
10726
+ "className": {
10727
+ "defaultValue": null,
10728
+ "description": "",
10729
+ "name": "className",
10730
+ "parent": {
10731
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10686
10732
  "name": "HTMLAttributes"
10687
10733
  },
10688
10734
  "declarations": [
10689
10735
  {
10690
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10736
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10691
10737
  "name": "HTMLAttributes"
10692
10738
  }
10693
10739
  ],
@@ -10695,6 +10741,25 @@
10695
10741
  "type": {
10696
10742
  "name": "string"
10697
10743
  }
10744
+ },
10745
+ "ref": {
10746
+ "defaultValue": null,
10747
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
10748
+ "name": "ref",
10749
+ "parent": {
10750
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10751
+ "name": "RefAttributes"
10752
+ },
10753
+ "declarations": [
10754
+ {
10755
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10756
+ "name": "RefAttributes"
10757
+ }
10758
+ ],
10759
+ "required": false,
10760
+ "type": {
10761
+ "name": "Ref<HTMLElement>"
10762
+ }
10698
10763
  }
10699
10764
  }
10700
10765
  },
@@ -10747,12 +10812,12 @@
10747
10812
  "description": "",
10748
10813
  "name": "className",
10749
10814
  "parent": {
10750
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10815
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10751
10816
  "name": "HTMLAttributes"
10752
10817
  },
10753
10818
  "declarations": [
10754
10819
  {
10755
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10820
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10756
10821
  "name": "HTMLAttributes"
10757
10822
  }
10758
10823
  ],
@@ -10766,12 +10831,12 @@
10766
10831
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
10767
10832
  "name": "ref",
10768
10833
  "parent": {
10769
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10834
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10770
10835
  "name": "RefAttributes"
10771
10836
  },
10772
10837
  "declarations": [
10773
10838
  {
10774
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
10839
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
10775
10840
  "name": "RefAttributes"
10776
10841
  }
10777
10842
  ],
@@ -11240,6 +11305,29 @@
11240
11305
  "name": "Date | Date[] | DateRange"
11241
11306
  }
11242
11307
  },
11308
+ "onWeekNumberClick": {
11309
+ "defaultValue": null,
11310
+ "description": "Allows selecting a week at a time. Only used with mode=\"multiple\".",
11311
+ "name": "onWeekNumberClick",
11312
+ "declarations": [
11313
+ {
11314
+ "fileName": "src/date/datepicker/DatePicker.tsx",
11315
+ "name": "TypeLiteral"
11316
+ },
11317
+ {
11318
+ "fileName": "src/date/datepicker/DatePicker.tsx",
11319
+ "name": "TypeLiteral"
11320
+ },
11321
+ {
11322
+ "fileName": "src/date/datepicker/DatePicker.tsx",
11323
+ "name": "TypeLiteral"
11324
+ }
11325
+ ],
11326
+ "required": false,
11327
+ "type": {
11328
+ "name": "WeekNumberClickEventHandler"
11329
+ }
11330
+ },
11243
11331
  "min": {
11244
11332
  "defaultValue": null,
11245
11333
  "description": "",
@@ -11305,7 +11393,7 @@
11305
11393
  },
11306
11394
  "fixedWeeks": {
11307
11395
  "defaultValue": {
11308
- "value": "true"
11396
+ "value": "false"
11309
11397
  },
11310
11398
  "description": "If datepicker should be fixed to 6 weeks, regardless of actual weeks in month",
11311
11399
  "name": "fixedWeeks",
@@ -11599,17 +11687,40 @@
11599
11687
  "name": "Date | Date[] | DateRange"
11600
11688
  }
11601
11689
  },
11690
+ "onWeekNumberClick": {
11691
+ "defaultValue": null,
11692
+ "description": "Allows selecting a week at a time. Only used with mode=\"multiple\".",
11693
+ "name": "onWeekNumberClick",
11694
+ "declarations": [
11695
+ {
11696
+ "fileName": "react/src/date/datepicker/DatePicker.tsx",
11697
+ "name": "TypeLiteral"
11698
+ },
11699
+ {
11700
+ "fileName": "react/src/date/datepicker/DatePicker.tsx",
11701
+ "name": "TypeLiteral"
11702
+ },
11703
+ {
11704
+ "fileName": "react/src/date/datepicker/DatePicker.tsx",
11705
+ "name": "TypeLiteral"
11706
+ }
11707
+ ],
11708
+ "required": false,
11709
+ "type": {
11710
+ "name": "WeekNumberClickEventHandler"
11711
+ }
11712
+ },
11602
11713
  "ref": {
11603
11714
  "defaultValue": null,
11604
11715
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
11605
11716
  "name": "ref",
11606
11717
  "parent": {
11607
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
11718
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
11608
11719
  "name": "RefAttributes"
11609
11720
  },
11610
11721
  "declarations": [
11611
11722
  {
11612
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
11723
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
11613
11724
  "name": "RefAttributes"
11614
11725
  }
11615
11726
  ],
@@ -11658,16 +11769,6 @@
11658
11769
  }
11659
11770
  }
11660
11771
  },
11661
- {
11662
- "filePath": "src/date/datepicker/DayButton.tsx",
11663
- "displayName": "DayButton",
11664
- "props": {}
11665
- },
11666
- {
11667
- "filePath": "src/date/datepicker/TableHead.tsx",
11668
- "displayName": "TableHead",
11669
- "props": {}
11670
- },
11671
11772
  {
11672
11773
  "filePath": "src/date/hooks/useDatepicker.tsx",
11673
11774
  "displayName": "useDatepicker",
@@ -12513,7 +12614,7 @@
12513
12614
  ],
12514
12615
  "required": true,
12515
12616
  "type": {
12516
- "name": "Function"
12617
+ "name": "(date?: Date | undefined) => void"
12517
12618
  }
12518
12619
  },
12519
12620
  "tabRoot": {
@@ -12551,7 +12652,7 @@
12551
12652
  ],
12552
12653
  "required": true,
12553
12654
  "type": {
12554
- "name": "Function"
12655
+ "name": "(date?: Date | undefined) => void"
12555
12656
  }
12556
12657
  }
12557
12658
  }
@@ -12827,7 +12928,7 @@
12827
12928
  ],
12828
12929
  "required": false,
12829
12930
  "type": {
12830
- "name": "Function"
12931
+ "name": "((month?: Date) => void)"
12831
12932
  }
12832
12933
  },
12833
12934
  "year": {
@@ -13109,7 +13210,7 @@
13109
13210
  ],
13110
13211
  "required": false,
13111
13212
  "type": {
13112
- "name": "Function"
13213
+ "name": "((month?: Date) => void)"
13113
13214
  }
13114
13215
  },
13115
13216
  "year": {
@@ -13176,12 +13277,12 @@
13176
13277
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
13177
13278
  "name": "ref",
13178
13279
  "parent": {
13179
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13280
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13180
13281
  "name": "RefAttributes"
13181
13282
  },
13182
13283
  "declarations": [
13183
13284
  {
13184
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13285
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13185
13286
  "name": "RefAttributes"
13186
13287
  }
13187
13288
  ],
@@ -13201,12 +13302,12 @@
13201
13302
  "description": "",
13202
13303
  "name": "className",
13203
13304
  "parent": {
13204
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13305
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13205
13306
  "name": "HTMLAttributes"
13206
13307
  },
13207
13308
  "declarations": [
13208
13309
  {
13209
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13310
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13210
13311
  "name": "HTMLAttributes"
13211
13312
  }
13212
13313
  ],
@@ -13220,12 +13321,12 @@
13220
13321
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
13221
13322
  "name": "ref",
13222
13323
  "parent": {
13223
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13324
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13224
13325
  "name": "RefAttributes"
13225
13326
  },
13226
13327
  "declarations": [
13227
13328
  {
13228
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13329
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13229
13330
  "name": "RefAttributes"
13230
13331
  }
13231
13332
  ],
@@ -13323,12 +13424,12 @@
13323
13424
  "description": "",
13324
13425
  "name": "className",
13325
13426
  "parent": {
13326
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13427
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13327
13428
  "name": "HTMLAttributes"
13328
13429
  },
13329
13430
  "declarations": [
13330
13431
  {
13331
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13432
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13332
13433
  "name": "HTMLAttributes"
13333
13434
  }
13334
13435
  ],
@@ -13342,12 +13443,12 @@
13342
13443
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
13343
13444
  "name": "ref",
13344
13445
  "parent": {
13345
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13446
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13346
13447
  "name": "RefAttributes"
13347
13448
  },
13348
13449
  "declarations": [
13349
13450
  {
13350
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13451
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13351
13452
  "name": "RefAttributes"
13352
13453
  }
13353
13454
  ],
@@ -13597,12 +13698,12 @@
13597
13698
  "description": "",
13598
13699
  "name": "className",
13599
13700
  "parent": {
13600
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13701
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13601
13702
  "name": "HTMLAttributes"
13602
13703
  },
13603
13704
  "declarations": [
13604
13705
  {
13605
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13706
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13606
13707
  "name": "HTMLAttributes"
13607
13708
  }
13608
13709
  ],
@@ -13616,12 +13717,12 @@
13616
13717
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
13617
13718
  "name": "ref",
13618
13719
  "parent": {
13619
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13720
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13620
13721
  "name": "RefAttributes"
13621
13722
  },
13622
13723
  "declarations": [
13623
13724
  {
13624
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13725
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13625
13726
  "name": "RefAttributes"
13626
13727
  }
13627
13728
  ],
@@ -13854,12 +13955,12 @@
13854
13955
  "description": "",
13855
13956
  "name": "className",
13856
13957
  "parent": {
13857
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13958
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13858
13959
  "name": "HTMLAttributes"
13859
13960
  },
13860
13961
  "declarations": [
13861
13962
  {
13862
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13963
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13863
13964
  "name": "HTMLAttributes"
13864
13965
  }
13865
13966
  ],
@@ -13873,12 +13974,12 @@
13873
13974
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
13874
13975
  "name": "ref",
13875
13976
  "parent": {
13876
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13977
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13877
13978
  "name": "RefAttributes"
13878
13979
  },
13879
13980
  "declarations": [
13880
13981
  {
13881
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
13982
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
13882
13983
  "name": "RefAttributes"
13883
13984
  }
13884
13985
  ],
@@ -14166,12 +14267,12 @@
14166
14267
  "description": "",
14167
14268
  "name": "className",
14168
14269
  "parent": {
14169
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14270
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14170
14271
  "name": "HTMLAttributes"
14171
14272
  },
14172
14273
  "declarations": [
14173
14274
  {
14174
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14275
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14175
14276
  "name": "HTMLAttributes"
14176
14277
  }
14177
14278
  ],
@@ -14185,12 +14286,12 @@
14185
14286
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
14186
14287
  "name": "ref",
14187
14288
  "parent": {
14188
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14289
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14189
14290
  "name": "RefAttributes"
14190
14291
  },
14191
14292
  "declarations": [
14192
14293
  {
14193
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14294
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14194
14295
  "name": "RefAttributes"
14195
14296
  }
14196
14297
  ],
@@ -14248,12 +14349,12 @@
14248
14349
  "description": "",
14249
14350
  "name": "className",
14250
14351
  "parent": {
14251
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14352
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14252
14353
  "name": "HTMLAttributes"
14253
14354
  },
14254
14355
  "declarations": [
14255
14356
  {
14256
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14357
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14257
14358
  "name": "HTMLAttributes"
14258
14359
  }
14259
14360
  ],
@@ -14268,25 +14369,6 @@
14268
14369
  "filePath": "src/form/combobox/Combobox.tsx",
14269
14370
  "displayName": "Combobox",
14270
14371
  "props": {
14271
- "value": {
14272
- "defaultValue": null,
14273
- "description": "Set this to override the value of the input field.\n\nThis converts the input to a controlled input, so you have to use onChange to update the value.",
14274
- "name": "value",
14275
- "parent": {
14276
- "fileName": "react/src/form/combobox/types.ts",
14277
- "name": "ComboboxProps"
14278
- },
14279
- "declarations": [
14280
- {
14281
- "fileName": "react/src/form/combobox/types.ts",
14282
- "name": "ComboboxProps"
14283
- }
14284
- ],
14285
- "required": false,
14286
- "type": {
14287
- "name": "string"
14288
- }
14289
- },
14290
14372
  "disabled": {
14291
14373
  "defaultValue": null,
14292
14374
  "description": "Disables element\n@note Avoid using if possible for accessibility purposes",
@@ -14330,12 +14412,12 @@
14330
14412
  "description": "",
14331
14413
  "name": "className",
14332
14414
  "parent": {
14333
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14415
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14334
14416
  "name": "HTMLAttributes"
14335
14417
  },
14336
14418
  "declarations": [
14337
14419
  {
14338
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14420
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14339
14421
  "name": "HTMLAttributes"
14340
14422
  }
14341
14423
  ],
@@ -14555,25 +14637,6 @@
14555
14637
  "name": "boolean"
14556
14638
  }
14557
14639
  },
14558
- "onClear": {
14559
- "defaultValue": null,
14560
- "description": "Callback function triggered whenever the input field is cleared\n@param event\n@returns",
14561
- "name": "onClear",
14562
- "parent": {
14563
- "fileName": "react/src/form/combobox/types.ts",
14564
- "name": "ComboboxProps"
14565
- },
14566
- "declarations": [
14567
- {
14568
- "fileName": "react/src/form/combobox/types.ts",
14569
- "name": "ComboboxProps"
14570
- }
14571
- ],
14572
- "required": false,
14573
- "type": {
14574
- "name": "((event: PointerEvent<Element> | KeyboardEvent<Element>) => void)"
14575
- }
14576
- },
14577
14640
  "onToggleSelected": {
14578
14641
  "defaultValue": null,
14579
14642
  "description": "Callback function triggered whenever an option is selected or de-selected\n@param option\n@param isSelected - Whether the option has been selected or unselected\n@param isCustomOption - Whether the option comes from user input, instead of from the list\n@returns",
@@ -14758,12 +14821,12 @@
14758
14821
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
14759
14822
  "name": "ref",
14760
14823
  "parent": {
14761
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14824
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14762
14825
  "name": "RefAttributes"
14763
14826
  },
14764
14827
  "declarations": [
14765
14828
  {
14766
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
14829
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
14767
14830
  "name": "RefAttributes"
14768
14831
  }
14769
14832
  ],
@@ -15306,12 +15369,12 @@
15306
15369
  "description": "",
15307
15370
  "name": "className",
15308
15371
  "parent": {
15309
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15372
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15310
15373
  "name": "HTMLAttributes"
15311
15374
  },
15312
15375
  "declarations": [
15313
15376
  {
15314
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15377
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15315
15378
  "name": "HTMLAttributes"
15316
15379
  }
15317
15380
  ],
@@ -15325,12 +15388,12 @@
15325
15388
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
15326
15389
  "name": "ref",
15327
15390
  "parent": {
15328
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15391
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15329
15392
  "name": "RefAttributes"
15330
15393
  },
15331
15394
  "declarations": [
15332
15395
  {
15333
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15396
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15334
15397
  "name": "RefAttributes"
15335
15398
  }
15336
15399
  ],
@@ -15465,12 +15528,12 @@
15465
15528
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
15466
15529
  "name": "ref",
15467
15530
  "parent": {
15468
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15531
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15469
15532
  "name": "RefAttributes"
15470
15533
  },
15471
15534
  "declarations": [
15472
15535
  {
15473
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15536
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15474
15537
  "name": "RefAttributes"
15475
15538
  }
15476
15539
  ],
@@ -15575,12 +15638,12 @@
15575
15638
  "description": "",
15576
15639
  "name": "className",
15577
15640
  "parent": {
15578
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15641
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15579
15642
  "name": "HTMLAttributes"
15580
15643
  },
15581
15644
  "declarations": [
15582
15645
  {
15583
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15646
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15584
15647
  "name": "HTMLAttributes"
15585
15648
  }
15586
15649
  ],
@@ -15594,12 +15657,12 @@
15594
15657
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
15595
15658
  "name": "ref",
15596
15659
  "parent": {
15597
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15660
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15598
15661
  "name": "RefAttributes"
15599
15662
  },
15600
15663
  "declarations": [
15601
15664
  {
15602
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15665
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15603
15666
  "name": "RefAttributes"
15604
15667
  }
15605
15668
  ],
@@ -15657,12 +15720,12 @@
15657
15720
  "description": "",
15658
15721
  "name": "className",
15659
15722
  "parent": {
15660
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15723
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15661
15724
  "name": "HTMLAttributes"
15662
15725
  },
15663
15726
  "declarations": [
15664
15727
  {
15665
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15728
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15666
15729
  "name": "HTMLAttributes"
15667
15730
  }
15668
15731
  ],
@@ -15676,12 +15739,12 @@
15676
15739
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
15677
15740
  "name": "ref",
15678
15741
  "parent": {
15679
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15742
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15680
15743
  "name": "RefAttributes"
15681
15744
  },
15682
15745
  "declarations": [
15683
15746
  {
15684
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15747
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15685
15748
  "name": "RefAttributes"
15686
15749
  }
15687
15750
  ],
@@ -15815,12 +15878,12 @@
15815
15878
  "description": "",
15816
15879
  "name": "className",
15817
15880
  "parent": {
15818
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15881
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15819
15882
  "name": "HTMLAttributes"
15820
15883
  },
15821
15884
  "declarations": [
15822
15885
  {
15823
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15886
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15824
15887
  "name": "HTMLAttributes"
15825
15888
  }
15826
15889
  ],
@@ -15834,12 +15897,12 @@
15834
15897
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
15835
15898
  "name": "ref",
15836
15899
  "parent": {
15837
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15900
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15838
15901
  "name": "RefAttributes"
15839
15902
  },
15840
15903
  "declarations": [
15841
15904
  {
15842
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
15905
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
15843
15906
  "name": "RefAttributes"
15844
15907
  }
15845
15908
  ],
@@ -16165,12 +16228,12 @@
16165
16228
  "description": "",
16166
16229
  "name": "className",
16167
16230
  "parent": {
16168
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16231
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16169
16232
  "name": "HTMLAttributes"
16170
16233
  },
16171
16234
  "declarations": [
16172
16235
  {
16173
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16236
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16174
16237
  "name": "HTMLAttributes"
16175
16238
  }
16176
16239
  ],
@@ -16184,12 +16247,12 @@
16184
16247
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
16185
16248
  "name": "ref",
16186
16249
  "parent": {
16187
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16250
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16188
16251
  "name": "RefAttributes"
16189
16252
  },
16190
16253
  "declarations": [
16191
16254
  {
16192
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16255
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16193
16256
  "name": "RefAttributes"
16194
16257
  }
16195
16258
  ],
@@ -16502,12 +16565,12 @@
16502
16565
  "description": "",
16503
16566
  "name": "className",
16504
16567
  "parent": {
16505
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16568
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16506
16569
  "name": "HTMLAttributes"
16507
16570
  },
16508
16571
  "declarations": [
16509
16572
  {
16510
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16573
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16511
16574
  "name": "HTMLAttributes"
16512
16575
  }
16513
16576
  ],
@@ -16521,12 +16584,12 @@
16521
16584
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
16522
16585
  "name": "ref",
16523
16586
  "parent": {
16524
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16587
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16525
16588
  "name": "RefAttributes"
16526
16589
  },
16527
16590
  "declarations": [
16528
16591
  {
16529
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16592
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16530
16593
  "name": "RefAttributes"
16531
16594
  }
16532
16595
  ],
@@ -16645,12 +16708,12 @@
16645
16708
  "description": "",
16646
16709
  "name": "className",
16647
16710
  "parent": {
16648
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16711
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16649
16712
  "name": "HTMLAttributes"
16650
16713
  },
16651
16714
  "declarations": [
16652
16715
  {
16653
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16716
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16654
16717
  "name": "HTMLAttributes"
16655
16718
  }
16656
16719
  ],
@@ -16664,12 +16727,12 @@
16664
16727
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
16665
16728
  "name": "ref",
16666
16729
  "parent": {
16667
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16730
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16668
16731
  "name": "RefAttributes"
16669
16732
  },
16670
16733
  "declarations": [
16671
16734
  {
16672
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16735
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16673
16736
  "name": "RefAttributes"
16674
16737
  }
16675
16738
  ],
@@ -16681,108 +16744,83 @@
16681
16744
  }
16682
16745
  },
16683
16746
  {
16684
- "filePath": "src/layout/content-container/ContentContainer.tsx",
16685
- "displayName": "ContentContainer",
16747
+ "filePath": "src/layout/bleed/Bleed.tsx",
16748
+ "displayName": "Bleed",
16686
16749
  "props": {
16687
- "children": {
16688
- "defaultValue": null,
16689
- "description": "ContentContainer content",
16690
- "name": "children",
16691
- "parent": {
16692
- "fileName": "src/layout/content-container/ContentContainer.tsx",
16693
- "name": "ContentContainerProps"
16694
- },
16695
- "declarations": [
16696
- {
16697
- "fileName": "src/layout/content-container/ContentContainer.tsx",
16698
- "name": "ContentContainerProps"
16699
- }
16700
- ],
16701
- "required": true,
16702
- "type": {
16703
- "name": "ReactNode"
16704
- }
16705
- },
16706
- "className": {
16750
+ "marginInline": {
16707
16751
  "defaultValue": null,
16708
- "description": "",
16709
- "name": "className",
16752
+ "description": "**Negative** horizontal margin around children.\nAccepts a spacing token or an object of spacing tokens for different breakpoints.\n@example marginInline='4'\nmarginInline='4 5'\nmarginInline={{xs: '0 32', sm: '3', md: '4 5', lg: '5', xl: '6'}}",
16753
+ "name": "marginInline",
16710
16754
  "parent": {
16711
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16712
- "name": "HTMLAttributes"
16755
+ "fileName": "src/layout/bleed/Bleed.tsx",
16756
+ "name": "BleedProps"
16713
16757
  },
16714
16758
  "declarations": [
16715
16759
  {
16716
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16717
- "name": "HTMLAttributes"
16760
+ "fileName": "src/layout/bleed/Bleed.tsx",
16761
+ "name": "BleedProps"
16718
16762
  }
16719
16763
  ],
16720
16764
  "required": false,
16721
16765
  "type": {
16722
- "name": "string"
16766
+ "name": "ResponsiveProp<BleedSpacingInline | \"full full\" | \"full px\" | \"full 0\" | \"full 05\" | \"full 1\" | \"full 2\" | \"full 3\" | \"full 4\" | \"full 5\" | \"full 6\" | \"full 7\" | \"full 8\" | ... 471 more ... | \"32 32\">"
16723
16767
  }
16724
16768
  },
16725
- "ref": {
16769
+ "marginBlock": {
16726
16770
  "defaultValue": null,
16727
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
16728
- "name": "ref",
16771
+ "description": "**Negative** vertical margin around children.\nAccepts a spacing token or an object of spacing tokens for different breakpoints.\n@example marginBlock='4'\nmarginBlock='4 5'\nmarginBlock={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
16772
+ "name": "marginBlock",
16729
16773
  "parent": {
16730
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16731
- "name": "RefAttributes"
16774
+ "fileName": "src/layout/bleed/Bleed.tsx",
16775
+ "name": "BleedProps"
16732
16776
  },
16733
16777
  "declarations": [
16734
16778
  {
16735
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16736
- "name": "RefAttributes"
16779
+ "fileName": "src/layout/bleed/Bleed.tsx",
16780
+ "name": "BleedProps"
16737
16781
  }
16738
16782
  ],
16739
16783
  "required": false,
16740
16784
  "type": {
16741
- "name": "Ref<HTMLDivElement>"
16785
+ "name": "ResponsiveProp<\"px px\" | \"px 0\" | \"px 05\" | \"px 1\" | \"px 2\" | \"px 3\" | \"px 4\" | \"px 5\" | \"px 6\" | \"px 7\" | \"px 8\" | \"px 9\" | \"px 10\" | \"px 11\" | \"px 12\" | \"px 14\" | \"px 16\" | \"px 18\" | \"px 20\" | ... 422 more ... | BleedSpacingBlock>"
16742
16786
  }
16743
- }
16744
- }
16745
- },
16746
- {
16747
- "filePath": "src/layout/grid/HGrid.tsx",
16748
- "displayName": "HGrid",
16749
- "props": {
16750
- "columns": {
16787
+ },
16788
+ "reflectivePadding": {
16751
16789
  "defaultValue": null,
16752
- "description": "Number of columns to display. Can be a number, a string with a unit or tokens for spesific breakpoints.\nSets `grid-template-columns`, so `fr`, `minmax` etc. works.\n@example columns={{ sm: 1, md: 1, lg: \"1fr auto\", xl: \"1fr auto\"}}\n@example columns={3}\n@example columns=\"repeat(3, minmax(0, 1fr))\"",
16753
- "name": "columns",
16790
+ "description": "When true, set the padding to mirror the margin.\nThis maintains the apparent width of the element prior to adding Bleed.\nWhen this is used with `asChild`, it will overwrite the padding of the child.",
16791
+ "name": "reflectivePadding",
16754
16792
  "parent": {
16755
- "fileName": "src/layout/grid/HGrid.tsx",
16756
- "name": "HGridProps"
16793
+ "fileName": "src/layout/bleed/Bleed.tsx",
16794
+ "name": "BleedProps"
16757
16795
  },
16758
16796
  "declarations": [
16759
16797
  {
16760
- "fileName": "src/layout/grid/HGrid.tsx",
16761
- "name": "HGridProps"
16798
+ "fileName": "src/layout/bleed/Bleed.tsx",
16799
+ "name": "BleedProps"
16762
16800
  }
16763
16801
  ],
16764
16802
  "required": false,
16765
16803
  "type": {
16766
- "name": "ResponsiveProp<string | number>"
16804
+ "name": "boolean"
16767
16805
  }
16768
16806
  },
16769
- "gap": {
16807
+ "asChild": {
16770
16808
  "defaultValue": null,
16771
- "description": "Spacing between columns. Based on spacing-tokens.\n@example gap=\"6\"\ngap={{ sm: \"2\", md: \"2\", lg: \"6\", xl: \"6\"}}",
16772
- "name": "gap",
16809
+ "description": "When true, the Bleed will render as its child. This merges classes, styles and event handlers.",
16810
+ "name": "asChild",
16773
16811
  "parent": {
16774
- "fileName": "src/layout/grid/HGrid.tsx",
16775
- "name": "HGridProps"
16812
+ "fileName": "src/layout/bleed/Bleed.tsx",
16813
+ "name": "BleedProps"
16776
16814
  },
16777
16815
  "declarations": [
16778
16816
  {
16779
- "fileName": "src/layout/grid/HGrid.tsx",
16780
- "name": "HGridProps"
16817
+ "fileName": "src/layout/bleed/Bleed.tsx",
16818
+ "name": "BleedProps"
16781
16819
  }
16782
16820
  ],
16783
16821
  "required": false,
16784
16822
  "type": {
16785
- "name": "ResponsiveProp<SpacingScale>"
16823
+ "name": "boolean"
16786
16824
  }
16787
16825
  },
16788
16826
  "className": {
@@ -16790,12 +16828,12 @@
16790
16828
  "description": "",
16791
16829
  "name": "className",
16792
16830
  "parent": {
16793
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16831
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16794
16832
  "name": "HTMLAttributes"
16795
16833
  },
16796
16834
  "declarations": [
16797
16835
  {
16798
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16836
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16799
16837
  "name": "HTMLAttributes"
16800
16838
  }
16801
16839
  ],
@@ -16809,12 +16847,12 @@
16809
16847
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
16810
16848
  "name": "ref",
16811
16849
  "parent": {
16812
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16850
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16813
16851
  "name": "RefAttributes"
16814
16852
  },
16815
16853
  "declarations": [
16816
16854
  {
16817
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16855
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
16818
16856
  "name": "RefAttributes"
16819
16857
  }
16820
16858
  ],
@@ -16826,78 +16864,97 @@
16826
16864
  }
16827
16865
  },
16828
16866
  {
16829
- "filePath": "src/layout/stack/HStack.tsx",
16830
- "displayName": "HStack",
16867
+ "filePath": "src/layout/box/Box.tsx",
16868
+ "displayName": "Box",
16831
16869
  "props": {
16832
- "justify": {
16870
+ "background": {
16833
16871
  "defaultValue": null,
16834
- "description": "Justify-content",
16835
- "name": "justify",
16872
+ "description": "Background color. Accepts a color token.",
16873
+ "name": "background",
16836
16874
  "parent": {
16837
- "fileName": "react/src/layout/stack/Stack.tsx",
16838
- "name": "StackProps"
16875
+ "fileName": "src/layout/box/Box.tsx",
16876
+ "name": "BoxProps"
16839
16877
  },
16840
16878
  "declarations": [
16841
16879
  {
16842
- "fileName": "react/src/layout/stack/Stack.tsx",
16843
- "name": "StackProps"
16880
+ "fileName": "src/layout/box/Box.tsx",
16881
+ "name": "BoxProps"
16844
16882
  }
16845
16883
  ],
16846
16884
  "required": false,
16847
16885
  "type": {
16848
- "name": "\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\""
16886
+ "name": "BackgroundToken"
16849
16887
  }
16850
16888
  },
16851
- "align": {
16889
+ "borderColor": {
16852
16890
  "defaultValue": null,
16853
- "description": "Align-items",
16854
- "name": "align",
16891
+ "description": "Border color. Accepts a color token.",
16892
+ "name": "borderColor",
16855
16893
  "parent": {
16856
- "fileName": "react/src/layout/stack/Stack.tsx",
16857
- "name": "StackProps"
16894
+ "fileName": "src/layout/box/Box.tsx",
16895
+ "name": "BoxProps"
16858
16896
  },
16859
16897
  "declarations": [
16860
16898
  {
16861
- "fileName": "react/src/layout/stack/Stack.tsx",
16862
- "name": "StackProps"
16899
+ "fileName": "src/layout/box/Box.tsx",
16900
+ "name": "BoxProps"
16863
16901
  }
16864
16902
  ],
16865
16903
  "required": false,
16866
16904
  "type": {
16867
- "name": "\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\""
16905
+ "name": "\"border-default\" | \"border-strong\" | \"border-divider\" | \"border-subtle\" | \"border-action-selected\" | \"border-action\" | \"border-selected\" | \"border-success\" | \"border-danger\" | ... 9 more ..."
16868
16906
  }
16869
16907
  },
16870
- "wrap": {
16908
+ "borderRadius": {
16871
16909
  "defaultValue": null,
16872
- "description": "flex-wrap",
16873
- "name": "wrap",
16910
+ "description": "Border radius. Accepts a radius token, or an object of radius tokens for different breakpoints.\n@example borderRadius='full'\nborderRadius='0 full large small'\nborderRadius={{xs: 'small large', sm: '0', md: 'large', lg: 'full'}}",
16911
+ "name": "borderRadius",
16874
16912
  "parent": {
16875
- "fileName": "react/src/layout/stack/Stack.tsx",
16876
- "name": "StackProps"
16913
+ "fileName": "src/layout/box/Box.tsx",
16914
+ "name": "BoxProps"
16877
16915
  },
16878
16916
  "declarations": [
16879
16917
  {
16880
- "fileName": "react/src/layout/stack/Stack.tsx",
16881
- "name": "StackProps"
16918
+ "fileName": "src/layout/box/Box.tsx",
16919
+ "name": "BoxProps"
16882
16920
  }
16883
16921
  ],
16884
16922
  "required": false,
16885
16923
  "type": {
16886
- "name": "boolean"
16924
+ "name": "ResponsiveProp<SpaceDelimitedAttribute<BorderRadiiToken>>"
16887
16925
  }
16888
16926
  },
16889
- "gap": {
16927
+ "borderWidth": {
16890
16928
  "defaultValue": null,
16891
- "description": "@example gap='4'\ngap={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
16892
- "name": "gap",
16929
+ "description": "Border-width. If this is not set there will be no border.\n@example borderWidth='2'\nborderWidth='1 2 3 4'",
16930
+ "name": "borderWidth",
16893
16931
  "parent": {
16894
- "fileName": "react/src/layout/stack/Stack.tsx",
16895
- "name": "StackProps"
16932
+ "fileName": "src/layout/box/Box.tsx",
16933
+ "name": "BoxProps"
16896
16934
  },
16897
16935
  "declarations": [
16898
16936
  {
16899
- "fileName": "react/src/layout/stack/Stack.tsx",
16900
- "name": "StackProps"
16937
+ "fileName": "src/layout/box/Box.tsx",
16938
+ "name": "BoxProps"
16939
+ }
16940
+ ],
16941
+ "required": false,
16942
+ "type": {
16943
+ "name": "SpaceDelimitedAttribute<\"0\" | \"1\" | \"2\" | \"3\" | \"4\" | \"5\">"
16944
+ }
16945
+ },
16946
+ "padding": {
16947
+ "defaultValue": null,
16948
+ "description": "Spacing around children. Accepts a spacing token or an object of spacing tokens for different breakpoints.\n@example padding='4'\npadding={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
16949
+ "name": "padding",
16950
+ "parent": {
16951
+ "fileName": "src/layout/box/Box.tsx",
16952
+ "name": "BoxProps"
16953
+ },
16954
+ "declarations": [
16955
+ {
16956
+ "fileName": "src/layout/box/Box.tsx",
16957
+ "name": "BoxProps"
16901
16958
  }
16902
16959
  ],
16903
16960
  "required": false,
@@ -16905,44 +16962,634 @@
16905
16962
  "name": "ResponsiveProp<SpacingScale>"
16906
16963
  }
16907
16964
  },
16908
- "className": {
16965
+ "paddingInline": {
16909
16966
  "defaultValue": null,
16910
- "description": "",
16911
- "name": "className",
16967
+ "description": "Horizontal padding around children. Accepts a spacing token or an object of spacing tokens for different breakpoints.\n@example paddingInline='4'\npaddingInline='4 5'\npaddingInline={{xs: '0 32', sm: '3', md: '4 5', lg: '5', xl: '6'}}",
16968
+ "name": "paddingInline",
16912
16969
  "parent": {
16913
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16914
- "name": "HTMLAttributes"
16970
+ "fileName": "src/layout/box/Box.tsx",
16971
+ "name": "BoxProps"
16915
16972
  },
16916
16973
  "declarations": [
16917
16974
  {
16918
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16919
- "name": "HTMLAttributes"
16975
+ "fileName": "src/layout/box/Box.tsx",
16976
+ "name": "BoxProps"
16920
16977
  }
16921
16978
  ],
16922
16979
  "required": false,
16923
16980
  "type": {
16924
- "name": "string"
16981
+ "name": "ResponsiveProp<\"0 0\" | \"0 1\" | \"0 2\" | \"0 3\" | \"0 4\" | \"0 5\" | \"1 0\" | \"1 1\" | \"1 2\" | \"1 3\" | \"1 4\" | \"1 5\" | \"2 0\" | \"2 1\" | \"2 2\" | \"2 3\" | \"2 4\" | \"2 5\" | \"3 0\" | \"3 1\" | \"3 2\" | \"3 3\" | \"3 4\" | ... 377 more ... | \"32 32\">"
16925
16982
  }
16926
16983
  },
16927
- "ref": {
16984
+ "paddingBlock": {
16928
16985
  "defaultValue": null,
16929
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
16930
- "name": "ref",
16986
+ "description": "Vertical padding around children. Accepts a spacing token or an object of spacing tokens for different breakpoints.\n@example paddingBlock='4'\npaddingBlock='4 5'\npaddingBlock={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
16987
+ "name": "paddingBlock",
16931
16988
  "parent": {
16932
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16933
- "name": "RefAttributes"
16989
+ "fileName": "src/layout/box/Box.tsx",
16990
+ "name": "BoxProps"
16934
16991
  },
16935
16992
  "declarations": [
16936
16993
  {
16937
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
16938
- "name": "RefAttributes"
16994
+ "fileName": "src/layout/box/Box.tsx",
16995
+ "name": "BoxProps"
16939
16996
  }
16940
16997
  ],
16941
16998
  "required": false,
16942
16999
  "type": {
16943
- "name": "Ref<HTMLDivElement>"
17000
+ "name": "ResponsiveProp<\"0 0\" | \"0 1\" | \"0 2\" | \"0 3\" | \"0 4\" | \"0 5\" | \"1 0\" | \"1 1\" | \"1 2\" | \"1 3\" | \"1 4\" | \"1 5\" | \"2 0\" | \"2 1\" | \"2 2\" | \"2 3\" | \"2 4\" | \"2 5\" | \"3 0\" | \"3 1\" | \"3 2\" | \"3 3\" | \"3 4\" | ... 377 more ... | \"32 32\">"
16944
17001
  }
16945
- }
17002
+ },
17003
+ "shadow": {
17004
+ "defaultValue": null,
17005
+ "description": "Shadow on box. Accepts a shadow token.\n@example shadow='small'",
17006
+ "name": "shadow",
17007
+ "parent": {
17008
+ "fileName": "src/layout/box/Box.tsx",
17009
+ "name": "BoxProps"
17010
+ },
17011
+ "declarations": [
17012
+ {
17013
+ "fileName": "src/layout/box/Box.tsx",
17014
+ "name": "BoxProps"
17015
+ }
17016
+ ],
17017
+ "required": false,
17018
+ "type": {
17019
+ "name": "\"small\" | \"medium\" | \"large\" | \"xlarge\" | \"xsmall\""
17020
+ }
17021
+ },
17022
+ "className": {
17023
+ "defaultValue": null,
17024
+ "description": "",
17025
+ "name": "className",
17026
+ "parent": {
17027
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17028
+ "name": "HTMLAttributes"
17029
+ },
17030
+ "declarations": [
17031
+ {
17032
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17033
+ "name": "HTMLAttributes"
17034
+ }
17035
+ ],
17036
+ "required": false,
17037
+ "type": {
17038
+ "name": "string"
17039
+ }
17040
+ },
17041
+ "ref": {
17042
+ "defaultValue": null,
17043
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17044
+ "name": "ref",
17045
+ "parent": {
17046
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17047
+ "name": "RefAttributes"
17048
+ },
17049
+ "declarations": [
17050
+ {
17051
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17052
+ "name": "RefAttributes"
17053
+ }
17054
+ ],
17055
+ "required": false,
17056
+ "type": {
17057
+ "name": "Ref<HTMLDivElement>"
17058
+ }
17059
+ }
17060
+ }
17061
+ },
17062
+ {
17063
+ "filePath": "src/layout/content-container/ContentContainer.tsx",
17064
+ "displayName": "ContentContainer",
17065
+ "props": {
17066
+ "children": {
17067
+ "defaultValue": null,
17068
+ "description": "ContentContainer content",
17069
+ "name": "children",
17070
+ "parent": {
17071
+ "fileName": "src/layout/content-container/ContentContainer.tsx",
17072
+ "name": "ContentContainerProps"
17073
+ },
17074
+ "declarations": [
17075
+ {
17076
+ "fileName": "src/layout/content-container/ContentContainer.tsx",
17077
+ "name": "ContentContainerProps"
17078
+ }
17079
+ ],
17080
+ "required": true,
17081
+ "type": {
17082
+ "name": "ReactNode"
17083
+ }
17084
+ },
17085
+ "className": {
17086
+ "defaultValue": null,
17087
+ "description": "",
17088
+ "name": "className",
17089
+ "parent": {
17090
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17091
+ "name": "HTMLAttributes"
17092
+ },
17093
+ "declarations": [
17094
+ {
17095
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17096
+ "name": "HTMLAttributes"
17097
+ }
17098
+ ],
17099
+ "required": false,
17100
+ "type": {
17101
+ "name": "string"
17102
+ }
17103
+ },
17104
+ "ref": {
17105
+ "defaultValue": null,
17106
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17107
+ "name": "ref",
17108
+ "parent": {
17109
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17110
+ "name": "RefAttributes"
17111
+ },
17112
+ "declarations": [
17113
+ {
17114
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17115
+ "name": "RefAttributes"
17116
+ }
17117
+ ],
17118
+ "required": false,
17119
+ "type": {
17120
+ "name": "Ref<HTMLDivElement>"
17121
+ }
17122
+ }
17123
+ }
17124
+ },
17125
+ {
17126
+ "filePath": "src/layout/grid/HGrid.tsx",
17127
+ "displayName": "HGrid",
17128
+ "props": {
17129
+ "columns": {
17130
+ "defaultValue": null,
17131
+ "description": "Number of columns to display. Can be a number, a string with a unit or tokens for spesific breakpoints.\nSets `grid-template-columns`, so `fr`, `minmax` etc. works.\n@example columns={{ sm: 1, md: 1, lg: \"1fr auto\", xl: \"1fr auto\"}}\n@example columns={3}\n@example columns=\"repeat(3, minmax(0, 1fr))\"",
17132
+ "name": "columns",
17133
+ "parent": {
17134
+ "fileName": "src/layout/grid/HGrid.tsx",
17135
+ "name": "HGridProps"
17136
+ },
17137
+ "declarations": [
17138
+ {
17139
+ "fileName": "src/layout/grid/HGrid.tsx",
17140
+ "name": "HGridProps"
17141
+ }
17142
+ ],
17143
+ "required": false,
17144
+ "type": {
17145
+ "name": "ResponsiveProp<string | number>"
17146
+ }
17147
+ },
17148
+ "gap": {
17149
+ "defaultValue": null,
17150
+ "description": "Spacing between columns. Based on spacing-tokens.\n@example gap=\"6\"\ngap={{ sm: \"2\", md: \"2\", lg: \"6\", xl: \"6\"}}",
17151
+ "name": "gap",
17152
+ "parent": {
17153
+ "fileName": "src/layout/grid/HGrid.tsx",
17154
+ "name": "HGridProps"
17155
+ },
17156
+ "declarations": [
17157
+ {
17158
+ "fileName": "src/layout/grid/HGrid.tsx",
17159
+ "name": "HGridProps"
17160
+ }
17161
+ ],
17162
+ "required": false,
17163
+ "type": {
17164
+ "name": "ResponsiveProp<SpacingScale>"
17165
+ }
17166
+ },
17167
+ "align": {
17168
+ "defaultValue": null,
17169
+ "description": "Vertical alignment of children. Elements will by default stretch to the height of parent-element.",
17170
+ "name": "align",
17171
+ "parent": {
17172
+ "fileName": "src/layout/grid/HGrid.tsx",
17173
+ "name": "HGridProps"
17174
+ },
17175
+ "declarations": [
17176
+ {
17177
+ "fileName": "src/layout/grid/HGrid.tsx",
17178
+ "name": "HGridProps"
17179
+ }
17180
+ ],
17181
+ "required": false,
17182
+ "type": {
17183
+ "name": "\"start\" | \"center\" | \"end\""
17184
+ }
17185
+ },
17186
+ "className": {
17187
+ "defaultValue": null,
17188
+ "description": "",
17189
+ "name": "className",
17190
+ "parent": {
17191
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17192
+ "name": "HTMLAttributes"
17193
+ },
17194
+ "declarations": [
17195
+ {
17196
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17197
+ "name": "HTMLAttributes"
17198
+ }
17199
+ ],
17200
+ "required": false,
17201
+ "type": {
17202
+ "name": "string"
17203
+ }
17204
+ },
17205
+ "ref": {
17206
+ "defaultValue": null,
17207
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17208
+ "name": "ref",
17209
+ "parent": {
17210
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17211
+ "name": "RefAttributes"
17212
+ },
17213
+ "declarations": [
17214
+ {
17215
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17216
+ "name": "RefAttributes"
17217
+ }
17218
+ ],
17219
+ "required": false,
17220
+ "type": {
17221
+ "name": "Ref<HTMLDivElement>"
17222
+ }
17223
+ }
17224
+ }
17225
+ },
17226
+ {
17227
+ "filePath": "src/layout/responsive/Responsive.tsx",
17228
+ "displayName": "Hide",
17229
+ "props": {
17230
+ "above": {
17231
+ "defaultValue": null,
17232
+ "description": "@example above='md'",
17233
+ "name": "above",
17234
+ "parent": {
17235
+ "fileName": "src/layout/responsive/Responsive.tsx",
17236
+ "name": "ResponsiveProps"
17237
+ },
17238
+ "declarations": [
17239
+ {
17240
+ "fileName": "src/layout/responsive/Responsive.tsx",
17241
+ "name": "ResponsiveProps"
17242
+ }
17243
+ ],
17244
+ "required": false,
17245
+ "type": {
17246
+ "name": "\"sm\" | \"md\" | \"lg\" | \"xl\""
17247
+ }
17248
+ },
17249
+ "below": {
17250
+ "defaultValue": null,
17251
+ "description": "@example below='md'",
17252
+ "name": "below",
17253
+ "parent": {
17254
+ "fileName": "src/layout/responsive/Responsive.tsx",
17255
+ "name": "ResponsiveProps"
17256
+ },
17257
+ "declarations": [
17258
+ {
17259
+ "fileName": "src/layout/responsive/Responsive.tsx",
17260
+ "name": "ResponsiveProps"
17261
+ }
17262
+ ],
17263
+ "required": false,
17264
+ "type": {
17265
+ "name": "\"sm\" | \"md\" | \"lg\" | \"xl\""
17266
+ }
17267
+ },
17268
+ "as": {
17269
+ "defaultValue": {
17270
+ "value": "\"div\""
17271
+ },
17272
+ "description": "Overrides html-tag",
17273
+ "name": "as",
17274
+ "parent": {
17275
+ "fileName": "src/layout/responsive/Responsive.tsx",
17276
+ "name": "ResponsiveProps"
17277
+ },
17278
+ "declarations": [
17279
+ {
17280
+ "fileName": "src/layout/responsive/Responsive.tsx",
17281
+ "name": "ResponsiveProps"
17282
+ }
17283
+ ],
17284
+ "required": false,
17285
+ "type": {
17286
+ "name": "\"div\" | \"span\""
17287
+ }
17288
+ },
17289
+ "asChild": {
17290
+ "defaultValue": null,
17291
+ "description": "When true, will render element as its child. This merges classes, styles and event handlers.",
17292
+ "name": "asChild",
17293
+ "parent": {
17294
+ "fileName": "src/layout/responsive/Responsive.tsx",
17295
+ "name": "ResponsiveProps"
17296
+ },
17297
+ "declarations": [
17298
+ {
17299
+ "fileName": "src/layout/responsive/Responsive.tsx",
17300
+ "name": "ResponsiveProps"
17301
+ }
17302
+ ],
17303
+ "required": false,
17304
+ "type": {
17305
+ "name": "boolean"
17306
+ }
17307
+ },
17308
+ "className": {
17309
+ "defaultValue": null,
17310
+ "description": "",
17311
+ "name": "className",
17312
+ "parent": {
17313
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17314
+ "name": "HTMLAttributes"
17315
+ },
17316
+ "declarations": [
17317
+ {
17318
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17319
+ "name": "HTMLAttributes"
17320
+ }
17321
+ ],
17322
+ "required": false,
17323
+ "type": {
17324
+ "name": "string"
17325
+ }
17326
+ },
17327
+ "ref": {
17328
+ "defaultValue": null,
17329
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17330
+ "name": "ref",
17331
+ "parent": {
17332
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17333
+ "name": "RefAttributes"
17334
+ },
17335
+ "declarations": [
17336
+ {
17337
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17338
+ "name": "RefAttributes"
17339
+ }
17340
+ ],
17341
+ "required": false,
17342
+ "type": {
17343
+ "name": "Ref<HTMLDivElement>"
17344
+ }
17345
+ }
17346
+ }
17347
+ },
17348
+ {
17349
+ "filePath": "src/layout/responsive/Responsive.tsx",
17350
+ "displayName": "Show",
17351
+ "props": {
17352
+ "above": {
17353
+ "defaultValue": null,
17354
+ "description": "@example above='md'",
17355
+ "name": "above",
17356
+ "parent": {
17357
+ "fileName": "src/layout/responsive/Responsive.tsx",
17358
+ "name": "ResponsiveProps"
17359
+ },
17360
+ "declarations": [
17361
+ {
17362
+ "fileName": "src/layout/responsive/Responsive.tsx",
17363
+ "name": "ResponsiveProps"
17364
+ }
17365
+ ],
17366
+ "required": false,
17367
+ "type": {
17368
+ "name": "\"sm\" | \"md\" | \"lg\" | \"xl\""
17369
+ }
17370
+ },
17371
+ "below": {
17372
+ "defaultValue": null,
17373
+ "description": "@example below='md'",
17374
+ "name": "below",
17375
+ "parent": {
17376
+ "fileName": "src/layout/responsive/Responsive.tsx",
17377
+ "name": "ResponsiveProps"
17378
+ },
17379
+ "declarations": [
17380
+ {
17381
+ "fileName": "src/layout/responsive/Responsive.tsx",
17382
+ "name": "ResponsiveProps"
17383
+ }
17384
+ ],
17385
+ "required": false,
17386
+ "type": {
17387
+ "name": "\"sm\" | \"md\" | \"lg\" | \"xl\""
17388
+ }
17389
+ },
17390
+ "as": {
17391
+ "defaultValue": {
17392
+ "value": "\"div\""
17393
+ },
17394
+ "description": "Overrides html-tag",
17395
+ "name": "as",
17396
+ "parent": {
17397
+ "fileName": "src/layout/responsive/Responsive.tsx",
17398
+ "name": "ResponsiveProps"
17399
+ },
17400
+ "declarations": [
17401
+ {
17402
+ "fileName": "src/layout/responsive/Responsive.tsx",
17403
+ "name": "ResponsiveProps"
17404
+ }
17405
+ ],
17406
+ "required": false,
17407
+ "type": {
17408
+ "name": "\"div\" | \"span\""
17409
+ }
17410
+ },
17411
+ "asChild": {
17412
+ "defaultValue": null,
17413
+ "description": "When true, will render element as its child. This merges classes, styles and event handlers.",
17414
+ "name": "asChild",
17415
+ "parent": {
17416
+ "fileName": "src/layout/responsive/Responsive.tsx",
17417
+ "name": "ResponsiveProps"
17418
+ },
17419
+ "declarations": [
17420
+ {
17421
+ "fileName": "src/layout/responsive/Responsive.tsx",
17422
+ "name": "ResponsiveProps"
17423
+ }
17424
+ ],
17425
+ "required": false,
17426
+ "type": {
17427
+ "name": "boolean"
17428
+ }
17429
+ },
17430
+ "className": {
17431
+ "defaultValue": null,
17432
+ "description": "",
17433
+ "name": "className",
17434
+ "parent": {
17435
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17436
+ "name": "HTMLAttributes"
17437
+ },
17438
+ "declarations": [
17439
+ {
17440
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17441
+ "name": "HTMLAttributes"
17442
+ }
17443
+ ],
17444
+ "required": false,
17445
+ "type": {
17446
+ "name": "string"
17447
+ }
17448
+ },
17449
+ "ref": {
17450
+ "defaultValue": null,
17451
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17452
+ "name": "ref",
17453
+ "parent": {
17454
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17455
+ "name": "RefAttributes"
17456
+ },
17457
+ "declarations": [
17458
+ {
17459
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17460
+ "name": "RefAttributes"
17461
+ }
17462
+ ],
17463
+ "required": false,
17464
+ "type": {
17465
+ "name": "Ref<HTMLDivElement>"
17466
+ }
17467
+ }
17468
+ }
17469
+ },
17470
+ {
17471
+ "filePath": "src/layout/sidemal-test/AvatarPanel.tsx",
17472
+ "displayName": "AvatarPanel",
17473
+ "props": {}
17474
+ },
17475
+ {
17476
+ "filePath": "src/layout/stack/HStack.tsx",
17477
+ "displayName": "HStack",
17478
+ "props": {
17479
+ "justify": {
17480
+ "defaultValue": null,
17481
+ "description": "Justify-content",
17482
+ "name": "justify",
17483
+ "parent": {
17484
+ "fileName": "react/src/layout/stack/Stack.tsx",
17485
+ "name": "StackProps"
17486
+ },
17487
+ "declarations": [
17488
+ {
17489
+ "fileName": "react/src/layout/stack/Stack.tsx",
17490
+ "name": "StackProps"
17491
+ }
17492
+ ],
17493
+ "required": false,
17494
+ "type": {
17495
+ "name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\">"
17496
+ }
17497
+ },
17498
+ "align": {
17499
+ "defaultValue": null,
17500
+ "description": "Align-items",
17501
+ "name": "align",
17502
+ "parent": {
17503
+ "fileName": "react/src/layout/stack/Stack.tsx",
17504
+ "name": "StackProps"
17505
+ },
17506
+ "declarations": [
17507
+ {
17508
+ "fileName": "react/src/layout/stack/Stack.tsx",
17509
+ "name": "StackProps"
17510
+ }
17511
+ ],
17512
+ "required": false,
17513
+ "type": {
17514
+ "name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\">"
17515
+ }
17516
+ },
17517
+ "wrap": {
17518
+ "defaultValue": null,
17519
+ "description": "flex-wrap",
17520
+ "name": "wrap",
17521
+ "parent": {
17522
+ "fileName": "react/src/layout/stack/Stack.tsx",
17523
+ "name": "StackProps"
17524
+ },
17525
+ "declarations": [
17526
+ {
17527
+ "fileName": "react/src/layout/stack/Stack.tsx",
17528
+ "name": "StackProps"
17529
+ }
17530
+ ],
17531
+ "required": false,
17532
+ "type": {
17533
+ "name": "boolean"
17534
+ }
17535
+ },
17536
+ "gap": {
17537
+ "defaultValue": null,
17538
+ "description": "@example gap='4'\ngap={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
17539
+ "name": "gap",
17540
+ "parent": {
17541
+ "fileName": "react/src/layout/stack/Stack.tsx",
17542
+ "name": "StackProps"
17543
+ },
17544
+ "declarations": [
17545
+ {
17546
+ "fileName": "react/src/layout/stack/Stack.tsx",
17547
+ "name": "StackProps"
17548
+ }
17549
+ ],
17550
+ "required": false,
17551
+ "type": {
17552
+ "name": "ResponsiveProp<SpacingScale>"
17553
+ }
17554
+ },
17555
+ "className": {
17556
+ "defaultValue": null,
17557
+ "description": "",
17558
+ "name": "className",
17559
+ "parent": {
17560
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17561
+ "name": "HTMLAttributes"
17562
+ },
17563
+ "declarations": [
17564
+ {
17565
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17566
+ "name": "HTMLAttributes"
17567
+ }
17568
+ ],
17569
+ "required": false,
17570
+ "type": {
17571
+ "name": "string"
17572
+ }
17573
+ },
17574
+ "ref": {
17575
+ "defaultValue": null,
17576
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17577
+ "name": "ref",
17578
+ "parent": {
17579
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17580
+ "name": "RefAttributes"
17581
+ },
17582
+ "declarations": [
17583
+ {
17584
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17585
+ "name": "RefAttributes"
17586
+ }
17587
+ ],
17588
+ "required": false,
17589
+ "type": {
17590
+ "name": "Ref<HTMLDivElement>"
17591
+ }
17592
+ }
16946
17593
  }
16947
17594
  },
16948
17595
  {
@@ -16970,7 +17617,7 @@
16970
17617
  ],
16971
17618
  "required": false,
16972
17619
  "type": {
16973
- "name": "\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\""
17620
+ "name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\">"
16974
17621
  }
16975
17622
  },
16976
17623
  "align": {
@@ -16989,7 +17636,7 @@
16989
17636
  ],
16990
17637
  "required": false,
16991
17638
  "type": {
16992
- "name": "\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\""
17639
+ "name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\">"
16993
17640
  }
16994
17641
  },
16995
17642
  "wrap": {
@@ -17033,8 +17680,10 @@
17033
17680
  }
17034
17681
  },
17035
17682
  "direction": {
17036
- "defaultValue": null,
17037
- "description": "",
17683
+ "defaultValue": {
17684
+ "value": "row"
17685
+ },
17686
+ "description": "flex-direction",
17038
17687
  "name": "direction",
17039
17688
  "parent": {
17040
17689
  "fileName": "src/layout/stack/Stack.tsx",
@@ -17046,9 +17695,9 @@
17046
17695
  "name": "StackProps"
17047
17696
  }
17048
17697
  ],
17049
- "required": true,
17698
+ "required": false,
17050
17699
  "type": {
17051
- "name": "\"row\" | \"column\""
17700
+ "name": "ResponsiveProp<\"row\" | \"column\">"
17052
17701
  }
17053
17702
  },
17054
17703
  "className": {
@@ -17056,12 +17705,12 @@
17056
17705
  "description": "",
17057
17706
  "name": "className",
17058
17707
  "parent": {
17059
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17708
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17060
17709
  "name": "HTMLAttributes"
17061
17710
  },
17062
17711
  "declarations": [
17063
17712
  {
17064
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17713
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17065
17714
  "name": "HTMLAttributes"
17066
17715
  }
17067
17716
  ],
@@ -17075,12 +17724,12 @@
17075
17724
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17076
17725
  "name": "ref",
17077
17726
  "parent": {
17078
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17727
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17079
17728
  "name": "RefAttributes"
17080
17729
  },
17081
17730
  "declarations": [
17082
17731
  {
17083
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17732
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17084
17733
  "name": "RefAttributes"
17085
17734
  }
17086
17735
  ],
@@ -17111,7 +17760,7 @@
17111
17760
  ],
17112
17761
  "required": false,
17113
17762
  "type": {
17114
- "name": "\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\""
17763
+ "name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\">"
17115
17764
  }
17116
17765
  },
17117
17766
  "align": {
@@ -17130,7 +17779,7 @@
17130
17779
  ],
17131
17780
  "required": false,
17132
17781
  "type": {
17133
- "name": "\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\""
17782
+ "name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\">"
17134
17783
  }
17135
17784
  },
17136
17785
  "gap": {
@@ -17157,12 +17806,12 @@
17157
17806
  "description": "",
17158
17807
  "name": "className",
17159
17808
  "parent": {
17160
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17809
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17161
17810
  "name": "HTMLAttributes"
17162
17811
  },
17163
17812
  "declarations": [
17164
17813
  {
17165
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17814
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17166
17815
  "name": "HTMLAttributes"
17167
17816
  }
17168
17817
  ],
@@ -17176,12 +17825,12 @@
17176
17825
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17177
17826
  "name": "ref",
17178
17827
  "parent": {
17179
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17828
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17180
17829
  "name": "RefAttributes"
17181
17830
  },
17182
17831
  "declarations": [
17183
17832
  {
17184
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
17833
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17185
17834
  "name": "RefAttributes"
17186
17835
  }
17187
17836
  ],
@@ -17326,7 +17975,7 @@
17326
17975
  ],
17327
17976
  "required": true,
17328
17977
  "type": {
17329
- "name": "Number"
17978
+ "name": "number"
17330
17979
  }
17331
17980
  },
17332
17981
  "left": {
@@ -17345,7 +17994,7 @@
17345
17994
  ],
17346
17995
  "required": true,
17347
17996
  "type": {
17348
- "name": "Number"
17997
+ "name": "number"
17349
17998
  }
17350
17999
  },
17351
18000
  "icon": {
@@ -17570,12 +18219,12 @@
17570
18219
  "description": "",
17571
18220
  "name": "className",
17572
18221
  "parent": {
17573
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18222
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17574
18223
  "name": "HTMLAttributes"
17575
18224
  },
17576
18225
  "declarations": [
17577
18226
  {
17578
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18227
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17579
18228
  "name": "HTMLAttributes"
17580
18229
  }
17581
18230
  ],
@@ -17589,12 +18238,12 @@
17589
18238
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17590
18239
  "name": "ref",
17591
18240
  "parent": {
17592
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18241
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17593
18242
  "name": "RefAttributes"
17594
18243
  },
17595
18244
  "declarations": [
17596
18245
  {
17597
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18246
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17598
18247
  "name": "RefAttributes"
17599
18248
  }
17600
18249
  ],
@@ -17671,12 +18320,12 @@
17671
18320
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17672
18321
  "name": "ref",
17673
18322
  "parent": {
17674
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18323
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17675
18324
  "name": "RefAttributes"
17676
18325
  },
17677
18326
  "declarations": [
17678
18327
  {
17679
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18328
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17680
18329
  "name": "RefAttributes"
17681
18330
  }
17682
18331
  ],
@@ -17696,12 +18345,12 @@
17696
18345
  "description": "",
17697
18346
  "name": "className",
17698
18347
  "parent": {
17699
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18348
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17700
18349
  "name": "HTMLAttributes"
17701
18350
  },
17702
18351
  "declarations": [
17703
18352
  {
17704
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18353
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17705
18354
  "name": "HTMLAttributes"
17706
18355
  }
17707
18356
  ],
@@ -17715,12 +18364,12 @@
17715
18364
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17716
18365
  "name": "ref",
17717
18366
  "parent": {
17718
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18367
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17719
18368
  "name": "RefAttributes"
17720
18369
  },
17721
18370
  "declarations": [
17722
18371
  {
17723
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18372
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17724
18373
  "name": "RefAttributes"
17725
18374
  }
17726
18375
  ],
@@ -17732,20 +18381,187 @@
17732
18381
  }
17733
18382
  },
17734
18383
  {
17735
- "filePath": "src/date/datepicker/caption/Caption.tsx",
18384
+ "filePath": "src/date/datepicker/parts/Caption.tsx",
17736
18385
  "displayName": "DatePickerCaption",
17737
18386
  "props": {}
17738
18387
  },
17739
18388
  {
17740
- "filePath": "src/date/datepicker/caption/Caption.tsx",
18389
+ "filePath": "src/date/datepicker/parts/Caption.tsx",
17741
18390
  "displayName": "Caption",
17742
18391
  "props": {}
17743
18392
  },
17744
18393
  {
17745
- "filePath": "src/date/datepicker/caption/DropdownCaption.tsx",
18394
+ "filePath": "src/date/datepicker/parts/DayButton.tsx",
18395
+ "displayName": "DayButton",
18396
+ "props": {}
18397
+ },
18398
+ {
18399
+ "filePath": "src/date/datepicker/parts/DropdownCaption.tsx",
17746
18400
  "displayName": "DropdownCaption",
17747
18401
  "props": {}
17748
18402
  },
18403
+ {
18404
+ "filePath": "src/date/datepicker/parts/HeadRow.tsx",
18405
+ "displayName": "HeadRow",
18406
+ "props": {}
18407
+ },
18408
+ {
18409
+ "filePath": "src/date/datepicker/parts/HeadRow.tsx",
18410
+ "displayName": "getWeekdays",
18411
+ "props": {}
18412
+ },
18413
+ {
18414
+ "filePath": "src/date/datepicker/parts/Row.tsx",
18415
+ "displayName": "Row",
18416
+ "props": {
18417
+ "displayMonth": {
18418
+ "defaultValue": null,
18419
+ "description": "The month where the row is displayed.",
18420
+ "name": "displayMonth",
18421
+ "parent": {
18422
+ "fileName": "src/date/datepicker/parts/Row.tsx",
18423
+ "name": "RowProps"
18424
+ },
18425
+ "declarations": [
18426
+ {
18427
+ "fileName": "src/date/datepicker/parts/Row.tsx",
18428
+ "name": "RowProps"
18429
+ }
18430
+ ],
18431
+ "required": true,
18432
+ "type": {
18433
+ "name": "Date"
18434
+ }
18435
+ },
18436
+ "weekNumber": {
18437
+ "defaultValue": null,
18438
+ "description": "The number of the week to render.",
18439
+ "name": "weekNumber",
18440
+ "parent": {
18441
+ "fileName": "src/date/datepicker/parts/Row.tsx",
18442
+ "name": "RowProps"
18443
+ },
18444
+ "declarations": [
18445
+ {
18446
+ "fileName": "src/date/datepicker/parts/Row.tsx",
18447
+ "name": "RowProps"
18448
+ }
18449
+ ],
18450
+ "required": true,
18451
+ "type": {
18452
+ "name": "number"
18453
+ }
18454
+ },
18455
+ "dates": {
18456
+ "defaultValue": null,
18457
+ "description": "The days contained in the week.",
18458
+ "name": "dates",
18459
+ "parent": {
18460
+ "fileName": "src/date/datepicker/parts/Row.tsx",
18461
+ "name": "RowProps"
18462
+ },
18463
+ "declarations": [
18464
+ {
18465
+ "fileName": "src/date/datepicker/parts/Row.tsx",
18466
+ "name": "RowProps"
18467
+ }
18468
+ ],
18469
+ "required": true,
18470
+ "type": {
18471
+ "name": "Date[]"
18472
+ }
18473
+ }
18474
+ }
18475
+ },
18476
+ {
18477
+ "filePath": "src/date/datepicker/parts/TableHead.tsx",
18478
+ "displayName": "TableHead",
18479
+ "props": {}
18480
+ },
18481
+ {
18482
+ "filePath": "src/date/datepicker/parts/WeekNumber.tsx",
18483
+ "displayName": "WeekNumber",
18484
+ "props": {
18485
+ "number": {
18486
+ "defaultValue": null,
18487
+ "description": "The number of the week.",
18488
+ "name": "number",
18489
+ "parent": {
18490
+ "fileName": "src/date/datepicker/parts/WeekNumber.tsx",
18491
+ "name": "WeekNumberProps"
18492
+ },
18493
+ "declarations": [
18494
+ {
18495
+ "fileName": "src/date/datepicker/parts/WeekNumber.tsx",
18496
+ "name": "WeekNumberProps"
18497
+ }
18498
+ ],
18499
+ "required": true,
18500
+ "type": {
18501
+ "name": "number"
18502
+ }
18503
+ },
18504
+ "dates": {
18505
+ "defaultValue": null,
18506
+ "description": "The dates in the week.",
18507
+ "name": "dates",
18508
+ "parent": {
18509
+ "fileName": "src/date/datepicker/parts/WeekNumber.tsx",
18510
+ "name": "WeekNumberProps"
18511
+ },
18512
+ "declarations": [
18513
+ {
18514
+ "fileName": "src/date/datepicker/parts/WeekNumber.tsx",
18515
+ "name": "WeekNumberProps"
18516
+ }
18517
+ ],
18518
+ "required": true,
18519
+ "type": {
18520
+ "name": "Date[]"
18521
+ }
18522
+ },
18523
+ "headerVersion": {
18524
+ "defaultValue": null,
18525
+ "description": "",
18526
+ "name": "headerVersion",
18527
+ "parent": {
18528
+ "fileName": "src/date/datepicker/parts/WeekNumber.tsx",
18529
+ "name": "WeekNumberProps"
18530
+ },
18531
+ "declarations": [
18532
+ {
18533
+ "fileName": "src/date/datepicker/parts/WeekNumber.tsx",
18534
+ "name": "WeekNumberProps"
18535
+ }
18536
+ ],
18537
+ "required": false,
18538
+ "type": {
18539
+ "name": "boolean"
18540
+ }
18541
+ }
18542
+ }
18543
+ },
18544
+ {
18545
+ "filePath": "src/date/datepicker/parts/WeekRow.tsx",
18546
+ "displayName": "WeekRow",
18547
+ "props": {
18548
+ "displayMonth": {
18549
+ "defaultValue": null,
18550
+ "description": "",
18551
+ "name": "displayMonth",
18552
+ "declarations": [
18553
+ {
18554
+ "fileName": "src/date/datepicker/parts/WeekRow.tsx",
18555
+ "name": "TypeLiteral"
18556
+ }
18557
+ ],
18558
+ "required": true,
18559
+ "type": {
18560
+ "name": "Date"
18561
+ }
18562
+ }
18563
+ }
18564
+ },
17749
18565
  {
17750
18566
  "filePath": "src/dropdown/Menu/GroupedList/GroupedHeading.tsx",
17751
18567
  "displayName": "GroupedHeading",
@@ -17774,12 +18590,12 @@
17774
18590
  "description": "",
17775
18591
  "name": "className",
17776
18592
  "parent": {
17777
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18593
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17778
18594
  "name": "HTMLAttributes"
17779
18595
  },
17780
18596
  "declarations": [
17781
18597
  {
17782
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18598
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17783
18599
  "name": "HTMLAttributes"
17784
18600
  }
17785
18601
  ],
@@ -17793,12 +18609,12 @@
17793
18609
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17794
18610
  "name": "ref",
17795
18611
  "parent": {
17796
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18612
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17797
18613
  "name": "RefAttributes"
17798
18614
  },
17799
18615
  "declarations": [
17800
18616
  {
17801
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18617
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17802
18618
  "name": "RefAttributes"
17803
18619
  }
17804
18620
  ],
@@ -17837,12 +18653,12 @@
17837
18653
  "description": "",
17838
18654
  "name": "className",
17839
18655
  "parent": {
17840
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18656
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17841
18657
  "name": "HTMLAttributes"
17842
18658
  },
17843
18659
  "declarations": [
17844
18660
  {
17845
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18661
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17846
18662
  "name": "HTMLAttributes"
17847
18663
  }
17848
18664
  ],
@@ -17856,12 +18672,12 @@
17856
18672
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17857
18673
  "name": "ref",
17858
18674
  "parent": {
17859
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18675
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17860
18676
  "name": "RefAttributes"
17861
18677
  },
17862
18678
  "declarations": [
17863
18679
  {
17864
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18680
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17865
18681
  "name": "RefAttributes"
17866
18682
  }
17867
18683
  ],
@@ -17900,12 +18716,12 @@
17900
18716
  "description": "",
17901
18717
  "name": "className",
17902
18718
  "parent": {
17903
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18719
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17904
18720
  "name": "HTMLAttributes"
17905
18721
  },
17906
18722
  "declarations": [
17907
18723
  {
17908
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18724
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17909
18725
  "name": "HTMLAttributes"
17910
18726
  }
17911
18727
  ],
@@ -17919,12 +18735,12 @@
17919
18735
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17920
18736
  "name": "ref",
17921
18737
  "parent": {
17922
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18738
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17923
18739
  "name": "RefAttributes"
17924
18740
  },
17925
18741
  "declarations": [
17926
18742
  {
17927
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18743
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17928
18744
  "name": "RefAttributes"
17929
18745
  }
17930
18746
  ],
@@ -17963,12 +18779,12 @@
17963
18779
  "description": "",
17964
18780
  "name": "className",
17965
18781
  "parent": {
17966
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18782
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17967
18783
  "name": "HTMLAttributes"
17968
18784
  },
17969
18785
  "declarations": [
17970
18786
  {
17971
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18787
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17972
18788
  "name": "HTMLAttributes"
17973
18789
  }
17974
18790
  ],
@@ -17982,12 +18798,12 @@
17982
18798
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
17983
18799
  "name": "ref",
17984
18800
  "parent": {
17985
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18801
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17986
18802
  "name": "RefAttributes"
17987
18803
  },
17988
18804
  "declarations": [
17989
18805
  {
17990
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18806
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
17991
18807
  "name": "RefAttributes"
17992
18808
  }
17993
18809
  ],
@@ -18026,12 +18842,12 @@
18026
18842
  "description": "",
18027
18843
  "name": "className",
18028
18844
  "parent": {
18029
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18845
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18030
18846
  "name": "HTMLAttributes"
18031
18847
  },
18032
18848
  "declarations": [
18033
18849
  {
18034
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18850
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18035
18851
  "name": "HTMLAttributes"
18036
18852
  }
18037
18853
  ],
@@ -18045,12 +18861,12 @@
18045
18861
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
18046
18862
  "name": "ref",
18047
18863
  "parent": {
18048
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18864
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18049
18865
  "name": "RefAttributes"
18050
18866
  },
18051
18867
  "declarations": [
18052
18868
  {
18053
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18869
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18054
18870
  "name": "RefAttributes"
18055
18871
  }
18056
18872
  ],
@@ -18123,12 +18939,12 @@
18123
18939
  "description": "",
18124
18940
  "name": "className",
18125
18941
  "parent": {
18126
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18942
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18127
18943
  "name": "HTMLAttributes"
18128
18944
  },
18129
18945
  "declarations": [
18130
18946
  {
18131
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18947
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18132
18948
  "name": "HTMLAttributes"
18133
18949
  }
18134
18950
  ],
@@ -18137,55 +18953,17 @@
18137
18953
  "name": "string"
18138
18954
  }
18139
18955
  },
18140
- "error": {
18141
- "defaultValue": null,
18142
- "description": "",
18143
- "name": "error",
18144
- "parent": {
18145
- "fileName": "src/form/combobox/Input/Input.tsx",
18146
- "name": "InputProps"
18147
- },
18148
- "declarations": [
18149
- {
18150
- "fileName": "src/form/combobox/Input/Input.tsx",
18151
- "name": "InputProps"
18152
- }
18153
- ],
18154
- "required": false,
18155
- "type": {
18156
- "name": "ReactNode"
18157
- }
18158
- },
18159
- "errorId": {
18160
- "defaultValue": null,
18161
- "description": "",
18162
- "name": "errorId",
18163
- "parent": {
18164
- "fileName": "src/form/combobox/Input/Input.tsx",
18165
- "name": "InputProps"
18166
- },
18167
- "declarations": [
18168
- {
18169
- "fileName": "src/form/combobox/Input/Input.tsx",
18170
- "name": "InputProps"
18171
- }
18172
- ],
18173
- "required": false,
18174
- "type": {
18175
- "name": "string"
18176
- }
18177
- },
18178
18956
  "ref": {
18179
18957
  "defaultValue": null,
18180
18958
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
18181
18959
  "name": "ref",
18182
18960
  "parent": {
18183
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18961
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18184
18962
  "name": "RefAttributes"
18185
18963
  },
18186
18964
  "declarations": [
18187
18965
  {
18188
- "fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
18966
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
18189
18967
  "name": "RefAttributes"
18190
18968
  }
18191
18969
  ],
@@ -18277,5 +19055,70 @@
18277
19055
  }
18278
19056
  }
18279
19057
  }
19058
+ },
19059
+ {
19060
+ "filePath": "src/layout/sidemal-test/content-box/ContentBox.tsx",
19061
+ "displayName": "ContentBox",
19062
+ "props": {
19063
+ "maxWidth": {
19064
+ "defaultValue": {
19065
+ "value": "xl"
19066
+ },
19067
+ "description": "",
19068
+ "name": "maxWidth",
19069
+ "parent": {
19070
+ "fileName": "src/layout/sidemal-test/content-box/ContentBox.tsx",
19071
+ "name": "ContentBoxProps"
19072
+ },
19073
+ "declarations": [
19074
+ {
19075
+ "fileName": "src/layout/sidemal-test/content-box/ContentBox.tsx",
19076
+ "name": "ContentBoxProps"
19077
+ }
19078
+ ],
19079
+ "required": false,
19080
+ "type": {
19081
+ "name": "\"3xl\" | \"2xl\" | \"xl\" | \"lg\""
19082
+ }
19083
+ },
19084
+ "className": {
19085
+ "defaultValue": null,
19086
+ "description": "",
19087
+ "name": "className",
19088
+ "parent": {
19089
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
19090
+ "name": "HTMLAttributes"
19091
+ },
19092
+ "declarations": [
19093
+ {
19094
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
19095
+ "name": "HTMLAttributes"
19096
+ }
19097
+ ],
19098
+ "required": false,
19099
+ "type": {
19100
+ "name": "string"
19101
+ }
19102
+ },
19103
+ "ref": {
19104
+ "defaultValue": null,
19105
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
19106
+ "name": "ref",
19107
+ "parent": {
19108
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
19109
+ "name": "RefAttributes"
19110
+ },
19111
+ "declarations": [
19112
+ {
19113
+ "fileName": "aksel/node_modules/@types/react/index.d.ts",
19114
+ "name": "RefAttributes"
19115
+ }
19116
+ ],
19117
+ "required": false,
19118
+ "type": {
19119
+ "name": "Ref<HTMLDivElement>"
19120
+ }
19121
+ }
19122
+ }
18280
19123
  }
18281
19124
  ]