@mittwald/flow-react-components 0.2.0-alpha.523 → 0.2.0-alpha.525

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 (160) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/assets/doc-properties.json +291 -253
  3. package/dist/css/all.css +1 -1
  4. package/dist/js/components/src/components/Autocomplete/Autocomplete.mjs +48 -36
  5. package/dist/js/components/src/components/Autocomplete/Autocomplete.mjs.map +1 -1
  6. package/dist/js/components/src/components/Checkbox/Checkbox.mjs +25 -7
  7. package/dist/js/components/src/components/Checkbox/Checkbox.mjs.map +1 -1
  8. package/dist/js/components/src/components/Checkbox/Checkbox.module.scss.mjs +3 -1
  9. package/dist/js/components/src/components/Checkbox/Checkbox.module.scss.mjs.map +1 -1
  10. package/dist/js/components/src/components/CheckboxButton/CheckboxButton.mjs +28 -6
  11. package/dist/js/components/src/components/CheckboxButton/CheckboxButton.mjs.map +1 -1
  12. package/dist/js/components/src/components/CheckboxButton/CheckboxButton.module.scss.mjs +6 -4
  13. package/dist/js/components/src/components/CheckboxButton/CheckboxButton.module.scss.mjs.map +1 -1
  14. package/dist/js/components/src/components/CheckboxGroup/CheckboxGroup.mjs +22 -26
  15. package/dist/js/components/src/components/CheckboxGroup/CheckboxGroup.mjs.map +1 -1
  16. package/dist/js/components/src/components/ComboBox/ComboBox.mjs +31 -27
  17. package/dist/js/components/src/components/ComboBox/ComboBox.mjs.map +1 -1
  18. package/dist/js/components/src/components/DatePicker/DatePicker.mjs +8 -18
  19. package/dist/js/components/src/components/DatePicker/DatePicker.mjs.map +1 -1
  20. package/dist/js/components/src/components/DateRangePicker/DateRangePicker.mjs +7 -19
  21. package/dist/js/components/src/components/DateRangePicker/DateRangePicker.mjs.map +1 -1
  22. package/dist/js/components/src/components/FieldError/FieldError.mjs +36 -5
  23. package/dist/js/components/src/components/FieldError/FieldError.mjs.map +1 -1
  24. package/dist/js/components/src/components/FileDropZone/FileDropZone.mjs +22 -11
  25. package/dist/js/components/src/components/FileDropZone/FileDropZone.mjs.map +1 -1
  26. package/dist/js/components/src/components/FileField/FileField.mjs +33 -31
  27. package/dist/js/components/src/components/FileField/FileField.mjs.map +1 -1
  28. package/dist/js/components/src/components/FormField/FormField.module.scss.mjs +1 -3
  29. package/dist/js/components/src/components/FormField/FormField.module.scss.mjs.map +1 -1
  30. package/dist/js/components/src/components/NumberField/NumberField.mjs +9 -18
  31. package/dist/js/components/src/components/NumberField/NumberField.mjs.map +1 -1
  32. package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs +85 -79
  33. package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs.map +1 -1
  34. package/dist/js/components/src/components/PasswordCreationField/lib/generateValidationTranslation.mjs +1 -0
  35. package/dist/js/components/src/components/PasswordCreationField/lib/generateValidationTranslation.mjs.map +1 -1
  36. package/dist/js/components/src/components/PasswordCreationField/lib/getStateFromLatestPolicyValidationResult.mjs +1 -0
  37. package/dist/js/components/src/components/PasswordCreationField/lib/getStateFromLatestPolicyValidationResult.mjs.map +1 -1
  38. package/dist/js/components/src/components/PasswordCreationField/worker/generatePassword.mjs +1 -0
  39. package/dist/js/components/src/components/PasswordCreationField/worker/generatePassword.mjs.map +1 -1
  40. package/dist/js/components/src/components/RadioGroup/RadioGroup.mjs +36 -34
  41. package/dist/js/components/src/components/RadioGroup/RadioGroup.mjs.map +1 -1
  42. package/dist/js/components/src/components/SearchField/SearchField.mjs +12 -17
  43. package/dist/js/components/src/components/SearchField/SearchField.mjs.map +1 -1
  44. package/dist/js/components/src/components/SegmentedControl/SegmentedControl.mjs +25 -23
  45. package/dist/js/components/src/components/SegmentedControl/SegmentedControl.mjs.map +1 -1
  46. package/dist/js/components/src/components/Select/Select.mjs +30 -30
  47. package/dist/js/components/src/components/Select/Select.mjs.map +1 -1
  48. package/dist/js/components/src/components/Slider/Slider.mjs +10 -5
  49. package/dist/js/components/src/components/Slider/Slider.mjs.map +1 -1
  50. package/dist/js/components/src/components/Switch/Switch.mjs +22 -31
  51. package/dist/js/components/src/components/Switch/Switch.mjs.map +1 -1
  52. package/dist/js/components/src/components/Switch/Switch.module.scss.mjs +2 -4
  53. package/dist/js/components/src/components/Switch/Switch.module.scss.mjs.map +1 -1
  54. package/dist/js/components/src/components/TextArea/TextArea.mjs +16 -1
  55. package/dist/js/components/src/components/TextArea/TextArea.mjs.map +1 -1
  56. package/dist/js/components/src/components/TextField/TextField.mjs +14 -1
  57. package/dist/js/components/src/components/TextField/TextField.mjs.map +1 -1
  58. package/dist/js/components/src/components/TextFieldBase/TextFieldBase.mjs +13 -22
  59. package/dist/js/components/src/components/TextFieldBase/TextFieldBase.mjs.map +1 -1
  60. package/dist/js/components/src/components/TimeField/TimeField.mjs +8 -32
  61. package/dist/js/components/src/components/TimeField/TimeField.mjs.map +1 -1
  62. package/dist/js/components/src/integrations/@mittwald/password-tools-js/generatePasswordCreationFieldValidation.mjs +19 -13
  63. package/dist/js/components/src/integrations/@mittwald/password-tools-js/generatePasswordCreationFieldValidation.mjs.map +1 -1
  64. package/dist/js/components/src/integrations/react-hook-form/components/Field/Field.mjs +29 -14
  65. package/dist/js/components/src/integrations/react-hook-form/components/Field/Field.mjs.map +1 -1
  66. package/dist/js/components/src/lib/hooks/useFieldComponent.mjs +36 -0
  67. package/dist/js/components/src/lib/hooks/useFieldComponent.mjs.map +1 -0
  68. package/dist/js/components/src/lib/hooks/useFieldError.mjs +43 -0
  69. package/dist/js/components/src/lib/hooks/useFieldError.mjs.map +1 -0
  70. package/dist/js/components/src/lib/hooks/useManagedValue.mjs +7 -3
  71. package/dist/js/components/src/lib/hooks/useManagedValue.mjs.map +1 -1
  72. package/dist/types/components/Autocomplete/Autocomplete.d.ts +1 -0
  73. package/dist/types/components/Autocomplete/Autocomplete.d.ts.map +1 -1
  74. package/dist/types/components/Checkbox/Checkbox.d.ts +3 -2
  75. package/dist/types/components/Checkbox/Checkbox.d.ts.map +1 -1
  76. package/dist/types/components/CheckboxButton/CheckboxButton.d.ts +2 -2
  77. package/dist/types/components/CheckboxButton/CheckboxButton.d.ts.map +1 -1
  78. package/dist/types/components/CheckboxGroup/CheckboxGroup.d.ts.map +1 -1
  79. package/dist/types/components/ComboBox/ComboBox.d.ts.map +1 -1
  80. package/dist/types/components/ComboBox/stories/Default.stories.d.ts.map +1 -1
  81. package/dist/types/components/DatePicker/DatePicker.d.ts +1 -3
  82. package/dist/types/components/DatePicker/DatePicker.d.ts.map +1 -1
  83. package/dist/types/components/DatePicker/stories/Default.stories.d.ts.map +1 -1
  84. package/dist/types/components/DateRangePicker/DateRangePicker.d.ts +1 -3
  85. package/dist/types/components/DateRangePicker/DateRangePicker.d.ts.map +1 -1
  86. package/dist/types/components/DateRangePicker/stories/Default.stories.d.ts.map +1 -1
  87. package/dist/types/components/FieldError/FieldError.d.ts +2 -2
  88. package/dist/types/components/FieldError/FieldError.d.ts.map +1 -1
  89. package/dist/types/components/FileDropZone/FileDropZone.d.ts.map +1 -1
  90. package/dist/types/components/FileDropZone/stories/Default.stories.d.ts.map +1 -1
  91. package/dist/types/components/FileField/FileField.d.ts.map +1 -1
  92. package/dist/types/components/NumberField/NumberField.d.ts +2 -2
  93. package/dist/types/components/NumberField/NumberField.d.ts.map +1 -1
  94. package/dist/types/components/PasswordCreationField/PasswordCreationField.d.ts.map +1 -1
  95. package/dist/types/components/RadioGroup/RadioGroup.d.ts.map +1 -1
  96. package/dist/types/components/SearchField/SearchField.d.ts.map +1 -1
  97. package/dist/types/components/SegmentedControl/SegmentedControl.d.ts.map +1 -1
  98. package/dist/types/components/Select/Select.d.ts.map +1 -1
  99. package/dist/types/components/Slider/Slider.d.ts +1 -0
  100. package/dist/types/components/Slider/Slider.d.ts.map +1 -1
  101. package/dist/types/components/Switch/Switch.d.ts.map +1 -1
  102. package/dist/types/components/TextArea/TextArea.d.ts +1 -1
  103. package/dist/types/components/TextArea/TextArea.d.ts.map +1 -1
  104. package/dist/types/components/TextField/TextField.d.ts +1 -1
  105. package/dist/types/components/TextField/TextField.d.ts.map +1 -1
  106. package/dist/types/components/TextFieldBase/TextFieldBase.d.ts +2 -1
  107. package/dist/types/components/TextFieldBase/TextFieldBase.d.ts.map +1 -1
  108. package/dist/types/components/TimeField/TimeField.d.ts +2 -4
  109. package/dist/types/components/TimeField/TimeField.d.ts.map +1 -1
  110. package/dist/types/integrations/@mittwald/password-tools-js/generatePasswordCreationFieldValidation.d.ts.map +1 -1
  111. package/dist/types/integrations/react-hook-form/components/Field/Field.d.ts.map +1 -1
  112. package/dist/types/integrations/react-hook-form/components/Field/stories/Autocomplete.stories.d.ts +2 -1
  113. package/dist/types/integrations/react-hook-form/components/Field/stories/Autocomplete.stories.d.ts.map +1 -1
  114. package/dist/types/integrations/react-hook-form/components/Field/stories/Checkbox.stories.d.ts +2 -1
  115. package/dist/types/integrations/react-hook-form/components/Field/stories/Checkbox.stories.d.ts.map +1 -1
  116. package/dist/types/integrations/react-hook-form/components/Field/stories/CheckboxButton.stories.d.ts +9 -0
  117. package/dist/types/integrations/react-hook-form/components/Field/stories/CheckboxButton.stories.d.ts.map +1 -0
  118. package/dist/types/integrations/react-hook-form/components/Field/stories/CheckboxGroup.stories.d.ts +2 -1
  119. package/dist/types/integrations/react-hook-form/components/Field/stories/CheckboxGroup.stories.d.ts.map +1 -1
  120. package/dist/types/integrations/react-hook-form/components/Field/stories/ComboBox.stories.d.ts +2 -1
  121. package/dist/types/integrations/react-hook-form/components/Field/stories/ComboBox.stories.d.ts.map +1 -1
  122. package/dist/types/integrations/react-hook-form/components/Field/stories/DatePicker.stories.d.ts +2 -1
  123. package/dist/types/integrations/react-hook-form/components/Field/stories/DatePicker.stories.d.ts.map +1 -1
  124. package/dist/types/integrations/react-hook-form/components/Field/stories/DateRangePicker.stories.d.ts +2 -1
  125. package/dist/types/integrations/react-hook-form/components/Field/stories/DateRangePicker.stories.d.ts.map +1 -1
  126. package/dist/types/integrations/react-hook-form/components/Field/stories/FileField.stories.d.ts +2 -1
  127. package/dist/types/integrations/react-hook-form/components/Field/stories/FileField.stories.d.ts.map +1 -1
  128. package/dist/types/integrations/react-hook-form/components/Field/stories/MarkdownEditor.stories.d.ts +2 -1
  129. package/dist/types/integrations/react-hook-form/components/Field/stories/MarkdownEditor.stories.d.ts.map +1 -1
  130. package/dist/types/integrations/react-hook-form/components/Field/stories/NumberField.stories.d.ts +2 -1
  131. package/dist/types/integrations/react-hook-form/components/Field/stories/NumberField.stories.d.ts.map +1 -1
  132. package/dist/types/integrations/react-hook-form/components/Field/stories/PasswordCreationField.stories.d.ts +2 -1
  133. package/dist/types/integrations/react-hook-form/components/Field/stories/PasswordCreationField.stories.d.ts.map +1 -1
  134. package/dist/types/integrations/react-hook-form/components/Field/stories/RadioGroup.stories.d.ts +2 -1
  135. package/dist/types/integrations/react-hook-form/components/Field/stories/RadioGroup.stories.d.ts.map +1 -1
  136. package/dist/types/integrations/react-hook-form/components/Field/stories/SearchField.stories.d.ts +2 -1
  137. package/dist/types/integrations/react-hook-form/components/Field/stories/SearchField.stories.d.ts.map +1 -1
  138. package/dist/types/integrations/react-hook-form/components/Field/stories/SegmentedControl.stories.d.ts +2 -1
  139. package/dist/types/integrations/react-hook-form/components/Field/stories/SegmentedControl.stories.d.ts.map +1 -1
  140. package/dist/types/integrations/react-hook-form/components/Field/stories/Select.stories.d.ts +2 -1
  141. package/dist/types/integrations/react-hook-form/components/Field/stories/Select.stories.d.ts.map +1 -1
  142. package/dist/types/integrations/react-hook-form/components/Field/stories/Slider.stories.d.ts +2 -1
  143. package/dist/types/integrations/react-hook-form/components/Field/stories/Slider.stories.d.ts.map +1 -1
  144. package/dist/types/integrations/react-hook-form/components/Field/stories/Switch.stories.d.ts +2 -1
  145. package/dist/types/integrations/react-hook-form/components/Field/stories/Switch.stories.d.ts.map +1 -1
  146. package/dist/types/integrations/react-hook-form/components/Field/stories/TextArea.stories.d.ts +2 -1
  147. package/dist/types/integrations/react-hook-form/components/Field/stories/TextArea.stories.d.ts.map +1 -1
  148. package/dist/types/integrations/react-hook-form/components/Field/stories/TextField.stories.d.ts +2 -1
  149. package/dist/types/integrations/react-hook-form/components/Field/stories/TextField.stories.d.ts.map +1 -1
  150. package/dist/types/integrations/react-hook-form/components/Field/stories/TimeField.stories.d.ts +2 -1
  151. package/dist/types/integrations/react-hook-form/components/Field/stories/TimeField.stories.d.ts.map +1 -1
  152. package/dist/types/lib/hooks/useFieldComponent.d.ts +19 -0
  153. package/dist/types/lib/hooks/useFieldComponent.d.ts.map +1 -0
  154. package/dist/types/lib/hooks/useFieldError.d.ts +10 -0
  155. package/dist/types/lib/hooks/useFieldError.d.ts.map +1 -0
  156. package/dist/types/lib/hooks/useManagedValue.d.ts +9 -7
  157. package/dist/types/lib/hooks/useManagedValue.d.ts.map +1 -1
  158. package/package.json +4 -4
  159. package/dist/js/components/src/views/FieldErrorView.mjs +0 -15
  160. package/dist/js/components/src/views/FieldErrorView.mjs.map +0 -1
