@trii/components 2.0.43 → 2.0.45

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/dist/cjs/index.js CHANGED
@@ -15254,7 +15254,7 @@ function isBusiness$1(obj) {
15254
15254
  }
15255
15255
 
15256
15256
  const MemberItem = ({ name, memberId, navigate }) => {
15257
- const url = `/a/contacts/contacts/${memberId}`;
15257
+ const url = `/a/conversations/conversations&conversationId=${memberId}`;
15258
15258
  const handleNavigation = (event) => {
15259
15259
  event.preventDefault();
15260
15260
  event.stopPropagation();
@@ -57176,9 +57176,9 @@ const ContactInformation = ({ ownerData }) => {
57176
57176
  visible: true,
57177
57177
  },
57178
57178
  ];
57179
- return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(Section, { title: t('conversations.contactDetails.contactInformation'), children: jsxRuntimeExports.jsx(SectionContent, { children: jsxRuntimeExports.jsx("div", { className: "grid grid-cols-1 gap-3", children: contactMethods
57180
- .filter((method) => method.visible)
57181
- .map((method) => (jsxRuntimeExports.jsx(ContactMethod, { handleEdit: () => openModal(method.modalTitle), title: method.title, methodItems: method.items, isPhone: method.isPhone, owner: ownerData }, method.key))) }) }) }), jsxRuntimeExports.jsx(EditModal, { open: isOpen, onClose: closeModal, title: title })] }));
57179
+ return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(Section, { title: t('conversations.contactDetails.contactInformation'), children: jsxRuntimeExports.jsx("div", { className: "grid grid-cols-1 gap-3", children: contactMethods
57180
+ .filter((method) => method.visible)
57181
+ .map((method) => (jsxRuntimeExports.jsx(ContactMethod, { handleEdit: () => openModal(method.modalTitle), title: method.title, methodItems: method.items, isPhone: method.isPhone, owner: ownerData }, method.key))) }) }), jsxRuntimeExports.jsx(EditModal, { open: isOpen, onClose: closeModal, title: title })] }));
57182
57182
  };
57183
57183
 
57184
57184
  const AddressInformation = ({ entityType, entityData, baseUrl, spaceId, onEntityUpdated, }) => {