@spark-ui/components 10.5.3 → 10.5.4

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,12 @@
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
+ ## [10.5.4](https://github.com/leboncoin/spark-web/compare/v10.5.3...v10.5.4) (2025-05-15)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **components:** forward props to ComboboxItem ([11c879b](https://github.com/leboncoin/spark-web/commit/11c879b827c515381b70b7a2746106a501a83972))
11
+
6
12
  ## [10.5.3](https://github.com/leboncoin/spark-web/compare/v10.5.2...v10.5.3) (2025-05-15)
7
13
 
8
14
  **Note:** Version bump only for package @spark-ui/components
@@ -2068,7 +2068,8 @@ var ItemContent = ({
2068
2068
  disabled = false,
2069
2069
  value,
2070
2070
  children,
2071
- ref: forwardedRef
2071
+ ref: forwardedRef,
2072
+ ...rest
2072
2073
  }) => {
2073
2074
  const ctx = useComboboxContext();
2074
2075
  const itemCtx = useComboboxItemContext();
@@ -2093,6 +2094,7 @@ var ItemContent = ({
2093
2094
  })
2094
2095
  ),
2095
2096
  ...downshiftItemProps,
2097
+ ...rest,
2096
2098
  "aria-selected": itemCtx.isSelected,
2097
2099
  "aria-labelledby": itemCtx.textId,
2098
2100
  children