@mittwald/flow-react-components 0.2.0-alpha.771 → 0.2.0-alpha.772

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 (45) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/assets/doc-properties.json +943 -780
  3. package/dist/css/all.css +1 -1
  4. package/dist/js/_virtual/_.locale.json@849e6f494125ee27df10a461562fa893.mjs +8 -0
  5. package/dist/js/_virtual/_.locale.json@849e6f494125ee27df10a461562fa893.mjs.map +1 -0
  6. package/dist/js/default.mjs +1 -0
  7. package/dist/js/default.mjs.map +1 -1
  8. package/dist/js/flr-universal.mjs +2 -1
  9. package/dist/js/flr-universal.mjs.map +1 -1
  10. package/dist/js/packages/components/src/components/ImageCropper/ImageCropper.mjs +74 -0
  11. package/dist/js/packages/components/src/components/ImageCropper/ImageCropper.mjs.map +1 -0
  12. package/dist/js/packages/components/src/components/ImageCropper/ImageCropper.module.scss.mjs +11 -0
  13. package/dist/js/packages/components/src/components/ImageCropper/ImageCropper.module.scss.mjs.map +1 -0
  14. package/dist/js/packages/components/src/components/ImageCropper/lib/getCroppedImageFile.mjs +45 -0
  15. package/dist/js/packages/components/src/components/ImageCropper/lib/getCroppedImageFile.mjs.map +1 -0
  16. package/dist/js/packages/components/src/components/List/model/filter/Filter.mjs +0 -3
  17. package/dist/js/packages/components/src/components/List/model/filter/Filter.mjs.map +1 -1
  18. package/dist/js/packages/components/src/components/Slider/Slider.mjs +28 -21
  19. package/dist/js/packages/components/src/components/Slider/Slider.mjs.map +1 -1
  20. package/dist/js/packages/components/src/components/Slider/Slider.module.scss.mjs +3 -1
  21. package/dist/js/packages/components/src/components/Slider/Slider.module.scss.mjs.map +1 -1
  22. package/dist/js/packages/components/src/lib/hooks/useImageSrc.mjs +29 -0
  23. package/dist/js/packages/components/src/lib/hooks/useImageSrc.mjs.map +1 -0
  24. package/dist/types/components/ImageCropper/ImageCropper.d.ts +19 -0
  25. package/dist/types/components/ImageCropper/ImageCropper.d.ts.map +1 -0
  26. package/dist/types/components/ImageCropper/index.d.ts +3 -0
  27. package/dist/types/components/ImageCropper/index.d.ts.map +1 -0
  28. package/dist/types/components/ImageCropper/lib/getCroppedImageFile.d.ts +3 -0
  29. package/dist/types/components/ImageCropper/lib/getCroppedImageFile.d.ts.map +1 -0
  30. package/dist/types/components/ImageCropper/stories/Default.stories.d.ts +9 -0
  31. package/dist/types/components/ImageCropper/stories/Default.stories.d.ts.map +1 -0
  32. package/dist/types/components/ImageCropper/view.d.ts +8 -0
  33. package/dist/types/components/ImageCropper/view.d.ts.map +1 -0
  34. package/dist/types/components/List/model/filter/Filter.d.ts.map +1 -1
  35. package/dist/types/components/Slider/Slider.d.ts +4 -0
  36. package/dist/types/components/Slider/Slider.d.ts.map +1 -1
  37. package/dist/types/components/Slider/stories/Default.stories.d.ts +1 -1
  38. package/dist/types/components/Slider/stories/Default.stories.d.ts.map +1 -1
  39. package/dist/types/components/public.d.ts +1 -0
  40. package/dist/types/components/public.d.ts.map +1 -1
  41. package/dist/types/lib/hooks/useImageSrc.d.ts +2 -0
  42. package/dist/types/lib/hooks/useImageSrc.d.ts.map +1 -0
  43. package/dist/types/views/ImageCropperView.d.ts +5 -0
  44. package/dist/types/views/ImageCropperView.d.ts.map +1 -0
  45. package/package.json +7 -6
@@ -19801,7 +19801,7 @@
19801
19801
  "props": {
19802
19802
  "showInitialMarker": {
19803
19803
  "defaultValue": null,
19804
- "description": "",
19804
+ "description": "Whether the marker for the initial value should be visible",
19805
19805
  "name": "showInitialMarker",
19806
19806
  "parent": {
19807
19807
  "fileName": "components/src/components/Slider/Slider.tsx",
@@ -19839,7 +19839,7 @@
19839
19839
  },
19840
19840
  "isInvalid": {
19841
19841
  "defaultValue": null,
19842
- "description": "",
19842
+ "description": "Whether the component is invalid.",
19843
19843
  "name": "isInvalid",
19844
19844
  "parent": {
19845
19845
  "fileName": "components/src/components/Slider/Slider.tsx",
@@ -19856,6 +19856,25 @@
19856
19856
  "name": "boolean"
19857
19857
  }
19858
19858
  },
19859
+ "sliderOnly": {
19860
+ "defaultValue": null,
19861
+ "description": "Hide Buttons, Label and Value",
19862
+ "name": "sliderOnly",
19863
+ "parent": {
19864
+ "fileName": "components/src/components/Slider/Slider.tsx",
19865
+ "name": "SliderProps"
19866
+ },
19867
+ "declarations": [
19868
+ {
19869
+ "fileName": "components/src/components/Slider/Slider.tsx",
19870
+ "name": "SliderProps"
19871
+ }
19872
+ ],
19873
+ "required": false,
19874
+ "type": {
19875
+ "name": "boolean"
19876
+ }
19877
+ },
19859
19878
  "wrapWith": {
19860
19879
  "defaultValue": null,
19861
19880
  "description": "",
@@ -112713,6 +112732,150 @@
112713
112732
  }
112714
112733
  }
112715
112734
  },
