@luscii-healthtech/web-ui 2.44.1 → 2.44.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.
@@ -2736,7 +2736,8 @@ function RadioGroupInner(_ref) {
2736
2736
  registerProps = _objectWithoutPropertiesLoose(_ref, _excluded$9);
2737
2737
 
2738
2738
  return /*#__PURE__*/React__default.createElement("div", {
2739
- className: classNames("flex flex-col space-y-2")
2739
+ className: classNames("flex flex-col space-y-2"),
2740
+ "data-test-id": registerProps.name + "-radio-group"
2740
2741
  }, title && /*#__PURE__*/React__default.createElement(Text, {
2741
2742
  text: title
2742
2743
  }), options.map(function (option) {
@@ -2836,6 +2837,7 @@ var ConfirmationDialog = function ConfirmationDialog(props) {
2836
2837
 
2837
2838
  return /*#__PURE__*/React__default.createElement(ModalBase, {
2838
2839
  size: "small",
2840
+ dataTestId: "confirmation-dialog-modal",
2839
2841
  isOpen: props.isOpen,
2840
2842
  withExtraMarginTop: true,
2841
2843
  onCloseClick: handleOnCloseClick,