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

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 +6 -0
  2. package/dist/assets/doc-properties.json +478 -298
  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",
@@ -222394,6 +222574,51 @@
222394
222574
  }
222395
222575
  }
222396
222576
  },
222577
+ {
222578
+ "tags": {
222579
+ "flr-generate": "all"
222580
+ },
222581
+ "filePath": "src/components/BigNumber/BigNumber.tsx",
222582
+ "description": "",
222583
+ "displayName": "BigNumber",
222584
+ "methods": [],
222585
+ "props": {
222586
+ "children": {
222587
+ "defaultValue": null,
222588
+ "description": "",
222589
+ "name": "children",
222590
+ "declarations": [
222591
+ {
222592
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
222593
+ "name": "TypeLiteral"
222594
+ }
222595
+ ],
222596
+ "required": false,
222597
+ "type": {
222598
+ "name": "ReactNode"
222599
+ }
222600
+ },
222601
+ "className": {
222602
+ "defaultValue": null,
222603
+ "description": "The elements class name.",
222604
+ "name": "className",
222605
+ "parent": {
222606
+ "fileName": "components/src/lib/types/props.ts",
222607
+ "name": "PropsWithClassName"
222608
+ },
222609
+ "declarations": [
222610
+ {
222611
+ "fileName": "components/src/lib/types/props.ts",
222612
+ "name": "PropsWithClassName"
222613
+ }
222614
+ ],
222615
+ "required": false,
222616
+ "type": {
222617
+ "name": "string"
222618
+ }
222619
+ }
222620
+ }
222621
+ },
222397
222622
  {
222398
222623
  "tags": {
222399
222624
  "flr-generate": "all"
@@ -224003,51 +224228,6 @@
224003
224228
  }
224004
224229
  }
224005
224230
  },
224006
- {
224007
- "tags": {
224008
- "flr-generate": "all"
224009
- },
224010
- "filePath": "src/components/BigNumber/BigNumber.tsx",
224011
- "description": "",
224012
- "displayName": "BigNumber",
224013
- "methods": [],
224014
- "props": {
224015
- "children": {
224016
- "defaultValue": null,
224017
- "description": "",
224018
- "name": "children",
224019
- "declarations": [
224020
- {
224021
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
224022
- "name": "TypeLiteral"
224023
- }
224024
- ],
224025
- "required": false,
224026
- "type": {
224027
- "name": "ReactNode"
224028
- }
224029
- },
224030
- "className": {
224031
- "defaultValue": null,
224032
- "description": "The elements class name.",
224033
- "name": "className",
224034
- "parent": {
224035
- "fileName": "components/src/lib/types/props.ts",
224036
- "name": "PropsWithClassName"
224037
- },
224038
- "declarations": [
224039
- {
224040
- "fileName": "components/src/lib/types/props.ts",
224041
- "name": "PropsWithClassName"
224042
- }
224043
- ],
224044
- "required": false,
224045
- "type": {
224046
- "name": "string"
224047
- }
224048
- }
224049
- }
224050
- },
224051
224231
  {
224052
224232
  "tags": {
224053
224233
  "flr-generate": "all"
@@ -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"
@@ -276903,30 +277083,6 @@
276903
277083
  }
276904
277084
  }
276905
277085
  },
276906
- {
276907
- "tags": {},
276908
- "filePath": "src/integrations/nextjs/components/RouterProvider/RouterProvider.tsx",
276909
- "description": "",
276910
- "displayName": "RouterProvider",
276911
- "methods": [],
276912
- "props": {
276913
- "children": {
276914
- "defaultValue": null,
276915
- "description": "",
276916
- "name": "children",
276917
- "declarations": [
276918
- {
276919
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
276920
- "name": "TypeLiteral"
276921
- }
276922
- ],
276923
- "required": false,
276924
- "type": {
276925
- "name": "ReactNode"
276926
- }
276927
- }
276928
- }
276929
- },
276930
277086
  {
276931
277087
  "tags": {
276932
277088
  "deprecated": "Use RouterProvider instead"
@@ -282455,6 +282611,30 @@
282455
282611
  }
282456
282612
  }
282457
282613
  },