112735
+ {
112736
+ "tags": {
112737
+ "flr-generate": "all"
112738
+ },
112739
+ "filePath": "src/components/ImageCropper/ImageCropper.tsx",
112740
+ "description": "",
112741
+ "displayName": "ImageCropper",
112742
+ "methods": [],
112743
+ "props": {
112744
+ "image": {
112745
+ "defaultValue": null,
112746
+ "description": "The image file to crop.",
112747
+ "name": "image",
112748
+ "parent": {
112749
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112750
+ "name": "ImageCropperProps"
112751
+ },
112752
+ "declarations": [
112753
+ {
112754
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112755
+ "name": "ImageCropperProps"
112756
+ }
112757
+ ],
112758
+ "required": false,
112759
+ "type": {
112760
+ "name": "string | File"
112761
+ }
112762
+ },
112763
+ "onCropComplete": {
112764
+ "defaultValue": null,
112765
+ "description": "Callback on crop complete.",
112766
+ "name": "onCropComplete",
112767
+ "parent": {
112768
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112769
+ "name": "ImageCropperProps"
112770
+ },
112771
+ "declarations": [
112772
+ {
112773
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112774
+ "name": "ImageCropperProps"
112775
+ }
112776
+ ],
112777
+ "required": false,
112778
+ "type": {
112779
+ "name": "((croppedImage: File) => void)"
112780
+ }
112781
+ },
112782
+ "width": {
112783
+ "defaultValue": {
112784
+ "value": "300"
112785
+ },
112786
+ "description": "The width of the component.",
112787
+ "name": "width",
112788
+ "parent": {
112789
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112790
+ "name": "ImageCropperProps"
112791
+ },
112792
+ "declarations": [
112793
+ {
112794
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112795
+ "name": "ImageCropperProps"
112796
+ }
112797
+ ],
112798
+ "required": false,
112799
+ "type": {
112800
+ "name": "Width<string | number>"
112801
+ }
112802
+ },
112803
+ "height": {
112804
+ "defaultValue": {
112805
+ "value": "300"
112806
+ },
112807
+ "description": "The height of the component.",
112808
+ "name": "height",
112809
+ "parent": {
112810
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112811
+ "name": "ImageCropperProps"
112812
+ },
112813
+ "declarations": [
112814
+ {
112815
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112816
+ "name": "ImageCropperProps"
112817
+ }
112818
+ ],
112819
+ "required": false,
112820
+ "type": {
112821
+ "name": "Height<string | number>"
112822
+ }
112823
+ },
112824
+ "aspectRatio": {
112825
+ "defaultValue": null,
112826
+ "description": "The aspect ratio of the crop shape.",
112827
+ "name": "aspectRatio",
112828
+ "parent": {
112829
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112830
+ "name": "ImageCropperProps"
112831
+ },
112832
+ "declarations": [
112833
+ {
112834
+ "fileName": "src/components/ImageCropper/ImageCropper.tsx",
112835
+ "name": "ImageCropperProps"
112836
+ }
112837
+ ],
112838
+ "required": false,
112839
+ "type": {
112840
+ "name": "number"
112841
+ }
112842
+ },
112843
+ "className": {
112844
+ "defaultValue": null,
112845
+ "description": "The elements class name.",
112846
+ "name": "className",
112847
+ "parent": {
112848
+ "fileName": "components/src/lib/types/props.ts",
112849
+ "name": "PropsWithClassName"
112850
+ },
112851
+ "declarations": [
112852
+ {
112853
+ "fileName": "components/src/lib/types/props.ts",
112854
+ "name": "PropsWithClassName"
112855
+ }
112856
+ ],
112857
+ "required": false,
112858
+ "type": {
112859
+ "name": "string"
112860
+ }
112861
+ },
112862
+ "cropShape": {
112863
+ "defaultValue": null,
112864
+ "description": "",
112865
+ "name": "cropShape",
112866
+ "declarations": [
112867
+ {
112868
+ "fileName": "flow/node_modules/.pnpm/react-easy-crop@5.5.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-easy-crop/Cropper.d.ts",
112869
+ "name": "TypeLiteral"
112870
+ }
112871
+ ],
112872
+ "required": false,
112873
+ "type": {
112874
+ "name": "\"rect\" | \"round\""
112875
+ }
112876
+ }
112877
+ }
112878
+ },
112716
112879
  {
112717
112880
  "tags": {
112718
112881
  "flr-generate": "all"
@@ -228267,6 +228430,51 @@
228267
228430
  }
228268
228431
  }
228269
228432
  },
228433
+ {
228434
+ "tags": {
228435
+ "flr-generate": "all"
228436
+ },
228437
+ "filePath": "src/components/BigNumber/BigNumber.tsx",
228438
+ "description": "",
228439
+ "displayName": "BigNumber",
228440
+ "methods": [],
228441
+ "props": {
228442
+ "children": {
228443
+ "defaultValue": null,
228444
+ "description": "",
228445
+ "name": "children",
228446
+ "declarations": [
228447
+ {
228448
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
228449
+ "name": "TypeLiteral"
228450
+ }
228451
+ ],
228452
+ "required": false,
228453
+ "type": {
228454
+ "name": "ReactNode"
228455
+ }
228456
+ },
228457
+ "className": {
228458
+ "defaultValue": null,
228459
+ "description": "The elements class name.",
228460
+ "name": "className",
228461
+ "parent": {
228462
+ "fileName": "components/src/lib/types/props.ts",
228463
+ "name": "PropsWithClassName"
228464
+ },
228465
+ "declarations": [
228466
+ {
228467
+ "fileName": "components/src/lib/types/props.ts",
228468
+ "name": "PropsWithClassName"
228469
+ }
228470
+ ],
228471
+ "required": false,
228472
+ "type": {
228473
+ "name": "string"
228474
+ }
228475
+ }
228476
+ }
228477
+ },
228270
228478
  {
228271
228479
  "tags": {
228272
228480
  "flr-generate": "all"
@@ -229880,24 +230088,68 @@
229880
230088
  "tags": {
229881
230089
  "flr-generate": "all"
229882
230090
  },
229883
- "filePath": "src/components/BigNumber/BigNumber.tsx",
230091
+ "filePath": "src/components/AvatarStack/AvatarStack.tsx",
229884
230092
  "description": "",
229885
- "displayName": "BigNumber",
230093
+ "displayName": "AvatarStack",
229886
230094
  "methods": [],
229887
230095
  "props": {
229888
- "children": {
230096
+ "totalCount": {
229889
230097
  "defaultValue": null,
229890
- "description": "",
229891
- "name": "children",
230098
+ "description": "The total count of items, as avatars should only be displayed for the first\nview",
230099
+ "name": "totalCount",
230100
+ "parent": {
230101
+ "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230102
+ "name": "AvatarStackProps"
230103
+ },
229892
230104
  "declarations": [
229893
230105
  {
229894
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
229895
- "name": "TypeLiteral"
230106
+ "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230107
+ "name": "AvatarStackProps"
229896
230108
  }
229897
230109
  ],
229898
230110
  "required": false,
229899
230111
  "type": {
229900
- "name": "ReactNode"
230112
+ "name": "number"
230113
+ }
230114
+ },
230115
+ "onCountPress": {
230116
+ "defaultValue": null,
230117
+ "description": "The onPress action of the additional items count element",
230118
+ "name": "onCountPress",
230119
+ "parent": {
230120
+ "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230121
+ "name": "AvatarStackProps"
230122
+ },
230123
+ "declarations": [
230124
+ {
230125
+ "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230126
+ "name": "AvatarStackProps"
230127
+ }
230128
+ ],
230129
+ "required": false,
230130
+ "type": {
230131
+ "name": "(() => void)"
230132
+ }
230133
+ },
230134
+ "size": {
230135
+ "defaultValue": {
230136
+ "value": "\"m\""
230137
+ },
230138
+ "description": "The size of the avatars inside the stack.",
230139
+ "name": "size",
230140
+ "parent": {
230141
+ "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230142
+ "name": "AvatarStackProps"
230143
+ },
230144
+ "declarations": [
230145
+ {
230146
+ "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230147
+ "name": "AvatarStackProps"
230148
+ }
230149
+ ],
230150
+ "required": false,
230151
+ "type": {
230152
+ "name": "\"s\" | \"xs\" | \"m\" | \"l\""
229901
230153
  }
229902
230154
  },
229903
230155
  "className": {
@@ -229918,6 +230170,21 @@
229918
230170
  "type": {
229919
230171
  "name": "string"
229920
230172
  }
230173
+ },
230174
+ "children": {
230175
+ "defaultValue": null,
230176
+ "description": "",
230177
+ "name": "children",
230178
+ "declarations": [
230179
+ {
230180
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
230181
+ "name": "TypeLiteral"
230182
+ }
230183
+ ],
230184
+ "required": false,
230185
+ "type": {
230186
+ "name": "ReactNode"
230187
+ }
229921
230188
  }
229922
230189
  }
229923
230190
  },
@@ -230120,110 +230387,6 @@
230120
230387
  }
230121
230388
  }
230122
230389
  },
