@mittwald/flow-react-components 0.2.0-alpha.697 → 0.2.0-alpha.699

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.2.0-alpha.699](https://github.com/mittwald/flow/compare/0.2.0-alpha.698...0.2.0-alpha.699) (2026-02-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **Modal:** refactor modal technical placement ([#2332](https://github.com/mittwald/flow/issues/2332)) ([11ea4df](https://github.com/mittwald/flow/commit/11ea4df36939f85cbacffaf099e5be222b501ac4))
11
+
12
+ # [0.2.0-alpha.698](https://github.com/mittwald/flow/compare/0.2.0-alpha.697...0.2.0-alpha.698) (2026-02-25)
13
+
14
+ ### Features
15
+
16
+ * **List:** update auto submit delay ([#2341](https://github.com/mittwald/flow/issues/2341)) ([ff4efc2](https://github.com/mittwald/flow/commit/ff4efc220b2344571295190d9dd5123baba4e677))
17
+
6
18
  # [0.2.0-alpha.697](https://github.com/mittwald/flow/compare/0.2.0-alpha.696...0.2.0-alpha.697) (2026-02-25)
7
19
 
8
20
  **Note:** Version bump only for package @mittwald/flow-react-components
@@ -224493,9 +224493,9 @@
224493
224493
  "tags": {
224494
224494
  "flr-generate": "all"
224495
224495
  },
224496
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Align/Align.tsx",
224496
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Autocomplete/Autocomplete.tsx",
224497
224497
  "description": "",
224498
- "displayName": "Align",
224498
+ "displayName": "Autocomplete",
224499
224499
  "methods": [],
224500
224500
  "props": {
224501
224501
  "children": {
@@ -224607,6 +224607,86 @@
224607
224607
  "type": {
224608
224608
  "name": "Key | null"
224609
224609
  }
224610
+ },
224611
+ "slot": {
224612
+ "defaultValue": null,
224613
+ "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.",
224614
+ "name": "slot",
224615
+ "parent": {
224616
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
224617
+ "name": "SlotProps"
224618
+ },
224619
+ "declarations": [
224620
+ {
224621
+ "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
224622
+ "name": "SlotProps"
224623
+ }
224624
+ ],
224625
+ "required": false,
224626
+ "type": {
224627
+ "name": "string | null"
224628
+ }
224629
+ },
224630
+ "filter": {
224631
+ "defaultValue": null,
224632
+ "description": "An optional filter function used to determine if a option should be included in the autocomplete list.\nInclude this if the items you are providing to your wrapped collection aren't filtered by default.",
224633
+ "name": "filter",
224634
+ "parent": {
224635
+ "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224636
+ "name": "AriaAutocompleteProps"
224637
+ },
224638
+ "declarations": [
224639
+ {
224640
+ "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224641
+ "name": "AriaAutocompleteProps"
224642
+ }
224643
+ ],
224644
+ "required": false,
224645
+ "type": {
224646
+ "name": "((textValue: string, inputValue: string, node: Node<object>) => boolean)"
224647
+ }
224648
+ },
224649
+ "disableAutoFocusFirst": {
224650
+ "defaultValue": {
224651
+ "value": "false"
224652
+ },
224653
+ "description": "Whether or not to focus the first item in the collection after a filter is performed. Note this is only applicable\nif virtual focus behavior is not turned off via `disableVirtualFocus`.",
224654
+ "name": "disableAutoFocusFirst",
224655
+ "parent": {
224656
+ "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224657
+ "name": "AriaAutocompleteProps"
224658
+ },
224659
+ "declarations": [
224660
+ {
224661
+ "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224662
+ "name": "AriaAutocompleteProps"
224663
+ }
224664
+ ],
224665
+ "required": false,
224666
+ "type": {
224667
+ "name": "boolean"
224668
+ }
224669
+ },
224670
+ "disableVirtualFocus": {
224671
+ "defaultValue": {
224672
+ "value": "false"
224673
+ },
224674
+ "description": "Whether the autocomplete should disable virtual focus, instead making the wrapped collection directly tabbable.",
224675
+ "name": "disableVirtualFocus",
224676
+ "parent": {
224677
+ "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224678
+ "name": "AriaAutocompleteProps"
224679
+ },
224680
+ "declarations": [
224681
+ {
224682
+ "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224683
+ "name": "AriaAutocompleteProps"
224684
+ }
224685
+ ],
224686
+ "required": false,
224687
+ "type": {
224688
+ "name": "boolean"
224689
+ }
224610
224690
  }
224611
224691
  }
224612
224692
  },
@@ -224614,9 +224694,9 @@
224614
224694
  "tags": {
224615
224695
  "flr-generate": "all"
224616
224696
  },
224617
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Autocomplete/Autocomplete.tsx",
224697
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Align/Align.tsx",
224618
224698
  "description": "",
224619
- "displayName": "Autocomplete",
224699
+ "displayName": "Align",
224620
224700
  "methods": [],
224621
224701
  "props": {
224622
224702
  "children": {
@@ -224728,86 +224808,6 @@
224728
224808
  "type": {
224729
224809
  "name": "Key | null"
224730
224810
  }
224731
- },
224732
- "slot": {
224733
- "defaultValue": null,
224734
- "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.",
224735
- "name": "slot",
224736
- "parent": {
224737
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
224738
- "name": "SlotProps"
224739
- },
224740
- "declarations": [
224741
- {
224742
- "fileName": "flow/node_modules/.pnpm/react-aria-components@1.14.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-aria-components/dist/types.d.ts",
224743
- "name": "SlotProps"
224744
- }
224745
- ],
224746
- "required": false,
224747
- "type": {
224748
- "name": "string | null"
224749
- }
224750
- },
224751
- "filter": {
224752
- "defaultValue": null,
224753
- "description": "An optional filter function used to determine if a option should be included in the autocomplete list.\nInclude this if the items you are providing to your wrapped collection aren't filtered by default.",
224754
- "name": "filter",
224755
- "parent": {
224756
- "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224757
- "name": "AriaAutocompleteProps"
224758
- },
224759
- "declarations": [
224760
- {
224761
- "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224762
- "name": "AriaAutocompleteProps"
224763
- }
224764
- ],
224765
- "required": false,
224766
- "type": {
224767
- "name": "((textValue: string, inputValue: string, node: Node<object>) => boolean)"
224768
- }
224769
- },
224770
- "disableAutoFocusFirst": {
224771
- "defaultValue": {
224772
- "value": "false"
224773
- },
224774
- "description": "Whether or not to focus the first item in the collection after a filter is performed. Note this is only applicable\nif virtual focus behavior is not turned off via `disableVirtualFocus`.",
224775
- "name": "disableAutoFocusFirst",
224776
- "parent": {
224777
- "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224778
- "name": "AriaAutocompleteProps"
224779
- },
224780
- "declarations": [
224781
- {
224782
- "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224783
- "name": "AriaAutocompleteProps"
224784
- }
224785
- ],
224786
- "required": false,
224787
- "type": {
224788
- "name": "boolean"
224789
- }
224790
- },
224791
- "disableVirtualFocus": {
224792
- "defaultValue": {
224793
- "value": "false"
224794
- },
224795
- "description": "Whether the autocomplete should disable virtual focus, instead making the wrapped collection directly tabbable.",
224796
- "name": "disableVirtualFocus",
224797
- "parent": {
224798
- "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224799
- "name": "AriaAutocompleteProps"
224800
- },
224801
- "declarations": [
224802
- {
224803
- "fileName": "flow/node_modules/.pnpm/@react-aria+autocomplete@3.0.0-rc.4_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@react-aria/autocomplete/dist/types.d.ts",
224804
- "name": "AriaAutocompleteProps"
224805
- }
224806
- ],
224807
- "required": false,
224808
- "type": {
224809
- "name": "boolean"
224810
- }
224811
224811
  }
224812
224812
  }
224813
224813
  },