@mittwald/flow-react-components 0.2.0-alpha.769 → 0.2.0-alpha.770

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/assets/doc-properties.json +2952 -979
  3. package/dist/css/all.css +1 -1
  4. package/dist/js/_virtual/_.locale.json@8d5024994f97657f895a4e2a188d2d8a.mjs +4 -2
  5. package/dist/js/_virtual/_.locale.json@8d5024994f97657f895a4e2a188d2d8a.mjs.map +1 -1
  6. package/dist/js/default.mjs +2 -0
  7. package/dist/js/default.mjs.map +1 -1
  8. package/dist/js/packages/components/src/components/Calendar/Calendar.mjs +5 -2
  9. package/dist/js/packages/components/src/components/Calendar/Calendar.mjs.map +1 -1
  10. package/dist/js/packages/components/src/components/Calendar/{RangeCalendar.mjs → components/RangeCalendar/RangeCalendar.mjs} +6 -4
  11. package/dist/js/packages/components/src/components/Calendar/components/RangeCalendar/RangeCalendar.mjs.map +1 -0
  12. package/dist/js/packages/components/src/components/Calendar/components/RangeCalendar/types.mjs +8 -0
  13. package/dist/js/packages/components/src/components/Calendar/components/RangeCalendar/types.mjs.map +1 -0
  14. package/dist/js/packages/components/src/components/DatePicker/DatePicker.mjs +4 -4
  15. package/dist/js/packages/components/src/components/DatePicker/DatePicker.mjs.map +1 -1
  16. package/dist/js/packages/components/src/components/DatePicker/DatePicker.module.scss.mjs +9 -0
  17. package/dist/js/packages/components/src/components/DatePicker/DatePicker.module.scss.mjs.map +1 -0
  18. package/dist/js/packages/components/src/components/DateRangePicker/DateRangePicker.mjs +10 -3
  19. package/dist/js/packages/components/src/components/DateRangePicker/DateRangePicker.mjs.map +1 -1
  20. package/dist/js/packages/components/src/components/DateRangePicker/DateRangePicker.module.scss.mjs +9 -0
  21. package/dist/js/packages/components/src/components/DateRangePicker/DateRangePicker.module.scss.mjs.map +1 -0
  22. package/dist/js/packages/components/src/components/List/components/Header/components/ActiveFilters/ActiveFilters.mjs +13 -2
  23. package/dist/js/packages/components/src/components/List/components/Header/components/ActiveFilters/ActiveFilters.mjs.map +1 -1
  24. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordion.mjs +7 -48
  25. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordion.mjs.map +1 -1
  26. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionCheckboxGroup.mjs +16 -0
  27. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionCheckboxGroup.mjs.map +1 -0
  28. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionDateRange.mjs +40 -0
  29. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionDateRange.mjs.map +1 -0
  30. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionRadioGroup.mjs +54 -0
  31. package/dist/js/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionRadioGroup.mjs.map +1 -0
  32. package/dist/js/packages/components/src/components/List/components/Header/components/FilterContextMenu/DateRangeFilterPopover.mjs +69 -0
  33. package/dist/js/packages/components/src/components/List/components/Header/components/FilterContextMenu/DateRangeFilterPopover.mjs.map +1 -0
  34. package/dist/js/packages/components/src/components/List/components/Header/components/FilterContextMenu/FilterContextMenu.mjs.map +1 -1
  35. package/dist/js/packages/components/src/components/List/components/Header/components/FilterContextMenu/FilterContextMenus.mjs +5 -1
  36. package/dist/js/packages/components/src/components/List/components/Header/components/FilterContextMenu/FilterContextMenus.mjs.map +1 -1
  37. package/dist/js/packages/components/src/components/List/components/Header/components/FilterContextMenu/FilterContextMenus.module.scss.mjs +9 -0
  38. package/dist/js/packages/components/src/components/List/components/Header/components/FilterContextMenu/FilterContextMenus.module.scss.mjs.map +1 -0
  39. package/dist/js/packages/components/src/components/List/model/List.mjs +4 -1
  40. package/dist/js/packages/components/src/components/List/model/List.mjs.map +1 -1
  41. package/dist/js/packages/components/src/components/List/model/ReactTable.mjs +1 -1
  42. package/dist/js/packages/components/src/components/List/model/ReactTable.mjs.map +1 -1
  43. package/dist/js/packages/components/src/components/List/model/filter/DateRangeFilter.mjs +36 -0
  44. package/dist/js/packages/components/src/components/List/model/filter/DateRangeFilter.mjs.map +1 -0
  45. package/dist/js/packages/components/src/components/List/model/filter/Filter.mjs.map +1 -1
  46. package/dist/js/packages/components/src/components/List/model/filter/dateRangeFilterFn.mjs +32 -0
  47. package/dist/js/packages/components/src/components/List/model/filter/dateRangeFilterFn.mjs.map +1 -0
  48. package/dist/js/packages/components/src/components/propTypes/index.mjs +1 -1
  49. package/dist/js/packages/components/src/components/propTypes/index.mjs.map +1 -1
  50. package/dist/js/packages/components/src/lib/date/transformDateValueToDateTime.mjs +14 -0
  51. package/dist/js/packages/components/src/lib/date/transformDateValueToDateTime.mjs.map +1 -0
  52. package/dist/js/packages/components/src/lib/date/transformDateValueToFormattedDate.mjs +8 -0
  53. package/dist/js/packages/components/src/lib/date/transformDateValueToFormattedDate.mjs.map +1 -0
  54. package/dist/js/packages/components/src/views/RangeCalendarView.mjs +15 -0
  55. package/dist/js/packages/components/src/views/RangeCalendarView.mjs.map +1 -0
  56. package/dist/types/components/Calendar/Calendar.d.ts +2 -1
  57. package/dist/types/components/Calendar/Calendar.d.ts.map +1 -1
  58. package/dist/types/components/Calendar/components/RangeCalendar/RangeCalendar.d.ts +7 -0
  59. package/dist/types/components/Calendar/components/RangeCalendar/RangeCalendar.d.ts.map +1 -0
  60. package/dist/types/components/Calendar/components/RangeCalendar/index.d.ts +4 -0
  61. package/dist/types/components/Calendar/components/RangeCalendar/index.d.ts.map +1 -0
  62. package/dist/types/components/Calendar/components/RangeCalendar/types.d.ts +3 -0
  63. package/dist/types/components/Calendar/components/RangeCalendar/types.d.ts.map +1 -0
  64. package/dist/types/components/Calendar/components/RangeCalendar/view.d.ts +8 -0
  65. package/dist/types/components/Calendar/components/RangeCalendar/view.d.ts.map +1 -0
  66. package/dist/types/components/Calendar/index.d.ts +1 -1
  67. package/dist/types/components/Calendar/index.d.ts.map +1 -1
  68. package/dist/types/components/DatePicker/DatePicker.d.ts.map +1 -1
  69. package/dist/types/components/DateRangePicker/DateRangePicker.d.ts.map +1 -1
  70. package/dist/types/components/List/components/Header/components/ActiveFilters/ActiveFilters.d.ts.map +1 -1
  71. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordion.d.ts +2 -1
  72. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordion.d.ts.map +1 -1
  73. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordionCheckboxGroup.d.ts +8 -0
  74. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordionCheckboxGroup.d.ts.map +1 -0
  75. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordionDateRange.d.ts +8 -0
  76. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordionDateRange.d.ts.map +1 -0
  77. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordionRadioGroup.d.ts +8 -0
  78. package/dist/types/components/List/components/Header/components/AllFiltersModal/FilterAccordionRadioGroup.d.ts.map +1 -0
  79. package/dist/types/components/List/components/Header/components/FilterContextMenu/DateRangeFilterPopover.d.ts +8 -0
  80. package/dist/types/components/List/components/Header/components/FilterContextMenu/DateRangeFilterPopover.d.ts.map +1 -0
  81. package/dist/types/components/List/components/Header/components/FilterContextMenu/FilterContextMenu.d.ts +1 -1
  82. package/dist/types/components/List/components/Header/components/FilterContextMenu/FilterContextMenu.d.ts.map +1 -1
  83. package/dist/types/components/List/components/Header/components/FilterContextMenu/FilterContextMenus.d.ts.map +1 -1
  84. package/dist/types/components/List/model/List.d.ts +2 -1
  85. package/dist/types/components/List/model/List.d.ts.map +1 -1
  86. package/dist/types/components/List/model/filter/DateRangeFilter.d.ts +16 -0
  87. package/dist/types/components/List/model/filter/DateRangeFilter.d.ts.map +1 -0
  88. package/dist/types/components/List/model/filter/Filter.d.ts +1 -1
  89. package/dist/types/components/List/model/filter/Filter.d.ts.map +1 -1
  90. package/dist/types/components/List/model/filter/dateRangeFilterFn.d.ts +7 -0
  91. package/dist/types/components/List/model/filter/dateRangeFilterFn.d.ts.map +1 -0
  92. package/dist/types/components/List/model/filter/types.d.ts +5 -1
  93. package/dist/types/components/List/model/filter/types.d.ts.map +1 -1
  94. package/dist/types/components/List/stories/Default.stories.d.ts +1 -0
  95. package/dist/types/components/List/stories/Default.stories.d.ts.map +1 -1
  96. package/dist/types/components/public.d.ts +1 -0
  97. package/dist/types/components/public.d.ts.map +1 -1
  98. package/dist/types/lib/date/transformDateValueToDateTime.d.ts +4 -0
  99. package/dist/types/lib/date/transformDateValueToDateTime.d.ts.map +1 -0
  100. package/dist/types/lib/date/transformDateValueToFormattedDate.d.ts +3 -0
  101. package/dist/types/lib/date/transformDateValueToFormattedDate.d.ts.map +1 -0
  102. package/dist/types/views/RangeCalendarView.d.ts +5 -0
  103. package/dist/types/views/RangeCalendarView.d.ts.map +1 -0
  104. package/package.json +6 -6
  105. package/dist/js/packages/components/src/components/Calendar/RangeCalendar.mjs.map +0 -1
  106. package/dist/types/components/Calendar/RangeCalendar.d.ts +0 -4
  107. package/dist/types/components/Calendar/RangeCalendar.d.ts.map +0 -1
@@ -225857,21 +225857,33 @@
225857
225857
  }
225858
225858
  }
225859
225859
  },
225860
- {
225861
- "tags": {},
225862
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Calendar/RangeCalendar.tsx",
225863
- "description": "",
225864
- "displayName": "RangeCalendar",
225865
- "methods": [],
225866
- "props": {}
225867
- },
225868
225860
  {
225869
225861
  "tags": {},
225870
225862
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Calendar/Calendar.tsx",
225871
225863
  "description": "",
225872
225864
  "displayName": "Calendar",
225873
225865
  "methods": [],
225874
- "props": {}
225866
+ "props": {
225867
+ "className": {
225868
+ "defaultValue": null,
225869
+ "description": "The elements class name.",
225870
+ "name": "className",
225871
+ "parent": {
225872
+ "fileName": "components/src/lib/types/props.ts",
225873
+ "name": "PropsWithClassName"
225874
+ },
225875
+ "declarations": [
225876
+ {
225877
+ "fileName": "components/src/lib/types/props.ts",
225878
+ "name": "PropsWithClassName"
225879
+ }
225880
+ ],
225881
+ "required": false,
225882
+ "type": {
225883
+ "name": "string"
225884
+ }
225885
+ }
225886
+ }
225875
225887
  },
225876
225888
  {
225877
225889
  "tags": {
@@ -272396,9 +272408,9 @@
272396
272408
  },
272397
272409
  {
272398
272410
  "tags": {},
272399
- "filePath": "src/integrations/react-hook-form/components/ResetButton/ResetButton.tsx",
272411
+ "filePath": "src/integrations/react-hook-form/components/SubmitButton/SubmitButton.tsx",
272400
272412
  "description": "",
272401
- "displayName": "ResetButton",
272413
+ "displayName": "SubmitButton",
272402
272414
  "methods": [],
272403
272415
  "props": {
272404
272416
  "slot": {
@@ -274747,14 +274759,33 @@
274747
274759
  "type": {
274748
274760
  "name": "Key | null"
274749
274761
  }
274762
+ },
274763
+ "showFeedback": {
274764
+ "defaultValue": null,
274765
+ "description": "",
274766
+ "name": "showFeedback",
274767
+ "parent": {
274768
+ "fileName": "components/src/components/Action/types.ts",
274769
+ "name": "ActionProps"
274770
+ },
274771
+ "declarations": [
274772
+ {
274773
+ "fileName": "components/src/components/Action/types.ts",
274774
+ "name": "ActionProps"
274775
+ }
274776
+ ],
274777
+ "required": false,
274778
+ "type": {
274779
+ "name": "boolean"
274780
+ }
274750
274781
  }
274751
274782
  }
274752
274783
  },
274753
274784
  {
274754
274785
  "tags": {},
274755
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/SubmitButton/SubmitButton.tsx",
274786
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/ResetButton/ResetButton.tsx",
274756
274787
  "description": "",
274757
- "displayName": "SubmitButton",
274788
+ "displayName": "ResetButton",
274758
274789
  "methods": [],
274759
274790
  "props": {
274760
274791
  "slot": {
@@ -277103,25 +277134,6 @@
277103
277134
  "type": {
277104
277135
  "name": "Key | null"
277105
277136
  }
277106
- },
277107
- "showFeedback": {
277108
- "defaultValue": null,
277109
- "description": "",
277110
- "name": "showFeedback",
277111
- "parent": {
277112
- "fileName": "components/src/components/Action/types.ts",
277113
- "name": "ActionProps"
277114
- },
277115
- "declarations": [
277116
- {
277117
- "fileName": "components/src/components/Action/types.ts",
277118
- "name": "ActionProps"
277119
- }
277120
- ],
277121
- "required": false,
277122
- "type": {
277123
- "name": "boolean"
277124
- }
277125
277137
  }
277126
277138
  }
277127
277139
  },
@@ -277176,172 +277188,6 @@
277176
277188
  "methods": [],
277177
277189
  "props": {}
277178
277190
  },
277179
- {
277180
- "tags": {},
277181
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277182
- "description": "",
277183
- "displayName": "FormContext",
277184
- "methods": [],
277185
- "props": {
277186
- "value": {
277187
- "defaultValue": null,
277188
- "description": "",
277189
- "name": "value",
277190
- "parent": {
277191
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277192
- "name": "ProviderProps"
277193
- },
277194
- "declarations": [
277195
- {
277196
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277197
- "name": "ProviderProps"
277198
- }
277199
- ],
277200
- "required": true,
277201
- "type": {
277202
- "name": "FormContext<FieldValues> | undefined"
277203
- }
277204
- },
277205
- "children": {
277206
- "defaultValue": null,
277207
- "description": "",
277208
- "name": "children",
277209
- "parent": {
277210
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277211
- "name": "DOMAttributes"
277212
- },
277213
- "declarations": [
277214
- {
277215
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277216
- "name": "DOMAttributes"
277217
- }
277218
- ],
277219
- "required": false,
277220
- "type": {
277221
- "name": "ReactNode"
277222
- }
277223
- }
277224
- }
277225
- },
277226
- {
277227
- "tags": {},
277228
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277229
- "description": "",
277230
- "displayName": "FormContextProvider",
277231
- "methods": [],
277232
- "props": {
277233
- "form": {
277234
- "defaultValue": null,
277235
- "description": "",
277236
- "name": "form",
277237
- "parent": {
277238
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277239
- "name": "FormContextProviderProps"
277240
- },
277241
- "declarations": [
277242
- {
277243
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277244
- "name": "FormContextProviderProps"
277245
- }
277246
- ],
277247
- "required": true,
277248
- "type": {
277249
- "name": "UseFormReturn"
277250
- }
277251
- },
277252
- "id": {
277253
- "defaultValue": null,
277254
- "description": "",
277255
- "name": "id",
277256
- "parent": {
277257
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277258
- "name": "FormContextProviderProps"
277259
- },
277260
- "declarations": [
277261
- {
277262
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277263
- "name": "FormContextProviderProps"
277264
- }
277265
- ],
277266
- "required": true,
277267
- "type": {
277268
- "name": "string"
277269
- }
277270
- },
277271
- "isReadOnly": {
277272
- "defaultValue": null,
277273
- "description": "",
277274
- "name": "isReadOnly",
277275
- "parent": {
277276
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277277
- "name": "FormContextProviderProps"
277278
- },
277279
- "declarations": [
277280
- {
277281
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277282
- "name": "FormContextProviderProps"
277283
- }
277284
- ],
277285
- "required": false,
277286
- "type": {
277287
- "name": "boolean"
277288
- }
277289
- },
277290
- "onAfterSuccessFeedback": {
277291
- "defaultValue": null,
277292
- "description": "",
277293
- "name": "onAfterSuccessFeedback",
277294
- "parent": {
277295
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277296
- "name": "FormContextProviderProps"
277297
- },
277298
- "declarations": [
277299
- {
277300
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277301
- "name": "FormContextProviderProps"
277302
- }
277303
- ],
277304
- "required": false,
277305
- "type": {
277306
- "name": "AfterFormSubmitCallback"
277307
- }
277308
- },
277309
- "rootErrorController": {
277310
- "defaultValue": null,
277311
- "description": "",
277312
- "name": "rootErrorController",
277313
- "parent": {
277314
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277315
- "name": "FormContextProviderProps"
277316
- },
277317
- "declarations": [
277318
- {
277319
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277320
- "name": "FormContextProviderProps"
277321
- }
277322
- ],
277323
- "required": true,
277324
- "type": {
277325
- "name": "FormRootErrorController"
277326
- }
277327
- },
277328
- "children": {
277329
- "defaultValue": null,
277330
- "description": "",
277331
- "name": "children",
277332
- "declarations": [
277333
- {
277334
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277335
- "name": "TypeLiteral"
277336
- }
277337
- ],
277338
- "required": false,
277339
- "type": {
277340
- "name": "ReactNode"
277341
- }
277342
- }
277343
- }
277344
- },
277345
277191
  {
277346
277192
  "tags": {},
277347
277193
  "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormAction/FormSubmitAction.tsx",
@@ -283843,6 +283689,172 @@
283843
283689
  }