230123
- {
230124
- "tags": {
230125
- "flr-generate": "all"
230126
- },
230127
- "filePath": "src/components/AvatarStack/AvatarStack.tsx",
230128
- "description": "",
230129
- "displayName": "AvatarStack",
230130
- "methods": [],
230131
- "props": {
230132
- "totalCount": {
230133
- "defaultValue": null,
230134
- "description": "The total count of items, as avatars should only be displayed for the first\nview",
230135
- "name": "totalCount",
230136
- "parent": {
230137
- "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230138
- "name": "AvatarStackProps"
230139
- },
230140
- "declarations": [
230141
- {
230142
- "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230143
- "name": "AvatarStackProps"
230144
- }
230145
- ],
230146
- "required": false,
230147
- "type": {
230148
- "name": "number"
230149
- }
230150
- },
230151
- "onCountPress": {
230152
- "defaultValue": null,
230153
- "description": "The onPress action of the additional items count element",
230154
- "name": "onCountPress",
230155
- "parent": {
230156
- "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230157
- "name": "AvatarStackProps"
230158
- },
230159
- "declarations": [
230160
- {
230161
- "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230162
- "name": "AvatarStackProps"
230163
- }
230164
- ],
230165
- "required": false,
230166
- "type": {
230167
- "name": "(() => void)"
230168
- }
230169
- },
230170
- "size": {
230171
- "defaultValue": {
230172
- "value": "\"m\""
230173
- },
230174
- "description": "The size of the avatars inside the stack.",
230175
- "name": "size",
230176
- "parent": {
230177
- "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230178
- "name": "AvatarStackProps"
230179
- },
230180
- "declarations": [
230181
- {
230182
- "fileName": "src/components/AvatarStack/AvatarStack.tsx",
230183
- "name": "AvatarStackProps"
230184
- }
230185
- ],
230186
- "required": false,
230187
- "type": {
230188
- "name": "\"s\" | \"xs\" | \"m\" | \"l\""
230189
- }
230190
- },
230191
- "className": {
230192
- "defaultValue": null,
230193
- "description": "The elements class name.",
230194
- "name": "className",
230195
- "parent": {
230196
- "fileName": "components/src/lib/types/props.ts",
230197
- "name": "PropsWithClassName"
230198
- },
230199
- "declarations": [
230200
- {
230201
- "fileName": "components/src/lib/types/props.ts",
230202
- "name": "PropsWithClassName"
230203
- }
230204
- ],
230205
- "required": false,
230206
- "type": {
230207
- "name": "string"
230208
- }
230209
- },
230210
- "children": {
230211
- "defaultValue": null,
230212
- "description": "",
230213
- "name": "children",
230214
- "declarations": [
230215
- {
230216
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
230217
- "name": "TypeLiteral"
230218
- }
230219
- ],
230220
- "required": false,
230221
- "type": {
230222
- "name": "ReactNode"
230223
- }
230224
- }
230225
- }
230226
- },
230227
230390
  {
230228
230391
  "tags": {
230229
230392
  "flr-generate": "all"
@@ -230726,146 +230889,6 @@
230726
230889
  }
230727
230890
  }
230728
230891
  },
230729
- {
230730
- "tags": {
230731
- "flr-generate": "all"
230732
- },
230733
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/AlertText/AlertText.tsx",
230734
- "description": "",
230735
- "displayName": "AlertText",
230736
- "methods": [],
230737
- "props": {
230738
- "status": {
230739
- "defaultValue": null,
230740
- "description": "",
230741
- "name": "status",
230742
- "parent": {
230743
- "fileName": "components/src/components/AlertText/AlertText.tsx",
230744
- "name": "AlertTextProps"
230745
- },
230746
- "declarations": [
230747
- {
230748
- "fileName": "components/src/components/AlertText/AlertText.tsx",
230749
- "name": "AlertTextProps"
230750
- }
230751
- ],
230752
- "required": false,
230753
- "type": {
230754
- "name": "Status | \"unavailable\""
230755
- }
230756
- },
230757
- "className": {
230758
- "defaultValue": null,
230759
- "description": "The elements class name.",
230760
- "name": "className",
230761
- "parent": {
230762
- "fileName": "components/src/lib/types/props.ts",
230763
- "name": "PropsWithClassName"
230764
- },
230765
- "declarations": [
230766
- {
230767
- "fileName": "components/src/lib/types/props.ts",
230768
- "name": "PropsWithClassName"
230769
- }
230770
- ],
230771
- "required": false,
230772
- "type": {
230773
- "name": "string"
230774
- }
230775
- },
230776
- "children": {
230777
- "defaultValue": null,
230778
- "description": "",
230779
- "name": "children",
230780
- "declarations": [
230781
- {
230782
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
230783
- "name": "TypeLiteral"
230784
- }
230785
- ],
230786
- "required": false,
230787
- "type": {
230788
- "name": "ReactNode"
230789
- }
230790
- },
230791
- "wrapWith": {
230792
- "defaultValue": null,
230793
- "description": "",
230794
- "name": "wrapWith",
230795
- "parent": {
230796
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
230797
- "name": "FlowComponentProps"
230798
- },
230799
- "declarations": [
230800
- {
230801
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
230802
- "name": "FlowComponentProps"
230803
- }
230804
- ],
230805
- "required": false,
230806
- "type": {
230807
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
230808
- }
230809
- },
230810
- "tunnelId": {
230811
- "defaultValue": null,
230812
- "description": "@internal",
230813
- "name": "tunnelId",
230814
- "parent": {
230815
- "fileName": "components/src/lib/types/props.ts",
230816
- "name": "PropsWithTunnel"
230817
- },
230818
- "declarations": [
230819
- {
230820
- "fileName": "components/src/lib/types/props.ts",
230821
- "name": "PropsWithTunnel"
230822
- }
230823
- ],
230824
- "required": false,
230825
- "type": {
230826
- "name": "string | null"
230827
- }
230828
- },
230829
- "ref": {
230830
- "defaultValue": null,
230831
- "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}",
230832
- "name": "ref",
230833
- "parent": {
230834
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
230835
- "name": "RefAttributes"
230836
- },
230837
- "declarations": [
230838
- {
230839
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
230840
- "name": "RefAttributes"
230841
- }
230842
- ],
230843
- "required": false,
230844
- "type": {
230845
- "name": "Ref<HTMLSpanElement>"
230846
- }
230847
- },
230848
- "key": {
230849
- "defaultValue": null,
230850
- "description": "",
230851
- "name": "key",
230852
- "parent": {
230853
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
230854
- "name": "Attributes"
230855
- },
230856
- "declarations": [
230857
- {
230858
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
230859
- "name": "Attributes"
230860
- }
230861
- ],
230862
- "required": false,
230863
- "type": {
230864
- "name": "Key | null"
230865
- }
230866
- }
230867
- }
230868
- },
230869
230892
  {
230870
230893
  "tags": {
230871
230894
  "flr-generate": "all"
@@ -240208,6 +240231,146 @@
240208
240231
  }
240209
240232
  }
240210
240233
  },
