@mittwald/flow-react-components 0.2.0-alpha.770 → 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 (51) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/assets/doc-properties.json +678 -515
  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 +2 -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/IntlProvider/IntlProvider.mjs +8 -0
  17. package/dist/js/packages/components/src/components/IntlProvider/IntlProvider.mjs.map +1 -0
  18. package/dist/js/packages/components/src/components/List/model/filter/Filter.mjs +0 -3
  19. package/dist/js/packages/components/src/components/List/model/filter/Filter.mjs.map +1 -1
  20. package/dist/js/packages/components/src/components/Slider/Slider.mjs +28 -21
  21. package/dist/js/packages/components/src/components/Slider/Slider.mjs.map +1 -1
  22. package/dist/js/packages/components/src/components/Slider/Slider.module.scss.mjs +3 -1
  23. package/dist/js/packages/components/src/components/Slider/Slider.module.scss.mjs.map +1 -1
  24. package/dist/js/packages/components/src/lib/hooks/useImageSrc.mjs +29 -0
  25. package/dist/js/packages/components/src/lib/hooks/useImageSrc.mjs.map +1 -0
  26. package/dist/types/components/ImageCropper/ImageCropper.d.ts +19 -0
  27. package/dist/types/components/ImageCropper/ImageCropper.d.ts.map +1 -0
  28. package/dist/types/components/ImageCropper/index.d.ts +3 -0
  29. package/dist/types/components/ImageCropper/index.d.ts.map +1 -0
  30. package/dist/types/components/ImageCropper/lib/getCroppedImageFile.d.ts +3 -0
  31. package/dist/types/components/ImageCropper/lib/getCroppedImageFile.d.ts.map +1 -0
  32. package/dist/types/components/ImageCropper/stories/Default.stories.d.ts +9 -0
  33. package/dist/types/components/ImageCropper/stories/Default.stories.d.ts.map +1 -0
  34. package/dist/types/components/ImageCropper/view.d.ts +8 -0
  35. package/dist/types/components/ImageCropper/view.d.ts.map +1 -0
  36. package/dist/types/components/IntlProvider/IntlProvider.d.ts +3 -0
  37. package/dist/types/components/IntlProvider/IntlProvider.d.ts.map +1 -0
  38. package/dist/types/components/IntlProvider/index.d.ts +2 -0
  39. package/dist/types/components/IntlProvider/index.d.ts.map +1 -0
  40. package/dist/types/components/List/model/filter/Filter.d.ts.map +1 -1
  41. package/dist/types/components/Slider/Slider.d.ts +4 -0
  42. package/dist/types/components/Slider/Slider.d.ts.map +1 -1
  43. package/dist/types/components/Slider/stories/Default.stories.d.ts +1 -1
  44. package/dist/types/components/Slider/stories/Default.stories.d.ts.map +1 -1
  45. package/dist/types/components/public.d.ts +2 -0
  46. package/dist/types/components/public.d.ts.map +1 -1
  47. package/dist/types/lib/hooks/useImageSrc.d.ts +2 -0
  48. package/dist/types/lib/hooks/useImageSrc.d.ts.map +1 -0
  49. package/dist/types/views/ImageCropperView.d.ts +5 -0
  50. package/dist/types/views/ImageCropperView.d.ts.map +1 -0
  51. 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
  },
@@ -277355,6 +277518,172 @@
277355
277518
  }
277356
277519
  }
277357
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
+ },
277358
277687
  {
277359
277688
  "tags": {},
277360
277689
  "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/Form/Form.tsx",
@@ -283689,172 +284018,6 @@
283689
284018
  }
283690
284019
  }
283691
284020
  },
