@connectif/ui-components 5.7.0 → 5.7.1

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
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.7.1] - 2026-03-13
4
+
5
+ ### Fixed
6
+
7
+ - Fixed an issue where item data was not passed to `selectableItemComponent` in the `ItemSelector` component.
8
+
3
9
  ## [5.7.0] - 2026-03-12
4
10
 
5
11
  ### Added
package/dist/index.js CHANGED
@@ -23647,6 +23647,7 @@ var ItemSelector = function ItemSelector2({
23647
23647
  items: items.map((item) => {
23648
23648
  const { title, subtitle1, subtitle2 } = renderItem(item);
23649
23649
  return {
23650
+ ...item,
23650
23651
  id: item.id,
23651
23652
  name: title,
23652
23653
  selected: selectedItems.some((i) => item.id === i.id),