@@ -1874,25 +1874,6 @@
1874
1874
  "displayName": "TimeField",
1875
1875
  "methods": [],
1876
1876
  "props": {
1877
- "errorMessage": {
1878
- "defaultValue": null,
1879
- "description": "An error message to be displayed below the field",
1880
- "name": "errorMessage",
1881
- "parent": {
1882
- "fileName": "components/src/components/TimeField/TimeField.tsx",
1883
- "name": "TimeFieldProps"
1884
- },
1885
- "declarations": [
1886
- {
1887
- "fileName": "components/src/components/TimeField/TimeField.tsx",
1888
- "name": "TimeFieldProps"
1889
- }
1890
- ],
1891
- "required": false,
1892
- "type": {
1893
- "name": "ReactNode"
1894
- }
1895
- },
1896
1877
  "aria-label": {
1897
1878
  "defaultValue": null,
1898
1879
  "description": "Defines a string value that labels the current element.",
@@ -6233,6 +6214,25 @@
6233
6214
  "type": {
6234
6215
  "name": "Ref<HTMLInputElement>"
6235
6216
  }
6217
+ },
6218
+ "FieldErrorView": {
6219
+ "defaultValue": null,
6220
+ "description": "",
6221
+ "name": "FieldErrorView",
6222
+ "parent": {
6223
+ "fileName": "components/src/lib/hooks/useFieldComponent.tsx",
6224
+ "name": "UseFieldComponent"
6225
+ },
6226
+ "declarations": [
6227
+ {
6228
+ "fileName": "components/src/lib/hooks/useFieldComponent.tsx",
6229
+ "name": "UseFieldComponent"
6230
+ }
6231
+ ],
6232
+ "required": true,
6233
+ "type": {
6234
+ "name": "FC"
6235
+ }
6236
6236
  }
6237
6237
  }
