@mittwald/flow-react-components 0.2.0-alpha.535 → 0.2.0-alpha.537

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 (23) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/assets/doc-properties.json +802 -630
  3. package/dist/css/all.css +1 -1
  4. package/dist/js/components/src/components/List/components/Items/components/Item/Item.mjs +1 -0
  5. package/dist/js/components/src/components/List/components/Items/components/Item/Item.mjs.map +1 -1
  6. package/dist/js/components/src/components/List/model/item/ItemView.mjs +3 -0
  7. package/dist/js/components/src/components/List/model/item/ItemView.mjs.map +1 -1
  8. package/dist/js/components/src/components/MarkdownEditor/MarkdownEditor.mjs +2 -2
  9. package/dist/js/components/src/components/MarkdownEditor/MarkdownEditor.mjs.map +1 -1
  10. package/dist/js/components/src/components/TextArea/TextArea.mjs +45 -4
  11. package/dist/js/components/src/components/TextArea/TextArea.mjs.map +1 -1
  12. package/dist/js/components/src/components/TextArea/TextArea.module.scss.mjs +8 -2
  13. package/dist/js/components/src/components/TextArea/TextArea.module.scss.mjs.map +1 -1
  14. package/dist/types/components/List/components/Items/components/Item/Item.d.ts.map +1 -1
  15. package/dist/types/components/List/model/item/ItemView.d.ts +3 -1
  16. package/dist/types/components/List/model/item/ItemView.d.ts.map +1 -1
  17. package/dist/types/components/MarkdownEditor/stories/Default.stories.d.ts +4 -0
  18. package/dist/types/components/MarkdownEditor/stories/Default.stories.d.ts.map +1 -1
  19. package/dist/types/components/TextArea/TextArea.d.ts +9 -0
  20. package/dist/types/components/TextArea/TextArea.d.ts.map +1 -1
  21. package/dist/types/components/TextArea/stories/Default.stories.d.ts +4 -0
  22. package/dist/types/components/TextArea/stories/Default.stories.d.ts.map +1 -1
  23. package/package.json +4 -4
@@ -54,7 +54,65 @@
54
54
  "description": "",
55
55
  "displayName": "TunnelEntry",
56
56
  "methods": [],
57
- "props": {}
57
+ "props": {
58
+ "id": {
59
+ "defaultValue": null,
60
+ "description": "",
61
+ "name": "id",
62
+ "parent": {
63
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
64
+ "name": "TunnelEntryProps"
65
+ },
66
+ "declarations": [
67
+ {
68
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
69
+ "name": "TunnelEntryProps"
70
+ }
71
+ ],
72
+ "required": false,
73
+ "type": {
74
+ "name": "string"
75
+ }
76
+ },
77
+ "children": {
78
+ "defaultValue": null,
79
+ "description": "",
80
+ "name": "children",
81
+ "parent": {
82
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
83
+ "name": "TunnelEntryProps"
84
+ },
85
+ "declarations": [
86
+ {
87
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
88
+ "name": "TunnelEntryProps"
89
+ }
90
+ ],
91
+ "required": false,
92
+ "type": {
93
+ "name": "TunnelEntryChildren"
94
+ }
95
+ },
96
+ "staticEntryId": {
97
+ "defaultValue": null,
98
+ "description": "Static entry ID instead of generated ID by `useId`",
99
+ "name": "staticEntryId",
100
+ "parent": {
101
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
102
+ "name": "TunnelEntryProps"
103
+ },
104
+ "declarations": [
105
+ {
106
+ "fileName": "packages/react-tunnel/dist/types/components/TunnelEntry.d.ts",
107
+ "name": "TunnelEntryProps"
108
+ }
109
+ ],
110
+ "required": false,
111
+ "type": {
112
+ "name": "string"
113
+ }
114
+ }
115
+ }
58
116
  },
59
117
  {
60
118
  "tags": {},
@@ -8592,6 +8650,63 @@
8592
8650
  "name": "number"
8593
8651
  }
8594
8652
  },
8653
+ "allowHorizontalResize": {
8654
+ "defaultValue": null,
8655
+ "description": "Allows the user to manually resize the textArea horizontally.",
8656
+ "name": "allowHorizontalResize",
8657
+ "parent": {
8658
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
8659
+ "name": "TextAreaProps"
8660
+ },
8661
+ "declarations": [
8662
+ {
8663
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
8664
+ "name": "TextAreaProps"
8665
+ }
8666
+ ],
8667
+ "required": false,
8668
+ "type": {
8669
+ "name": "boolean"
8670
+ }
8671
+ },
8672
+ "allowVerticalResize": {
8673
+ "defaultValue": null,
8674
+ "description": "Allows the user to manually resize the textArea vertically.",
8675
+ "name": "allowVerticalResize",
8676
+ "parent": {
8677
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
8678
+ "name": "TextAreaProps"
8679
+ },
8680
+ "declarations": [
8681
+ {
8682
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
8683
+ "name": "TextAreaProps"
8684
+ }
8685
+ ],
8686
+ "required": false,
8687
+ "type": {
8688
+ "name": "boolean"
8689
+ }
8690
+ },
8691
+ "allowResize": {
8692
+ "defaultValue": null,
8693
+ "description": "Allows the user to manually resize the textArea horizontally and\nvertically.",
8694
+ "name": "allowResize",
8695
+ "parent": {
8696
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
8697
+ "name": "TextAreaProps"
8698
+ },
8699
+ "declarations": [
8700
+ {
8701
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
8702
+ "name": "TextAreaProps"
8703
+ }
8704
+ ],
8705
+ "required": false,
8706
+ "type": {
8707
+ "name": "boolean"
8708
+ }
8709
+ },
8595
8710
  "children": {
8596
8711
  "defaultValue": null,
8597
8712
  "description": "",
@@ -73384,249 +73499,12 @@
73384
73499
  }
73385
73500
  },