283692
- {
283693
- "tags": {},
283694
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283695
- "description": "",
283696
- "displayName": "FormContext",
283697
- "methods": [],
283698
- "props": {
283699
- "value": {
283700
- "defaultValue": null,
283701
- "description": "",
283702
- "name": "value",
283703
- "parent": {
283704
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283705
- "name": "ProviderProps"
283706
- },
283707
- "declarations": [
283708
- {
283709
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283710
- "name": "ProviderProps"
283711
- }
283712
- ],
283713
- "required": true,
283714
- "type": {
283715
- "name": "FormContext<FieldValues> | undefined"
283716
- }
283717
- },
283718
- "children": {
283719
- "defaultValue": null,
283720
- "description": "",
283721
- "name": "children",
283722
- "parent": {
283723
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283724
- "name": "DOMAttributes"
283725
- },
283726
- "declarations": [
283727
- {
283728
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283729
- "name": "DOMAttributes"
283730
- }
283731
- ],
283732
- "required": false,
283733
- "type": {
283734
- "name": "ReactNode"
283735
- }
283736
- }
283737
- }
283738
- },
283739
- {
283740
- "tags": {},
283741
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283742
- "description": "",
283743
- "displayName": "FormContextProvider",
283744
- "methods": [],
283745
- "props": {
283746
- "form": {
283747
- "defaultValue": null,
283748
- "description": "",
283749
- "name": "form",
283750
- "parent": {
283751
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283752
- "name": "FormContextProviderProps"
283753
- },
283754
- "declarations": [
283755
- {
283756
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283757
- "name": "FormContextProviderProps"
283758
- }
283759
- ],
283760
- "required": true,
283761
- "type": {
283762
- "name": "UseFormReturn"
283763
- }
283764
- },
283765
- "id": {
283766
- "defaultValue": null,
283767
- "description": "",
283768
- "name": "id",
283769
- "parent": {
283770
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283771
- "name": "FormContextProviderProps"
283772
- },
283773
- "declarations": [
283774
- {
283775
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283776
- "name": "FormContextProviderProps"
283777
- }
283778
- ],
283779
- "required": true,
283780
- "type": {
283781
- "name": "string"
283782
- }
283783
- },
283784
- "isReadOnly": {
283785
- "defaultValue": null,
283786
- "description": "",
283787
- "name": "isReadOnly",
283788
- "parent": {
283789
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283790
- "name": "FormContextProviderProps"
283791
- },
283792
- "declarations": [
283793
- {
283794
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283795
- "name": "FormContextProviderProps"
283796
- }
283797
- ],
283798
- "required": false,
283799
- "type": {
283800
- "name": "boolean"
283801
- }
283802
- },
283803
- "onAfterSuccessFeedback": {
283804
- "defaultValue": null,
283805
- "description": "",
283806
- "name": "onAfterSuccessFeedback",
283807
- "parent": {
283808
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283809
- "name": "FormContextProviderProps"
283810
- },
283811
- "declarations": [
283812
- {
283813
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283814
- "name": "FormContextProviderProps"
283815
- }
283816
- ],
283817
- "required": false,
283818
- "type": {
283819
- "name": "AfterFormSubmitCallback"
283820
- }
283821
- },
283822
- "rootErrorController": {
283823
- "defaultValue": null,
283824
- "description": "",
283825
- "name": "rootErrorController",
283826
- "parent": {
283827
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283828
- "name": "FormContextProviderProps"
283829
- },
283830
- "declarations": [
283831
- {
283832
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
283833
- "name": "FormContextProviderProps"
283834
- }
283835
- ],
283836
- "required": true,
283837
- "type": {
283838
- "name": "FormRootErrorController"
283839
- }
283840
- },
283841
- "children": {
283842
- "defaultValue": null,
283843
- "description": "",
283844
- "name": "children",
283845
- "declarations": [
283846
- {
283847
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
283848
- "name": "TypeLiteral"
283849
- }
283850
- ],
283851
- "required": false,
283852
- "type": {
283853
- "name": "ReactNode"
283854
- }
283855
- }
283856
- }
283857
- },
283858
284021
  {
283859
284022
  "tags": {},
283860
284023
  "filePath": "src/integrations/nextjs/components/RouterProvider/RouterProvider.tsx",
@@ -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": {
@@ -314727,6 +314890,14 @@
314727
314890
  }
314728
314891
  }
314729
314892
  },
314893
+ {
314894
+ "tags": {},
314895
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.tsx",
314896
+ "description": "",
314897
+ "displayName": "OffCanvasSuspenseFallback",
314898
+ "methods": [],
314899
+ "props": {}
314900
+ },
314730
314901
  {
314731
314902
  "tags": {},
314732
314903
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
@@ -314865,14 +315036,6 @@
314865
315036
  }
314866
315037
  }
314867
315038
  },
314868
- {
314869
- "tags": {},
314870
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.tsx",
314871
- "description": "",
314872
- "displayName": "OffCanvasSuspenseFallback",
314873
- "methods": [],
314874
- "props": {}
314875
- },
314876
315039
  {
314877
315040
  "tags": {},
314878
315041
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.tsx",
@@ -315228,6 +315391,14 @@
315228
315391
  "methods": [],
315229
315392
  "props": {}
315230
315393
  },
315394
+ {
315395
+ "tags": {},
315396
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/Table.tsx",
315397
+ "description": "",
315398
+ "displayName": "Table",
315399
+ "methods": [],
315400
+ "props": {}
315401
+ },
315231
315402
  {
315232
315403
  "tags": {
315233
315404
  "flr-generate": "all"
@@ -315351,14 +315522,6 @@
315351
315522
  }
315352
315523
  }
315353
315524
  },
315354
- {
315355
- "tags": {},
315356
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/Table.tsx",
315357
- "description": "",
315358
- "displayName": "Table",
315359
- "methods": [],
315360
- "props": {}
315361
- },
315362
315525
  {
315363
315526
  "tags": {},
315364
315527
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/ListItemView/ListItemView.tsx",
@@ -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
  }