240234
+ {
240235
+ "tags": {
240236
+ "flr-generate": "all"
240237
+ },
240238
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/AlertText/AlertText.tsx",
240239
+ "description": "",
240240
+ "displayName": "AlertText",
240241
+ "methods": [],
240242
+ "props": {
240243
+ "status": {
240244
+ "defaultValue": null,
240245
+ "description": "",
240246
+ "name": "status",
240247
+ "parent": {
240248
+ "fileName": "components/src/components/AlertText/AlertText.tsx",
240249
+ "name": "AlertTextProps"
240250
+ },
240251
+ "declarations": [
240252
+ {
240253
+ "fileName": "components/src/components/AlertText/AlertText.tsx",
240254
+ "name": "AlertTextProps"
240255
+ }
240256
+ ],
240257
+ "required": false,
240258
+ "type": {
240259
+ "name": "Status | \"unavailable\""
240260
+ }
240261
+ },
240262
+ "className": {
240263
+ "defaultValue": null,
240264
+ "description": "The elements class name.",
240265
+ "name": "className",
240266
+ "parent": {
240267
+ "fileName": "components/src/lib/types/props.ts",
240268
+ "name": "PropsWithClassName"
240269
+ },
240270
+ "declarations": [
240271
+ {
240272
+ "fileName": "components/src/lib/types/props.ts",
240273
+ "name": "PropsWithClassName"
240274
+ }
240275
+ ],
240276
+ "required": false,
240277
+ "type": {
240278
+ "name": "string"
240279
+ }
240280
+ },
240281
+ "children": {
240282
+ "defaultValue": null,
240283
+ "description": "",
240284
+ "name": "children",
240285
+ "declarations": [
240286
+ {
240287
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
240288
+ "name": "TypeLiteral"
240289
+ }
240290
+ ],
240291
+ "required": false,
240292
+ "type": {
240293
+ "name": "ReactNode"
240294
+ }
240295
+ },
240296
+ "wrapWith": {
240297
+ "defaultValue": null,
240298
+ "description": "",
240299
+ "name": "wrapWith",
240300
+ "parent": {
240301
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
240302
+ "name": "FlowComponentProps"
240303
+ },
240304
+ "declarations": [
240305
+ {
240306
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
240307
+ "name": "FlowComponentProps"
240308
+ }
240309
+ ],
240310
+ "required": false,
240311
+ "type": {
240312
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
240313
+ }
240314
+ },
240315
+ "tunnelId": {
240316
+ "defaultValue": null,
240317
+ "description": "@internal",
240318
+ "name": "tunnelId",
240319
+ "parent": {
240320
+ "fileName": "components/src/lib/types/props.ts",
240321
+ "name": "PropsWithTunnel"
240322
+ },
240323
+ "declarations": [
240324
+ {
240325
+ "fileName": "components/src/lib/types/props.ts",
240326
+ "name": "PropsWithTunnel"
240327
+ }
240328
+ ],
240329
+ "required": false,
240330
+ "type": {
240331
+ "name": "string | null"
240332
+ }
240333
+ },
240334
+ "ref": {
240335
+ "defaultValue": null,
240336
+ "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}",
240337
+ "name": "ref",
240338
+ "parent": {
240339
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
240340
+ "name": "RefAttributes"
240341
+ },
240342
+ "declarations": [
240343
+ {
240344
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
240345
+ "name": "RefAttributes"
240346
+ }
240347
+ ],
240348
+ "required": false,
240349
+ "type": {
240350
+ "name": "Ref<HTMLSpanElement>"
240351
+ }
240352
+ },
240353
+ "key": {
240354
+ "defaultValue": null,
240355
+ "description": "",
240356
+ "name": "key",
240357
+ "parent": {
240358
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
240359
+ "name": "Attributes"
240360
+ },
240361
+ "declarations": [
240362
+ {
240363
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
240364
+ "name": "Attributes"
240365
+ }
240366
+ ],
240367
+ "required": false,
240368
+ "type": {
240369
+ "name": "Key | null"
240370
+ }
240371
+ }
240372
+ }
240373
+ },
240211
240374
  {
240212
240375
  "tags": {
240213
240376
  "flr-generate": "all"
@@ -272408,9 +272571,9 @@
272408
272571
  },
272409
272572
  {
272410
272573
  "tags": {},
272411
- "filePath": "src/integrations/react-hook-form/components/SubmitButton/SubmitButton.tsx",
272574
+ "filePath": "src/integrations/react-hook-form/components/ResetButton/ResetButton.tsx",
272412
272575
  "description": "",
272413
- "displayName": "SubmitButton",
272576
+ "displayName": "ResetButton",
272414
272577
  "methods": [],
272415
272578
  "props": {
272416
272579
  "slot": {
@@ -274759,33 +274922,14 @@
274759
274922
  "type": {
274760
274923
  "name": "Key | null"
274761
274924
  }
274762
- },
274763
- "showFeedback": {
274764
- "defaultValue": null,
274765
- "description": "",
274766
- "name": "showFeedback",
274767
- "parent": {
274768
- "fileName": "components/src/components/Action/types.ts",
274769
- "name": "ActionProps"
274770
- },
274771
- "declarations": [
274772
- {
274773
- "fileName": "components/src/components/Action/types.ts",
274774
- "name": "ActionProps"
274775
- }
274776
- ],
274777
- "required": false,
274778
- "type": {
274779
- "name": "boolean"
274780
- }
274781
274925
  }
274782
274926
  }
274783
274927
  },
274784
274928
  {
274785
274929
  "tags": {},
274786
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/ResetButton/ResetButton.tsx",
274930
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/SubmitButton/SubmitButton.tsx",
274787
274931
  "description": "",
274788
- "displayName": "ResetButton",
274932
+ "displayName": "SubmitButton",
274789
274933
  "methods": [],
274790
274934
  "props": {
274791
274935
  "slot": {
@@ -277134,6 +277278,25 @@
277134
277278
  "type": {
277135
277279
  "name": "Key | null"
277136
277280
  }
277281
+ },
277282
+ "showFeedback": {
277283
+ "defaultValue": null,
277284
+ "description": "",
277285
+ "name": "showFeedback",
277286
+ "parent": {
277287
+ "fileName": "components/src/components/Action/types.ts",
277288
+ "name": "ActionProps"
277289
+ },
277290
+ "declarations": [
277291
+ {
277292
+ "fileName": "components/src/components/Action/types.ts",
277293
+ "name": "ActionProps"
277294
+ }
277295
+ ],
277296
+ "required": false,
277297
+ "type": {
277298
+ "name": "boolean"
277299
+ }
277137
277300
  }
277138
277301
  }
277139
277302
  },
@@ -277188,172 +277351,6 @@
277188
277351
  "methods": [],
277189
277352
  "props": {}
277190
277353
  },
277191
- {
277192
- "tags": {},
277193
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277194
- "description": "",
277195
- "displayName": "FormContext",
277196
- "methods": [],
277197
- "props": {
277198
- "value": {
277199
- "defaultValue": null,
277200
- "description": "",
277201
- "name": "value",
277202
- "parent": {
277203
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277204
- "name": "ProviderProps"
277205
- },
277206
- "declarations": [
277207
- {
277208
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277209
- "name": "ProviderProps"
277210
- }
277211
- ],
277212
- "required": true,
277213
- "type": {
277214
- "name": "FormContext<FieldValues> | undefined"
277215
- }
277216
- },
277217
- "children": {
277218
- "defaultValue": null,
277219
- "description": "",
277220
- "name": "children",
277221
- "parent": {
277222
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277223
- "name": "DOMAttributes"
277224
- },
277225
- "declarations": [
277226
- {
277227
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277228
- "name": "DOMAttributes"
277229
- }
277230
- ],
277231
- "required": false,
277232
- "type": {
277233
- "name": "ReactNode"
277234
- }
277235
- }
277236
- }
277237
- },
277238
- {
277239
- "tags": {},
277240
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277241
- "description": "",
277242
- "displayName": "FormContextProvider",
277243
- "methods": [],
277244
- "props": {
277245
- "form": {
277246
- "defaultValue": null,
277247
- "description": "",
277248
- "name": "form",
277249
- "parent": {
277250
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277251
- "name": "FormContextProviderProps"
277252
- },
277253
- "declarations": [
277254
- {
277255
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277256
- "name": "FormContextProviderProps"
277257
- }
277258
- ],
277259
- "required": true,
277260
- "type": {
277261
- "name": "UseFormReturn"
277262
- }
277263
- },
277264
- "id": {
277265
- "defaultValue": null,
277266
- "description": "",
277267
- "name": "id",
277268
- "parent": {
277269
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277270
- "name": "FormContextProviderProps"
277271
- },
277272
- "declarations": [
277273
- {
277274
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277275
- "name": "FormContextProviderProps"
277276
- }
277277
- ],
277278
- "required": true,
277279
- "type": {
277280
- "name": "string"
277281
- }
277282
- },
277283
- "isReadOnly": {
277284
- "defaultValue": null,
277285
- "description": "",
277286
- "name": "isReadOnly",
277287
- "parent": {
277288
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277289
- "name": "FormContextProviderProps"
277290
- },
277291
- "declarations": [
277292
- {
277293
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277294
- "name": "FormContextProviderProps"
277295
- }
277296
- ],
277297
- "required": false,
277298
- "type": {
277299
- "name": "boolean"
277300
- }
277301
- },
277302
- "onAfterSuccessFeedback": {
277303
- "defaultValue": null,
277304
- "description": "",
277305
- "name": "onAfterSuccessFeedback",
277306
- "parent": {
277307
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277308
- "name": "FormContextProviderProps"
277309
- },
277310
- "declarations": [
277311
- {
277312
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277313
- "name": "FormContextProviderProps"
277314
- }
277315
- ],
277316
- "required": false,
277317
- "type": {
277318
- "name": "AfterFormSubmitCallback"
277319
- }
277320
- },
277321
- "rootErrorController": {
277322
- "defaultValue": null,
277323
- "description": "",
277324
- "name": "rootErrorController",
277325
- "parent": {
277326
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277327
- "name": "FormContextProviderProps"
277328
- },
277329
- "declarations": [
277330
- {
277331
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277332
- "name": "FormContextProviderProps"
277333
- }
277334
- ],
277335
- "required": true,
277336
- "type": {
277337
- "name": "FormRootErrorController"
277338
- }
277339
- },
277340
- "children": {
277341
- "defaultValue": null,
277342
- "description": "",
277343
- "name": "children",
277344
- "declarations": [
277345
- {
277346
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277347
- "name": "TypeLiteral"
277348
- }
277349
- ],
277350
- "required": false,
277351
- "type": {
277352
- "name": "ReactNode"
277353
- }
277354
- }
277355
- }
277356
- },
277357
277354
  {
277358
277355
  "tags": {},
277359
277356
  "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormAction/FormSubmitAction.tsx",
@@ -277521,6 +277518,172 @@
277521
277518
  }