73386
73501
  {
73387
- "tags": {},
73388
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/Modal.tsx",
73502
+ "tags": {
73503
+ "flr-generate": "all"
73504
+ },
73505
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Navigation/Navigation.tsx",
73389
73506
  "description": "",
73390
- "displayName": "Modal",
73391
- "methods": [],
73392
- "props": {
73393
- "size": {
73394
- "defaultValue": {
73395
- "value": "\"s\""
73396
- },
73397
- "description": "The size of the modal.",
73398
- "name": "size",
73399
- "parent": {
73400
- "fileName": "components/src/components/Modal/Modal.tsx",
73401
- "name": "ModalProps"
73402
- },
73403
- "declarations": [
73404
- {
73405
- "fileName": "components/src/components/Modal/Modal.tsx",
73406
- "name": "ModalProps"
73407
- }
73408
- ],
73409
- "required": false,
73410
- "type": {
73411
- "name": "\"s\" | \"m\" | \"l\""
73412
- }
73413
- },
73414
- "offCanvas": {
73415
- "defaultValue": null,
73416
- "description": "Whether the modal should be displayed as an off canvas.",
73417
- "name": "offCanvas",
73418
- "parent": {
73419
- "fileName": "components/src/components/Modal/Modal.tsx",
73420
- "name": "ModalProps"
73421
- },
73422
- "declarations": [
73423
- {
73424
- "fileName": "components/src/components/Modal/Modal.tsx",
73425
- "name": "ModalProps"
73426
- }
73427
- ],
73428
- "required": false,
73429
- "type": {
73430
- "name": "boolean"
73431
- }
73432
- },
73433
- "offCanvasOrientation": {
73434
- "defaultValue": {
73435
- "value": "\"right\""
73436
- },
73437
- "description": "Whether the off canvas should be displayed on the right or left side of the\nscreen.",
73438
- "name": "offCanvasOrientation",
73439
- "parent": {
73440
- "fileName": "components/src/components/Modal/Modal.tsx",
73441
- "name": "ModalProps"
73442
- },
73443
- "declarations": [
73444
- {
73445
- "fileName": "components/src/components/Modal/Modal.tsx",
73446
- "name": "ModalProps"
73447
- }
73448
- ],
73449
- "required": false,
73450
- "type": {
73451
- "name": "\"left\" | \"right\""
73452
- }
73453
- },
73454
- "controller": {
73455
- "defaultValue": null,
73456
- "description": "An overlay controller to control the modal state.",
73457
- "name": "controller",
73458
- "parent": {
73459
- "fileName": "components/src/components/Modal/Modal.tsx",
73460
- "name": "ModalProps"
73461
- },
73462
- "declarations": [
73463
- {
73464
- "fileName": "components/src/components/Modal/Modal.tsx",
73465
- "name": "ModalProps"
73466
- }
73467
- ],
73468
- "required": false,
73469
- "type": {
73470
- "name": "OverlayController"
73471
- }
73472
- },
73473
- "slot": {
73474
- "defaultValue": null,
73475
- "description": "Accepts \"actionConfirm\" to use the modal as a confirmation modal for an\naction.",
73476
- "name": "slot",
73477
- "parent": {
73478
- "fileName": "components/src/components/Modal/Modal.tsx",
73479
- "name": "ModalProps"
73480
- },
73481
- "declarations": [
73482
- {
73483
- "fileName": "components/src/components/Modal/Modal.tsx",
73484
- "name": "ModalProps"
73485
- }
73486
- ],
73487
- "required": false,
73488
- "type": {
73489
- "name": "string"
73490
- }
73491
- },
73492
- "isDismissable": {
73493
- "defaultValue": null,
73494
- "description": "Whether the modal can be closed by clicking outside of it.",
73495
- "name": "isDismissable",
73496
- "parent": {
73497
- "fileName": "components/src/components/Modal/Modal.tsx",
73498
- "name": "ModalProps"
73499
- },
73500
- "declarations": [
73501
- {
73502
- "fileName": "components/src/components/Modal/Modal.tsx",
73503
- "name": "ModalProps"
73504
- }
73505
- ],
73506
- "required": false,
73507
- "type": {
73508
- "name": "boolean"
73509
- }
73510
- },
73511
- "children": {
73512
- "defaultValue": null,
73513
- "description": "",
73514
- "name": "children",
73515
- "declarations": [
73516
- {
73517
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
73518
- "name": "TypeLiteral"
73519
- }
73520
- ],
73521
- "required": false,
73522
- "type": {
73523
- "name": "ReactNode"
73524
- }
73525
- },
73526
- "wrapWith": {
73527
- "defaultValue": null,
73528
- "description": "",
73529
- "name": "wrapWith",
73530
- "parent": {
73531
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
73532
- "name": "FlowComponentProps"
73533
- },
73534
- "declarations": [
73535
- {
73536
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
73537
- "name": "FlowComponentProps"
73538
- }
73539
- ],
73540
- "required": false,
73541
- "type": {
73542
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
73543
- }
73544
- },
73545
- "tunnelId": {
73546
- "defaultValue": null,
73547
- "description": "@internal",
73548
- "name": "tunnelId",
73549
- "parent": {
73550
- "fileName": "components/src/lib/types/props.ts",
73551
- "name": "PropsWithTunnel"
73552
- },
73553
- "declarations": [
73554
- {
73555
- "fileName": "components/src/lib/types/props.ts",
73556
- "name": "PropsWithTunnel"
73557
- }
73558
- ],
73559
- "required": false,
73560
- "type": {
73561
- "name": "string | null"
73562
- }
73563
- },
73564
- "ref": {
73565
- "defaultValue": null,
73566
- "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}",
73567
- "name": "ref",
73568
- "parent": {
73569
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
73570
- "name": "RefAttributes"
73571
- },
73572
- "declarations": [
73573
- {
73574
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
73575
- "name": "RefAttributes"
73576
- }
73577
- ],
73578
- "required": false,
73579
- "type": {
73580
- "name": "Ref<HTMLInputElement>"
73581
- }
73582
- },
73583
- "key": {
73584
- "defaultValue": null,
73585
- "description": "",
73586
- "name": "key",
73587
- "parent": {
73588
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
73589
- "name": "Attributes"
73590
- },
73591
- "declarations": [
73592
- {
73593
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
73594
- "name": "Attributes"
73595
- }
73596
- ],
73597
- "required": false,
73598
- "type": {
73599
- "name": "Key | null"
73600
- }
73601
- },
73602
- "className": {
73603
- "defaultValue": null,
73604
- "description": "The elements class name.",
73605
- "name": "className",
73606
- "parent": {
73607
- "fileName": "components/src/lib/types/props.ts",
73608
- "name": "PropsWithClassName"
73609
- },
73610
- "declarations": [
73611
- {
73612
- "fileName": "components/src/lib/types/props.ts",
73613
- "name": "PropsWithClassName"
73614
- }
73615
- ],
73616
- "required": false,
73617
- "type": {
73618
- "name": "string"
73619
- }
73620
- }
73621
- }
73622
- },
73623
- {
73624
- "tags": {
73625
- "flr-generate": "all"
73626
- },
73627
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Navigation/Navigation.tsx",
73628
- "description": "",
73629
- "displayName": "Navigation",
73507
+ "displayName": "Navigation",
73630
73508
  "methods": [],
73631
73509
  "props": {
73632
73510
  "ref": {
@@ -78989,6 +78867,243 @@
78989
78867
  }
78990
78868
  }
78991
78869
  },
