@metropolle/design-system 1.2026.0-1.15.1516 → 1.2026.0-1.17.117
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/css/components.css
CHANGED
|
@@ -1116,9 +1116,10 @@ html[data-theme="light"] select.mds-input {
|
|
|
1116
1116
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
1117
1117
|
border-radius: 8px;
|
|
1118
1118
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
1119
|
-
overflow
|
|
1120
|
-
overflow-x: hidden;
|
|
1119
|
+
overflow: hidden; /* Changed from auto to hidden - scroll is on .mds-select-options */
|
|
1121
1120
|
animation: mds-select-dropdown-enter 0.15s ease-out;
|
|
1121
|
+
display: flex;
|
|
1122
|
+
flex-direction: column;
|
|
1122
1123
|
}
|
|
1123
1124
|
|
|
1124
1125
|
@keyframes mds-select-dropdown-enter {
|
|
@@ -1134,9 +1135,7 @@ html[data-theme="light"] select.mds-input {
|
|
|
1134
1135
|
|
|
1135
1136
|
/* Select Search */
|
|
1136
1137
|
.mds-select-search {
|
|
1137
|
-
|
|
1138
|
-
top: 0;
|
|
1139
|
-
z-index: 1;
|
|
1138
|
+
flex-shrink: 0; /* Don't shrink in flex container */
|
|
1140
1139
|
padding: 8px;
|
|
1141
1140
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
1142
1141
|
background-color: var(--mds-dashboard-control-option-bg, #2a2a2a);
|
|
@@ -1185,7 +1184,8 @@ html[data-theme="light"] select.mds-input {
|
|
|
1185
1184
|
margin: 0;
|
|
1186
1185
|
padding: 4px;
|
|
1187
1186
|
overflow-y: auto;
|
|
1188
|
-
|
|
1187
|
+
flex: 1;
|
|
1188
|
+
min-height: 0; /* Required for flex scroll */
|
|
1189
1189
|
}
|
|
1190
1190
|
|
|
1191
1191
|
/* Select Option */
|
|
@@ -3978,3 +3978,106 @@ html[data-theme="light"] .mds-profile-card__info-dot.active {
|
|
|
3978
3978
|
font-size: 14px;
|
|
3979
3979
|
}
|
|
3980
3980
|
}
|
|
3981
|
+
|
|
3982
|
+
/* =============================================================================
|
|
3983
|
+
Clickable Avatar
|
|
3984
|
+
============================================================================= */
|
|
3985
|
+
|
|
3986
|
+
.mds-profile-card__avatar--clickable {
|
|
3987
|
+
cursor: pointer;
|
|
3988
|
+
transition: transform 0.2s ease, filter 0.2s ease;
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3991
|
+
.mds-profile-card__avatar--clickable:hover {
|
|
3992
|
+
transform: scale(1.02);
|
|
3993
|
+
filter: brightness(1.05);
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
.mds-profile-card__avatar--clickable:focus {
|
|
3997
|
+
outline: 2px solid var(--mds-color-accent-primary, #00d4ff);
|
|
3998
|
+
outline-offset: 2px;
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
/* =============================================================================
|
|
4002
|
+
Photo Modal (Liquid Glass)
|
|
4003
|
+
============================================================================= */
|
|
4004
|
+
|
|
4005
|
+
.mds-profile-card__photo-modal {
|
|
4006
|
+
position: fixed;
|
|
4007
|
+
inset: 0;
|
|
4008
|
+
z-index: 9999;
|
|
4009
|
+
display: flex;
|
|
4010
|
+
align-items: center;
|
|
4011
|
+
justify-content: center;
|
|
4012
|
+
padding: 24px;
|
|
4013
|
+
cursor: pointer;
|
|
4014
|
+
animation: mds-photo-modal-fade-in 0.25s ease-out;
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
@keyframes mds-photo-modal-fade-in {
|
|
4018
|
+
from {
|
|
4019
|
+
opacity: 0;
|
|
4020
|
+
}
|
|
4021
|
+
to {
|
|
4022
|
+
opacity: 1;
|
|
4023
|
+
}
|
|
4024
|
+
}
|
|
4025
|
+
|
|
4026
|
+
.mds-profile-card__photo-modal-backdrop {
|
|
4027
|
+
position: absolute;
|
|
4028
|
+
inset: 0;
|
|
4029
|
+
background: rgba(10, 10, 15, 0.6);
|
|
4030
|
+
backdrop-filter: blur(20px) saturate(120%);
|
|
4031
|
+
-webkit-backdrop-filter: blur(20px) saturate(120%);
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
html[data-theme="light"] .mds-profile-card__photo-modal-backdrop {
|
|
4035
|
+
background: rgba(255, 255, 255, 0.5);
|
|
4036
|
+
backdrop-filter: blur(20px) saturate(140%);
|
|
4037
|
+
-webkit-backdrop-filter: blur(20px) saturate(140%);
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
.mds-profile-card__photo-modal-content {
|
|
4041
|
+
position: relative;
|
|
4042
|
+
display: flex;
|
|
4043
|
+
align-items: center;
|
|
4044
|
+
justify-content: center;
|
|
4045
|
+
max-width: 90vw;
|
|
4046
|
+
max-height: 90vh;
|
|
4047
|
+
animation: mds-photo-modal-scale-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
|
|
4048
|
+
}
|
|
4049
|
+
|
|
4050
|
+
@keyframes mds-photo-modal-scale-in {
|
|
4051
|
+
from {
|
|
4052
|
+
opacity: 0;
|
|
4053
|
+
transform: scale(0.92);
|
|
4054
|
+
}
|
|
4055
|
+
to {
|
|
4056
|
+
opacity: 1;
|
|
4057
|
+
transform: scale(1);
|
|
4058
|
+
}
|
|
4059
|
+
}
|
|
4060
|
+
|
|
4061
|
+
.mds-profile-card__photo-modal-image {
|
|
4062
|
+
max-width: 100%;
|
|
4063
|
+
max-height: 90vh;
|
|
4064
|
+
-o-object-fit: contain;
|
|
4065
|
+
object-fit: contain;
|
|
4066
|
+
border-radius: 20px;
|
|
4067
|
+
/* Liquid Glass frame */
|
|
4068
|
+
background: rgba(255, 255, 255, 0.03);
|
|
4069
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
4070
|
+
box-shadow:
|
|
4071
|
+
0 25px 80px rgba(0, 0, 0, 0.4),
|
|
4072
|
+
0 10px 30px rgba(0, 0, 0, 0.2),
|
|
4073
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
html[data-theme="light"] .mds-profile-card__photo-modal-image {
|
|
4077
|
+
background: rgba(255, 255, 255, 0.1);
|
|
4078
|
+
border-color: rgba(255, 255, 255, 0.8);
|
|
4079
|
+
box-shadow:
|
|
4080
|
+
0 25px 80px rgba(0, 0, 0, 0.15),
|
|
4081
|
+
0 10px 30px rgba(0, 0, 0, 0.08),
|
|
4082
|
+
inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
4083
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProfileCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/ProfileCard/ProfileCard.tsx"],"names":[],"mappings":"AAEA;;;;;;GAMG;AAEH,OAAO,KAAsC,MAAM,OAAO,CAAC;AAO3D,MAAM,WAAW,eAAe;IAE9B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IAGjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,gBAAgB;IAC/B,2BAA2B;IAC3B,IAAI,EAAE,eAAe,CAAC;IAEtB,sEAAsE;IACtE,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE7B,6EAA6E;IAC7E,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,gCAAgC;IAChC,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,8BAA8B;IAC9B,WAAW,CAAC,EAAE;QACZ,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,CAAC,CAAC,EAAE,MAAM,CAAC;QACX,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAEF,8BAA8B;IAC9B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAE3B,8CAA8C;IAC9C,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE5B,2BAA2B;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,6CAA6C;IAC7C,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;CAC5B;AAwID,wBAAgB,WAAW,CAAC,EAC1B,IAAI,EACJ,OAAgB,EAChB,UAAU,EACV,UAAkB,EAClB,WAAW,EACX,gBAAwB,EACxB,SAAS,EACT,SAAc,EACd,aAAa,GACd,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"ProfileCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/ProfileCard/ProfileCard.tsx"],"names":[],"mappings":"AAEA;;;;;;GAMG;AAEH,OAAO,KAAsC,MAAM,OAAO,CAAC;AAO3D,MAAM,WAAW,eAAe;IAE9B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IAGjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,gBAAgB;IAC/B,2BAA2B;IAC3B,IAAI,EAAE,eAAe,CAAC;IAEtB,sEAAsE;IACtE,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE7B,6EAA6E;IAC7E,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,gCAAgC;IAChC,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,8BAA8B;IAC9B,WAAW,CAAC,EAAE;QACZ,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,CAAC,CAAC,EAAE,MAAM,CAAC;QACX,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAEF,8BAA8B;IAC9B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAE3B,8CAA8C;IAC9C,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE5B,2BAA2B;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,6CAA6C;IAC7C,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;CAC5B;AAwID,wBAAgB,WAAW,CAAC,EAC1B,IAAI,EACJ,OAAgB,EAChB,UAAU,EACV,UAAkB,EAClB,WAAW,EACX,gBAAwB,EACxB,SAAS,EACT,SAAc,EACd,aAAa,GACd,EAAE,gBAAgB,2CAqQlB;AAED,eAAe,WAAW,CAAC"}
|
package/dist/react/index.esm.js
CHANGED
|
@@ -1514,6 +1514,7 @@ function StatItem({ label, verified }) {
|
|
|
1514
1514
|
function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, socialLinks, showRotatingInfo = false, photoSlot, className = '', onSocialClick, }) {
|
|
1515
1515
|
const [showVerifiedPopup, setShowVerifiedPopup] = useState(false);
|
|
1516
1516
|
const [showSocialPopup, setShowSocialPopup] = useState(false);
|
|
1517
|
+
const [showPhotoModal, setShowPhotoModal] = useState(false);
|
|
1517
1518
|
const [currentInfoIndex, setCurrentInfoIndex] = useState(0);
|
|
1518
1519
|
const [isDarkTheme, setIsDarkTheme] = useState(true);
|
|
1519
1520
|
const verifiedRef = useRef(null);
|
|
@@ -1542,7 +1543,7 @@ function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, s
|
|
|
1542
1543
|
`Member since ${new Date(user.created_at).getFullYear()}`,
|
|
1543
1544
|
...(user.verified >= 1 ? ['Email Verified'] : []),
|
|
1544
1545
|
...(user.verified >= 2 ? ['Identity Verified'] : []),
|
|
1545
|
-
...(user.verified >= 3 ? ['
|
|
1546
|
+
...(user.verified >= 3 ? ['Area Verified'] : []),
|
|
1546
1547
|
];
|
|
1547
1548
|
// Rotate info text
|
|
1548
1549
|
useEffect(() => {
|
|
@@ -1568,7 +1569,8 @@ function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, s
|
|
|
1568
1569
|
}, []);
|
|
1569
1570
|
// Get display values
|
|
1570
1571
|
const displayName = user.full_name || user.username || 'User';
|
|
1571
|
-
|
|
1572
|
+
// Always show profession_name (full name like "Developer") instead of code (like "DEV")
|
|
1573
|
+
const profession = user.profession_name || '';
|
|
1572
1574
|
const getLocation = () => {
|
|
1573
1575
|
if (!user.city_code && !user.state_code && !user.country_code)
|
|
1574
1576
|
return null;
|
|
@@ -1580,10 +1582,13 @@ function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, s
|
|
|
1580
1582
|
};
|
|
1581
1583
|
const memberSince = new Date(user.created_at).getFullYear().toString();
|
|
1582
1584
|
const photoUrl = user.photo_url_medium || user.photo_url_full || getPlaceholderAvatar(isDarkTheme);
|
|
1583
|
-
|
|
1585
|
+
// Full size photo for modal (prioritize full, then medium)
|
|
1586
|
+
const photoUrlFull = user.photo_url_full || user.photo_url_medium;
|
|
1587
|
+
const hasRealPhoto = !!(user.photo_url_medium || user.photo_url_full);
|
|
1588
|
+
return (jsxRuntimeExports.jsxs("article", { className: `mds-profile-card ${className}`, style: { '--mds-profile-card-photo-width': `${computedPhotoWidth}px` }, children: [jsxRuntimeExports.jsx("div", { className: "mds-profile-card__grain" }), jsxRuntimeExports.jsx("div", { className: "mds-profile-card__photo", children: photoSlot ? (jsxRuntimeExports.jsx("div", { className: "mds-profile-card__photo-slot", children: photoSlot })) : (jsxRuntimeExports.jsx("img", { src: photoUrl, alt: displayName, className: `mds-profile-card__avatar ${hasRealPhoto ? 'mds-profile-card__avatar--clickable' : ''}`, onClick: hasRealPhoto ? () => setShowPhotoModal(true) : undefined, role: hasRealPhoto ? 'button' : undefined, tabIndex: hasRealPhoto ? 0 : undefined, onKeyDown: hasRealPhoto ? (e) => e.key === 'Enter' && setShowPhotoModal(true) : undefined })) }), showPhotoModal && photoUrlFull && (jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__photo-modal", onClick: () => setShowPhotoModal(false), role: "dialog", "aria-modal": "true", "aria-label": "Enlarged photo - click anywhere to close", children: [jsxRuntimeExports.jsx("div", { className: "mds-profile-card__photo-modal-backdrop" }), jsxRuntimeExports.jsx("div", { className: "mds-profile-card__photo-modal-content", children: jsxRuntimeExports.jsx("img", { src: photoUrlFull, alt: displayName, className: "mds-profile-card__photo-modal-image" }) })] })), jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__content", children: [jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__identity", children: [jsxRuntimeExports.jsx("h1", { className: "mds-profile-card__name", children: displayName.toUpperCase() }), variant === 'full' && profession && (jsxRuntimeExports.jsx("p", { className: "mds-profile-card__profession", children: profession.toUpperCase() })), variant === 'compact' && (jsxRuntimeExports.jsx(UsernameLinks, { username: user.username, className: "mds-profile-card__username" }))] }), jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__details", children: [variant === 'full' && getLocation() && (jsxRuntimeExports.jsx("p", { className: "mds-profile-card__location", children: getLocation() })), variant === 'full' && (jsxRuntimeExports.jsx(UsernameLinks, { username: user.username, className: "mds-profile-card__username-detail" })), variant === 'compact' && user.email && (jsxRuntimeExports.jsx("p", { className: "mds-profile-card__email", children: user.email })), variant === 'compact' && (jsxRuntimeExports.jsxs("span", { className: "mds-profile-card__member", children: ["Member since ", memberSince] }))] }), variant === 'compact' && (jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verification", children: [jsxRuntimeExports.jsxs("button", { className: "mds-profile-card__verified-badge", title: `Verification Level ${user.verified}`, onClick: (e) => {
|
|
1584
1589
|
e.stopPropagation();
|
|
1585
1590
|
setShowVerifiedPopup(!showVerifiedPopup);
|
|
1586
|
-
}, children: [Icons.shield, jsxRuntimeExports.jsxs("span", { children: ["Level ", user.verified] })] }), jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__dots", children: [jsxRuntimeExports.jsx("span", { className: `mds-profile-card__dot ${user.verified >= 1 ? 'active' : ''}`, title: "Email Verified" }), jsxRuntimeExports.jsx("span", { className: `mds-profile-card__dot ${user.verified >= 2 ? 'active' : ''}`, title: "Identity Verified" }), jsxRuntimeExports.jsx("span", { className: `mds-profile-card__dot ${user.verified >= 3 ? 'active' : ''}`, title: "
|
|
1591
|
+
}, children: [Icons.shield, jsxRuntimeExports.jsxs("span", { children: ["Level ", user.verified] })] }), jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__dots", children: [jsxRuntimeExports.jsx("span", { className: `mds-profile-card__dot ${user.verified >= 1 ? 'active' : ''}`, title: "Email Verified" }), jsxRuntimeExports.jsx("span", { className: `mds-profile-card__dot ${user.verified >= 2 ? 'active' : ''}`, title: "Identity Verified" }), jsxRuntimeExports.jsx("span", { className: `mds-profile-card__dot ${user.verified >= 3 ? 'active' : ''}`, title: "Area Verified" })] })] })), showSocial && (jsxRuntimeExports.jsxs("div", { ref: socialRef, className: "mds-profile-card__social", children: [jsxRuntimeExports.jsx("button", { className: "mds-profile-card__social-trigger", onClick: (e) => {
|
|
1587
1592
|
e.stopPropagation();
|
|
1588
1593
|
setShowSocialPopup(!showSocialPopup);
|
|
1589
1594
|
setShowVerifiedPopup(false);
|
|
@@ -1592,7 +1597,7 @@ function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, s
|
|
|
1592
1597
|
e.stopPropagation();
|
|
1593
1598
|
setShowVerifiedPopup(!showVerifiedPopup);
|
|
1594
1599
|
setShowSocialPopup(false);
|
|
1595
|
-
}, title: "Verification Status", children: Icons.shield }), showVerifiedPopup && (jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verified-popup", children: [jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verified-header", children: ["Verification Level ", user.verified] }), jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verified-stats", children: [jsxRuntimeExports.jsx(StatItem, { label: "Email", verified: user.verified >= 1 }), jsxRuntimeExports.jsx(StatItem, { label: "Identity", verified: user.verified >= 2 }), jsxRuntimeExports.jsx(StatItem, { label: "
|
|
1600
|
+
}, title: "Verification Status", children: Icons.shield }), showVerifiedPopup && (jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verified-popup", children: [jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verified-header", children: ["Verification Level ", user.verified] }), jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verified-stats", children: [jsxRuntimeExports.jsx(StatItem, { label: "Email", verified: user.verified >= 1 }), jsxRuntimeExports.jsx(StatItem, { label: "Identity", verified: user.verified >= 2 }), jsxRuntimeExports.jsx(StatItem, { label: "Area", verified: user.verified >= 3 })] }), jsxRuntimeExports.jsxs("div", { className: "mds-profile-card__verified-date", children: ["Since ", memberSince] })] }))] }), showRotatingInfo && (jsxRuntimeExports.jsx("div", { className: "mds-profile-card__info-dots", children: infoTexts.map((_, index) => (jsxRuntimeExports.jsx("span", { className: `mds-profile-card__info-dot ${index === currentInfoIndex ? 'active' : ''}` }, index))) }))] }))] })] }));
|
|
1596
1601
|
}
|
|
1597
1602
|
|
|
1598
1603
|
const variantElementMap = {
|