282614
+ {
282615
+ "tags": {},
282616
+ "filePath": "src/integrations/nextjs/components/RouterProvider/RouterProvider.tsx",
282617
+ "description": "",
282618
+ "displayName": "RouterProvider",
282619
+ "methods": [],
282620
+ "props": {
282621
+ "children": {
282622
+ "defaultValue": null,
282623
+ "description": "",
282624
+ "name": "children",
282625
+ "declarations": [
282626
+ {
282627
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
282628
+ "name": "TypeLiteral"
282629
+ }
282630
+ ],
282631
+ "required": false,
282632
+ "type": {
282633
+ "name": "ReactNode"
282634
+ }
282635
+ }
282636
+ }
282637
+ },
282458
282638
  {
282459
282639
  "tags": {
282460
282640
  "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"
@@ -301703,55 +301883,6 @@
301703
301883
  }
301704
301884
  }
301705
301885
  },
301706
- {
301707
- "tags": {
301708
- "internal": ""
301709
- },
301710
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301711
- "description": "",
301712
- "displayName": "ValidationResultEntry",
301713
- "methods": [],
301714
- "props": {
301715
- "result": {
301716
- "defaultValue": null,
301717
- "description": "",
301718
- "name": "result",
301719
- "parent": {
301720
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301721
- "name": "Props"
301722
- },
301723
- "declarations": [
301724
- {
301725
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301726
- "name": "Props"
301727
- }
301728
- ],
301729
- "required": true,
301730
- "type": {
301731
- "name": "Partial<RuleValidationResult>"
301732
- }
301733
- },
301734
- "unspecifiedRules": {
301735
- "defaultValue": null,
301736
- "description": "",
301737
- "name": "unspecifiedRules",
301738
- "parent": {
301739
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301740
- "name": "Props"
301741
- },
301742
- "declarations": [
301743
- {
301744
- "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301745
- "name": "Props"
301746
- }
301747
- ],
301748
- "required": false,
301749
- "type": {
301750
- "name": "boolean"
301751
- }
301752
- }
301753
- }
301754
- },
301755
301886
  {
301756
301887
  "tags": {},
301757
301888
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.tsx",
@@ -301837,6 +301968,55 @@
301837
301968
  }
301838
301969
  }
301839
301970
  },
301971
+ {
301972
+ "tags": {
301973
+ "internal": ""
301974
+ },
301975
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301976
+ "description": "",
301977
+ "displayName": "ValidationResultEntry",
301978
+ "methods": [],
301979
+ "props": {
301980
+ "result": {
301981
+ "defaultValue": null,
301982
+ "description": "",
301983
+ "name": "result",
301984
+ "parent": {
301985
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301986
+ "name": "Props"
301987
+ },
301988
+ "declarations": [
301989
+ {
301990
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
301991
+ "name": "Props"
301992
+ }
301993
+ ],
301994
+ "required": true,
301995
+ "type": {
301996
+ "name": "Partial<RuleValidationResult>"
301997
+ }
301998
+ },
301999
+ "unspecifiedRules": {
302000
+ "defaultValue": null,
302001
+ "description": "",
302002
+ "name": "unspecifiedRules",
302003
+ "parent": {
302004
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
302005
+ "name": "Props"
302006
+ },
302007
+ "declarations": [
302008
+ {
302009
+ "fileName": "components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.tsx",
302010
+ "name": "Props"
302011
+ }
302012
+ ],
302013
+ "required": false,
302014
+ "type": {
302015
+ "name": "boolean"
302016
+ }
302017
+ }
302018
+ }
302019
+ },
301840
302020
  {
301841
302021
  "tags": {
301842
302022
  "internal": ""
@@ -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"
@@ -314691,6 +314871,93 @@
314691
314871
  }
314692
314872
  }
314693
314873
  },