78870
+ {
78871
+ "tags": {},
78872
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/Modal.tsx",
78873
+ "description": "",
78874
+ "displayName": "Modal",
78875
+ "methods": [],
78876
+ "props": {
78877
+ "size": {
78878
+ "defaultValue": {
78879
+ "value": "\"s\""
78880
+ },
78881
+ "description": "The size of the modal.",
78882
+ "name": "size",
78883
+ "parent": {
78884
+ "fileName": "components/src/components/Modal/Modal.tsx",
78885
+ "name": "ModalProps"
78886
+ },
78887
+ "declarations": [
78888
+ {
78889
+ "fileName": "components/src/components/Modal/Modal.tsx",
78890
+ "name": "ModalProps"
78891
+ }
78892
+ ],
78893
+ "required": false,
78894
+ "type": {
78895
+ "name": "\"s\" | \"m\" | \"l\""
78896
+ }
78897
+ },
78898
+ "offCanvas": {
78899
+ "defaultValue": null,
78900
+ "description": "Whether the modal should be displayed as an off canvas.",
78901
+ "name": "offCanvas",
78902
+ "parent": {
78903
+ "fileName": "components/src/components/Modal/Modal.tsx",
78904
+ "name": "ModalProps"
78905
+ },
78906
+ "declarations": [
78907
+ {
78908
+ "fileName": "components/src/components/Modal/Modal.tsx",
78909
+ "name": "ModalProps"
78910
+ }
78911
+ ],
78912
+ "required": false,
78913
+ "type": {
78914
+ "name": "boolean"
78915
+ }
78916
+ },
78917
+ "offCanvasOrientation": {
78918
+ "defaultValue": {
78919
+ "value": "\"right\""
78920
+ },
78921
+ "description": "Whether the off canvas should be displayed on the right or left side of the\nscreen.",
78922
+ "name": "offCanvasOrientation",
78923
+ "parent": {
78924
+ "fileName": "components/src/components/Modal/Modal.tsx",
78925
+ "name": "ModalProps"
78926
+ },
78927
+ "declarations": [
78928
+ {
78929
+ "fileName": "components/src/components/Modal/Modal.tsx",
78930
+ "name": "ModalProps"
78931
+ }
78932
+ ],
78933
+ "required": false,
78934
+ "type": {
78935
+ "name": "\"left\" | \"right\""
78936
+ }
78937
+ },
78938
+ "controller": {
78939
+ "defaultValue": null,
78940
+ "description": "An overlay controller to control the modal state.",
78941
+ "name": "controller",
78942
+ "parent": {
78943
+ "fileName": "components/src/components/Modal/Modal.tsx",
78944
+ "name": "ModalProps"
78945
+ },
78946
+ "declarations": [
78947
+ {
78948
+ "fileName": "components/src/components/Modal/Modal.tsx",
78949
+ "name": "ModalProps"
78950
+ }
78951
+ ],
78952
+ "required": false,
78953
+ "type": {
78954
+ "name": "OverlayController"
78955
+ }
78956
+ },
78957
+ "slot": {
78958
+ "defaultValue": null,
78959
+ "description": "Accepts \"actionConfirm\" to use the modal as a confirmation modal for an\naction.",
78960
+ "name": "slot",
78961
+ "parent": {
78962
+ "fileName": "components/src/components/Modal/Modal.tsx",
78963
+ "name": "ModalProps"
78964
+ },
78965
+ "declarations": [
78966
+ {
78967
+ "fileName": "components/src/components/Modal/Modal.tsx",
78968
+ "name": "ModalProps"
78969
+ }
78970
+ ],
78971
+ "required": false,
78972
+ "type": {
78973
+ "name": "string"
78974
+ }
78975
+ },
78976
+ "isDismissable": {
78977
+ "defaultValue": null,
78978
+ "description": "Whether the modal can be closed by clicking outside of it.",
78979
+ "name": "isDismissable",
78980
+ "parent": {
78981
+ "fileName": "components/src/components/Modal/Modal.tsx",
78982
+ "name": "ModalProps"
78983
+ },
78984
+ "declarations": [
78985
+ {
78986
+ "fileName": "components/src/components/Modal/Modal.tsx",
78987
+ "name": "ModalProps"
78988
+ }
78989
+ ],
78990
+ "required": false,
78991
+ "type": {
78992
+ "name": "boolean"
78993
+ }
78994
+ },
78995
+ "children": {
78996
+ "defaultValue": null,
78997
+ "description": "",
78998
+ "name": "children",
78999
+ "declarations": [
79000
+ {
79001
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
79002
+ "name": "TypeLiteral"
79003
+ }
79004
+ ],
79005
+ "required": false,
79006
+ "type": {
79007
+ "name": "ReactNode"
79008
+ }
79009
+ },
79010
+ "wrapWith": {
79011
+ "defaultValue": null,
79012
+ "description": "",
79013
+ "name": "wrapWith",
79014
+ "parent": {
79015
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
79016
+ "name": "FlowComponentProps"
79017
+ },
79018
+ "declarations": [
79019
+ {
79020
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
79021
+ "name": "FlowComponentProps"
79022
+ }
79023
+ ],
79024
+ "required": false,
79025
+ "type": {
79026
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
79027
+ }
79028
+ },
79029
+ "tunnelId": {
79030
+ "defaultValue": null,
79031
+ "description": "@internal",
79032
+ "name": "tunnelId",
79033
+ "parent": {
79034
+ "fileName": "components/src/lib/types/props.ts",
79035
+ "name": "PropsWithTunnel"
79036
+ },
79037
+ "declarations": [
79038
+ {
79039
+ "fileName": "components/src/lib/types/props.ts",
79040
+ "name": "PropsWithTunnel"
79041
+ }
79042
+ ],
79043
+ "required": false,
79044
+ "type": {
79045
+ "name": "string | null"
79046
+ }
79047
+ },
79048
+ "ref": {
79049
+ "defaultValue": null,
79050
+ "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}",
79051
+ "name": "ref",
79052
+ "parent": {
79053
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
79054
+ "name": "RefAttributes"
79055
+ },
79056
+ "declarations": [
79057
+ {
79058
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
79059
+ "name": "RefAttributes"
79060
+ }
79061
+ ],
79062
+ "required": false,
79063
+ "type": {
79064
+ "name": "Ref<HTMLInputElement>"
79065
+ }
79066
+ },
79067
+ "key": {
79068
+ "defaultValue": null,
79069
+ "description": "",
79070
+ "name": "key",
79071
+ "parent": {
79072
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
79073
+ "name": "Attributes"
79074
+ },
79075
+ "declarations": [
79076
+ {
79077
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
79078
+ "name": "Attributes"
79079
+ }
79080
+ ],
79081
+ "required": false,
79082
+ "type": {
79083
+ "name": "Key | null"
79084
+ }
79085
+ },
79086
+ "className": {
79087
+ "defaultValue": null,
79088
+ "description": "The elements class name.",
79089
+ "name": "className",
79090
+ "parent": {
79091
+ "fileName": "components/src/lib/types/props.ts",
79092
+ "name": "PropsWithClassName"
79093
+ },
79094
+ "declarations": [
79095
+ {
79096
+ "fileName": "components/src/lib/types/props.ts",
79097
+ "name": "PropsWithClassName"
79098
+ }
79099
+ ],
79100
+ "required": false,
79101
+ "type": {
79102
+ "name": "string"
79103
+ }
79104
+ }
79105
+ }
79106
+ },
78992
79107
  {
78993
79108
  "tags": {
78994
79109
  "flr-generate": "all"
@@ -81168,6 +81283,63 @@
81168
81283
  "name": "number"
81169
81284
  }
81170
81285
  },
