@metropolle/design-system 1.0.0-beta.2026.1.22.1828.6af173a → 1.0.0-beta.2026.1.24.851.ed85a09
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 +26 -23
- package/package.json +1 -1
package/dist/css/components.css
CHANGED
|
@@ -1135,6 +1135,7 @@ html[data-theme="light"] select.mds-input {
|
|
|
1135
1135
|
|
|
1136
1136
|
/* Select Search */
|
|
1137
1137
|
.mds-select-search {
|
|
1138
|
+
position: relative; /* Required for absolute positioning of search icon */
|
|
1138
1139
|
flex-shrink: 0; /* Don't shrink in flex container */
|
|
1139
1140
|
padding: 8px;
|
|
1140
1141
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
@@ -3808,64 +3809,66 @@ html[data-theme="light"] .mds-profile-card__verified-trigger {
|
|
|
3808
3809
|
|
|
3809
3810
|
.mds-profile-card__verified-popup {
|
|
3810
3811
|
position: absolute;
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3812
|
+
/* Centered on the card */
|
|
3813
|
+
top: 50%;
|
|
3814
|
+
left: 50%;
|
|
3815
|
+
transform: translate(-50%, -50%);
|
|
3816
|
+
padding: 28px 32px;
|
|
3814
3817
|
/* Liquid Glass popup */
|
|
3815
|
-
background: rgba(20, 20, 30, 0.
|
|
3816
|
-
backdrop-filter: blur(
|
|
3817
|
-
-webkit-backdrop-filter: blur(
|
|
3818
|
-
border-radius:
|
|
3819
|
-
border: 1px solid rgba(255, 255, 255, 0.
|
|
3818
|
+
background: rgba(20, 20, 30, 0.85);
|
|
3819
|
+
backdrop-filter: blur(20px) saturate(150%);
|
|
3820
|
+
-webkit-backdrop-filter: blur(20px) saturate(150%);
|
|
3821
|
+
border-radius: 18px;
|
|
3822
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
3820
3823
|
box-shadow:
|
|
3821
|
-
0
|
|
3822
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.
|
|
3823
|
-
min-width:
|
|
3824
|
+
0 12px 40px rgba(0, 0, 0, 0.35),
|
|
3825
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.08);
|
|
3826
|
+
min-width: 280px;
|
|
3824
3827
|
z-index: 20;
|
|
3825
3828
|
}
|
|
3826
3829
|
|
|
3827
3830
|
html[data-theme="light"] .mds-profile-card__verified-popup {
|
|
3828
|
-
background: rgba(255, 255, 255, 0.
|
|
3829
|
-
border: 1px solid rgba(255, 255, 255, 0.
|
|
3831
|
+
background: rgba(255, 255, 255, 0.85);
|
|
3832
|
+
border: 1px solid rgba(255, 255, 255, 0.95);
|
|
3830
3833
|
box-shadow:
|
|
3831
|
-
0
|
|
3834
|
+
0 12px 40px rgba(0, 0, 0, 0.12),
|
|
3832
3835
|
inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
3833
3836
|
}
|
|
3834
3837
|
|
|
3835
3838
|
.mds-profile-card__verified-header {
|
|
3836
3839
|
font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
|
|
3837
|
-
font-size:
|
|
3840
|
+
font-size: 16px;
|
|
3838
3841
|
font-weight: bold;
|
|
3839
3842
|
color: #00d4aa;
|
|
3840
3843
|
letter-spacing: 0.08em;
|
|
3841
3844
|
text-transform: uppercase;
|
|
3842
|
-
margin-bottom:
|
|
3845
|
+
margin-bottom: 20px;
|
|
3843
3846
|
white-space: nowrap;
|
|
3844
3847
|
}
|
|
3845
3848
|
|
|
3846
3849
|
.mds-profile-card__verified-stats {
|
|
3847
3850
|
display: flex;
|
|
3848
3851
|
flex-direction: column;
|
|
3849
|
-
gap:
|
|
3852
|
+
gap: 14px;
|
|
3850
3853
|
}
|
|
3851
3854
|
|
|
3852
3855
|
.mds-profile-card__stat-item {
|
|
3853
3856
|
display: flex;
|
|
3854
3857
|
justify-content: space-between;
|
|
3855
3858
|
align-items: center;
|
|
3856
|
-
gap:
|
|
3859
|
+
gap: 32px;
|
|
3857
3860
|
}
|
|
3858
3861
|
|
|
3859
3862
|
.mds-profile-card__stat-label {
|
|
3860
3863
|
font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
|
|
3861
|
-
font-size:
|
|
3864
|
+
font-size: 14px;
|
|
3862
3865
|
color: var(--mds-color-text-tertiary, rgba(255, 255, 255, 0.5));
|
|
3863
3866
|
letter-spacing: 0.06em;
|
|
3864
3867
|
}
|
|
3865
3868
|
|
|
3866
3869
|
.mds-profile-card__stat-value {
|
|
3867
3870
|
font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
|
|
3868
|
-
font-size:
|
|
3871
|
+
font-size: 14px;
|
|
3869
3872
|
letter-spacing: 0.06em;
|
|
3870
3873
|
text-transform: uppercase;
|
|
3871
3874
|
color: var(--mds-color-text-tertiary, rgba(255, 255, 255, 0.5));
|
|
@@ -3879,8 +3882,8 @@ html[data-theme="light"] .mds-profile-card__verified-popup {
|
|
|
3879
3882
|
display: flex;
|
|
3880
3883
|
justify-content: space-between;
|
|
3881
3884
|
align-items: center;
|
|
3882
|
-
margin-top:
|
|
3883
|
-
padding-top:
|
|
3885
|
+
margin-top: 20px;
|
|
3886
|
+
padding-top: 16px;
|
|
3884
3887
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
3885
3888
|
}
|
|
3886
3889
|
|
|
@@ -3891,7 +3894,7 @@ html[data-theme="light"] .mds-profile-card__verified-footer {
|
|
|
3891
3894
|
.mds-profile-card__verified-sequence,
|
|
3892
3895
|
.mds-profile-card__verified-date {
|
|
3893
3896
|
font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
|
|
3894
|
-
font-size:
|
|
3897
|
+
font-size: 12px;
|
|
3895
3898
|
color: var(--mds-color-text-tertiary, rgba(255, 255, 255, 0.4));
|
|
3896
3899
|
letter-spacing: 0.06em;
|
|
3897
3900
|
text-transform: uppercase;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metropolle/design-system",
|
|
3
|
-
"version": "1.0.0-beta.2026.01.
|
|
3
|
+
"version": "1.0.0-beta.2026.01.24.0851.ed85a09",
|
|
4
4
|
"description": "Sistema de design unificado para a plataforma Metropolle",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/react/index.js",
|