@bigbinary/neeto-molecules 1.0.97 → 1.0.99

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.
@@ -3462,6 +3462,7 @@ var FormRow = function FormRow(_ref) {
3462
3462
  className: "col-span-2 flex items-start justify-center gap-1"
3463
3463
  }, /*#__PURE__*/React__default.createElement(Button, {
3464
3464
  "data-cy": "save-changes-button",
3465
+ "data-testid": "save-changes-button",
3465
3466
  disabled: isSubmitting,
3466
3467
  icon: Check,
3467
3468
  style: "text",
@@ -3523,6 +3524,9 @@ var Row = function Row(_ref) {
3523
3524
  }, truncate(data.ipEnd, TRUNCATE_LENGTH))), /*#__PURE__*/React__default.createElement("div", {
3524
3525
  className: "col-span-2 flex justify-center"
3525
3526
  }, /*#__PURE__*/React__default.createElement(Dropdown, {
3527
+ buttonProps: {
3528
+ "data-testid": "ip-range-actions-dropdown"
3529
+ },
3526
3530
  buttonStyle: "text",
3527
3531
  icon: MenuHorizontal,
3528
3532
  position: "bottom-end"
@@ -3741,17 +3745,16 @@ var IpRestriction = function IpRestriction() {
3741
3745
  "data-cy": "ip-restrictions-card"
3742
3746
  }, /*#__PURE__*/React__default.createElement("div", {
3743
3747
  className: "space-y-2 p-6"
3744
- }, /*#__PURE__*/React__default.createElement("div", {
3745
- className: "flex items-center gap-2"
3746
3748
  }, /*#__PURE__*/React__default.createElement(Checkbox, {
3747
3749
  checked: isIpRestrictionVisible,
3748
3750
  className: "flex-grow-0",
3749
3751
  "data-cy": "enable-ip-restriction-checkbox",
3750
3752
  disabled: isFetching || isUpdating,
3753
+ label: /*#__PURE__*/React__default.createElement(Typography, {
3754
+ style: "h3"
3755
+ }, t("neetoMolecules.ipRestriction.switchLabel")),
3751
3756
  onChange: handleOnChange
3752
3757
  }), /*#__PURE__*/React__default.createElement(Typography, {
3753
- style: "h3"
3754
- }, t("neetoMolecules.ipRestriction.switchLabel"))), /*#__PURE__*/React__default.createElement(Typography, {
3755
3758
  "data-cy": "ip-restriction-description",
3756
3759
  style: "body2"
3757
3760
  }, t("neetoMolecules.ipRestriction.description"))), isIpRestrictionVisible && /*#__PURE__*/React__default.createElement("div", {