@mittwald/flow-react-components 0.2.0-alpha.352 → 0.2.0-alpha.354

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 (25) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/assets/doc-properties.json +823 -823
  3. package/dist/js/components/src/components/Autocomplete/Autocomplete.mjs +2 -2
  4. package/dist/js/components/src/components/Autocomplete/Autocomplete.mjs.map +1 -1
  5. package/dist/js/components/src/components/CopyButton/CopyButton.mjs +1 -1
  6. package/dist/js/components/src/components/CopyButton/CopyButton.mjs.map +1 -1
  7. package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs +44 -33
  8. package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs.map +1 -1
  9. package/dist/js/components/src/components/SearchField/SearchField.mjs +12 -4
  10. package/dist/js/components/src/components/SearchField/SearchField.mjs.map +1 -1
  11. package/dist/js/components/src/components/TextArea/TextArea.mjs +3 -4
  12. package/dist/js/components/src/components/TextArea/TextArea.mjs.map +1 -1
  13. package/dist/js/components/src/lib/promises/useAbortablePromise.mjs +5 -5
  14. package/dist/js/components/src/lib/promises/useAbortablePromise.mjs.map +1 -1
  15. package/dist/js/components/src/lib/react/ReactAriaControlledValueFix.mjs +18 -15
  16. package/dist/js/components/src/lib/react/ReactAriaControlledValueFix.mjs.map +1 -1
  17. package/dist/types/components/CopyButton/CopyButton.d.ts +1 -1
  18. package/dist/types/components/CopyButton/CopyButton.d.ts.map +1 -1
  19. package/dist/types/components/PasswordCreationField/PasswordCreationField.d.ts.map +1 -1
  20. package/dist/types/components/SearchField/SearchField.d.ts.map +1 -1
  21. package/dist/types/components/TextArea/TextArea.d.ts.map +1 -1
  22. package/dist/types/lib/promises/useAbortablePromise.d.ts +1 -5
  23. package/dist/types/lib/promises/useAbortablePromise.d.ts.map +1 -1
  24. package/dist/types/lib/react/ReactAriaControlledValueFix.d.ts.map +1 -1
  25. package/package.json +4 -4
@@ -2753,11 +2753,30 @@
2753
2753
  "flr-generate": "all",
2754
2754
  "flr-clear-props-context": ""
2755
2755
  },
2756
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/TextField/TextField.tsx",
2756
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/TextArea/TextArea.tsx",
2757
2757
  "description": "",
2758
- "displayName": "TextField",
2758
+ "displayName": "TextArea",
2759
2759
  "methods": [],
2760
2760
  "props": {
2761
+ "autoResizeMaxRows": {
2762
+ "defaultValue": null,
2763
+ "description": "Whether the text area should grow if its content gets longer than its\ninitial height.",
2764
+ "name": "autoResizeMaxRows",
2765
+ "parent": {
2766
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
2767
+ "name": "TextAreaProps"
2768
+ },
2769
+ "declarations": [
2770
+ {
2771
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
2772
+ "name": "TextAreaProps"
2773
+ }
2774
+ ],
2775
+ "required": false,
2776
+ "type": {
2777
+ "name": "number"
2778
+ }
2779
+ },
2761
2780
  "children": {
2762
2781
  "defaultValue": null,
2763
2782
  "description": "",
@@ -3039,6 +3058,25 @@
3039
3058
  "name": "ReactEventHandler<HTMLInputElement>"
3040
3059
  }
3041
3060
  },
3061
+ "className": {
3062
+ "defaultValue": null,
3063
+ "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.",
3064
+ "name": "className",
3065
+ "parent": {
3066
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
3067
+ "name": "StyleRenderProps"
3068
+ },
3069
+ "declarations": [
3070
+ {
3071
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
3072
+ "name": "StyleRenderProps"
3073
+ }
3074
+ ],
3075
+ "required": false,
3076
+ "type": {
3077
+ "name": "string | ((values: TooltipRenderProps & { defaultClassName: string; }) => string)"
3078
+ }
3079
+ },
3042
3080
  "id": {
3043
3081
  "defaultValue": null,
3044
3082
  "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).",
@@ -3286,25 +3324,6 @@
3286
3324
  "name": "string"
3287
3325
  }
3288
3326
  },
3289
- "ref": {
3290
- "defaultValue": null,
3291
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
3292
- "name": "ref",
3293
- "parent": {
3294
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3295
- "name": "RefAttributes"
3296
- },
3297
- "declarations": [
3298
- {
3299
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3300
- "name": "RefAttributes"
3301
- }
3302
- ],
3303
- "required": false,
3304
- "type": {
3305
- "name": "Ref<HTMLInputElement>"
3306
- }
3307
- },
3308
3327
  "validationBehavior": {
3309
3328
  "defaultValue": {
3310
3329
  "value": "'native'"
@@ -3712,12 +3731,12 @@
3712
3731
  "name": "placeholder",
3713
3732
  "parent": {
3714
3733
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3715
- "name": "InputHTMLAttributes"
3734
+ "name": "TextareaHTMLAttributes"
3716
3735
  },
3717
3736
  "declarations": [
3718
3737
  {
3719
3738
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3720
- "name": "InputHTMLAttributes"
3739
+ "name": "TextareaHTMLAttributes"
3721
3740
  }
3722
3741
  ],
3723
3742
  "required": false,
@@ -3725,42 +3744,23 @@
3725
3744
  "name": "string"
3726
3745
  }
3727
3746
  },
3728
- "form": {
3747
+ "rows": {
3729
3748
  "defaultValue": null,
3730
3749
  "description": "",
3731
- "name": "form",
3750
+ "name": "rows",
3732
3751
  "parent": {
3733
3752
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3734
- "name": "InputHTMLAttributes"
3753
+ "name": "TextareaHTMLAttributes"
3735
3754
  },
3736
3755
  "declarations": [
3737
3756
  {
3738
3757
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3739
- "name": "InputHTMLAttributes"
3740
- }
3741
- ],
3742
- "required": false,
3743
- "type": {
3744
- "name": "string"
3745
- }
3746
- },
3747
- "className": {
3748
- "defaultValue": null,
3749
- "description": "The elements class name.",
3750
- "name": "className",
3751
- "parent": {
3752
- "fileName": "components/src/lib/types/props.ts",
3753
- "name": "PropsWithClassName"
3754
- },
3755
- "declarations": [
3756
- {
3757
- "fileName": "components/src/lib/types/props.ts",
3758
- "name": "PropsWithClassName"
3758
+ "name": "TextareaHTMLAttributes"
3759
3759
  }
3760
3760
  ],
3761
3761
  "required": false,
3762
3762
  "type": {
3763
- "name": "string"
3763
+ "name": "number"
3764
3764
  }
3765
3765
  },
3766
3766
  "wrapWith": {
@@ -3801,6 +3801,25 @@
3801
3801
  "name": "string | null"
3802
3802
  }
3803
3803
  },
3804
+ "ref": {
3805
+ "defaultValue": null,
3806
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
3807
+ "name": "ref",
3808
+ "parent": {
3809
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3810
+ "name": "RefAttributes"
3811
+ },
3812
+ "declarations": [
3813
+ {
3814
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
3815
+ "name": "RefAttributes"
3816
+ }
3817
+ ],
3818
+ "required": false,
3819
+ "type": {
3820
+ "name": "Ref<HTMLInputElement>"
3821
+ }
3822
+ },
3804
3823
  "key": {
3805
3824
  "defaultValue": null,
3806
3825
  "description": "",
@@ -3827,30 +3846,11 @@
3827
3846
  "flr-generate": "all",
3828
3847
  "flr-clear-props-context": ""
3829
3848
  },
3830
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/TextArea/TextArea.tsx",
3849
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/TextField/TextField.tsx",
3831
3850
  "description": "",
