@mittwald/flow-react-components 0.2.0-alpha.714 → 0.2.0-alpha.716

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/assets/doc-properties.json +505 -325
  3. package/dist/css/all.css +1 -1
  4. package/dist/js/_virtual/_.locale.json@df7be47291f95407e99e7159090958cc.mjs +10 -0
  5. package/dist/js/_virtual/_.locale.json@df7be47291f95407e99e7159090958cc.mjs.map +1 -0
  6. package/dist/js/components/src/components/Kbd/Kbd.mjs +51 -0
  7. package/dist/js/components/src/components/Kbd/Kbd.mjs.map +1 -0
  8. package/dist/js/components/src/components/Kbd/Kbd.module.scss.mjs +15 -0
  9. package/dist/js/components/src/components/Kbd/Kbd.module.scss.mjs.map +1 -0
  10. package/dist/js/components/src/components/MenuItem/MenuItem.module.scss.mjs +4 -2
  11. package/dist/js/components/src/components/MenuItem/MenuItem.module.scss.mjs.map +1 -1
  12. package/dist/js/components/src/components/MenuItem/components/MenuItemContent/MenuItemContent.mjs +3 -0
  13. package/dist/js/components/src/components/MenuItem/components/MenuItemContent/MenuItemContent.mjs.map +1 -1
  14. package/dist/js/components/src/components/SearchField/SearchField.mjs +36 -24
  15. package/dist/js/components/src/components/SearchField/SearchField.mjs.map +1 -1
  16. package/dist/js/components/src/components/SearchField/SearchField.module.scss.mjs +3 -1
  17. package/dist/js/components/src/components/SearchField/SearchField.module.scss.mjs.map +1 -1
  18. package/dist/js/components/src/components/Text/Text.mjs +2 -1
  19. package/dist/js/components/src/components/Text/Text.mjs.map +1 -1
  20. package/dist/js/components/src/components/propTypes/index.mjs +1 -0
  21. package/dist/js/components/src/components/propTypes/index.mjs.map +1 -1
  22. package/dist/js/default.mjs +1 -0
  23. package/dist/js/default.mjs.map +1 -1
  24. package/dist/js/flr-universal.mjs +1 -0
  25. package/dist/js/flr-universal.mjs.map +1 -1
  26. package/dist/types/components/Kbd/Kbd.d.ts +14 -0
  27. package/dist/types/components/Kbd/Kbd.d.ts.map +1 -0
  28. package/dist/types/components/Kbd/index.d.ts +2 -0
  29. package/dist/types/components/Kbd/index.d.ts.map +1 -0
  30. package/dist/types/components/Kbd/stories/Default.stories.d.ts +8 -0
  31. package/dist/types/components/Kbd/stories/Default.stories.d.ts.map +1 -0
  32. package/dist/types/components/Kbd/view.d.ts +8 -0
  33. package/dist/types/components/Kbd/view.d.ts.map +1 -0
  34. package/dist/types/components/MenuItem/components/MenuItemContent/MenuItemContent.d.ts.map +1 -1
  35. package/dist/types/components/SearchField/SearchField.d.ts.map +1 -1
  36. package/dist/types/components/SearchField/stories/Default.stories.d.ts +1 -0
  37. package/dist/types/components/SearchField/stories/Default.stories.d.ts.map +1 -1
  38. package/dist/types/components/Text/Text.d.ts.map +1 -1
  39. package/dist/types/components/propTypes/index.d.ts +2 -0
  40. package/dist/types/components/propTypes/index.d.ts.map +1 -1
  41. package/dist/types/components/public.d.ts +1 -0
  42. package/dist/types/components/public.d.ts.map +1 -1
  43. package/dist/types/views/KbdView.d.ts +5 -0
  44. package/dist/types/views/KbdView.d.ts.map +1 -0
  45. package/package.json +4 -4
@@ -106980,6 +106980,186 @@
106980
106980
  }
106981
106981
  }
106982
106982
  },
