@trii/components 2.0.6 → 2.0.7

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
@@ -8358,6 +8358,7 @@ const AddressContainer = styled$3(Box)({
8358
8358
  display: 'flex',
8359
8359
  flexDirection: 'column',
8360
8360
  height: '50px',
8361
+ maxWidth: '90%',
8361
8362
  });
8362
8363
  const NoteText = styled$3(Typography)({
8363
8364
  whiteSpace: 'nowrap',
@@ -8374,7 +8375,6 @@ const ContactMethod = ({ icon, contactList, title, showTitle = true, }) => {
8374
8375
  textOverflow: 'ellipsis',
8375
8376
  overflow: 'hidden',
8376
8377
  cursor: 'default',
8377
- maxWidth: '00%',
8378
8378
  }, children: contact.address }) }), contact.profileName && (jsxRuntimeExports.jsx(Typography, { variant: "body2", fontSize: 10, color: "text.disabled", sx: { marginLeft: '5px', marginTop: '10px' }, children: contact.profileName }))] }), contact.note && (jsxRuntimeExports.jsx(NoteText, { variant: "body2", fontSize: 12, color: "text.secondary", children: contact.note }))] }) }, contact.id));
8379
8379
  return (jsxRuntimeExports.jsxs(Container$1, { children: [showTitle && (jsxRuntimeExports.jsx(TitleBox, { children: jsxRuntimeExports.jsx(Typography, { variant: "subtitle1", fontWeight: "bold", gutterBottom: true, mt: 2, children: title }) })), contactList?.map(renderContactInfo)] }));
8380
8380
  };