3832
- "displayName": "TextArea",
3851
+ "displayName": "TextField",
3833
3852
  "methods": [],
3834
3853
  "props": {
3835
- "autoResizeMaxRows": {
3836
- "defaultValue": null,
3837
- "description": "Whether the text area should grow if its content gets longer than its\ninitial height.",
3838
- "name": "autoResizeMaxRows",
3839
- "parent": {
3840
- "fileName": "components/src/components/TextArea/TextArea.tsx",
3841
- "name": "TextAreaProps"
3842
- },
3843
- "declarations": [
3844
- {
3845
- "fileName": "components/src/components/TextArea/TextArea.tsx",
3846
- "name": "TextAreaProps"
3847
- }
3848
- ],
3849
- "required": false,
3850
- "type": {
3851
- "name": "number"
3852
- }
3853
- },
3854
3854
  "children": {
3855
3855
  "defaultValue": null,
3856
3856
  "description": "",
@@ -4132,25 +4132,6 @@
4132
4132
  "name": "ReactEventHandler<HTMLInputElement>"
4133
4133
  }
4134
4134
  },
4135
- "className": {
4136
- "defaultValue": null,
4137
- "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.",
4138
- "name": "className",
4139
- "parent": {
4140
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
4141
- "name": "StyleRenderProps"
4142
- },
4143
- "declarations": [
4144
- {
4145
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
4146
- "name": "StyleRenderProps"
4147
- }
4148
- ],
4149
- "required": false,
4150
- "type": {
4151
- "name": "string | ((values: TooltipRenderProps & { defaultClassName: string; }) => string)"
4152
- }
4153
- },
4154
4135
  "id": {
4155
4136
  "defaultValue": null,
4156
4137
  "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).",
@@ -4398,6 +4379,25 @@
4398
4379
  "name": "string"
4399
4380
  }
4400
4381
  },
4382
+ "ref": {
4383
+ "defaultValue": null,
4384
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
4385
+ "name": "ref",
4386
+ "parent": {
4387
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4388
+ "name": "RefAttributes"
4389
+ },
4390
+ "declarations": [
4391
+ {
4392
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4393
+ "name": "RefAttributes"
4394
+ }
4395
+ ],
4396
+ "required": false,
4397
+ "type": {
4398
+ "name": "Ref<HTMLInputElement>"
4399
+ }
4400
+ },
4401
4401
  "validationBehavior": {
4402
4402
  "defaultValue": {
4403
4403
  "value": "'native'"
@@ -4805,12 +4805,12 @@
4805
4805
  "name": "placeholder",
4806
4806
  "parent": {
4807
4807
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4808
- "name": "InputHTMLAttributes"
4808
+ "name": "TextareaHTMLAttributes"
4809
4809
  },
4810
4810
  "declarations": [
4811
4811
  {
4812
4812
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4813
- "name": "InputHTMLAttributes"
4813
+ "name": "TextareaHTMLAttributes"
4814
4814
  }
4815
4815
  ],
4816
4816
  "required": false,
@@ -4818,23 +4818,42 @@
4818
4818
  "name": "string"
4819
4819
  }
4820
4820
  },
4821
- "rows": {
4821
+ "form": {
4822
4822
  "defaultValue": null,
4823
4823
  "description": "",
4824
- "name": "rows",
4824
+ "name": "form",
4825
4825
  "parent": {
4826
4826
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4827
- "name": "TextareaHTMLAttributes"
4827
+ "name": "InputHTMLAttributes"
4828
4828
  },
4829
4829
  "declarations": [
4830
4830
  {
4831
4831
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4832
- "name": "TextareaHTMLAttributes"
4832
+ "name": "InputHTMLAttributes"
4833
4833
  }
4834
4834
  ],
4835
4835
  "required": false,
4836
4836
  "type": {
4837
- "name": "number"
4837
+ "name": "string"
4838
+ }
4839
+ },
4840
+ "className": {
4841
+ "defaultValue": null,
4842
+ "description": "The elements class name.",
4843
+ "name": "className",
4844
+ "parent": {
4845
+ "fileName": "components/src/lib/types/props.ts",
4846
+ "name": "PropsWithClassName"
4847
+ },
4848
+ "declarations": [
4849
+ {
4850
+ "fileName": "components/src/lib/types/props.ts",
4851
+ "name": "PropsWithClassName"
4852
+ }
4853
+ ],
4854
+ "required": false,
4855
+ "type": {
4856
+ "name": "string"
4838
4857
  }
4839
4858
  },
4840
4859
  "wrapWith": {
@@ -4875,25 +4894,6 @@
4875
4894
  "name": "string | null"
4876
4895
  }
4877
4896
  },
4878
- "ref": {
4879
- "defaultValue": null,
4880
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
4881
- "name": "ref",
4882
- "parent": {
4883
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4884
- "name": "RefAttributes"
4885
- },
4886
- "declarations": [
4887
- {
4888
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
4889
- "name": "RefAttributes"
4890
- }
4891
- ],
4892
- "required": false,
4893
- "type": {
4894
- "name": "Ref<HTMLInputElement>"
4895
- }
4896
- },
4897
4897
  "key": {
4898
4898
  "defaultValue": null,
4899
4899
  "description": "",
@@ -36385,12 +36385,91 @@
36385
36385
  }
36386
36386
  },