106983
+ {
106984
+ "tags": {
106985
+ "flr-generate": "all"
106986
+ },
106987
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Kbd/Kbd.tsx",
106988
+ "description": "",
106989
+ "displayName": "Kbd",
106990
+ "methods": [],
106991
+ "props": {
106992
+ "keys": {
106993
+ "defaultValue": null,
106994
+ "description": "Array of keys to be joined",
106995
+ "name": "keys",
106996
+ "parent": {
106997
+ "fileName": "components/src/components/Kbd/Kbd.tsx",
106998
+ "name": "KbdProps"
106999
+ },
107000
+ "declarations": [
107001
+ {
107002
+ "fileName": "components/src/components/Kbd/Kbd.tsx",
107003
+ "name": "KbdProps"
107004
+ }
107005
+ ],
107006
+ "required": false,
107007
+ "type": {
107008
+ "name": "string[]"
107009
+ }
107010
+ },
107011
+ "isDisabled": {
107012
+ "defaultValue": null,
107013
+ "description": "Whether the component is displayed as disabled",
107014
+ "name": "isDisabled",
107015
+ "parent": {
107016
+ "fileName": "components/src/components/Kbd/Kbd.tsx",
107017
+ "name": "KbdProps"
107018
+ },
107019
+ "declarations": [
107020
+ {
107021
+ "fileName": "components/src/components/Kbd/Kbd.tsx",
107022
+ "name": "KbdProps"
107023
+ }
107024
+ ],
107025
+ "required": false,
107026
+ "type": {
107027
+ "name": "boolean"
107028
+ }
107029
+ },
107030
+ "variant": {
107031
+ "defaultValue": {
107032
+ "value": "\"plain\""
107033
+ },
107034
+ "description": "The visual variant",
107035
+ "name": "variant",
107036
+ "parent": {
107037
+ "fileName": "components/src/components/Kbd/Kbd.tsx",
107038
+ "name": "KbdProps"
107039
+ },
107040
+ "declarations": [
107041
+ {
107042
+ "fileName": "components/src/components/Kbd/Kbd.tsx",
107043
+ "name": "KbdProps"
107044
+ }
107045
+ ],
107046
+ "required": false,
107047
+ "type": {
107048
+ "name": "\"plain\" | \"soft\""
107049
+ }
107050
+ },
107051
+ "className": {
107052
+ "defaultValue": null,
107053
+ "description": "The elements class name.",
107054
+ "name": "className",
107055
+ "parent": {
107056
+ "fileName": "components/src/lib/types/props.ts",
107057
+ "name": "PropsWithClassName"
107058
+ },
107059
+ "declarations": [
107060
+ {
107061
+ "fileName": "components/src/lib/types/props.ts",
107062
+ "name": "PropsWithClassName"
107063
+ }
107064
+ ],
107065
+ "required": false,
107066
+ "type": {
107067
+ "name": "string"
107068
+ }
107069
+ },
107070
+ "wrapWith": {
107071
+ "defaultValue": null,
107072
+ "description": "",
107073
+ "name": "wrapWith",
107074
+ "parent": {
107075
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
107076
+ "name": "FlowComponentProps"
107077
+ },
107078
+ "declarations": [
107079
+ {
107080
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
107081
+ "name": "FlowComponentProps"
107082
+ }
107083
+ ],
107084
+ "required": false,
107085
+ "type": {
107086
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
107087
+ }
107088
+ },
107089
+ "tunnelId": {
107090
+ "defaultValue": null,
107091
+ "description": "@internal",
107092
+ "name": "tunnelId",
107093
+ "parent": {
107094
+ "fileName": "components/src/lib/types/props.ts",
107095
+ "name": "PropsWithTunnel"
107096
+ },
107097
+ "declarations": [
107098
+ {
107099
+ "fileName": "components/src/lib/types/props.ts",
107100
+ "name": "PropsWithTunnel"
107101
+ }
107102
+ ],
107103
+ "required": false,
107104
+ "type": {
107105
+ "name": "string | null"
107106
+ }
107107
+ },
107108
+ "ref": {
107109
+ "defaultValue": null,
107110
+ "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}",
107111
+ "name": "ref",
107112
+ "parent": {
107113
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
107114
+ "name": "RefAttributes"
107115
+ },
107116
+ "declarations": [
107117
+ {
107118
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
107119
+ "name": "RefAttributes"
107120
+ }
107121
+ ],
107122
+ "required": false,
107123
+ "type": {
107124
+ "name": "Ref<HTMLSpanElement>"
107125
+ }
107126
+ },
107127
+ "key": {
107128
+ "defaultValue": null,
107129
+ "description": "",
107130
+ "name": "key",
107131
+ "parent": {
107132
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
107133
+ "name": "Attributes"
107134
+ },
107135
+ "declarations": [
107136
+ {
107137
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
107138
+ "name": "Attributes"
107139
+ }
107140
+ ],
107141
+ "required": false,
107142
+ "type": {
107143
+ "name": "Key | null"
107144
+ }
107145
+ },
107146
+ "children": {
107147
+ "defaultValue": null,
107148
+ "description": "",
107149
+ "name": "children",
107150
+ "declarations": [
107151
+ {
107152
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
107153
+ "name": "TypeLiteral"
107154
+ }
107155
+ ],
107156
+ "required": false,
107157
+ "type": {
107158
+ "name": "ReactNode"
107159
+ }
107160
+ }
107161
+ }
107162
+ },
106983
107163
  {
106984
107164
  "tags": {
106985
107165
  "flr-generate": "all"
@@ -195659,25 +195839,6 @@
195659
195839
  "name": "boolean"
195660
195840
  }
195661
195841
  },