81286
+ "allowHorizontalResize": {
81287
+ "defaultValue": null,
81288
+ "description": "Allows the user to manually resize the textArea horizontally.",
81289
+ "name": "allowHorizontalResize",
81290
+ "parent": {
81291
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
81292
+ "name": "TextAreaProps"
81293
+ },
81294
+ "declarations": [
81295
+ {
81296
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
81297
+ "name": "TextAreaProps"
81298
+ }
81299
+ ],
81300
+ "required": false,
81301
+ "type": {
81302
+ "name": "boolean"
81303
+ }
81304
+ },
81305
+ "allowVerticalResize": {
81306
+ "defaultValue": null,
81307
+ "description": "Allows the user to manually resize the textArea vertically.",
81308
+ "name": "allowVerticalResize",
81309
+ "parent": {
81310
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
81311
+ "name": "TextAreaProps"
81312
+ },
81313
+ "declarations": [
81314
+ {
81315
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
81316
+ "name": "TextAreaProps"
81317
+ }
81318
+ ],
81319
+ "required": false,
81320
+ "type": {
81321
+ "name": "boolean"
81322
+ }
81323
+ },
81324
+ "allowResize": {
81325
+ "defaultValue": null,
81326
+ "description": "Allows the user to manually resize the textArea horizontally and\nvertically.",
81327
+ "name": "allowResize",
81328
+ "parent": {
81329
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
81330
+ "name": "TextAreaProps"
81331
+ },
81332
+ "declarations": [
81333
+ {
81334
+ "fileName": "components/src/components/TextArea/TextArea.tsx",
81335
+ "name": "TextAreaProps"
81336
+ }
81337
+ ],
81338
+ "required": false,
81339
+ "type": {
81340
+ "name": "boolean"
81341
+ }
81342
+ },
81171
81343
  "children": {
81172
81344
  "defaultValue": null,
81173
81345
  "description": "",
@@ -256502,10 +256674,10 @@
256502
256674
  "name": "() => ArrayIterator<any>"
256503
256675
  }
256504
256676
  },