283844
283690
  }
283845
283691
  },
283692
+ {
283693
+ "tags": {},
283694
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283695
+ "description": "",
283696
+ "displayName": "FormContext",
283697
+ "methods": [],
283698
+ "props": {
283699
+ "value": {
283700
+ "defaultValue": null,
283701
+ "description": "",
283702
+ "name": "value",
283703
+ "parent": {
283704
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283705
+ "name": "ProviderProps"
283706
+ },
283707
+ "declarations": [
283708
+ {
283709
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283710
+ "name": "ProviderProps"
283711
+ }
283712
+ ],
283713
+ "required": true,
283714
+ "type": {
283715
+ "name": "FormContext<FieldValues> | undefined"
283716
+ }
283717
+ },
283718
+ "children": {
283719
+ "defaultValue": null,
283720
+ "description": "",
283721
+ "name": "children",
283722
+ "parent": {
283723
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283724
+ "name": "DOMAttributes"
283725
+ },
283726
+ "declarations": [
283727
+ {
283728
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283729
+ "name": "DOMAttributes"
283730
+ }
283731
+ ],
283732
+ "required": false,
283733
+ "type": {
283734
+ "name": "ReactNode"
283735
+ }
283736
+ }
283737
+ }
283738
+ },
283739
+ {
283740
+ "tags": {},
283741
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283742
+ "description": "",
283743
+ "displayName": "FormContextProvider",
283744
+ "methods": [],
283745
+ "props": {
283746
+ "form": {
283747
+ "defaultValue": null,
283748
+ "description": "",
283749
+ "name": "form",
283750
+ "parent": {
283751
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283752
+ "name": "FormContextProviderProps"
283753
+ },
283754
+ "declarations": [
283755
+ {
283756
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283757
+ "name": "FormContextProviderProps"
283758
+ }
283759
+ ],
283760
+ "required": true,
283761
+ "type": {
283762
+ "name": "UseFormReturn"
283763
+ }
283764
+ },
283765
+ "id": {
283766
+ "defaultValue": null,
283767
+ "description": "",
283768
+ "name": "id",
283769
+ "parent": {
283770
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283771
+ "name": "FormContextProviderProps"
283772
+ },
283773
+ "declarations": [
283774
+ {
283775
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283776
+ "name": "FormContextProviderProps"
283777
+ }
283778
+ ],
283779
+ "required": true,
283780
+ "type": {
283781
+ "name": "string"
283782
+ }
283783
+ },
283784
+ "isReadOnly": {
283785
+ "defaultValue": null,
283786
+ "description": "",
283787
+ "name": "isReadOnly",
283788
+ "parent": {
283789
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283790
+ "name": "FormContextProviderProps"
283791
+ },
283792
+ "declarations": [
283793
+ {
283794
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283795
+ "name": "FormContextProviderProps"
283796
+ }
283797
+ ],
283798
+ "required": false,
283799
+ "type": {
283800
+ "name": "boolean"
283801
+ }
283802
+ },
283803
+ "onAfterSuccessFeedback": {
283804
+ "defaultValue": null,
283805
+ "description": "",
283806
+ "name": "onAfterSuccessFeedback",
283807
+ "parent": {
283808
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283809
+ "name": "FormContextProviderProps"
283810
+ },
283811
+ "declarations": [
283812
+ {
283813
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283814
+ "name": "FormContextProviderProps"
283815
+ }
283816
+ ],
283817
+ "required": false,
283818
+ "type": {
283819
+ "name": "AfterFormSubmitCallback"
283820
+ }
283821
+ },
283822
+ "rootErrorController": {
283823
+ "defaultValue": null,
283824
+ "description": "",
283825
+ "name": "rootErrorController",
283826
+ "parent": {
283827
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283828
+ "name": "FormContextProviderProps"
283829
+ },
283830
+ "declarations": [
283831
+ {
283832
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283833
+ "name": "FormContextProviderProps"
283834
+ }
283835
+ ],
283836
+ "required": true,
283837
+ "type": {
283838
+ "name": "FormRootErrorController"
283839
+ }
283840
+ },
283841
+ "children": {
283842
+ "defaultValue": null,
283843
+ "description": "",
283844
+ "name": "children",
283845
+ "declarations": [
283846
+ {
283847
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283848
+ "name": "TypeLiteral"
283849
+ }
283850
+ ],
283851
+ "required": false,
283852
+ "type": {
283853
+ "name": "ReactNode"
283854
+ }
283855
+ }
283856
+ }
283857
+ },
283846
283858
  {
283847
283859
  "tags": {},
283848
283860
  "filePath": "src/integrations/nextjs/components/RouterProvider/RouterProvider.tsx",
@@ -283871,7 +283883,33 @@
283871
283883
  "tags": {
283872
283884
  "deprecated": "Use RouterProvider instead"
283873
283885
  },
283874
- "filePath": "src/integrations/nextjs/components/Link/Link.tsx",
283886
+ "filePath": "src/integrations/nextjs/components/LinkProvider/LinkProvider.tsx",
283887
+ "description": "",
283888
+ "displayName": "LinkProvider",
283889
+ "methods": [],
283890
+ "props": {
283891
+ "children": {
283892
+ "defaultValue": null,
283893
+ "description": "",
283894
+ "name": "children",
283895
+ "declarations": [
283896
+ {
283897
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283898
+ "name": "TypeLiteral"
283899
+ }
283900
+ ],
283901
+ "required": false,
283902
+ "type": {
283903
+ "name": "ReactNode"
283904
+ }
283905
+ }
283906
+ }
283907
+ },
283908
+ {
283909
+ "tags": {
283910
+ "deprecated": "Use RouterProvider instead"
283911
+ },
283912
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/nextjs/components/Link/Link.tsx",
283875
283913
  "description": "",
283876
283914
  "displayName": "Link",
283877
283915
  "methods": [],
@@ -283881,12 +283919,12 @@
283881
283919
  "description": "",
283882
283920
  "name": "ref",
283883
283921
  "parent": {
283884
- "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
283922
+ "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
283885
283923
  "name": "Props"
283886
283924
  },
283887
283925
  "declarations": [
283888
283926
  {
283889
- "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
283927
+ "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
283890
283928
  "name": "Props"
283891
283929
  }
283892
283930
  ],
@@ -283900,12 +283938,12 @@
283900
283938
  "description": "",
283901
283939
  "name": "isDisabled",
283902
283940
  "parent": {
283903
- "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
283941
+ "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
283904
283942
  "name": "Props"
283905
283943
  },
283906
283944
  "declarations": [
283907
283945
  {
283908
- "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
283946
+ "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
283909
283947
  "name": "Props"
283910
283948
  }
283911
283949
  ],
@@ -289369,32 +289407,6 @@
289369
289407
  }
289370
289408
  }
289371
289409
  },
289372
- {
289373
- "tags": {
289374
- "deprecated": "Use RouterProvider instead"
289375
- },
289376
- "filePath": "src/integrations/nextjs/components/LinkProvider/LinkProvider.tsx",
289377
- "description": "",
289378
- "displayName": "LinkProvider",
289379
- "methods": [],
289380
- "props": {
289381
- "children": {
289382
- "defaultValue": null,
289383
- "description": "",
289384
- "name": "children",
289385
- "declarations": [
289386
- {
289387
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
289388
- "name": "TypeLiteral"
289389
- }
289390
- ],
289391
- "required": false,
289392
- "type": {
289393
- "name": "ReactNode"
289394
- }
289395
- }
289396
- }
289397
- },
289398
289410
  {
289399
289411
  "tags": {
289400
289412
  "flr-generate": "all"
@@ -304579,9 +304591,9 @@
304579
304591
  "tags": {
304580
304592
  "flr-generate": "all"
304581
304593
  },
304582
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/Radio/Radio.tsx",
304594
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/RadioButton/RadioButton.tsx",
304583
304595
  "description": "",
304584
- "displayName": "Radio",
304596
+ "displayName": "RadioButton",
304585
304597
  "methods": [],
304586
304598
  "props": {
304587
304599
  "className": {
@@ -306469,9 +306481,9 @@
306469
306481
  "tags": {
306470
306482
  "flr-generate": "all"
306471
306483
  },
306472
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/RadioButton/RadioButton.tsx",
306484
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/Radio/Radio.tsx",
306473
306485
  "description": "",
306474
- "displayName": "RadioButton",
306486
+ "displayName": "Radio",
306475
306487
  "methods": [],
306476
306488
  "props": {
306477
306489
  "className": {
@@ -308493,6 +308505,34 @@
308493
308505
  }
308494
308506
  }
308495
308507
  },
308508
+ {
308509
+ "tags": {},
308510
+ "filePath": "src/components/Popover/components/PopoverTip/PopoverTip.tsx",
308511
+ "description": "",
308512
+ "displayName": "PopoverTip",
308513
+ "methods": [],
308514
+ "props": {
308515
+ "className": {
308516
+ "defaultValue": null,
308517
+ "description": "The elements class name.",
308518
+ "name": "className",
308519
+ "parent": {
308520
+ "fileName": "components/src/lib/types/props.ts",
308521
+ "name": "PropsWithClassName"
308522
+ },
308523
+ "declarations": [
308524
+ {
308525
+ "fileName": "components/src/lib/types/props.ts",
308526
+ "name": "PropsWithClassName"
308527
+ }
308528
+ ],
308529
+ "required": false,
308530
+ "type": {
308531
+ "name": "string"
308532
+ }
308533
+ }
308534
+ }
308535
+ },
308496
308536
  {
308497
308537
  "tags": {
308498
308538
  "flr-generate": "all"
@@ -308671,34 +308711,6 @@
308671
308711
  }
308672
308712
  }
308673
308713
  },
308674
- {
308675
- "tags": {},
308676
- "filePath": "src/components/Popover/components/PopoverTip/PopoverTip.tsx",
308677
- "description": "",
308678
- "displayName": "PopoverTip",
308679
- "methods": [],
308680
- "props": {
308681
- "className": {
308682
- "defaultValue": null,
308683
- "description": "The elements class name.",
308684
- "name": "className",
308685
- "parent": {
308686
- "fileName": "components/src/lib/types/props.ts",
308687
- "name": "PropsWithClassName"
308688
- },
308689
- "declarations": [
308690
- {
308691
- "fileName": "components/src/lib/types/props.ts",
308692
- "name": "PropsWithClassName"
308693
- }
308694
- ],
308695
- "required": false,
308696
- "type": {
308697
- "name": "string"
308698
- }
308699
- }
308700
- }
308701
- },
308702
308714
  {
308703
308715
  "tags": {
308704
308716
  "internal": ""
@@ -314715,14 +314727,6 @@
314715
314727
  }
314716
314728
  }
314717
314729
  },
314718
- {
314719
- "tags": {},
314720
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.tsx",
314721
- "description": "",
314722
- "displayName": "OffCanvasSuspenseFallback",
314723
- "methods": [],
314724
- "props": {}
314725
- },
314726
314730
  {
314727
314731
  "tags": {},
314728
314732
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
@@ -314861,6 +314865,14 @@
314861
314865
  }
314862
314866
  }
314863
314867
  },
314868
+ {
314869
+ "tags": {},
314870
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.tsx",
314871
+ "description": "",
314872
+ "displayName": "OffCanvasSuspenseFallback",
314873
+ "methods": [],
314874
+ "props": {}
314875
+ },
314864
314876
  {
314865
314877
  "tags": {},
314866
314878
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.tsx",
@@ -315216,14 +315228,6 @@
315216
315228
  "methods": [],
315217
315229
  "props": {}
315218
315230
  },
315219
- {
315220
- "tags": {},
315221
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/Table.tsx",
315222
- "description": "",
315223
- "displayName": "Table",
315224
- "methods": [],
315225
- "props": {}
315226
- },
315227
315231
  {
315228
315232
  "tags": {
315229
315233
  "flr-generate": "all"
@@ -315347,6 +315351,14 @@
315347
315351
  }
315348
315352
  }
315349
315353
  },
315354
+ {
315355
+ "tags": {},
315356
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/Table.tsx",
315357
+ "description": "",
315358
+ "displayName": "Table",
315359
+ "methods": [],
315360
+ "props": {}
315361
+ },
315350
315362
  {
315351
315363
  "tags": {},
315352
315364
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/ListItemView/ListItemView.tsx",
@@ -341271,249 +341283,13 @@
341271
341283
  }
341272
341284
  }
341273
341285
  },