195662
- "preventFocusOnPress": {
195663
- "defaultValue": null,
195664
- "description": "Whether to prevent focus from moving to the button when pressing it.\n\nCaution, this can make the button inaccessible and should only be used when alternative keyboard interaction is provided,\nsuch as ComboBox's MenuTrigger or a NumberField's increment/decrement control.",
195665
- "name": "preventFocusOnPress",
195666
- "parent": {
195667
- "fileName": "flow/node_modules/.pnpm/@react-types+button@3.14.1_react@19.2.4/node_modules/@react-types/button/src/index.d.ts",
195668
- "name": "AriaBaseButtonProps"
195669
- },
195670
- "declarations": [
195671
- {
195672
- "fileName": "flow/node_modules/.pnpm/@react-types+button@3.14.1_react@19.2.4/node_modules/@react-types/button/src/index.d.ts",
195673
- "name": "AriaBaseButtonProps"
195674
- }
195675
- ],
195676
- "required": false,
195677
- "type": {
195678
- "name": "boolean"
195679
- }
195680
- },
195681
195842
  "variant": {
195682
195843
  "defaultValue": {
195683
195844
  "value": "\"solid\""
@@ -195699,6 +195860,25 @@
195699
195860
  "name": "\"solid\" | \"plain\" | \"soft\" | \"outline\""
195700
195861
  }
195701
195862
  },
195863
+ "preventFocusOnPress": {
195864
+ "defaultValue": null,
195865
+ "description": "Whether to prevent focus from moving to the button when pressing it.\n\nCaution, this can make the button inaccessible and should only be used when alternative keyboard interaction is provided,\nsuch as ComboBox's MenuTrigger or a NumberField's increment/decrement control.",
195866
+ "name": "preventFocusOnPress",
195867
+ "parent": {
195868
+ "fileName": "flow/node_modules/.pnpm/@react-types+button@3.14.1_react@19.2.4/node_modules/@react-types/button/src/index.d.ts",
195869
+ "name": "AriaBaseButtonProps"
195870
+ },
195871
+ "declarations": [
195872
+ {
195873
+ "fileName": "flow/node_modules/.pnpm/@react-types+button@3.14.1_react@19.2.4/node_modules/@react-types/button/src/index.d.ts",
195874
+ "name": "AriaBaseButtonProps"
195875
+ }
195876
+ ],
195877
+ "required": false,
195878
+ "type": {
195879
+ "name": "boolean"
195880
+ }
195881
+ },
195702
195882
  "ariaSlot": {
195703
195883
  "defaultValue": null,
195704
195884
  "description": "@internal",
@@ -258455,10 +258635,10 @@
258455
258635
  "name": "() => ArrayIterator<any>"
258456
258636
  }
258457
258637
  },