277522
277519
  }
277523
277520
  },
277521
+ {
277522
+ "tags": {},
277523
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277524
+ "description": "",
277525
+ "displayName": "FormContext",
277526
+ "methods": [],
277527
+ "props": {
277528
+ "value": {
277529
+ "defaultValue": null,
277530
+ "description": "",
277531
+ "name": "value",
277532
+ "parent": {
277533
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277534
+ "name": "ProviderProps"
277535
+ },
277536
+ "declarations": [
277537
+ {
277538
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277539
+ "name": "ProviderProps"
277540
+ }
277541
+ ],
277542
+ "required": true,
277543
+ "type": {
277544
+ "name": "FormContext<FieldValues> | undefined"
277545
+ }
277546
+ },
277547
+ "children": {
277548
+ "defaultValue": null,
277549
+ "description": "",
277550
+ "name": "children",
277551
+ "parent": {
277552
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277553
+ "name": "DOMAttributes"
277554
+ },
277555
+ "declarations": [
277556
+ {
277557
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277558
+ "name": "DOMAttributes"
277559
+ }
277560
+ ],
277561
+ "required": false,
277562
+ "type": {
277563
+ "name": "ReactNode"
277564
+ }
277565
+ }
277566
+ }
277567
+ },
277568
+ {
277569
+ "tags": {},
277570
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277571
+ "description": "",
277572
+ "displayName": "FormContextProvider",
277573
+ "methods": [],
277574
+ "props": {
277575
+ "form": {
277576
+ "defaultValue": null,
277577
+ "description": "",
277578
+ "name": "form",
277579
+ "parent": {
277580
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277581
+ "name": "FormContextProviderProps"
277582
+ },
277583
+ "declarations": [
277584
+ {
277585
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277586
+ "name": "FormContextProviderProps"
277587
+ }
277588
+ ],
277589
+ "required": true,
277590
+ "type": {
277591
+ "name": "UseFormReturn"
277592
+ }
277593
+ },
277594
+ "id": {
277595
+ "defaultValue": null,
277596
+ "description": "",
277597
+ "name": "id",
277598
+ "parent": {
277599
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277600
+ "name": "FormContextProviderProps"
277601
+ },
277602
+ "declarations": [
277603
+ {
277604
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277605
+ "name": "FormContextProviderProps"
277606
+ }
277607
+ ],
277608
+ "required": true,
277609
+ "type": {
277610
+ "name": "string"
277611
+ }
277612
+ },
277613
+ "isReadOnly": {
277614
+ "defaultValue": null,
277615
+ "description": "",
277616
+ "name": "isReadOnly",
277617
+ "parent": {
277618
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277619
+ "name": "FormContextProviderProps"
277620
+ },
277621
+ "declarations": [
277622
+ {
277623
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277624
+ "name": "FormContextProviderProps"
277625
+ }
277626
+ ],
277627
+ "required": false,
277628
+ "type": {
277629
+ "name": "boolean"
277630
+ }
277631
+ },
277632
+ "onAfterSuccessFeedback": {
277633
+ "defaultValue": null,
277634
+ "description": "",
277635
+ "name": "onAfterSuccessFeedback",
277636
+ "parent": {
277637
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277638
+ "name": "FormContextProviderProps"
277639
+ },
277640
+ "declarations": [
277641
+ {
277642
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277643
+ "name": "FormContextProviderProps"
277644
+ }
277645
+ ],
277646
+ "required": false,
277647
+ "type": {
277648
+ "name": "AfterFormSubmitCallback"
277649
+ }
277650
+ },
277651
+ "rootErrorController": {
277652
+ "defaultValue": null,
277653
+ "description": "",
277654
+ "name": "rootErrorController",
277655
+ "parent": {
277656
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277657
+ "name": "FormContextProviderProps"
277658
+ },
277659
+ "declarations": [
277660
+ {
277661
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277662
+ "name": "FormContextProviderProps"
277663
+ }
277664
+ ],
277665
+ "required": true,
277666
+ "type": {
277667
+ "name": "FormRootErrorController"
277668
+ }
277669
+ },
277670
+ "children": {
277671
+ "defaultValue": null,
277672
+ "description": "",
277673
+ "name": "children",
277674
+ "declarations": [
277675
+ {
277676
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277677
+ "name": "TypeLiteral"
277678
+ }
277679
+ ],
277680
+ "required": false,
277681
+ "type": {
277682
+ "name": "ReactNode"
277683
+ }
277684
+ }
277685
+ }
277686
+ },
277524
277687
  {
277525
277688
  "tags": {},
277526
277689
  "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/Form/Form.tsx",
@@ -304591,9 +304754,9 @@
304591
304754
  "tags": {
304592
304755
  "flr-generate": "all"
304593
304756
  },
304594
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/Radio/Radio.tsx",
304757
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/RadioButton/RadioButton.tsx",
304595
304758
  "description": "",
304596
- "displayName": "Radio",
304759
+ "displayName": "RadioButton",
304597
304760
  "methods": [],
304598
304761
  "props": {
304599
304762
  "className": {
@@ -306481,9 +306644,9 @@
306481
306644
  "tags": {
306482
306645
  "flr-generate": "all"
306483
306646
  },
306484
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/RadioButton/RadioButton.tsx",
306647
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/Radio/Radio.tsx",
306485
306648
  "description": "",
306486
- "displayName": "RadioButton",
306649
+ "displayName": "Radio",
306487
306650
  "methods": [],
306488
306651
  "props": {
306489
306652
  "className": {
@@ -308761,67 +308924,71 @@
308761
308924
  }
308762
308925
  },
308763
308926
  {
308764
- "tags": {},
308765
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308927
+ "tags": {
308928
+ "internal": ""
308929
+ },
308930
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
308766
308931
  "description": "",
308767
- "displayName": "ValidationResultButton",
308932
+ "displayName": "TogglePasswordVisibilityButton",
308768
308933
  "methods": [],
308769
308934
  "props": {
308770
- "policyValidationResult": {
308771
- "defaultValue": null,
308935
+ "isDisabled": {
308936
+ "defaultValue": {
308937
+ "value": "false"
308938
+ },
308772
308939
  "description": "",
308773
- "name": "policyValidationResult",
308940
+ "name": "isDisabled",
308774
308941
  "parent": {
308775
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308942
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
308776
308943
  "name": "Props"
308777
308944
  },
308778
308945
  "declarations": [
308779
308946
  {
308780
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308947
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
308781
308948
  "name": "Props"
308782
308949
  }
308783
308950
  ],
308784
308951
  "required": false,
308785
308952
  "type": {
308786
- "name": "ResolvedPolicyValidationResult"
308953
+ "name": "boolean"
308787
308954
  }
308788
308955
  },
308789
- "isDisabled": {
308956
+ "isVisible": {
308790
308957
  "defaultValue": null,
308791
308958
  "description": "",
308792
- "name": "isDisabled",
308959
+ "name": "isVisible",
308793
308960
  "parent": {
308794
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308961
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
308795
308962
  "name": "Props"
308796
308963
  },
308797
308964
  "declarations": [
308798
308965
  {
308799
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308966
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
308800
308967
  "name": "Props"
308801
308968
  }
308802
308969
  ],
308803
- "required": false,
308970
+ "required": true,
308804
308971
  "type": {
308805
308972
  "name": "boolean"
308806
308973
  }
308807
308974
  },
308808
- "isEmptyValue": {
308975
+ "onPress": {
308809
308976
  "defaultValue": null,
308810
308977
  "description": "",
308811
- "name": "isEmptyValue",
308978
+ "name": "onPress",
308812
308979
  "parent": {
308813
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308980
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
308814
308981
  "name": "Props"
308815
308982
  },
308816
308983
  "declarations": [
308817
308984
  {
308818
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308985
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
308819
308986
  "name": "Props"
308820
308987
  }
308821
308988
  ],
308822
308989
  "required": true,
308823
308990
  "type": {
308824
- "name": "boolean"
308991
+ "name": "ActionFn"
308825
308992
  }
308826
308993
  },
308827
308994
  "className": {
@@ -308846,71 +309013,67 @@
308846
309013
  }
308847
309014
  },
308848
309015
  {
308849
- "tags": {
308850
- "internal": ""
308851
- },
308852
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
309016
+ "tags": {},
309017
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308853
309018
  "description": "",
308854
- "displayName": "TogglePasswordVisibilityButton",
309019
+ "displayName": "ValidationResultButton",
308855
309020
  "methods": [],
308856
309021
  "props": {
308857
- "isDisabled": {
308858
- "defaultValue": {
308859
- "value": "false"
308860
- },
309022
+ "policyValidationResult": {
309023
+ "defaultValue": null,
308861
309024
  "description": "",
308862
- "name": "isDisabled",
309025
+ "name": "policyValidationResult",
308863
309026
  "parent": {
308864
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
309027
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308865
309028
  "name": "Props"
308866
309029
  },
308867
309030
  "declarations": [
308868
309031
  {
308869
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
309032
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308870
309033
  "name": "Props"
308871
309034
  }
308872
309035
  ],
308873
309036
  "required": false,
308874
309037
  "type": {
308875
- "name": "boolean"
309038
+ "name": "ResolvedPolicyValidationResult"
308876
309039
  }
308877
309040
  },
308878
- "isVisible": {
309041
+ "isDisabled": {
308879
309042
  "defaultValue": null,
308880
309043
  "description": "",
308881
- "name": "isVisible",
309044
+ "name": "isDisabled",
308882
309045
  "parent": {
308883
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
309046
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308884
309047
  "name": "Props"
308885
309048
  },
308886
309049
  "declarations": [
308887
309050
  {
308888
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
309051
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308889
309052
  "name": "Props"
308890
309053
  }
308891
309054
  ],
308892
- "required": true,
309055
+ "required": false,
308893
309056
  "type": {
308894
309057
  "name": "boolean"
308895
309058
  }
308896
309059
  },
308897
- "onPress": {
309060
+ "isEmptyValue": {
308898
309061
  "defaultValue": null,
308899
309062
  "description": "",
308900
- "name": "onPress",
309063
+ "name": "isEmptyValue",
308901
309064
  "parent": {
308902
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
309065
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308903
309066
  "name": "Props"
308904
309067
  },
308905
309068
  "declarations": [
308906
309069
  {
308907
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
309070
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
308908
309071
  "name": "Props"
308909
309072
  }
308910
309073
  ],
308911
309074
  "required": true,
308912
309075
  "type": {
308913
- "name": "ActionFn"
309076
+ "name": "boolean"
308914
309077
  }
308915
309078
  },
308916
309079
  "className": {
@@ -317828,56 +317991,56 @@
317828
317991
  },
317829
317992
  {
317830
317993
  "tags": {},
317831
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileCard/components/FileSizeText/FileSizeText.tsx",
317994
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
317832
317995
  "description": "",
317833
- "displayName": "FileSizeText",
317996
+ "displayName": "DeleteButton",
317834
317997
  "methods": [],
317835
317998
  "props": {
317836
- "sizeInBytes": {
317999
+ "onDelete": {
317837
318000
  "defaultValue": null,
317838
318001
  "description": "",
317839
- "name": "sizeInBytes",
318002
+ "name": "onDelete",
317840
318003
  "parent": {
317841
- "fileName": "components/src/components/FileCard/components/FileSizeText/FileSizeText.tsx",
318004
+ "fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
317842
318005
  "name": "Props"
317843
318006
  },
317844
318007
  "declarations": [
317845
318008
  {
317846
- "fileName": "components/src/components/FileCard/components/FileSizeText/FileSizeText.tsx",
318009
+ "fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
317847
318010
  "name": "Props"
317848
318011
  }
317849
318012
  ],
317850
318013
  "required": true,
317851
318014
  "type": {
317852
- "name": "number"
318015
+ "name": "() => void"
317853
318016
  }
317854
318017
  }
317855
318018
  }
317856
318019
  },
317857
318020
  {
317858
318021
  "tags": {},
317859
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
318022
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileCard/components/FileSizeText/FileSizeText.tsx",
317860
318023
  "description": "",
317861
- "displayName": "DeleteButton",
318024
+ "displayName": "FileSizeText",
317862
318025
  "methods": [],
317863
318026
  "props": {
317864
- "onDelete": {
318027
+ "sizeInBytes": {
317865
318028
  "defaultValue": null,
317866
318029
  "description": "",
317867
- "name": "onDelete",
318030
+ "name": "sizeInBytes",
317868
318031
  "parent": {
317869
- "fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
318032
+ "fileName": "components/src/components/FileCard/components/FileSizeText/FileSizeText.tsx",
317870
318033
  "name": "Props"
317871
318034
  },
317872
318035
  "declarations": [
317873
318036
  {
317874
- "fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
318037
+ "fileName": "components/src/components/FileCard/components/FileSizeText/FileSizeText.tsx",
317875
318038
  "name": "Props"
317876
318039
  }
317877
318040
  ],
317878
318041
  "required": true,
317879
318042
  "type": {
317880
- "name": "() => void"
318043
+ "name": "number"
317881
318044
  }
317882
318045
  }
317883
318046
  }
@@ -318165,159 +318328,314 @@
318165
318328
  "name": "Key | null"
318166
318329
  }
318167
318330
  },
318168
- "children": {
318169
- "defaultValue": null,
318170
- "description": "",
318171
- "name": "children",
318172
- "declarations": [
318173
- {
318174
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318175
- "name": "TypeLiteral"
318176
- }
318177
- ],
318178
- "required": false,
318179
- "type": {
318180
- "name": "ReactNode"
318181
- }
318182
- }
318183
- }
318184
- },
318185
- {
318186
- "tags": {
318187
- "flr-generate": "all"
318188
- },
318189
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/ContextMenu/components/ContextMenuTrigger/ContextMenuTrigger.tsx",
318190
- "description": "",
318191
- "displayName": "ContextMenuTrigger",
318192
- "methods": [],
318193
- "props": {
318194
- "isDefaultOpen": {
318195
- "defaultValue": null,
318196
- "description": "Whether the overlay should be open initially.",
318197
- "name": "isDefaultOpen",
318198
- "parent": {
318199
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318200
- "name": "OverlayTriggerProps"
318201
- },
318202
- "declarations": [
318203
- {
318204
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318205
- "name": "OverlayTriggerProps"
318206
- }
318207
- ],
318208
- "required": false,
318209
- "type": {
318210
- "name": "boolean"
318211
- }
318212
- },
318213
- "controller": {
318214
- "defaultValue": null,
318215
- "description": "A controller to control the state of the overlay.",
318216
- "name": "controller",
318217
- "parent": {
318218
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318219
- "name": "OverlayTriggerProps"
318220
- },
318221
- "declarations": [
318222
- {
318223
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318224
- "name": "OverlayTriggerProps"
318225
- }
318226
- ],
318227
- "required": false,
318228
- "type": {
318229
- "name": "OverlayController"
318230
- }
318231
- },
318232
- "wrapWith": {
318233
- "defaultValue": null,
318234
- "description": "",
318235
- "name": "wrapWith",
318236
- "parent": {
318237
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
318238
- "name": "FlowComponentProps"
318239
- },
318240
- "declarations": [
318241
- {
318242
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
318243
- "name": "FlowComponentProps"
318244
- }
318245
- ],
318246
- "required": false,
318247
- "type": {
318248
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
318249
- }
318250
- },
318251
- "tunnelId": {
318252
- "defaultValue": null,
318253
- "description": "@internal",
318254
- "name": "tunnelId",
318255
- "parent": {
318256
- "fileName": "components/src/lib/types/props.ts",
318257
- "name": "PropsWithTunnel"
318258
- },
318259
- "declarations": [
318260
- {
318261
- "fileName": "components/src/lib/types/props.ts",
318262
- "name": "PropsWithTunnel"
318263
- }
318264
- ],
318265
- "required": false,
318266
- "type": {
318267
- "name": "string | null"
318268
- }
318269
- },
318270
- "ref": {
318331
+ "children": {
318332
+ "defaultValue": null,
318333
+ "description": "",
318334
+ "name": "children",
318335
+ "declarations": [
318336
+ {
318337
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318338
+ "name": "TypeLiteral"
318339
+ }
318340
+ ],
318341
+ "required": false,
318342
+ "type": {
318343
+ "name": "ReactNode"
318344
+ }
318345
+ }
318346
+ }
318347
+ },
318348
+ {
318349
+ "tags": {
318350
+ "flr-generate": "all"
318351
+ },
318352
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/ContextMenu/components/ContextMenuTrigger/ContextMenuTrigger.tsx",
318353
+ "description": "",
318354
+ "displayName": "ContextMenuTrigger",
318355
+ "methods": [],
318356
+ "props": {
318357
+ "isDefaultOpen": {
318358
+ "defaultValue": null,
318359
+ "description": "Whether the overlay should be open initially.",
318360
+ "name": "isDefaultOpen",
318361
+ "parent": {
318362
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318363
+ "name": "OverlayTriggerProps"
318364
+ },
318365
+ "declarations": [
318366
+ {
318367
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318368
+ "name": "OverlayTriggerProps"
318369
+ }
318370
+ ],
318371
+ "required": false,
318372
+ "type": {
318373
+ "name": "boolean"
318374
+ }
318375
+ },
318376
+ "controller": {
318377
+ "defaultValue": null,
318378
+ "description": "A controller to control the state of the overlay.",
318379
+ "name": "controller",
318380
+ "parent": {
318381
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318382
+ "name": "OverlayTriggerProps"
318383
+ },
318384
+ "declarations": [
318385
+ {
318386
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
318387
+ "name": "OverlayTriggerProps"
318388
+ }
318389
+ ],
318390
+ "required": false,
318391
+ "type": {
318392
+ "name": "OverlayController"
318393
+ }
318394
+ },
318395
+ "wrapWith": {
318396
+ "defaultValue": null,
318397
+ "description": "",
318398
+ "name": "wrapWith",
318399
+ "parent": {
318400
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
318401
+ "name": "FlowComponentProps"
318402
+ },
318403
+ "declarations": [
318404
+ {
318405
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
318406
+ "name": "FlowComponentProps"
318407
+ }
318408
+ ],
318409
+ "required": false,
318410
+ "type": {
318411
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
318412
+ }
318413
+ },
318414
+ "tunnelId": {
318415
+ "defaultValue": null,
318416
+ "description": "@internal",
318417
+ "name": "tunnelId",
318418
+ "parent": {
318419
+ "fileName": "components/src/lib/types/props.ts",
318420
+ "name": "PropsWithTunnel"
318421
+ },
318422
+ "declarations": [
318423
+ {
318424
+ "fileName": "components/src/lib/types/props.ts",
318425
+ "name": "PropsWithTunnel"
318426
+ }
318427
+ ],
318428
+ "required": false,
318429
+ "type": {
318430
+ "name": "string | null"
318431
+ }
318432
+ },
318433
+ "ref": {
318434
+ "defaultValue": null,
318435
+ "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}",
318436
+ "name": "ref",
318437
+ "parent": {
318438
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318439
+ "name": "RefAttributes"
318440
+ },
318441
+ "declarations": [
318442
+ {
318443
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318444
+ "name": "RefAttributes"
318445
+ }
318446
+ ],
318447
+ "required": false,
318448
+ "type": {
318449
+ "name": "Ref<HTMLSpanElement>"
318450
+ }
318451
+ },
318452
+ "key": {
318453
+ "defaultValue": null,
318454
+ "description": "",
318455
+ "name": "key",
318456
+ "parent": {
318457
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318458
+ "name": "Attributes"
318459
+ },
318460
+ "declarations": [
318461
+ {
318462
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318463
+ "name": "Attributes"
318464
+ }
318465
+ ],
318466
+ "required": false,
318467
+ "type": {
318468
+ "name": "Key | null"
318469
+ }
318470
+ },
318471
+ "children": {
318472
+ "defaultValue": null,
318473
+ "description": "",
318474
+ "name": "children",
318475
+ "declarations": [
318476
+ {
318477
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318478
+ "name": "TypeLiteral"
318479
+ }
318480
+ ],
318481
+ "required": false,
318482
+ "type": {
318483
+ "name": "ReactNode"
318484
+ }
318485
+ }
318486
+ }
318487
+ },
318488
+ {
318489
+ "tags": {
318490
+ "flr-generate": "all"
318491
+ },
318492
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/ContextMenu/components/ContextMenuSection/ContextMenuSection.tsx",
318493
+ "description": "",
318494
+ "displayName": "ContextMenuSection",
318495
+ "methods": [],
318496
+ "props": {
318497
+ "children": {
318498
+ "defaultValue": null,
318499
+ "description": "",
318500
+ "name": "children",
318501
+ "declarations": [
318502
+ {
318503
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318504
+ "name": "TypeLiteral"
318505
+ }
318506
+ ],
318507
+ "required": false,
318508
+ "type": {
318509
+ "name": "ReactNode"
318510
+ }
318511
+ },
318512
+ "wrapWith": {
318513
+ "defaultValue": null,
318514
+ "description": "",
318515
+ "name": "wrapWith",
318516
+ "parent": {
318517
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
318518
+ "name": "FlowComponentProps"
318519
+ },
318520
+ "declarations": [
318521
+ {
318522
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
318523
+ "name": "FlowComponentProps"
318524
+ }
318525
+ ],
318526
+ "required": false,
318527
+ "type": {
318528
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
318529
+ }
318530
+ },
318531
+ "tunnelId": {
318532
+ "defaultValue": null,
318533
+ "description": "@internal",
318534
+ "name": "tunnelId",
318535
+ "parent": {
318536
+ "fileName": "components/src/lib/types/props.ts",
318537
+ "name": "PropsWithTunnel"
318538
+ },
318539
+ "declarations": [
318540
+ {
318541
+ "fileName": "components/src/lib/types/props.ts",
318542
+ "name": "PropsWithTunnel"
318543
+ }
318544
+ ],
318545
+ "required": false,
318546
+ "type": {
318547
+ "name": "string | null"
318548
+ }
318549
+ },
318550
+ "ref": {
318551
+ "defaultValue": null,
318552
+ "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}",
318553
+ "name": "ref",
318554
+ "parent": {
318555
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318556
+ "name": "RefAttributes"
318557
+ },
318558
+ "declarations": [
318559
+ {
318560
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318561
+ "name": "RefAttributes"
318562
+ }
318563
+ ],
318564
+ "required": false,
318565
+ "type": {
318566
+ "name": "Ref<HTMLSpanElement>"
318567
+ }
318568
+ },
318569
+ "key": {
318570
+ "defaultValue": null,
318571
+ "description": "",
318572
+ "name": "key",
318573
+ "parent": {
318574
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318575
+ "name": "Attributes"
318576
+ },
318577
+ "declarations": [
318578
+ {
318579
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318580
+ "name": "Attributes"
318581
+ }
318582
+ ],
318583
+ "required": false,
318584
+ "type": {
318585
+ "name": "Key | null"
318586
+ }
318587
+ },
318588
+ "selectedKeys": {
318271
318589
  "defaultValue": null,
318272
- "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}",
318273
- "name": "ref",
318590
+ "description": "The currently selected keys in the collection (controlled).",
318591
+ "name": "selectedKeys",
318274
318592
  "parent": {
318275
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318276
- "name": "RefAttributes"
318593
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
318594
+ "name": "MultipleSelection"
318277
318595
  },
318278
318596
  "declarations": [
318279
318597
  {
318280
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318281
- "name": "RefAttributes"
318598
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
318599
+ "name": "MultipleSelection"
318282
318600
  }
318283
318601
  ],
318284
318602
  "required": false,
318285
318603
  "type": {
318286
- "name": "Ref<HTMLSpanElement>"
318604
+ "name": "\"all\" | Iterable<Key>"
318287
318605
  }
318288
318606
  },
318289
- "key": {
318607
+ "defaultSelectedKeys": {
318290
318608
  "defaultValue": null,
318291
- "description": "",
318292
- "name": "key",
318609
+ "description": "The initial selected keys in the collection (uncontrolled).",
318610
+ "name": "defaultSelectedKeys",
318293
318611
  "parent": {
318294
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318295
- "name": "Attributes"
318612
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
318613
+ "name": "MultipleSelection"
318296
318614
  },
318297
318615
  "declarations": [
318298
318616
  {
318299
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318300
- "name": "Attributes"
318617
+ "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
318618
+ "name": "MultipleSelection"
318301
318619
  }
318302
318620
  ],
318303
318621
  "required": false,
318304
318622
  "type": {
318305
- "name": "Key | null"
318623
+ "name": "\"all\" | Iterable<Key>"
318306
318624
  }
318307
318625
  },
318308
- "children": {
318626
+ "selectionMode": {
318309
318627
  "defaultValue": null,
318310
318628
  "description": "",
318311
- "name": "children",
318629
+ "name": "selectionMode",
318312
318630
  "declarations": [
318313
318631
  {
318314
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
318632
+ "fileName": "components/src/components/ContextMenu/components/ContextMenuSection/ContextMenuSection.tsx",
318315
318633
  "name": "TypeLiteral"
318316
318634
  }
318317
318635
  ],
318318
318636
  "required": false,
318319
318637
  "type": {
318320
- "name": "ReactNode"
318638
+ "name": "ContextMenuSelectionMode"
318321
318639
  }
318322
318640
  }
318323
318641
  }
@@ -320123,161 +320441,6 @@
320123
320441
  }
320124
320442
  }
320125
320443
  },
320126
- {
320127
- "tags": {
320128
- "flr-generate": "all"
320129
- },
320130
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/ContextMenu/components/ContextMenuSection/ContextMenuSection.tsx",
320131
- "description": "",
320132
- "displayName": "ContextMenuSection",
320133
- "methods": [],
320134
- "props": {
320135
- "children": {
320136
- "defaultValue": null,
320137
- "description": "",
320138
- "name": "children",
320139
- "declarations": [
320140
- {
320141
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
320142
- "name": "TypeLiteral"
320143
- }
320144
- ],
320145
- "required": false,
320146
- "type": {
320147
- "name": "ReactNode"
320148
- }
320149
- },
320150
- "wrapWith": {
320151
- "defaultValue": null,
320152
- "description": "",
320153
- "name": "wrapWith",
320154
- "parent": {
320155
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
320156
- "name": "FlowComponentProps"
320157
- },
320158
- "declarations": [
320159
- {
320160
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
320161
- "name": "FlowComponentProps"
320162
- }
320163
- ],
320164
- "required": false,
320165
- "type": {
320166
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
320167
- }
320168
- },
320169
- "tunnelId": {
320170
- "defaultValue": null,
320171
- "description": "@internal",
320172
- "name": "tunnelId",
320173
- "parent": {
320174
- "fileName": "components/src/lib/types/props.ts",
320175
- "name": "PropsWithTunnel"
320176
- },
320177
- "declarations": [
320178
- {
320179
- "fileName": "components/src/lib/types/props.ts",
320180
- "name": "PropsWithTunnel"
320181
- }
320182
- ],
320183
- "required": false,
320184
- "type": {
320185
- "name": "string | null"
320186
- }
320187
- },
320188
- "ref": {
320189
- "defaultValue": null,
320190
- "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}",
320191
- "name": "ref",
320192
- "parent": {
320193
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
320194
- "name": "RefAttributes"
320195
- },
320196
- "declarations": [
320197
- {
320198
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
320199
- "name": "RefAttributes"
320200
- }
320201
- ],
320202
- "required": false,
320203
- "type": {
320204
- "name": "Ref<HTMLSpanElement>"
320205
- }
320206
- },
320207
- "key": {
320208
- "defaultValue": null,
320209
- "description": "",
320210
- "name": "key",
320211
- "parent": {
320212
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
320213
- "name": "Attributes"
320214
- },
320215
- "declarations": [
320216
- {
320217
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
320218
- "name": "Attributes"
320219
- }
320220
- ],
320221
- "required": false,
320222
- "type": {
320223
- "name": "Key | null"
320224
- }
320225
- },
320226
- "selectedKeys": {
320227
- "defaultValue": null,
320228
- "description": "The currently selected keys in the collection (controlled).",
320229
- "name": "selectedKeys",
320230
- "parent": {
320231
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
320232
- "name": "MultipleSelection"
320233
- },
320234
- "declarations": [
320235
- {
320236
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
320237
- "name": "MultipleSelection"
320238
- }
320239
- ],
320240
- "required": false,
320241
- "type": {
320242
- "name": "\"all\" | Iterable<Key>"
320243
- }
320244
- },
320245
- "defaultSelectedKeys": {
320246
- "defaultValue": null,
320247
- "description": "The initial selected keys in the collection (uncontrolled).",
320248
- "name": "defaultSelectedKeys",
320249
- "parent": {
320250
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
320251
- "name": "MultipleSelection"
320252
- },
320253
- "declarations": [
320254
- {
320255
- "fileName": "flow/node_modules/.pnpm/@react-types+shared@3.32.1_react@19.2.4/node_modules/@react-types/shared/src/selection.d.ts",
320256
- "name": "MultipleSelection"
320257
- }
320258
- ],
320259
- "required": false,
320260
- "type": {
320261
- "name": "\"all\" | Iterable<Key>"
320262
- }
320263
- },
320264
- "selectionMode": {
320265
- "defaultValue": null,
320266
- "description": "",
320267
- "name": "selectionMode",
320268
- "declarations": [
320269
- {
320270
- "fileName": "components/src/components/ContextMenu/components/ContextMenuSection/ContextMenuSection.tsx",
320271
- "name": "TypeLiteral"
320272
- }
320273
- ],
320274
- "required": false,
320275
- "type": {
320276
- "name": "ContextMenuSelectionMode"
320277
- }
320278
- }
320279
- }
320280
- },
320281
320444
  {
320282
320445
  "tags": {},
320283
320446
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CodeEditor/languages/dotEnv/index.tsx",