@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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -8378,6 +8378,7 @@ const AddressContainer = material.styled(material.Box)({
|
|
|
8378
8378
|
display: 'flex',
|
|
8379
8379
|
flexDirection: 'column',
|
|
8380
8380
|
height: '50px',
|
|
8381
|
+
maxWidth: '90%',
|
|
8381
8382
|
});
|
|
8382
8383
|
const NoteText = material.styled(material.Typography)({
|
|
8383
8384
|
whiteSpace: 'nowrap',
|
|
@@ -8394,7 +8395,6 @@ const ContactMethod = ({ icon, contactList, title, showTitle = true, }) => {
|
|
|
8394
8395
|
textOverflow: 'ellipsis',
|
|
8395
8396
|
overflow: 'hidden',
|
|
8396
8397
|
cursor: 'default',
|
|
8397
|
-
maxWidth: '00%',
|
|
8398
8398
|
}, children: contact.address }) }), contact.profileName && (jsxRuntimeExports.jsx(material.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));
|
|
8399
8399
|
return (jsxRuntimeExports.jsxs(Container$1, { children: [showTitle && (jsxRuntimeExports.jsx(TitleBox, { children: jsxRuntimeExports.jsx(material.Typography, { variant: "subtitle1", fontWeight: "bold", gutterBottom: true, mt: 2, children: title }) })), contactList?.map(renderContactInfo)] }));
|
|
8400
8400
|
};
|