@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/esm/index.js CHANGED
@@ -15234,7 +15234,7 @@ function isBusiness$1(obj) {
15234
15234
  }
15235
15235
 
15236
15236
  const MemberItem = ({ name, memberId, navigate }) => {
15237
- const url = `/a/contacts/contacts/${memberId}`;
15237
+ const url = `/a/conversations/conversations&conversationId=${memberId}`;
15238
15238
  const handleNavigation = (event) => {
15239
15239
  event.preventDefault();
15240
15240
  event.stopPropagation();
@@ -57156,9 +57156,9 @@ const ContactInformation = ({ ownerData }) => {
57156
57156
  visible: true,
57157
57157
  },
57158
57158
  ];
57159
- 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
57160
- .filter((method) => method.visible)
57161
- .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 })] }));
57159
+ 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
57160
+ .filter((method) => method.visible)
57161
+ .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 })] }));
57162
57162
  };
57163
57163
 
57164
57164
  const AddressInformation = ({ entityType, entityData, baseUrl, spaceId, onEntityUpdated, }) => {