@luscii-healthtech/web-ui 6.0.16 → 6.0.17

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.
@@ -4806,8 +4806,8 @@ const ImageCategory = (props) => {
4806
4806
  const isSelected = option === props.highlightedImage;
4807
4807
  return React__namespace.default.createElement(
4808
4808
  "div",
4809
- { "data-test-id": `image-from-selector-${index.toString().padStart(2, "0")}`, key: option, className: classNames__default.default("ui-m-2 ui-rounded ui-border ui-border-solid ui-border-slate-300 ui-p-2", {
4810
- "ui-outline-primary": isSelected,
4809
+ { "data-test-id": `image-from-selector-${index.toString().padStart(2, "0")}`, key: option, role: "button", className: classNames__default.default("ui-m-2 ui-rounded ui-border ui-border-solid ui-border-slate-300 ui-p-2", {
4810
+ "ui-outline ui-outline-primary": isSelected,
4811
4811
  "ui-h-11 ui-w-11": props.isTypeCompact,
4812
4812
  "ui-h-22 ui-w-36": !props.isTypeCompact
4813
4813
  }) },