314874
+ {
314875
+ "tags": {
314876
+ "flr-generate": "all"
314877
+ },
314878
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/CartesianGrid/CartesianGrid.tsx",
314879
+ "description": "",
314880
+ "displayName": "CartesianGrid",
314881
+ "methods": [],
314882
+ "props": {
314883
+ "className": {
314884
+ "defaultValue": null,
314885
+ "description": "",
314886
+ "name": "className",
314887
+ "parent": {
314888
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
314889
+ "name": "HTMLAttributes"
314890
+ },
314891
+ "declarations": [
314892
+ {
314893
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
314894
+ "name": "HTMLAttributes"
314895
+ }
314896
+ ],
314897
+ "required": false,
314898
+ "type": {
314899
+ "name": "string"
314900
+ }
314901
+ },
314902
+ "horizontal": {
314903
+ "defaultValue": null,
314904
+ "description": "If set false, no horizontal grid lines will be drawn.\n@defaultValue true",
314905
+ "name": "horizontal",
314906
+ "parent": {
314907
+ "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
314908
+ "name": "CartesianGridProps"
314909
+ },
314910
+ "declarations": [
314911
+ {
314912
+ "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
314913
+ "name": "CartesianGridProps"
314914
+ }
314915
+ ],
314916
+ "required": false,
314917
+ "type": {
314918
+ "name": "GridLineType"
314919
+ }
314920
+ },
314921
+ "vertical": {
314922
+ "defaultValue": null,
314923
+ "description": "If set false, no vertical grid lines will be drawn.\n@defaultValue true",
314924
+ "name": "vertical",
314925
+ "parent": {
314926
+ "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
314927
+ "name": "CartesianGridProps"
314928
+ },
314929
+ "declarations": [
314930
+ {
314931
+ "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
314932
+ "name": "CartesianGridProps"
314933
+ }
314934
+ ],
314935
+ "required": false,
314936
+ "type": {
314937
+ "name": "GridLineType"
314938
+ }
314939
+ },
314940
+ "strokeDasharray": {
314941
+ "defaultValue": null,
314942
+ "description": "",
314943
+ "name": "strokeDasharray",
314944
+ "parent": {
314945
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
314946
+ "name": "SVGAttributes"
314947
+ },
314948
+ "declarations": [
314949
+ {
314950
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
314951
+ "name": "SVGAttributes"
314952
+ }
314953
+ ],
314954
+ "required": false,
314955
+ "type": {
314956
+ "name": "string | number"
314957
+ }
314958
+ }
314959
+ }
314960
+ },
314694
314961
  {
314695
314962
  "tags": {},
314696
314963
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/ChartLegend/LegendContent.tsx",
@@ -323590,93 +323857,6 @@
323590
323857
  }
323591
323858
  }
323592
323859
  },
323593
- {
323594
- "tags": {
323595
- "flr-generate": "all"
323596
- },
323597
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/CartesianGrid/CartesianGrid.tsx",
323598
- "description": "",
323599
- "displayName": "CartesianGrid",
323600
- "methods": [],
323601
- "props": {
323602
- "className": {
323603
- "defaultValue": null,
323604
- "description": "",
323605
- "name": "className",
323606
- "parent": {
323607
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
323608
- "name": "HTMLAttributes"
323609
- },
323610
- "declarations": [
323611
- {
323612
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
323613
- "name": "HTMLAttributes"
323614
- }
323615
- ],
323616
- "required": false,
323617
- "type": {
323618
- "name": "string"
323619
- }
323620
- },
323621
- "horizontal": {
323622
- "defaultValue": null,
323623
- "description": "If set false, no horizontal grid lines will be drawn.\n@defaultValue true",
323624
- "name": "horizontal",
323625
- "parent": {
323626
- "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
323627
- "name": "CartesianGridProps"
323628
- },
323629
- "declarations": [
323630
- {
323631
- "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
323632
- "name": "CartesianGridProps"
323633
- }
323634
- ],
323635
- "required": false,
323636
- "type": {
323637
- "name": "GridLineType"
323638
- }
323639
- },
323640
- "vertical": {
323641
- "defaultValue": null,
323642
- "description": "If set false, no vertical grid lines will be drawn.\n@defaultValue true",
323643
- "name": "vertical",
323644
- "parent": {
323645
- "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
323646
- "name": "CartesianGridProps"
323647
- },
323648
- "declarations": [
323649
- {
323650
- "fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.10_react-dom@19.2.4_react@19.2.4__react-is@19.2.0_react@19.2.4_redux@5.0.1/node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
323651
- "name": "CartesianGridProps"
323652
- }
323653
- ],
323654
- "required": false,
323655
- "type": {
323656
- "name": "GridLineType"
323657
- }
323658
- },
323659
- "strokeDasharray": {
323660
- "defaultValue": null,
323661
- "description": "",
323662
- "name": "strokeDasharray",
323663
- "parent": {
323664
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
323665
- "name": "SVGAttributes"
323666
- },
323667
- "declarations": [
323668
- {
323669
- "fileName": "flow/node_modules/.pnpm/@types+react@19.2.10/node_modules/@types/react/index.d.ts",
323670
- "name": "SVGAttributes"
323671
- }
323672
- ],
323673
- "required": false,
323674
- "type": {
323675
- "name": "string | number"
323676
- }
323677
- }
323678
- }
323679
- },
323680
323860
  {
323681
323861
  "tags": {},
323682
323862
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/AreaDot/AreaDot.tsx",
@@ -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
  ]