36387
36387
  {
36388
- "tags": {},
36389
- "filePath": "src/components/NotificationProvider/NotificationProvider.tsx",
36388
+ "tags": {
36389
+ "flr-generate": "all",
36390
+ "flr-clear-props-context": ""
36391
+ },
36392
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Notification/Notification.tsx",
36390
36393
  "description": "",
36391
- "displayName": "NotificationProvider",
36394
+ "displayName": "Notification",
36392
36395
  "methods": [],
36393
36396
  "props": {
36397
+ "href": {
36398
+ "defaultValue": null,
36399
+ "description": "A link that is triggered when clicking the notification.",
36400
+ "name": "href",
36401
+ "parent": {
36402
+ "fileName": "components/src/components/Notification/Notification.tsx",
36403
+ "name": "NotificationProps"
36404
+ },
36405
+ "declarations": [
36406
+ {
36407
+ "fileName": "components/src/components/Notification/Notification.tsx",
36408
+ "name": "NotificationProps"
36409
+ }
36410
+ ],
36411
+ "required": false,
36412
+ "type": {
36413
+ "name": "string"
36414
+ }
36415
+ },
36416
+ "autoClose": {
36417
+ "defaultValue": null,
36418
+ "description": "Whether the notification should disappear automatically after some time.",
36419
+ "name": "autoClose",
36420
+ "parent": {
36421
+ "fileName": "components/src/components/Notification/Notification.tsx",
36422
+ "name": "NotificationProps"
36423
+ },
36424
+ "declarations": [
36425
+ {
36426
+ "fileName": "components/src/components/Notification/Notification.tsx",
36427
+ "name": "NotificationProps"
36428
+ }
36429
+ ],
36430
+ "required": false,
36431
+ "type": {
36432
+ "name": "boolean"
36433
+ }
36434
+ },
36435
+ "onClick": {
36436
+ "defaultValue": null,
36437
+ "description": "Handler that is called when the notification is clicked.",
36438
+ "name": "onClick",
36439
+ "parent": {
36440
+ "fileName": "components/src/components/Notification/Notification.tsx",
36441
+ "name": "NotificationProps"
36442
+ },
36443
+ "declarations": [
36444
+ {
36445
+ "fileName": "components/src/components/Notification/Notification.tsx",
36446
+ "name": "NotificationProps"
36447
+ }
36448
+ ],
36449
+ "required": false,
36450
+ "type": {
36451
+ "name": "(() => void)"
36452
+ }
36453
+ },
36454
+ "onClose": {
36455
+ "defaultValue": null,
36456
+ "description": "Handler that is called when the close button of the notification is\nclicked.",
36457
+ "name": "onClose",
36458
+ "parent": {
36459
+ "fileName": "components/src/components/Notification/Notification.tsx",
36460
+ "name": "NotificationProps"
36461
+ },
36462
+ "declarations": [
36463
+ {
36464
+ "fileName": "components/src/components/Notification/Notification.tsx",
36465
+ "name": "NotificationProps"
36466
+ }
36467
+ ],
36468
+ "required": false,
36469
+ "type": {
36470
+ "name": "(() => void)"
36471
+ }
36472
+ },
36394
36473
  "ref": {
36395
36474
  "defaultValue": null,
36396
36475
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
@@ -40119,25 +40198,6 @@
40119
40198
  "name": "MouseEventHandler<HTMLElement>"
40120
40199
  }
40121
40200
  },
40122
- "onClick": {
40123
- "defaultValue": null,
40124
- "description": "",
40125
- "name": "onClick",
40126
- "parent": {
40127
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
40128
- "name": "DOMAttributes"
40129
- },
40130
- "declarations": [
40131
- {
40132
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
40133
- "name": "DOMAttributes"
40134
- }
40135
- ],
40136
- "required": false,
40137
- "type": {
40138
- "name": "MouseEventHandler<HTMLElement>"
40139
- }
40140
- },
40141
40201
  "onClickCapture": {
40142
40202
  "defaultValue": null,
40143
40203
  "description": "",
@@ -41714,142 +41774,31 @@
41714
41774
  "type": {
41715
41775
  "name": "TransitionEventHandler<HTMLElement>"
41716
41776
  }
41717
- }
41718
- }
41719
- },
41720
- {
41721
- "tags": {},
41722
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/NotificationProvider/ControlledNotification.tsx",
41723
- "description": "",
41724
- "displayName": "ControlledNotification",
41725
- "methods": [],
41726
- "props": {
41727
- "notification": {
41728
- "defaultValue": null,
41729
- "description": "",
41730
- "name": "notification",
41731
- "parent": {
41732
- "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
41733
- "name": "Props"
41734
- },
41735
- "declarations": [
41736
- {
41737
- "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
41738
- "name": "Props"
41739
- }
41740
- ],
41741
- "required": true,
41742
- "type": {
41743
- "name": "NotificationData"
41744
- }
41745
41777
  },
41746
- "controller": {
41778
+ "status": {
41747
41779
  "defaultValue": null,
41748
- "description": "",
41749
- "name": "controller",
41750
- "parent": {
41751
- "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
41752
- "name": "Props"
41753
- },
41780
+ "description": "The elements status",
41781
+ "name": "status",
41754
41782
  "declarations": [
41755
41783
  {
41756
- "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
41757
- "name": "Props"
41784
+ "fileName": "components/src/lib/types/props.ts",
41785
+ "name": "TypeLiteral"
41758
41786
  }
41759
41787
  ],
41760
- "required": true,
41788
+ "required": false,
41761
41789
  "type": {
41762
- "name": "NotificationController"
41790
+ "name": "Status"
41763
41791
  }
41764
41792
  }
41765
41793
  }
41766
41794
  },
41767
41795
  {
41768
- "tags": {
41769
- "flr-generate": "all",
41770
- "flr-clear-props-context": ""
41771
- },
41772
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Notification/Notification.tsx",
41796
+ "tags": {},
41797
+ "filePath": "src/components/NotificationProvider/NotificationProvider.tsx",
41773
41798
  "description": "",
41774
- "displayName": "Notification",
41799
+ "displayName": "NotificationProvider",
41775
41800
  "methods": [],
41776
41801
  "props": {
41777
- "href": {
41778
- "defaultValue": null,
41779
- "description": "A link that is triggered when clicking the notification.",
41780
- "name": "href",
41781
- "parent": {
41782
- "fileName": "components/src/components/Notification/Notification.tsx",
41783
- "name": "NotificationProps"
41784
- },
41785
- "declarations": [
41786
- {
41787
- "fileName": "components/src/components/Notification/Notification.tsx",
41788
- "name": "NotificationProps"
41789
- }
41790
- ],
41791
- "required": false,
41792
- "type": {
41793
- "name": "string"
41794
- }
41795
- },
41796
- "autoClose": {
41797
- "defaultValue": null,
41798
- "description": "Whether the notification should disappear automatically after some time.",
41799
- "name": "autoClose",
41800
- "parent": {
41801
- "fileName": "components/src/components/Notification/Notification.tsx",
41802
- "name": "NotificationProps"
41803
- },
41804
- "declarations": [
41805
- {
41806
- "fileName": "components/src/components/Notification/Notification.tsx",
41807
- "name": "NotificationProps"
41808
- }
41809
- ],
41810
- "required": false,
41811
- "type": {
41812
- "name": "boolean"
41813
- }
41814
- },
41815
- "onClick": {
41816
- "defaultValue": null,
41817
- "description": "Handler that is called when the notification is clicked.",
41818
- "name": "onClick",
41819
- "parent": {
41820
- "fileName": "components/src/components/Notification/Notification.tsx",
41821
- "name": "NotificationProps"
41822
- },
41823
- "declarations": [
41824
- {
41825
- "fileName": "components/src/components/Notification/Notification.tsx",
41826
- "name": "NotificationProps"
41827
- }
41828
- ],
41829
- "required": false,
41830
- "type": {
41831
- "name": "(() => void)"
41832
- }
41833
- },
41834
- "onClose": {
41835
- "defaultValue": null,
41836
- "description": "Handler that is called when the close button of the notification is\nclicked.",
41837
- "name": "onClose",
41838
- "parent": {
41839
- "fileName": "components/src/components/Notification/Notification.tsx",
41840
- "name": "NotificationProps"
41841
- },
41842
- "declarations": [
41843
- {
41844
- "fileName": "components/src/components/Notification/Notification.tsx",
41845
- "name": "NotificationProps"
41846
- }
41847
- ],
41848
- "required": false,
41849
- "type": {
41850
- "name": "(() => void)"
41851
- }
41852
- },
41853
41802
  "ref": {
41854
41803
  "defaultValue": null,
41855
41804
  "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
@@ -45578,6 +45527,25 @@
45578
45527
  "name": "MouseEventHandler<HTMLElement>"
45579
45528
  }
45580
45529
  },
45530
+ "onClick": {
45531
+ "defaultValue": null,
45532
+ "description": "",
45533
+ "name": "onClick",
45534
+ "parent": {
45535
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
45536
+ "name": "DOMAttributes"
45537
+ },
45538
+ "declarations": [
45539
+ {
45540
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
45541
+ "name": "DOMAttributes"
45542
+ }
45543
+ ],
45544
+ "required": false,
45545
+ "type": {
45546
+ "name": "MouseEventHandler<HTMLElement>"
45547
+ }
45548
+ },
45581
45549
  "onClickCapture": {
45582
45550
  "defaultValue": null,
45583
45551
  "description": "",
@@ -47154,20 +47122,52 @@
47154
47122
  "type": {
47155
47123
  "name": "TransitionEventHandler<HTMLElement>"
47156
47124
  }
47125
+ }
47126
+ }
47127
+ },
47128
+ {
47129
+ "tags": {},
47130
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/NotificationProvider/ControlledNotification.tsx",
47131
+ "description": "",
47132
+ "displayName": "ControlledNotification",
47133
+ "methods": [],
47134
+ "props": {
47135
+ "notification": {
47136
+ "defaultValue": null,
47137
+ "description": "",
47138
+ "name": "notification",
47139
+ "parent": {
47140
+ "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
47141
+ "name": "Props"
47142
+ },
47143
+ "declarations": [
47144
+ {
47145
+ "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
47146
+ "name": "Props"
47147
+ }
47148
+ ],
47149
+ "required": true,
47150
+ "type": {
47151
+ "name": "NotificationData"
47152
+ }
47157
47153
  },
47158
- "status": {
47154
+ "controller": {
47159
47155
  "defaultValue": null,
47160
- "description": "The elements status",
47161
- "name": "status",
47156
+ "description": "",
47157
+ "name": "controller",
47158
+ "parent": {
47159
+ "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
47160
+ "name": "Props"
47161
+ },
47162
47162
  "declarations": [
47163
47163
  {
47164
- "fileName": "components/src/lib/types/props.ts",
47165
- "name": "TypeLiteral"
47164
+ "fileName": "components/src/components/NotificationProvider/ControlledNotification.tsx",
47165
+ "name": "Props"
47166
47166
  }
47167
47167
  ],
47168
- "required": false,
47168
+ "required": true,
47169
47169
  "type": {
47170
- "name": "Status"
47170
+ "name": "NotificationController"
47171
47171
  }
47172
47172
  }
47173
47173
  }
@@ -52782,6 +52782,51 @@
52782
52782
  }
52783
52783
  }