6238
6238
  },
@@ -22006,6 +22006,25 @@
22006
22006
  "name": "boolean"
22007
22007
  }
22008
22008
  },
22009
+ "isInvalid": {
22010
+ "defaultValue": null,
22011
+ "description": "",
22012
+ "name": "isInvalid",
22013
+ "parent": {
22014
+ "fileName": "components/src/components/Slider/Slider.tsx",
22015
+ "name": "SliderProps"
22016
+ },
22017
+ "declarations": [
22018
+ {
22019
+ "fileName": "components/src/components/Slider/Slider.tsx",
22020
+ "name": "SliderProps"
22021
+ }
22022
+ ],
22023
+ "required": false,
22024
+ "type": {
22025
+ "name": "boolean"
22026
+ }
22027
+ },
22009
22028
  "wrapWith": {
22010
22029
  "defaultValue": null,
22011
22030
  "description": "",
@@ -179849,25 +179868,6 @@
179849
179868
  "displayName": "DateRangePicker",
179850
179869
  "methods": [],
179851
179870
  "props": {
179852
- "errorMessage": {
179853
- "defaultValue": null,
179854
- "description": "The error message that is displayed below the input.",
179855
- "name": "errorMessage",
179856
- "parent": {
179857
- "fileName": "components/src/components/DateRangePicker/DateRangePicker.tsx",
179858
- "name": "DateRangePickerProps"
179859
- },
179860
- "declarations": [
179861
- {
179862
- "fileName": "components/src/components/DateRangePicker/DateRangePicker.tsx",
179863
- "name": "DateRangePickerProps"
179864
- }
179865
- ],
179866
- "required": false,
179867
- "type": {
179868
- "name": "ReactNode"
179869
- }
179870
- },
179871
179871
  "isOpen": {
179872
179872
  "defaultValue": null,
179873
179873
  "description": "Whether the element is rendered.",
@@ -182068,25 +182068,6 @@
182068
182068
  "displayName": "DatePicker",
182069
182069
  "methods": [],
182070
182070
  "props": {
182071
- "errorMessage": {
182072
- "defaultValue": null,
182073
- "description": "The error message that is displayed below the input.",
182074
- "name": "errorMessage",
182075
- "parent": {
182076
- "fileName": "components/src/components/DatePicker/DatePicker.tsx",
182077
- "name": "DatePickerProps"
182078
- },
182079
- "declarations": [
182080
- {
182081
- "fileName": "components/src/components/DatePicker/DatePicker.tsx",
182082
- "name": "DatePickerProps"
182083
- }
182084
- ],
182085
- "required": false,
182086
- "type": {
182087
- "name": "ReactNode"
182088
- }
182089
- },
182090
182071
  "isOpen": {
182091
182072
  "defaultValue": null,
182092
182073
  "description": "Whether the element is rendered.",
@@ -213806,6 +213787,25 @@
213806
213787
  "displayName": "CheckboxButton",
213807
213788
  "methods": [],
213808
213789
  "props": {
213790
+ "inputClassName": {
213791
+ "defaultValue": null,
213792
+ "description": "",
213793
+ "name": "inputClassName",
213794
+ "parent": {
213795
+ "fileName": "components/src/components/Checkbox/Checkbox.tsx",
213796
+ "name": "CheckboxProps"
213797
+ },
213798
+ "declarations": [
213799
+ {
213800
+ "fileName": "components/src/components/Checkbox/Checkbox.tsx",
213801
+ "name": "CheckboxProps"
213802
+ }
213803
+ ],
213804
+ "required": false,
213805
+ "type": {
213806
+ "name": "string"
213807
+ }
213808
+ },
213809
213809
  "aria-label": {
213810
213810
  "defaultValue": null,
213811
213811
  "description": "Defines a string value that labels the current element.",
@@ -215962,6 +215962,25 @@
215962
215962
  "displayName": "Checkbox",
215963
215963
  "methods": [],
215964
215964
  "props": {
215965
+ "inputClassName": {
215966
+ "defaultValue": null,
215967
+ "description": "",
215968
+ "name": "inputClassName",
215969
+ "parent": {
215970
+ "fileName": "components/src/components/Checkbox/Checkbox.tsx",
215971
+ "name": "CheckboxProps"
215972
+ },
215973
+ "declarations": [
215974
+ {
215975
+ "fileName": "components/src/components/Checkbox/Checkbox.tsx",
215976
+ "name": "CheckboxProps"
215977
+ }
215978
+ ],
215979
+ "required": false,
215980
+ "type": {
215981
+ "name": "string"
215982
+ }
215983
+ },
215965
215984
  "aria-label": {
215966
215985
  "defaultValue": null,
215967
215986
  "description": "Defines a string value that labels the current element.",
@@ -222851,6 +222870,25 @@
222851
222870
  "displayName": "Autocomplete",
222852
222871
  "methods": [],
222853
222872
  "props": {
222873
+ "isInvalid": {
222874
+ "defaultValue": null,
222875
+ "description": "",
222876
+ "name": "isInvalid",
222877
+ "parent": {
222878
+ "fileName": "components/src/components/Autocomplete/Autocomplete.tsx",
222879
+ "name": "AutocompleteProps"
222880
+ },
222881
+ "declarations": [
222882
+ {
222883
+ "fileName": "components/src/components/Autocomplete/Autocomplete.tsx",
222884
+ "name": "AutocompleteProps"
222885
+ }
222886
+ ],
222887
+ "required": false,
222888
+ "type": {
222889
+ "name": "boolean"
222890
+ }
222891
+ },
222854
222892
  "children": {
222855
222893
  "defaultValue": null,
222856
222894
  "description": "",
@@ -256384,10 +256422,10 @@
256384
256422
  "name": "() => ArrayIterator<any>"
256385
256423
  }
256386
256424
  },
256387
- "__@unscopables@3161": {
256425
+ "__@unscopables@3166": {
256388
256426
  "defaultValue": null,
256389
256427
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
256390
- "name": "__@unscopables@3161",
256428
+ "name": "__@unscopables@3166",
256391
256429
  "parent": {
256392
256430
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
256393
256431
  "name": "Array"
@@ -257220,10 +257258,10 @@
257220
257258
  "name": "() => ArrayIterator<any>"
257221
257259
  }
257222
257260
  },
257223
- "__@unscopables@3161": {
257261
+ "__@unscopables@3166": {
257224
257262
  "defaultValue": null,
257225
257263
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
257226
- "name": "__@unscopables@3161",
257264
+ "name": "__@unscopables@3166",
257227
257265
  "parent": {
257228
257266
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
257229
257267
  "name": "Array"
@@ -258056,10 +258094,10 @@
258056
258094
  "name": "() => ArrayIterator<any>"
258057
258095
  }
258058
258096
  },
258059
- "__@unscopables@3161": {
258097
+ "__@unscopables@3166": {
258060
258098
  "defaultValue": null,
258061
258099
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
258062
- "name": "__@unscopables@3161",
258100
+ "name": "__@unscopables@3166",
258063
258101
  "parent": {
258064
258102
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
258065
258103
  "name": "Array"
@@ -302910,9 +302948,9 @@
302910
302948
  "tags": {
302911
302949
  "flr-generate": "all"
302912
302950
  },
302913
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/YAxis/YAxis.tsx",
302951
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/XAxis/XAxis.tsx",
302914
302952
  "description": "",
302915
- "displayName": "YAxis",
302953
+ "displayName": "XAxis",
302916
302954
  "methods": [],
302917
302955
  "props": {
302918
302956
  "className": {
@@ -303048,18 +303086,37 @@
303048
303086
  "name": "boolean"
303049
303087
  }
303050
303088
  },
303089
+ "allowDataOverflow": {
303090
+ "defaultValue": null,
303091
+ "description": "When domain of the axis is specified and the type of the axis is 'number',\nif allowDataOverflow is set to be false,\nthe domain will be adjusted when the minimum value of data is smaller than domain[0] or\nthe maximum value of data is greater than domain[1] so that the axis displays all data values.\nIf set to true, graphic elements (line, area, bars) will be clipped to conform to the specified domain.",
303092
+ "name": "allowDataOverflow",
303093
+ "parent": {
303094
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303095
+ "name": "BaseAxisProps"
303096
+ },
303097
+ "declarations": [
303098
+ {
303099
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303100
+ "name": "BaseAxisProps"
303101
+ }
303102
+ ],
303103
+ "required": false,
303104
+ "type": {
303105
+ "name": "boolean"
303106
+ }
303107
+ },
303051
303108
  "interval": {
303052
303109
  "defaultValue": null,
303053
303110
  "description": "",
303054
303111
  "name": "interval",
303055
303112
  "parent": {
303056
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303057
- "name": "YAxisProps"
303113
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303114
+ "name": "XAxisProps"
303058
303115
  },
303059
303116
  "declarations": [
303060
303117
  {
303061
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303062
- "name": "YAxisProps"
303118
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303119
+ "name": "XAxisProps"
303063
303120
  }
303064
303121
  ],
303065
303122
  "required": false,
@@ -303072,13 +303129,13 @@
303072
303129
  "description": "",
303073
303130
  "name": "minTickGap",
303074
303131
  "parent": {
303075
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303076
- "name": "YAxisProps"
303132
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303133
+ "name": "XAxisProps"
303077
303134
  },
303078
303135
  "declarations": [
303079
303136
  {
303080
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303081
- "name": "YAxisProps"
303137
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303138
+ "name": "XAxisProps"
303082
303139
  }
303083
303140
  ],
303084
303141
  "required": false,
@@ -303149,11 +303206,32 @@
303149
303206
  "tags": {
303150
303207
  "flr-generate": "all"
303151
303208
  },
303152
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/XAxis/XAxis.tsx",
303209
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/Line/Line.tsx",
303153
303210
  "description": "",
303154
- "displayName": "XAxis",
303211
+ "displayName": "Line",
303155
303212
  "methods": [],
303156
303213
  "props": {
303214
+ "color": {
303215
+ "defaultValue": {
303216
+ "value": "\"sea-green\""
303217
+ },
303218
+ "description": "The color of the line.",
303219
+ "name": "color",
303220
+ "parent": {
303221
+ "fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
303222
+ "name": "LineProps"
303223
+ },
303224
+ "declarations": [
303225
+ {
303226
+ "fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
303227
+ "name": "LineProps"
303228
+ }
303229
+ ],
303230
+ "required": false,
303231
+ "type": {
303232
+ "name": "\"sea-green\" | \"palatinate-blue\" | \"tangerine\" | \"magenta\" | \"tropical-indigo\" | \"malachite\" | \"azure\" | \"violet\" | \"yellow\" | \"alloy-orange\" | \"green\" | \"lime\""
303233
+ }
303234
+ },
303157
303235
  "className": {
303158
303236
  "defaultValue": null,
303159
303237
  "description": "",
@@ -303173,162 +303251,177 @@
303173
303251
  "name": "string"
303174
303252
  }
303175
303253
  },
303176
- "type": {
303254
+ "key": {
303177
303255
  "defaultValue": null,
303178
303256
  "description": "",
303179
- "name": "type",
303257
+ "name": "key",
303180
303258
  "parent": {
303181
303259
  "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303182
- "name": "SVGAttributes"
303260
+ "name": "Attributes"
303183
303261
  },
303184
303262
  "declarations": [
303185
303263
  {
303186
303264
  "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303187
- "name": "SVGAttributes"
303265
+ "name": "Attributes"
303188
303266
  }
303189
303267
  ],
303190
303268
  "required": false,
303191
303269
  "type": {
303192
- "name": "string"
303270
+ "name": "Key | null"
303193
303271
  }
303194
303272
  },
303195
- "hide": {
303273
+ "type": {
303196
303274
  "defaultValue": null,
303197
- "description": "Whether display the axis",
303198
- "name": "hide",
303275
+ "description": "",
303276
+ "name": "type",
303199
303277
  "parent": {
303200
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303201
- "name": "BaseAxisProps"
303278
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
303279
+ "name": "CurveProps"
303202
303280
  },
303203
303281
  "declarations": [
303204
303282
  {
303205
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303206
- "name": "BaseAxisProps"
303283
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
303284
+ "name": "CurveProps"
303285
+ },
303286
+ {
303287
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303288
+ "name": "LineProps"
303207
303289
  }
303208
303290
  ],
303209
303291
  "required": false,
303210
303292
  "type": {
303211
- "name": "boolean"
303293
+ "name": "CurveType"
303212
303294
  }
303213
303295
  },
303214
- "orientation": {
303296
+ "dataKey": {
303215
303297
  "defaultValue": null,
303216
303298
  "description": "",
303217
- "name": "orientation",
303299
+ "name": "dataKey",
303218
303300
  "parent": {
303219
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303220
- "name": "SVGAttributes"
303301
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303302
+ "name": "LineProps"
303221
303303
  },
303222
303304
  "declarations": [
303223
303305
  {
303224
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303225
- "name": "SVGAttributes"
303306
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303307
+ "name": "LineProps"
303226
303308
  }
303227
303309
  ],
303228
303310
  "required": false,
303229
303311
  "type": {
303230
- "name": "string | number"
303312
+ "name": "DataKey<any>"
303231
303313
  }
303232
303314
  },
303233
- "scale": {
303315
+ "unit": {
303234
303316
  "defaultValue": null,
303235
- "description": "The scale type as a string, or scale function",
303236
- "name": "scale",
303317
+ "description": "",
303318
+ "name": "unit",
303237
303319
  "parent": {
303238
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303239
- "name": "BaseAxisProps"
303320
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303321
+ "name": "LineProps"
303240
303322
  },
303241
303323
  "declarations": [
303242
303324
  {
303243
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303244
- "name": "BaseAxisProps"
303325
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303326
+ "name": "LineProps"
303245
303327
  }
303246
303328
  ],
303247
303329
  "required": false,
303248
303330
  "type": {
303249
- "name": "ScaleType | RechartsScale"
303331
+ "name": "string | number"
303250
303332
  }
303251
303333
  },
303252
- "dataKey": {
303334
+ "xAxisId": {
303253
303335
  "defaultValue": null,
303254
- "description": "The key of data displayed in the axis",
303255
- "name": "dataKey",
303336
+ "description": "",
303337
+ "name": "xAxisId",
303256
303338
  "parent": {
303257
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303258
- "name": "BaseAxisProps"
303339
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303340
+ "name": "LineProps"
303259
303341
  },
303260
303342
  "declarations": [
303261
303343
  {
303262
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303263
- "name": "BaseAxisProps"
303344
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303345
+ "name": "LineProps"
303264
303346
  }
303265
303347
  ],
303266
303348
  "required": false,
303267
303349
  "type": {
303268
- "name": "DataKey<any>"
303350
+ "name": "AxisId"
303269
303351
  }
303270
303352
  },
303271
- "allowDecimals": {
303353
+ "yAxisId": {
303272
303354
  "defaultValue": null,
303273
- "description": "Allow the ticks of axis to be decimals or not.",
303274
- "name": "allowDecimals",
303355
+ "description": "",
303356
+ "name": "yAxisId",
303275
303357
  "parent": {
303276
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303277
- "name": "BaseAxisProps"
303358
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303359
+ "name": "LineProps"
303278
303360
  },
303279
303361
  "declarations": [
303280
303362
  {
303281
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303282
- "name": "BaseAxisProps"
303363
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303364
+ "name": "LineProps"
303283
303365
  }
303284
303366
  ],
303285
303367
  "required": false,
303286
303368
  "type": {
303287
- "name": "boolean"
303369
+ "name": "AxisId"
303288
303370
  }
303289
- },
303290
- "interval": {
303371
+ }
303372
+ }
303373
+ },
303374
+ {
303375
+ "tags": {
303376
+ "flr-generate": "all"
303377
+ },
303378
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/YAxis/YAxis.tsx",
303379
+ "description": "",
303380
+ "displayName": "YAxis",
303381
+ "methods": [],
303382
+ "props": {
303383
+ "className": {
303291
303384
  "defaultValue": null,
303292
303385
  "description": "",
303293
- "name": "interval",
303386
+ "name": "className",
303294
303387
  "parent": {
303295
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303296
- "name": "XAxisProps"
303388
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303389
+ "name": "HTMLAttributes"
303297
303390
  },
303298
303391
  "declarations": [
303299
303392
  {
303300
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303301
- "name": "XAxisProps"
303393
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303394
+ "name": "HTMLAttributes"
303302
303395
  }
303303
303396
  ],
303304
303397
  "required": false,
303305
303398
  "type": {
303306
- "name": "AxisInterval"
303399
+ "name": "string"
303307
303400
  }
303308
303401
  },
303309
- "minTickGap": {
303402
+ "type": {
303310
303403
  "defaultValue": null,
303311
303404
  "description": "",
303312
- "name": "minTickGap",
303405
+ "name": "type",
303313
303406
  "parent": {
303314
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303315
- "name": "XAxisProps"
303407
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303408
+ "name": "SVGAttributes"
303316
303409
  },
303317
303410
  "declarations": [
303318
303411
  {
303319
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
303320
- "name": "XAxisProps"
303412
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303413
+ "name": "SVGAttributes"
303321
303414
  }
303322
303415
  ],
303323
303416
  "required": false,
303324
303417
  "type": {
303325
- "name": "number"
303418
+ "name": "string"
303326
303419
  }
303327
303420
  },
303328
- "domain": {
303421
+ "hide": {
303329
303422
  "defaultValue": null,
303330
- "description": "The domain of scale in this axis",
303331
- "name": "domain",
303423
+ "description": "Whether display the axis",
303424
+ "name": "hide",
303332
303425
  "parent": {
303333
303426
  "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303334
303427
  "name": "BaseAxisProps"
@@ -303341,32 +303434,32 @@
303341
303434
  ],
303342
303435
  "required": false,
303343
303436
  "type": {
303344
- "name": "AxisDomain"
303437
+ "name": "boolean"
303345
303438
  }
303346
303439
  },
303347
- "unit": {
303440
+ "orientation": {
303348
303441
  "defaultValue": null,
303349
- "description": "The unit of data displayed in the axis",
303350
- "name": "unit",
303442
+ "description": "",
303443
+ "name": "orientation",
303351
303444
  "parent": {
303352
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303353
- "name": "BaseAxisProps"
303445
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303446
+ "name": "SVGAttributes"
303354
303447
  },
303355
303448
  "declarations": [
303356
303449
  {
303357
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303358
- "name": "BaseAxisProps"
303450
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303451
+ "name": "SVGAttributes"
303359
303452
  }
303360
303453
  ],
303361
303454
  "required": false,
303362
303455
  "type": {
303363
- "name": "string"
303456
+ "name": "string | number"
303364
303457
  }
303365
303458
  },
303366
- "tickFormatter": {
303459
+ "scale": {
303367
303460
  "defaultValue": null,
303368
- "description": "The formatter function of tick",
303369
- "name": "tickFormatter",
303461
+ "description": "The scale type as a string, or scale function",
303462
+ "name": "scale",
303370
303463
  "parent": {
303371
303464
  "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303372
303465
  "name": "BaseAxisProps"
@@ -303379,13 +303472,13 @@
303379
303472
  ],
303380
303473
  "required": false,
303381
303474
  "type": {
303382
- "name": "((value: any, index: number) => string)"
303475
+ "name": "ScaleType | RechartsScale"
303383
303476
  }
303384
303477
  },
303385
- "allowDataOverflow": {
303478
+ "dataKey": {
303386
303479
  "defaultValue": null,
303387
- "description": "When domain of the axis is specified and the type of the axis is 'number',\nif allowDataOverflow is set to be false,\nthe domain will be adjusted when the minimum value of data is smaller than domain[0] or\nthe maximum value of data is greater than domain[1] so that the axis displays all data values.\nIf set to true, graphic elements (line, area, bars) will be clipped to conform to the specified domain.",
303388
- "name": "allowDataOverflow",
303480
+ "description": "The key of data displayed in the axis",
303481
+ "name": "dataKey",
303389
303482
  "parent": {
303390
303483
  "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303391
303484
  "name": "BaseAxisProps"
@@ -303398,176 +303491,121 @@
303398
303491
  ],
303399
303492
  "required": false,
303400
303493
  "type": {
303401
- "name": "boolean"
303402
- }
303403
- }
303404
- }
303405
- },
303406
- {
303407
- "tags": {
303408
- "flr-generate": "all"
303409
- },
303410
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/Line/Line.tsx",
303411
- "description": "",
303412
- "displayName": "Line",
303413
- "methods": [],
303414
- "props": {
303415
- "color": {
303416
- "defaultValue": {
303417
- "value": "\"sea-green\""
303418
- },
303419
- "description": "The color of the line.",
303420
- "name": "color",
303421
- "parent": {
303422
- "fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
303423
- "name": "LineProps"
303424
- },
303425
- "declarations": [
303426
- {
303427
- "fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
303428
- "name": "LineProps"
303429
- }
303430
- ],
303431
- "required": false,
303432
- "type": {
303433
- "name": "\"sea-green\" | \"palatinate-blue\" | \"tangerine\" | \"magenta\" | \"tropical-indigo\" | \"malachite\" | \"azure\" | \"violet\" | \"yellow\" | \"alloy-orange\" | \"green\" | \"lime\""
303494
+ "name": "DataKey<any>"
303434
303495
  }
303435
303496
  },
303436
- "className": {
303497
+ "allowDecimals": {
303437
303498
  "defaultValue": null,
303438
- "description": "",
303439
- "name": "className",
303499
+ "description": "Allow the ticks of axis to be decimals or not.",
303500
+ "name": "allowDecimals",
303440
303501
  "parent": {
303441
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303442
- "name": "HTMLAttributes"
303502
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303503
+ "name": "BaseAxisProps"
303443
303504
  },
303444
303505
  "declarations": [
303445
303506
  {
303446
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303447
- "name": "HTMLAttributes"
303507
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303508
+ "name": "BaseAxisProps"
303448
303509
  }
303449
303510
  ],
303450
303511
  "required": false,
303451
303512
  "type": {
303452
- "name": "string"
303513
+ "name": "boolean"
303453
303514
  }
303454
303515
  },
303455
- "key": {
303516
+ "interval": {
303456
303517
  "defaultValue": null,
303457
303518
  "description": "",
303458
- "name": "key",
303519
+ "name": "interval",
303459
303520
  "parent": {
303460
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303461
- "name": "Attributes"
303521
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303522
+ "name": "YAxisProps"
303462
303523
  },
303463
303524
  "declarations": [
303464
303525
  {
303465
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
303466
- "name": "Attributes"
303526
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303527
+ "name": "YAxisProps"
303467
303528
  }
303468
303529
  ],
303469
303530
  "required": false,
303470
303531
  "type": {
303471
- "name": "Key | null"
303532
+ "name": "AxisInterval"
303472
303533
  }
303473
303534
  },
303474
- "type": {
303535
+ "minTickGap": {
303475
303536
  "defaultValue": null,
303476
303537
  "description": "",
303477
- "name": "type",
303538
+ "name": "minTickGap",
303478
303539
  "parent": {
303479
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
303480
- "name": "CurveProps"
303540
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303541
+ "name": "YAxisProps"
303481
303542
  },
303482
303543
  "declarations": [
303483
303544
  {
303484
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
303485
- "name": "CurveProps"
303486
- },
303487
- {
303488
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303489
- "name": "LineProps"
303545
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
303546
+ "name": "YAxisProps"
303490
303547
  }
303491
303548
  ],
303492
303549
  "required": false,
303493
303550
  "type": {
303494
- "name": "CurveType"
303551
+ "name": "number"
303495
303552
  }
303496
303553
  },
303497
- "dataKey": {
303554
+ "domain": {
303498
303555
  "defaultValue": null,
303499
- "description": "",
303500
- "name": "dataKey",
303556
+ "description": "The domain of scale in this axis",
303557
+ "name": "domain",
303501
303558
  "parent": {
303502
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303503
- "name": "LineProps"
303559
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303560
+ "name": "BaseAxisProps"
303504
303561
  },
303505
303562
  "declarations": [
303506
303563
  {
303507
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303508
- "name": "LineProps"
303564
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303565
+ "name": "BaseAxisProps"
303509
303566
  }
303510
303567
  ],
303511
303568
  "required": false,
303512
303569
  "type": {
303513
- "name": "DataKey<any>"
303570
+ "name": "AxisDomain"
303514
303571
  }
303515
303572
  },
303516
303573
  "unit": {
303517
303574
  "defaultValue": null,
303518
- "description": "",
303575
+ "description": "The unit of data displayed in the axis",
303519
303576
  "name": "unit",
303520
303577
  "parent": {
303521
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303522
- "name": "LineProps"
303523
- },
303524
- "declarations": [
303525
- {
303526
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303527
- "name": "LineProps"
303528
- }
303529
- ],
303530
- "required": false,
303531
- "type": {
303532
- "name": "string | number"
303533
- }
303534
- },
303535
- "xAxisId": {
303536
- "defaultValue": null,
303537
- "description": "",
303538
- "name": "xAxisId",
303539
- "parent": {
303540
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303541
- "name": "LineProps"
303578
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303579
+ "name": "BaseAxisProps"
303542
303580
  },
303543
303581
  "declarations": [
303544
303582
  {
303545
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303546
- "name": "LineProps"
303583
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303584
+ "name": "BaseAxisProps"
303547
303585
  }
303548
303586
  ],
303549
303587
  "required": false,
303550
303588
  "type": {
303551
- "name": "AxisId"
303589
+ "name": "string"
303552
303590
  }
303553
303591
  },
303554
- "yAxisId": {
303592
+ "tickFormatter": {
303555
303593
  "defaultValue": null,
303556
- "description": "",
303557
- "name": "yAxisId",
303594
+ "description": "The formatter function of tick",
303595
+ "name": "tickFormatter",
303558
303596
  "parent": {
303559
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303560
- "name": "LineProps"
303597
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303598
+ "name": "BaseAxisProps"
303561
303599
  },
303562
303600
  "declarations": [
303563
303601
  {
303564
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
303565
- "name": "LineProps"
303602
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.2.2_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
303603
+ "name": "BaseAxisProps"
303566
303604
  }
303567
303605
  ],
303568
303606
  "required": false,
303569
303607
  "type": {
303570
- "name": "AxisId"
303608
+ "name": "((value: any, index: number) => string)"
303571
303609
  }
303572
303610
  }
303573
303611
  }