341274
- {
341275
- "tags": {},
341276
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Calendar/components/CalendarHeader/CalendarHeader.tsx",
341277
- "description": "",
341278
- "displayName": "CalendarHeader",
341279
- "methods": [],
341280
- "props": {}
341281
- },
341282
- {
341283
- "tags": {},
341284
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Breadcrumb/components/BreadcrumbItem/BreadcrumbItem.tsx",
341285
- "description": "",
341286
- "displayName": "BreadcrumbItem",
341287
- "methods": [],
341288
- "props": {
341289
- "children": {
341290
- "defaultValue": null,
341291
- "description": "",
341292
- "name": "children",
341293
- "declarations": [
341294
- {
341295
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
341296
- "name": "TypeLiteral"
341297
- }
341298
- ],
341299
- "required": false,
341300
- "type": {
341301
- "name": "ReactNode"
341302
- }
341303
- }
341304
- }
341305
- },
341306
- {
341307
- "tags": {},
341308
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/components/TableRowSkeletonView.tsx",
341309
- "description": "",
341310
- "displayName": "TableRowSkeletonView",
341311
- "methods": [],
341312
- "props": {}
341313
- },
341314
- {
341315
- "tags": {},
341316
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/components/TableBodyLoadingView.tsx",
341317
- "description": "",
341318
- "displayName": "TableBodyLoadingView",
341319
- "methods": [],
341320
- "props": {}
341321
- },
341322
341286
  {
341323
341287
  "tags": {
341324
341288
  "flr-generate": "all"
341325
341289
  },
341326
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341290
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Calendar/components/RangeCalendar/RangeCalendar.tsx",
341327
341291
  "description": "",
341328
- "displayName": "ListItemViewContent",
341329
- "methods": [],
341330
- "props": {
341331
- "children": {
341332
- "defaultValue": null,
341333
- "description": "",
341334
- "name": "children",
341335
- "declarations": [
341336
- {
341337
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
341338
- "name": "TypeLiteral"
341339
- }
341340
- ],
341341
- "required": false,
341342
- "type": {
341343
- "name": "ReactNode"
341344
- }
341345
- },
341346
- "s": {
341347
- "defaultValue": null,
341348
- "description": "Column layout for container size s.",
341349
- "name": "s",
341350
- "parent": {
341351
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
341352
- "name": "ColumnLayoutProps"
341353
- },
341354
- "declarations": [
341355
- {
341356
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
341357
- "name": "ColumnLayoutProps"
341358
- }
341359
- ],
341360
- "required": false,
341361
- "type": {
341362
- "name": "(number | null)[]"
341363
- }
341364
- },
341365
- "m": {
341366
- "defaultValue": null,
341367
- "description": "Column layout for container size m.",
341368
- "name": "m",
341369
- "parent": {
341370
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
341371
- "name": "ColumnLayoutProps"
341372
- },
341373
- "declarations": [
341374
- {
341375
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
341376
- "name": "ColumnLayoutProps"
341377
- }
341378
- ],
341379
- "required": false,
341380
- "type": {
341381
- "name": "(number | null)[]"
341382
- }
341383
- },
341384
- "l": {
341385
- "defaultValue": null,
341386
- "description": "Column layout for container size l.",
341387
- "name": "l",
341388
- "parent": {
341389
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
341390
- "name": "ColumnLayoutProps"
341391
- },
341392
- "declarations": [
341393
- {
341394
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
341395
- "name": "ColumnLayoutProps"
341396
- }
341397
- ],
341398
- "required": false,
341399
- "type": {
341400
- "name": "(number | null)[]"
341401
- }
341402
- },
341403
- "title": {
341404
- "defaultValue": null,
341405
- "description": "",
341406
- "name": "title",
341407
- "declarations": [
341408
- {
341409
- "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341410
- "name": "TypeLiteral"
341411
- }
341412
- ],
341413
- "required": false,
341414
- "type": {
341415
- "name": "ReactNode"
341416
- }
341417
- },
341418
- "subTitle": {
341419
- "defaultValue": null,
341420
- "description": "",
341421
- "name": "subTitle",
341422
- "declarations": [
341423
- {
341424
- "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341425
- "name": "TypeLiteral"
341426
- }
341427
- ],
341428
- "required": false,
341429
- "type": {
341430
- "name": "ReactNode"
341431
- }
341432
- },
341433
- "avatar": {
341434
- "defaultValue": null,
341435
- "description": "",
341436
- "name": "avatar",
341437
- "declarations": [
341438
- {
341439
- "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341440
- "name": "TypeLiteral"
341441
- }
341442
- ],
341443
- "required": false,
341444
- "type": {
341445
- "name": "ReactNode"
341446
- }
341447
- },
341448
- "button": {
341449
- "defaultValue": null,
341450
- "description": "",
341451
- "name": "button",
341452
- "declarations": [
341453
- {
341454
- "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341455
- "name": "TypeLiteral"
341456
- }
341457
- ],
341458
- "required": false,
341459
- "type": {
341460
- "name": "ReactNode"
341461
- }
341462
- },
341463
- "bottom": {
341464
- "defaultValue": null,
341465
- "description": "",
341466
- "name": "bottom",
341467
- "declarations": [
341468
- {
341469
- "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341470
- "name": "TypeLiteral"
341471
- }
341472
- ],
341473
- "required": false,
341474
- "type": {
341475
- "name": "ReactNode"
341476
- }
341477
- },
341478
- "checkbox": {
341479
- "defaultValue": null,
341480
- "description": "",
341481
- "name": "checkbox",
341482
- "declarations": [
341483
- {
341484
- "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341485
- "name": "TypeLiteral"
341486
- }
341487
- ],
341488
- "required": false,
341489
- "type": {
341490
- "name": "ReactNode"
341491
- }
341492
- },
341493
- "viewMode": {
341494
- "defaultValue": null,
341495
- "description": "",
341496
- "name": "viewMode",
341497
- "declarations": [
341498
- {
341499
- "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
341500
- "name": "TypeLiteral"
341501
- }
341502
- ],
341503
- "required": false,
341504
- "type": {
341505
- "name": "ListViewMode"
341506
- }
341507
- }
341508
- }
341509
- },
341510
- {
341511
- "tags": {
341512
- "flr-generate": "all"
341513
- },
341514
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Items/views/ListBoxItem/ListBoxItem.tsx",
341515
- "description": "",
341516
- "displayName": "ListBoxItem",
341292
+ "displayName": "RangeCalendar",
341517
341293
  "methods": [],
341518
341294
  "props": {
341519
341295
  "className": {
@@ -341537,170 +341313,18 @@
341537
341313
  "name": "ClassNameOrFunction<TooltipRenderProps>"
341538
341314
  }
341539
341315
  },
341540
- "id": {
341541
- "defaultValue": null,
341542
- "description": "The unique id of the item.",
341543
- "name": "id",
341544
- "parent": {
341545
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341546
- "name": "MenuItemProps"
341547
- },
341548
- "declarations": [
341549
- {
341550
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341551
- "name": "MenuItemProps"
341552
- }
341553
- ],
341554
- "required": false,
341555
- "type": {
341556
- "name": "Key"
341557
- }
341558
- },
341559
- "value": {
341560
- "defaultValue": null,
341561
- "description": "The object value that this item represents. When using dynamic collections, this is set automatically.",
341562
- "name": "value",
341563
- "parent": {
341564
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341565
- "name": "MenuItemProps"
341566
- },
341567
- "declarations": [
341568
- {
341569
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341570
- "name": "MenuItemProps"
341571
- }
341572
- ],
341573
- "required": false,
341574
- "type": {
341575
- "name": "object"
341576
- }
341577
- },
341578
- "textValue": {
341579
- "defaultValue": null,
341580
- "description": "A string representation of the item's contents, used for features like typeahead.",
341581
- "name": "textValue",
341582
- "parent": {
341583
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341584
- "name": "ListBoxItemProps"
341585
- },
341586
- "declarations": [
341587
- {
341588
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341589
- "name": "ListBoxItemProps"
341590
- }
341591
- ],
341592
- "required": false,
341593
- "type": {
341594
- "name": "string"
341595
- }
341596
- },
341597
341316
  "aria-label": {
341598
341317
  "defaultValue": null,
341599
- "description": "An accessibility label for this item.",
341318
+ "description": "Defines a string value that labels the current element.",
341600
341319
  "name": "aria-label",
341601
- "parent": {
341602
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341603
- "name": "ListBoxItemProps"
341604
- },
341605
- "declarations": [
341606
- {
341607
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341608
- "name": "ListBoxItemProps"
341609
- }
341610
- ],
341611
- "required": false,
341612
- "type": {
341613
- "name": "string"
341614
- }
341615
- },
341616
- "isDisabled": {
341617
- "defaultValue": null,
341618
- "description": "Whether the item is disabled.",
341619
- "name": "isDisabled",
341620
- "parent": {
341621
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341622
- "name": "ListBoxItemProps"
341623
- },
341624
- "declarations": [
341625
- {
341626
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341627
- "name": "ListBoxItemProps"
341628
- }
341629
- ],
341630
- "required": false,
341631
- "type": {
341632
- "name": "boolean"
341633
- }
341634
- },
341635
- "onAction": {
341636
- "defaultValue": null,
341637
- "description": "Handler that is called when a user performs an action on the item. The exact user event depends on\nthe collection's `selectionBehavior` prop and the interaction modality.",
341638
- "name": "onAction",
341639
- "parent": {
341640
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341641
- "name": "ListBoxItemProps"
341642
- },
341643
- "declarations": [
341644
- {
341645
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341646
- "name": "ListBoxItemProps"
341647
- }
341648
- ],
341649
- "required": false,
341650
- "type": {
341651
- "name": "(() => void)"
341652
- }
341653
- },
341654
- "children": {
341655
- "defaultValue": null,
341656
- "description": "The elements that make up the table. Includes the TableHeader, TableBody, Columns, and Rows.",
341657
- "name": "children",
341658
- "parent": {
341659
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341660
- "name": "TableProps"
341661
- },
341662
- "declarations": [
341663
- {
341664
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341665
- "name": "TableProps"
341666
- }
341667
- ],
341668
- "required": false,
341669
- "type": {
341670
- "name": "ReactNode"
341671
- }
341672
- },
341673
- "style": {
341674
- "defaultValue": null,
341675
- "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.",
341676
- "name": "style",
341677
- "parent": {
341678
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341679
- "name": "StyleRenderProps"
341680
- },
341681
- "declarations": [
341682
- {
341683
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341684
- "name": "StyleRenderProps"
341685
- }
341686
- ],
341687
- "required": false,
341688
- "type": {
341689
- "name": "StyleOrFunction<TooltipRenderProps>"
341690
- }
341691
- },
341692
- "href": {
341693
- "defaultValue": null,
341694
- "description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).",
341695
- "name": "href",
341696
341320
  "parent": {
341697
341321
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341698
- "name": "LinkDOMProps"
341322
+ "name": "AriaLabelingProps"
341699
341323
  },
341700
341324
  "declarations": [
341701
341325
  {
341702
341326
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341703
- "name": "LinkDOMProps"
341327
+ "name": "AriaLabelingProps"
341704
341328
  }
341705
341329
  ],
341706
341330
  "required": false,
@@ -341708,18 +341332,18 @@
341708
341332
  "name": "string"
341709
341333
  }
341710
341334
  },
341711
- "hrefLang": {
341335
+ "aria-labelledby": {
341712
341336
  "defaultValue": null,
341713
- "description": "Hints at the human language of the linked URL. See[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).",
341714
- "name": "hrefLang",
341337
+ "description": "Identifies the element (or elements) that labels the current element.",
341338
+ "name": "aria-labelledby",
341715
341339
  "parent": {
341716
341340
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341717
- "name": "LinkDOMProps"
341341
+ "name": "AriaLabelingProps"
341718
341342
  },
341719
341343
  "declarations": [
341720
341344
  {
341721
341345
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341722
- "name": "LinkDOMProps"
341346
+ "name": "AriaLabelingProps"
341723
341347
  }
341724
341348
  ],
341725
341349
  "required": false,
@@ -341727,37 +341351,18 @@
341727
341351
  "name": "string"
341728
341352
  }
341729
341353
  },
341730
- "target": {
341731
- "defaultValue": null,
341732
- "description": "The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).",
341733
- "name": "target",
341734
- "parent": {
341735
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341736
- "name": "LinkDOMProps"
341737
- },
341738
- "declarations": [
341739
- {
341740
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341741
- "name": "LinkDOMProps"
341742
- }
341743
- ],
341744
- "required": false,
341745
- "type": {
341746
- "name": "HTMLAttributeAnchorTarget"
341747
- }
341748
- },
341749
- "rel": {
341354
+ "aria-describedby": {
341750
341355
  "defaultValue": null,
341751
- "description": "The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).",
341752
- "name": "rel",
341356
+ "description": "Identifies the element (or elements) that describes the object.",
341357
+ "name": "aria-describedby",
341753
341358
  "parent": {
341754
341359
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341755
- "name": "LinkDOMProps"
341360
+ "name": "AriaLabelingProps"
341756
341361
  },
341757
341362
  "declarations": [
341758
341363
  {
341759
341364
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341760
- "name": "LinkDOMProps"
341365
+ "name": "AriaLabelingProps"
341761
341366
  }
341762
341367
  ],
341763
341368
  "required": false,
@@ -341765,37 +341370,18 @@
341765
341370
  "name": "string"
341766
341371
  }
341767
341372
  },
341768
- "download": {
341769
- "defaultValue": null,
341770
- "description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).",
341771
- "name": "download",
341772
- "parent": {
341773
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341774
- "name": "LinkDOMProps"
341775
- },
341776
- "declarations": [
341777
- {
341778
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341779
- "name": "LinkDOMProps"
341780
- }
341781
- ],
341782
- "required": false,
341783
- "type": {
341784
- "name": "string | boolean"
341785
- }
341786
- },
341787
- "ping": {
341373
+ "aria-details": {
341788
341374
  "defaultValue": null,
341789
- "description": "A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).",
341790
- "name": "ping",
341375
+ "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.",
341376
+ "name": "aria-details",
341791
341377
  "parent": {
341792
341378
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341793
- "name": "LinkDOMProps"
341379
+ "name": "AriaLabelingProps"
341794
341380
  },
341795
341381
  "declarations": [
341796
341382
  {
341797
341383
  "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341798
- "name": "LinkDOMProps"
341384
+ "name": "AriaLabelingProps"
341799
341385
  }
341800
341386
  ],
341801
341387
  "required": false,
@@ -341803,270 +341389,2545 @@
341803
341389
  "name": "string"
341804
341390
  }
341805
341391
  },