52784
52784
  },
52785
+ {
52786
+ "tags": {
52787
+ "flr-generate": "all"
52788
+ },
52789
+ "filePath": "src/components/MessageSeparator/MessageSeparator.tsx",
52790
+ "description": "",
52791
+ "displayName": "MessageSeparator",
52792
+ "methods": [],
52793
+ "props": {
52794
+ "children": {
52795
+ "defaultValue": null,
52796
+ "description": "",
52797
+ "name": "children",
52798
+ "declarations": [
52799
+ {
52800
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
52801
+ "name": "TypeLiteral"
52802
+ }
52803
+ ],
52804
+ "required": false,
52805
+ "type": {
52806
+ "name": "ReactNode"
52807
+ }
52808
+ },
52809
+ "className": {
52810
+ "defaultValue": null,
52811
+ "description": "The elements class name.",
52812
+ "name": "className",
52813
+ "parent": {
52814
+ "fileName": "components/src/lib/types/props.ts",
52815
+ "name": "PropsWithClassName"
52816
+ },
52817
+ "declarations": [
52818
+ {
52819
+ "fileName": "components/src/lib/types/props.ts",
52820
+ "name": "PropsWithClassName"
52821
+ }
52822
+ ],
52823
+ "required": false,
52824
+ "type": {
52825
+ "name": "string"
52826
+ }
52827
+ }
52828
+ }
52829
+ },
52785
52830
  {
52786
52831
  "tags": {
52787
52832
  "flr-generate": "all",
@@ -52904,51 +52949,6 @@
52904
52949
  }
52905
52950
  }
52906
52951
  },
52907
- {
52908
- "tags": {
52909
- "flr-generate": "all"
52910
- },
52911
- "filePath": "src/components/MessageSeparator/MessageSeparator.tsx",
52912
- "description": "",
52913
- "displayName": "MessageSeparator",
52914
- "methods": [],
52915
- "props": {
52916
- "children": {
52917
- "defaultValue": null,
52918
- "description": "",
52919
- "name": "children",
52920
- "declarations": [
52921
- {
52922
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
52923
- "name": "TypeLiteral"
52924
- }
52925
- ],
52926
- "required": false,
52927
- "type": {
52928
- "name": "ReactNode"
52929
- }
52930
- },
52931
- "className": {
52932
- "defaultValue": null,
52933
- "description": "The elements class name.",
52934
- "name": "className",
52935
- "parent": {
52936
- "fileName": "components/src/lib/types/props.ts",
52937
- "name": "PropsWithClassName"
52938
- },
52939
- "declarations": [
52940
- {
52941
- "fileName": "components/src/lib/types/props.ts",
52942
- "name": "PropsWithClassName"
52943
- }
52944
- ],
52945
- "required": false,
52946
- "type": {
52947
- "name": "string"
52948
- }
52949
- }
52950
- }
52951
- },
52952
52952
  {
52953
52953
  "tags": {
52954
52954
  "flr-generate": "all",
@@ -85526,44 +85526,6 @@
85526
85526
  "name": "Booleanish"
85527
85527
  }
85528
85528
  },
85529
- "alt": {
85530
- "defaultValue": null,
85531
- "description": "",
85532
- "name": "alt",
85533
- "parent": {
85534
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
85535
- "name": "ImgHTMLAttributes"
85536
- },
85537
- "declarations": [
85538
- {
85539
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
85540
- "name": "ImgHTMLAttributes"
85541
- }
85542
- ],
85543
- "required": false,
85544
- "type": {
85545
- "name": "string"
85546
- }
85547
- },
85548
- "src": {
85549
- "defaultValue": null,
85550
- "description": "",
85551
- "name": "src",
85552
- "parent": {
85553
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
85554
- "name": "ImgHTMLAttributes"
85555
- },
85556
- "declarations": [
85557
- {
85558
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
85559
- "name": "ImgHTMLAttributes"
85560
- }
85561
- ],
85562
- "required": false,
85563
- "type": {
85564
- "name": "string | Blob"
85565
- }
85566
- },
85567
85529
  "defaultChecked": {
85568
85530
  "defaultValue": null,
85569
85531
  "description": "",
@@ -86324,6 +86286,44 @@
86324
86286
  "name": "string"
86325
86287
  }
86326
86288
  },
86289
+ "alt": {
86290
+ "defaultValue": null,
86291
+ "description": "",
86292
+ "name": "alt",
86293
+ "parent": {
86294
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
86295
+ "name": "ImgHTMLAttributes"
86296
+ },
86297
+ "declarations": [
86298
+ {
86299
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
86300
+ "name": "ImgHTMLAttributes"
86301
+ }
86302
+ ],
86303
+ "required": false,
86304
+ "type": {
86305
+ "name": "string"
86306
+ }
86307
+ },
86308
+ "src": {
86309
+ "defaultValue": null,
86310
+ "description": "",
86311
+ "name": "src",
86312
+ "parent": {
86313
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
86314
+ "name": "ImgHTMLAttributes"
86315
+ },
86316
+ "declarations": [
86317
+ {
86318
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
86319
+ "name": "ImgHTMLAttributes"
86320
+ }
86321
+ ],
86322
+ "required": false,
86323
+ "type": {
86324
+ "name": "string | Blob"
86325
+ }
86326
+ },
86327
86327
  "referrerPolicy": {
86328
86328
  "defaultValue": null,
86329
86329
  "description": "",
@@ -122889,26 +122889,25 @@
122889
122889
  },