258458
- "__@unscopables@3218": {
258638
+ "__@unscopables@3219": {
258459
258639
  "defaultValue": null,
258460
258640
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
258461
- "name": "__@unscopables@3218",
258641
+ "name": "__@unscopables@3219",
258462
258642
  "parent": {
258463
258643
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
258464
258644
  "name": "Array"
@@ -259291,10 +259471,10 @@
259291
259471
  "name": "() => ArrayIterator<any>"
259292
259472
  }
259293
259473
  },
259294
- "__@unscopables@3218": {
259474
+ "__@unscopables@3219": {
259295
259475
  "defaultValue": null,
259296
259476
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
259297
- "name": "__@unscopables@3218",
259477
+ "name": "__@unscopables@3219",
259298
259478
  "parent": {
259299
259479
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
259300
259480
  "name": "Array"
@@ -260127,10 +260307,10 @@
260127
260307
  "name": "() => ArrayIterator<any>"
260128
260308
  }
260129
260309
  },
260130
- "__@unscopables@3218": {
260310
+ "__@unscopables@3219": {
260131
260311
  "defaultValue": null,
260132
260312
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
260133
- "name": "__@unscopables@3218",
260313
+ "name": "__@unscopables@3219",
260134
260314
  "parent": {
260135
260315
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
260136
260316
  "name": "Array"
@@ -260963,10 +261143,10 @@
260963
261143
  "name": "() => ArrayIterator<any>"
260964
261144
  }
260965
261145
  },
260966
- "__@unscopables@3218": {
261146
+ "__@unscopables@3219": {
260967
261147
  "defaultValue": null,
260968
261148
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
260969
- "name": "__@unscopables@3218",
261149
+ "name": "__@unscopables@3219",
260970
261150
  "parent": {
260971
261151
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
260972
261152
  "name": "Array"
@@ -261799,10 +261979,10 @@
261799
261979
  "name": "() => ArrayIterator<any>"
261800
261980
  }
261801
261981
  },
261802
- "__@unscopables@3218": {
261982
+ "__@unscopables@3219": {
261803
261983
  "defaultValue": null,
261804
261984
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
261805
- "name": "__@unscopables@3218",
261985
+ "name": "__@unscopables@3219",
261806
261986
  "parent": {
261807
261987
  "fileName": "flow/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
261808
261988
  "name": "Array"
@@ -270255,172 +270435,6 @@
270255
270435
  "methods": [],
270256
270436
  "props": {}
270257
270437
  },
270258
- {
270259
- "tags": {},
270260
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270261
- "description": "",
270262
- "displayName": "FormContext",
270263
- "methods": [],
270264
- "props": {
270265
- "value": {
270266
- "defaultValue": null,
270267
- "description": "",
270268
- "name": "value",
270269
- "parent": {
270270
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
270271
- "name": "ProviderProps"
270272
- },
270273
- "declarations": [
270274
- {
270275
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
270276
- "name": "ProviderProps"
270277
- }
270278
- ],
270279
- "required": true,
270280
- "type": {
270281
- "name": "FormContext<FieldValues> | undefined"
270282
- }
270283
- },
270284
- "children": {
270285
- "defaultValue": null,
270286
- "description": "",
270287
- "name": "children",
270288
- "parent": {
270289
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
270290
- "name": "DOMAttributes"
270291
- },
270292
- "declarations": [
270293
- {
270294
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
270295
- "name": "DOMAttributes"
270296
- }
270297
- ],
270298
- "required": false,
270299
- "type": {
270300
- "name": "ReactNode"
270301
- }
270302
- }
270303
- }
270304
- },
270305
- {
270306
- "tags": {},
270307
- "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270308
- "description": "",
270309
- "displayName": "FormContextProvider",
270310
- "methods": [],
270311
- "props": {
270312
- "form": {
270313
- "defaultValue": null,
270314
- "description": "",
270315
- "name": "form",
270316
- "parent": {
270317
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270318
- "name": "FormContextProviderProps"
270319
- },
270320
- "declarations": [
270321
- {
270322
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270323
- "name": "FormContextProviderProps"
270324
- }
270325
- ],
270326
- "required": true,
270327
- "type": {
270328
- "name": "UseFormReturn"
270329
- }
270330
- },
270331
- "id": {
270332
- "defaultValue": null,
270333
- "description": "",
270334
- "name": "id",
270335
- "parent": {
270336
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270337
- "name": "FormContextProviderProps"
270338
- },
270339
- "declarations": [
270340
- {
270341
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270342
- "name": "FormContextProviderProps"
270343
- }
270344
- ],
270345
- "required": true,
270346
- "type": {
270347
- "name": "string"
270348
- }
270349
- },
270350
- "isReadOnly": {
270351
- "defaultValue": null,
270352
- "description": "",
270353
- "name": "isReadOnly",
270354
- "parent": {
270355
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270356
- "name": "FormContextProviderProps"
270357
- },
270358
- "declarations": [
270359
- {
270360
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270361
- "name": "FormContextProviderProps"
270362
- }
270363
- ],
270364
- "required": false,
270365
- "type": {
270366
- "name": "boolean"
270367
- }
270368
- },
270369
- "onAfterSuccessFeedback": {
270370
- "defaultValue": null,
270371
- "description": "",
270372
- "name": "onAfterSuccessFeedback",
270373
- "parent": {
270374
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270375
- "name": "FormContextProviderProps"
270376
- },
270377
- "declarations": [
270378
- {
270379
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270380
- "name": "FormContextProviderProps"
270381
- }
270382
- ],
270383
- "required": false,
270384
- "type": {
270385
- "name": "AfterFormSubmitCallback"
270386
- }
270387
- },
270388
- "rootErrorController": {
270389
- "defaultValue": null,
270390
- "description": "",
270391
- "name": "rootErrorController",
270392
- "parent": {
270393
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270394
- "name": "FormContextProviderProps"
270395
- },
270396
- "declarations": [
270397
- {
270398
- "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
270399
- "name": "FormContextProviderProps"
270400
- }
270401
- ],
270402
- "required": true,
270403
- "type": {
270404
- "name": "FormRootErrorController"
270405
- }
270406
- },
270407
- "children": {
270408
- "defaultValue": null,
270409
- "description": "",
270410
- "name": "children",
270411
- "declarations": [
270412
- {
270413
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
270414
- "name": "TypeLiteral"
270415
- }
270416
- ],
270417
- "required": false,
270418
- "type": {
270419
- "name": "ReactNode"
270420
- }
270421
- }
270422
- }
270423
- },
270424
270438
  {
270425
270439
  "tags": {},
270426
270440
  "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormAction/FormSubmitAction.tsx",
@@ -276903,6 +276917,172 @@
276903
276917
  }
276904
276918
  }
276905
276919
  },
276920
+ {
276921
+ "tags": {},
276922
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
276923
+ "description": "",
276924
+ "displayName": "FormContext",
276925
+ "methods": [],
276926
+ "props": {
276927
+ "value": {
276928
+ "defaultValue": null,
276929
+ "description": "",
276930
+ "name": "value",
276931
+ "parent": {
276932
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
276933
+ "name": "ProviderProps"
276934
+ },
276935
+ "declarations": [
276936
+ {
276937
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
276938
+ "name": "ProviderProps"
276939
+ }
276940
+ ],
276941
+ "required": true,
276942
+ "type": {
276943
+ "name": "FormContext<FieldValues> | undefined"
276944
+ }
276945
+ },
276946
+ "children": {
276947
+ "defaultValue": null,
276948
+ "description": "",
276949
+ "name": "children",
276950
+ "parent": {
276951
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
276952
+ "name": "DOMAttributes"
276953
+ },
276954
+ "declarations": [
276955
+ {
276956
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
276957
+ "name": "DOMAttributes"
276958
+ }
276959
+ ],
276960
+ "required": false,
276961
+ "type": {
276962
+ "name": "ReactNode"
276963
+ }
276964
+ }
276965
+ }
276966
+ },
276967
+ {
276968
+ "tags": {},
276969
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
276970
+ "description": "",
276971
+ "displayName": "FormContextProvider",
276972
+ "methods": [],
276973
+ "props": {
276974
+ "form": {
276975
+ "defaultValue": null,
276976
+ "description": "",
276977
+ "name": "form",
276978
+ "parent": {
276979
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
276980
+ "name": "FormContextProviderProps"
276981
+ },
276982
+ "declarations": [
276983
+ {
276984
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
276985
+ "name": "FormContextProviderProps"
276986
+ }
276987
+ ],
276988
+ "required": true,
276989
+ "type": {
276990
+ "name": "UseFormReturn"
276991
+ }
276992
+ },
276993
+ "id": {
276994
+ "defaultValue": null,
276995
+ "description": "",
276996
+ "name": "id",
276997
+ "parent": {
276998
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
276999
+ "name": "FormContextProviderProps"
277000
+ },
277001
+ "declarations": [
277002
+ {
277003
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277004
+ "name": "FormContextProviderProps"
277005
+ }
277006
+ ],
277007
+ "required": true,
277008
+ "type": {
277009
+ "name": "string"
277010
+ }
277011
+ },
277012
+ "isReadOnly": {
277013
+ "defaultValue": null,
277014
+ "description": "",
277015
+ "name": "isReadOnly",
277016
+ "parent": {
277017
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277018
+ "name": "FormContextProviderProps"
277019
+ },
277020
+ "declarations": [
277021
+ {
277022
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277023
+ "name": "FormContextProviderProps"
277024
+ }
277025
+ ],
277026
+ "required": false,
277027
+ "type": {
277028
+ "name": "boolean"
277029
+ }
277030
+ },
277031
+ "onAfterSuccessFeedback": {
277032
+ "defaultValue": null,
277033
+ "description": "",
277034
+ "name": "onAfterSuccessFeedback",
277035
+ "parent": {
277036
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277037
+ "name": "FormContextProviderProps"
277038
+ },
277039
+ "declarations": [
277040
+ {
277041
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277042
+ "name": "FormContextProviderProps"
277043
+ }
277044
+ ],
277045
+ "required": false,
277046
+ "type": {
277047
+ "name": "AfterFormSubmitCallback"
277048
+ }
277049
+ },
277050
+ "rootErrorController": {
277051
+ "defaultValue": null,
277052
+ "description": "",
277053
+ "name": "rootErrorController",
277054
+ "parent": {
277055
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277056
+ "name": "FormContextProviderProps"
277057
+ },
277058
+ "declarations": [
277059
+ {
277060
+ "fileName": "components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.tsx",
277061
+ "name": "FormContextProviderProps"
277062
+ }
277063
+ ],
277064
+ "required": true,
277065
+ "type": {
277066
+ "name": "FormRootErrorController"
277067
+ }
277068
+ },
277069
+ "children": {
277070
+ "defaultValue": null,
277071
+ "description": "",
277072
+ "name": "children",
277073
+ "declarations": [
277074
+ {
277075
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
277076
+ "name": "TypeLiteral"
277077
+ }
277078
+ ],
277079
+ "required": false,
277080
+ "type": {
277081
+ "name": "ReactNode"
277082
+ }
277083
+ }
277084
+ }
277085
+ },
276906
277086
  {
276907
277087
  "tags": {},
276908
277088
  "filePath": "src/integrations/nextjs/components/RouterProvider/RouterProvider.tsx",
@@ -284398,72 +284578,6 @@
284398
284578
  }
284399
284579
  }
284400
284580
  },
284401
- {
284402
- "tags": {},
284403
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Tabs/components/TabList/TabList.tsx",
284404
- "description": "",
284405
- "displayName": "TabList",
284406
- "methods": [],
284407
- "props": {
284408
- "selection": {
284409
- "defaultValue": null,
284410
- "description": "",
284411
- "name": "selection",
284412
- "parent": {
284413
- "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
284414
- "name": "Props"
284415
- },
284416
- "declarations": [
284417
- {
284418
- "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
284419
- "name": "Props"
284420
- }
284421
- ],
284422
- "required": true,
284423
- "type": {
284424
- "name": "Key | undefined"
284425
- }
284426
- },
284427
- "onContextMenuSelectionChange": {
284428
- "defaultValue": null,
284429
- "description": "",
284430
- "name": "onContextMenuSelectionChange",
284431
- "parent": {
284432
- "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
284433
- "name": "Props"
284434
- },
284435
- "declarations": [
284436
- {
284437
- "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
284438
- "name": "Props"
284439
- }
284440
- ],
284441
- "required": true,
284442
- "type": {
284443
- "name": "(key: Key) => void"
284444
- }
284445
- },
284446
- "disabledKeys": {
284447
- "defaultValue": null,
284448
- "description": "",
284449
- "name": "disabledKeys",
284450
- "parent": {
284451
- "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
284452
- "name": "Props"
284453
- },
284454
- "declarations": [
284455
- {
284456
- "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
284457
- "name": "Props"
284458
- }
284459
- ],
284460
- "required": false,
284461
- "type": {
284462
- "name": "Iterable<Key>"
284463
- }
284464
- }
284465
- }
284466
- },
284467
284581
  {
284468
284582
  "tags": {
284469
284583
  "flr-generate": "all"
@@ -285957,6 +286071,72 @@
285957
286071
  }
285958
286072
  }
285959
286073
  },
286074
+ {
286075
+ "tags": {},
286076
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Tabs/components/TabList/TabList.tsx",
286077
+ "description": "",
286078
+ "displayName": "TabList",
286079
+ "methods": [],
286080
+ "props": {
286081
+ "selection": {
286082
+ "defaultValue": null,
286083
+ "description": "",
286084
+ "name": "selection",
286085
+ "parent": {
286086
+ "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
286087
+ "name": "Props"
286088
+ },
286089
+ "declarations": [
286090
+ {
286091
+ "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
286092
+ "name": "Props"
286093
+ }
286094
+ ],
286095
+ "required": true,
286096
+ "type": {
286097
+ "name": "Key | undefined"
286098
+ }
286099
+ },
286100
+ "onContextMenuSelectionChange": {
286101
+ "defaultValue": null,
286102
+ "description": "",
286103
+ "name": "onContextMenuSelectionChange",
286104
+ "parent": {
286105
+ "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
286106
+ "name": "Props"
286107
+ },
286108
+ "declarations": [
286109
+ {
286110
+ "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
286111
+ "name": "Props"
286112
+ }
286113
+ ],
286114
+ "required": true,
286115
+ "type": {
286116
+ "name": "(key: Key) => void"
286117
+ }
286118
+ },
286119
+ "disabledKeys": {
286120
+ "defaultValue": null,
286121
+ "description": "",
286122
+ "name": "disabledKeys",
286123
+ "parent": {
286124
+ "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
286125
+ "name": "Props"
286126
+ },
286127
+ "declarations": [
286128
+ {
286129
+ "fileName": "components/src/components/Tabs/components/TabList/TabList.tsx",
286130
+ "name": "Props"
286131
+ }
286132
+ ],
286133
+ "required": false,
286134
+ "type": {
286135
+ "name": "Iterable<Key>"
286136
+ }
286137
+ }
286138
+ }
286139
+ },
285960
286140
  {
285961
286141
  "tags": {
285962
286142
  "flr-generate": "all"
@@ -301359,34 +301539,6 @@
301359
301539
  }
301360
301540
  }
301361
301541
  },
