@navikt/ds-react 4.12.0 → 5.0.0-rc.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.
- package/_docs.json +489 -1169
- package/cjs/badge/Badge.js +47 -0
- package/cjs/badge/NotificationBadge.js +61 -0
- package/cjs/badge/index.js +8 -0
- package/cjs/badge/package.json +6 -0
- package/cjs/date/datepicker/DatePicker.js +1 -1
- package/cjs/date/hooks/useEscape.js +6 -1
- package/cjs/dropdown/Menu/GroupedList/Heading.js +47 -0
- package/cjs/dropdown/Menu/GroupedList/Item.js +54 -0
- package/cjs/form/combobox/ComboboxWrapper.js +3 -3
- package/cjs/grid/ContentContainer.js +47 -0
- package/cjs/layout/box/Box.js +47 -0
- package/cjs/layout/box/index.js +5 -0
- package/cjs/layout/box/package.json +6 -0
- package/cjs/modal/Modal.js +85 -46
- package/cjs/modal/ModalBody.js +46 -0
- package/cjs/modal/ModalContext.js +8 -0
- package/cjs/modal/ModalFooter.js +46 -0
- package/cjs/modal/ModalHeader.js +56 -0
- package/cjs/modal/ModalUtils.js +40 -0
- package/cjs/modal/dialog-polyfill.js +833 -0
- package/cjs/popover/Popover.js +5 -2
- package/cjs/status-badge/NotificationBadge.js +52 -0
- package/cjs/status-badge/index.js +8 -0
- package/cjs/status-badge/package.json +6 -0
- package/cjs/table/DataCell.js +1 -3
- package/cjs/table/ExpandableRow.js +2 -1
- package/cjs/table/HeaderCell.js +1 -4
- package/cjs/table/Table.js +1 -1
- package/cjs/tag/CounterTag.js +69 -0
- package/cjs/tag/NotificationTag.js +53 -0
- package/cjs/timeline/demo.js +120 -0
- package/esm/badge/Badge.d.ts +6 -0
- package/esm/badge/Badge.js +19 -0
- package/esm/badge/Badge.js.map +1 -0
- package/esm/badge/NotificationBadge.d.ts +14 -0
- package/esm/badge/NotificationBadge.js +33 -0
- package/esm/badge/NotificationBadge.js.map +1 -0
- package/esm/badge/index.d.ts +1 -0
- package/esm/badge/index.js +2 -0
- package/esm/badge/index.js.map +1 -0
- package/esm/date/datepicker/DatePicker.d.ts +2 -2
- package/esm/date/datepicker/DatePicker.js +1 -1
- package/esm/date/datepicker/DatePicker.js.map +1 -1
- package/esm/date/hooks/useEscape.d.ts +2 -1
- package/esm/date/hooks/useEscape.js +6 -1
- package/esm/date/hooks/useEscape.js.map +1 -1
- package/esm/dropdown/Menu/GroupedList/Heading.d.ts +9 -0
- package/esm/dropdown/Menu/GroupedList/Heading.js +19 -0
- package/esm/dropdown/Menu/GroupedList/Heading.js.map +1 -0
- package/esm/dropdown/Menu/GroupedList/Item.d.ts +10 -0
- package/esm/dropdown/Menu/GroupedList/Item.js +26 -0
- package/esm/dropdown/Menu/GroupedList/Item.js.map +1 -0
- package/esm/form/Fieldset/useFieldset.d.ts +1 -1
- package/esm/form/checkbox/useCheckbox.d.ts +1 -1
- package/esm/form/combobox/Combobox.d.ts +1 -1
- package/esm/form/combobox/ComboboxWrapper.js +3 -3
- package/esm/form/combobox/ComboboxWrapper.js.map +1 -1
- package/esm/form/radio/useRadio.d.ts +1 -1
- package/esm/grid/ContentContainer.d.ts +9 -0
- package/esm/grid/ContentContainer.js +19 -0
- package/esm/grid/ContentContainer.js.map +1 -0
- package/esm/layout/box/Box.d.ts +8 -0
- package/esm/layout/box/Box.js +19 -0
- package/esm/layout/box/Box.js.map +1 -0
- package/esm/layout/box/index.d.ts +1 -0
- package/esm/layout/box/index.js +2 -0
- package/esm/layout/box/index.js.map +1 -0
- package/esm/modal/Modal.d.ts +76 -51
- package/esm/modal/Modal.js +87 -48
- package/esm/modal/Modal.js.map +1 -1
- package/esm/modal/ModalBody.d.ts +6 -0
- package/esm/modal/ModalBody.js +19 -0
- package/esm/modal/ModalBody.js.map +1 -0
- package/esm/modal/ModalContext.d.ts +6 -0
- package/esm/modal/ModalContext.js +3 -0
- package/esm/modal/ModalContext.js.map +1 -0
- package/esm/modal/ModalFooter.d.ts +6 -0
- package/esm/modal/ModalFooter.js +19 -0
- package/esm/modal/ModalFooter.js.map +1 -0
- package/esm/modal/ModalHeader.d.ts +11 -0
- package/esm/modal/ModalHeader.js +29 -0
- package/esm/modal/ModalHeader.js.map +1 -0
- package/esm/modal/ModalUtils.d.ts +4 -0
- package/esm/modal/ModalUtils.js +33 -0
- package/esm/modal/ModalUtils.js.map +1 -0
- package/esm/modal/dialog-polyfill.d.ts +5 -0
- package/esm/modal/dialog-polyfill.js +832 -0
- package/esm/modal/dialog-polyfill.js.map +1 -0
- package/esm/modal/index.d.ts +3 -1
- package/esm/popover/Popover.js +6 -3
- package/esm/popover/Popover.js.map +1 -1
- package/esm/provider/Provider.d.ts +1 -6
- package/esm/provider/Provider.js.map +1 -1
- package/esm/status-badge/NotificationBadge.d.ts +13 -0
- package/esm/status-badge/NotificationBadge.js +24 -0
- package/esm/status-badge/NotificationBadge.js.map +1 -0
- package/esm/status-badge/index.d.ts +1 -0
- package/esm/status-badge/index.js +2 -0
- package/esm/status-badge/index.js.map +1 -0
- package/esm/table/DataCell.js +2 -4
- package/esm/table/DataCell.js.map +1 -1
- package/esm/table/ExpandableRow.js +2 -1
- package/esm/table/ExpandableRow.js.map +1 -1
- package/esm/table/HeaderCell.js +1 -4
- package/esm/table/HeaderCell.js.map +1 -1
- package/esm/table/Table.d.ts +2 -3
- package/esm/table/Table.js +1 -1
- package/esm/table/Table.js.map +1 -1
- package/esm/tag/CounterTag.d.ts +31 -0
- package/esm/tag/CounterTag.js +41 -0
- package/esm/tag/CounterTag.js.map +1 -0
- package/esm/tag/NotificationTag.d.ts +11 -0
- package/esm/tag/NotificationTag.js +25 -0
- package/esm/tag/NotificationTag.js.map +1 -0
- package/esm/timeline/demo.d.ts +3 -0
- package/esm/timeline/demo.js +96 -0
- package/esm/timeline/demo.js.map +1 -0
- package/esm/util/index.d.ts +1 -1
- package/package.json +4 -7
- package/src/date/datepicker/DatePicker.tsx +3 -3
- package/src/date/hooks/useEscape.tsx +8 -3
- package/src/form/combobox/ComboboxWrapper.tsx +2 -3
- package/src/modal/Modal.tsx +171 -121
- package/src/modal/ModalBody.tsx +14 -0
- package/src/modal/ModalContext.ts +6 -0
- package/src/modal/ModalFooter.tsx +14 -0
- package/src/modal/ModalHeader.tsx +42 -0
- package/src/modal/ModalUtils.ts +37 -0
- package/src/modal/dialog-polyfill.ts +980 -0
- package/src/modal/index.ts +3 -1
- package/src/modal/modal.stories.tsx +142 -59
- package/src/popover/Popover.tsx +6 -2
- package/src/provider/Provider.tsx +1 -6
- package/src/table/DataCell.tsx +1 -5
- package/src/table/ExpandableRow.tsx +2 -1
- package/src/table/HeaderCell.tsx +1 -5
- package/src/table/Table.tsx +3 -4
- package/src/table/stories/table-expandable.stories.tsx +37 -1
- package/src/table/stories/table.stories.tsx +4 -1
- package/src/modal/ModalContent.tsx +0 -26
package/_docs.json
CHANGED
|
@@ -111,12 +111,12 @@
|
|
|
111
111
|
"description": "",
|
|
112
112
|
"name": "className",
|
|
113
113
|
"parent": {
|
|
114
|
-
"fileName": "
|
|
114
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
115
115
|
"name": "HTMLAttributes"
|
|
116
116
|
},
|
|
117
117
|
"declarations": [
|
|
118
118
|
{
|
|
119
|
-
"fileName": "
|
|
119
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
133
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
134
134
|
"name": "RefAttributes"
|
|
135
135
|
},
|
|
136
136
|
"declarations": [
|
|
137
137
|
{
|
|
138
|
-
"fileName": "
|
|
138
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
177
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
178
178
|
"name": "HTMLAttributes"
|
|
179
179
|
},
|
|
180
180
|
"declarations": [
|
|
181
181
|
{
|
|
182
|
-
"fileName": "
|
|
182
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
196
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
197
197
|
"name": "RefAttributes"
|
|
198
198
|
},
|
|
199
199
|
"declarations": [
|
|
200
200
|
{
|
|
201
|
-
"fileName": "
|
|
201
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
240
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
241
241
|
"name": "HTMLAttributes"
|
|
242
242
|
},
|
|
243
243
|
"declarations": [
|
|
244
244
|
{
|
|
245
|
-
"fileName": "
|
|
245
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
259
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
260
260
|
"name": "RefAttributes"
|
|
261
261
|
},
|
|
262
262
|
"declarations": [
|
|
263
263
|
{
|
|
264
|
-
"fileName": "
|
|
264
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
343
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
344
344
|
"name": "HTMLAttributes"
|
|
345
345
|
},
|
|
346
346
|
"declarations": [
|
|
347
347
|
{
|
|
348
|
-
"fileName": "
|
|
348
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
362
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
363
363
|
"name": "RefAttributes"
|
|
364
364
|
},
|
|
365
365
|
"declarations": [
|
|
366
366
|
{
|
|
367
|
-
"fileName": "
|
|
367
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
528
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
529
529
|
"name": "HTMLAttributes"
|
|
530
530
|
},
|
|
531
531
|
"declarations": [
|
|
532
532
|
{
|
|
533
|
-
"fileName": "
|
|
533
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
547
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
548
548
|
"name": "RefAttributes"
|
|
549
549
|
},
|
|
550
550
|
"declarations": [
|
|
551
551
|
{
|
|
552
|
-
"fileName": "
|
|
552
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
713
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
714
714
|
"name": "HTMLAttributes"
|
|
715
715
|
},
|
|
716
716
|
"declarations": [
|
|
717
717
|
{
|
|
718
|
-
"fileName": "
|
|
718
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
732
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
733
733
|
"name": "RefAttributes"
|
|
734
734
|
},
|
|
735
735
|
"declarations": [
|
|
736
736
|
{
|
|
737
|
-
"fileName": "
|
|
737
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
852
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
853
853
|
"name": "HTMLAttributes"
|
|
854
854
|
},
|
|
855
855
|
"declarations": [
|
|
856
856
|
{
|
|
857
|
-
"fileName": "
|
|
857
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
871
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
872
872
|
"name": "RefAttributes"
|
|
873
873
|
},
|
|
874
874
|
"declarations": [
|
|
875
875
|
{
|
|
876
|
-
"fileName": "
|
|
876
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
1094
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1095
1095
|
"name": "HTMLAttributes"
|
|
1096
1096
|
},
|
|
1097
1097
|
"declarations": [
|
|
1098
1098
|
{
|
|
1099
|
-
"fileName": "
|
|
1099
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
1113
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1114
1114
|
"name": "RefAttributes"
|
|
1115
1115
|
},
|
|
1116
1116
|
"declarations": [
|
|
1117
1117
|
{
|
|
1118
|
-
"fileName": "
|
|
1118
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
1159
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1160
1160
|
"name": "HTMLAttributes"
|
|
1161
1161
|
},
|
|
1162
1162
|
"declarations": [
|
|
1163
1163
|
{
|
|
1164
|
-
"fileName": "
|
|
1164
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
1178
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1179
1179
|
"name": "RefAttributes"
|
|
1180
1180
|
},
|
|
1181
1181
|
"declarations": [
|
|
1182
1182
|
{
|
|
1183
|
-
"fileName": "
|
|
1183
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/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": "
|
|
1264
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1265
1265
|
"name": "HTMLAttributes"
|
|
1266
1266
|
},
|
|
1267
1267
|
"declarations": [
|
|
1268
1268
|
{
|
|
1269
|
-
"fileName": "
|
|
1269
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1270
1270
|
"name": "HTMLAttributes"
|
|
1271
1271
|
}
|
|
1272
1272
|
],
|
|
@@ -1280,117 +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": "
|
|
1283
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1284
1284
|
"name": "RefAttributes"
|
|
1285
1285
|
},
|
|
1286
1286
|
"declarations": [
|
|
1287
1287
|
{
|
|
1288
|
-
"fileName": "
|
|
1289
|
-
"name": "RefAttributes"
|
|
1290
|
-
}
|
|
1291
|
-
],
|
|
1292
|
-
"required": false,
|
|
1293
|
-
"type": {
|
|
1294
|
-
"name": "Ref<HTMLButtonElement>"
|
|
1295
|
-
}
|
|
1296
|
-
}
|
|
1297
|
-
}
|
|
1298
|
-
},
|
|
1299
|
-
{
|
|
1300
|
-
"filePath": "src/chips/Removable.tsx",
|
|
1301
|
-
"displayName": "Removable",
|
|
1302
|
-
"props": {
|
|
1303
|
-
"variant": {
|
|
1304
|
-
"defaultValue": {
|
|
1305
|
-
"value": "action"
|
|
1306
|
-
},
|
|
1307
|
-
"description": "Chip-variants",
|
|
1308
|
-
"name": "variant",
|
|
1309
|
-
"parent": {
|
|
1310
|
-
"fileName": "src/chips/Removable.tsx",
|
|
1311
|
-
"name": "RemovableChipsProps"
|
|
1312
|
-
},
|
|
1313
|
-
"declarations": [
|
|
1314
|
-
{
|
|
1315
|
-
"fileName": "src/chips/Removable.tsx",
|
|
1316
|
-
"name": "RemovableChipsProps"
|
|
1317
|
-
}
|
|
1318
|
-
],
|
|
1319
|
-
"required": false,
|
|
1320
|
-
"type": {
|
|
1321
|
-
"name": "\"action\" | \"neutral\""
|
|
1322
|
-
}
|
|
1323
|
-
},
|
|
1324
|
-
"removeLabel": {
|
|
1325
|
-
"defaultValue": {
|
|
1326
|
-
"value": "slett"
|
|
1327
|
-
},
|
|
1328
|
-
"description": "Replaces label read for screen-readers",
|
|
1329
|
-
"name": "removeLabel",
|
|
1330
|
-
"parent": {
|
|
1331
|
-
"fileName": "src/chips/Removable.tsx",
|
|
1332
|
-
"name": "RemovableChipsProps"
|
|
1333
|
-
},
|
|
1334
|
-
"declarations": [
|
|
1335
|
-
{
|
|
1336
|
-
"fileName": "src/chips/Removable.tsx",
|
|
1337
|
-
"name": "RemovableChipsProps"
|
|
1338
|
-
}
|
|
1339
|
-
],
|
|
1340
|
-
"required": false,
|
|
1341
|
-
"type": {
|
|
1342
|
-
"name": "string"
|
|
1343
|
-
}
|
|
1344
|
-
},
|
|
1345
|
-
"onDelete": {
|
|
1346
|
-
"defaultValue": null,
|
|
1347
|
-
"description": "Click callback",
|
|
1348
|
-
"name": "onDelete",
|
|
1349
|
-
"parent": {
|
|
1350
|
-
"fileName": "src/chips/Removable.tsx",
|
|
1351
|
-
"name": "RemovableChipsProps"
|
|
1352
|
-
},
|
|
1353
|
-
"declarations": [
|
|
1354
|
-
{
|
|
1355
|
-
"fileName": "src/chips/Removable.tsx",
|
|
1356
|
-
"name": "RemovableChipsProps"
|
|
1357
|
-
}
|
|
1358
|
-
],
|
|
1359
|
-
"required": false,
|
|
1360
|
-
"type": {
|
|
1361
|
-
"name": "(() => void)"
|
|
1362
|
-
}
|
|
1363
|
-
},
|
|
1364
|
-
"className": {
|
|
1365
|
-
"defaultValue": null,
|
|
1366
|
-
"description": "",
|
|
1367
|
-
"name": "className",
|
|
1368
|
-
"parent": {
|
|
1369
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1370
|
-
"name": "HTMLAttributes"
|
|
1371
|
-
},
|
|
1372
|
-
"declarations": [
|
|
1373
|
-
{
|
|
1374
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1375
|
-
"name": "HTMLAttributes"
|
|
1376
|
-
}
|
|
1377
|
-
],
|
|
1378
|
-
"required": false,
|
|
1379
|
-
"type": {
|
|
1380
|
-
"name": "string"
|
|
1381
|
-
}
|
|
1382
|
-
},
|
|
1383
|
-
"ref": {
|
|
1384
|
-
"defaultValue": null,
|
|
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
|
-
"name": "ref",
|
|
1387
|
-
"parent": {
|
|
1388
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1389
|
-
"name": "RefAttributes"
|
|
1390
|
-
},
|
|
1391
|
-
"declarations": [
|
|
1392
|
-
{
|
|
1393
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1288
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1394
1289
|
"name": "RefAttributes"
|
|
1395
1290
|
}
|
|
1396
1291
|
],
|
|
@@ -1471,12 +1366,12 @@
|
|
|
1471
1366
|
"description": "",
|
|
1472
1367
|
"name": "className",
|
|
1473
1368
|
"parent": {
|
|
1474
|
-
"fileName": "
|
|
1369
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1475
1370
|
"name": "HTMLAttributes"
|
|
1476
1371
|
},
|
|
1477
1372
|
"declarations": [
|
|
1478
1373
|
{
|
|
1479
|
-
"fileName": "
|
|
1374
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1480
1375
|
"name": "HTMLAttributes"
|
|
1481
1376
|
}
|
|
1482
1377
|
],
|
|
@@ -1490,12 +1385,12 @@
|
|
|
1490
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",
|
|
1491
1386
|
"name": "ref",
|
|
1492
1387
|
"parent": {
|
|
1493
|
-
"fileName": "
|
|
1388
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1494
1389
|
"name": "RefAttributes"
|
|
1495
1390
|
},
|
|
1496
1391
|
"declarations": [
|
|
1497
1392
|
{
|
|
1498
|
-
"fileName": "
|
|
1393
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1499
1394
|
"name": "RefAttributes"
|
|
1500
1395
|
}
|
|
1501
1396
|
],
|
|
@@ -1735,38 +1630,17 @@
|
|
|
1735
1630
|
"name": "string"
|
|
1736
1631
|
}
|
|
1737
1632
|
},
|
|
1738
|
-
"iconPosition": {
|
|
1739
|
-
"defaultValue": {
|
|
1740
|
-
"value": "left"
|
|
1741
|
-
},
|
|
1742
|
-
"description": "Icon position in Button",
|
|
1743
|
-
"name": "iconPosition",
|
|
1744
|
-
"parent": {
|
|
1745
|
-
"fileName": "src/copybutton/CopyButton.tsx",
|
|
1746
|
-
"name": "CopyButtonProps"
|
|
1747
|
-
},
|
|
1748
|
-
"declarations": [
|
|
1749
|
-
{
|
|
1750
|
-
"fileName": "src/copybutton/CopyButton.tsx",
|
|
1751
|
-
"name": "CopyButtonProps"
|
|
1752
|
-
}
|
|
1753
|
-
],
|
|
1754
|
-
"required": false,
|
|
1755
|
-
"type": {
|
|
1756
|
-
"name": "\"left\" | \"right\""
|
|
1757
|
-
}
|
|
1758
|
-
},
|
|
1759
1633
|
"className": {
|
|
1760
1634
|
"defaultValue": null,
|
|
1761
1635
|
"description": "",
|
|
1762
1636
|
"name": "className",
|
|
1763
1637
|
"parent": {
|
|
1764
|
-
"fileName": "
|
|
1638
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1765
1639
|
"name": "HTMLAttributes"
|
|
1766
1640
|
},
|
|
1767
1641
|
"declarations": [
|
|
1768
1642
|
{
|
|
1769
|
-
"fileName": "
|
|
1643
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1770
1644
|
"name": "HTMLAttributes"
|
|
1771
1645
|
}
|
|
1772
1646
|
],
|
|
@@ -1780,12 +1654,12 @@
|
|
|
1780
1654
|
"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
1655
|
"name": "ref",
|
|
1782
1656
|
"parent": {
|
|
1783
|
-
"fileName": "
|
|
1657
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1784
1658
|
"name": "RefAttributes"
|
|
1785
1659
|
},
|
|
1786
1660
|
"declarations": [
|
|
1787
1661
|
{
|
|
1788
|
-
"fileName": "
|
|
1662
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
1789
1663
|
"name": "RefAttributes"
|
|
1790
1664
|
}
|
|
1791
1665
|
],
|
|
@@ -1999,12 +1873,12 @@
|
|
|
1999
1873
|
"description": "",
|
|
2000
1874
|
"name": "className",
|
|
2001
1875
|
"parent": {
|
|
2002
|
-
"fileName": "
|
|
1876
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2003
1877
|
"name": "HTMLAttributes"
|
|
2004
1878
|
},
|
|
2005
1879
|
"declarations": [
|
|
2006
1880
|
{
|
|
2007
|
-
"fileName": "
|
|
1881
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2008
1882
|
"name": "HTMLAttributes"
|
|
2009
1883
|
}
|
|
2010
1884
|
],
|
|
@@ -2018,12 +1892,12 @@
|
|
|
2018
1892
|
"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
1893
|
"name": "ref",
|
|
2020
1894
|
"parent": {
|
|
2021
|
-
"fileName": "
|
|
1895
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2022
1896
|
"name": "RefAttributes"
|
|
2023
1897
|
},
|
|
2024
1898
|
"declarations": [
|
|
2025
1899
|
{
|
|
2026
|
-
"fileName": "
|
|
1900
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2027
1901
|
"name": "RefAttributes"
|
|
2028
1902
|
}
|
|
2029
1903
|
],
|
|
@@ -2237,12 +2111,12 @@
|
|
|
2237
2111
|
"description": "",
|
|
2238
2112
|
"name": "className",
|
|
2239
2113
|
"parent": {
|
|
2240
|
-
"fileName": "
|
|
2114
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2241
2115
|
"name": "HTMLAttributes"
|
|
2242
2116
|
},
|
|
2243
2117
|
"declarations": [
|
|
2244
2118
|
{
|
|
2245
|
-
"fileName": "
|
|
2119
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2246
2120
|
"name": "HTMLAttributes"
|
|
2247
2121
|
}
|
|
2248
2122
|
],
|
|
@@ -2256,12 +2130,12 @@
|
|
|
2256
2130
|
"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
2131
|
"name": "ref",
|
|
2258
2132
|
"parent": {
|
|
2259
|
-
"fileName": "
|
|
2133
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2260
2134
|
"name": "RefAttributes"
|
|
2261
2135
|
},
|
|
2262
2136
|
"declarations": [
|
|
2263
2137
|
{
|
|
2264
|
-
"fileName": "
|
|
2138
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2265
2139
|
"name": "RefAttributes"
|
|
2266
2140
|
}
|
|
2267
2141
|
],
|
|
@@ -2386,12 +2260,12 @@
|
|
|
2386
2260
|
"description": "",
|
|
2387
2261
|
"name": "className",
|
|
2388
2262
|
"parent": {
|
|
2389
|
-
"fileName": "
|
|
2263
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2390
2264
|
"name": "HTMLAttributes"
|
|
2391
2265
|
},
|
|
2392
2266
|
"declarations": [
|
|
2393
2267
|
{
|
|
2394
|
-
"fileName": "
|
|
2268
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2395
2269
|
"name": "HTMLAttributes"
|
|
2396
2270
|
}
|
|
2397
2271
|
],
|
|
@@ -2405,12 +2279,12 @@
|
|
|
2405
2279
|
"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
2280
|
"name": "ref",
|
|
2407
2281
|
"parent": {
|
|
2408
|
-
"fileName": "
|
|
2282
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2409
2283
|
"name": "RefAttributes"
|
|
2410
2284
|
},
|
|
2411
2285
|
"declarations": [
|
|
2412
2286
|
{
|
|
2413
|
-
"fileName": "
|
|
2287
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2414
2288
|
"name": "RefAttributes"
|
|
2415
2289
|
}
|
|
2416
2290
|
],
|
|
@@ -2510,12 +2384,12 @@
|
|
|
2510
2384
|
"description": "",
|
|
2511
2385
|
"name": "className",
|
|
2512
2386
|
"parent": {
|
|
2513
|
-
"fileName": "
|
|
2387
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2514
2388
|
"name": "HTMLAttributes"
|
|
2515
2389
|
},
|
|
2516
2390
|
"declarations": [
|
|
2517
2391
|
{
|
|
2518
|
-
"fileName": "
|
|
2392
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2519
2393
|
"name": "HTMLAttributes"
|
|
2520
2394
|
}
|
|
2521
2395
|
],
|
|
@@ -2529,12 +2403,12 @@
|
|
|
2529
2403
|
"description": "Defines a string value that labels the current element.\nShould be set if not using 'aria-labelledby'\n@see aria-labelledby.",
|
|
2530
2404
|
"name": "aria-label",
|
|
2531
2405
|
"parent": {
|
|
2532
|
-
"fileName": "
|
|
2406
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2533
2407
|
"name": "AriaAttributes"
|
|
2534
2408
|
},
|
|
2535
2409
|
"declarations": [
|
|
2536
2410
|
{
|
|
2537
|
-
"fileName": "
|
|
2411
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2538
2412
|
"name": "AriaAttributes"
|
|
2539
2413
|
},
|
|
2540
2414
|
{
|
|
@@ -2542,7 +2416,7 @@
|
|
|
2542
2416
|
"name": "TypeLiteral"
|
|
2543
2417
|
},
|
|
2544
2418
|
{
|
|
2545
|
-
"fileName": "
|
|
2419
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2546
2420
|
"name": "AriaAttributes"
|
|
2547
2421
|
}
|
|
2548
2422
|
],
|
|
@@ -2556,16 +2430,16 @@
|
|
|
2556
2430
|
"description": "Identifies the element (or elements) that labels the current element.\nShould be set if not using 'aria-label'\n@see aria-describedby.",
|
|
2557
2431
|
"name": "aria-labelledby",
|
|
2558
2432
|
"parent": {
|
|
2559
|
-
"fileName": "
|
|
2433
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2560
2434
|
"name": "AriaAttributes"
|
|
2561
2435
|
},
|
|
2562
2436
|
"declarations": [
|
|
2563
2437
|
{
|
|
2564
|
-
"fileName": "
|
|
2438
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2565
2439
|
"name": "AriaAttributes"
|
|
2566
2440
|
},
|
|
2567
2441
|
{
|
|
2568
|
-
"fileName": "
|
|
2442
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2569
2443
|
"name": "AriaAttributes"
|
|
2570
2444
|
},
|
|
2571
2445
|
{
|
|
@@ -2583,12 +2457,12 @@
|
|
|
2583
2457
|
"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
2458
|
"name": "ref",
|
|
2585
2459
|
"parent": {
|
|
2586
|
-
"fileName": "
|
|
2460
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2587
2461
|
"name": "RefAttributes"
|
|
2588
2462
|
},
|
|
2589
2463
|
"declarations": [
|
|
2590
2464
|
{
|
|
2591
|
-
"fileName": "
|
|
2465
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2592
2466
|
"name": "RefAttributes"
|
|
2593
2467
|
}
|
|
2594
2468
|
],
|
|
@@ -2608,12 +2482,12 @@
|
|
|
2608
2482
|
"description": "",
|
|
2609
2483
|
"name": "className",
|
|
2610
2484
|
"parent": {
|
|
2611
|
-
"fileName": "
|
|
2485
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2612
2486
|
"name": "HTMLAttributes"
|
|
2613
2487
|
},
|
|
2614
2488
|
"declarations": [
|
|
2615
2489
|
{
|
|
2616
|
-
"fileName": "
|
|
2490
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2617
2491
|
"name": "HTMLAttributes"
|
|
2618
2492
|
}
|
|
2619
2493
|
],
|
|
@@ -2627,12 +2501,12 @@
|
|
|
2627
2501
|
"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
2502
|
"name": "ref",
|
|
2629
2503
|
"parent": {
|
|
2630
|
-
"fileName": "
|
|
2504
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2631
2505
|
"name": "RefAttributes"
|
|
2632
2506
|
},
|
|
2633
2507
|
"declarations": [
|
|
2634
2508
|
{
|
|
2635
|
-
"fileName": "
|
|
2509
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2636
2510
|
"name": "RefAttributes"
|
|
2637
2511
|
}
|
|
2638
2512
|
],
|
|
@@ -2652,12 +2526,12 @@
|
|
|
2652
2526
|
"description": "",
|
|
2653
2527
|
"name": "className",
|
|
2654
2528
|
"parent": {
|
|
2655
|
-
"fileName": "
|
|
2529
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2656
2530
|
"name": "HTMLAttributes"
|
|
2657
2531
|
},
|
|
2658
2532
|
"declarations": [
|
|
2659
2533
|
{
|
|
2660
|
-
"fileName": "
|
|
2534
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2661
2535
|
"name": "HTMLAttributes"
|
|
2662
2536
|
}
|
|
2663
2537
|
],
|
|
@@ -2671,12 +2545,12 @@
|
|
|
2671
2545
|
"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
2546
|
"name": "ref",
|
|
2673
2547
|
"parent": {
|
|
2674
|
-
"fileName": "
|
|
2548
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2675
2549
|
"name": "RefAttributes"
|
|
2676
2550
|
},
|
|
2677
2551
|
"declarations": [
|
|
2678
2552
|
{
|
|
2679
|
-
"fileName": "
|
|
2553
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2680
2554
|
"name": "RefAttributes"
|
|
2681
2555
|
}
|
|
2682
2556
|
],
|
|
@@ -2696,12 +2570,12 @@
|
|
|
2696
2570
|
"description": "",
|
|
2697
2571
|
"name": "className",
|
|
2698
2572
|
"parent": {
|
|
2699
|
-
"fileName": "
|
|
2573
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2700
2574
|
"name": "HTMLAttributes"
|
|
2701
2575
|
},
|
|
2702
2576
|
"declarations": [
|
|
2703
2577
|
{
|
|
2704
|
-
"fileName": "
|
|
2578
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2705
2579
|
"name": "HTMLAttributes"
|
|
2706
2580
|
}
|
|
2707
2581
|
],
|
|
@@ -2715,12 +2589,12 @@
|
|
|
2715
2589
|
"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
2590
|
"name": "ref",
|
|
2717
2591
|
"parent": {
|
|
2718
|
-
"fileName": "
|
|
2592
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2719
2593
|
"name": "RefAttributes"
|
|
2720
2594
|
},
|
|
2721
2595
|
"declarations": [
|
|
2722
2596
|
{
|
|
2723
|
-
"fileName": "
|
|
2597
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2724
2598
|
"name": "RefAttributes"
|
|
2725
2599
|
}
|
|
2726
2600
|
],
|
|
@@ -2761,12 +2635,12 @@
|
|
|
2761
2635
|
"description": "",
|
|
2762
2636
|
"name": "className",
|
|
2763
2637
|
"parent": {
|
|
2764
|
-
"fileName": "
|
|
2638
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2765
2639
|
"name": "HTMLAttributes"
|
|
2766
2640
|
},
|
|
2767
2641
|
"declarations": [
|
|
2768
2642
|
{
|
|
2769
|
-
"fileName": "
|
|
2643
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2770
2644
|
"name": "HTMLAttributes"
|
|
2771
2645
|
}
|
|
2772
2646
|
],
|
|
@@ -2780,12 +2654,12 @@
|
|
|
2780
2654
|
"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
2655
|
"name": "ref",
|
|
2782
2656
|
"parent": {
|
|
2783
|
-
"fileName": "
|
|
2657
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2784
2658
|
"name": "RefAttributes"
|
|
2785
2659
|
},
|
|
2786
2660
|
"declarations": [
|
|
2787
2661
|
{
|
|
2788
|
-
"fileName": "
|
|
2662
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2789
2663
|
"name": "RefAttributes"
|
|
2790
2664
|
}
|
|
2791
2665
|
],
|
|
@@ -2881,12 +2755,12 @@
|
|
|
2881
2755
|
"description": "",
|
|
2882
2756
|
"name": "className",
|
|
2883
2757
|
"parent": {
|
|
2884
|
-
"fileName": "
|
|
2758
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2885
2759
|
"name": "HTMLAttributes"
|
|
2886
2760
|
},
|
|
2887
2761
|
"declarations": [
|
|
2888
2762
|
{
|
|
2889
|
-
"fileName": "
|
|
2763
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2890
2764
|
"name": "HTMLAttributes"
|
|
2891
2765
|
}
|
|
2892
2766
|
],
|
|
@@ -2995,12 +2869,12 @@
|
|
|
2995
2869
|
"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
2870
|
"name": "ref",
|
|
2997
2871
|
"parent": {
|
|
2998
|
-
"fileName": "
|
|
2872
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
2999
2873
|
"name": "RefAttributes"
|
|
3000
2874
|
},
|
|
3001
2875
|
"declarations": [
|
|
3002
2876
|
{
|
|
3003
|
-
"fileName": "
|
|
2877
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3004
2878
|
"name": "RefAttributes"
|
|
3005
2879
|
}
|
|
3006
2880
|
],
|
|
@@ -3286,12 +3160,12 @@
|
|
|
3286
3160
|
"description": "",
|
|
3287
3161
|
"name": "className",
|
|
3288
3162
|
"parent": {
|
|
3289
|
-
"fileName": "
|
|
3163
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3290
3164
|
"name": "HTMLAttributes"
|
|
3291
3165
|
},
|
|
3292
3166
|
"declarations": [
|
|
3293
3167
|
{
|
|
3294
|
-
"fileName": "
|
|
3168
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3295
3169
|
"name": "HTMLAttributes"
|
|
3296
3170
|
}
|
|
3297
3171
|
],
|
|
@@ -3305,12 +3179,12 @@
|
|
|
3305
3179
|
"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
3180
|
"name": "ref",
|
|
3307
3181
|
"parent": {
|
|
3308
|
-
"fileName": "
|
|
3182
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3309
3183
|
"name": "RefAttributes"
|
|
3310
3184
|
},
|
|
3311
3185
|
"declarations": [
|
|
3312
3186
|
{
|
|
3313
|
-
"fileName": "
|
|
3187
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3314
3188
|
"name": "RefAttributes"
|
|
3315
3189
|
}
|
|
3316
3190
|
],
|
|
@@ -3503,12 +3377,12 @@
|
|
|
3503
3377
|
"description": "",
|
|
3504
3378
|
"name": "className",
|
|
3505
3379
|
"parent": {
|
|
3506
|
-
"fileName": "
|
|
3380
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3507
3381
|
"name": "HTMLAttributes"
|
|
3508
3382
|
},
|
|
3509
3383
|
"declarations": [
|
|
3510
3384
|
{
|
|
3511
|
-
"fileName": "
|
|
3385
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3512
3386
|
"name": "HTMLAttributes"
|
|
3513
3387
|
}
|
|
3514
3388
|
],
|
|
@@ -3522,12 +3396,12 @@
|
|
|
3522
3396
|
"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
3397
|
"name": "ref",
|
|
3524
3398
|
"parent": {
|
|
3525
|
-
"fileName": "
|
|
3399
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3526
3400
|
"name": "RefAttributes"
|
|
3527
3401
|
},
|
|
3528
3402
|
"declarations": [
|
|
3529
3403
|
{
|
|
3530
|
-
"fileName": "
|
|
3404
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3531
3405
|
"name": "RefAttributes"
|
|
3532
3406
|
}
|
|
3533
3407
|
],
|
|
@@ -3655,7 +3529,7 @@
|
|
|
3655
3529
|
],
|
|
3656
3530
|
"required": false,
|
|
3657
3531
|
"type": {
|
|
3658
|
-
"name": "\"number\" | \"email\" | \"password\" | \"tel\" | \"text\" | \"url\"
|
|
3532
|
+
"name": "\"number\" | \"email\" | \"password\" | \"tel\" | \"text\" | \"url\""
|
|
3659
3533
|
}
|
|
3660
3534
|
},
|
|
3661
3535
|
"error": {
|
|
@@ -3796,12 +3670,12 @@
|
|
|
3796
3670
|
"description": "",
|
|
3797
3671
|
"name": "className",
|
|
3798
3672
|
"parent": {
|
|
3799
|
-
"fileName": "
|
|
3673
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3800
3674
|
"name": "HTMLAttributes"
|
|
3801
3675
|
},
|
|
3802
3676
|
"declarations": [
|
|
3803
3677
|
{
|
|
3804
|
-
"fileName": "
|
|
3678
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3805
3679
|
"name": "HTMLAttributes"
|
|
3806
3680
|
}
|
|
3807
3681
|
],
|
|
@@ -3815,12 +3689,12 @@
|
|
|
3815
3689
|
"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
3690
|
"name": "ref",
|
|
3817
3691
|
"parent": {
|
|
3818
|
-
"fileName": "
|
|
3692
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3819
3693
|
"name": "RefAttributes"
|
|
3820
3694
|
},
|
|
3821
3695
|
"declarations": [
|
|
3822
3696
|
{
|
|
3823
|
-
"fileName": "
|
|
3697
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
3824
3698
|
"name": "RefAttributes"
|
|
3825
3699
|
}
|
|
3826
3700
|
],
|
|
@@ -4144,12 +4018,12 @@
|
|
|
4144
4018
|
"description": "",
|
|
4145
4019
|
"name": "className",
|
|
4146
4020
|
"parent": {
|
|
4147
|
-
"fileName": "
|
|
4021
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4148
4022
|
"name": "HTMLAttributes"
|
|
4149
4023
|
},
|
|
4150
4024
|
"declarations": [
|
|
4151
4025
|
{
|
|
4152
|
-
"fileName": "
|
|
4026
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4153
4027
|
"name": "HTMLAttributes"
|
|
4154
4028
|
}
|
|
4155
4029
|
],
|
|
@@ -4163,12 +4037,12 @@
|
|
|
4163
4037
|
"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
4038
|
"name": "ref",
|
|
4165
4039
|
"parent": {
|
|
4166
|
-
"fileName": "
|
|
4040
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4167
4041
|
"name": "RefAttributes"
|
|
4168
4042
|
},
|
|
4169
4043
|
"declarations": [
|
|
4170
4044
|
{
|
|
4171
|
-
"fileName": "
|
|
4045
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4172
4046
|
"name": "RefAttributes"
|
|
4173
4047
|
}
|
|
4174
4048
|
],
|
|
@@ -4325,12 +4199,75 @@
|
|
|
4325
4199
|
"description": "",
|
|
4326
4200
|
"name": "className",
|
|
4327
4201
|
"parent": {
|
|
4328
|
-
"fileName": "
|
|
4202
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4203
|
+
"name": "HTMLAttributes"
|
|
4204
|
+
},
|
|
4205
|
+
"declarations": [
|
|
4206
|
+
{
|
|
4207
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4208
|
+
"name": "HTMLAttributes"
|
|
4209
|
+
}
|
|
4210
|
+
],
|
|
4211
|
+
"required": false,
|
|
4212
|
+
"type": {
|
|
4213
|
+
"name": "string"
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
4216
|
+
"ref": {
|
|
4217
|
+
"defaultValue": null,
|
|
4218
|
+
"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",
|
|
4219
|
+
"name": "ref",
|
|
4220
|
+
"parent": {
|
|
4221
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4222
|
+
"name": "RefAttributes"
|
|
4223
|
+
},
|
|
4224
|
+
"declarations": [
|
|
4225
|
+
{
|
|
4226
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4227
|
+
"name": "RefAttributes"
|
|
4228
|
+
}
|
|
4229
|
+
],
|
|
4230
|
+
"required": false,
|
|
4231
|
+
"type": {
|
|
4232
|
+
"name": "Ref<HTMLDivElement>"
|
|
4233
|
+
}
|
|
4234
|
+
}
|
|
4235
|
+
}
|
|
4236
|
+
},
|
|
4237
|
+
{
|
|
4238
|
+
"filePath": "src/grid/ContentContainer.tsx",
|
|
4239
|
+
"displayName": "ContentContainer",
|
|
4240
|
+
"props": {
|
|
4241
|
+
"children": {
|
|
4242
|
+
"defaultValue": null,
|
|
4243
|
+
"description": "ContentContainer content",
|
|
4244
|
+
"name": "children",
|
|
4245
|
+
"parent": {
|
|
4246
|
+
"fileName": "src/grid/ContentContainer.tsx",
|
|
4247
|
+
"name": "ContentContainerProps"
|
|
4248
|
+
},
|
|
4249
|
+
"declarations": [
|
|
4250
|
+
{
|
|
4251
|
+
"fileName": "src/grid/ContentContainer.tsx",
|
|
4252
|
+
"name": "ContentContainerProps"
|
|
4253
|
+
}
|
|
4254
|
+
],
|
|
4255
|
+
"required": true,
|
|
4256
|
+
"type": {
|
|
4257
|
+
"name": "ReactNode"
|
|
4258
|
+
}
|
|
4259
|
+
},
|
|
4260
|
+
"className": {
|
|
4261
|
+
"defaultValue": null,
|
|
4262
|
+
"description": "",
|
|
4263
|
+
"name": "className",
|
|
4264
|
+
"parent": {
|
|
4265
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4329
4266
|
"name": "HTMLAttributes"
|
|
4330
4267
|
},
|
|
4331
4268
|
"declarations": [
|
|
4332
4269
|
{
|
|
4333
|
-
"fileName": "
|
|
4270
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4334
4271
|
"name": "HTMLAttributes"
|
|
4335
4272
|
}
|
|
4336
4273
|
],
|
|
@@ -4344,12 +4281,12 @@
|
|
|
4344
4281
|
"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
4282
|
"name": "ref",
|
|
4346
4283
|
"parent": {
|
|
4347
|
-
"fileName": "
|
|
4284
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4348
4285
|
"name": "RefAttributes"
|
|
4349
4286
|
},
|
|
4350
4287
|
"declarations": [
|
|
4351
4288
|
{
|
|
4352
|
-
"fileName": "
|
|
4289
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4353
4290
|
"name": "RefAttributes"
|
|
4354
4291
|
}
|
|
4355
4292
|
],
|
|
@@ -4388,12 +4325,12 @@
|
|
|
4388
4325
|
"description": "",
|
|
4389
4326
|
"name": "className",
|
|
4390
4327
|
"parent": {
|
|
4391
|
-
"fileName": "
|
|
4328
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4392
4329
|
"name": "HTMLAttributes"
|
|
4393
4330
|
},
|
|
4394
4331
|
"declarations": [
|
|
4395
4332
|
{
|
|
4396
|
-
"fileName": "
|
|
4333
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4397
4334
|
"name": "HTMLAttributes"
|
|
4398
4335
|
}
|
|
4399
4336
|
],
|
|
@@ -4407,12 +4344,12 @@
|
|
|
4407
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",
|
|
4408
4345
|
"name": "ref",
|
|
4409
4346
|
"parent": {
|
|
4410
|
-
"fileName": "
|
|
4347
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4411
4348
|
"name": "RefAttributes"
|
|
4412
4349
|
},
|
|
4413
4350
|
"declarations": [
|
|
4414
4351
|
{
|
|
4415
|
-
"fileName": "
|
|
4352
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4416
4353
|
"name": "RefAttributes"
|
|
4417
4354
|
}
|
|
4418
4355
|
],
|
|
@@ -4472,12 +4409,12 @@
|
|
|
4472
4409
|
"description": "",
|
|
4473
4410
|
"name": "className",
|
|
4474
4411
|
"parent": {
|
|
4475
|
-
"fileName": "
|
|
4412
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4476
4413
|
"name": "HTMLAttributes"
|
|
4477
4414
|
},
|
|
4478
4415
|
"declarations": [
|
|
4479
4416
|
{
|
|
4480
|
-
"fileName": "
|
|
4417
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4481
4418
|
"name": "HTMLAttributes"
|
|
4482
4419
|
}
|
|
4483
4420
|
],
|
|
@@ -4491,12 +4428,12 @@
|
|
|
4491
4428
|
"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",
|
|
4492
4429
|
"name": "ref",
|
|
4493
4430
|
"parent": {
|
|
4494
|
-
"fileName": "
|
|
4431
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4495
4432
|
"name": "RefAttributes"
|
|
4496
4433
|
},
|
|
4497
4434
|
"declarations": [
|
|
4498
4435
|
{
|
|
4499
|
-
"fileName": "
|
|
4436
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4500
4437
|
"name": "RefAttributes"
|
|
4501
4438
|
}
|
|
4502
4439
|
],
|
|
@@ -4575,12 +4512,12 @@
|
|
|
4575
4512
|
"description": "",
|
|
4576
4513
|
"name": "className",
|
|
4577
4514
|
"parent": {
|
|
4578
|
-
"fileName": "
|
|
4515
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4579
4516
|
"name": "HTMLAttributes"
|
|
4580
4517
|
},
|
|
4581
4518
|
"declarations": [
|
|
4582
4519
|
{
|
|
4583
|
-
"fileName": "
|
|
4520
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4584
4521
|
"name": "HTMLAttributes"
|
|
4585
4522
|
}
|
|
4586
4523
|
],
|
|
@@ -4594,12 +4531,12 @@
|
|
|
4594
4531
|
"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",
|
|
4595
4532
|
"name": "ref",
|
|
4596
4533
|
"parent": {
|
|
4597
|
-
"fileName": "
|
|
4534
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4598
4535
|
"name": "RefAttributes"
|
|
4599
4536
|
},
|
|
4600
4537
|
"declarations": [
|
|
4601
4538
|
{
|
|
4602
|
-
"fileName": "
|
|
4539
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4603
4540
|
"name": "RefAttributes"
|
|
4604
4541
|
}
|
|
4605
4542
|
],
|
|
@@ -4680,12 +4617,12 @@
|
|
|
4680
4617
|
"description": "",
|
|
4681
4618
|
"name": "className",
|
|
4682
4619
|
"parent": {
|
|
4683
|
-
"fileName": "
|
|
4620
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4684
4621
|
"name": "HTMLAttributes"
|
|
4685
4622
|
},
|
|
4686
4623
|
"declarations": [
|
|
4687
4624
|
{
|
|
4688
|
-
"fileName": "
|
|
4625
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4689
4626
|
"name": "HTMLAttributes"
|
|
4690
4627
|
}
|
|
4691
4628
|
],
|
|
@@ -4720,12 +4657,12 @@
|
|
|
4720
4657
|
"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",
|
|
4721
4658
|
"name": "ref",
|
|
4722
4659
|
"parent": {
|
|
4723
|
-
"fileName": "
|
|
4660
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4724
4661
|
"name": "RefAttributes"
|
|
4725
4662
|
},
|
|
4726
4663
|
"declarations": [
|
|
4727
4664
|
{
|
|
4728
|
-
"fileName": "
|
|
4665
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4729
4666
|
"name": "RefAttributes"
|
|
4730
4667
|
}
|
|
4731
4668
|
],
|
|
@@ -4783,12 +4720,12 @@
|
|
|
4783
4720
|
"description": "",
|
|
4784
4721
|
"name": "className",
|
|
4785
4722
|
"parent": {
|
|
4786
|
-
"fileName": "
|
|
4723
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4787
4724
|
"name": "HTMLAttributes"
|
|
4788
4725
|
},
|
|
4789
4726
|
"declarations": [
|
|
4790
4727
|
{
|
|
4791
|
-
"fileName": "
|
|
4728
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4792
4729
|
"name": "HTMLAttributes"
|
|
4793
4730
|
}
|
|
4794
4731
|
],
|
|
@@ -4802,12 +4739,12 @@
|
|
|
4802
4739
|
"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",
|
|
4803
4740
|
"name": "ref",
|
|
4804
4741
|
"parent": {
|
|
4805
|
-
"fileName": "
|
|
4742
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4806
4743
|
"name": "RefAttributes"
|
|
4807
4744
|
},
|
|
4808
4745
|
"declarations": [
|
|
4809
4746
|
{
|
|
4810
|
-
"fileName": "
|
|
4747
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4811
4748
|
"name": "RefAttributes"
|
|
4812
4749
|
}
|
|
4813
4750
|
],
|
|
@@ -4846,12 +4783,12 @@
|
|
|
4846
4783
|
"description": "",
|
|
4847
4784
|
"name": "className",
|
|
4848
4785
|
"parent": {
|
|
4849
|
-
"fileName": "
|
|
4786
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4850
4787
|
"name": "HTMLAttributes"
|
|
4851
4788
|
},
|
|
4852
4789
|
"declarations": [
|
|
4853
4790
|
{
|
|
4854
|
-
"fileName": "
|
|
4791
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4855
4792
|
"name": "HTMLAttributes"
|
|
4856
4793
|
}
|
|
4857
4794
|
],
|
|
@@ -4865,12 +4802,12 @@
|
|
|
4865
4802
|
"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",
|
|
4866
4803
|
"name": "ref",
|
|
4867
4804
|
"parent": {
|
|
4868
|
-
"fileName": "
|
|
4805
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4869
4806
|
"name": "RefAttributes"
|
|
4870
4807
|
},
|
|
4871
4808
|
"declarations": [
|
|
4872
4809
|
{
|
|
4873
|
-
"fileName": "
|
|
4810
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4874
4811
|
"name": "RefAttributes"
|
|
4875
4812
|
}
|
|
4876
4813
|
],
|
|
@@ -4909,12 +4846,12 @@
|
|
|
4909
4846
|
"description": "",
|
|
4910
4847
|
"name": "className",
|
|
4911
4848
|
"parent": {
|
|
4912
|
-
"fileName": "
|
|
4849
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4913
4850
|
"name": "HTMLAttributes"
|
|
4914
4851
|
},
|
|
4915
4852
|
"declarations": [
|
|
4916
4853
|
{
|
|
4917
|
-
"fileName": "
|
|
4854
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4918
4855
|
"name": "HTMLAttributes"
|
|
4919
4856
|
}
|
|
4920
4857
|
],
|
|
@@ -4928,12 +4865,12 @@
|
|
|
4928
4865
|
"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",
|
|
4929
4866
|
"name": "ref",
|
|
4930
4867
|
"parent": {
|
|
4931
|
-
"fileName": "
|
|
4868
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4932
4869
|
"name": "RefAttributes"
|
|
4933
4870
|
},
|
|
4934
4871
|
"declarations": [
|
|
4935
4872
|
{
|
|
4936
|
-
"fileName": "
|
|
4873
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4937
4874
|
"name": "RefAttributes"
|
|
4938
4875
|
}
|
|
4939
4876
|
],
|
|
@@ -4991,12 +4928,12 @@
|
|
|
4991
4928
|
"description": "",
|
|
4992
4929
|
"name": "className",
|
|
4993
4930
|
"parent": {
|
|
4994
|
-
"fileName": "
|
|
4931
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
4995
4932
|
"name": "HTMLAttributes"
|
|
4996
4933
|
},
|
|
4997
4934
|
"declarations": [
|
|
4998
4935
|
{
|
|
4999
|
-
"fileName": "
|
|
4936
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5000
4937
|
"name": "HTMLAttributes"
|
|
5001
4938
|
}
|
|
5002
4939
|
],
|
|
@@ -5010,12 +4947,12 @@
|
|
|
5010
4947
|
"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",
|
|
5011
4948
|
"name": "ref",
|
|
5012
4949
|
"parent": {
|
|
5013
|
-
"fileName": "
|
|
4950
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5014
4951
|
"name": "RefAttributes"
|
|
5015
4952
|
},
|
|
5016
4953
|
"declarations": [
|
|
5017
4954
|
{
|
|
5018
|
-
"fileName": "
|
|
4955
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5019
4956
|
"name": "RefAttributes"
|
|
5020
4957
|
}
|
|
5021
4958
|
],
|
|
@@ -5073,12 +5010,12 @@
|
|
|
5073
5010
|
"description": "",
|
|
5074
5011
|
"name": "className",
|
|
5075
5012
|
"parent": {
|
|
5076
|
-
"fileName": "
|
|
5013
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5077
5014
|
"name": "HTMLAttributes"
|
|
5078
5015
|
},
|
|
5079
5016
|
"declarations": [
|
|
5080
5017
|
{
|
|
5081
|
-
"fileName": "
|
|
5018
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5082
5019
|
"name": "HTMLAttributes"
|
|
5083
5020
|
}
|
|
5084
5021
|
],
|
|
@@ -5092,12 +5029,12 @@
|
|
|
5092
5029
|
"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",
|
|
5093
5030
|
"name": "ref",
|
|
5094
5031
|
"parent": {
|
|
5095
|
-
"fileName": "
|
|
5032
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5096
5033
|
"name": "RefAttributes"
|
|
5097
5034
|
},
|
|
5098
5035
|
"declarations": [
|
|
5099
5036
|
{
|
|
5100
|
-
"fileName": "
|
|
5037
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5101
5038
|
"name": "RefAttributes"
|
|
5102
5039
|
}
|
|
5103
5040
|
],
|
|
@@ -5112,69 +5049,6 @@
|
|
|
5112
5049
|
"filePath": "src/link/Link.tsx",
|
|
5113
5050
|
"displayName": "Link",
|
|
5114
5051
|
"props": {
|
|
5115
|
-
"underline": {
|
|
5116
|
-
"defaultValue": {
|
|
5117
|
-
"value": "true"
|
|
5118
|
-
},
|
|
5119
|
-
"description": "Inverts when the underline appears. If this is false,\nthe underline does not appear by default, but does appear when the link is hovered.\nThis makes it more suitable for use when inlined in text.",
|
|
5120
|
-
"name": "underline",
|
|
5121
|
-
"parent": {
|
|
5122
|
-
"fileName": "src/link/Link.tsx",
|
|
5123
|
-
"name": "LinkProps"
|
|
5124
|
-
},
|
|
5125
|
-
"declarations": [
|
|
5126
|
-
{
|
|
5127
|
-
"fileName": "src/link/Link.tsx",
|
|
5128
|
-
"name": "LinkProps"
|
|
5129
|
-
}
|
|
5130
|
-
],
|
|
5131
|
-
"required": false,
|
|
5132
|
-
"type": {
|
|
5133
|
-
"name": "boolean"
|
|
5134
|
-
}
|
|
5135
|
-
},
|
|
5136
|
-
"inlineText": {
|
|
5137
|
-
"defaultValue": {
|
|
5138
|
-
"value": "false"
|
|
5139
|
-
},
|
|
5140
|
-
"description": "Renders link with `display: inline` for better wrapping in text.",
|
|
5141
|
-
"name": "inlineText",
|
|
5142
|
-
"parent": {
|
|
5143
|
-
"fileName": "src/link/Link.tsx",
|
|
5144
|
-
"name": "LinkProps"
|
|
5145
|
-
},
|
|
5146
|
-
"declarations": [
|
|
5147
|
-
{
|
|
5148
|
-
"fileName": "src/link/Link.tsx",
|
|
5149
|
-
"name": "LinkProps"
|
|
5150
|
-
}
|
|
5151
|
-
],
|
|
5152
|
-
"required": false,
|
|
5153
|
-
"type": {
|
|
5154
|
-
"name": "boolean"
|
|
5155
|
-
}
|
|
5156
|
-
},
|
|
5157
|
-
"variant": {
|
|
5158
|
-
"defaultValue": {
|
|
5159
|
-
"value": "action"
|
|
5160
|
-
},
|
|
5161
|
-
"description": "Variant of the component to use.",
|
|
5162
|
-
"name": "variant",
|
|
5163
|
-
"parent": {
|
|
5164
|
-
"fileName": "src/link/Link.tsx",
|
|
5165
|
-
"name": "LinkProps"
|
|
5166
|
-
},
|
|
5167
|
-
"declarations": [
|
|
5168
|
-
{
|
|
5169
|
-
"fileName": "src/link/Link.tsx",
|
|
5170
|
-
"name": "LinkProps"
|
|
5171
|
-
}
|
|
5172
|
-
],
|
|
5173
|
-
"required": false,
|
|
5174
|
-
"type": {
|
|
5175
|
-
"name": "\"action\" | \"neutral\" | \"subtle\""
|
|
5176
|
-
}
|
|
5177
|
-
},
|
|
5178
5052
|
"children": {
|
|
5179
5053
|
"defaultValue": null,
|
|
5180
5054
|
"description": "Link text",
|
|
@@ -5199,12 +5073,12 @@
|
|
|
5199
5073
|
"description": "",
|
|
5200
5074
|
"name": "className",
|
|
5201
5075
|
"parent": {
|
|
5202
|
-
"fileName": "
|
|
5076
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5203
5077
|
"name": "HTMLAttributes"
|
|
5204
5078
|
},
|
|
5205
5079
|
"declarations": [
|
|
5206
5080
|
{
|
|
5207
|
-
"fileName": "
|
|
5081
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5208
5082
|
"name": "HTMLAttributes"
|
|
5209
5083
|
}
|
|
5210
5084
|
],
|
|
@@ -5218,12 +5092,12 @@
|
|
|
5218
5092
|
"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
5093
|
"name": "ref",
|
|
5220
5094
|
"parent": {
|
|
5221
|
-
"fileName": "
|
|
5095
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5222
5096
|
"name": "RefAttributes"
|
|
5223
5097
|
},
|
|
5224
5098
|
"declarations": [
|
|
5225
5099
|
{
|
|
5226
|
-
"fileName": "
|
|
5100
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5227
5101
|
"name": "RefAttributes"
|
|
5228
5102
|
}
|
|
5229
5103
|
],
|
|
@@ -5283,12 +5157,12 @@
|
|
|
5283
5157
|
"description": "",
|
|
5284
5158
|
"name": "className",
|
|
5285
5159
|
"parent": {
|
|
5286
|
-
"fileName": "
|
|
5160
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5287
5161
|
"name": "HTMLAttributes"
|
|
5288
5162
|
},
|
|
5289
5163
|
"declarations": [
|
|
5290
5164
|
{
|
|
5291
|
-
"fileName": "
|
|
5165
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5292
5166
|
"name": "HTMLAttributes"
|
|
5293
5167
|
}
|
|
5294
5168
|
],
|
|
@@ -5302,12 +5176,12 @@
|
|
|
5302
5176
|
"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",
|
|
5303
5177
|
"name": "ref",
|
|
5304
5178
|
"parent": {
|
|
5305
|
-
"fileName": "
|
|
5179
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5306
5180
|
"name": "RefAttributes"
|
|
5307
5181
|
},
|
|
5308
5182
|
"declarations": [
|
|
5309
5183
|
{
|
|
5310
|
-
"fileName": "
|
|
5184
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5311
5185
|
"name": "RefAttributes"
|
|
5312
5186
|
}
|
|
5313
5187
|
],
|
|
@@ -5327,12 +5201,12 @@
|
|
|
5327
5201
|
"description": "",
|
|
5328
5202
|
"name": "className",
|
|
5329
5203
|
"parent": {
|
|
5330
|
-
"fileName": "
|
|
5204
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5331
5205
|
"name": "HTMLAttributes"
|
|
5332
5206
|
},
|
|
5333
5207
|
"declarations": [
|
|
5334
5208
|
{
|
|
5335
|
-
"fileName": "
|
|
5209
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5336
5210
|
"name": "HTMLAttributes"
|
|
5337
5211
|
}
|
|
5338
5212
|
],
|
|
@@ -5346,12 +5220,12 @@
|
|
|
5346
5220
|
"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",
|
|
5347
5221
|
"name": "ref",
|
|
5348
5222
|
"parent": {
|
|
5349
|
-
"fileName": "
|
|
5223
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5350
5224
|
"name": "RefAttributes"
|
|
5351
5225
|
},
|
|
5352
5226
|
"declarations": [
|
|
5353
5227
|
{
|
|
5354
|
-
"fileName": "
|
|
5228
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5355
5229
|
"name": "RefAttributes"
|
|
5356
5230
|
}
|
|
5357
5231
|
],
|
|
@@ -5371,12 +5245,12 @@
|
|
|
5371
5245
|
"description": "",
|
|
5372
5246
|
"name": "className",
|
|
5373
5247
|
"parent": {
|
|
5374
|
-
"fileName": "
|
|
5248
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5375
5249
|
"name": "HTMLAttributes"
|
|
5376
5250
|
},
|
|
5377
5251
|
"declarations": [
|
|
5378
5252
|
{
|
|
5379
|
-
"fileName": "
|
|
5253
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5380
5254
|
"name": "HTMLAttributes"
|
|
5381
5255
|
}
|
|
5382
5256
|
],
|
|
@@ -5390,12 +5264,12 @@
|
|
|
5390
5264
|
"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",
|
|
5391
5265
|
"name": "ref",
|
|
5392
5266
|
"parent": {
|
|
5393
|
-
"fileName": "
|
|
5267
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5394
5268
|
"name": "RefAttributes"
|
|
5395
5269
|
},
|
|
5396
5270
|
"declarations": [
|
|
5397
5271
|
{
|
|
5398
|
-
"fileName": "
|
|
5272
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5399
5273
|
"name": "RefAttributes"
|
|
5400
5274
|
}
|
|
5401
5275
|
],
|
|
@@ -5490,38 +5364,17 @@
|
|
|
5490
5364
|
"name": "ElementType<any>"
|
|
5491
5365
|
}
|
|
5492
5366
|
},
|
|
5493
|
-
"size": {
|
|
5494
|
-
"defaultValue": {
|
|
5495
|
-
"value": "medium"
|
|
5496
|
-
},
|
|
5497
|
-
"description": "Changes padding, height and font-size",
|
|
5498
|
-
"name": "size",
|
|
5499
|
-
"parent": {
|
|
5500
|
-
"fileName": "src/list/List.tsx",
|
|
5501
|
-
"name": "ListProps"
|
|
5502
|
-
},
|
|
5503
|
-
"declarations": [
|
|
5504
|
-
{
|
|
5505
|
-
"fileName": "src/list/List.tsx",
|
|
5506
|
-
"name": "ListProps"
|
|
5507
|
-
}
|
|
5508
|
-
],
|
|
5509
|
-
"required": false,
|
|
5510
|
-
"type": {
|
|
5511
|
-
"name": "\"medium\" | \"small\""
|
|
5512
|
-
}
|
|
5513
|
-
},
|
|
5514
5367
|
"className": {
|
|
5515
5368
|
"defaultValue": null,
|
|
5516
5369
|
"description": "",
|
|
5517
5370
|
"name": "className",
|
|
5518
5371
|
"parent": {
|
|
5519
|
-
"fileName": "
|
|
5372
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5520
5373
|
"name": "HTMLAttributes"
|
|
5521
5374
|
},
|
|
5522
5375
|
"declarations": [
|
|
5523
5376
|
{
|
|
5524
|
-
"fileName": "
|
|
5377
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5525
5378
|
"name": "HTMLAttributes"
|
|
5526
5379
|
}
|
|
5527
5380
|
],
|
|
@@ -5598,12 +5451,12 @@
|
|
|
5598
5451
|
"description": "",
|
|
5599
5452
|
"name": "className",
|
|
5600
5453
|
"parent": {
|
|
5601
|
-
"fileName": "
|
|
5454
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5602
5455
|
"name": "HTMLAttributes"
|
|
5603
5456
|
},
|
|
5604
5457
|
"declarations": [
|
|
5605
5458
|
{
|
|
5606
|
-
"fileName": "
|
|
5459
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5607
5460
|
"name": "HTMLAttributes"
|
|
5608
5461
|
}
|
|
5609
5462
|
],
|
|
@@ -5617,12 +5470,12 @@
|
|
|
5617
5470
|
"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",
|
|
5618
5471
|
"name": "ref",
|
|
5619
5472
|
"parent": {
|
|
5620
|
-
"fileName": "
|
|
5473
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5621
5474
|
"name": "RefAttributes"
|
|
5622
5475
|
},
|
|
5623
5476
|
"declarations": [
|
|
5624
5477
|
{
|
|
5625
|
-
"fileName": "
|
|
5478
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5626
5479
|
"name": "RefAttributes"
|
|
5627
5480
|
}
|
|
5628
5481
|
],
|
|
@@ -5726,12 +5579,12 @@
|
|
|
5726
5579
|
"description": "",
|
|
5727
5580
|
"name": "className",
|
|
5728
5581
|
"parent": {
|
|
5729
|
-
"fileName": "
|
|
5582
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5730
5583
|
"name": "SVGAttributes"
|
|
5731
5584
|
},
|
|
5732
5585
|
"declarations": [
|
|
5733
5586
|
{
|
|
5734
|
-
"fileName": "
|
|
5587
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5735
5588
|
"name": "SVGAttributes"
|
|
5736
5589
|
}
|
|
5737
5590
|
],
|
|
@@ -5745,16 +5598,16 @@
|
|
|
5745
5598
|
"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",
|
|
5746
5599
|
"name": "ref",
|
|
5747
5600
|
"parent": {
|
|
5748
|
-
"fileName": "
|
|
5601
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5749
5602
|
"name": "ClassAttributes"
|
|
5750
5603
|
},
|
|
5751
5604
|
"declarations": [
|
|
5752
5605
|
{
|
|
5753
|
-
"fileName": "
|
|
5606
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5754
5607
|
"name": "ClassAttributes"
|
|
5755
5608
|
},
|
|
5756
5609
|
{
|
|
5757
|
-
"fileName": "
|
|
5610
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
5758
5611
|
"name": "RefAttributes"
|
|
5759
5612
|
}
|
|
5760
5613
|
],
|
|
@@ -6044,12 +5897,12 @@
|
|
|
6044
5897
|
"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",
|
|
6045
5898
|
"name": "ref",
|
|
6046
5899
|
"parent": {
|
|
6047
|
-
"fileName": "
|
|
5900
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6048
5901
|
"name": "RefAttributes"
|
|
6049
5902
|
},
|
|
6050
5903
|
"declarations": [
|
|
6051
5904
|
{
|
|
6052
|
-
"fileName": "
|
|
5905
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6053
5906
|
"name": "RefAttributes"
|
|
6054
5907
|
}
|
|
6055
5908
|
],
|
|
@@ -6088,12 +5941,12 @@
|
|
|
6088
5941
|
"description": "",
|
|
6089
5942
|
"name": "className",
|
|
6090
5943
|
"parent": {
|
|
6091
|
-
"fileName": "
|
|
5944
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6092
5945
|
"name": "HTMLAttributes"
|
|
6093
5946
|
},
|
|
6094
5947
|
"declarations": [
|
|
6095
5948
|
{
|
|
6096
|
-
"fileName": "
|
|
5949
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6097
5950
|
"name": "HTMLAttributes"
|
|
6098
5951
|
}
|
|
6099
5952
|
],
|
|
@@ -6107,12 +5960,12 @@
|
|
|
6107
5960
|
"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",
|
|
6108
5961
|
"name": "ref",
|
|
6109
5962
|
"parent": {
|
|
6110
|
-
"fileName": "
|
|
5963
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6111
5964
|
"name": "RefAttributes"
|
|
6112
5965
|
},
|
|
6113
5966
|
"declarations": [
|
|
6114
5967
|
{
|
|
6115
|
-
"fileName": "
|
|
5968
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6116
5969
|
"name": "RefAttributes"
|
|
6117
5970
|
}
|
|
6118
5971
|
],
|
|
@@ -6340,12 +6193,12 @@
|
|
|
6340
6193
|
"description": "",
|
|
6341
6194
|
"name": "className",
|
|
6342
6195
|
"parent": {
|
|
6343
|
-
"fileName": "
|
|
6196
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6344
6197
|
"name": "HTMLAttributes"
|
|
6345
6198
|
},
|
|
6346
6199
|
"declarations": [
|
|
6347
6200
|
{
|
|
6348
|
-
"fileName": "
|
|
6201
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6349
6202
|
"name": "HTMLAttributes"
|
|
6350
6203
|
}
|
|
6351
6204
|
],
|
|
@@ -6359,12 +6212,12 @@
|
|
|
6359
6212
|
"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",
|
|
6360
6213
|
"name": "ref",
|
|
6361
6214
|
"parent": {
|
|
6362
|
-
"fileName": "
|
|
6215
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6363
6216
|
"name": "RefAttributes"
|
|
6364
6217
|
},
|
|
6365
6218
|
"declarations": [
|
|
6366
6219
|
{
|
|
6367
|
-
"fileName": "
|
|
6220
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6368
6221
|
"name": "RefAttributes"
|
|
6369
6222
|
}
|
|
6370
6223
|
],
|
|
@@ -6565,12 +6418,12 @@
|
|
|
6565
6418
|
"description": "",
|
|
6566
6419
|
"name": "className",
|
|
6567
6420
|
"parent": {
|
|
6568
|
-
"fileName": "
|
|
6421
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6569
6422
|
"name": "HTMLAttributes"
|
|
6570
6423
|
},
|
|
6571
6424
|
"declarations": [
|
|
6572
6425
|
{
|
|
6573
|
-
"fileName": "
|
|
6426
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6574
6427
|
"name": "HTMLAttributes"
|
|
6575
6428
|
}
|
|
6576
6429
|
],
|
|
@@ -6584,12 +6437,12 @@
|
|
|
6584
6437
|
"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",
|
|
6585
6438
|
"name": "ref",
|
|
6586
6439
|
"parent": {
|
|
6587
|
-
"fileName": "
|
|
6440
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6588
6441
|
"name": "RefAttributes"
|
|
6589
6442
|
},
|
|
6590
6443
|
"declarations": [
|
|
6591
6444
|
{
|
|
6592
|
-
"fileName": "
|
|
6445
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6593
6446
|
"name": "RefAttributes"
|
|
6594
6447
|
}
|
|
6595
6448
|
],
|
|
@@ -6649,12 +6502,12 @@
|
|
|
6649
6502
|
"description": "",
|
|
6650
6503
|
"name": "className",
|
|
6651
6504
|
"parent": {
|
|
6652
|
-
"fileName": "
|
|
6505
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6653
6506
|
"name": "HTMLAttributes"
|
|
6654
6507
|
},
|
|
6655
6508
|
"declarations": [
|
|
6656
6509
|
{
|
|
6657
|
-
"fileName": "
|
|
6510
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6658
6511
|
"name": "HTMLAttributes"
|
|
6659
6512
|
}
|
|
6660
6513
|
],
|
|
@@ -6668,12 +6521,12 @@
|
|
|
6668
6521
|
"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",
|
|
6669
6522
|
"name": "ref",
|
|
6670
6523
|
"parent": {
|
|
6671
|
-
"fileName": "
|
|
6524
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6672
6525
|
"name": "RefAttributes"
|
|
6673
6526
|
},
|
|
6674
6527
|
"declarations": [
|
|
6675
6528
|
{
|
|
6676
|
-
"fileName": "
|
|
6529
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6677
6530
|
"name": "RefAttributes"
|
|
6678
6531
|
}
|
|
6679
6532
|
],
|
|
@@ -6874,12 +6727,12 @@
|
|
|
6874
6727
|
"description": "",
|
|
6875
6728
|
"name": "className",
|
|
6876
6729
|
"parent": {
|
|
6877
|
-
"fileName": "
|
|
6730
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6878
6731
|
"name": "HTMLAttributes"
|
|
6879
6732
|
},
|
|
6880
6733
|
"declarations": [
|
|
6881
6734
|
{
|
|
6882
|
-
"fileName": "
|
|
6735
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6883
6736
|
"name": "HTMLAttributes"
|
|
6884
6737
|
}
|
|
6885
6738
|
],
|
|
@@ -6893,12 +6746,12 @@
|
|
|
6893
6746
|
"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",
|
|
6894
6747
|
"name": "ref",
|
|
6895
6748
|
"parent": {
|
|
6896
|
-
"fileName": "
|
|
6749
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6897
6750
|
"name": "RefAttributes"
|
|
6898
6751
|
},
|
|
6899
6752
|
"declarations": [
|
|
6900
6753
|
{
|
|
6901
|
-
"fileName": "
|
|
6754
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6902
6755
|
"name": "RefAttributes"
|
|
6903
6756
|
}
|
|
6904
6757
|
],
|
|
@@ -6918,12 +6771,12 @@
|
|
|
6918
6771
|
"description": "",
|
|
6919
6772
|
"name": "className",
|
|
6920
6773
|
"parent": {
|
|
6921
|
-
"fileName": "
|
|
6774
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6922
6775
|
"name": "HTMLAttributes"
|
|
6923
6776
|
},
|
|
6924
6777
|
"declarations": [
|
|
6925
6778
|
{
|
|
6926
|
-
"fileName": "
|
|
6779
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6927
6780
|
"name": "HTMLAttributes"
|
|
6928
6781
|
}
|
|
6929
6782
|
],
|
|
@@ -6937,12 +6790,12 @@
|
|
|
6937
6790
|
"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",
|
|
6938
6791
|
"name": "ref",
|
|
6939
6792
|
"parent": {
|
|
6940
|
-
"fileName": "
|
|
6793
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6941
6794
|
"name": "RefAttributes"
|
|
6942
6795
|
},
|
|
6943
6796
|
"declarations": [
|
|
6944
6797
|
{
|
|
6945
|
-
"fileName": "
|
|
6798
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
6946
6799
|
"name": "RefAttributes"
|
|
6947
6800
|
}
|
|
6948
6801
|
],
|
|
@@ -7105,12 +6958,12 @@
|
|
|
7105
6958
|
"description": "",
|
|
7106
6959
|
"name": "className",
|
|
7107
6960
|
"parent": {
|
|
7108
|
-
"fileName": "
|
|
6961
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7109
6962
|
"name": "HTMLAttributes"
|
|
7110
6963
|
},
|
|
7111
6964
|
"declarations": [
|
|
7112
6965
|
{
|
|
7113
|
-
"fileName": "
|
|
6966
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7114
6967
|
"name": "HTMLAttributes"
|
|
7115
6968
|
}
|
|
7116
6969
|
],
|
|
@@ -7124,12 +6977,12 @@
|
|
|
7124
6977
|
"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",
|
|
7125
6978
|
"name": "ref",
|
|
7126
6979
|
"parent": {
|
|
7127
|
-
"fileName": "
|
|
6980
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7128
6981
|
"name": "RefAttributes"
|
|
7129
6982
|
},
|
|
7130
6983
|
"declarations": [
|
|
7131
6984
|
{
|
|
7132
|
-
"fileName": "
|
|
6985
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7133
6986
|
"name": "RefAttributes"
|
|
7134
6987
|
}
|
|
7135
6988
|
],
|
|
@@ -7208,12 +7061,12 @@
|
|
|
7208
7061
|
"description": "",
|
|
7209
7062
|
"name": "className",
|
|
7210
7063
|
"parent": {
|
|
7211
|
-
"fileName": "
|
|
7064
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7212
7065
|
"name": "HTMLAttributes"
|
|
7213
7066
|
},
|
|
7214
7067
|
"declarations": [
|
|
7215
7068
|
{
|
|
7216
|
-
"fileName": "
|
|
7069
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7217
7070
|
"name": "HTMLAttributes"
|
|
7218
7071
|
}
|
|
7219
7072
|
],
|
|
@@ -7227,12 +7080,12 @@
|
|
|
7227
7080
|
"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",
|
|
7228
7081
|
"name": "ref",
|
|
7229
7082
|
"parent": {
|
|
7230
|
-
"fileName": "
|
|
7083
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7231
7084
|
"name": "RefAttributes"
|
|
7232
7085
|
},
|
|
7233
7086
|
"declarations": [
|
|
7234
7087
|
{
|
|
7235
|
-
"fileName": "
|
|
7088
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7236
7089
|
"name": "RefAttributes"
|
|
7237
7090
|
}
|
|
7238
7091
|
],
|
|
@@ -7334,12 +7187,12 @@
|
|
|
7334
7187
|
"description": "",
|
|
7335
7188
|
"name": "className",
|
|
7336
7189
|
"parent": {
|
|
7337
|
-
"fileName": "
|
|
7190
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7338
7191
|
"name": "HTMLAttributes"
|
|
7339
7192
|
},
|
|
7340
7193
|
"declarations": [
|
|
7341
7194
|
{
|
|
7342
|
-
"fileName": "
|
|
7195
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7343
7196
|
"name": "HTMLAttributes"
|
|
7344
7197
|
}
|
|
7345
7198
|
],
|
|
@@ -7353,12 +7206,12 @@
|
|
|
7353
7206
|
"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",
|
|
7354
7207
|
"name": "ref",
|
|
7355
7208
|
"parent": {
|
|
7356
|
-
"fileName": "
|
|
7209
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7357
7210
|
"name": "RefAttributes"
|
|
7358
7211
|
},
|
|
7359
7212
|
"declarations": [
|
|
7360
7213
|
{
|
|
7361
|
-
"fileName": "
|
|
7214
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7362
7215
|
"name": "RefAttributes"
|
|
7363
7216
|
}
|
|
7364
7217
|
],
|
|
@@ -7477,12 +7330,12 @@
|
|
|
7477
7330
|
"description": "",
|
|
7478
7331
|
"name": "className",
|
|
7479
7332
|
"parent": {
|
|
7480
|
-
"fileName": "
|
|
7333
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7481
7334
|
"name": "HTMLAttributes"
|
|
7482
7335
|
},
|
|
7483
7336
|
"declarations": [
|
|
7484
7337
|
{
|
|
7485
|
-
"fileName": "
|
|
7338
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7486
7339
|
"name": "HTMLAttributes"
|
|
7487
7340
|
}
|
|
7488
7341
|
],
|
|
@@ -7496,12 +7349,12 @@
|
|
|
7496
7349
|
"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",
|
|
7497
7350
|
"name": "ref",
|
|
7498
7351
|
"parent": {
|
|
7499
|
-
"fileName": "
|
|
7352
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7500
7353
|
"name": "RefAttributes"
|
|
7501
7354
|
},
|
|
7502
7355
|
"declarations": [
|
|
7503
7356
|
{
|
|
7504
|
-
"fileName": "
|
|
7357
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7505
7358
|
"name": "RefAttributes"
|
|
7506
7359
|
}
|
|
7507
7360
|
],
|
|
@@ -7521,12 +7374,12 @@
|
|
|
7521
7374
|
"description": "",
|
|
7522
7375
|
"name": "className",
|
|
7523
7376
|
"parent": {
|
|
7524
|
-
"fileName": "
|
|
7377
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7525
7378
|
"name": "HTMLAttributes"
|
|
7526
7379
|
},
|
|
7527
7380
|
"declarations": [
|
|
7528
7381
|
{
|
|
7529
|
-
"fileName": "
|
|
7382
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7530
7383
|
"name": "HTMLAttributes"
|
|
7531
7384
|
}
|
|
7532
7385
|
],
|
|
@@ -7540,12 +7393,12 @@
|
|
|
7540
7393
|
"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",
|
|
7541
7394
|
"name": "ref",
|
|
7542
7395
|
"parent": {
|
|
7543
|
-
"fileName": "
|
|
7396
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7544
7397
|
"name": "RefAttributes"
|
|
7545
7398
|
},
|
|
7546
7399
|
"declarations": [
|
|
7547
7400
|
{
|
|
7548
|
-
"fileName": "
|
|
7401
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7549
7402
|
"name": "RefAttributes"
|
|
7550
7403
|
}
|
|
7551
7404
|
],
|
|
@@ -7645,12 +7498,12 @@
|
|
|
7645
7498
|
"description": "",
|
|
7646
7499
|
"name": "className",
|
|
7647
7500
|
"parent": {
|
|
7648
|
-
"fileName": "
|
|
7501
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7649
7502
|
"name": "HTMLAttributes"
|
|
7650
7503
|
},
|
|
7651
7504
|
"declarations": [
|
|
7652
7505
|
{
|
|
7653
|
-
"fileName": "
|
|
7506
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7654
7507
|
"name": "HTMLAttributes"
|
|
7655
7508
|
}
|
|
7656
7509
|
],
|
|
@@ -7664,12 +7517,12 @@
|
|
|
7664
7517
|
"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",
|
|
7665
7518
|
"name": "ref",
|
|
7666
7519
|
"parent": {
|
|
7667
|
-
"fileName": "
|
|
7520
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7668
7521
|
"name": "RefAttributes"
|
|
7669
7522
|
},
|
|
7670
7523
|
"declarations": [
|
|
7671
7524
|
{
|
|
7672
|
-
"fileName": "
|
|
7525
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7673
7526
|
"name": "RefAttributes"
|
|
7674
7527
|
}
|
|
7675
7528
|
],
|
|
@@ -7710,12 +7563,12 @@
|
|
|
7710
7563
|
"description": "",
|
|
7711
7564
|
"name": "className",
|
|
7712
7565
|
"parent": {
|
|
7713
|
-
"fileName": "
|
|
7566
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7714
7567
|
"name": "HTMLAttributes"
|
|
7715
7568
|
},
|
|
7716
7569
|
"declarations": [
|
|
7717
7570
|
{
|
|
7718
|
-
"fileName": "
|
|
7571
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7719
7572
|
"name": "HTMLAttributes"
|
|
7720
7573
|
}
|
|
7721
7574
|
],
|
|
@@ -7729,12 +7582,12 @@
|
|
|
7729
7582
|
"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",
|
|
7730
7583
|
"name": "ref",
|
|
7731
7584
|
"parent": {
|
|
7732
|
-
"fileName": "
|
|
7585
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7733
7586
|
"name": "RefAttributes"
|
|
7734
7587
|
},
|
|
7735
7588
|
"declarations": [
|
|
7736
7589
|
{
|
|
7737
|
-
"fileName": "
|
|
7590
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7738
7591
|
"name": "RefAttributes"
|
|
7739
7592
|
}
|
|
7740
7593
|
],
|
|
@@ -7852,7 +7705,7 @@
|
|
|
7852
7705
|
"defaultValue": {
|
|
7853
7706
|
"value": "false"
|
|
7854
7707
|
},
|
|
7855
|
-
"description": "Disable
|
|
7708
|
+
"description": "Disable expansio",
|
|
7856
7709
|
"name": "expansionDisabled",
|
|
7857
7710
|
"parent": {
|
|
7858
7711
|
"fileName": "src/table/ExpandableRow.tsx",
|
|
@@ -7869,30 +7722,9 @@
|
|
|
7869
7722
|
"name": "boolean"
|
|
7870
7723
|
}
|
|
7871
7724
|
},
|
|
7872
|
-
"
|
|
7725
|
+
"colSpan": {
|
|
7873
7726
|
"defaultValue": {
|
|
7874
|
-
"value": "
|
|
7875
|
-
},
|
|
7876
|
-
"description": "Makes the whole row clickable",
|
|
7877
|
-
"name": "expandOnRowClick",
|
|
7878
|
-
"parent": {
|
|
7879
|
-
"fileName": "src/table/ExpandableRow.tsx",
|
|
7880
|
-
"name": "ExpandableRowProps"
|
|
7881
|
-
},
|
|
7882
|
-
"declarations": [
|
|
7883
|
-
{
|
|
7884
|
-
"fileName": "src/table/ExpandableRow.tsx",
|
|
7885
|
-
"name": "ExpandableRowProps"
|
|
7886
|
-
}
|
|
7887
|
-
],
|
|
7888
|
-
"required": false,
|
|
7889
|
-
"type": {
|
|
7890
|
-
"name": "boolean"
|
|
7891
|
-
}
|
|
7892
|
-
},
|
|
7893
|
-
"colSpan": {
|
|
7894
|
-
"defaultValue": {
|
|
7895
|
-
"value": "999"
|
|
7727
|
+
"value": "999"
|
|
7896
7728
|
},
|
|
7897
7729
|
"description": "The width of the expanded row's internal cell",
|
|
7898
7730
|
"name": "colSpan",
|
|
@@ -7958,12 +7790,12 @@
|
|
|
7958
7790
|
"description": "",
|
|
7959
7791
|
"name": "className",
|
|
7960
7792
|
"parent": {
|
|
7961
|
-
"fileName": "
|
|
7793
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7962
7794
|
"name": "HTMLAttributes"
|
|
7963
7795
|
},
|
|
7964
7796
|
"declarations": [
|
|
7965
7797
|
{
|
|
7966
|
-
"fileName": "
|
|
7798
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7967
7799
|
"name": "HTMLAttributes"
|
|
7968
7800
|
}
|
|
7969
7801
|
],
|
|
@@ -7977,12 +7809,12 @@
|
|
|
7977
7809
|
"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",
|
|
7978
7810
|
"name": "ref",
|
|
7979
7811
|
"parent": {
|
|
7980
|
-
"fileName": "
|
|
7812
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7981
7813
|
"name": "RefAttributes"
|
|
7982
7814
|
},
|
|
7983
7815
|
"declarations": [
|
|
7984
7816
|
{
|
|
7985
|
-
"fileName": "
|
|
7817
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
7986
7818
|
"name": "RefAttributes"
|
|
7987
7819
|
}
|
|
7988
7820
|
],
|
|
@@ -8002,12 +7834,12 @@
|
|
|
8002
7834
|
"description": "",
|
|
8003
7835
|
"name": "className",
|
|
8004
7836
|
"parent": {
|
|
8005
|
-
"fileName": "
|
|
7837
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8006
7838
|
"name": "HTMLAttributes"
|
|
8007
7839
|
},
|
|
8008
7840
|
"declarations": [
|
|
8009
7841
|
{
|
|
8010
|
-
"fileName": "
|
|
7842
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8011
7843
|
"name": "HTMLAttributes"
|
|
8012
7844
|
}
|
|
8013
7845
|
],
|
|
@@ -8021,12 +7853,12 @@
|
|
|
8021
7853
|
"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",
|
|
8022
7854
|
"name": "ref",
|
|
8023
7855
|
"parent": {
|
|
8024
|
-
"fileName": "
|
|
7856
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8025
7857
|
"name": "RefAttributes"
|
|
8026
7858
|
},
|
|
8027
7859
|
"declarations": [
|
|
8028
7860
|
{
|
|
8029
|
-
"fileName": "
|
|
7861
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8030
7862
|
"name": "RefAttributes"
|
|
8031
7863
|
}
|
|
8032
7864
|
],
|
|
@@ -8086,12 +7918,12 @@
|
|
|
8086
7918
|
"description": "",
|
|
8087
7919
|
"name": "className",
|
|
8088
7920
|
"parent": {
|
|
8089
|
-
"fileName": "
|
|
7921
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8090
7922
|
"name": "HTMLAttributes"
|
|
8091
7923
|
},
|
|
8092
7924
|
"declarations": [
|
|
8093
7925
|
{
|
|
8094
|
-
"fileName": "
|
|
7926
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8095
7927
|
"name": "HTMLAttributes"
|
|
8096
7928
|
}
|
|
8097
7929
|
],
|
|
@@ -8105,12 +7937,12 @@
|
|
|
8105
7937
|
"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",
|
|
8106
7938
|
"name": "ref",
|
|
8107
7939
|
"parent": {
|
|
8108
|
-
"fileName": "
|
|
7940
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8109
7941
|
"name": "RefAttributes"
|
|
8110
7942
|
},
|
|
8111
7943
|
"declarations": [
|
|
8112
7944
|
{
|
|
8113
|
-
"fileName": "
|
|
7945
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8114
7946
|
"name": "RefAttributes"
|
|
8115
7947
|
}
|
|
8116
7948
|
],
|
|
@@ -8172,12 +8004,12 @@
|
|
|
8172
8004
|
"description": "",
|
|
8173
8005
|
"name": "className",
|
|
8174
8006
|
"parent": {
|
|
8175
|
-
"fileName": "
|
|
8007
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8176
8008
|
"name": "HTMLAttributes"
|
|
8177
8009
|
},
|
|
8178
8010
|
"declarations": [
|
|
8179
8011
|
{
|
|
8180
|
-
"fileName": "
|
|
8012
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8181
8013
|
"name": "HTMLAttributes"
|
|
8182
8014
|
}
|
|
8183
8015
|
],
|
|
@@ -8191,12 +8023,12 @@
|
|
|
8191
8023
|
"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",
|
|
8192
8024
|
"name": "ref",
|
|
8193
8025
|
"parent": {
|
|
8194
|
-
"fileName": "
|
|
8026
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8195
8027
|
"name": "RefAttributes"
|
|
8196
8028
|
},
|
|
8197
8029
|
"declarations": [
|
|
8198
8030
|
{
|
|
8199
|
-
"fileName": "
|
|
8031
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8200
8032
|
"name": "RefAttributes"
|
|
8201
8033
|
}
|
|
8202
8034
|
],
|
|
@@ -8296,12 +8128,12 @@
|
|
|
8296
8128
|
"description": "",
|
|
8297
8129
|
"name": "className",
|
|
8298
8130
|
"parent": {
|
|
8299
|
-
"fileName": "
|
|
8131
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8300
8132
|
"name": "HTMLAttributes"
|
|
8301
8133
|
},
|
|
8302
8134
|
"declarations": [
|
|
8303
8135
|
{
|
|
8304
|
-
"fileName": "
|
|
8136
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8305
8137
|
"name": "HTMLAttributes"
|
|
8306
8138
|
}
|
|
8307
8139
|
],
|
|
@@ -8315,12 +8147,12 @@
|
|
|
8315
8147
|
"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",
|
|
8316
8148
|
"name": "ref",
|
|
8317
8149
|
"parent": {
|
|
8318
|
-
"fileName": "
|
|
8150
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8319
8151
|
"name": "RefAttributes"
|
|
8320
8152
|
},
|
|
8321
8153
|
"declarations": [
|
|
8322
8154
|
{
|
|
8323
|
-
"fileName": "
|
|
8155
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8324
8156
|
"name": "RefAttributes"
|
|
8325
8157
|
}
|
|
8326
8158
|
],
|
|
@@ -8397,12 +8229,12 @@
|
|
|
8397
8229
|
"description": "",
|
|
8398
8230
|
"name": "className",
|
|
8399
8231
|
"parent": {
|
|
8400
|
-
"fileName": "
|
|
8232
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8401
8233
|
"name": "HTMLAttributes"
|
|
8402
8234
|
},
|
|
8403
8235
|
"declarations": [
|
|
8404
8236
|
{
|
|
8405
|
-
"fileName": "
|
|
8237
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8406
8238
|
"name": "HTMLAttributes"
|
|
8407
8239
|
}
|
|
8408
8240
|
],
|
|
@@ -8416,12 +8248,12 @@
|
|
|
8416
8248
|
"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",
|
|
8417
8249
|
"name": "ref",
|
|
8418
8250
|
"parent": {
|
|
8419
|
-
"fileName": "
|
|
8251
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8420
8252
|
"name": "RefAttributes"
|
|
8421
8253
|
},
|
|
8422
8254
|
"declarations": [
|
|
8423
8255
|
{
|
|
8424
|
-
"fileName": "
|
|
8256
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8425
8257
|
"name": "RefAttributes"
|
|
8426
8258
|
}
|
|
8427
8259
|
],
|
|
@@ -8460,12 +8292,12 @@
|
|
|
8460
8292
|
"description": "",
|
|
8461
8293
|
"name": "className",
|
|
8462
8294
|
"parent": {
|
|
8463
|
-
"fileName": "
|
|
8295
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8464
8296
|
"name": "HTMLAttributes"
|
|
8465
8297
|
},
|
|
8466
8298
|
"declarations": [
|
|
8467
8299
|
{
|
|
8468
|
-
"fileName": "
|
|
8300
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8469
8301
|
"name": "HTMLAttributes"
|
|
8470
8302
|
}
|
|
8471
8303
|
],
|
|
@@ -8479,12 +8311,12 @@
|
|
|
8479
8311
|
"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",
|
|
8480
8312
|
"name": "ref",
|
|
8481
8313
|
"parent": {
|
|
8482
|
-
"fileName": "
|
|
8314
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8483
8315
|
"name": "RefAttributes"
|
|
8484
8316
|
},
|
|
8485
8317
|
"declarations": [
|
|
8486
8318
|
{
|
|
8487
|
-
"fileName": "
|
|
8319
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8488
8320
|
"name": "RefAttributes"
|
|
8489
8321
|
}
|
|
8490
8322
|
],
|
|
@@ -8542,12 +8374,12 @@
|
|
|
8542
8374
|
"description": "",
|
|
8543
8375
|
"name": "className",
|
|
8544
8376
|
"parent": {
|
|
8545
|
-
"fileName": "
|
|
8377
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8546
8378
|
"name": "HTMLAttributes"
|
|
8547
8379
|
},
|
|
8548
8380
|
"declarations": [
|
|
8549
8381
|
{
|
|
8550
|
-
"fileName": "
|
|
8382
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8551
8383
|
"name": "HTMLAttributes"
|
|
8552
8384
|
}
|
|
8553
8385
|
],
|
|
@@ -8561,12 +8393,12 @@
|
|
|
8561
8393
|
"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",
|
|
8562
8394
|
"name": "ref",
|
|
8563
8395
|
"parent": {
|
|
8564
|
-
"fileName": "
|
|
8396
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8565
8397
|
"name": "RefAttributes"
|
|
8566
8398
|
},
|
|
8567
8399
|
"declarations": [
|
|
8568
8400
|
{
|
|
8569
|
-
"fileName": "
|
|
8401
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8570
8402
|
"name": "RefAttributes"
|
|
8571
8403
|
}
|
|
8572
8404
|
],
|
|
@@ -8727,12 +8559,12 @@
|
|
|
8727
8559
|
"description": "",
|
|
8728
8560
|
"name": "className",
|
|
8729
8561
|
"parent": {
|
|
8730
|
-
"fileName": "
|
|
8562
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8731
8563
|
"name": "HTMLAttributes"
|
|
8732
8564
|
},
|
|
8733
8565
|
"declarations": [
|
|
8734
8566
|
{
|
|
8735
|
-
"fileName": "
|
|
8567
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8736
8568
|
"name": "HTMLAttributes"
|
|
8737
8569
|
}
|
|
8738
8570
|
],
|
|
@@ -8746,12 +8578,12 @@
|
|
|
8746
8578
|
"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",
|
|
8747
8579
|
"name": "ref",
|
|
8748
8580
|
"parent": {
|
|
8749
|
-
"fileName": "
|
|
8581
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8750
8582
|
"name": "RefAttributes"
|
|
8751
8583
|
},
|
|
8752
8584
|
"declarations": [
|
|
8753
8585
|
{
|
|
8754
|
-
"fileName": "
|
|
8586
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8755
8587
|
"name": "RefAttributes"
|
|
8756
8588
|
}
|
|
8757
8589
|
],
|
|
@@ -8811,12 +8643,12 @@
|
|
|
8811
8643
|
"description": "",
|
|
8812
8644
|
"name": "className",
|
|
8813
8645
|
"parent": {
|
|
8814
|
-
"fileName": "
|
|
8646
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8815
8647
|
"name": "HTMLAttributes"
|
|
8816
8648
|
},
|
|
8817
8649
|
"declarations": [
|
|
8818
8650
|
{
|
|
8819
|
-
"fileName": "
|
|
8651
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8820
8652
|
"name": "HTMLAttributes"
|
|
8821
8653
|
}
|
|
8822
8654
|
],
|
|
@@ -8830,12 +8662,12 @@
|
|
|
8830
8662
|
"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",
|
|
8831
8663
|
"name": "ref",
|
|
8832
8664
|
"parent": {
|
|
8833
|
-
"fileName": "
|
|
8665
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8834
8666
|
"name": "RefAttributes"
|
|
8835
8667
|
},
|
|
8836
8668
|
"declarations": [
|
|
8837
8669
|
{
|
|
8838
|
-
"fileName": "
|
|
8670
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8839
8671
|
"name": "RefAttributes"
|
|
8840
8672
|
}
|
|
8841
8673
|
],
|
|
@@ -8914,12 +8746,12 @@
|
|
|
8914
8746
|
"description": "",
|
|
8915
8747
|
"name": "className",
|
|
8916
8748
|
"parent": {
|
|
8917
|
-
"fileName": "
|
|
8749
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8918
8750
|
"name": "HTMLAttributes"
|
|
8919
8751
|
},
|
|
8920
8752
|
"declarations": [
|
|
8921
8753
|
{
|
|
8922
|
-
"fileName": "
|
|
8754
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8923
8755
|
"name": "HTMLAttributes"
|
|
8924
8756
|
}
|
|
8925
8757
|
],
|
|
@@ -8933,12 +8765,12 @@
|
|
|
8933
8765
|
"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",
|
|
8934
8766
|
"name": "ref",
|
|
8935
8767
|
"parent": {
|
|
8936
|
-
"fileName": "
|
|
8768
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8937
8769
|
"name": "RefAttributes"
|
|
8938
8770
|
},
|
|
8939
8771
|
"declarations": [
|
|
8940
8772
|
{
|
|
8941
|
-
"fileName": "
|
|
8773
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
8942
8774
|
"name": "RefAttributes"
|
|
8943
8775
|
}
|
|
8944
8776
|
],
|
|
@@ -9036,12 +8868,12 @@
|
|
|
9036
8868
|
"description": "",
|
|
9037
8869
|
"name": "className",
|
|
9038
8870
|
"parent": {
|
|
9039
|
-
"fileName": "
|
|
8871
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9040
8872
|
"name": "HTMLAttributes"
|
|
9041
8873
|
},
|
|
9042
8874
|
"declarations": [
|
|
9043
8875
|
{
|
|
9044
|
-
"fileName": "
|
|
8876
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9045
8877
|
"name": "HTMLAttributes"
|
|
9046
8878
|
}
|
|
9047
8879
|
],
|
|
@@ -9120,12 +8952,12 @@
|
|
|
9120
8952
|
"description": "",
|
|
9121
8953
|
"name": "className",
|
|
9122
8954
|
"parent": {
|
|
9123
|
-
"fileName": "
|
|
8955
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9124
8956
|
"name": "HTMLAttributes"
|
|
9125
8957
|
},
|
|
9126
8958
|
"declarations": [
|
|
9127
8959
|
{
|
|
9128
|
-
"fileName": "
|
|
8960
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9129
8961
|
"name": "HTMLAttributes"
|
|
9130
8962
|
}
|
|
9131
8963
|
],
|
|
@@ -9139,12 +8971,12 @@
|
|
|
9139
8971
|
"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",
|
|
9140
8972
|
"name": "ref",
|
|
9141
8973
|
"parent": {
|
|
9142
|
-
"fileName": "
|
|
8974
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9143
8975
|
"name": "RefAttributes"
|
|
9144
8976
|
},
|
|
9145
8977
|
"declarations": [
|
|
9146
8978
|
{
|
|
9147
|
-
"fileName": "
|
|
8979
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9148
8980
|
"name": "RefAttributes"
|
|
9149
8981
|
}
|
|
9150
8982
|
],
|
|
@@ -9301,12 +9133,12 @@
|
|
|
9301
9133
|
"description": "",
|
|
9302
9134
|
"name": "className",
|
|
9303
9135
|
"parent": {
|
|
9304
|
-
"fileName": "
|
|
9136
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9305
9137
|
"name": "HTMLAttributes"
|
|
9306
9138
|
},
|
|
9307
9139
|
"declarations": [
|
|
9308
9140
|
{
|
|
9309
|
-
"fileName": "
|
|
9141
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9310
9142
|
"name": "HTMLAttributes"
|
|
9311
9143
|
}
|
|
9312
9144
|
],
|
|
@@ -9320,12 +9152,12 @@
|
|
|
9320
9152
|
"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",
|
|
9321
9153
|
"name": "ref",
|
|
9322
9154
|
"parent": {
|
|
9323
|
-
"fileName": "
|
|
9155
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9324
9156
|
"name": "RefAttributes"
|
|
9325
9157
|
},
|
|
9326
9158
|
"declarations": [
|
|
9327
9159
|
{
|
|
9328
|
-
"fileName": "
|
|
9160
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9329
9161
|
"name": "RefAttributes"
|
|
9330
9162
|
}
|
|
9331
9163
|
],
|
|
@@ -9383,12 +9215,12 @@
|
|
|
9383
9215
|
"description": "",
|
|
9384
9216
|
"name": "className",
|
|
9385
9217
|
"parent": {
|
|
9386
|
-
"fileName": "
|
|
9218
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9387
9219
|
"name": "HTMLAttributes"
|
|
9388
9220
|
},
|
|
9389
9221
|
"declarations": [
|
|
9390
9222
|
{
|
|
9391
|
-
"fileName": "
|
|
9223
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9392
9224
|
"name": "HTMLAttributes"
|
|
9393
9225
|
}
|
|
9394
9226
|
],
|
|
@@ -9402,12 +9234,12 @@
|
|
|
9402
9234
|
"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",
|
|
9403
9235
|
"name": "ref",
|
|
9404
9236
|
"parent": {
|
|
9405
|
-
"fileName": "
|
|
9237
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9406
9238
|
"name": "RefAttributes"
|
|
9407
9239
|
},
|
|
9408
9240
|
"declarations": [
|
|
9409
9241
|
{
|
|
9410
|
-
"fileName": "
|
|
9242
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9411
9243
|
"name": "RefAttributes"
|
|
9412
9244
|
}
|
|
9413
9245
|
],
|
|
@@ -9629,12 +9461,12 @@
|
|
|
9629
9461
|
"description": "",
|
|
9630
9462
|
"name": "className",
|
|
9631
9463
|
"parent": {
|
|
9632
|
-
"fileName": "
|
|
9464
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9633
9465
|
"name": "HTMLAttributes"
|
|
9634
9466
|
},
|
|
9635
9467
|
"declarations": [
|
|
9636
9468
|
{
|
|
9637
|
-
"fileName": "
|
|
9469
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9638
9470
|
"name": "HTMLAttributes"
|
|
9639
9471
|
}
|
|
9640
9472
|
],
|
|
@@ -9648,12 +9480,12 @@
|
|
|
9648
9480
|
"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",
|
|
9649
9481
|
"name": "ref",
|
|
9650
9482
|
"parent": {
|
|
9651
|
-
"fileName": "
|
|
9483
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9652
9484
|
"name": "RefAttributes"
|
|
9653
9485
|
},
|
|
9654
9486
|
"declarations": [
|
|
9655
9487
|
{
|
|
9656
|
-
"fileName": "
|
|
9488
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9657
9489
|
"name": "RefAttributes"
|
|
9658
9490
|
}
|
|
9659
9491
|
],
|
|
@@ -9732,12 +9564,12 @@
|
|
|
9732
9564
|
"description": "",
|
|
9733
9565
|
"name": "className",
|
|
9734
9566
|
"parent": {
|
|
9735
|
-
"fileName": "
|
|
9567
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9736
9568
|
"name": "HTMLAttributes"
|
|
9737
9569
|
},
|
|
9738
9570
|
"declarations": [
|
|
9739
9571
|
{
|
|
9740
|
-
"fileName": "
|
|
9572
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9741
9573
|
"name": "HTMLAttributes"
|
|
9742
9574
|
}
|
|
9743
9575
|
],
|
|
@@ -9751,12 +9583,12 @@
|
|
|
9751
9583
|
"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",
|
|
9752
9584
|
"name": "ref",
|
|
9753
9585
|
"parent": {
|
|
9754
|
-
"fileName": "
|
|
9586
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9755
9587
|
"name": "RefAttributes"
|
|
9756
9588
|
},
|
|
9757
9589
|
"declarations": [
|
|
9758
9590
|
{
|
|
9759
|
-
"fileName": "
|
|
9591
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9760
9592
|
"name": "RefAttributes"
|
|
9761
9593
|
}
|
|
9762
9594
|
],
|
|
@@ -9835,12 +9667,12 @@
|
|
|
9835
9667
|
"description": "",
|
|
9836
9668
|
"name": "className",
|
|
9837
9669
|
"parent": {
|
|
9838
|
-
"fileName": "
|
|
9670
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9839
9671
|
"name": "HTMLAttributes"
|
|
9840
9672
|
},
|
|
9841
9673
|
"declarations": [
|
|
9842
9674
|
{
|
|
9843
|
-
"fileName": "
|
|
9675
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9844
9676
|
"name": "HTMLAttributes"
|
|
9845
9677
|
}
|
|
9846
9678
|
],
|
|
@@ -9854,12 +9686,12 @@
|
|
|
9854
9686
|
"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",
|
|
9855
9687
|
"name": "ref",
|
|
9856
9688
|
"parent": {
|
|
9857
|
-
"fileName": "
|
|
9689
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9858
9690
|
"name": "RefAttributes"
|
|
9859
9691
|
},
|
|
9860
9692
|
"declarations": [
|
|
9861
9693
|
{
|
|
9862
|
-
"fileName": "
|
|
9694
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9863
9695
|
"name": "RefAttributes"
|
|
9864
9696
|
}
|
|
9865
9697
|
],
|
|
@@ -9957,12 +9789,12 @@
|
|
|
9957
9789
|
"description": "",
|
|
9958
9790
|
"name": "className",
|
|
9959
9791
|
"parent": {
|
|
9960
|
-
"fileName": "
|
|
9792
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9961
9793
|
"name": "HTMLAttributes"
|
|
9962
9794
|
},
|
|
9963
9795
|
"declarations": [
|
|
9964
9796
|
{
|
|
9965
|
-
"fileName": "
|
|
9797
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9966
9798
|
"name": "HTMLAttributes"
|
|
9967
9799
|
}
|
|
9968
9800
|
],
|
|
@@ -9976,12 +9808,12 @@
|
|
|
9976
9808
|
"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",
|
|
9977
9809
|
"name": "ref",
|
|
9978
9810
|
"parent": {
|
|
9979
|
-
"fileName": "
|
|
9811
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9980
9812
|
"name": "RefAttributes"
|
|
9981
9813
|
},
|
|
9982
9814
|
"declarations": [
|
|
9983
9815
|
{
|
|
9984
|
-
"fileName": "
|
|
9816
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
9985
9817
|
"name": "RefAttributes"
|
|
9986
9818
|
}
|
|
9987
9819
|
],
|
|
@@ -10060,12 +9892,12 @@
|
|
|
10060
9892
|
"description": "",
|
|
10061
9893
|
"name": "className",
|
|
10062
9894
|
"parent": {
|
|
10063
|
-
"fileName": "
|
|
9895
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10064
9896
|
"name": "HTMLAttributes"
|
|
10065
9897
|
},
|
|
10066
9898
|
"declarations": [
|
|
10067
9899
|
{
|
|
10068
|
-
"fileName": "
|
|
9900
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10069
9901
|
"name": "HTMLAttributes"
|
|
10070
9902
|
}
|
|
10071
9903
|
],
|
|
@@ -10079,12 +9911,12 @@
|
|
|
10079
9911
|
"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",
|
|
10080
9912
|
"name": "ref",
|
|
10081
9913
|
"parent": {
|
|
10082
|
-
"fileName": "
|
|
9914
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10083
9915
|
"name": "RefAttributes"
|
|
10084
9916
|
},
|
|
10085
9917
|
"declarations": [
|
|
10086
9918
|
{
|
|
10087
|
-
"fileName": "
|
|
9919
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10088
9920
|
"name": "RefAttributes"
|
|
10089
9921
|
}
|
|
10090
9922
|
],
|
|
@@ -10184,12 +10016,12 @@
|
|
|
10184
10016
|
"description": "",
|
|
10185
10017
|
"name": "className",
|
|
10186
10018
|
"parent": {
|
|
10187
|
-
"fileName": "
|
|
10019
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10188
10020
|
"name": "HTMLAttributes"
|
|
10189
10021
|
},
|
|
10190
10022
|
"declarations": [
|
|
10191
10023
|
{
|
|
10192
|
-
"fileName": "
|
|
10024
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10193
10025
|
"name": "HTMLAttributes"
|
|
10194
10026
|
}
|
|
10195
10027
|
],
|
|
@@ -10203,12 +10035,12 @@
|
|
|
10203
10035
|
"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
10036
|
"name": "ref",
|
|
10205
10037
|
"parent": {
|
|
10206
|
-
"fileName": "
|
|
10038
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10207
10039
|
"name": "RefAttributes"
|
|
10208
10040
|
},
|
|
10209
10041
|
"declarations": [
|
|
10210
10042
|
{
|
|
10211
|
-
"fileName": "
|
|
10043
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10212
10044
|
"name": "RefAttributes"
|
|
10213
10045
|
}
|
|
10214
10046
|
],
|
|
@@ -10266,12 +10098,12 @@
|
|
|
10266
10098
|
"description": "",
|
|
10267
10099
|
"name": "className",
|
|
10268
10100
|
"parent": {
|
|
10269
|
-
"fileName": "
|
|
10101
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10270
10102
|
"name": "HTMLAttributes"
|
|
10271
10103
|
},
|
|
10272
10104
|
"declarations": [
|
|
10273
10105
|
{
|
|
10274
|
-
"fileName": "
|
|
10106
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10275
10107
|
"name": "HTMLAttributes"
|
|
10276
10108
|
}
|
|
10277
10109
|
],
|
|
@@ -10285,12 +10117,12 @@
|
|
|
10285
10117
|
"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",
|
|
10286
10118
|
"name": "ref",
|
|
10287
10119
|
"parent": {
|
|
10288
|
-
"fileName": "
|
|
10120
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10289
10121
|
"name": "RefAttributes"
|
|
10290
10122
|
},
|
|
10291
10123
|
"declarations": [
|
|
10292
10124
|
{
|
|
10293
|
-
"fileName": "
|
|
10125
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10294
10126
|
"name": "RefAttributes"
|
|
10295
10127
|
}
|
|
10296
10128
|
],
|
|
@@ -10369,12 +10201,12 @@
|
|
|
10369
10201
|
"description": "",
|
|
10370
10202
|
"name": "className",
|
|
10371
10203
|
"parent": {
|
|
10372
|
-
"fileName": "
|
|
10204
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10373
10205
|
"name": "HTMLAttributes"
|
|
10374
10206
|
},
|
|
10375
10207
|
"declarations": [
|
|
10376
10208
|
{
|
|
10377
|
-
"fileName": "
|
|
10209
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10378
10210
|
"name": "HTMLAttributes"
|
|
10379
10211
|
}
|
|
10380
10212
|
],
|
|
@@ -10388,12 +10220,12 @@
|
|
|
10388
10220
|
"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",
|
|
10389
10221
|
"name": "ref",
|
|
10390
10222
|
"parent": {
|
|
10391
|
-
"fileName": "
|
|
10223
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10392
10224
|
"name": "RefAttributes"
|
|
10393
10225
|
},
|
|
10394
10226
|
"declarations": [
|
|
10395
10227
|
{
|
|
10396
|
-
"fileName": "
|
|
10228
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10397
10229
|
"name": "RefAttributes"
|
|
10398
10230
|
}
|
|
10399
10231
|
],
|
|
@@ -10493,12 +10325,12 @@
|
|
|
10493
10325
|
"description": "",
|
|
10494
10326
|
"name": "className",
|
|
10495
10327
|
"parent": {
|
|
10496
|
-
"fileName": "
|
|
10328
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10497
10329
|
"name": "HTMLAttributes"
|
|
10498
10330
|
},
|
|
10499
10331
|
"declarations": [
|
|
10500
10332
|
{
|
|
10501
|
-
"fileName": "
|
|
10333
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10502
10334
|
"name": "HTMLAttributes"
|
|
10503
10335
|
}
|
|
10504
10336
|
],
|
|
@@ -10558,12 +10390,12 @@
|
|
|
10558
10390
|
"description": "",
|
|
10559
10391
|
"name": "className",
|
|
10560
10392
|
"parent": {
|
|
10561
|
-
"fileName": "
|
|
10393
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10562
10394
|
"name": "HTMLAttributes"
|
|
10563
10395
|
},
|
|
10564
10396
|
"declarations": [
|
|
10565
10397
|
{
|
|
10566
|
-
"fileName": "
|
|
10398
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10567
10399
|
"name": "HTMLAttributes"
|
|
10568
10400
|
}
|
|
10569
10401
|
],
|
|
@@ -10577,12 +10409,12 @@
|
|
|
10577
10409
|
"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
10410
|
"name": "ref",
|
|
10579
10411
|
"parent": {
|
|
10580
|
-
"fileName": "
|
|
10412
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10581
10413
|
"name": "RefAttributes"
|
|
10582
10414
|
},
|
|
10583
10415
|
"declarations": [
|
|
10584
10416
|
{
|
|
10585
|
-
"fileName": "
|
|
10417
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
10586
10418
|
"name": "RefAttributes"
|
|
10587
10419
|
}
|
|
10588
10420
|
],
|
|
@@ -11415,12 +11247,12 @@
|
|
|
11415
11247
|
"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",
|
|
11416
11248
|
"name": "ref",
|
|
11417
11249
|
"parent": {
|
|
11418
|
-
"fileName": "
|
|
11250
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
11419
11251
|
"name": "RefAttributes"
|
|
11420
11252
|
},
|
|
11421
11253
|
"declarations": [
|
|
11422
11254
|
{
|
|
11423
|
-
"fileName": "
|
|
11255
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
11424
11256
|
"name": "RefAttributes"
|
|
11425
11257
|
}
|
|
11426
11258
|
],
|
|
@@ -12987,12 +12819,12 @@
|
|
|
12987
12819
|
"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",
|
|
12988
12820
|
"name": "ref",
|
|
12989
12821
|
"parent": {
|
|
12990
|
-
"fileName": "
|
|
12822
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
12991
12823
|
"name": "RefAttributes"
|
|
12992
12824
|
},
|
|
12993
12825
|
"declarations": [
|
|
12994
12826
|
{
|
|
12995
|
-
"fileName": "
|
|
12827
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
12996
12828
|
"name": "RefAttributes"
|
|
12997
12829
|
}
|
|
12998
12830
|
],
|
|
@@ -13012,12 +12844,12 @@
|
|
|
13012
12844
|
"description": "",
|
|
13013
12845
|
"name": "className",
|
|
13014
12846
|
"parent": {
|
|
13015
|
-
"fileName": "
|
|
12847
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13016
12848
|
"name": "HTMLAttributes"
|
|
13017
12849
|
},
|
|
13018
12850
|
"declarations": [
|
|
13019
12851
|
{
|
|
13020
|
-
"fileName": "
|
|
12852
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13021
12853
|
"name": "HTMLAttributes"
|
|
13022
12854
|
}
|
|
13023
12855
|
],
|
|
@@ -13031,12 +12863,12 @@
|
|
|
13031
12863
|
"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",
|
|
13032
12864
|
"name": "ref",
|
|
13033
12865
|
"parent": {
|
|
13034
|
-
"fileName": "
|
|
12866
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13035
12867
|
"name": "RefAttributes"
|
|
13036
12868
|
},
|
|
13037
12869
|
"declarations": [
|
|
13038
12870
|
{
|
|
13039
|
-
"fileName": "
|
|
12871
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13040
12872
|
"name": "RefAttributes"
|
|
13041
12873
|
}
|
|
13042
12874
|
],
|
|
@@ -13134,12 +12966,12 @@
|
|
|
13134
12966
|
"description": "",
|
|
13135
12967
|
"name": "className",
|
|
13136
12968
|
"parent": {
|
|
13137
|
-
"fileName": "
|
|
12969
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13138
12970
|
"name": "HTMLAttributes"
|
|
13139
12971
|
},
|
|
13140
12972
|
"declarations": [
|
|
13141
12973
|
{
|
|
13142
|
-
"fileName": "
|
|
12974
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13143
12975
|
"name": "HTMLAttributes"
|
|
13144
12976
|
}
|
|
13145
12977
|
],
|
|
@@ -13153,12 +12985,12 @@
|
|
|
13153
12985
|
"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",
|
|
13154
12986
|
"name": "ref",
|
|
13155
12987
|
"parent": {
|
|
13156
|
-
"fileName": "
|
|
12988
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13157
12989
|
"name": "RefAttributes"
|
|
13158
12990
|
},
|
|
13159
12991
|
"declarations": [
|
|
13160
12992
|
{
|
|
13161
|
-
"fileName": "
|
|
12993
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13162
12994
|
"name": "RefAttributes"
|
|
13163
12995
|
}
|
|
13164
12996
|
],
|
|
@@ -13408,12 +13240,12 @@
|
|
|
13408
13240
|
"description": "",
|
|
13409
13241
|
"name": "className",
|
|
13410
13242
|
"parent": {
|
|
13411
|
-
"fileName": "
|
|
13243
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13412
13244
|
"name": "HTMLAttributes"
|
|
13413
13245
|
},
|
|
13414
13246
|
"declarations": [
|
|
13415
13247
|
{
|
|
13416
|
-
"fileName": "
|
|
13248
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13417
13249
|
"name": "HTMLAttributes"
|
|
13418
13250
|
}
|
|
13419
13251
|
],
|
|
@@ -13427,12 +13259,12 @@
|
|
|
13427
13259
|
"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",
|
|
13428
13260
|
"name": "ref",
|
|
13429
13261
|
"parent": {
|
|
13430
|
-
"fileName": "
|
|
13262
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13431
13263
|
"name": "RefAttributes"
|
|
13432
13264
|
},
|
|
13433
13265
|
"declarations": [
|
|
13434
13266
|
{
|
|
13435
|
-
"fileName": "
|
|
13267
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13436
13268
|
"name": "RefAttributes"
|
|
13437
13269
|
}
|
|
13438
13270
|
],
|
|
@@ -13665,12 +13497,12 @@
|
|
|
13665
13497
|
"description": "",
|
|
13666
13498
|
"name": "className",
|
|
13667
13499
|
"parent": {
|
|
13668
|
-
"fileName": "
|
|
13500
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13669
13501
|
"name": "HTMLAttributes"
|
|
13670
13502
|
},
|
|
13671
13503
|
"declarations": [
|
|
13672
13504
|
{
|
|
13673
|
-
"fileName": "
|
|
13505
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13674
13506
|
"name": "HTMLAttributes"
|
|
13675
13507
|
}
|
|
13676
13508
|
],
|
|
@@ -13684,12 +13516,12 @@
|
|
|
13684
13516
|
"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",
|
|
13685
13517
|
"name": "ref",
|
|
13686
13518
|
"parent": {
|
|
13687
|
-
"fileName": "
|
|
13519
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13688
13520
|
"name": "RefAttributes"
|
|
13689
13521
|
},
|
|
13690
13522
|
"declarations": [
|
|
13691
13523
|
{
|
|
13692
|
-
"fileName": "
|
|
13524
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13693
13525
|
"name": "RefAttributes"
|
|
13694
13526
|
}
|
|
13695
13527
|
],
|
|
@@ -13977,12 +13809,12 @@
|
|
|
13977
13809
|
"description": "",
|
|
13978
13810
|
"name": "className",
|
|
13979
13811
|
"parent": {
|
|
13980
|
-
"fileName": "
|
|
13812
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13981
13813
|
"name": "HTMLAttributes"
|
|
13982
13814
|
},
|
|
13983
13815
|
"declarations": [
|
|
13984
13816
|
{
|
|
13985
|
-
"fileName": "
|
|
13817
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
13986
13818
|
"name": "HTMLAttributes"
|
|
13987
13819
|
}
|
|
13988
13820
|
],
|
|
@@ -13996,12 +13828,12 @@
|
|
|
13996
13828
|
"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",
|
|
13997
13829
|
"name": "ref",
|
|
13998
13830
|
"parent": {
|
|
13999
|
-
"fileName": "
|
|
13831
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14000
13832
|
"name": "RefAttributes"
|
|
14001
13833
|
},
|
|
14002
13834
|
"declarations": [
|
|
14003
13835
|
{
|
|
14004
|
-
"fileName": "
|
|
13836
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14005
13837
|
"name": "RefAttributes"
|
|
14006
13838
|
}
|
|
14007
13839
|
],
|
|
@@ -14059,12 +13891,12 @@
|
|
|
14059
13891
|
"description": "",
|
|
14060
13892
|
"name": "className",
|
|
14061
13893
|
"parent": {
|
|
14062
|
-
"fileName": "
|
|
13894
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14063
13895
|
"name": "HTMLAttributes"
|
|
14064
13896
|
},
|
|
14065
13897
|
"declarations": [
|
|
14066
13898
|
{
|
|
14067
|
-
"fileName": "
|
|
13899
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14068
13900
|
"name": "HTMLAttributes"
|
|
14069
13901
|
}
|
|
14070
13902
|
],
|
|
@@ -14141,12 +13973,12 @@
|
|
|
14141
13973
|
"description": "",
|
|
14142
13974
|
"name": "className",
|
|
14143
13975
|
"parent": {
|
|
14144
|
-
"fileName": "
|
|
13976
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14145
13977
|
"name": "HTMLAttributes"
|
|
14146
13978
|
},
|
|
14147
13979
|
"declarations": [
|
|
14148
13980
|
{
|
|
14149
|
-
"fileName": "
|
|
13981
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14150
13982
|
"name": "HTMLAttributes"
|
|
14151
13983
|
}
|
|
14152
13984
|
],
|
|
@@ -14387,7 +14219,7 @@
|
|
|
14387
14219
|
},
|
|
14388
14220
|
"onToggleSelected": {
|
|
14389
14221
|
"defaultValue": null,
|
|
14390
|
-
"description": "Callback function triggered whenever an option is selected or de-selected\n@param option\n@param isSelected
|
|
14222
|
+
"description": "Callback function triggered whenever an option is selected or de-selected\n@param option\n@param isSelected\n@returns",
|
|
14391
14223
|
"name": "onToggleSelected",
|
|
14392
14224
|
"parent": {
|
|
14393
14225
|
"fileName": "react/src/form/combobox/types.ts",
|
|
@@ -14401,7 +14233,7 @@
|
|
|
14401
14233
|
],
|
|
14402
14234
|
"required": false,
|
|
14403
14235
|
"type": {
|
|
14404
|
-
"name": "((option: string, isSelected: boolean
|
|
14236
|
+
"name": "((option: string, isSelected: boolean) => void)"
|
|
14405
14237
|
}
|
|
14406
14238
|
},
|
|
14407
14239
|
"selectedOptions": {
|
|
@@ -14569,12 +14401,12 @@
|
|
|
14569
14401
|
"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",
|
|
14570
14402
|
"name": "ref",
|
|
14571
14403
|
"parent": {
|
|
14572
|
-
"fileName": "
|
|
14404
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14573
14405
|
"name": "RefAttributes"
|
|
14574
14406
|
},
|
|
14575
14407
|
"declarations": [
|
|
14576
14408
|
{
|
|
14577
|
-
"fileName": "
|
|
14409
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
14578
14410
|
"name": "RefAttributes"
|
|
14579
14411
|
}
|
|
14580
14412
|
],
|
|
@@ -14816,7 +14648,7 @@
|
|
|
14816
14648
|
],
|
|
14817
14649
|
"required": false,
|
|
14818
14650
|
"type": {
|
|
14819
|
-
"name": "((event: ChangeEvent<HTMLInputElement>
|
|
14651
|
+
"name": "((event: ChangeEvent<HTMLInputElement>) => void)"
|
|
14820
14652
|
}
|
|
14821
14653
|
},
|
|
14822
14654
|
"onClear": {
|
|
@@ -14840,7 +14672,7 @@
|
|
|
14840
14672
|
},
|
|
14841
14673
|
"onToggleSelected": {
|
|
14842
14674
|
"defaultValue": null,
|
|
14843
|
-
"description": "Callback function triggered whenever an option is selected or de-selected\n@param option\n@param isSelected
|
|
14675
|
+
"description": "Callback function triggered whenever an option is selected or de-selected\n@param option\n@param isSelected\n@returns",
|
|
14844
14676
|
"name": "onToggleSelected",
|
|
14845
14677
|
"parent": {
|
|
14846
14678
|
"fileName": "react/src/form/combobox/types.ts",
|
|
@@ -14854,7 +14686,7 @@
|
|
|
14854
14686
|
],
|
|
14855
14687
|
"required": false,
|
|
14856
14688
|
"type": {
|
|
14857
|
-
"name": "((option: string, isSelected: boolean
|
|
14689
|
+
"name": "((option: string, isSelected: boolean) => void)"
|
|
14858
14690
|
}
|
|
14859
14691
|
},
|
|
14860
14692
|
"selectedOptions": {
|
|
@@ -15117,12 +14949,12 @@
|
|
|
15117
14949
|
"description": "",
|
|
15118
14950
|
"name": "className",
|
|
15119
14951
|
"parent": {
|
|
15120
|
-
"fileName": "
|
|
14952
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15121
14953
|
"name": "HTMLAttributes"
|
|
15122
14954
|
},
|
|
15123
14955
|
"declarations": [
|
|
15124
14956
|
{
|
|
15125
|
-
"fileName": "
|
|
14957
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15126
14958
|
"name": "HTMLAttributes"
|
|
15127
14959
|
}
|
|
15128
14960
|
],
|
|
@@ -15136,12 +14968,12 @@
|
|
|
15136
14968
|
"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",
|
|
15137
14969
|
"name": "ref",
|
|
15138
14970
|
"parent": {
|
|
15139
|
-
"fileName": "
|
|
14971
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15140
14972
|
"name": "RefAttributes"
|
|
15141
14973
|
},
|
|
15142
14974
|
"declarations": [
|
|
15143
14975
|
{
|
|
15144
|
-
"fileName": "
|
|
14976
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15145
14977
|
"name": "RefAttributes"
|
|
15146
14978
|
}
|
|
15147
14979
|
],
|
|
@@ -15276,12 +15108,12 @@
|
|
|
15276
15108
|
"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",
|
|
15277
15109
|
"name": "ref",
|
|
15278
15110
|
"parent": {
|
|
15279
|
-
"fileName": "
|
|
15111
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15280
15112
|
"name": "RefAttributes"
|
|
15281
15113
|
},
|
|
15282
15114
|
"declarations": [
|
|
15283
15115
|
{
|
|
15284
|
-
"fileName": "
|
|
15116
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15285
15117
|
"name": "RefAttributes"
|
|
15286
15118
|
}
|
|
15287
15119
|
],
|
|
@@ -15386,12 +15218,12 @@
|
|
|
15386
15218
|
"description": "",
|
|
15387
15219
|
"name": "className",
|
|
15388
15220
|
"parent": {
|
|
15389
|
-
"fileName": "
|
|
15221
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15390
15222
|
"name": "HTMLAttributes"
|
|
15391
15223
|
},
|
|
15392
15224
|
"declarations": [
|
|
15393
15225
|
{
|
|
15394
|
-
"fileName": "
|
|
15226
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15395
15227
|
"name": "HTMLAttributes"
|
|
15396
15228
|
}
|
|
15397
15229
|
],
|
|
@@ -15405,12 +15237,12 @@
|
|
|
15405
15237
|
"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",
|
|
15406
15238
|
"name": "ref",
|
|
15407
15239
|
"parent": {
|
|
15408
|
-
"fileName": "
|
|
15240
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15409
15241
|
"name": "RefAttributes"
|
|
15410
15242
|
},
|
|
15411
15243
|
"declarations": [
|
|
15412
15244
|
{
|
|
15413
|
-
"fileName": "
|
|
15245
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15414
15246
|
"name": "RefAttributes"
|
|
15415
15247
|
}
|
|
15416
15248
|
],
|
|
@@ -15468,12 +15300,12 @@
|
|
|
15468
15300
|
"description": "",
|
|
15469
15301
|
"name": "className",
|
|
15470
15302
|
"parent": {
|
|
15471
|
-
"fileName": "
|
|
15303
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15472
15304
|
"name": "HTMLAttributes"
|
|
15473
15305
|
},
|
|
15474
15306
|
"declarations": [
|
|
15475
15307
|
{
|
|
15476
|
-
"fileName": "
|
|
15308
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15477
15309
|
"name": "HTMLAttributes"
|
|
15478
15310
|
}
|
|
15479
15311
|
],
|
|
@@ -15487,12 +15319,12 @@
|
|
|
15487
15319
|
"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",
|
|
15488
15320
|
"name": "ref",
|
|
15489
15321
|
"parent": {
|
|
15490
|
-
"fileName": "
|
|
15322
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15491
15323
|
"name": "RefAttributes"
|
|
15492
15324
|
},
|
|
15493
15325
|
"declarations": [
|
|
15494
15326
|
{
|
|
15495
|
-
"fileName": "
|
|
15327
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15496
15328
|
"name": "RefAttributes"
|
|
15497
15329
|
}
|
|
15498
15330
|
],
|
|
@@ -15626,12 +15458,12 @@
|
|
|
15626
15458
|
"description": "",
|
|
15627
15459
|
"name": "className",
|
|
15628
15460
|
"parent": {
|
|
15629
|
-
"fileName": "
|
|
15461
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15630
15462
|
"name": "HTMLAttributes"
|
|
15631
15463
|
},
|
|
15632
15464
|
"declarations": [
|
|
15633
15465
|
{
|
|
15634
|
-
"fileName": "
|
|
15466
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15635
15467
|
"name": "HTMLAttributes"
|
|
15636
15468
|
}
|
|
15637
15469
|
],
|
|
@@ -15645,12 +15477,12 @@
|
|
|
15645
15477
|
"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",
|
|
15646
15478
|
"name": "ref",
|
|
15647
15479
|
"parent": {
|
|
15648
|
-
"fileName": "
|
|
15480
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15649
15481
|
"name": "RefAttributes"
|
|
15650
15482
|
},
|
|
15651
15483
|
"declarations": [
|
|
15652
15484
|
{
|
|
15653
|
-
"fileName": "
|
|
15485
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15654
15486
|
"name": "RefAttributes"
|
|
15655
15487
|
}
|
|
15656
15488
|
],
|
|
@@ -15976,12 +15808,12 @@
|
|
|
15976
15808
|
"description": "",
|
|
15977
15809
|
"name": "className",
|
|
15978
15810
|
"parent": {
|
|
15979
|
-
"fileName": "
|
|
15811
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15980
15812
|
"name": "HTMLAttributes"
|
|
15981
15813
|
},
|
|
15982
15814
|
"declarations": [
|
|
15983
15815
|
{
|
|
15984
|
-
"fileName": "
|
|
15816
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15985
15817
|
"name": "HTMLAttributes"
|
|
15986
15818
|
}
|
|
15987
15819
|
],
|
|
@@ -15995,12 +15827,12 @@
|
|
|
15995
15827
|
"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",
|
|
15996
15828
|
"name": "ref",
|
|
15997
15829
|
"parent": {
|
|
15998
|
-
"fileName": "
|
|
15830
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
15999
15831
|
"name": "RefAttributes"
|
|
16000
15832
|
},
|
|
16001
15833
|
"declarations": [
|
|
16002
15834
|
{
|
|
16003
|
-
"fileName": "
|
|
15835
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16004
15836
|
"name": "RefAttributes"
|
|
16005
15837
|
}
|
|
16006
15838
|
],
|
|
@@ -16313,12 +16145,12 @@
|
|
|
16313
16145
|
"description": "",
|
|
16314
16146
|
"name": "className",
|
|
16315
16147
|
"parent": {
|
|
16316
|
-
"fileName": "
|
|
16148
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16317
16149
|
"name": "HTMLAttributes"
|
|
16318
16150
|
},
|
|
16319
16151
|
"declarations": [
|
|
16320
16152
|
{
|
|
16321
|
-
"fileName": "
|
|
16153
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16322
16154
|
"name": "HTMLAttributes"
|
|
16323
16155
|
}
|
|
16324
16156
|
],
|
|
@@ -16332,12 +16164,12 @@
|
|
|
16332
16164
|
"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",
|
|
16333
16165
|
"name": "ref",
|
|
16334
16166
|
"parent": {
|
|
16335
|
-
"fileName": "
|
|
16167
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16336
16168
|
"name": "RefAttributes"
|
|
16337
16169
|
},
|
|
16338
16170
|
"declarations": [
|
|
16339
16171
|
{
|
|
16340
|
-
"fileName": "
|
|
16172
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16341
16173
|
"name": "RefAttributes"
|
|
16342
16174
|
}
|
|
16343
16175
|
],
|
|
@@ -16456,12 +16288,12 @@
|
|
|
16456
16288
|
"description": "",
|
|
16457
16289
|
"name": "className",
|
|
16458
16290
|
"parent": {
|
|
16459
|
-
"fileName": "
|
|
16291
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16460
16292
|
"name": "HTMLAttributes"
|
|
16461
16293
|
},
|
|
16462
16294
|
"declarations": [
|
|
16463
16295
|
{
|
|
16464
|
-
"fileName": "
|
|
16296
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16465
16297
|
"name": "HTMLAttributes"
|
|
16466
16298
|
}
|
|
16467
16299
|
],
|
|
@@ -16475,12 +16307,12 @@
|
|
|
16475
16307
|
"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",
|
|
16476
16308
|
"name": "ref",
|
|
16477
16309
|
"parent": {
|
|
16478
|
-
"fileName": "
|
|
16310
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16479
16311
|
"name": "RefAttributes"
|
|
16480
16312
|
},
|
|
16481
16313
|
"declarations": [
|
|
16482
16314
|
{
|
|
16483
|
-
"fileName": "
|
|
16315
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16484
16316
|
"name": "RefAttributes"
|
|
16485
16317
|
}
|
|
16486
16318
|
],
|
|
@@ -16491,518 +16323,6 @@
|
|
|
16491
16323
|
}
|
|
16492
16324
|
}
|
|
16493
16325
|
},
|
|
16494
|
-
{
|
|
16495
|
-
"filePath": "src/layout/content-container/ContentContainer.tsx",
|
|
16496
|
-
"displayName": "ContentContainer",
|
|
16497
|
-
"props": {
|
|
16498
|
-
"children": {
|
|
16499
|
-
"defaultValue": null,
|
|
16500
|
-
"description": "ContentContainer content",
|
|
16501
|
-
"name": "children",
|
|
16502
|
-
"parent": {
|
|
16503
|
-
"fileName": "src/layout/content-container/ContentContainer.tsx",
|
|
16504
|
-
"name": "ContentContainerProps"
|
|
16505
|
-
},
|
|
16506
|
-
"declarations": [
|
|
16507
|
-
{
|
|
16508
|
-
"fileName": "src/layout/content-container/ContentContainer.tsx",
|
|
16509
|
-
"name": "ContentContainerProps"
|
|
16510
|
-
}
|
|
16511
|
-
],
|
|
16512
|
-
"required": true,
|
|
16513
|
-
"type": {
|
|
16514
|
-
"name": "ReactNode"
|
|
16515
|
-
}
|
|
16516
|
-
},
|
|
16517
|
-
"className": {
|
|
16518
|
-
"defaultValue": null,
|
|
16519
|
-
"description": "",
|
|
16520
|
-
"name": "className",
|
|
16521
|
-
"parent": {
|
|
16522
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16523
|
-
"name": "HTMLAttributes"
|
|
16524
|
-
},
|
|
16525
|
-
"declarations": [
|
|
16526
|
-
{
|
|
16527
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16528
|
-
"name": "HTMLAttributes"
|
|
16529
|
-
}
|
|
16530
|
-
],
|
|
16531
|
-
"required": false,
|
|
16532
|
-
"type": {
|
|
16533
|
-
"name": "string"
|
|
16534
|
-
}
|
|
16535
|
-
},
|
|
16536
|
-
"ref": {
|
|
16537
|
-
"defaultValue": null,
|
|
16538
|
-
"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",
|
|
16539
|
-
"name": "ref",
|
|
16540
|
-
"parent": {
|
|
16541
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16542
|
-
"name": "RefAttributes"
|
|
16543
|
-
},
|
|
16544
|
-
"declarations": [
|
|
16545
|
-
{
|
|
16546
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16547
|
-
"name": "RefAttributes"
|
|
16548
|
-
}
|
|
16549
|
-
],
|
|
16550
|
-
"required": false,
|
|
16551
|
-
"type": {
|
|
16552
|
-
"name": "Ref<HTMLDivElement>"
|
|
16553
|
-
}
|
|
16554
|
-
}
|
|
16555
|
-
}
|
|
16556
|
-
},
|
|
16557
|
-
{
|
|
16558
|
-
"filePath": "src/layout/grid/HGrid.tsx",
|
|
16559
|
-
"displayName": "HGrid",
|
|
16560
|
-
"props": {
|
|
16561
|
-
"columns": {
|
|
16562
|
-
"defaultValue": null,
|
|
16563
|
-
"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))\"",
|
|
16564
|
-
"name": "columns",
|
|
16565
|
-
"parent": {
|
|
16566
|
-
"fileName": "src/layout/grid/HGrid.tsx",
|
|
16567
|
-
"name": "HGridProps"
|
|
16568
|
-
},
|
|
16569
|
-
"declarations": [
|
|
16570
|
-
{
|
|
16571
|
-
"fileName": "src/layout/grid/HGrid.tsx",
|
|
16572
|
-
"name": "HGridProps"
|
|
16573
|
-
}
|
|
16574
|
-
],
|
|
16575
|
-
"required": false,
|
|
16576
|
-
"type": {
|
|
16577
|
-
"name": "ResponsiveProp<string | number>"
|
|
16578
|
-
}
|
|
16579
|
-
},
|
|
16580
|
-
"gap": {
|
|
16581
|
-
"defaultValue": null,
|
|
16582
|
-
"description": "Spacing between columns. Based on spacing-tokens.\n@example gap=\"6\"\ngap={{ sm: \"2\", md: \"2\", lg: \"6\", xl: \"6\"}}",
|
|
16583
|
-
"name": "gap",
|
|
16584
|
-
"parent": {
|
|
16585
|
-
"fileName": "src/layout/grid/HGrid.tsx",
|
|
16586
|
-
"name": "HGridProps"
|
|
16587
|
-
},
|
|
16588
|
-
"declarations": [
|
|
16589
|
-
{
|
|
16590
|
-
"fileName": "src/layout/grid/HGrid.tsx",
|
|
16591
|
-
"name": "HGridProps"
|
|
16592
|
-
}
|
|
16593
|
-
],
|
|
16594
|
-
"required": false,
|
|
16595
|
-
"type": {
|
|
16596
|
-
"name": "ResponsiveProp<SpacingScale>"
|
|
16597
|
-
}
|
|
16598
|
-
},
|
|
16599
|
-
"className": {
|
|
16600
|
-
"defaultValue": null,
|
|
16601
|
-
"description": "",
|
|
16602
|
-
"name": "className",
|
|
16603
|
-
"parent": {
|
|
16604
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16605
|
-
"name": "HTMLAttributes"
|
|
16606
|
-
},
|
|
16607
|
-
"declarations": [
|
|
16608
|
-
{
|
|
16609
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16610
|
-
"name": "HTMLAttributes"
|
|
16611
|
-
}
|
|
16612
|
-
],
|
|
16613
|
-
"required": false,
|
|
16614
|
-
"type": {
|
|
16615
|
-
"name": "string"
|
|
16616
|
-
}
|
|
16617
|
-
},
|
|
16618
|
-
"ref": {
|
|
16619
|
-
"defaultValue": null,
|
|
16620
|
-
"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",
|
|
16621
|
-
"name": "ref",
|
|
16622
|
-
"parent": {
|
|
16623
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16624
|
-
"name": "RefAttributes"
|
|
16625
|
-
},
|
|
16626
|
-
"declarations": [
|
|
16627
|
-
{
|
|
16628
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16629
|
-
"name": "RefAttributes"
|
|
16630
|
-
}
|
|
16631
|
-
],
|
|
16632
|
-
"required": false,
|
|
16633
|
-
"type": {
|
|
16634
|
-
"name": "Ref<HTMLDivElement>"
|
|
16635
|
-
}
|
|
16636
|
-
}
|
|
16637
|
-
}
|
|
16638
|
-
},
|
|
16639
|
-
{
|
|
16640
|
-
"filePath": "src/layout/stack/HStack.tsx",
|
|
16641
|
-
"displayName": "HStack",
|
|
16642
|
-
"props": {
|
|
16643
|
-
"justify": {
|
|
16644
|
-
"defaultValue": null,
|
|
16645
|
-
"description": "Justify-content",
|
|
16646
|
-
"name": "justify",
|
|
16647
|
-
"parent": {
|
|
16648
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16649
|
-
"name": "StackProps"
|
|
16650
|
-
},
|
|
16651
|
-
"declarations": [
|
|
16652
|
-
{
|
|
16653
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16654
|
-
"name": "StackProps"
|
|
16655
|
-
}
|
|
16656
|
-
],
|
|
16657
|
-
"required": false,
|
|
16658
|
-
"type": {
|
|
16659
|
-
"name": "\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\""
|
|
16660
|
-
}
|
|
16661
|
-
},
|
|
16662
|
-
"align": {
|
|
16663
|
-
"defaultValue": null,
|
|
16664
|
-
"description": "Align-items",
|
|
16665
|
-
"name": "align",
|
|
16666
|
-
"parent": {
|
|
16667
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16668
|
-
"name": "StackProps"
|
|
16669
|
-
},
|
|
16670
|
-
"declarations": [
|
|
16671
|
-
{
|
|
16672
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16673
|
-
"name": "StackProps"
|
|
16674
|
-
}
|
|
16675
|
-
],
|
|
16676
|
-
"required": false,
|
|
16677
|
-
"type": {
|
|
16678
|
-
"name": "\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\""
|
|
16679
|
-
}
|
|
16680
|
-
},
|
|
16681
|
-
"wrap": {
|
|
16682
|
-
"defaultValue": null,
|
|
16683
|
-
"description": "flex-wrap",
|
|
16684
|
-
"name": "wrap",
|
|
16685
|
-
"parent": {
|
|
16686
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16687
|
-
"name": "StackProps"
|
|
16688
|
-
},
|
|
16689
|
-
"declarations": [
|
|
16690
|
-
{
|
|
16691
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16692
|
-
"name": "StackProps"
|
|
16693
|
-
}
|
|
16694
|
-
],
|
|
16695
|
-
"required": false,
|
|
16696
|
-
"type": {
|
|
16697
|
-
"name": "boolean"
|
|
16698
|
-
}
|
|
16699
|
-
},
|
|
16700
|
-
"gap": {
|
|
16701
|
-
"defaultValue": null,
|
|
16702
|
-
"description": "@example gap='4'\ngap={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
|
|
16703
|
-
"name": "gap",
|
|
16704
|
-
"parent": {
|
|
16705
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16706
|
-
"name": "StackProps"
|
|
16707
|
-
},
|
|
16708
|
-
"declarations": [
|
|
16709
|
-
{
|
|
16710
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16711
|
-
"name": "StackProps"
|
|
16712
|
-
}
|
|
16713
|
-
],
|
|
16714
|
-
"required": false,
|
|
16715
|
-
"type": {
|
|
16716
|
-
"name": "ResponsiveProp<SpacingScale>"
|
|
16717
|
-
}
|
|
16718
|
-
},
|
|
16719
|
-
"className": {
|
|
16720
|
-
"defaultValue": null,
|
|
16721
|
-
"description": "",
|
|
16722
|
-
"name": "className",
|
|
16723
|
-
"parent": {
|
|
16724
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16725
|
-
"name": "HTMLAttributes"
|
|
16726
|
-
},
|
|
16727
|
-
"declarations": [
|
|
16728
|
-
{
|
|
16729
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16730
|
-
"name": "HTMLAttributes"
|
|
16731
|
-
}
|
|
16732
|
-
],
|
|
16733
|
-
"required": false,
|
|
16734
|
-
"type": {
|
|
16735
|
-
"name": "string"
|
|
16736
|
-
}
|
|
16737
|
-
},
|
|
16738
|
-
"ref": {
|
|
16739
|
-
"defaultValue": null,
|
|
16740
|
-
"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",
|
|
16741
|
-
"name": "ref",
|
|
16742
|
-
"parent": {
|
|
16743
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16744
|
-
"name": "RefAttributes"
|
|
16745
|
-
},
|
|
16746
|
-
"declarations": [
|
|
16747
|
-
{
|
|
16748
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16749
|
-
"name": "RefAttributes"
|
|
16750
|
-
}
|
|
16751
|
-
],
|
|
16752
|
-
"required": false,
|
|
16753
|
-
"type": {
|
|
16754
|
-
"name": "Ref<HTMLDivElement>"
|
|
16755
|
-
}
|
|
16756
|
-
}
|
|
16757
|
-
}
|
|
16758
|
-
},
|
|
16759
|
-
{
|
|
16760
|
-
"filePath": "src/layout/stack/Spacer.tsx",
|
|
16761
|
-
"displayName": "Spacer",
|
|
16762
|
-
"props": {}
|
|
16763
|
-
},
|
|
16764
|
-
{
|
|
16765
|
-
"filePath": "src/layout/stack/Stack.tsx",
|
|
16766
|
-
"displayName": "Stack",
|
|
16767
|
-
"props": {
|
|
16768
|
-
"justify": {
|
|
16769
|
-
"defaultValue": null,
|
|
16770
|
-
"description": "Justify-content",
|
|
16771
|
-
"name": "justify",
|
|
16772
|
-
"parent": {
|
|
16773
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16774
|
-
"name": "StackProps"
|
|
16775
|
-
},
|
|
16776
|
-
"declarations": [
|
|
16777
|
-
{
|
|
16778
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16779
|
-
"name": "StackProps"
|
|
16780
|
-
}
|
|
16781
|
-
],
|
|
16782
|
-
"required": false,
|
|
16783
|
-
"type": {
|
|
16784
|
-
"name": "\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\""
|
|
16785
|
-
}
|
|
16786
|
-
},
|
|
16787
|
-
"align": {
|
|
16788
|
-
"defaultValue": null,
|
|
16789
|
-
"description": "Align-items",
|
|
16790
|
-
"name": "align",
|
|
16791
|
-
"parent": {
|
|
16792
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16793
|
-
"name": "StackProps"
|
|
16794
|
-
},
|
|
16795
|
-
"declarations": [
|
|
16796
|
-
{
|
|
16797
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16798
|
-
"name": "StackProps"
|
|
16799
|
-
}
|
|
16800
|
-
],
|
|
16801
|
-
"required": false,
|
|
16802
|
-
"type": {
|
|
16803
|
-
"name": "\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\""
|
|
16804
|
-
}
|
|
16805
|
-
},
|
|
16806
|
-
"wrap": {
|
|
16807
|
-
"defaultValue": {
|
|
16808
|
-
"value": "true"
|
|
16809
|
-
},
|
|
16810
|
-
"description": "flex-wrap",
|
|
16811
|
-
"name": "wrap",
|
|
16812
|
-
"parent": {
|
|
16813
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16814
|
-
"name": "StackProps"
|
|
16815
|
-
},
|
|
16816
|
-
"declarations": [
|
|
16817
|
-
{
|
|
16818
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16819
|
-
"name": "StackProps"
|
|
16820
|
-
}
|
|
16821
|
-
],
|
|
16822
|
-
"required": false,
|
|
16823
|
-
"type": {
|
|
16824
|
-
"name": "boolean"
|
|
16825
|
-
}
|
|
16826
|
-
},
|
|
16827
|
-
"gap": {
|
|
16828
|
-
"defaultValue": null,
|
|
16829
|
-
"description": "@example gap='4'\ngap={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
|
|
16830
|
-
"name": "gap",
|
|
16831
|
-
"parent": {
|
|
16832
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16833
|
-
"name": "StackProps"
|
|
16834
|
-
},
|
|
16835
|
-
"declarations": [
|
|
16836
|
-
{
|
|
16837
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16838
|
-
"name": "StackProps"
|
|
16839
|
-
}
|
|
16840
|
-
],
|
|
16841
|
-
"required": false,
|
|
16842
|
-
"type": {
|
|
16843
|
-
"name": "ResponsiveProp<SpacingScale>"
|
|
16844
|
-
}
|
|
16845
|
-
},
|
|
16846
|
-
"direction": {
|
|
16847
|
-
"defaultValue": null,
|
|
16848
|
-
"description": "",
|
|
16849
|
-
"name": "direction",
|
|
16850
|
-
"parent": {
|
|
16851
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16852
|
-
"name": "StackProps"
|
|
16853
|
-
},
|
|
16854
|
-
"declarations": [
|
|
16855
|
-
{
|
|
16856
|
-
"fileName": "src/layout/stack/Stack.tsx",
|
|
16857
|
-
"name": "StackProps"
|
|
16858
|
-
}
|
|
16859
|
-
],
|
|
16860
|
-
"required": true,
|
|
16861
|
-
"type": {
|
|
16862
|
-
"name": "\"row\" | \"column\""
|
|
16863
|
-
}
|
|
16864
|
-
},
|
|
16865
|
-
"className": {
|
|
16866
|
-
"defaultValue": null,
|
|
16867
|
-
"description": "",
|
|
16868
|
-
"name": "className",
|
|
16869
|
-
"parent": {
|
|
16870
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16871
|
-
"name": "HTMLAttributes"
|
|
16872
|
-
},
|
|
16873
|
-
"declarations": [
|
|
16874
|
-
{
|
|
16875
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16876
|
-
"name": "HTMLAttributes"
|
|
16877
|
-
}
|
|
16878
|
-
],
|
|
16879
|
-
"required": false,
|
|
16880
|
-
"type": {
|
|
16881
|
-
"name": "string"
|
|
16882
|
-
}
|
|
16883
|
-
},
|
|
16884
|
-
"ref": {
|
|
16885
|
-
"defaultValue": null,
|
|
16886
|
-
"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",
|
|
16887
|
-
"name": "ref",
|
|
16888
|
-
"parent": {
|
|
16889
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16890
|
-
"name": "RefAttributes"
|
|
16891
|
-
},
|
|
16892
|
-
"declarations": [
|
|
16893
|
-
{
|
|
16894
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16895
|
-
"name": "RefAttributes"
|
|
16896
|
-
}
|
|
16897
|
-
],
|
|
16898
|
-
"required": false,
|
|
16899
|
-
"type": {
|
|
16900
|
-
"name": "Ref<HTMLDivElement>"
|
|
16901
|
-
}
|
|
16902
|
-
}
|
|
16903
|
-
}
|
|
16904
|
-
},
|
|
16905
|
-
{
|
|
16906
|
-
"filePath": "src/layout/stack/VStack.tsx",
|
|
16907
|
-
"displayName": "VStack",
|
|
16908
|
-
"props": {
|
|
16909
|
-
"justify": {
|
|
16910
|
-
"defaultValue": null,
|
|
16911
|
-
"description": "Justify-content",
|
|
16912
|
-
"name": "justify",
|
|
16913
|
-
"parent": {
|
|
16914
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16915
|
-
"name": "StackProps"
|
|
16916
|
-
},
|
|
16917
|
-
"declarations": [
|
|
16918
|
-
{
|
|
16919
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16920
|
-
"name": "StackProps"
|
|
16921
|
-
}
|
|
16922
|
-
],
|
|
16923
|
-
"required": false,
|
|
16924
|
-
"type": {
|
|
16925
|
-
"name": "\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\""
|
|
16926
|
-
}
|
|
16927
|
-
},
|
|
16928
|
-
"align": {
|
|
16929
|
-
"defaultValue": null,
|
|
16930
|
-
"description": "Align-items",
|
|
16931
|
-
"name": "align",
|
|
16932
|
-
"parent": {
|
|
16933
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16934
|
-
"name": "StackProps"
|
|
16935
|
-
},
|
|
16936
|
-
"declarations": [
|
|
16937
|
-
{
|
|
16938
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16939
|
-
"name": "StackProps"
|
|
16940
|
-
}
|
|
16941
|
-
],
|
|
16942
|
-
"required": false,
|
|
16943
|
-
"type": {
|
|
16944
|
-
"name": "\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\""
|
|
16945
|
-
}
|
|
16946
|
-
},
|
|
16947
|
-
"gap": {
|
|
16948
|
-
"defaultValue": null,
|
|
16949
|
-
"description": "@example gap='4'\ngap={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
|
|
16950
|
-
"name": "gap",
|
|
16951
|
-
"parent": {
|
|
16952
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16953
|
-
"name": "StackProps"
|
|
16954
|
-
},
|
|
16955
|
-
"declarations": [
|
|
16956
|
-
{
|
|
16957
|
-
"fileName": "react/src/layout/stack/Stack.tsx",
|
|
16958
|
-
"name": "StackProps"
|
|
16959
|
-
}
|
|
16960
|
-
],
|
|
16961
|
-
"required": false,
|
|
16962
|
-
"type": {
|
|
16963
|
-
"name": "ResponsiveProp<SpacingScale>"
|
|
16964
|
-
}
|
|
16965
|
-
},
|
|
16966
|
-
"className": {
|
|
16967
|
-
"defaultValue": null,
|
|
16968
|
-
"description": "",
|
|
16969
|
-
"name": "className",
|
|
16970
|
-
"parent": {
|
|
16971
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16972
|
-
"name": "HTMLAttributes"
|
|
16973
|
-
},
|
|
16974
|
-
"declarations": [
|
|
16975
|
-
{
|
|
16976
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16977
|
-
"name": "HTMLAttributes"
|
|
16978
|
-
}
|
|
16979
|
-
],
|
|
16980
|
-
"required": false,
|
|
16981
|
-
"type": {
|
|
16982
|
-
"name": "string"
|
|
16983
|
-
}
|
|
16984
|
-
},
|
|
16985
|
-
"ref": {
|
|
16986
|
-
"defaultValue": null,
|
|
16987
|
-
"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",
|
|
16988
|
-
"name": "ref",
|
|
16989
|
-
"parent": {
|
|
16990
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16991
|
-
"name": "RefAttributes"
|
|
16992
|
-
},
|
|
16993
|
-
"declarations": [
|
|
16994
|
-
{
|
|
16995
|
-
"fileName": "aksel/node_modules/@types/react/ts5.0/index.d.ts",
|
|
16996
|
-
"name": "RefAttributes"
|
|
16997
|
-
}
|
|
16998
|
-
],
|
|
16999
|
-
"required": false,
|
|
17000
|
-
"type": {
|
|
17001
|
-
"name": "Ref<HTMLDivElement>"
|
|
17002
|
-
}
|
|
17003
|
-
}
|
|
17004
|
-
}
|
|
17005
|
-
},
|
|
17006
16326
|
{
|
|
17007
16327
|
"filePath": "src/timeline/period/NonClickablePeriod.tsx",
|
|
17008
16328
|
"displayName": "NonClickablePeriod",
|
|
@@ -17381,12 +16701,12 @@
|
|
|
17381
16701
|
"description": "",
|
|
17382
16702
|
"name": "className",
|
|
17383
16703
|
"parent": {
|
|
17384
|
-
"fileName": "
|
|
16704
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17385
16705
|
"name": "HTMLAttributes"
|
|
17386
16706
|
},
|
|
17387
16707
|
"declarations": [
|
|
17388
16708
|
{
|
|
17389
|
-
"fileName": "
|
|
16709
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17390
16710
|
"name": "HTMLAttributes"
|
|
17391
16711
|
}
|
|
17392
16712
|
],
|
|
@@ -17400,12 +16720,12 @@
|
|
|
17400
16720
|
"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",
|
|
17401
16721
|
"name": "ref",
|
|
17402
16722
|
"parent": {
|
|
17403
|
-
"fileName": "
|
|
16723
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17404
16724
|
"name": "RefAttributes"
|
|
17405
16725
|
},
|
|
17406
16726
|
"declarations": [
|
|
17407
16727
|
{
|
|
17408
|
-
"fileName": "
|
|
16728
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17409
16729
|
"name": "RefAttributes"
|
|
17410
16730
|
}
|
|
17411
16731
|
],
|
|
@@ -17482,12 +16802,12 @@
|
|
|
17482
16802
|
"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",
|
|
17483
16803
|
"name": "ref",
|
|
17484
16804
|
"parent": {
|
|
17485
|
-
"fileName": "
|
|
16805
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17486
16806
|
"name": "RefAttributes"
|
|
17487
16807
|
},
|
|
17488
16808
|
"declarations": [
|
|
17489
16809
|
{
|
|
17490
|
-
"fileName": "
|
|
16810
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17491
16811
|
"name": "RefAttributes"
|
|
17492
16812
|
}
|
|
17493
16813
|
],
|
|
@@ -17507,12 +16827,12 @@
|
|
|
17507
16827
|
"description": "",
|
|
17508
16828
|
"name": "className",
|
|
17509
16829
|
"parent": {
|
|
17510
|
-
"fileName": "
|
|
16830
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17511
16831
|
"name": "HTMLAttributes"
|
|
17512
16832
|
},
|
|
17513
16833
|
"declarations": [
|
|
17514
16834
|
{
|
|
17515
|
-
"fileName": "
|
|
16835
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17516
16836
|
"name": "HTMLAttributes"
|
|
17517
16837
|
}
|
|
17518
16838
|
],
|
|
@@ -17526,12 +16846,12 @@
|
|
|
17526
16846
|
"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",
|
|
17527
16847
|
"name": "ref",
|
|
17528
16848
|
"parent": {
|
|
17529
|
-
"fileName": "
|
|
16849
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17530
16850
|
"name": "RefAttributes"
|
|
17531
16851
|
},
|
|
17532
16852
|
"declarations": [
|
|
17533
16853
|
{
|
|
17534
|
-
"fileName": "
|
|
16854
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17535
16855
|
"name": "RefAttributes"
|
|
17536
16856
|
}
|
|
17537
16857
|
],
|
|
@@ -17585,12 +16905,12 @@
|
|
|
17585
16905
|
"description": "",
|
|
17586
16906
|
"name": "className",
|
|
17587
16907
|
"parent": {
|
|
17588
|
-
"fileName": "
|
|
16908
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17589
16909
|
"name": "HTMLAttributes"
|
|
17590
16910
|
},
|
|
17591
16911
|
"declarations": [
|
|
17592
16912
|
{
|
|
17593
|
-
"fileName": "
|
|
16913
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17594
16914
|
"name": "HTMLAttributes"
|
|
17595
16915
|
}
|
|
17596
16916
|
],
|
|
@@ -17604,12 +16924,12 @@
|
|
|
17604
16924
|
"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",
|
|
17605
16925
|
"name": "ref",
|
|
17606
16926
|
"parent": {
|
|
17607
|
-
"fileName": "
|
|
16927
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17608
16928
|
"name": "RefAttributes"
|
|
17609
16929
|
},
|
|
17610
16930
|
"declarations": [
|
|
17611
16931
|
{
|
|
17612
|
-
"fileName": "
|
|
16932
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17613
16933
|
"name": "RefAttributes"
|
|
17614
16934
|
}
|
|
17615
16935
|
],
|
|
@@ -17648,12 +16968,12 @@
|
|
|
17648
16968
|
"description": "",
|
|
17649
16969
|
"name": "className",
|
|
17650
16970
|
"parent": {
|
|
17651
|
-
"fileName": "
|
|
16971
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17652
16972
|
"name": "HTMLAttributes"
|
|
17653
16973
|
},
|
|
17654
16974
|
"declarations": [
|
|
17655
16975
|
{
|
|
17656
|
-
"fileName": "
|
|
16976
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17657
16977
|
"name": "HTMLAttributes"
|
|
17658
16978
|
}
|
|
17659
16979
|
],
|
|
@@ -17667,12 +16987,12 @@
|
|
|
17667
16987
|
"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",
|
|
17668
16988
|
"name": "ref",
|
|
17669
16989
|
"parent": {
|
|
17670
|
-
"fileName": "
|
|
16990
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17671
16991
|
"name": "RefAttributes"
|
|
17672
16992
|
},
|
|
17673
16993
|
"declarations": [
|
|
17674
16994
|
{
|
|
17675
|
-
"fileName": "
|
|
16995
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17676
16996
|
"name": "RefAttributes"
|
|
17677
16997
|
}
|
|
17678
16998
|
],
|
|
@@ -17711,12 +17031,12 @@
|
|
|
17711
17031
|
"description": "",
|
|
17712
17032
|
"name": "className",
|
|
17713
17033
|
"parent": {
|
|
17714
|
-
"fileName": "
|
|
17034
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17715
17035
|
"name": "HTMLAttributes"
|
|
17716
17036
|
},
|
|
17717
17037
|
"declarations": [
|
|
17718
17038
|
{
|
|
17719
|
-
"fileName": "
|
|
17039
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17720
17040
|
"name": "HTMLAttributes"
|
|
17721
17041
|
}
|
|
17722
17042
|
],
|
|
@@ -17730,12 +17050,12 @@
|
|
|
17730
17050
|
"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",
|
|
17731
17051
|
"name": "ref",
|
|
17732
17052
|
"parent": {
|
|
17733
|
-
"fileName": "
|
|
17053
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17734
17054
|
"name": "RefAttributes"
|
|
17735
17055
|
},
|
|
17736
17056
|
"declarations": [
|
|
17737
17057
|
{
|
|
17738
|
-
"fileName": "
|
|
17058
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17739
17059
|
"name": "RefAttributes"
|
|
17740
17060
|
}
|
|
17741
17061
|
],
|
|
@@ -17774,12 +17094,12 @@
|
|
|
17774
17094
|
"description": "",
|
|
17775
17095
|
"name": "className",
|
|
17776
17096
|
"parent": {
|
|
17777
|
-
"fileName": "
|
|
17097
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17778
17098
|
"name": "HTMLAttributes"
|
|
17779
17099
|
},
|
|
17780
17100
|
"declarations": [
|
|
17781
17101
|
{
|
|
17782
|
-
"fileName": "
|
|
17102
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17783
17103
|
"name": "HTMLAttributes"
|
|
17784
17104
|
}
|
|
17785
17105
|
],
|
|
@@ -17793,12 +17113,12 @@
|
|
|
17793
17113
|
"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
17114
|
"name": "ref",
|
|
17795
17115
|
"parent": {
|
|
17796
|
-
"fileName": "
|
|
17116
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17797
17117
|
"name": "RefAttributes"
|
|
17798
17118
|
},
|
|
17799
17119
|
"declarations": [
|
|
17800
17120
|
{
|
|
17801
|
-
"fileName": "
|
|
17121
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17802
17122
|
"name": "RefAttributes"
|
|
17803
17123
|
}
|
|
17804
17124
|
],
|
|
@@ -17837,12 +17157,12 @@
|
|
|
17837
17157
|
"description": "",
|
|
17838
17158
|
"name": "className",
|
|
17839
17159
|
"parent": {
|
|
17840
|
-
"fileName": "
|
|
17160
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17841
17161
|
"name": "HTMLAttributes"
|
|
17842
17162
|
},
|
|
17843
17163
|
"declarations": [
|
|
17844
17164
|
{
|
|
17845
|
-
"fileName": "
|
|
17165
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17846
17166
|
"name": "HTMLAttributes"
|
|
17847
17167
|
}
|
|
17848
17168
|
],
|
|
@@ -17856,12 +17176,12 @@
|
|
|
17856
17176
|
"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
17177
|
"name": "ref",
|
|
17858
17178
|
"parent": {
|
|
17859
|
-
"fileName": "
|
|
17179
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17860
17180
|
"name": "RefAttributes"
|
|
17861
17181
|
},
|
|
17862
17182
|
"declarations": [
|
|
17863
17183
|
{
|
|
17864
|
-
"fileName": "
|
|
17184
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17865
17185
|
"name": "RefAttributes"
|
|
17866
17186
|
}
|
|
17867
17187
|
],
|
|
@@ -17934,12 +17254,12 @@
|
|
|
17934
17254
|
"description": "",
|
|
17935
17255
|
"name": "className",
|
|
17936
17256
|
"parent": {
|
|
17937
|
-
"fileName": "
|
|
17257
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17938
17258
|
"name": "HTMLAttributes"
|
|
17939
17259
|
},
|
|
17940
17260
|
"declarations": [
|
|
17941
17261
|
{
|
|
17942
|
-
"fileName": "
|
|
17262
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17943
17263
|
"name": "HTMLAttributes"
|
|
17944
17264
|
}
|
|
17945
17265
|
],
|
|
@@ -17991,12 +17311,12 @@
|
|
|
17991
17311
|
"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",
|
|
17992
17312
|
"name": "ref",
|
|
17993
17313
|
"parent": {
|
|
17994
|
-
"fileName": "
|
|
17314
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
17995
17315
|
"name": "RefAttributes"
|
|
17996
17316
|
},
|
|
17997
17317
|
"declarations": [
|
|
17998
17318
|
{
|
|
17999
|
-
"fileName": "
|
|
17319
|
+
"fileName": "nfm/node_modules/@types/react/ts5.0/index.d.ts",
|
|
18000
17320
|
"name": "RefAttributes"
|
|
18001
17321
|
}
|
|
18002
17322
|
],
|