341806
- "referrerPolicy": {
341807
- "defaultValue": null,
341808
- "description": "How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).",
341809
- "name": "referrerPolicy",
341810
- "parent": {
341811
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341812
- "name": "LinkDOMProps"
341813
- },
341814
- "declarations": [
341815
- {
341816
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341817
- "name": "LinkDOMProps"
341818
- }
341819
- ],
341820
- "required": false,
341821
- "type": {
341822
- "name": "HTMLAttributeReferrerPolicy"
341823
- }
341824
- },
341825
- "routerOptions": {
341826
- "defaultValue": null,
341827
- "description": "Options for the configured client side router.",
341828
- "name": "routerOptions",
341829
- "parent": {
341830
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341831
- "name": "LinkDOMProps"
341832
- },
341833
- "declarations": [
341834
- {
341835
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341836
- "name": "LinkDOMProps"
341837
- }
341838
- ],
341839
- "required": false,
341840
- "type": {
341841
- "name": "undefined"
341842
- }
341843
- },
341844
- "onHoverStart": {
341845
- "defaultValue": null,
341846
- "description": "Handler that is called when a hover interaction starts.",
341847
- "name": "onHoverStart",
341848
- "parent": {
341849
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341850
- "name": "HoverEvents"
341851
- },
341852
- "declarations": [
341853
- {
341854
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341855
- "name": "HoverEvents"
341856
- }
341857
- ],
341858
- "required": false,
341859
- "type": {
341860
- "name": "((e: HoverEvent) => void)"
341861
- }
341862
- },
341863
- "onHoverEnd": {
341864
- "defaultValue": null,
341865
- "description": "Handler that is called when a hover interaction ends.",
341866
- "name": "onHoverEnd",
341867
- "parent": {
341868
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341869
- "name": "HoverEvents"
341870
- },
341871
- "declarations": [
341872
- {
341873
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341874
- "name": "HoverEvents"
341875
- }
341876
- ],
341877
- "required": false,
341878
- "type": {
341879
- "name": "((e: HoverEvent) => void)"
341880
- }
341881
- },
341882
- "onHoverChange": {
341883
- "defaultValue": null,
341884
- "description": "Handler that is called when the hover state changes.",
341885
- "name": "onHoverChange",
341886
- "parent": {
341887
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341888
- "name": "HoverEvents"
341889
- },
341890
- "declarations": [
341891
- {
341892
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341893
- "name": "HoverEvents"
341894
- }
341895
- ],
341896
- "required": false,
341897
- "type": {
341898
- "name": "((isHovering: boolean) => void)"
341899
- }
341900
- },
341901
- "onPress": {
341902
- "defaultValue": null,
341903
- "description": "Handler that is called when the press is released over the target.",
341904
- "name": "onPress",
341905
- "parent": {
341906
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341907
- "name": "PressEvents"
341908
- },
341909
- "declarations": [
341910
- {
341911
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341912
- "name": "PressEvents"
341913
- }
341914
- ],
341915
- "required": false,
341916
- "type": {
341917
- "name": "((e: PressEvent) => void)"
341918
- }
341919
- },
341920
- "onPressStart": {
341921
- "defaultValue": null,
341922
- "description": "Handler that is called when a press interaction starts.",
341923
- "name": "onPressStart",
341924
- "parent": {
341925
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341926
- "name": "PressEvents"
341927
- },
341928
- "declarations": [
341929
- {
341930
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341931
- "name": "PressEvents"
341932
- }
341933
- ],
341934
- "required": false,
341935
- "type": {
341936
- "name": "((e: PressEvent) => void)"
341937
- }
341938
- },
341939
- "onPressEnd": {
341940
- "defaultValue": null,
341941
- "description": "Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.",
341942
- "name": "onPressEnd",
341943
- "parent": {
341944
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341945
- "name": "PressEvents"
341946
- },
341947
- "declarations": [
341948
- {
341949
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341950
- "name": "PressEvents"
341951
- }
341952
- ],
341953
- "required": false,
341954
- "type": {
341955
- "name": "((e: PressEvent) => void)"
341956
- }
341957
- },
341958
- "onPressChange": {
341959
- "defaultValue": null,
341960
- "description": "Handler that is called when the press state changes.",
341961
- "name": "onPressChange",
341962
- "parent": {
341963
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341964
- "name": "PressEvents"
341965
- },
341966
- "declarations": [
341967
- {
341968
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341969
- "name": "PressEvents"
341970
- }
341971
- ],
341972
- "required": false,
341973
- "type": {
341974
- "name": "((isPressed: boolean) => void)"
341975
- }
341976
- },
341977
- "onPressUp": {
341978
- "defaultValue": null,
341979
- "description": "Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.",
341980
- "name": "onPressUp",
341981
- "parent": {
341982
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341983
- "name": "PressEvents"
341984
- },
341985
- "declarations": [
341986
- {
341987
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
341988
- "name": "PressEvents"
341989
- }
341990
- ],
341991
- "required": false,
341992
- "type": {
341993
- "name": "((e: PressEvent) => void)"
341994
- }
341995
- },
341996
- "onClick": {
341997
- "defaultValue": null,
341998
- "description": "**Not recommended – use `onPress` instead.** `onClick` is an alias for `onPress`\nprovided for compatibility with other libraries. `onPress` provides \nadditional event details for non-mouse interactions.",
341999
- "name": "onClick",
342000
- "parent": {
342001
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342002
- "name": "PressEvents"
342003
- },
342004
- "declarations": [
342005
- {
342006
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342007
- "name": "PressEvents"
342008
- }
342009
- ],
342010
- "required": false,
342011
- "type": {
342012
- "name": "((e: MouseEvent<FocusableElement, MouseEvent>) => void)"
342013
- }
342014
- },
342015
- "onFocus": {
342016
- "defaultValue": null,
342017
- "description": "Handler that is called when the element receives focus.",
342018
- "name": "onFocus",
342019
- "parent": {
342020
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342021
- "name": "FocusEvents"
342022
- },
342023
- "declarations": [
342024
- {
342025
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342026
- "name": "FocusEvents"
342027
- }
342028
- ],
342029
- "required": false,
342030
- "type": {
342031
- "name": "((e: FocusEvent<Element, Element>) => void)"
342032
- }
342033
- },
342034
- "onBlur": {
342035
- "defaultValue": null,
342036
- "description": "Handler that is called when the element loses focus.",
342037
- "name": "onBlur",
342038
- "parent": {
342039
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342040
- "name": "FocusEvents"
342041
- },
342042
- "declarations": [
342043
- {
342044
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342045
- "name": "FocusEvents"
342046
- }
342047
- ],
342048
- "required": false,
342049
- "type": {
342050
- "name": "((e: FocusEvent<Element, Element>) => void)"
342051
- }
342052
- },
342053
- "onFocusChange": {
341392
+ "style": {
342054
341393
  "defaultValue": null,
342055
- "description": "Handler that is called when the element's focus status changes.",
342056
- "name": "onFocusChange",
341394
+ "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.",
341395
+ "name": "style",
342057
341396
  "parent": {
342058
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342059
- "name": "FocusEvents"
341397
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341398
+ "name": "StyleRenderProps"
342060
341399
  },
342061
341400
  "declarations": [
342062
341401
  {
342063
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
342064
- "name": "FocusEvents"
341402
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
341403
+ "name": "StyleRenderProps"
342065
341404
  }
342066
341405
  ],
342067
341406
  "required": false,
342068
341407
  "type": {
342069
- "name": "((isFocused: boolean) => void)"
341408
+ "name": "StyleOrFunction<TooltipRenderProps>"
341409
+ }
341410
+ },
341411
+ "dir": {
341412
+ "defaultValue": null,
341413
+ "description": "",
341414
+ "name": "dir",
341415
+ "parent": {
341416
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341417
+ "name": "GlobalDOMAttributes"
341418
+ },
341419
+ "declarations": [
341420
+ {
341421
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341422
+ "name": "GlobalDOMAttributes"
341423
+ }
341424
+ ],
341425
+ "required": false,
341426
+ "type": {
341427
+ "name": "string"
341428
+ }
341429
+ },
341430
+ "lang": {
341431
+ "defaultValue": null,
341432
+ "description": "",
341433
+ "name": "lang",
341434
+ "parent": {
341435
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341436
+ "name": "GlobalDOMAttributes"
341437
+ },
341438
+ "declarations": [
341439
+ {
341440
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341441
+ "name": "GlobalDOMAttributes"
341442
+ }
341443
+ ],
341444
+ "required": false,
341445
+ "type": {
341446
+ "name": "string"
341447
+ }
341448
+ },
341449
+ "hidden": {
341450
+ "defaultValue": null,
341451
+ "description": "",
341452
+ "name": "hidden",
341453
+ "parent": {
341454
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341455
+ "name": "GlobalDOMAttributes"
341456
+ },
341457
+ "declarations": [
341458
+ {
341459
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341460
+ "name": "GlobalDOMAttributes"
341461
+ }
341462
+ ],
341463
+ "required": false,
341464
+ "type": {
341465
+ "name": "boolean"
341466
+ }
341467
+ },
341468
+ "inert": {
341469
+ "defaultValue": null,
341470
+ "description": "",
341471
+ "name": "inert",
341472
+ "parent": {
341473
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341474
+ "name": "GlobalDOMAttributes"
341475
+ },
341476
+ "declarations": [
341477
+ {
341478
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341479
+ "name": "GlobalDOMAttributes"
341480
+ }
341481
+ ],
341482
+ "required": false,
341483
+ "type": {
341484
+ "name": "boolean"
341485
+ }
341486
+ },
341487
+ "translate": {
341488
+ "defaultValue": null,
341489
+ "description": "",
341490
+ "name": "translate",
341491
+ "parent": {
341492
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341493
+ "name": "GlobalDOMAttributes"
341494
+ },
341495
+ "declarations": [
341496
+ {
341497
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341498
+ "name": "GlobalDOMAttributes"
341499
+ }
341500
+ ],
341501
+ "required": false,
341502
+ "type": {
341503
+ "name": "\"yes\" | \"no\""
341504
+ }
341505
+ },
341506
+ "onClick": {
341507
+ "defaultValue": null,
341508
+ "description": "",
341509
+ "name": "onClick",
341510
+ "parent": {
341511
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341512
+ "name": "GlobalDOMEvents"
341513
+ },
341514
+ "declarations": [
341515
+ {
341516
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341517
+ "name": "GlobalDOMEvents"
341518
+ }
341519
+ ],
341520
+ "required": false,
341521
+ "type": {
341522
+ "name": "MouseEventHandler<HTMLDivElement>"
341523
+ }
341524
+ },
341525
+ "onClickCapture": {
341526
+ "defaultValue": null,
341527
+ "description": "",
341528
+ "name": "onClickCapture",
341529
+ "parent": {
341530
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341531
+ "name": "GlobalDOMEvents"
341532
+ },
341533
+ "declarations": [
341534
+ {
341535
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341536
+ "name": "GlobalDOMEvents"
341537
+ }
341538
+ ],
341539
+ "required": false,
341540
+ "type": {
341541
+ "name": "MouseEventHandler<HTMLDivElement>"
341542
+ }
341543
+ },
341544
+ "onAuxClick": {
341545
+ "defaultValue": null,
341546
+ "description": "",
341547
+ "name": "onAuxClick",
341548
+ "parent": {
341549
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341550
+ "name": "GlobalDOMEvents"
341551
+ },
341552
+ "declarations": [
341553
+ {
341554
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341555
+ "name": "GlobalDOMEvents"
341556
+ }
341557
+ ],
341558
+ "required": false,
341559
+ "type": {
341560
+ "name": "MouseEventHandler<HTMLDivElement>"
341561
+ }
341562
+ },
341563
+ "onAuxClickCapture": {
341564
+ "defaultValue": null,
341565
+ "description": "",
341566
+ "name": "onAuxClickCapture",
341567
+ "parent": {
341568
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341569
+ "name": "GlobalDOMEvents"
341570
+ },
341571
+ "declarations": [
341572
+ {
341573
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341574
+ "name": "GlobalDOMEvents"
341575
+ }
341576
+ ],
341577
+ "required": false,
341578
+ "type": {
341579
+ "name": "MouseEventHandler<HTMLDivElement>"
341580
+ }
341581
+ },
341582
+ "onContextMenu": {
341583
+ "defaultValue": null,
341584
+ "description": "",
341585
+ "name": "onContextMenu",
341586
+ "parent": {
341587
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341588
+ "name": "GlobalDOMEvents"
341589
+ },
341590
+ "declarations": [
341591
+ {
341592
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341593
+ "name": "GlobalDOMEvents"
341594
+ }
341595
+ ],
341596
+ "required": false,
341597
+ "type": {
341598
+ "name": "MouseEventHandler<HTMLDivElement>"
341599
+ }
341600
+ },
341601
+ "onContextMenuCapture": {
341602
+ "defaultValue": null,
341603
+ "description": "",
341604
+ "name": "onContextMenuCapture",
341605
+ "parent": {
341606
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341607
+ "name": "GlobalDOMEvents"
341608
+ },
341609
+ "declarations": [
341610
+ {
341611
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341612
+ "name": "GlobalDOMEvents"
341613
+ }
341614
+ ],
341615
+ "required": false,
341616
+ "type": {
341617
+ "name": "MouseEventHandler<HTMLDivElement>"
341618
+ }
341619
+ },
341620
+ "onDoubleClick": {
341621
+ "defaultValue": null,
341622
+ "description": "",
341623
+ "name": "onDoubleClick",
341624
+ "parent": {
341625
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341626
+ "name": "GlobalDOMEvents"
341627
+ },
341628
+ "declarations": [
341629
+ {
341630
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341631
+ "name": "GlobalDOMEvents"
341632
+ }
341633
+ ],
341634
+ "required": false,
341635
+ "type": {
341636
+ "name": "MouseEventHandler<HTMLDivElement>"
341637
+ }
341638
+ },
341639
+ "onDoubleClickCapture": {
341640
+ "defaultValue": null,
341641
+ "description": "",
341642
+ "name": "onDoubleClickCapture",
341643
+ "parent": {
341644
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341645
+ "name": "GlobalDOMEvents"
341646
+ },
341647
+ "declarations": [
341648
+ {
341649
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341650
+ "name": "GlobalDOMEvents"
341651
+ }
341652
+ ],
341653
+ "required": false,
341654
+ "type": {
341655
+ "name": "MouseEventHandler<HTMLDivElement>"
341656
+ }
341657
+ },
341658
+ "onMouseDown": {
341659
+ "defaultValue": null,
341660
+ "description": "",
341661
+ "name": "onMouseDown",
341662
+ "parent": {
341663
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341664
+ "name": "GlobalDOMEvents"
341665
+ },
341666
+ "declarations": [
341667
+ {
341668
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341669
+ "name": "GlobalDOMEvents"
341670
+ }
341671
+ ],
341672
+ "required": false,
341673
+ "type": {
341674
+ "name": "MouseEventHandler<HTMLDivElement>"
341675
+ }
341676
+ },
341677
+ "onMouseDownCapture": {
341678
+ "defaultValue": null,
341679
+ "description": "",
341680
+ "name": "onMouseDownCapture",
341681
+ "parent": {
341682
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341683
+ "name": "GlobalDOMEvents"
341684
+ },
341685
+ "declarations": [
341686
+ {
341687
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341688
+ "name": "GlobalDOMEvents"
341689
+ }
341690
+ ],
341691
+ "required": false,
341692
+ "type": {
341693
+ "name": "MouseEventHandler<HTMLDivElement>"
341694
+ }
341695
+ },
341696
+ "onMouseEnter": {
341697
+ "defaultValue": null,
341698
+ "description": "",
341699
+ "name": "onMouseEnter",
341700
+ "parent": {
341701
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341702
+ "name": "GlobalDOMEvents"
341703
+ },
341704
+ "declarations": [
341705
+ {
341706
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341707
+ "name": "GlobalDOMEvents"
341708
+ }
341709
+ ],
341710
+ "required": false,
341711
+ "type": {
341712
+ "name": "MouseEventHandler<HTMLDivElement>"
341713
+ }
341714
+ },
341715
+ "onMouseLeave": {
341716
+ "defaultValue": null,
341717
+ "description": "",
341718
+ "name": "onMouseLeave",
341719
+ "parent": {
341720
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341721
+ "name": "GlobalDOMEvents"
341722
+ },
341723
+ "declarations": [
341724
+ {
341725
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341726
+ "name": "GlobalDOMEvents"
341727
+ }
341728
+ ],
341729
+ "required": false,
341730
+ "type": {
341731
+ "name": "MouseEventHandler<HTMLDivElement>"
341732
+ }
341733
+ },
341734
+ "onMouseMove": {
341735
+ "defaultValue": null,
341736
+ "description": "",
341737
+ "name": "onMouseMove",
341738
+ "parent": {
341739
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341740
+ "name": "GlobalDOMEvents"
341741
+ },
341742
+ "declarations": [
341743
+ {
341744
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341745
+ "name": "GlobalDOMEvents"
341746
+ }
341747
+ ],
341748
+ "required": false,
341749
+ "type": {
341750
+ "name": "MouseEventHandler<HTMLDivElement>"
341751
+ }
341752
+ },
341753
+ "onMouseMoveCapture": {
341754
+ "defaultValue": null,
341755
+ "description": "",
341756
+ "name": "onMouseMoveCapture",
341757
+ "parent": {
341758
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341759
+ "name": "GlobalDOMEvents"
341760
+ },
341761
+ "declarations": [
341762
+ {
341763
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341764
+ "name": "GlobalDOMEvents"
341765
+ }
341766
+ ],
341767
+ "required": false,
341768
+ "type": {
341769
+ "name": "MouseEventHandler<HTMLDivElement>"
341770
+ }
341771
+ },
341772
+ "onMouseOut": {
341773
+ "defaultValue": null,
341774
+ "description": "",
341775
+ "name": "onMouseOut",
341776
+ "parent": {
341777
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341778
+ "name": "GlobalDOMEvents"
341779
+ },
341780
+ "declarations": [
341781
+ {
341782
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341783
+ "name": "GlobalDOMEvents"
341784
+ }
341785
+ ],
341786
+ "required": false,
341787
+ "type": {
341788
+ "name": "MouseEventHandler<HTMLDivElement>"
341789
+ }
341790
+ },
341791
+ "onMouseOutCapture": {
341792
+ "defaultValue": null,
341793
+ "description": "",
341794
+ "name": "onMouseOutCapture",
341795
+ "parent": {
341796
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341797
+ "name": "GlobalDOMEvents"
341798
+ },
341799
+ "declarations": [
341800
+ {
341801
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341802
+ "name": "GlobalDOMEvents"
341803
+ }
341804
+ ],
341805
+ "required": false,
341806
+ "type": {
341807
+ "name": "MouseEventHandler<HTMLDivElement>"
341808
+ }
341809
+ },
341810
+ "onMouseOver": {
341811
+ "defaultValue": null,
341812
+ "description": "",
341813
+ "name": "onMouseOver",
341814
+ "parent": {
341815
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341816
+ "name": "GlobalDOMEvents"
341817
+ },
341818
+ "declarations": [
341819
+ {
341820
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341821
+ "name": "GlobalDOMEvents"
341822
+ }
341823
+ ],
341824
+ "required": false,
341825
+ "type": {
341826
+ "name": "MouseEventHandler<HTMLDivElement>"
341827
+ }
341828
+ },
341829
+ "onMouseOverCapture": {
341830
+ "defaultValue": null,
341831
+ "description": "",
341832
+ "name": "onMouseOverCapture",
341833
+ "parent": {
341834
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341835
+ "name": "GlobalDOMEvents"
341836
+ },
341837
+ "declarations": [
341838
+ {
341839
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341840
+ "name": "GlobalDOMEvents"
341841
+ }
341842
+ ],
341843
+ "required": false,
341844
+ "type": {
341845
+ "name": "MouseEventHandler<HTMLDivElement>"
341846
+ }
341847
+ },
341848
+ "onMouseUp": {
341849
+ "defaultValue": null,
341850
+ "description": "",
341851
+ "name": "onMouseUp",
341852
+ "parent": {
341853
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341854
+ "name": "GlobalDOMEvents"
341855
+ },
341856
+ "declarations": [
341857
+ {
341858
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341859
+ "name": "GlobalDOMEvents"
341860
+ }
341861
+ ],
341862
+ "required": false,
341863
+ "type": {
341864
+ "name": "MouseEventHandler<HTMLDivElement>"
341865
+ }
341866
+ },
341867
+ "onMouseUpCapture": {
341868
+ "defaultValue": null,
341869
+ "description": "",
341870
+ "name": "onMouseUpCapture",
341871
+ "parent": {
341872
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341873
+ "name": "GlobalDOMEvents"
341874
+ },
341875
+ "declarations": [
341876
+ {
341877
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341878
+ "name": "GlobalDOMEvents"
341879
+ }
341880
+ ],
341881
+ "required": false,
341882
+ "type": {
341883
+ "name": "MouseEventHandler<HTMLDivElement>"
341884
+ }
341885
+ },
341886
+ "onTouchCancel": {
341887
+ "defaultValue": null,
341888
+ "description": "",
341889
+ "name": "onTouchCancel",
341890
+ "parent": {
341891
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341892
+ "name": "GlobalDOMEvents"
341893
+ },
341894
+ "declarations": [
341895
+ {
341896
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341897
+ "name": "GlobalDOMEvents"
341898
+ }
341899
+ ],
341900
+ "required": false,
341901
+ "type": {
341902
+ "name": "TouchEventHandler<HTMLDivElement>"
341903
+ }
341904
+ },
341905
+ "onTouchCancelCapture": {
341906
+ "defaultValue": null,
341907
+ "description": "",
341908
+ "name": "onTouchCancelCapture",
341909
+ "parent": {
341910
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341911
+ "name": "GlobalDOMEvents"
341912
+ },
341913
+ "declarations": [
341914
+ {
341915
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341916
+ "name": "GlobalDOMEvents"
341917
+ }
341918
+ ],
341919
+ "required": false,
341920
+ "type": {
341921
+ "name": "TouchEventHandler<HTMLDivElement>"
341922
+ }
341923
+ },
341924
+ "onTouchEnd": {
341925
+ "defaultValue": null,
341926
+ "description": "",
341927
+ "name": "onTouchEnd",
341928
+ "parent": {
341929
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341930
+ "name": "GlobalDOMEvents"
341931
+ },
341932
+ "declarations": [
341933
+ {
341934
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341935
+ "name": "GlobalDOMEvents"
341936
+ }
341937
+ ],
341938
+ "required": false,
341939
+ "type": {
341940
+ "name": "TouchEventHandler<HTMLDivElement>"
341941
+ }
341942
+ },
341943
+ "onTouchEndCapture": {
341944
+ "defaultValue": null,
341945
+ "description": "",
341946
+ "name": "onTouchEndCapture",
341947
+ "parent": {
341948
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341949
+ "name": "GlobalDOMEvents"
341950
+ },
341951
+ "declarations": [
341952
+ {
341953
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341954
+ "name": "GlobalDOMEvents"
341955
+ }
341956
+ ],
341957
+ "required": false,
341958
+ "type": {
341959
+ "name": "TouchEventHandler<HTMLDivElement>"
341960
+ }
341961
+ },
341962
+ "onTouchMove": {
341963
+ "defaultValue": null,
341964
+ "description": "",
341965
+ "name": "onTouchMove",
341966
+ "parent": {
341967
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341968
+ "name": "GlobalDOMEvents"
341969
+ },
341970
+ "declarations": [
341971
+ {
341972
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341973
+ "name": "GlobalDOMEvents"
341974
+ }
341975
+ ],
341976
+ "required": false,
341977
+ "type": {
341978
+ "name": "TouchEventHandler<HTMLDivElement>"
341979
+ }
341980
+ },
341981
+ "onTouchMoveCapture": {
341982
+ "defaultValue": null,
341983
+ "description": "",
341984
+ "name": "onTouchMoveCapture",
341985
+ "parent": {
341986
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341987
+ "name": "GlobalDOMEvents"
341988
+ },
341989
+ "declarations": [
341990
+ {
341991
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
341992
+ "name": "GlobalDOMEvents"
341993
+ }
341994
+ ],
341995
+ "required": false,
341996
+ "type": {
341997
+ "name": "TouchEventHandler<HTMLDivElement>"
341998
+ }
341999
+ },
342000
+ "onTouchStart": {
342001
+ "defaultValue": null,
342002
+ "description": "",
342003
+ "name": "onTouchStart",
342004
+ "parent": {
342005
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342006
+ "name": "GlobalDOMEvents"
342007
+ },
342008
+ "declarations": [
342009
+ {
342010
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342011
+ "name": "GlobalDOMEvents"
342012
+ }
342013
+ ],
342014
+ "required": false,
342015
+ "type": {
342016
+ "name": "TouchEventHandler<HTMLDivElement>"
342017
+ }
342018
+ },
342019
+ "onTouchStartCapture": {
342020
+ "defaultValue": null,
342021
+ "description": "",
342022
+ "name": "onTouchStartCapture",
342023
+ "parent": {
342024
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342025
+ "name": "GlobalDOMEvents"
342026
+ },
342027
+ "declarations": [
342028
+ {
342029
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342030
+ "name": "GlobalDOMEvents"
342031
+ }
342032
+ ],
342033
+ "required": false,
342034
+ "type": {
342035
+ "name": "TouchEventHandler<HTMLDivElement>"
342036
+ }
342037
+ },
342038
+ "onPointerDown": {
342039
+ "defaultValue": null,
342040
+ "description": "",
342041
+ "name": "onPointerDown",
342042
+ "parent": {
342043
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342044
+ "name": "GlobalDOMEvents"
342045
+ },
342046
+ "declarations": [
342047
+ {
342048
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342049
+ "name": "GlobalDOMEvents"
342050
+ }
342051
+ ],
342052
+ "required": false,
342053
+ "type": {
342054
+ "name": "PointerEventHandler<HTMLDivElement>"
342055
+ }
342056
+ },
342057
+ "onPointerDownCapture": {
342058
+ "defaultValue": null,
342059
+ "description": "",
342060
+ "name": "onPointerDownCapture",
342061
+ "parent": {
342062
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342063
+ "name": "GlobalDOMEvents"
342064
+ },
342065
+ "declarations": [
342066
+ {
342067
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342068
+ "name": "GlobalDOMEvents"
342069
+ }
342070
+ ],
342071
+ "required": false,
342072
+ "type": {
342073
+ "name": "PointerEventHandler<HTMLDivElement>"
342074
+ }
342075
+ },
342076
+ "onPointerMove": {
342077
+ "defaultValue": null,
342078
+ "description": "",
342079
+ "name": "onPointerMove",
342080
+ "parent": {
342081
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342082
+ "name": "GlobalDOMEvents"
342083
+ },
342084
+ "declarations": [
342085
+ {
342086
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342087
+ "name": "GlobalDOMEvents"
342088
+ }
342089
+ ],
342090
+ "required": false,
342091
+ "type": {
342092
+ "name": "PointerEventHandler<HTMLDivElement>"
342093
+ }
342094
+ },
342095
+ "onPointerMoveCapture": {
342096
+ "defaultValue": null,
342097
+ "description": "",
342098
+ "name": "onPointerMoveCapture",
342099
+ "parent": {
342100
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342101
+ "name": "GlobalDOMEvents"
342102
+ },
342103
+ "declarations": [
342104
+ {
342105
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342106
+ "name": "GlobalDOMEvents"
342107
+ }
342108
+ ],
342109
+ "required": false,
342110
+ "type": {
342111
+ "name": "PointerEventHandler<HTMLDivElement>"
342112
+ }
342113
+ },
342114
+ "onPointerUp": {
342115
+ "defaultValue": null,
342116
+ "description": "",
342117
+ "name": "onPointerUp",
342118
+ "parent": {
342119
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342120
+ "name": "GlobalDOMEvents"
342121
+ },
342122
+ "declarations": [
342123
+ {
342124
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342125
+ "name": "GlobalDOMEvents"
342126
+ }
342127
+ ],
342128
+ "required": false,
342129
+ "type": {
342130
+ "name": "PointerEventHandler<HTMLDivElement>"
342131
+ }
342132
+ },
342133
+ "onPointerUpCapture": {
342134
+ "defaultValue": null,
342135
+ "description": "",
342136
+ "name": "onPointerUpCapture",
342137
+ "parent": {
342138
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342139
+ "name": "GlobalDOMEvents"
342140
+ },
342141
+ "declarations": [
342142
+ {
342143
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342144
+ "name": "GlobalDOMEvents"
342145
+ }
342146
+ ],
342147
+ "required": false,
342148
+ "type": {
342149
+ "name": "PointerEventHandler<HTMLDivElement>"
342150
+ }
342151
+ },
342152
+ "onPointerCancel": {
342153
+ "defaultValue": null,
342154
+ "description": "",
342155
+ "name": "onPointerCancel",
342156
+ "parent": {
342157
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342158
+ "name": "GlobalDOMEvents"
342159
+ },
342160
+ "declarations": [
342161
+ {
342162
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342163
+ "name": "GlobalDOMEvents"
342164
+ }
342165
+ ],
342166
+ "required": false,
342167
+ "type": {
342168
+ "name": "PointerEventHandler<HTMLDivElement>"
342169
+ }
342170
+ },
342171
+ "onPointerCancelCapture": {
342172
+ "defaultValue": null,
342173
+ "description": "",
342174
+ "name": "onPointerCancelCapture",
342175
+ "parent": {
342176
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342177
+ "name": "GlobalDOMEvents"
342178
+ },
342179
+ "declarations": [
342180
+ {
342181
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342182
+ "name": "GlobalDOMEvents"
342183
+ }
342184
+ ],
342185
+ "required": false,
342186
+ "type": {
342187
+ "name": "PointerEventHandler<HTMLDivElement>"
342188
+ }
342189
+ },
342190
+ "onPointerEnter": {
342191
+ "defaultValue": null,
342192
+ "description": "",
342193
+ "name": "onPointerEnter",
342194
+ "parent": {
342195
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342196
+ "name": "GlobalDOMEvents"
342197
+ },
342198
+ "declarations": [
342199
+ {
342200
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342201
+ "name": "GlobalDOMEvents"
342202
+ }
342203
+ ],
342204
+ "required": false,
342205
+ "type": {
342206
+ "name": "PointerEventHandler<HTMLDivElement>"
342207
+ }
342208
+ },
342209
+ "onPointerLeave": {
342210
+ "defaultValue": null,
342211
+ "description": "",
342212
+ "name": "onPointerLeave",
342213
+ "parent": {
342214
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342215
+ "name": "GlobalDOMEvents"
342216
+ },
342217
+ "declarations": [
342218
+ {
342219
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342220
+ "name": "GlobalDOMEvents"
342221
+ }
342222
+ ],
342223
+ "required": false,
342224
+ "type": {
342225
+ "name": "PointerEventHandler<HTMLDivElement>"
342226
+ }
342227
+ },
342228
+ "onPointerOver": {
342229
+ "defaultValue": null,
342230
+ "description": "",
342231
+ "name": "onPointerOver",
342232
+ "parent": {
342233
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342234
+ "name": "GlobalDOMEvents"
342235
+ },
342236
+ "declarations": [
342237
+ {
342238
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342239
+ "name": "GlobalDOMEvents"
342240
+ }
342241
+ ],
342242
+ "required": false,
342243
+ "type": {
342244
+ "name": "PointerEventHandler<HTMLDivElement>"
342245
+ }
342246
+ },
342247
+ "onPointerOverCapture": {
342248
+ "defaultValue": null,
342249
+ "description": "",
342250
+ "name": "onPointerOverCapture",
342251
+ "parent": {
342252
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342253
+ "name": "GlobalDOMEvents"
342254
+ },
342255
+ "declarations": [
342256
+ {
342257
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342258
+ "name": "GlobalDOMEvents"
342259
+ }
342260
+ ],
342261
+ "required": false,
342262
+ "type": {
342263
+ "name": "PointerEventHandler<HTMLDivElement>"
342264
+ }
342265
+ },
342266
+ "onPointerOut": {
342267
+ "defaultValue": null,
342268
+ "description": "",
342269
+ "name": "onPointerOut",
342270
+ "parent": {
342271
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342272
+ "name": "GlobalDOMEvents"
342273
+ },
342274
+ "declarations": [
342275
+ {
342276
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342277
+ "name": "GlobalDOMEvents"
342278
+ }
342279
+ ],
342280
+ "required": false,
342281
+ "type": {
342282
+ "name": "PointerEventHandler<HTMLDivElement>"
342283
+ }
342284
+ },
342285
+ "onPointerOutCapture": {
342286
+ "defaultValue": null,
342287
+ "description": "",
342288
+ "name": "onPointerOutCapture",
342289
+ "parent": {
342290
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342291
+ "name": "GlobalDOMEvents"
342292
+ },
342293
+ "declarations": [
342294
+ {
342295
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342296
+ "name": "GlobalDOMEvents"
342297
+ }
342298
+ ],
342299
+ "required": false,
342300
+ "type": {
342301
+ "name": "PointerEventHandler<HTMLDivElement>"
342302
+ }
342303
+ },
342304
+ "onGotPointerCapture": {
342305
+ "defaultValue": null,
342306
+ "description": "",
342307
+ "name": "onGotPointerCapture",
342308
+ "parent": {
342309
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342310
+ "name": "GlobalDOMEvents"
342311
+ },
342312
+ "declarations": [
342313
+ {
342314
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342315
+ "name": "GlobalDOMEvents"
342316
+ }
342317
+ ],
342318
+ "required": false,
342319
+ "type": {
342320
+ "name": "PointerEventHandler<HTMLDivElement>"
342321
+ }
342322
+ },
342323
+ "onGotPointerCaptureCapture": {
342324
+ "defaultValue": null,
342325
+ "description": "",
342326
+ "name": "onGotPointerCaptureCapture",
342327
+ "parent": {
342328
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342329
+ "name": "GlobalDOMEvents"
342330
+ },
342331
+ "declarations": [
342332
+ {
342333
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342334
+ "name": "GlobalDOMEvents"
342335
+ }
342336
+ ],
342337
+ "required": false,
342338
+ "type": {
342339
+ "name": "PointerEventHandler<HTMLDivElement>"
342340
+ }
342341
+ },
342342
+ "onLostPointerCapture": {
342343
+ "defaultValue": null,
342344
+ "description": "",
342345
+ "name": "onLostPointerCapture",
342346
+ "parent": {
342347
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342348
+ "name": "GlobalDOMEvents"
342349
+ },
342350
+ "declarations": [
342351
+ {
342352
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342353
+ "name": "GlobalDOMEvents"
342354
+ }
342355
+ ],
342356
+ "required": false,
342357
+ "type": {
342358
+ "name": "PointerEventHandler<HTMLDivElement>"
342359
+ }
342360
+ },
342361
+ "onLostPointerCaptureCapture": {
342362
+ "defaultValue": null,
342363
+ "description": "",
342364
+ "name": "onLostPointerCaptureCapture",
342365
+ "parent": {
342366
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342367
+ "name": "GlobalDOMEvents"
342368
+ },
342369
+ "declarations": [
342370
+ {
342371
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342372
+ "name": "GlobalDOMEvents"
342373
+ }
342374
+ ],
342375
+ "required": false,
342376
+ "type": {
342377
+ "name": "PointerEventHandler<HTMLDivElement>"
342378
+ }
342379
+ },
342380
+ "onScroll": {
342381
+ "defaultValue": null,
342382
+ "description": "",
342383
+ "name": "onScroll",
342384
+ "parent": {
342385
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342386
+ "name": "GlobalDOMEvents"
342387
+ },
342388
+ "declarations": [
342389
+ {
342390
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342391
+ "name": "GlobalDOMEvents"
342392
+ }
342393
+ ],
342394
+ "required": false,
342395
+ "type": {
342396
+ "name": "UIEventHandler<HTMLDivElement>"
342397
+ }
342398
+ },
342399
+ "onScrollCapture": {
342400
+ "defaultValue": null,
342401
+ "description": "",
342402
+ "name": "onScrollCapture",
342403
+ "parent": {
342404
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342405
+ "name": "GlobalDOMEvents"
342406
+ },
342407
+ "declarations": [
342408
+ {
342409
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342410
+ "name": "GlobalDOMEvents"
342411
+ }
342412
+ ],
342413
+ "required": false,
342414
+ "type": {
342415
+ "name": "UIEventHandler<HTMLDivElement>"
342416
+ }
342417
+ },
342418
+ "onWheel": {
342419
+ "defaultValue": null,
342420
+ "description": "",
342421
+ "name": "onWheel",
342422
+ "parent": {
342423
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342424
+ "name": "GlobalDOMEvents"
342425
+ },
342426
+ "declarations": [
342427
+ {
342428
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342429
+ "name": "GlobalDOMEvents"
342430
+ }
342431
+ ],
342432
+ "required": false,
342433
+ "type": {
342434
+ "name": "WheelEventHandler<HTMLDivElement>"
342435
+ }
342436
+ },
342437
+ "onWheelCapture": {
342438
+ "defaultValue": null,
342439
+ "description": "",
342440
+ "name": "onWheelCapture",
342441
+ "parent": {
342442
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342443
+ "name": "GlobalDOMEvents"
342444
+ },
342445
+ "declarations": [
342446
+ {
342447
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342448
+ "name": "GlobalDOMEvents"
342449
+ }
342450
+ ],
342451
+ "required": false,
342452
+ "type": {
342453
+ "name": "WheelEventHandler<HTMLDivElement>"
342454
+ }
342455
+ },
342456
+ "onAnimationStart": {
342457
+ "defaultValue": null,
342458
+ "description": "",
342459
+ "name": "onAnimationStart",
342460
+ "parent": {
342461
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342462
+ "name": "GlobalDOMEvents"
342463
+ },
342464
+ "declarations": [
342465
+ {
342466
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342467
+ "name": "GlobalDOMEvents"
342468
+ }
342469
+ ],
342470
+ "required": false,
342471
+ "type": {
342472
+ "name": "AnimationEventHandler<HTMLDivElement>"
342473
+ }
342474
+ },
342475
+ "onAnimationStartCapture": {
342476
+ "defaultValue": null,
342477
+ "description": "",
342478
+ "name": "onAnimationStartCapture",
342479
+ "parent": {
342480
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342481
+ "name": "GlobalDOMEvents"
342482
+ },
342483
+ "declarations": [
342484
+ {
342485
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342486
+ "name": "GlobalDOMEvents"
342487
+ }
342488
+ ],
342489
+ "required": false,
342490
+ "type": {
342491
+ "name": "AnimationEventHandler<HTMLDivElement>"
342492
+ }
342493
+ },
342494
+ "onAnimationEnd": {
342495
+ "defaultValue": null,
342496
+ "description": "",
342497
+ "name": "onAnimationEnd",
342498
+ "parent": {
342499
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342500
+ "name": "GlobalDOMEvents"
342501
+ },
342502
+ "declarations": [
342503
+ {
342504
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342505
+ "name": "GlobalDOMEvents"
342506
+ }
342507
+ ],
342508
+ "required": false,
342509
+ "type": {
342510
+ "name": "AnimationEventHandler<HTMLDivElement>"
342511
+ }
342512
+ },
342513
+ "onAnimationEndCapture": {
342514
+ "defaultValue": null,
342515
+ "description": "",
342516
+ "name": "onAnimationEndCapture",
342517
+ "parent": {
342518
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342519
+ "name": "GlobalDOMEvents"
342520
+ },
342521
+ "declarations": [
342522
+ {
342523
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342524
+ "name": "GlobalDOMEvents"
342525
+ }
342526
+ ],
342527
+ "required": false,
342528
+ "type": {
342529
+ "name": "AnimationEventHandler<HTMLDivElement>"
342530
+ }
342531
+ },
342532
+ "onAnimationIteration": {
342533
+ "defaultValue": null,
342534
+ "description": "",
342535
+ "name": "onAnimationIteration",
342536
+ "parent": {
342537
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342538
+ "name": "GlobalDOMEvents"
342539
+ },
342540
+ "declarations": [
342541
+ {
342542
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342543
+ "name": "GlobalDOMEvents"
342544
+ }
342545
+ ],
342546
+ "required": false,
342547
+ "type": {
342548
+ "name": "AnimationEventHandler<HTMLDivElement>"
342549
+ }
342550
+ },
342551
+ "onAnimationIterationCapture": {
342552
+ "defaultValue": null,
342553
+ "description": "",
342554
+ "name": "onAnimationIterationCapture",
342555
+ "parent": {
342556
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342557
+ "name": "GlobalDOMEvents"
342558
+ },
342559
+ "declarations": [
342560
+ {
342561
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342562
+ "name": "GlobalDOMEvents"
342563
+ }
342564
+ ],
342565
+ "required": false,
342566
+ "type": {
342567
+ "name": "AnimationEventHandler<HTMLDivElement>"
342568
+ }
342569
+ },
342570
+ "onTransitionCancel": {
342571
+ "defaultValue": null,
342572
+ "description": "",
342573
+ "name": "onTransitionCancel",
342574
+ "parent": {
342575
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342576
+ "name": "GlobalDOMEvents"
342577
+ },
342578
+ "declarations": [
342579
+ {
342580
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342581
+ "name": "GlobalDOMEvents"
342582
+ }
342583
+ ],
342584
+ "required": false,
342585
+ "type": {
342586
+ "name": "TransitionEventHandler<HTMLDivElement>"
342587
+ }
342588
+ },
342589
+ "onTransitionCancelCapture": {
342590
+ "defaultValue": null,
342591
+ "description": "",
342592
+ "name": "onTransitionCancelCapture",
342593
+ "parent": {
342594
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342595
+ "name": "GlobalDOMEvents"
342596
+ },
342597
+ "declarations": [
342598
+ {
342599
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342600
+ "name": "GlobalDOMEvents"
342601
+ }
342602
+ ],
342603
+ "required": false,
342604
+ "type": {
342605
+ "name": "TransitionEventHandler<HTMLDivElement>"
342606
+ }
342607
+ },
342608
+ "onTransitionEnd": {
342609
+ "defaultValue": null,
342610
+ "description": "",
342611
+ "name": "onTransitionEnd",
342612
+ "parent": {
342613
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342614
+ "name": "GlobalDOMEvents"
342615
+ },
342616
+ "declarations": [
342617
+ {
342618
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342619
+ "name": "GlobalDOMEvents"
342620
+ }
342621
+ ],
342622
+ "required": false,
342623
+ "type": {
342624
+ "name": "TransitionEventHandler<HTMLDivElement>"
342625
+ }
342626
+ },
342627
+ "onTransitionEndCapture": {
342628
+ "defaultValue": null,
342629
+ "description": "",
342630
+ "name": "onTransitionEndCapture",
342631
+ "parent": {
342632
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342633
+ "name": "GlobalDOMEvents"
342634
+ },
342635
+ "declarations": [
342636
+ {
342637
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342638
+ "name": "GlobalDOMEvents"
342639
+ }
342640
+ ],
342641
+ "required": false,
342642
+ "type": {
342643
+ "name": "TransitionEventHandler<HTMLDivElement>"
342644
+ }
342645
+ },
342646
+ "onTransitionRun": {
342647
+ "defaultValue": null,
342648
+ "description": "",
342649
+ "name": "onTransitionRun",
342650
+ "parent": {
342651
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342652
+ "name": "GlobalDOMEvents"
342653
+ },
342654
+ "declarations": [
342655
+ {
342656
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342657
+ "name": "GlobalDOMEvents"
342658
+ }
342659
+ ],
342660
+ "required": false,
342661
+ "type": {
342662
+ "name": "TransitionEventHandler<HTMLDivElement>"
342663
+ }
342664
+ },
342665
+ "onTransitionRunCapture": {
342666
+ "defaultValue": null,
342667
+ "description": "",
342668
+ "name": "onTransitionRunCapture",
342669
+ "parent": {
342670
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342671
+ "name": "GlobalDOMEvents"
342672
+ },
342673
+ "declarations": [
342674
+ {
342675
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342676
+ "name": "GlobalDOMEvents"
342677
+ }
342678
+ ],
342679
+ "required": false,
342680
+ "type": {
342681
+ "name": "TransitionEventHandler<HTMLDivElement>"
342682
+ }
342683
+ },
342684
+ "onTransitionStart": {
342685
+ "defaultValue": null,
342686
+ "description": "",
342687
+ "name": "onTransitionStart",
342688
+ "parent": {
342689
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342690
+ "name": "GlobalDOMEvents"
342691
+ },
342692
+ "declarations": [
342693
+ {
342694
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342695
+ "name": "GlobalDOMEvents"
342696
+ }
342697
+ ],
342698
+ "required": false,
342699
+ "type": {
342700
+ "name": "TransitionEventHandler<HTMLDivElement>"
342701
+ }
342702
+ },
342703
+ "onTransitionStartCapture": {
342704
+ "defaultValue": null,
342705
+ "description": "",
342706
+ "name": "onTransitionStartCapture",
342707
+ "parent": {
342708
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342709
+ "name": "GlobalDOMEvents"
342710
+ },
342711
+ "declarations": [
342712
+ {
342713
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342714
+ "name": "GlobalDOMEvents"
342715
+ }
342716
+ ],
342717
+ "required": false,
342718
+ "type": {
342719
+ "name": "TransitionEventHandler<HTMLDivElement>"
342720
+ }
342721
+ },
342722
+ "minValue": {
342723
+ "defaultValue": null,
342724
+ "description": "The minimum allowed date that a user may select.",
342725
+ "name": "minValue",
342726
+ "parent": {
342727
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342728
+ "name": "CalendarPropsBase"
342729
+ },
342730
+ "declarations": [
342731
+ {
342732
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342733
+ "name": "CalendarPropsBase"
342734
+ }
342735
+ ],
342736
+ "required": false,
342737
+ "type": {
342738
+ "name": "DateValue | null"
342739
+ }
342740
+ },
342741
+ "maxValue": {
342742
+ "defaultValue": null,
342743
+ "description": "The maximum allowed date that a user may select.",
342744
+ "name": "maxValue",
342745
+ "parent": {
342746
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342747
+ "name": "CalendarPropsBase"
342748
+ },
342749
+ "declarations": [
342750
+ {
342751
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342752
+ "name": "CalendarPropsBase"
342753
+ }
342754
+ ],
342755
+ "required": false,
342756
+ "type": {
342757
+ "name": "DateValue | null"
342758
+ }
342759
+ },
342760
+ "isDisabled": {
342761
+ "defaultValue": {
342762
+ "value": "false"
342763
+ },
342764
+ "description": "Whether the calendar is disabled.",
342765
+ "name": "isDisabled",
342766
+ "parent": {
342767
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342768
+ "name": "CalendarPropsBase"
342769
+ },
342770
+ "declarations": [
342771
+ {
342772
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342773
+ "name": "CalendarPropsBase"
342774
+ }
342775
+ ],
342776
+ "required": false,
342777
+ "type": {
342778
+ "name": "boolean"
342779
+ }
342780
+ },
342781
+ "isReadOnly": {
342782
+ "defaultValue": {
342783
+ "value": "false"
342784
+ },
342785
+ "description": "Whether the calendar value is immutable.",
342786
+ "name": "isReadOnly",
342787
+ "parent": {
342788
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342789
+ "name": "CalendarPropsBase"
342790
+ },
342791
+ "declarations": [
342792
+ {
342793
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342794
+ "name": "CalendarPropsBase"
342795
+ }
342796
+ ],
342797
+ "required": false,
342798
+ "type": {
342799
+ "name": "boolean"
342800
+ }
342801
+ },
342802
+ "isInvalid": {
342803
+ "defaultValue": null,
342804
+ "description": "Whether the current selection is invalid according to application logic.",
342805
+ "name": "isInvalid",
342806
+ "parent": {
342807
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342808
+ "name": "CalendarPropsBase"
342809
+ },
342810
+ "declarations": [
342811
+ {
342812
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342813
+ "name": "CalendarPropsBase"
342814
+ }
342815
+ ],
342816
+ "required": false,
342817
+ "type": {
342818
+ "name": "boolean"
342819
+ }
342820
+ },
342821
+ "autoFocus": {
342822
+ "defaultValue": {
342823
+ "value": "false"
342824
+ },
342825
+ "description": "Whether to automatically focus the calendar when it mounts.",
342826
+ "name": "autoFocus",
342827
+ "parent": {
342828
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342829
+ "name": "CalendarPropsBase"
342830
+ },
342831
+ "declarations": [
342832
+ {
342833
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342834
+ "name": "CalendarPropsBase"
342835
+ }
342836
+ ],
342837
+ "required": false,
342838
+ "type": {
342839
+ "name": "boolean"
342840
+ }
342841
+ },
342842
+ "onFocusChange": {
342843
+ "defaultValue": null,
342844
+ "description": "Handler that is called when the focused date changes.",
342845
+ "name": "onFocusChange",
342846
+ "parent": {
342847
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342848
+ "name": "CalendarPropsBase"
342849
+ },
342850
+ "declarations": [
342851
+ {
342852
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342853
+ "name": "CalendarPropsBase"
342854
+ }
342855
+ ],
342856
+ "required": false,
342857
+ "type": {
342858
+ "name": "((date: CalendarDate) => void)"
342859
+ }
342860
+ },
342861
+ "value": {
342862
+ "defaultValue": null,
342863
+ "description": "The current value (controlled).",
342864
+ "name": "value",
342865
+ "parent": {
342866
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/inputs.d.ts",
342867
+ "name": "ValueBase"
342868
+ },
342869
+ "declarations": [
342870
+ {
342871
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/inputs.d.ts",
342872
+ "name": "ValueBase"
342873
+ }
342874
+ ],
342875
+ "required": false,
342876
+ "type": {
342877
+ "name": "TimeValue | null"
342878
+ }
342879
+ },
342880
+ "defaultValue": {
342881
+ "defaultValue": null,
342882
+ "description": "The default value (uncontrolled).",
342883
+ "name": "defaultValue",
342884
+ "parent": {
342885
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/inputs.d.ts",
342886
+ "name": "ValueBase"
342887
+ },
342888
+ "declarations": [
342889
+ {
342890
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/inputs.d.ts",
342891
+ "name": "ValueBase"
342892
+ }
342893
+ ],
342894
+ "required": false,
342895
+ "type": {
342896
+ "name": "TimeValue | null"
342897
+ }
342898
+ },
342899
+ "onChange": {
342900
+ "defaultValue": null,
342901
+ "description": "Handler that is called when the value changes.",
342902
+ "name": "onChange",
342903
+ "parent": {
342904
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/inputs.d.ts",
342905
+ "name": "ValueBase"
342906
+ },
342907
+ "declarations": [
342908
+ {
342909
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/inputs.d.ts",
342910
+ "name": "ValueBase"
342911
+ }
342912
+ ],
342913
+ "required": false,
342914
+ "type": {
342915
+ "name": "((value: TimeValue | null) => void)"
342916
+ }
342917
+ },
342918
+ "id": {
342919
+ "defaultValue": null,
342920
+ "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).",
342921
+ "name": "id",
342922
+ "parent": {
342923
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342924
+ "name": "DOMProps"
342925
+ },
342926
+ "declarations": [
342927
+ {
342928
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
342929
+ "name": "DOMProps"
342930
+ }
342931
+ ],
342932
+ "required": false,
342933
+ "type": {
342934
+ "name": "string"
342935
+ }
342936
+ },
342937
+ "slot": {
342938
+ "defaultValue": null,
342939
+ "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.",
342940
+ "name": "slot",
342941
+ "parent": {
342942
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
342943
+ "name": "SlotProps"
342944
+ },
342945
+ "declarations": [
342946
+ {
342947
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
342948
+ "name": "SlotProps"
342949
+ }
342950
+ ],
342951
+ "required": false,
342952
+ "type": {
342953
+ "name": "string | null"
342954
+ }
342955
+ },
342956
+ "pageBehavior": {
342957
+ "defaultValue": {
342958
+ "value": "visible"
342959
+ },
342960
+ "description": "Controls the behavior of paging. Pagination either works by advancing the visible page by visibleDuration (default) or one unit of visibleDuration.",
342961
+ "name": "pageBehavior",
342962
+ "parent": {
342963
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342964
+ "name": "CalendarPropsBase"
342965
+ },
342966
+ "declarations": [
342967
+ {
342968
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342969
+ "name": "CalendarPropsBase"
342970
+ }
342971
+ ],
342972
+ "required": false,
342973
+ "type": {
342974
+ "name": "PageBehavior"
342975
+ }
342976
+ },
342977
+ "firstDayOfWeek": {
342978
+ "defaultValue": null,
342979
+ "description": "The day that starts the week.",
342980
+ "name": "firstDayOfWeek",
342981
+ "parent": {
342982
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342983
+ "name": "CalendarPropsBase"
342984
+ },
342985
+ "declarations": [
342986
+ {
342987
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
342988
+ "name": "CalendarPropsBase"
342989
+ }
342990
+ ],
342991
+ "required": false,
342992
+ "type": {
342993
+ "name": "\"sun\" | \"mon\" | \"tue\" | \"wed\" | \"thu\" | \"fri\" | \"sat\""
342994
+ }
342995
+ },
342996
+ "isDateUnavailable": {
342997
+ "defaultValue": null,
342998
+ "description": "Callback that is called for each date of the calendar. If it returns true, then the date is unavailable.",
342999
+ "name": "isDateUnavailable",
343000
+ "parent": {
343001
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343002
+ "name": "CalendarPropsBase"
343003
+ },
343004
+ "declarations": [
343005
+ {
343006
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343007
+ "name": "CalendarPropsBase"
343008
+ }
343009
+ ],
343010
+ "required": false,
343011
+ "type": {
343012
+ "name": "((date: DateValue) => boolean)"
343013
+ }
343014
+ },
343015
+ "allowsNonContiguousRanges": {
343016
+ "defaultValue": null,
343017
+ "description": "When combined with `isDateUnavailable`, determines whether non-contiguous ranges,\ni.e. ranges containing unavailable dates, may be selected.",
343018
+ "name": "allowsNonContiguousRanges",
343019
+ "parent": {
343020
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343021
+ "name": "RangeCalendarProps"
343022
+ },
343023
+ "declarations": [
343024
+ {
343025
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343026
+ "name": "RangeCalendarProps"
343027
+ }
343028
+ ],
343029
+ "required": false,
343030
+ "type": {
343031
+ "name": "boolean"
343032
+ }
343033
+ },
343034
+ "focusedValue": {
343035
+ "defaultValue": null,
343036
+ "description": "Controls the currently focused date within the calendar.",
343037
+ "name": "focusedValue",
343038
+ "parent": {
343039
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343040
+ "name": "CalendarPropsBase"
343041
+ },
343042
+ "declarations": [
343043
+ {
343044
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343045
+ "name": "CalendarPropsBase"
343046
+ }
343047
+ ],
343048
+ "required": false,
343049
+ "type": {
343050
+ "name": "DateValue | null"
343051
+ }
343052
+ },
343053
+ "defaultFocusedValue": {
343054
+ "defaultValue": null,
343055
+ "description": "The date that is focused when the calendar first mounts (uncontrolled).",
343056
+ "name": "defaultFocusedValue",
343057
+ "parent": {
343058
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343059
+ "name": "CalendarPropsBase"
343060
+ },
343061
+ "declarations": [
343062
+ {
343063
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343064
+ "name": "CalendarPropsBase"
343065
+ }
343066
+ ],
343067
+ "required": false,
343068
+ "type": {
343069
+ "name": "DateValue | null"
343070
+ }
343071
+ },
343072
+ "selectionAlignment": {
343073
+ "defaultValue": {
343074
+ "value": "'center'"
343075
+ },
343076
+ "description": "Determines the alignment of the visible months on initial render based on the current selection or current date if there is no selection.",
343077
+ "name": "selectionAlignment",
343078
+ "parent": {
343079
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343080
+ "name": "CalendarPropsBase"
343081
+ },
343082
+ "declarations": [
343083
+ {
343084
+ "fileName": "flow/node_modules/.pnpm/@react-types+calendar@3.8.1_react@19.2.4/node_modules/@react-types/calendar/src/index.d.ts",
343085
+ "name": "CalendarPropsBase"
343086
+ }
343087
+ ],
343088
+ "required": false,
343089
+ "type": {
343090
+ "name": "\"start\" | \"end\" | \"center\""
343091
+ }
343092
+ },
343093
+ "visibleDuration": {
343094
+ "defaultValue": {
343095
+ "value": "{months: 1}"
343096
+ },
343097
+ "description": "The amount of days that will be displayed at once. This affects how pagination works.",
343098
+ "name": "visibleDuration",
343099
+ "parent": {
343100
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343101
+ "name": "RangeCalendarProps"
343102
+ },
343103
+ "declarations": [
343104
+ {
343105
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343106
+ "name": "RangeCalendarProps"
343107
+ }
343108
+ ],
343109
+ "required": false,
343110
+ "type": {
343111
+ "name": "DateDuration"
343112
+ }
343113
+ },
343114
+ "createCalendar": {
343115
+ "defaultValue": null,
343116
+ "description": "A function to create a new [Calendar](https://react-spectrum.adobe.com/internationalized/date/Calendar.html)\nobject for a given calendar identifier. If not provided, the `createCalendar` function\nfrom `@internationalized/date` will be used.",
343117
+ "name": "createCalendar",
343118
+ "parent": {
343119
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343120
+ "name": "RangeCalendarProps"
343121
+ },
343122
+ "declarations": [
343123
+ {
343124
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343125
+ "name": "RangeCalendarProps"
343126
+ }
343127
+ ],
343128
+ "required": false,
343129
+ "type": {
343130
+ "name": "((identifier: CalendarIdentifier) => Calendar)"
343131
+ }
343132
+ }
343133
+ }
343134
+ },
343135
+ {
343136
+ "tags": {},
343137
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Calendar/components/CalendarHeader/CalendarHeader.tsx",
343138
+ "description": "",
343139
+ "displayName": "CalendarHeader",
343140
+ "methods": [],
343141
+ "props": {}
343142
+ },
343143
+ {
343144
+ "tags": {},
343145
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Breadcrumb/components/BreadcrumbItem/BreadcrumbItem.tsx",
343146
+ "description": "",
343147
+ "displayName": "BreadcrumbItem",
343148
+ "methods": [],
343149
+ "props": {
343150
+ "children": {
343151
+ "defaultValue": null,
343152
+ "description": "",
343153
+ "name": "children",
343154
+ "declarations": [
343155
+ {
343156
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
343157
+ "name": "TypeLiteral"
343158
+ }
343159
+ ],
343160
+ "required": false,
343161
+ "type": {
343162
+ "name": "ReactNode"
343163
+ }
343164
+ }
343165
+ }
343166
+ },
343167
+ {
343168
+ "tags": {},
343169
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/components/TableRowSkeletonView.tsx",
343170
+ "description": "",
343171
+ "displayName": "TableRowSkeletonView",
343172
+ "methods": [],
343173
+ "props": {}
343174
+ },
343175
+ {
343176
+ "tags": {},
343177
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/components/TableBodyLoadingView.tsx",
343178
+ "description": "",
343179
+ "displayName": "TableBodyLoadingView",
343180
+ "methods": [],
343181
+ "props": {}
343182
+ },
343183
+ {
343184
+ "tags": {
343185
+ "flr-generate": "all"
343186
+ },
343187
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343188
+ "description": "",
343189
+ "displayName": "ListItemViewContent",
343190
+ "methods": [],
343191
+ "props": {
343192
+ "children": {
343193
+ "defaultValue": null,
343194
+ "description": "",
343195
+ "name": "children",
343196
+ "declarations": [
343197
+ {
343198
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
343199
+ "name": "TypeLiteral"
343200
+ }
343201
+ ],
343202
+ "required": false,
343203
+ "type": {
343204
+ "name": "ReactNode"
343205
+ }
343206
+ },
343207
+ "s": {
343208
+ "defaultValue": null,
343209
+ "description": "Column layout for container size s.",
343210
+ "name": "s",
343211
+ "parent": {
343212
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
343213
+ "name": "ColumnLayoutProps"
343214
+ },
343215
+ "declarations": [
343216
+ {
343217
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
343218
+ "name": "ColumnLayoutProps"
343219
+ }
343220
+ ],
343221
+ "required": false,
343222
+ "type": {
343223
+ "name": "(number | null)[]"
343224
+ }
343225
+ },
343226
+ "m": {
343227
+ "defaultValue": null,
343228
+ "description": "Column layout for container size m.",
343229
+ "name": "m",
343230
+ "parent": {
343231
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
343232
+ "name": "ColumnLayoutProps"
343233
+ },
343234
+ "declarations": [
343235
+ {
343236
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
343237
+ "name": "ColumnLayoutProps"
343238
+ }
343239
+ ],
343240
+ "required": false,
343241
+ "type": {
343242
+ "name": "(number | null)[]"
343243
+ }
343244
+ },
343245
+ "l": {
343246
+ "defaultValue": null,
343247
+ "description": "Column layout for container size l.",
343248
+ "name": "l",
343249
+ "parent": {
343250
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
343251
+ "name": "ColumnLayoutProps"
343252
+ },
343253
+ "declarations": [
343254
+ {
343255
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
343256
+ "name": "ColumnLayoutProps"
343257
+ }
343258
+ ],
343259
+ "required": false,
343260
+ "type": {
343261
+ "name": "(number | null)[]"
343262
+ }
343263
+ },
343264
+ "title": {
343265
+ "defaultValue": null,
343266
+ "description": "",
343267
+ "name": "title",
343268
+ "declarations": [
343269
+ {
343270
+ "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343271
+ "name": "TypeLiteral"
343272
+ }
343273
+ ],
343274
+ "required": false,
343275
+ "type": {
343276
+ "name": "ReactNode"
343277
+ }
343278
+ },
343279
+ "subTitle": {
343280
+ "defaultValue": null,
343281
+ "description": "",
343282
+ "name": "subTitle",
343283
+ "declarations": [
343284
+ {
343285
+ "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343286
+ "name": "TypeLiteral"
343287
+ }
343288
+ ],
343289
+ "required": false,
343290
+ "type": {
343291
+ "name": "ReactNode"
343292
+ }
343293
+ },
343294
+ "avatar": {
343295
+ "defaultValue": null,
343296
+ "description": "",
343297
+ "name": "avatar",
343298
+ "declarations": [
343299
+ {
343300
+ "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343301
+ "name": "TypeLiteral"
343302
+ }
343303
+ ],
343304
+ "required": false,
343305
+ "type": {
343306
+ "name": "ReactNode"
343307
+ }
343308
+ },
343309
+ "button": {
343310
+ "defaultValue": null,
343311
+ "description": "",
343312
+ "name": "button",
343313
+ "declarations": [
343314
+ {
343315
+ "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343316
+ "name": "TypeLiteral"
343317
+ }
343318
+ ],
343319
+ "required": false,
343320
+ "type": {
343321
+ "name": "ReactNode"
343322
+ }
343323
+ },
343324
+ "bottom": {
343325
+ "defaultValue": null,
343326
+ "description": "",
343327
+ "name": "bottom",
343328
+ "declarations": [
343329
+ {
343330
+ "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343331
+ "name": "TypeLiteral"
343332
+ }
343333
+ ],
343334
+ "required": false,
343335
+ "type": {
343336
+ "name": "ReactNode"
343337
+ }
343338
+ },
343339
+ "checkbox": {
343340
+ "defaultValue": null,
343341
+ "description": "",
343342
+ "name": "checkbox",
343343
+ "declarations": [
343344
+ {
343345
+ "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343346
+ "name": "TypeLiteral"
343347
+ }
343348
+ ],
343349
+ "required": false,
343350
+ "type": {
343351
+ "name": "ReactNode"
343352
+ }
343353
+ },
343354
+ "viewMode": {
343355
+ "defaultValue": null,
343356
+ "description": "",
343357
+ "name": "viewMode",
343358
+ "declarations": [
343359
+ {
343360
+ "fileName": "components/src/components/List/components/ListItemView/components/ListItemViewContent/ListItemViewContent.tsx",
343361
+ "name": "TypeLiteral"
343362
+ }
343363
+ ],
343364
+ "required": false,
343365
+ "type": {
343366
+ "name": "ListViewMode"
343367
+ }
343368
+ }
343369
+ }
343370
+ },
343371
+ {
343372
+ "tags": {
343373
+ "flr-generate": "all"
343374
+ },
343375
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Items/views/ListBoxItem/ListBoxItem.tsx",
343376
+ "description": "",
343377
+ "displayName": "ListBoxItem",
343378
+ "methods": [],
343379
+ "props": {
343380
+ "className": {
343381
+ "defaultValue": {
343382
+ "value": "'react-aria-Tooltip'"
343383
+ },
343384
+ "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.",
343385
+ "name": "className",
343386
+ "parent": {
343387
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343388
+ "name": "TooltipProps"
343389
+ },
343390
+ "declarations": [
343391
+ {
343392
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343393
+ "name": "TooltipProps"
343394
+ }
343395
+ ],
343396
+ "required": false,
343397
+ "type": {
343398
+ "name": "ClassNameOrFunction<TooltipRenderProps>"
343399
+ }
343400
+ },
343401
+ "id": {
343402
+ "defaultValue": null,
343403
+ "description": "The unique id of the item.",
343404
+ "name": "id",
343405
+ "parent": {
343406
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343407
+ "name": "MenuItemProps"
343408
+ },
343409
+ "declarations": [
343410
+ {
343411
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343412
+ "name": "MenuItemProps"
343413
+ }
343414
+ ],
343415
+ "required": false,
343416
+ "type": {
343417
+ "name": "Key"
343418
+ }
343419
+ },
343420
+ "value": {
343421
+ "defaultValue": null,
343422
+ "description": "The object value that this item represents. When using dynamic collections, this is set automatically.",
343423
+ "name": "value",
343424
+ "parent": {
343425
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343426
+ "name": "MenuItemProps"
343427
+ },
343428
+ "declarations": [
343429
+ {
343430
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343431
+ "name": "MenuItemProps"
343432
+ }
343433
+ ],
343434
+ "required": false,
343435
+ "type": {
343436
+ "name": "object"
343437
+ }
343438
+ },
343439
+ "textValue": {
343440
+ "defaultValue": null,
343441
+ "description": "A string representation of the item's contents, used for features like typeahead.",
343442
+ "name": "textValue",
343443
+ "parent": {
343444
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343445
+ "name": "ListBoxItemProps"
343446
+ },
343447
+ "declarations": [
343448
+ {
343449
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343450
+ "name": "ListBoxItemProps"
343451
+ }
343452
+ ],
343453
+ "required": false,
343454
+ "type": {
343455
+ "name": "string"
343456
+ }
343457
+ },
343458
+ "aria-label": {
343459
+ "defaultValue": null,
343460
+ "description": "An accessibility label for this item.",
343461
+ "name": "aria-label",
343462
+ "parent": {
343463
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343464
+ "name": "ListBoxItemProps"
343465
+ },
343466
+ "declarations": [
343467
+ {
343468
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343469
+ "name": "ListBoxItemProps"
343470
+ }
343471
+ ],
343472
+ "required": false,
343473
+ "type": {
343474
+ "name": "string"
343475
+ }
343476
+ },
343477
+ "isDisabled": {
343478
+ "defaultValue": null,
343479
+ "description": "Whether the item is disabled.",
343480
+ "name": "isDisabled",
343481
+ "parent": {
343482
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343483
+ "name": "ListBoxItemProps"
343484
+ },
343485
+ "declarations": [
343486
+ {
343487
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343488
+ "name": "ListBoxItemProps"
343489
+ }
343490
+ ],
343491
+ "required": false,
343492
+ "type": {
343493
+ "name": "boolean"
343494
+ }
343495
+ },
343496
+ "onAction": {
343497
+ "defaultValue": null,
343498
+ "description": "Handler that is called when a user performs an action on the item. The exact user event depends on\nthe collection's `selectionBehavior` prop and the interaction modality.",
343499
+ "name": "onAction",
343500
+ "parent": {
343501
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343502
+ "name": "ListBoxItemProps"
343503
+ },
343504
+ "declarations": [
343505
+ {
343506
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343507
+ "name": "ListBoxItemProps"
343508
+ }
343509
+ ],
343510
+ "required": false,
343511
+ "type": {
343512
+ "name": "(() => void)"
343513
+ }
343514
+ },
343515
+ "children": {
343516
+ "defaultValue": null,
343517
+ "description": "The elements that make up the table. Includes the TableHeader, TableBody, Columns, and Rows.",
343518
+ "name": "children",
343519
+ "parent": {
343520
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343521
+ "name": "TableProps"
343522
+ },
343523
+ "declarations": [
343524
+ {
343525
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343526
+ "name": "TableProps"
343527
+ }
343528
+ ],
343529
+ "required": false,
343530
+ "type": {
343531
+ "name": "ReactNode"
343532
+ }
343533
+ },
343534
+ "style": {
343535
+ "defaultValue": null,
343536
+ "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.",
343537
+ "name": "style",
343538
+ "parent": {
343539
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343540
+ "name": "StyleRenderProps"
343541
+ },
343542
+ "declarations": [
343543
+ {
343544
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
343545
+ "name": "StyleRenderProps"
343546
+ }
343547
+ ],
343548
+ "required": false,
343549
+ "type": {
343550
+ "name": "StyleOrFunction<TooltipRenderProps>"
343551
+ }
343552
+ },
343553
+ "href": {
343554
+ "defaultValue": null,
343555
+ "description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).",
343556
+ "name": "href",
343557
+ "parent": {
343558
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343559
+ "name": "LinkDOMProps"
343560
+ },
343561
+ "declarations": [
343562
+ {
343563
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343564
+ "name": "LinkDOMProps"
343565
+ }
343566
+ ],
343567
+ "required": false,
343568
+ "type": {
343569
+ "name": "string"
343570
+ }
343571
+ },
343572
+ "hrefLang": {
343573
+ "defaultValue": null,
343574
+ "description": "Hints at the human language of the linked URL. See[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).",
343575
+ "name": "hrefLang",
343576
+ "parent": {
343577
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343578
+ "name": "LinkDOMProps"
343579
+ },
343580
+ "declarations": [
343581
+ {
343582
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343583
+ "name": "LinkDOMProps"
343584
+ }
343585
+ ],
343586
+ "required": false,
343587
+ "type": {
343588
+ "name": "string"
343589
+ }
343590
+ },
343591
+ "target": {
343592
+ "defaultValue": null,
343593
+ "description": "The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).",
343594
+ "name": "target",
343595
+ "parent": {
343596
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343597
+ "name": "LinkDOMProps"
343598
+ },
343599
+ "declarations": [
343600
+ {
343601
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343602
+ "name": "LinkDOMProps"
343603
+ }
343604
+ ],
343605
+ "required": false,
343606
+ "type": {
343607
+ "name": "HTMLAttributeAnchorTarget"
343608
+ }
343609
+ },
343610
+ "rel": {
343611
+ "defaultValue": null,
343612
+ "description": "The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).",
343613
+ "name": "rel",
343614
+ "parent": {
343615
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343616
+ "name": "LinkDOMProps"
343617
+ },
343618
+ "declarations": [
343619
+ {
343620
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343621
+ "name": "LinkDOMProps"
343622
+ }
343623
+ ],
343624
+ "required": false,
343625
+ "type": {
343626
+ "name": "string"
343627
+ }
343628
+ },
343629
+ "download": {
343630
+ "defaultValue": null,
343631
+ "description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).",
343632
+ "name": "download",
343633
+ "parent": {
343634
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343635
+ "name": "LinkDOMProps"
343636
+ },
343637
+ "declarations": [
343638
+ {
343639
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343640
+ "name": "LinkDOMProps"
343641
+ }
343642
+ ],
343643
+ "required": false,
343644
+ "type": {
343645
+ "name": "string | boolean"
343646
+ }
343647
+ },
343648
+ "ping": {
343649
+ "defaultValue": null,
343650
+ "description": "A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).",
343651
+ "name": "ping",
343652
+ "parent": {
343653
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343654
+ "name": "LinkDOMProps"
343655
+ },
343656
+ "declarations": [
343657
+ {
343658
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343659
+ "name": "LinkDOMProps"
343660
+ }
343661
+ ],
343662
+ "required": false,
343663
+ "type": {
343664
+ "name": "string"
343665
+ }
343666
+ },
343667
+ "referrerPolicy": {
343668
+ "defaultValue": null,
343669
+ "description": "How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).",
343670
+ "name": "referrerPolicy",
343671
+ "parent": {
343672
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343673
+ "name": "LinkDOMProps"
343674
+ },
343675
+ "declarations": [
343676
+ {
343677
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343678
+ "name": "LinkDOMProps"
343679
+ }
343680
+ ],
343681
+ "required": false,
343682
+ "type": {
343683
+ "name": "HTMLAttributeReferrerPolicy"
343684
+ }
343685
+ },
343686
+ "routerOptions": {
343687
+ "defaultValue": null,
343688
+ "description": "Options for the configured client side router.",
343689
+ "name": "routerOptions",
343690
+ "parent": {
343691
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343692
+ "name": "LinkDOMProps"
343693
+ },
343694
+ "declarations": [
343695
+ {
343696
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/dom.d.ts",
343697
+ "name": "LinkDOMProps"
343698
+ }
343699
+ ],
343700
+ "required": false,
343701
+ "type": {
343702
+ "name": "undefined"
343703
+ }
343704
+ },
343705
+ "onHoverStart": {
343706
+ "defaultValue": null,
343707
+ "description": "Handler that is called when a hover interaction starts.",
343708
+ "name": "onHoverStart",
343709
+ "parent": {
343710
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343711
+ "name": "HoverEvents"
343712
+ },
343713
+ "declarations": [
343714
+ {
343715
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343716
+ "name": "HoverEvents"
343717
+ }
343718
+ ],
343719
+ "required": false,
343720
+ "type": {
343721
+ "name": "((e: HoverEvent) => void)"
343722
+ }
343723
+ },
343724
+ "onHoverEnd": {
343725
+ "defaultValue": null,
343726
+ "description": "Handler that is called when a hover interaction ends.",
343727
+ "name": "onHoverEnd",
343728
+ "parent": {
343729
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343730
+ "name": "HoverEvents"
343731
+ },
343732
+ "declarations": [
343733
+ {
343734
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343735
+ "name": "HoverEvents"
343736
+ }
343737
+ ],
343738
+ "required": false,
343739
+ "type": {
343740
+ "name": "((e: HoverEvent) => void)"
343741
+ }
343742
+ },
343743
+ "onHoverChange": {
343744
+ "defaultValue": null,
343745
+ "description": "Handler that is called when the hover state changes.",
343746
+ "name": "onHoverChange",
343747
+ "parent": {
343748
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343749
+ "name": "HoverEvents"
343750
+ },
343751
+ "declarations": [
343752
+ {
343753
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343754
+ "name": "HoverEvents"
343755
+ }
343756
+ ],
343757
+ "required": false,
343758
+ "type": {
343759
+ "name": "((isHovering: boolean) => void)"
343760
+ }
343761
+ },
343762
+ "onPress": {
343763
+ "defaultValue": null,
343764
+ "description": "Handler that is called when the press is released over the target.",
343765
+ "name": "onPress",
343766
+ "parent": {
343767
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343768
+ "name": "PressEvents"
343769
+ },
343770
+ "declarations": [
343771
+ {
343772
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343773
+ "name": "PressEvents"
343774
+ }
343775
+ ],
343776
+ "required": false,
343777
+ "type": {
343778
+ "name": "((e: PressEvent) => void)"
343779
+ }
343780
+ },
343781
+ "onPressStart": {
343782
+ "defaultValue": null,
343783
+ "description": "Handler that is called when a press interaction starts.",
343784
+ "name": "onPressStart",
343785
+ "parent": {
343786
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343787
+ "name": "PressEvents"
343788
+ },
343789
+ "declarations": [
343790
+ {
343791
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343792
+ "name": "PressEvents"
343793
+ }
343794
+ ],
343795
+ "required": false,
343796
+ "type": {
343797
+ "name": "((e: PressEvent) => void)"
343798
+ }
343799
+ },
343800
+ "onPressEnd": {
343801
+ "defaultValue": null,
343802
+ "description": "Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.",
343803
+ "name": "onPressEnd",
343804
+ "parent": {
343805
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343806
+ "name": "PressEvents"
343807
+ },
343808
+ "declarations": [
343809
+ {
343810
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343811
+ "name": "PressEvents"
343812
+ }
343813
+ ],
343814
+ "required": false,
343815
+ "type": {
343816
+ "name": "((e: PressEvent) => void)"
343817
+ }
343818
+ },
343819
+ "onPressChange": {
343820
+ "defaultValue": null,
343821
+ "description": "Handler that is called when the press state changes.",
343822
+ "name": "onPressChange",
343823
+ "parent": {
343824
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343825
+ "name": "PressEvents"
343826
+ },
343827
+ "declarations": [
343828
+ {
343829
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343830
+ "name": "PressEvents"
343831
+ }
343832
+ ],
343833
+ "required": false,
343834
+ "type": {
343835
+ "name": "((isPressed: boolean) => void)"
343836
+ }
343837
+ },
343838
+ "onPressUp": {
343839
+ "defaultValue": null,
343840
+ "description": "Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.",
343841
+ "name": "onPressUp",
343842
+ "parent": {
343843
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343844
+ "name": "PressEvents"
343845
+ },
343846
+ "declarations": [
343847
+ {
343848
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343849
+ "name": "PressEvents"
343850
+ }
343851
+ ],
343852
+ "required": false,
343853
+ "type": {
343854
+ "name": "((e: PressEvent) => void)"
343855
+ }
343856
+ },
343857
+ "onClick": {
343858
+ "defaultValue": null,
343859
+ "description": "**Not recommended – use `onPress` instead.** `onClick` is an alias for `onPress`\nprovided for compatibility with other libraries. `onPress` provides \nadditional event details for non-mouse interactions.",
343860
+ "name": "onClick",
343861
+ "parent": {
343862
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343863
+ "name": "PressEvents"
343864
+ },
343865
+ "declarations": [
343866
+ {
343867
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343868
+ "name": "PressEvents"
343869
+ }
343870
+ ],
343871
+ "required": false,
343872
+ "type": {
343873
+ "name": "((e: MouseEvent<FocusableElement, MouseEvent>) => void)"
343874
+ }
343875
+ },
343876
+ "onFocus": {
343877
+ "defaultValue": null,
343878
+ "description": "Handler that is called when the element receives focus.",
343879
+ "name": "onFocus",
343880
+ "parent": {
343881
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343882
+ "name": "FocusEvents"
343883
+ },
343884
+ "declarations": [
343885
+ {
343886
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343887
+ "name": "FocusEvents"
343888
+ }
343889
+ ],
343890
+ "required": false,
343891
+ "type": {
343892
+ "name": "((e: FocusEvent<Element, Element>) => void)"
343893
+ }
343894
+ },
343895
+ "onBlur": {
343896
+ "defaultValue": null,
343897
+ "description": "Handler that is called when the element loses focus.",
343898
+ "name": "onBlur",
343899
+ "parent": {
343900
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343901
+ "name": "FocusEvents"
343902
+ },
343903
+ "declarations": [
343904
+ {
343905
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343906
+ "name": "FocusEvents"
343907
+ }
343908
+ ],
343909
+ "required": false,
343910
+ "type": {
343911
+ "name": "((e: FocusEvent<Element, Element>) => void)"
343912
+ }
343913
+ },
343914
+ "onFocusChange": {
343915
+ "defaultValue": null,
343916
+ "description": "Handler that is called when the element's focus status changes.",
343917
+ "name": "onFocusChange",
343918
+ "parent": {
343919
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343920
+ "name": "FocusEvents"
343921
+ },
343922
+ "declarations": [
343923
+ {
343924
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/events.d.ts",
343925
+ "name": "FocusEvents"
343926
+ }
343927
+ ],
343928
+ "required": false,
343929
+ "type": {
343930
+ "name": "((isFocused: boolean) => void)"
342070
343931
  }
342071
343932
  },
342072
343933
  "dir": {
@@ -345663,6 +347524,34 @@
345663
347524
  }
345664
347525
  }
345665
347526
  },