122890
122890
  {
122891
122891
  "tags": {
122892
- "flr-generate": "all",
122893
- "flr-clear-props-context": ""
122892
+ "flr-generate": "all"
122894
122893
  },
122895
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileField/FileField.tsx",
122894
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileDropZone/FileDropZone.tsx",
122896
122895
  "description": "",
122897
- "displayName": "FileField",
122896
+ "displayName": "FileDropZone",
122898
122897
  "methods": [],
122899
122898
  "props": {
122900
122899
  "onChange": {
122901
122900
  "defaultValue": null,
122902
- "description": "Handler that is called when the file input changes.",
122901
+ "description": "",
122903
122902
  "name": "onChange",
122904
122903
  "parent": {
122905
- "fileName": "components/src/components/FileField/FileField.tsx",
122906
- "name": "FileFieldProps"
122904
+ "fileName": "components/src/components/FileDropZone/FileDropZone.tsx",
122905
+ "name": "FileDropZoneProps"
122907
122906
  },
122908
122907
  "declarations": [
122909
122908
  {
122910
- "fileName": "components/src/components/FileField/FileField.tsx",
122911
- "name": "FileFieldProps"
122909
+ "fileName": "components/src/components/FileDropZone/FileDropZone.tsx",
122910
+ "name": "FileDropZoneProps"
122912
122911
  }
122913
122912
  ],
122914
122913
  "required": false,
@@ -122916,19 +122915,23 @@
122916
122915
  "name": "FileInputOnChangeHandler"
122917
122916
  }
122918
122917
  },
122919
- "children": {
122918
+ "className": {
122920
122919
  "defaultValue": null,
122921
- "description": "",
122922
- "name": "children",
122920
+ "description": "The elements class name.",
122921
+ "name": "className",
122922
+ "parent": {
122923
+ "fileName": "components/src/lib/types/props.ts",
122924
+ "name": "PropsWithClassName"
122925
+ },
122923
122926
  "declarations": [
122924
122927
  {
122925
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
122926
- "name": "TypeLiteral"
122928
+ "fileName": "components/src/lib/types/props.ts",
122929
+ "name": "PropsWithClassName"
122927
122930
  }
122928
122931
  ],
122929
122932
  "required": false,
122930
122933
  "type": {
122931
- "name": "ReactNode"
122934
+ "name": "string"
122932
122935
  }
122933
122936
  },
122934
122937
  "wrapWith": {
@@ -123007,6 +123010,21 @@
123007
123010
  "name": "Key | null"
123008
123011
  }
123009
123012
  },
123013
+ "children": {
123014
+ "defaultValue": null,
123015
+ "description": "",
123016
+ "name": "children",
123017
+ "declarations": [
123018
+ {
123019
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
123020
+ "name": "TypeLiteral"
123021
+ }
123022
+ ],
123023
+ "required": false,
123024
+ "type": {
123025
+ "name": "ReactNode"
123026
+ }
123027
+ },
123010
123028
  "name": {
123011
123029
  "defaultValue": null,
123012
123030
  "description": "",
@@ -123063,108 +123081,31 @@
123063
123081
  "type": {
123064
123082
  "name": "boolean"
123065
123083
  }
123066
- },
123067
- "validationBehavior": {
123068
- "defaultValue": {
123069
- "value": "'native'"
123070
- },
123071
- "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.",
123072
- "name": "validationBehavior",
123073
- "parent": {
123074
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123075
- "name": "RACValidation"
123076
- },
123077
- "declarations": [
123078
- {
123079
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123080
- "name": "RACValidation"
123081
- }
123082
- ],
123083
- "required": false,
123084
- "type": {
123085
- "name": "\"native\" | \"aria\""
123086
- }
123087
- },
123088
- "isDisabled": {
123089
- "defaultValue": null,
123090
- "description": "Whether the input is disabled.",
123091
- "name": "isDisabled",
123092
- "parent": {
123093
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123094
- "name": "InputBase"
123095
- },
123096
- "declarations": [
123097
- {
123098
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123099
- "name": "InputBase"
123100
- }
123101
- ],
123102
- "required": false,
123103
- "type": {
123104
- "name": "boolean"
123105
- }
123106
- },
123107
- "isRequired": {
123108
- "defaultValue": null,
123109
- "description": "Whether user input is required on the input before form submission.",
123110
- "name": "isRequired",
123111
- "parent": {
123112
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123113
- "name": "Validation"
123114
- },
123115
- "declarations": [
123116
- {
123117
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123118
- "name": "Validation"
123119
- }
123120
- ],
123121
- "required": false,
123122
- "type": {
123123
- "name": "boolean"
123124
- }
123125
- },
123126
- "isInvalid": {
123127
- "defaultValue": null,
123128
- "description": "Whether the value is invalid.",
123129
- "name": "isInvalid",
123130
- "parent": {
123131
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123132
- "name": "TextFieldProps"
123133
- },
123134
- "declarations": [
123135
- {
123136
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123137
- "name": "TextFieldProps"
123138
- }
123139
- ],
123140
- "required": false,
123141
- "type": {
123142
- "name": "boolean"
123143
- }
123144
123084
  }
123145
123085
  }
123146
123086
  },
123147
123087
  {
123148
123088
  "tags": {
123149
- "flr-generate": "all"
123089
+ "flr-generate": "all",
123090
+ "flr-clear-props-context": ""
123150
123091
  },
123151
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileDropZone/FileDropZone.tsx",
123092
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileField/FileField.tsx",
123152
123093
  "description": "",
123153
- "displayName": "FileDropZone",
123094
+ "displayName": "FileField",
123154
123095
  "methods": [],
123155
123096
  "props": {
123156
123097
  "onChange": {
123157
123098
  "defaultValue": null,
123158
- "description": "",
123099
+ "description": "Handler that is called when the file input changes.",
123159
123100
  "name": "onChange",
123160
123101
  "parent": {
123161
- "fileName": "components/src/components/FileDropZone/FileDropZone.tsx",
123162
- "name": "FileDropZoneProps"
123102
+ "fileName": "components/src/components/FileField/FileField.tsx",
123103
+ "name": "FileFieldProps"
123163
123104
  },
123164
123105
  "declarations": [
123165
123106
  {
123166
- "fileName": "components/src/components/FileDropZone/FileDropZone.tsx",
123167
- "name": "FileDropZoneProps"
123107
+ "fileName": "components/src/components/FileField/FileField.tsx",
123108
+ "name": "FileFieldProps"
123168
123109
  }
123169
123110
  ],
123170
123111
  "required": false,
@@ -123172,23 +123113,19 @@
123172
123113
  "name": "FileInputOnChangeHandler"
123173
123114
  }
123174
123115
  },
123175
- "className": {
123116
+ "children": {
123176
123117
  "defaultValue": null,
123177
- "description": "The elements class name.",
123178
- "name": "className",
123179
- "parent": {
123180
- "fileName": "components/src/lib/types/props.ts",
123181
- "name": "PropsWithClassName"
123182
- },
123118
+ "description": "",
123119
+ "name": "children",
123183
123120
  "declarations": [
123184
123121
  {
123185
- "fileName": "components/src/lib/types/props.ts",
123186
- "name": "PropsWithClassName"
123122
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
123123
+ "name": "TypeLiteral"
123187
123124
  }
123188
123125
  ],
123189
123126
  "required": false,
123190
123127
  "type": {
123191
- "name": "string"
123128
+ "name": "ReactNode"
123192
123129
  }
123193
123130
  },
123194
123131
  "wrapWith": {
@@ -123267,21 +123204,6 @@
123267
123204
  "name": "Key | null"
123268
123205
  }
123269
123206
  },
123270
- "children": {
123271
- "defaultValue": null,
123272
- "description": "",
123273
- "name": "children",
123274
- "declarations": [
123275
- {
123276
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
123277
- "name": "TypeLiteral"
123278
- }
123279
- ],
123280
- "required": false,
123281
- "type": {
123282
- "name": "ReactNode"
123283
- }
123284
- },
123285
123207
  "name": {
123286
123208
  "defaultValue": null,
123287
123209
  "description": "",
@@ -123338,6 +123260,84 @@
123338
123260
  "type": {
123339
123261
  "name": "boolean"
123340
123262
  }
123263
+ },
123264
+ "validationBehavior": {
123265
+ "defaultValue": {
123266
+ "value": "'native'"
123267
+ },
123268
+ "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.",
123269
+ "name": "validationBehavior",
123270
+ "parent": {
123271
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123272
+ "name": "RACValidation"
123273
+ },
123274
+ "declarations": [
123275
+ {
123276
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123277
+ "name": "RACValidation"
123278
+ }
123279
+ ],
123280
+ "required": false,
123281
+ "type": {
123282
+ "name": "\"native\" | \"aria\""
123283
+ }
123284
+ },
123285
+ "isDisabled": {
123286
+ "defaultValue": null,
123287
+ "description": "Whether the input is disabled.",
123288
+ "name": "isDisabled",
123289
+ "parent": {
123290
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123291
+ "name": "InputBase"
123292
+ },
123293
+ "declarations": [
123294
+ {
123295
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123296
+ "name": "InputBase"
123297
+ }
123298
+ ],
123299
+ "required": false,
123300
+ "type": {
123301
+ "name": "boolean"
123302
+ }
123303
+ },
123304
+ "isRequired": {
123305
+ "defaultValue": null,
123306
+ "description": "Whether user input is required on the input before form submission.",
123307
+ "name": "isRequired",
123308
+ "parent": {
123309
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123310
+ "name": "Validation"
123311
+ },
123312
+ "declarations": [
123313
+ {
123314
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.30.0_react@19.1.0/node_modules/@react-types/shared/src/inputs.d.ts",
123315
+ "name": "Validation"
123316
+ }
123317
+ ],
123318
+ "required": false,
123319
+ "type": {
123320
+ "name": "boolean"
123321
+ }
123322
+ },
123323
+ "isInvalid": {
123324
+ "defaultValue": null,
123325
+ "description": "Whether the value is invalid.",
123326
+ "name": "isInvalid",
123327
+ "parent": {
123328
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123329
+ "name": "TextFieldProps"
123330
+ },
123331
+ "declarations": [
123332
+ {
123333
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.10.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/react-aria-components/dist/types.d.ts",
123334
+ "name": "TextFieldProps"
123335
+ }
123336
+ ],
123337
+ "required": false,
123338
+ "type": {
123339
+ "name": "boolean"
123340
+ }
123341
123341
  }
123342
123342
  }
