@bigbinary/neeto-commons-frontend 2.0.99 → 2.0.101

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.
@@ -239,7 +239,7 @@ export function initializeCredentials(props: {
239
239
  *
240
240
  * This function joins the given strings with hyphen.
241
241
  *
242
- * Usage:
242
+ * Any number of string arguments.
243
243
  *
244
244
  * @example
245
245
  *
package/cypress-utils.js CHANGED
@@ -609,9 +609,9 @@ var memberTexts = {
609
609
  accountActivatedToastMessage: function accountActivatedToastMessage(name) {
610
610
  return "".concat(name, "'s account has been activated.");
611
611
  },
612
- activateMember: "Activate member",
612
+ activateMember: "Activate member?",
613
613
  activateMemberAlertMessage: function activateMemberAlertMessage(email) {
614
- return "You are activating ".concat(email, ". Are you sure you want to proceed?");
614
+ return "You are activating the member ".concat(email, ".");
615
615
  },
616
616
  addMemberToProducts: function addMemberToProducts(email) {
617
617
  return "Add ".concat(email, " to the following neeto products.");
@@ -619,9 +619,9 @@ var memberTexts = {
619
619
  deactivateAccountToastMessage: function deactivateAccountToastMessage(name) {
620
620
  return "".concat(name, "'s account has been deactivated.");
621
621
  },
622
- deactivateMember: "Deactivate member",
622
+ deactivateMember: "Deactivate member?",
623
623
  deactivateMemberAlertMessage: function deactivateMemberAlertMessage(email) {
624
- return "You are deactivating ".concat(email, ". Are you sure you want to proceed?");
624
+ return "You are deactivating the member ".concat(email, ".");
625
625
  },
626
626
  editMember: "Edit member",
627
627
  inviteMessage: function inviteMessage(_ref) {
@@ -639,9 +639,9 @@ var memberTexts = {
639
639
  searchMembers: "Search members",
640
640
  noDataTitle: "There are no members to show",
641
641
  editor: "Editor",
642
- changeRole: "Change role",
642
+ changeRole: "Change role?",
643
643
  changeRoleAlertMsg: function changeRoleAlertMsg(member, role) {
644
- return "You are changing role of ".concat(member, " to ").concat(role, ". Are you sure you want to proceed?");
644
+ return "You are changing the role of ".concat(member, " to ").concat(role, ".");
645
645
  },
646
646
  collaborator: "Collaborator"
647
647
  };