@occmundial/occ-atomic 1.27.0 → 1.28.0

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,3 +1,10 @@
1
+ # [1.28.0](https://github.com/occmundial/occ-atomic/compare/v1.27.0...v1.28.0) (2023-02-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add missing index ([b506269](https://github.com/occmundial/occ-atomic/commit/b506269f8f86a9a4d2d8e65ba5443b178e7c3692))
7
+
1
8
  # [1.27.0](https://github.com/occmundial/occ-atomic/compare/v1.26.0...v1.27.0) (2023-02-16)
2
9
 
3
10
 
@@ -24,7 +24,7 @@ var Group = function Group(_ref) {
24
24
  return /*#__PURE__*/_react["default"].createElement("button", {
25
25
  key: item.id,
26
26
  id: idPrefix ? "".concat(idPrefix).concat(item.id) : null,
27
- "data-testid": testId ? "".concat(testId).concat(item.id) : null,
27
+ "data-testid": testId ? "".concat(testId).concat(index) : null,
28
28
  className: "".concat(classes.pill).concat(selected == item.id ? " ".concat(classes.selected) : item.disabled ? " ".concat(classes.disabled) : ''),
29
29
  onClick: selected != item.id ? function () {
30
30
  onSelect(item.id, index);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occmundial/occ-atomic",
3
- "version": "1.27.0",
3
+ "version": "1.28.0",
4
4
  "description": "Collection of shareable styled React components for OCC applications.",
5
5
  "homepage": "http://occmundial.github.io/occ-atomic",
6
6
  "main": "build/index.js",