301362
- {
301363
- "tags": {},
301364
- "filePath": "src/components/Popover/components/PopoverTip/PopoverTip.tsx",
301365
- "description": "",
301366
- "displayName": "PopoverTip",
301367
- "methods": [],
301368
- "props": {
301369
- "className": {
301370
- "defaultValue": null,
301371
- "description": "The elements class name.",
301372
- "name": "className",
301373
- "parent": {
301374
- "fileName": "components/src/lib/types/props.ts",
301375
- "name": "PropsWithClassName"
301376
- },
301377
- "declarations": [
301378
- {
301379
- "fileName": "components/src/lib/types/props.ts",
301380
- "name": "PropsWithClassName"
301381
- }
301382
- ],
301383
- "required": false,
301384
- "type": {
301385
- "name": "string"
301386
- }
301387
- }
301388
- }
301389
- },
301390
301542
  {
301391
301543
  "tags": {},
301392
301544
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Popover/components/PopoverTrigger/PopoverTrigger.tsx",
@@ -301525,6 +301677,34 @@
301525
301677
  }
301526
301678
  }
301527
301679
  },
301680
+ {
301681
+ "tags": {},
301682
+ "filePath": "src/components/Popover/components/PopoverTip/PopoverTip.tsx",
301683
+ "description": "",
301684
+ "displayName": "PopoverTip",
301685
+ "methods": [],
301686
+ "props": {
301687
+ "className": {
301688
+ "defaultValue": null,
301689
+ "description": "The elements class name.",
301690
+ "name": "className",
301691
+ "parent": {
301692
+ "fileName": "components/src/lib/types/props.ts",
301693
+ "name": "PropsWithClassName"
301694
+ },
301695
+ "declarations": [
301696
+ {
301697
+ "fileName": "components/src/lib/types/props.ts",
301698
+ "name": "PropsWithClassName"
301699
+ }
301700
+ ],
301701
+ "required": false,
301702
+ "type": {
301703
+ "name": "string"
301704
+ }
301705
+ }
301706
+ }
301707
+ },
301528
301708
  {
301529
301709
  "tags": {
301530
301710
  "flr-generate": "all"
@@ -307727,14 +307907,6 @@
307727
307907
  "methods": [],
307728
307908
  "props": {}
307729
307909
  },
307730
- {
307731
- "tags": {},
307732
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.tsx",
307733
- "description": "",
307734
- "displayName": "ConfirmUnsavedChangesModal",
307735
- "methods": [],
307736
- "props": {}
307737
- },
307738
307910
  {
307739
307911
  "tags": {},
307740
307912
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
@@ -307873,6 +308045,14 @@
307873
308045
  }
307874
308046
  }