256505
- "__@unscopables@3161": {
256677
+ "__@unscopables@3169": {
256506
256678
  "defaultValue": null,
256507
256679
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
256508
- "name": "__@unscopables@3161",
256680
+ "name": "__@unscopables@3169",
256509
256681
  "parent": {
256510
256682
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
256511
256683
  "name": "Array"
@@ -257338,10 +257510,10 @@
257338
257510
  "name": "() => ArrayIterator<any>"
257339
257511
  }
257340
257512
  },
257341
- "__@unscopables@3161": {
257513
+ "__@unscopables@3169": {
257342
257514
  "defaultValue": null,
257343
257515
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
257344
- "name": "__@unscopables@3161",
257516
+ "name": "__@unscopables@3169",
257345
257517
  "parent": {
257346
257518
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
257347
257519
  "name": "Array"
@@ -258174,10 +258346,10 @@
258174
258346
  "name": "() => ArrayIterator<any>"
258175
258347
  }
258176
258348
  },
258177
- "__@unscopables@3161": {
258349
+ "__@unscopables@3169": {
258178
258350
  "defaultValue": null,
258179
258351
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
258180
- "name": "__@unscopables@3161",
258352
+ "name": "__@unscopables@3169",
258181
258353
  "parent": {
258182
258354
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
258183
258355
  "name": "Array"
@@ -279583,159 +279755,115 @@
279583
279755
  },
279584
279756
  {
279585
279757
  "tags": {
279586
- "flr-generate": "all"
279758
+ "internal": ""
279587
279759
  },
279588
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279760
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279589
279761
  "description": "",
279590
- "displayName": "PopoverContent",
279762
+ "displayName": "ValidationResultEntry",
279591
279763
  "methods": [],
279592
279764
  "props": {
279593
- "withTip": {
279765
+ "result": {
279594
279766
  "defaultValue": null,
279595
279767
  "description": "",
279596
- "name": "withTip",
279768
+ "name": "result",
279597
279769
  "parent": {
279598
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279599
- "name": "PopoverContentProps"
279770
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279771
+ "name": "Props"
279600
279772
  },
279601
279773
  "declarations": [
279602
279774
  {
279603
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279604
- "name": "PopoverContentProps"
279775
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279776
+ "name": "Props"
279605
279777
  }
279606
279778
  ],
279607
- "required": false,
279779
+ "required": true,
279608
279780
  "type": {
279609
- "name": "boolean"
279781
+ "name": "Partial<RuleValidationResult>"
279610
279782
  }
279611
279783
  },
279612
- "isDialogContent": {
279784
+ "unspecifiedRules": {
279613
279785
  "defaultValue": null,
279614
279786
  "description": "",
279615
- "name": "isDialogContent",
279787
+ "name": "unspecifiedRules",
279616
279788
  "parent": {
279617
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279618
- "name": "PopoverContentProps"
279789
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279790
+ "name": "Props"
279619
279791
  },
279620
279792
  "declarations": [
279621
279793
  {
279622
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279623
- "name": "PopoverContentProps"
279794
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279795
+ "name": "Props"
279624
279796
  }
279625
279797
  ],
279626
279798
  "required": false,
279627
279799
  "type": {
279628
279800
  "name": "boolean"
279629
279801
  }
279630
- },
279631
- "isOpen": {
279802
+ }
279803
+ }
279804
+ },
279805
+ {
279806
+ "tags": {},
279807
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279808
+ "description": "",
279809
+ "displayName": "ValidationResultButton",
279810
+ "methods": [],
279811
+ "props": {
279812
+ "policyValidationResult": {
279632
279813
  "defaultValue": null,
279633
279814
  "description": "",
279634
- "name": "isOpen",
279815
+ "name": "policyValidationResult",
279635
279816
  "parent": {
279636
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279637
- "name": "PopoverContentProps"
279817
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279818
+ "name": "Props"
279638
279819
  },
279639
279820
  "declarations": [
279640
279821
  {
279641
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279642
- "name": "PopoverContentProps"
279822
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279823
+ "name": "Props"
279643
279824
  }
279644
279825
  ],
279645
279826
  "required": false,
279646
279827
  "type": {
279647
- "name": "boolean"
279828
+ "name": "ResolvedPolicyValidationResult"
279648
279829
  }
279649
279830
  },
279650
- "width": {
279831
+ "isDisabled": {
279651
279832
  "defaultValue": null,
279652
279833
  "description": "",
279653
- "name": "width",
279834
+ "name": "isDisabled",
279654
279835
  "parent": {
279655
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279656
- "name": "PopoverContentProps"
279836
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279837
+ "name": "Props"
279657
279838
  },
279658
279839
  "declarations": [
279659
279840
  {
279660
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279661
- "name": "PopoverContentProps"
279841
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279842
+ "name": "Props"
279662
279843
  }
279663
279844
  ],
279664
279845
  "required": false,
279665
279846
  "type": {
279666
- "name": "string | number"
279847
+ "name": "boolean"
279667
279848
  }
279668
279849
  },
279669
- "onOpenChange": {
279850
+ "isEmptyValue": {
279670
279851
  "defaultValue": null,
279671
279852
  "description": "",
279672
- "name": "onOpenChange",
279853
+ "name": "isEmptyValue",
279673
279854
  "parent": {
279674
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279675
- "name": "PopoverContentProps"
279855
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279856
+ "name": "Props"
279676
279857
  },
279677
279858
  "declarations": [
279678
279859
  {
279679
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279680
- "name": "PopoverContentProps"
279860
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279861
+ "name": "Props"
279681
279862
  }
279682
279863
  ],
279683
279864
  "required": true,
279684
279865
  "type": {
279685
- "name": "(isOpen: boolean) => void"
279686
- }
279687
- },
279688
- "ref": {
279689
- "defaultValue": null,
279690
- "description": "",
279691
- "name": "ref",
279692
- "parent": {
279693
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279694
- "name": "PopoverContentProps"
279695
- },
279696
- "declarations": [
279697
- {
279698
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279699
- "name": "PopoverContentProps"
279700
- }
279701
- ],
279702
- "required": false,
279703
- "type": {
279704
- "name": "Ref<HTMLElement>"
279705
- }
279706
- },
279707
- "triggerRef": {
279708
- "defaultValue": null,
279709
- "description": "",
279710
- "name": "triggerRef",
279711
- "parent": {
279712
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279713
- "name": "PopoverContentProps"
279714
- },
279715
- "declarations": [
279716
- {
279717
- "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279718
- "name": "PopoverContentProps"
279719
- }
279720
- ],
279721
- "required": false,
279722
- "type": {
279723
- "name": "RefObject<Element | null>"
279724
- }
279725
- },
279726
- "children": {
279727
- "defaultValue": null,
279728
- "description": "",
279729
- "name": "children",
279730
- "declarations": [
279731
- {
279732
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
279733
- "name": "TypeLiteral"
279734
- }
279735
- ],
279736
- "required": false,
279737
- "type": {
279738
- "name": "ReactNode"
279866
+ "name": "boolean"
279739
279867
  }
279740
279868
  },
279741
279869
  "className": {
@@ -279763,41 +279891,24 @@
279763
279891
  "tags": {
279764
279892
  "internal": ""
279765
279893
  },
279766
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279894
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279767
279895
  "description": "",
279768
- "displayName": "ValidationResultEntry",
279896
+ "displayName": "TogglePasswordVisibilityButton",
279769
279897
  "methods": [],
279770
279898
  "props": {
279771
- "result": {
279772
- "defaultValue": null,
279773
- "description": "",
279774
- "name": "result",
279775
- "parent": {
279776
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279777
- "name": "Props"
279899
+ "isDisabled": {
279900
+ "defaultValue": {
279901
+ "value": "false"
279778
279902
  },
279779
- "declarations": [
279780
- {
279781
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279782
- "name": "Props"
279783
- }
279784
- ],
279785
- "required": true,
279786
- "type": {
279787
- "name": "Partial<RuleValidationResult>"
279788
- }
279789
- },
279790
- "unspecifiedRules": {
279791
- "defaultValue": null,
279792
279903
  "description": "",
279793
- "name": "unspecifiedRules",
279904
+ "name": "isDisabled",
279794
279905
  "parent": {
279795
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279906
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279796
279907
  "name": "Props"
279797
279908
  },
279798
279909
  "declarations": [
279799
279910
  {
279800
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
279911
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279801
279912
  "name": "Props"
279802
279913
  }
279803
279914
  ],
@@ -279805,71 +279916,43 @@
279805
279916
  "type": {
279806
279917
  "name": "boolean"
279807
279918
  }
279808
- }
279809
- }
279810
- },
279811
- {
279812
- "tags": {},
279813
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279814
- "description": "",
279815
- "displayName": "ValidationResultButton",
279816
- "methods": [],
279817
- "props": {
279818
- "policyValidationResult": {
279819
- "defaultValue": null,
279820
- "description": "",
279821
- "name": "policyValidationResult",
279822
- "parent": {
279823
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279824
- "name": "Props"
279825
- },
279826
- "declarations": [
279827
- {
279828
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279829
- "name": "Props"
279830
- }
279831
- ],
279832
- "required": false,
279833
- "type": {
279834
- "name": "ResolvedPolicyValidationResult"
279835
- }
279836
279919
  },
279837
- "isDisabled": {
279920
+ "isVisible": {
279838
279921
  "defaultValue": null,
279839
279922
  "description": "",
279840
- "name": "isDisabled",
279923
+ "name": "isVisible",
279841
279924
  "parent": {
279842
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279925
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279843
279926
  "name": "Props"
279844
279927
  },
279845
279928
  "declarations": [
279846
279929
  {
279847
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279930
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279848
279931
  "name": "Props"
279849
279932
  }
279850
279933
  ],
279851
- "required": false,
279934
+ "required": true,
279852
279935
  "type": {
279853
279936
  "name": "boolean"
279854
279937
  }
279855
279938
  },
279856
- "isEmptyValue": {
279939
+ "onPress": {
279857
279940
  "defaultValue": null,
279858
279941
  "description": "",
279859
- "name": "isEmptyValue",
279942
+ "name": "onPress",
279860
279943
  "parent": {
279861
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279944
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279862
279945
  "name": "Props"
279863
279946
  },
279864
279947
  "declarations": [
279865
279948
  {
279866
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
279949
+ "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279867
279950
  "name": "Props"
279868
279951
  }
279869
279952
  ],
279870
279953
  "required": true,
279871
279954
  "type": {
279872
- "name": "boolean"
279955
+ "name": "ActionFn"
279873
279956
  }
279874
279957
  },
279875
279958
  "className": {
@@ -279895,27 +279978,44 @@
279895
279978
  },
279896
279979
  {
279897
279980
  "tags": {
279898
- "internal": ""
279981
+ "flr-generate": "all"
279899
279982
  },
279900
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279983
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279901
279984
  "description": "",
279902
- "displayName": "TogglePasswordVisibilityButton",
279985
+ "displayName": "PopoverContent",
279903
279986
  "methods": [],
279904
279987
  "props": {
279905
- "isDisabled": {
279906
- "defaultValue": {
279907
- "value": "false"
279988
+ "withTip": {
279989
+ "defaultValue": null,
279990
+ "description": "",
279991
+ "name": "withTip",
279992
+ "parent": {
279993
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279994
+ "name": "PopoverContentProps"
279908
279995
  },
279996
+ "declarations": [
279997
+ {
279998
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
279999
+ "name": "PopoverContentProps"
280000
+ }
280001
+ ],
280002
+ "required": false,
280003
+ "type": {
280004
+ "name": "boolean"
280005
+ }
280006
+ },
280007
+ "isDialogContent": {
280008
+ "defaultValue": null,
279909
280009
  "description": "",
279910
- "name": "isDisabled",
280010
+ "name": "isDialogContent",
279911
280011
  "parent": {
279912
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279913
- "name": "Props"
280012
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280013
+ "name": "PopoverContentProps"
279914
280014
  },
279915
280015
  "declarations": [
279916
280016
  {
279917
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279918
- "name": "Props"
280017
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280018
+ "name": "PopoverContentProps"
279919
280019
  }
279920
280020
  ],
279921
280021
  "required": false,
@@ -279923,42 +280023,114 @@
279923
280023
  "name": "boolean"
279924
280024
  }
279925
280025
  },
279926
- "isVisible": {
280026
+ "isOpen": {
279927
280027
  "defaultValue": null,
279928
280028
  "description": "",
279929
- "name": "isVisible",
280029
+ "name": "isOpen",
279930
280030
  "parent": {
279931
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279932
- "name": "Props"
280031
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280032
+ "name": "PopoverContentProps"
279933
280033
  },
279934
280034
  "declarations": [
279935
280035
  {
279936
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279937
- "name": "Props"
280036
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280037
+ "name": "PopoverContentProps"
279938
280038
  }
279939
280039
  ],
279940
- "required": true,
280040
+ "required": false,
279941
280041
  "type": {
279942
280042
  "name": "boolean"
279943
280043
  }
279944
280044
  },
279945
- "onPress": {
280045
+ "width": {
279946
280046
  "defaultValue": null,
279947
280047
  "description": "",
279948
- "name": "onPress",
280048
+ "name": "width",
279949
280049
  "parent": {
279950
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279951
- "name": "Props"
280050
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280051
+ "name": "PopoverContentProps"
279952
280052
  },
279953
280053
  "declarations": [
279954
280054
  {
279955
- "fileName": "components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.tsx",
279956
- "name": "Props"
280055
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280056
+ "name": "PopoverContentProps"
280057
+ }
280058
+ ],
280059
+ "required": false,
280060
+ "type": {
280061
+ "name": "string | number"
280062
+ }
280063
+ },
280064
+ "onOpenChange": {
280065
+ "defaultValue": null,
280066
+ "description": "",
280067
+ "name": "onOpenChange",
280068
+ "parent": {
280069
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280070
+ "name": "PopoverContentProps"
280071
+ },
280072
+ "declarations": [
280073
+ {
280074
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280075
+ "name": "PopoverContentProps"
279957
280076
  }
279958
280077
  ],
279959
280078
  "required": true,
279960
280079
  "type": {
279961
- "name": "ActionFn"
280080
+ "name": "(isOpen: boolean) => void"
280081
+ }
280082
+ },
280083
+ "ref": {
280084
+ "defaultValue": null,
280085
+ "description": "",
280086
+ "name": "ref",
280087
+ "parent": {
280088
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280089
+ "name": "PopoverContentProps"
280090
+ },
280091
+ "declarations": [
280092
+ {
280093
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280094
+ "name": "PopoverContentProps"
280095
+ }
280096
+ ],
280097
+ "required": false,
280098
+ "type": {
280099
+ "name": "Ref<HTMLElement>"
280100
+ }
280101
+ },
280102
+ "triggerRef": {
280103
+ "defaultValue": null,
280104
+ "description": "",
280105
+ "name": "triggerRef",
280106
+ "parent": {
280107
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280108
+ "name": "PopoverContentProps"
280109
+ },
280110
+ "declarations": [
280111
+ {
280112
+ "fileName": "components/src/components/Popover/components/PopoverContent/PopoverContent.tsx",
280113
+ "name": "PopoverContentProps"
280114
+ }
280115
+ ],
280116
+ "required": false,
280117
+ "type": {
280118
+ "name": "RefObject<Element | null>"
280119
+ }
280120
+ },
280121
+ "children": {
280122
+ "defaultValue": null,
280123
+ "description": "",
280124
+ "name": "children",
280125
+ "declarations": [
280126
+ {
280127
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
280128
+ "name": "TypeLiteral"
280129
+ }
280130
+ ],
280131
+ "required": false,
280132
+ "type": {
280133
+ "name": "ReactNode"
279962
280134
  }
279963
280135
  },
279964
280136
  "className": {
@@ -280387,152 +280559,6 @@
280387
280559
  }
280388
280560
  }
280389
280561
  },
280390
- {
280391
- "tags": {},
280392
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.tsx",
280393
- "description": "",
280394
- "displayName": "OffCanvasSuspenseFallback",
280395
- "methods": [],
280396
- "props": {}
280397
- },
280398
- {
280399
- "tags": {},
280400
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
280401
- "description": "",
280402
- "displayName": "ModalTrigger",
280403
- "methods": [],
280404
- "props": {
280405
- "isDefaultOpen": {
280406
- "defaultValue": null,
280407
- "description": "Whether the overlay should be open initially.",
280408
- "name": "isDefaultOpen",
280409
- "parent": {
280410
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
280411
- "name": "OverlayTriggerProps"
280412
- },
280413
- "declarations": [
280414
- {
280415
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
280416
- "name": "OverlayTriggerProps"
280417
- }
280418
- ],
280419
- "required": false,
280420
- "type": {
280421
- "name": "boolean"
280422
- }
280423
- },
280424
- "controller": {
280425
- "defaultValue": null,
280426
- "description": "A controller to control the state of the overlay.",
280427
- "name": "controller",
280428
- "parent": {
280429
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
280430
- "name": "OverlayTriggerProps"
280431
- },
280432
- "declarations": [
280433
- {
280434
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
280435
- "name": "OverlayTriggerProps"
280436
- }
280437
- ],
280438
- "required": false,
280439
- "type": {
280440
- "name": "OverlayController"
280441
- }
280442
- },
280443
- "wrapWith": {
280444
- "defaultValue": null,
280445
- "description": "",
280446
- "name": "wrapWith",
280447
- "parent": {
280448
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
280449
- "name": "FlowComponentProps"
280450
- },
280451
- "declarations": [
280452
- {
280453
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
280454
- "name": "FlowComponentProps"
280455
- }
280456
- ],
280457
- "required": false,
280458
- "type": {
280459
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
280460
- }
280461
- },
280462
- "tunnelId": {
280463
- "defaultValue": null,
280464
- "description": "@internal",
280465
- "name": "tunnelId",
280466
- "parent": {
280467
- "fileName": "components/src/lib/types/props.ts",
280468
- "name": "PropsWithTunnel"
280469
- },
280470
- "declarations": [
280471
- {
280472
- "fileName": "components/src/lib/types/props.ts",
280473
- "name": "PropsWithTunnel"
280474
- }
280475
- ],
280476
- "required": false,
280477
- "type": {
280478
- "name": "string | null"
280479
- }
280480
- },
280481
- "ref": {
280482
- "defaultValue": null,
280483
- "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}",
280484
- "name": "ref",
280485
- "parent": {
280486
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
280487
- "name": "RefAttributes"
280488
- },
280489
- "declarations": [
280490
- {
280491
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
280492
- "name": "RefAttributes"
280493
- }
280494
- ],
280495
- "required": false,
280496
- "type": {
280497
- "name": "Ref<HTMLInputElement>"
280498
- }
280499
- },
280500
- "key": {
280501
- "defaultValue": null,
280502
- "description": "",
280503
- "name": "key",
280504
- "parent": {
280505
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
280506
- "name": "Attributes"
280507
- },
280508
- "declarations": [
280509
- {
280510
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
280511
- "name": "Attributes"
280512
- }
280513
- ],
280514
- "required": false,
280515
- "type": {
280516
- "name": "Key | null"
280517
- }
280518
- },
280519
- "children": {
280520
- "defaultValue": null,
280521
- "description": "",
280522
- "name": "children",
280523
- "declarations": [
280524
- {
280525
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
280526
- "name": "TypeLiteral"
280527
- }
280528
- ],
280529
- "required": false,
280530
- "type": {
280531
- "name": "ReactNode"
280532
- }
280533
- }
280534
- }
280535
- },
280536
280562
  {
280537
280563
  "tags": {
280538
280564
  "flr-generate": "all"
@@ -285921,6 +285947,152 @@
285921
285947
  }
285922
285948
  }
285923
285949
  },
285950
+ {
285951
+ "tags": {},
285952
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/OffCanvasSuspenseFallback/OffCanvasSuspenseFallback.tsx",
285953
+ "description": "",
285954
+ "displayName": "OffCanvasSuspenseFallback",
285955
+ "methods": [],
285956
+ "props": {}
285957
+ },
285958
+ {
285959
+ "tags": {},
285960
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
285961
+ "description": "",
285962
+ "displayName": "ModalTrigger",
285963
+ "methods": [],
285964
+ "props": {
285965
+ "isDefaultOpen": {
285966
+ "defaultValue": null,
285967
+ "description": "Whether the overlay should be open initially.",
285968
+ "name": "isDefaultOpen",
285969
+ "parent": {
285970
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
285971
+ "name": "OverlayTriggerProps"
285972
+ },
285973
+ "declarations": [
285974
+ {
285975
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
285976
+ "name": "OverlayTriggerProps"
285977
+ }
285978
+ ],
285979
+ "required": false,
285980
+ "type": {
285981
+ "name": "boolean"
285982
+ }
285983
+ },
285984
+ "controller": {
285985
+ "defaultValue": null,
285986
+ "description": "A controller to control the state of the overlay.",
285987
+ "name": "controller",
285988
+ "parent": {
285989
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
285990
+ "name": "OverlayTriggerProps"
285991
+ },
285992
+ "declarations": [
285993
+ {
285994
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
285995
+ "name": "OverlayTriggerProps"
285996
+ }
285997
+ ],
285998
+ "required": false,
285999
+ "type": {
286000
+ "name": "OverlayController"
286001
+ }
286002
+ },
286003
+ "wrapWith": {
286004
+ "defaultValue": null,
286005
+ "description": "",
286006
+ "name": "wrapWith",
286007
+ "parent": {
286008
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
286009
+ "name": "FlowComponentProps"
286010
+ },
286011
+ "declarations": [
286012
+ {
286013
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
286014
+ "name": "FlowComponentProps"
286015
+ }
286016
+ ],
286017
+ "required": false,
286018
+ "type": {
286019
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
286020
+ }
286021
+ },
286022
+ "tunnelId": {
286023
+ "defaultValue": null,
286024
+ "description": "@internal",
286025
+ "name": "tunnelId",
286026
+ "parent": {
286027
+ "fileName": "components/src/lib/types/props.ts",
286028
+ "name": "PropsWithTunnel"
286029
+ },
286030
+ "declarations": [
286031
+ {
286032
+ "fileName": "components/src/lib/types/props.ts",
286033
+ "name": "PropsWithTunnel"
286034
+ }
286035
+ ],
286036
+ "required": false,
286037
+ "type": {
286038
+ "name": "string | null"
286039
+ }
286040
+ },
286041
+ "ref": {
286042
+ "defaultValue": null,
286043
+ "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}",
286044
+ "name": "ref",
286045
+ "parent": {
286046
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
286047
+ "name": "RefAttributes"
286048
+ },
286049
+ "declarations": [
286050
+ {
286051
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
286052
+ "name": "RefAttributes"
286053
+ }
286054
+ ],
286055
+ "required": false,
286056
+ "type": {
286057
+ "name": "Ref<HTMLInputElement>"
286058
+ }
286059
+ },
286060
+ "key": {
286061
+ "defaultValue": null,
286062
+ "description": "",
286063
+ "name": "key",
286064
+ "parent": {
286065
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
286066
+ "name": "Attributes"
286067
+ },
286068
+ "declarations": [
286069
+ {
286070
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
286071
+ "name": "Attributes"
286072
+ }
286073
+ ],
286074
+ "required": false,
286075
+ "type": {
286076
+ "name": "Key | null"
286077
+ }
286078
+ },
286079
+ "children": {
286080
+ "defaultValue": null,
286081
+ "description": "",
286082
+ "name": "children",
286083
+ "declarations": [
286084
+ {
286085
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
286086
+ "name": "TypeLiteral"
286087
+ }
286088
+ ],
286089
+ "required": false,
286090
+ "type": {
286091
+ "name": "ReactNode"
286092
+ }
286093
+ }
286094
+ }
286095
+ },
285924
286096
  {
285925
286097
  "tags": {
285926
286098
  "flr-generate": "all"
@@ -316165,6 +316337,30 @@
316165
316337
  }
316166
316338
  }
316167
316339
  },
316340
+ {
316341
+ "tags": {},
316342
+ "filePath": "src/integrations/nextjs/components/RouterProvider/RouterProvider.tsx",
316343
+ "description": "",
316344
+ "displayName": "RouterProvider",
316345
+ "methods": [],
316346
+ "props": {
316347
+ "children": {
316348
+ "defaultValue": null,
316349
+ "description": "",
316350
+ "name": "children",
316351
+ "declarations": [
316352
+ {
316353
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
316354
+ "name": "TypeLiteral"
316355
+ }
316356
+ ],
316357
+ "required": false,
316358
+ "type": {
316359
+ "name": "ReactNode"
316360
+ }
316361
+ }
316362
+ }
316363
+ },
316168
316364
  {
316169
316365
  "tags": {},
316170
316366
  "filePath": "src/integrations/react-hook-form/components/Field/Field.tsx",
@@ -316893,61 +317089,11 @@
316893
317089
  }
316894
317090
  }
316895
317091
  },
316896
- {
316897
- "tags": {},
316898
- "filePath": "src/integrations/nextjs/components/RouterProvider/RouterProvider.tsx",
316899
- "description": "",
316900
- "displayName": "RouterProvider",
316901
- "methods": [],
316902
- "props": {
316903
- "children": {
316904
- "defaultValue": null,
316905
- "description": "",
316906
- "name": "children",
316907
- "declarations": [
316908
- {
316909
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
316910
- "name": "TypeLiteral"
316911
- }
316912
- ],
316913
- "required": false,
316914
- "type": {
316915
- "name": "ReactNode"
316916
- }
316917
- }
316918
- }
316919
- },
316920
- {
316921
- "tags": {
316922
- "deprecated": "Use RouterProvider instead"
316923
- },
316924
- "filePath": "src/integrations/nextjs/components/LinkProvider/LinkProvider.tsx",
316925
- "description": "",
316926
- "displayName": "LinkProvider",
316927
- "methods": [],
316928
- "props": {
316929
- "children": {
316930
- "defaultValue": null,
316931
- "description": "",
316932
- "name": "children",
316933
- "declarations": [
316934
- {
316935
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
316936
- "name": "TypeLiteral"
316937
- }
316938
- ],
316939
- "required": false,
316940
- "type": {
316941
- "name": "ReactNode"
316942
- }
316943
- }
316944
- }
316945
- },
316946
317092
  {
316947
317093
  "tags": {
316948
317094
  "deprecated": "Use RouterProvider instead"
316949
317095
  },
316950
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/nextjs/components/Link/Link.tsx",
317096
+ "filePath": "src/integrations/nextjs/components/Link/Link.tsx",
316951
317097
  "description": "",
316952
317098
  "displayName": "Link",
316953
317099
  "methods": [],
@@ -316957,12 +317103,12 @@
316957
317103
  "description": "",
316958
317104
  "name": "ref",
316959
317105
  "parent": {
316960
- "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
317106
+ "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
316961
317107
  "name": "Props"
316962
317108
  },
316963
317109
  "declarations": [
316964
317110
  {
316965
- "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
317111
+ "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
316966
317112
  "name": "Props"
316967
317113
  }
316968
317114
  ],
@@ -316976,12 +317122,12 @@
316976
317122
  "description": "",
316977
317123
  "name": "isDisabled",
316978
317124
  "parent": {
316979
- "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
317125
+ "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
316980
317126
  "name": "Props"
316981
317127
  },
316982
317128
  "declarations": [
316983
317129
  {
316984
- "fileName": "components/src/integrations/nextjs/components/Link/Link.tsx",
317130
+ "fileName": "src/integrations/nextjs/components/Link/Link.tsx",
316985
317131
  "name": "Props"
316986
317132
  }
316987
317133
  ],
@@ -322445,6 +322591,32 @@
322445
322591
  }
322446
322592
  }
322447
322593
  },
322594
+ {
322595
+ "tags": {
322596
+ "deprecated": "Use RouterProvider instead"
322597
+ },
322598
+ "filePath": "src/integrations/nextjs/components/LinkProvider/LinkProvider.tsx",
322599
+ "description": "",
322600
+ "displayName": "LinkProvider",
322601
+ "methods": [],
322602
+ "props": {
322603
+ "children": {
322604
+ "defaultValue": null,
322605
+ "description": "",
322606
+ "name": "children",
322607
+ "declarations": [
322608
+ {
322609
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.2/node_modules/@types/react/index.d.ts",
322610
+ "name": "TypeLiteral"
322611
+ }
322612
+ ],
322613
+ "required": false,
322614
+ "type": {
322615
+ "name": "ReactNode"
322616
+ }
322617
+ }
322618
+ }
322619
+ },
322448
322620
  {
322449
322621
  "tags": {},
322450
322622
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/components/TableLoadingView.tsx",