347527
+ {
347528
+ "tags": {},
347529
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/components/FilterContextMenu/DateRangeFilterPopover.tsx",
347530
+ "description": "",
347531
+ "displayName": "DateRangeFilterPopover",
347532
+ "methods": [],
347533
+ "props": {
347534
+ "filter": {
347535
+ "defaultValue": null,
347536
+ "description": "",
347537
+ "name": "filter",
347538
+ "parent": {
347539
+ "fileName": "components/src/components/List/components/Header/components/FilterContextMenu/DateRangeFilterPopover.tsx",
347540
+ "name": "Props"
347541
+ },
347542
+ "declarations": [
347543
+ {
347544
+ "fileName": "components/src/components/List/components/Header/components/FilterContextMenu/DateRangeFilterPopover.tsx",
347545
+ "name": "Props"
347546
+ }
347547
+ ],
347548
+ "required": true,
347549
+ "type": {
347550
+ "name": "AnyDateRangeFilter"
347551
+ }
347552
+ }
347553
+ }
347554
+ },
345666
347555
  {
345667
347556
  "tags": {},
345668
347557
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/components/AllFiltersModal/ViewModeAccordion.tsx",
@@ -345679,6 +347568,90 @@
345679
347568
  "methods": [],
345680
347569
  "props": {}
345681
347570
  },