307875
308047
  },
308048
+ {
308049
+ "tags": {},
308050
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.tsx",
308051
+ "description": "",
308052
+ "displayName": "ConfirmUnsavedChangesModal",
308053
+ "methods": [],
308054
+ "props": {}
308055
+ },
307876
308056
  {
307877
308057
  "tags": {
307878
308058
  "flr-generate": "all"
@@ -345483,34 +345663,6 @@
345483
345663
  }
345484
345664
  }
345485
345665
  },
345486
- {
345487
- "tags": {},
345488
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Items/components/Item/components/ListItemSkeletonView/ListItemSkeletonView.tsx",
345489
- "description": "",
345490
- "displayName": "ListItemSkeletonView",
345491
- "methods": [],
345492
- "props": {
345493
- "viewMode": {
345494
- "defaultValue": null,
345495
- "description": "",
345496
- "name": "viewMode",
345497
- "parent": {
345498
- "fileName": "components/src/components/List/components/Items/components/Item/components/ListItemSkeletonView/ListItemSkeletonView.tsx",
345499
- "name": "ListItemSkeletonViewProps"
345500
- },
345501
- "declarations": [
345502
- {
345503
- "fileName": "components/src/components/List/components/Items/components/Item/components/ListItemSkeletonView/ListItemSkeletonView.tsx",
345504
- "name": "ListItemSkeletonViewProps"
345505
- }
345506
- ],
345507
- "required": true,
345508
- "type": {
345509
- "name": "ListViewMode"
345510
- }
345511
- }
345512
- }
345513
- },
345514
345666
  {
345515
345667
  "tags": {},
345516
345668
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Items/components/Item/components/OptionsButton/index.tsx",
@@ -345596,5 +345748,33 @@
345596
345748
  }
345597
345749
  }
345598
345750
  }
345751
+ },
345752
+ {
345753
+ "tags": {},
345754
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Items/components/Item/components/ListItemSkeletonView/ListItemSkeletonView.tsx",
345755
+ "description": "",
345756
+ "displayName": "ListItemSkeletonView",
345757
+ "methods": [],
345758
+ "props": {
345759
+ "viewMode": {
345760
+ "defaultValue": null,
345761
+ "description": "",
345762
+ "name": "viewMode",
345763
+ "parent": {
345764
+ "fileName": "components/src/components/List/components/Items/components/Item/components/ListItemSkeletonView/ListItemSkeletonView.tsx",
345765
+ "name": "ListItemSkeletonViewProps"
345766
+ },
345767
+ "declarations": [
345768
+ {
345769
+ "fileName": "components/src/components/List/components/Items/components/Item/components/ListItemSkeletonView/ListItemSkeletonView.tsx",
345770
+ "name": "ListItemSkeletonViewProps"
345771
+ }
345772
+ ],
345773
+ "required": true,
345774
+ "type": {
345775
+ "name": "ListViewMode"
345776
+ }
345777
+ }
345778
+ }
345599
345779
  }
345600
345780
  ]