123343
123343
  },
@@ -145382,6 +145382,89 @@
145382
145382
  }
145383
145383
  }
145384
145384
  },
145385
+ {
145386
+ "tags": {
145387
+ "flr-generate": "all"
145388
+ },
145389
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Div/Div.tsx",
145390
+ "description": "",
145391
+ "displayName": "Div",
145392
+ "methods": [],
145393
+ "props": {
145394
+ "children": {
145395
+ "defaultValue": null,
145396
+ "description": "",
145397
+ "name": "children",
145398
+ "declarations": [
145399
+ {
145400
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145401
+ "name": "TypeLiteral"
145402
+ }
145403
+ ],
145404
+ "required": false,
145405
+ "type": {
145406
+ "name": "ReactNode"
145407
+ }
145408
+ },
145409
+ "className": {
145410
+ "defaultValue": null,
145411
+ "description": "The elements class name.",
145412
+ "name": "className",
145413
+ "parent": {
145414
+ "fileName": "components/src/lib/types/props.ts",
145415
+ "name": "PropsWithClassName"
145416
+ },
145417
+ "declarations": [
145418
+ {
145419
+ "fileName": "components/src/lib/types/props.ts",
145420
+ "name": "PropsWithClassName"
145421
+ }
145422
+ ],
145423
+ "required": false,
145424
+ "type": {
145425
+ "name": "string"
145426
+ }
145427
+ },
145428
+ "ref": {
145429
+ "defaultValue": null,
145430
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
145431
+ "name": "ref",
145432
+ "parent": {
145433
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145434
+ "name": "RefAttributes"
145435
+ },
145436
+ "declarations": [
145437
+ {
145438
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145439
+ "name": "RefAttributes"
145440
+ }
145441
+ ],
145442
+ "required": false,
145443
+ "type": {
145444
+ "name": "Ref<HTMLInputElement>"
145445
+ }
145446
+ },
145447
+ "key": {
145448
+ "defaultValue": null,
145449
+ "description": "",
145450
+ "name": "key",
145451
+ "parent": {
145452
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145453
+ "name": "Attributes"
145454
+ },
145455
+ "declarations": [
145456
+ {
145457
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145458
+ "name": "Attributes"
145459
+ }
145460
+ ],
145461
+ "required": false,
145462
+ "type": {
145463
+ "name": "Key | null"
145464
+ }
145465
+ }
145466
+ }
145467
+ },
145385
145468
  {
145386
145469
  "tags": {
145387
145470
  "flr-generate": "all"
@@ -145760,89 +145843,6 @@
145760
145843
  }
145761
145844
  }
145762
145845
  },
145763
- {
145764
- "tags": {
145765
- "flr-generate": "all"
145766
- },
145767
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Div/Div.tsx",
145768
- "description": "",
145769
- "displayName": "Div",
145770
- "methods": [],
145771
- "props": {
145772
- "children": {
145773
- "defaultValue": null,
145774
- "description": "",
145775
- "name": "children",
145776
- "declarations": [
145777
- {
145778
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145779
- "name": "TypeLiteral"
145780
- }
145781
- ],
145782
- "required": false,
145783
- "type": {
145784
- "name": "ReactNode"
145785
- }
145786
- },
145787
- "className": {
145788
- "defaultValue": null,
145789
- "description": "The elements class name.",
145790
- "name": "className",
145791
- "parent": {
145792
- "fileName": "components/src/lib/types/props.ts",
145793
- "name": "PropsWithClassName"
145794
- },
145795
- "declarations": [
145796
- {
145797
- "fileName": "components/src/lib/types/props.ts",
145798
- "name": "PropsWithClassName"
145799
- }
145800
- ],
145801
- "required": false,
145802
- "type": {
145803
- "name": "string"
145804
- }
145805
- },
145806
- "ref": {
145807
- "defaultValue": null,
145808
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
145809
- "name": "ref",
145810
- "parent": {
145811
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145812
- "name": "RefAttributes"
145813
- },
145814
- "declarations": [
145815
- {
145816
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145817
- "name": "RefAttributes"
145818
- }
145819
- ],
145820
- "required": false,
145821
- "type": {
145822
- "name": "Ref<HTMLInputElement>"
145823
- }
145824
- },
145825
- "key": {
145826
- "defaultValue": null,
145827
- "description": "",
145828
- "name": "key",
145829
- "parent": {
145830
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145831
- "name": "Attributes"
145832
- },
145833
- "declarations": [
145834
- {
145835
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
145836
- "name": "Attributes"
145837
- }
145838
- ],
145839
- "required": false,
145840
- "type": {
145841
- "name": "Key | null"
145842
- }
145843
- }
145844
- }
145845
- },
145846
145846
  {
145847
145847
  "tags": {
145848
145848
  "flr-generate": "all",
@@ -153016,7 +153016,7 @@
153016
153016
  "name": "CopyButtonProps"
153017
153017
  }
153018
153018
  ],
153019
- "required": true,
153019
+ "required": false,
153020
153020
  "type": {
153021
153021
  "name": "string"
153022
153022
  }
@@ -161789,12 +161789,12 @@
161789
161789
  "name": "placeholder",
161790
161790
  "parent": {
161791
161791
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
161792
- "name": "InputHTMLAttributes"
161792
+ "name": "TextareaHTMLAttributes"
161793
161793
  },
161794
161794
  "declarations": [
161795
161795
  {
161796
161796
  "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
161797
- "name": "InputHTMLAttributes"
161797
+ "name": "TextareaHTMLAttributes"
161798
161798
  }
161799
161799
  ],
161800
161800
  "required": false,
@@ -167434,53 +167434,6 @@
167434
167434
  }
167435
167435
  }
167436
167436
  },
