@connectif/ui-components 4.0.2 → 4.0.3

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
+ ## [4.0.3] - 2026-01-13
4
+
5
+ ### Changed
6
+
7
+ - Renamed `Autocomplete` component `data-testId` from `autocomplete-option-${label}` to `autocomplete-option-${optionId}`.
8
+
3
9
  ## [4.0.2] - 2026-01-13
4
10
 
5
11
  ### Added
package/dist/index.js CHANGED
@@ -23065,7 +23065,7 @@ var AutocompleteList = function AutocompleteList2({
23065
23065
  },
23066
23066
  text: getText(option),
23067
23067
  onClick: (event) => onAddSelectedValue(event, option),
23068
- "data-test": `autocomplete-option-${getText(option)}`
23068
+ "data-test": `autocomplete-option-${option.id}`
23069
23069
  },
23070
23070
  option.id
23071
23071
  );