347571
+ {
347572
+ "tags": {},
347573
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionRadioGroup.tsx",
347574
+ "description": "",
347575
+ "displayName": "FilterAccordionRadioGroup",
347576
+ "methods": [],
347577
+ "props": {
347578
+ "filter": {
347579
+ "defaultValue": null,
347580
+ "description": "",
347581
+ "name": "filter",
347582
+ "parent": {
347583
+ "fileName": "components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionRadioGroup.tsx",
347584
+ "name": "Props"
347585
+ },
347586
+ "declarations": [
347587
+ {
347588
+ "fileName": "components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionRadioGroup.tsx",
347589
+ "name": "Props"
347590
+ }
347591
+ ],
347592
+ "required": true,
347593
+ "type": {
347594
+ "name": "Filter<never, never, never>"
347595
+ }
347596
+ }
347597
+ }
347598
+ },
347599
+ {
347600
+ "tags": {},
347601
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionDateRange.tsx",
347602
+ "description": "",
347603
+ "displayName": "FilterAccordionDateRange",
347604
+ "methods": [],
347605
+ "props": {
347606
+ "filter": {
347607
+ "defaultValue": null,
347608
+ "description": "",
347609
+ "name": "filter",
347610
+ "parent": {
347611
+ "fileName": "components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionDateRange.tsx",
347612
+ "name": "Props"
347613
+ },
347614
+ "declarations": [
347615
+ {
347616
+ "fileName": "components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionDateRange.tsx",
347617
+ "name": "Props"
347618
+ }
347619
+ ],
347620
+ "required": true,
347621
+ "type": {
347622
+ "name": "AnyDateRangeFilter"
347623
+ }
347624
+ }
347625
+ }
347626
+ },
347627
+ {
347628
+ "tags": {},
347629
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionCheckboxGroup.tsx",
347630
+ "description": "",
347631
+ "displayName": "FilterAccordionCheckboxGroup",
347632
+ "methods": [],
347633
+ "props": {
347634
+ "filter": {
347635
+ "defaultValue": null,
347636
+ "description": "",
347637
+ "name": "filter",
347638
+ "parent": {
347639
+ "fileName": "components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionCheckboxGroup.tsx",
347640
+ "name": "Props"
347641
+ },
347642
+ "declarations": [
347643
+ {
347644
+ "fileName": "components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordionCheckboxGroup.tsx",
347645
+ "name": "Props"
347646
+ }
347647
+ ],
347648
+ "required": true,
347649
+ "type": {
347650
+ "name": "Filter<never, never, never>"
347651
+ }
347652
+ }
347653
+ }
347654
+ },
345682
347655
  {
345683
347656
  "tags": {},
345684
347657
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/components/AllFiltersModal/FilterAccordion.tsx",
@@ -345702,7 +347675,7 @@
345702
347675
  ],
345703
347676
  "required": true,
345704
347677
  "type": {
345705
- "name": "Filter<never, never, never>"
347678
+ "name": "Filter<never, never, never> | DateRangeFilter<never, never>"
345706
347679
  }
345707
347680
  }
345708
347681
  }