167437
- {
167438
- "tags": {
167439
- "flr-generate": "all"
167440
- },
167441
- "filePath": "src/components/Color/Color.tsx",
167442
- "description": "",
167443
- "displayName": "Color",
167444
- "methods": [],
167445
- "props": {
167446
- "color": {
167447
- "defaultValue": {
167448
- "value": "\"blue\""
167449
- },
167450
- "description": "The color of the element.",
167451
- "name": "color",
167452
- "parent": {
167453
- "fileName": "src/components/Color/Color.tsx",
167454
- "name": "ColorProps"
167455
- },
167456
- "declarations": [
167457
- {
167458
- "fileName": "src/components/Color/Color.tsx",
167459
- "name": "ColorProps"
167460
- }
167461
- ],
167462
- "required": false,
167463
- "type": {
167464
- "name": "\"violet\" | \"blue\" | \"teal\" | \"lilac\""
167465
- }
167466
- },
167467
- "children": {
167468
- "defaultValue": null,
167469
- "description": "",
167470
- "name": "children",
167471
- "declarations": [
167472
- {
167473
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
167474
- "name": "TypeLiteral"
167475
- }
167476
- ],
167477
- "required": false,
167478
- "type": {
167479
- "name": "ReactNode"
167480
- }
167481
- }
167482
- }
167483
- },
167484
167437
  {
167485
167438
  "tags": {
167486
167439
  "flr-generate": "all"
@@ -167570,6 +167523,53 @@
167570
167523
  }
167571
167524
  }
167572
167525
  },
167526
+ {
167527
+ "tags": {
167528
+ "flr-generate": "all"
167529
+ },
167530
+ "filePath": "src/components/Color/Color.tsx",
167531
+ "description": "",
167532
+ "displayName": "Color",
167533
+ "methods": [],
167534
+ "props": {
167535
+ "color": {
167536
+ "defaultValue": {
167537
+ "value": "\"blue\""
167538
+ },
167539
+ "description": "The color of the element.",
167540
+ "name": "color",
167541
+ "parent": {
167542
+ "fileName": "src/components/Color/Color.tsx",
167543
+ "name": "ColorProps"
167544
+ },
167545
+ "declarations": [
167546
+ {
167547
+ "fileName": "src/components/Color/Color.tsx",
167548
+ "name": "ColorProps"
167549
+ }
167550
+ ],
167551
+ "required": false,
167552
+ "type": {
167553
+ "name": "\"violet\" | \"blue\" | \"teal\" | \"lilac\""
167554
+ }
167555
+ },
167556
+ "children": {
167557
+ "defaultValue": null,
167558
+ "description": "",
167559
+ "name": "children",
167560
+ "declarations": [
167561
+ {
167562
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
167563
+ "name": "TypeLiteral"
167564
+ }
167565
+ ],
167566
+ "required": false,
167567
+ "type": {
167568
+ "name": "ReactNode"
167569
+ }
167570
+ }
167571
+ }
167572
+ },
167573
167573
  {
167574
167574
  "tags": {},
167575
167575
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/ClearPropsContext/ClearPropsContext.tsx",
@@ -171034,6 +171034,51 @@
171034
171034
  }
171035
171035
  }
171036
171036
  },
171037
+ {
171038
+ "tags": {
171039
+ "flr-generate": "all"
171040
+ },
171041
+ "filePath": "src/components/BigNumber/BigNumber.tsx",
171042
+ "description": "",
171043
+ "displayName": "BigNumber",
171044
+ "methods": [],
171045
+ "props": {
171046
+ "children": {
171047
+ "defaultValue": null,
171048
+ "description": "",
171049
+ "name": "children",
171050
+ "declarations": [
171051
+ {
171052
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
171053
+ "name": "TypeLiteral"
171054
+ }
171055
+ ],
171056
+ "required": false,
171057
+ "type": {
171058
+ "name": "ReactNode"
171059
+ }
171060
+ },
171061
+ "className": {
171062
+ "defaultValue": null,
171063
+ "description": "The elements class name.",
171064
+ "name": "className",
171065
+ "parent": {
171066
+ "fileName": "components/src/lib/types/props.ts",
171067
+ "name": "PropsWithClassName"
171068
+ },
171069
+ "declarations": [
171070
+ {
171071
+ "fileName": "components/src/lib/types/props.ts",
171072
+ "name": "PropsWithClassName"
171073
+ }
171074
+ ],
171075
+ "required": false,
171076
+ "type": {
171077
+ "name": "string"
171078
+ }
171079
+ }
171080
+ }
171081
+ },
171037
171082
  {
171038
171083
  "tags": {
171039
171084
  "flr-generate": "all",
@@ -171310,51 +171355,6 @@
171310
171355
  }
171311
171356
  }
171312
171357
  },
171313
- {
171314
- "tags": {
171315
- "flr-generate": "all"
171316
- },
171317
- "filePath": "src/components/BigNumber/BigNumber.tsx",
171318
- "description": "",
171319
- "displayName": "BigNumber",
171320
- "methods": [],
171321
- "props": {
171322
- "children": {
171323
- "defaultValue": null,
171324
- "description": "",
171325
- "name": "children",
171326
- "declarations": [
171327
- {
171328
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
171329
- "name": "TypeLiteral"
171330
- }
171331
- ],
171332
- "required": false,
171333
- "type": {
171334
- "name": "ReactNode"
171335
- }
171336
- },
171337
- "className": {
171338
- "defaultValue": null,
171339
- "description": "The elements class name.",
171340
- "name": "className",
171341
- "parent": {
171342
- "fileName": "components/src/lib/types/props.ts",
171343
- "name": "PropsWithClassName"
171344
- },
171345
- "declarations": [
171346
- {
171347
- "fileName": "components/src/lib/types/props.ts",
171348
- "name": "PropsWithClassName"
171349
- }
171350
- ],
171351
- "required": false,
171352
- "type": {
171353
- "name": "string"
171354
- }
171355
- }
171356
- }
171357
- },
171358
171358
  {
171359
171359
  "tags": {
171360
171360
  "flr-generate": "all",
@@ -230857,179 +230857,6 @@
230857
230857
  }
230858
230858
  }
230859
230859
  },
230860
- {
230861
- "tags": {
230862
- "flr-generate": "all"
230863
- },
230864
- "filePath": "src/components/AreaChart/components/Line/Line.tsx",
230865
- "description": "",
230866
- "displayName": "Line",
230867
- "methods": [],
230868
- "props": {
230869
- "color": {
230870
- "defaultValue": {
230871
- "value": "\"sea-green\""
230872
- },
230873
- "description": "The color of the line.",
230874
- "name": "color",
230875
- "parent": {
230876
- "fileName": "src/components/AreaChart/components/Line/Line.tsx",
230877
- "name": "LineProps"
230878
- },
230879
- "declarations": [
230880
- {
230881
- "fileName": "src/components/AreaChart/components/Line/Line.tsx",
230882
- "name": "LineProps"
230883
- }
230884
- ],
230885
- "required": false,
230886
- "type": {
230887
- "name": "\"sea-green\" | \"palatinate-blue\" | \"tangerine\" | \"magenta\" | \"tropical-indigo\" | \"malachite\" | \"azure\" | \"violet\" | \"yellow\" | \"alloy-orange\" | \"green\" | \"lime\""
230888
- }
230889
- },
230890
- "className": {
230891
- "defaultValue": null,
230892
- "description": "The HTML element's class name",
230893
- "name": "className",
230894
- "parent": {
230895
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
230896
- "name": "SVGAttributes"
230897
- },
230898
- "declarations": [
230899
- {
230900
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
230901
- "name": "SVGAttributes"
230902
- },
230903
- {
230904
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
230905
- "name": "BaseAxisProps"
230906
- }
230907
- ],
230908
- "required": false,
230909
- "type": {
230910
- "name": "string"
230911
- }
230912
- },
230913
- "type": {
230914
- "defaultValue": null,
230915
- "description": "",
230916
- "name": "type",
230917
- "parent": {
230918
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
230919
- "name": "CurveProps"
230920
- },
230921
- "declarations": [
230922
- {
230923
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
230924
- "name": "CurveProps"
230925
- },
230926
- {
230927
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
230928
- "name": "LineProps"
230929
- }
230930
- ],
230931
- "required": false,
230932
- "type": {
230933
- "name": "CurveType"
230934
- }
230935
- },
230936
- "key": {
230937
- "defaultValue": null,
230938
- "description": "",
230939
- "name": "key",
230940
- "parent": {
230941
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
230942
- "name": "Attributes"
230943
- },
230944
- "declarations": [
230945
- {
230946
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
230947
- "name": "Attributes"
230948
- }
230949
- ],
230950
- "required": false,
230951
- "type": {
230952
- "name": "Key | null"
230953
- }
230954
- },
230955
- "dataKey": {
230956
- "defaultValue": null,
230957
- "description": "",
230958
- "name": "dataKey",
230959
- "parent": {
230960
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
230961
- "name": "LineProps"
230962
- },
230963
- "declarations": [
230964
- {
230965
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
230966
- "name": "LineProps"
230967
- }
230968
- ],
230969
- "required": false,
230970
- "type": {
230971
- "name": "DataKey<any>"
230972
- }
230973
- },
230974
- "unit": {
230975
- "defaultValue": null,
230976
- "description": "",
230977
- "name": "unit",
230978
- "parent": {
230979
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
230980
- "name": "LineProps"
230981
- },
230982
- "declarations": [
230983
- {
230984
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
230985
- "name": "LineProps"
230986
- }
230987
- ],
230988
- "required": false,
230989
- "type": {
230990
- "name": "string | number"
230991
- }
230992
- },
230993
- "xAxisId": {
230994
- "defaultValue": null,
230995
- "description": "",
230996
- "name": "xAxisId",
230997
- "parent": {
230998
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
230999
- "name": "LineProps"
231000
- },
231001
- "declarations": [
231002
- {
231003
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
231004
- "name": "LineProps"
231005
- }
231006
- ],
231007
- "required": false,
231008
- "type": {
231009
- "name": "AxisId"
231010
- }
231011
- },
231012
- "yAxisId": {
231013
- "defaultValue": null,
231014
- "description": "",
231015
- "name": "yAxisId",
231016
- "parent": {
231017
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
231018
- "name": "LineProps"
231019
- },
231020
- "declarations": [
231021
- {
231022
- "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
231023
- "name": "LineProps"
231024
- }
231025
- ],
231026
- "required": false,
231027
- "type": {
231028
- "name": "AxisId"
231029
- }
231030
- }
231031
- }
231032
- },
231033
230860
  {
231034
230861
  "tags": {},
231035
230862
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/AreaChart/components/AreaDot/AreaDot.tsx",
@@ -240323,6 +240150,179 @@
240323
240150
  }
240324
240151
  }
240325
240152
  },
240153
+ {
240154
+ "tags": {
240155
+ "flr-generate": "all"
240156
+ },
240157
+ "filePath": "src/components/AreaChart/components/Line/Line.tsx",
240158
+ "description": "",
240159
+ "displayName": "Line",
240160
+ "methods": [],
240161
+ "props": {
240162
+ "color": {
240163
+ "defaultValue": {
240164
+ "value": "\"sea-green\""
240165
+ },
240166
+ "description": "The color of the line.",
240167
+ "name": "color",
240168
+ "parent": {
240169
+ "fileName": "src/components/AreaChart/components/Line/Line.tsx",
240170
+ "name": "LineProps"
240171
+ },
240172
+ "declarations": [
240173
+ {
240174
+ "fileName": "src/components/AreaChart/components/Line/Line.tsx",
240175
+ "name": "LineProps"
240176
+ }
240177
+ ],
240178
+ "required": false,
240179
+ "type": {
240180
+ "name": "\"sea-green\" | \"palatinate-blue\" | \"tangerine\" | \"magenta\" | \"tropical-indigo\" | \"malachite\" | \"azure\" | \"violet\" | \"yellow\" | \"alloy-orange\" | \"green\" | \"lime\""
240181
+ }
240182
+ },
240183
+ "className": {
240184
+ "defaultValue": null,
240185
+ "description": "The HTML element's class name",
240186
+ "name": "className",
240187
+ "parent": {
240188
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
240189
+ "name": "SVGAttributes"
240190
+ },
240191
+ "declarations": [
240192
+ {
240193
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
240194
+ "name": "SVGAttributes"
240195
+ },
240196
+ {
240197
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
240198
+ "name": "BaseAxisProps"
240199
+ }
240200
+ ],
240201
+ "required": false,
240202
+ "type": {
240203
+ "name": "string"
240204
+ }
240205
+ },
240206
+ "type": {
240207
+ "defaultValue": null,
240208
+ "description": "",
240209
+ "name": "type",
240210
+ "parent": {
240211
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
240212
+ "name": "CurveProps"
240213
+ },
240214
+ "declarations": [
240215
+ {
240216
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
240217
+ "name": "CurveProps"
240218
+ },
240219
+ {
240220
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240221
+ "name": "LineProps"
240222
+ }
240223
+ ],
240224
+ "required": false,
240225
+ "type": {
240226
+ "name": "CurveType"
240227
+ }
240228
+ },
240229
+ "key": {
240230
+ "defaultValue": null,
240231
+ "description": "",
240232
+ "name": "key",
240233
+ "parent": {
240234
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
240235
+ "name": "Attributes"
240236
+ },
240237
+ "declarations": [
240238
+ {
240239
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.6/node_modules/@types/react/index.d.ts",
240240
+ "name": "Attributes"
240241
+ }
240242
+ ],
240243
+ "required": false,
240244
+ "type": {
240245
+ "name": "Key | null"
240246
+ }
240247
+ },
240248
+ "dataKey": {
240249
+ "defaultValue": null,
240250
+ "description": "",
240251
+ "name": "dataKey",
240252
+ "parent": {
240253
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240254
+ "name": "LineProps"
240255
+ },
240256
+ "declarations": [
240257
+ {
240258
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240259
+ "name": "LineProps"
240260
+ }
240261
+ ],
240262
+ "required": false,
240263
+ "type": {
240264
+ "name": "DataKey<any>"
240265
+ }
240266
+ },
240267
+ "unit": {
240268
+ "defaultValue": null,
240269
+ "description": "",
240270
+ "name": "unit",
240271
+ "parent": {
240272
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240273
+ "name": "LineProps"
240274
+ },
240275
+ "declarations": [
240276
+ {
240277
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240278
+ "name": "LineProps"
240279
+ }
240280
+ ],
240281
+ "required": false,
240282
+ "type": {
240283
+ "name": "string | number"
240284
+ }
240285
+ },
240286
+ "xAxisId": {
240287
+ "defaultValue": null,
240288
+ "description": "",
240289
+ "name": "xAxisId",
240290
+ "parent": {
240291
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240292
+ "name": "LineProps"
240293
+ },
240294
+ "declarations": [
240295
+ {
240296
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240297
+ "name": "LineProps"
240298
+ }
240299
+ ],
240300
+ "required": false,
240301
+ "type": {
240302
+ "name": "AxisId"
240303
+ }
240304
+ },
240305
+ "yAxisId": {
240306
+ "defaultValue": null,
240307
+ "description": "",
240308
+ "name": "yAxisId",
240309
+ "parent": {
240310
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240311
+ "name": "LineProps"
240312
+ },
240313
+ "declarations": [
240314
+ {
240315
+ "fileName": "flow/node_modules/.pnpm/recharts@3.0.0-beta.1_@types+react@19.1.6_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
240316
+ "name": "LineProps"
240317
+ }
240318
+ ],
240319
+ "required": false,
240320
+ "type": {
240321
+ "name": "AxisId"
240322
+ }
240323
+ }
240324
+ }
240325
+ },
240326
240326
  {
240327
240327
  "tags": {
240328
240328
  "flr-generate": "all"