@salesmind-ai/design-system 0.1.12 → 0.2.1
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/core/index.css +3 -2
- package/dist/core/index.css.map +1 -1
- package/dist/index.cjs +362 -693
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +229 -228
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +1 -37
- package/dist/index.d.ts +1 -37
- package/dist/index.js +364 -689
- package/dist/index.js.map +1 -1
- package/dist/report/index.css +6 -5
- package/dist/report/index.css.map +1 -1
- package/dist/styles/styles.css +40 -2
- package/dist/web/index.cjs +37 -24
- package/dist/web/index.cjs.map +1 -1
- package/dist/web/index.css +17 -0
- package/dist/web/index.css.map +1 -1
- package/dist/web/index.d.cts +6 -2
- package/dist/web/index.d.ts +6 -2
- package/dist/web/index.js +37 -24
- package/dist/web/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -3969,225 +3969,6 @@
|
|
|
3969
3969
|
}
|
|
3970
3970
|
|
|
3971
3971
|
/* src/components/Navbar/Navbar.css */
|
|
3972
|
-
.ds-navbar {
|
|
3973
|
-
position: sticky;
|
|
3974
|
-
top: 0;
|
|
3975
|
-
z-index: var(--z-modal-backdrop);
|
|
3976
|
-
width: 100%;
|
|
3977
|
-
height: 64px;
|
|
3978
|
-
display: flex;
|
|
3979
|
-
flex-wrap: nowrap;
|
|
3980
|
-
align-items: center;
|
|
3981
|
-
justify-content: space-between;
|
|
3982
|
-
padding: 0 var(--space-4);
|
|
3983
|
-
box-sizing: border-box;
|
|
3984
|
-
background: var(--glass-base);
|
|
3985
|
-
backdrop-filter: var(--glass-backdrop-light);
|
|
3986
|
-
-webkit-backdrop-filter: var(--glass-backdrop-light);
|
|
3987
|
-
border-bottom: 1px solid var(--rim-light-bottom);
|
|
3988
|
-
transition:
|
|
3989
|
-
background var(--transition-base),
|
|
3990
|
-
border-color var(--transition-base),
|
|
3991
|
-
height var(--transition-base);
|
|
3992
|
-
}
|
|
3993
|
-
.ds-navbar--scrolled {
|
|
3994
|
-
background: var(--glass-base-active);
|
|
3995
|
-
box-shadow: var(--glass-shadow-outer);
|
|
3996
|
-
}
|
|
3997
|
-
.ds-navbar__brand {
|
|
3998
|
-
display: flex;
|
|
3999
|
-
align-items: center;
|
|
4000
|
-
gap: var(--space-2);
|
|
4001
|
-
font-family: var(--font-family);
|
|
4002
|
-
font-weight: var(--font-weight-bold);
|
|
4003
|
-
font-size: var(--font-size-lg);
|
|
4004
|
-
color: var(--text-primary);
|
|
4005
|
-
text-decoration: none;
|
|
4006
|
-
margin-right: var(--space-8);
|
|
4007
|
-
flex-shrink: 0;
|
|
4008
|
-
white-space: nowrap;
|
|
4009
|
-
hyphens: none;
|
|
4010
|
-
word-break: normal;
|
|
4011
|
-
overflow-wrap: normal;
|
|
4012
|
-
}
|
|
4013
|
-
.ds-navbar__content {
|
|
4014
|
-
display: flex;
|
|
4015
|
-
align-items: center;
|
|
4016
|
-
gap: var(--space-6);
|
|
4017
|
-
flex: 1;
|
|
4018
|
-
min-width: 0;
|
|
4019
|
-
overflow: visible;
|
|
4020
|
-
}
|
|
4021
|
-
.ds-navbar__actions {
|
|
4022
|
-
display: flex;
|
|
4023
|
-
align-items: center;
|
|
4024
|
-
gap: var(--space-3);
|
|
4025
|
-
margin-left: var(--space-4);
|
|
4026
|
-
flex-shrink: 0;
|
|
4027
|
-
white-space: nowrap;
|
|
4028
|
-
min-width: max-content;
|
|
4029
|
-
}
|
|
4030
|
-
.ds-navbar__item {
|
|
4031
|
-
display: flex;
|
|
4032
|
-
align-items: center;
|
|
4033
|
-
gap: var(--space-2);
|
|
4034
|
-
padding: var(--space-2) 0;
|
|
4035
|
-
font-family: var(--font-family);
|
|
4036
|
-
font-size: var(--font-size-sm);
|
|
4037
|
-
font-weight: var(--font-weight-medium);
|
|
4038
|
-
color: var(--text-secondary);
|
|
4039
|
-
text-decoration: none;
|
|
4040
|
-
cursor: pointer;
|
|
4041
|
-
background: none;
|
|
4042
|
-
border: none;
|
|
4043
|
-
white-space: nowrap;
|
|
4044
|
-
hyphens: none;
|
|
4045
|
-
word-break: normal;
|
|
4046
|
-
overflow-wrap: normal;
|
|
4047
|
-
transition: color var(--transition-fast);
|
|
4048
|
-
}
|
|
4049
|
-
.ds-navbar__item:hover {
|
|
4050
|
-
color: var(--text-primary);
|
|
4051
|
-
}
|
|
4052
|
-
.ds-navbar__item--active {
|
|
4053
|
-
position: relative;
|
|
4054
|
-
color: var(--text-primary);
|
|
4055
|
-
}
|
|
4056
|
-
.ds-navbar__item--active::after {
|
|
4057
|
-
content: "";
|
|
4058
|
-
position: absolute;
|
|
4059
|
-
bottom: -21px;
|
|
4060
|
-
left: 0;
|
|
4061
|
-
right: 0;
|
|
4062
|
-
height: 2px;
|
|
4063
|
-
background: var(--brand-pink);
|
|
4064
|
-
box-shadow: 0 -2px 8px var(--brand-pink-glow);
|
|
4065
|
-
border-radius: var(--radius-pill);
|
|
4066
|
-
}
|
|
4067
|
-
.ds-navbar__search-trigger {
|
|
4068
|
-
display: inline-flex;
|
|
4069
|
-
align-items: center;
|
|
4070
|
-
gap: var(--space-1-5);
|
|
4071
|
-
height: 30px;
|
|
4072
|
-
padding: 0 var(--space-2-5);
|
|
4073
|
-
border: none;
|
|
4074
|
-
border-radius: var(--radius-button);
|
|
4075
|
-
background: var(--glass-base-hover);
|
|
4076
|
-
color: var(--text-tertiary);
|
|
4077
|
-
font-family: var(--font-family);
|
|
4078
|
-
font-size: var(--font-size-xs);
|
|
4079
|
-
font-weight: var(--font-weight-regular);
|
|
4080
|
-
line-height: 1;
|
|
4081
|
-
cursor: pointer;
|
|
4082
|
-
white-space: nowrap;
|
|
4083
|
-
min-width: 120px;
|
|
4084
|
-
transition: background var(--transition-fast), color var(--transition-fast);
|
|
4085
|
-
}
|
|
4086
|
-
.ds-navbar__search-trigger:hover {
|
|
4087
|
-
background: var(--glass-base-active);
|
|
4088
|
-
color: var(--text-secondary);
|
|
4089
|
-
}
|
|
4090
|
-
.ds-navbar__search-trigger:focus-visible {
|
|
4091
|
-
outline: none;
|
|
4092
|
-
box-shadow: var(--focus-ring);
|
|
4093
|
-
}
|
|
4094
|
-
.ds-navbar__search-trigger-icon {
|
|
4095
|
-
display: flex;
|
|
4096
|
-
align-items: center;
|
|
4097
|
-
flex-shrink: 0;
|
|
4098
|
-
color: var(--text-tertiary);
|
|
4099
|
-
}
|
|
4100
|
-
.ds-navbar__search-trigger-placeholder {
|
|
4101
|
-
flex: 1;
|
|
4102
|
-
text-align: left;
|
|
4103
|
-
overflow: hidden;
|
|
4104
|
-
text-overflow: ellipsis;
|
|
4105
|
-
}
|
|
4106
|
-
.ds-navbar__search-trigger-shortcut {
|
|
4107
|
-
display: inline-flex;
|
|
4108
|
-
align-items: center;
|
|
4109
|
-
padding: 2px var(--space-1-5);
|
|
4110
|
-
border-radius: var(--radius-badge);
|
|
4111
|
-
background: var(--glass-base);
|
|
4112
|
-
border: 1px solid var(--rim-light-bottom);
|
|
4113
|
-
color: var(--text-quaternary);
|
|
4114
|
-
font-size: 10px;
|
|
4115
|
-
font-family: var(--font-family-mono, ui-monospace, monospace);
|
|
4116
|
-
line-height: 1.4;
|
|
4117
|
-
flex-shrink: 0;
|
|
4118
|
-
}
|
|
4119
|
-
@media (max-width: 1279px) {
|
|
4120
|
-
.ds-navbar__search-trigger {
|
|
4121
|
-
min-width: 80px;
|
|
4122
|
-
}
|
|
4123
|
-
.ds-navbar__search-trigger-shortcut {
|
|
4124
|
-
display: none;
|
|
4125
|
-
}
|
|
4126
|
-
}
|
|
4127
|
-
@media (max-width: 1099px) {
|
|
4128
|
-
.ds-navbar__search-trigger {
|
|
4129
|
-
min-width: 0;
|
|
4130
|
-
}
|
|
4131
|
-
.ds-navbar__search-trigger-placeholder {
|
|
4132
|
-
display: none;
|
|
4133
|
-
}
|
|
4134
|
-
}
|
|
4135
|
-
.ds-navbar__toggle {
|
|
4136
|
-
display: none;
|
|
4137
|
-
background: none;
|
|
4138
|
-
border: none;
|
|
4139
|
-
color: var(--text-primary);
|
|
4140
|
-
padding: var(--space-2);
|
|
4141
|
-
cursor: pointer;
|
|
4142
|
-
border-radius: var(--radius-button);
|
|
4143
|
-
}
|
|
4144
|
-
.ds-navbar__toggle:hover {
|
|
4145
|
-
background: var(--glass-base-hover);
|
|
4146
|
-
}
|
|
4147
|
-
@media (max-width: 1279px) {
|
|
4148
|
-
.ds-navbar__content {
|
|
4149
|
-
gap: var(--space-5);
|
|
4150
|
-
}
|
|
4151
|
-
.ds-navbar__brand {
|
|
4152
|
-
margin-right: var(--space-6);
|
|
4153
|
-
}
|
|
4154
|
-
.ds-navbar__actions {
|
|
4155
|
-
gap: var(--space-2);
|
|
4156
|
-
}
|
|
4157
|
-
}
|
|
4158
|
-
@media (max-width: 1099px) {
|
|
4159
|
-
.ds-navbar__content {
|
|
4160
|
-
gap: var(--space-3);
|
|
4161
|
-
}
|
|
4162
|
-
.ds-navbar__actions {
|
|
4163
|
-
gap: var(--space-1-5);
|
|
4164
|
-
margin-left: var(--space-2);
|
|
4165
|
-
}
|
|
4166
|
-
.ds-navbar__brand {
|
|
4167
|
-
margin-right: var(--space-3);
|
|
4168
|
-
}
|
|
4169
|
-
.ds-navbar__item {
|
|
4170
|
-
font-size: var(--font-size-xs);
|
|
4171
|
-
}
|
|
4172
|
-
.ds-navbar-mega-menu__trigger {
|
|
4173
|
-
font-size: var(--font-size-xs);
|
|
4174
|
-
}
|
|
4175
|
-
}
|
|
4176
|
-
@media (max-width: 767px) {
|
|
4177
|
-
.ds-navbar {
|
|
4178
|
-
padding: 0 var(--space-3);
|
|
4179
|
-
}
|
|
4180
|
-
.ds-navbar__content {
|
|
4181
|
-
display: none;
|
|
4182
|
-
}
|
|
4183
|
-
.ds-navbar__actions {
|
|
4184
|
-
display: none;
|
|
4185
|
-
}
|
|
4186
|
-
.ds-navbar__toggle {
|
|
4187
|
-
display: flex;
|
|
4188
|
-
margin-left: auto;
|
|
4189
|
-
}
|
|
4190
|
-
}
|
|
4191
3972
|
.ds-navbar__mobile-overlay {
|
|
4192
3973
|
position: fixed;
|
|
4193
3974
|
top: 64px;
|
|
@@ -4293,6 +4074,10 @@
|
|
|
4293
4074
|
.ds-navbar-mega-menu__chevron {
|
|
4294
4075
|
display: inline-flex;
|
|
4295
4076
|
align-items: center;
|
|
4077
|
+
transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
4078
|
+
}
|
|
4079
|
+
.ds-navbar-mega-menu__chevron[data-state=open] {
|
|
4080
|
+
transform: rotate(180deg);
|
|
4296
4081
|
}
|
|
4297
4082
|
.ds-navbar-mega-menu__content {
|
|
4298
4083
|
position: absolute;
|
|
@@ -4309,6 +4094,24 @@
|
|
|
4309
4094
|
z-index: var(--z-dropdown);
|
|
4310
4095
|
transform-origin: top center;
|
|
4311
4096
|
overflow: hidden;
|
|
4097
|
+
opacity: 0;
|
|
4098
|
+
transform: translateY(-8px) scale(0.995);
|
|
4099
|
+
visibility: hidden;
|
|
4100
|
+
pointer-events: none;
|
|
4101
|
+
transition:
|
|
4102
|
+
opacity 0.15s cubic-bezier(0.4, 0, 1, 1),
|
|
4103
|
+
transform 0.15s cubic-bezier(0.4, 0, 1, 1),
|
|
4104
|
+
visibility 0s 0.15s;
|
|
4105
|
+
}
|
|
4106
|
+
.ds-navbar-mega-menu__content[data-state=open] {
|
|
4107
|
+
opacity: 1;
|
|
4108
|
+
transform: translateY(0) scale(1);
|
|
4109
|
+
visibility: visible;
|
|
4110
|
+
pointer-events: auto;
|
|
4111
|
+
transition:
|
|
4112
|
+
opacity 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4113
|
+
transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4114
|
+
visibility 0s 0s;
|
|
4312
4115
|
}
|
|
4313
4116
|
.ds-navbar-mega-menu__content::before {
|
|
4314
4117
|
content: "";
|
|
@@ -4339,9 +4142,61 @@
|
|
|
4339
4142
|
border-radius: var(--radius-card);
|
|
4340
4143
|
transform-origin: top center;
|
|
4341
4144
|
}
|
|
4145
|
+
.ds-navbar-mega-menu__content--floating[data-state=closed] {
|
|
4146
|
+
transform: translateX(-50%) translateY(-8px) scale(0.995);
|
|
4147
|
+
}
|
|
4148
|
+
.ds-navbar-mega-menu__content--floating[data-state=open] {
|
|
4149
|
+
transform: translateX(-50%) translateY(0) scale(1);
|
|
4150
|
+
}
|
|
4342
4151
|
.ds-navbar-mega-menu__content--floating::before {
|
|
4343
4152
|
display: none;
|
|
4344
4153
|
}
|
|
4154
|
+
.ds-navbar-mega-menu__section {
|
|
4155
|
+
opacity: 0;
|
|
4156
|
+
transform: translateY(8px);
|
|
4157
|
+
filter: blur(4px);
|
|
4158
|
+
transition:
|
|
4159
|
+
opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4160
|
+
transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4161
|
+
filter 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
4162
|
+
}
|
|
4163
|
+
[data-state=open] > .ds-layout-container > .ds-navbar-mega-menu__section,
|
|
4164
|
+
[data-state=open] > .ds-navbar-mega-menu__section {
|
|
4165
|
+
opacity: 1;
|
|
4166
|
+
transform: translateY(0);
|
|
4167
|
+
filter: blur(0px);
|
|
4168
|
+
}
|
|
4169
|
+
[data-state=open] > .ds-layout-container > .ds-navbar-mega-menu__section:nth-child(1),
|
|
4170
|
+
[data-state=open] > .ds-navbar-mega-menu__section:nth-child(1) {
|
|
4171
|
+
transition-delay: 60ms;
|
|
4172
|
+
}
|
|
4173
|
+
[data-state=open] > .ds-layout-container > .ds-navbar-mega-menu__section:nth-child(2),
|
|
4174
|
+
[data-state=open] > .ds-navbar-mega-menu__section:nth-child(2) {
|
|
4175
|
+
transition-delay: 100ms;
|
|
4176
|
+
}
|
|
4177
|
+
[data-state=open] > .ds-layout-container > .ds-navbar-mega-menu__section:nth-child(3),
|
|
4178
|
+
[data-state=open] > .ds-navbar-mega-menu__section:nth-child(3) {
|
|
4179
|
+
transition-delay: 140ms;
|
|
4180
|
+
}
|
|
4181
|
+
[data-state=open] > .ds-layout-container > .ds-navbar-mega-menu__section:nth-child(4),
|
|
4182
|
+
[data-state=open] > .ds-navbar-mega-menu__section:nth-child(4) {
|
|
4183
|
+
transition-delay: 180ms;
|
|
4184
|
+
}
|
|
4185
|
+
[data-state=open] > .ds-layout-container > .ds-navbar-mega-menu__section:nth-child(5),
|
|
4186
|
+
[data-state=open] > .ds-navbar-mega-menu__section:nth-child(5) {
|
|
4187
|
+
transition-delay: 220ms;
|
|
4188
|
+
}
|
|
4189
|
+
[data-state=open] > .ds-layout-container > .ds-navbar-mega-menu__section:nth-child(6),
|
|
4190
|
+
[data-state=open] > .ds-navbar-mega-menu__section:nth-child(6) {
|
|
4191
|
+
transition-delay: 260ms;
|
|
4192
|
+
}
|
|
4193
|
+
[data-state=closed] .ds-navbar-mega-menu__section {
|
|
4194
|
+
opacity: 0;
|
|
4195
|
+
transition:
|
|
4196
|
+
opacity 0.1s,
|
|
4197
|
+
transform 0s 0.1s,
|
|
4198
|
+
filter 0s 0.1s;
|
|
4199
|
+
}
|
|
4345
4200
|
.ds-navbar-mega-menu__section-heading {
|
|
4346
4201
|
margin-bottom: var(--space-3);
|
|
4347
4202
|
font-family: var(--font-family);
|
|
@@ -4356,6 +4211,51 @@
|
|
|
4356
4211
|
flex-direction: column;
|
|
4357
4212
|
gap: var(--space-1);
|
|
4358
4213
|
}
|
|
4214
|
+
.ds-navbar-mega-menu__item-wrapper {
|
|
4215
|
+
opacity: 0;
|
|
4216
|
+
transform: translateY(8px);
|
|
4217
|
+
filter: blur(4px);
|
|
4218
|
+
transition:
|
|
4219
|
+
opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4220
|
+
transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4221
|
+
filter 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
4222
|
+
}
|
|
4223
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper {
|
|
4224
|
+
opacity: 1;
|
|
4225
|
+
transform: translateY(0);
|
|
4226
|
+
filter: blur(0px);
|
|
4227
|
+
}
|
|
4228
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(1) {
|
|
4229
|
+
transition-delay: 80ms;
|
|
4230
|
+
}
|
|
4231
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(2) {
|
|
4232
|
+
transition-delay: 120ms;
|
|
4233
|
+
}
|
|
4234
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(3) {
|
|
4235
|
+
transition-delay: 160ms;
|
|
4236
|
+
}
|
|
4237
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(4) {
|
|
4238
|
+
transition-delay: 200ms;
|
|
4239
|
+
}
|
|
4240
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(5) {
|
|
4241
|
+
transition-delay: 240ms;
|
|
4242
|
+
}
|
|
4243
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(6) {
|
|
4244
|
+
transition-delay: 280ms;
|
|
4245
|
+
}
|
|
4246
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(7) {
|
|
4247
|
+
transition-delay: 320ms;
|
|
4248
|
+
}
|
|
4249
|
+
[data-state=open] .ds-navbar-mega-menu__item-wrapper:nth-child(8) {
|
|
4250
|
+
transition-delay: 360ms;
|
|
4251
|
+
}
|
|
4252
|
+
[data-state=closed] .ds-navbar-mega-menu__item-wrapper {
|
|
4253
|
+
opacity: 0;
|
|
4254
|
+
transition:
|
|
4255
|
+
opacity 0.1s,
|
|
4256
|
+
transform 0s 0.1s,
|
|
4257
|
+
filter 0s 0.1s;
|
|
4258
|
+
}
|
|
4359
4259
|
.ds-navbar-mega-menu__item {
|
|
4360
4260
|
display: flex;
|
|
4361
4261
|
align-items: flex-start;
|
|
@@ -4419,6 +4319,15 @@
|
|
|
4419
4319
|
.ds-navbar-mega-menu__content {
|
|
4420
4320
|
transition: none;
|
|
4421
4321
|
}
|
|
4322
|
+
.ds-navbar-mega-menu__chevron {
|
|
4323
|
+
transition: none;
|
|
4324
|
+
}
|
|
4325
|
+
.ds-navbar-mega-menu__section {
|
|
4326
|
+
transition: none;
|
|
4327
|
+
}
|
|
4328
|
+
.ds-navbar-mega-menu__item-wrapper {
|
|
4329
|
+
transition: none;
|
|
4330
|
+
}
|
|
4422
4331
|
}
|
|
4423
4332
|
|
|
4424
4333
|
/* src/components/NavbarV2/NavbarV2.css */
|
|
@@ -4639,7 +4548,10 @@
|
|
|
4639
4548
|
display: inline-flex;
|
|
4640
4549
|
align-items: center;
|
|
4641
4550
|
opacity: 0.3;
|
|
4642
|
-
transition: opacity var(--transition-fast);
|
|
4551
|
+
transition: opacity var(--transition-fast), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
4552
|
+
}
|
|
4553
|
+
.ds-navbar-v2__tab-chevron[data-state=open] {
|
|
4554
|
+
transform: rotate(180deg);
|
|
4643
4555
|
}
|
|
4644
4556
|
.ds-navbar-v2__tab:hover .ds-navbar-v2__tab-chevron,
|
|
4645
4557
|
.ds-navbar-v2__tab--active .ds-navbar-v2__tab-chevron {
|
|
@@ -4660,13 +4572,31 @@
|
|
|
4660
4572
|
padding: var(--space-6);
|
|
4661
4573
|
z-index: var(--z-dropdown);
|
|
4662
4574
|
transform-origin: top center;
|
|
4663
|
-
overflow:
|
|
4575
|
+
overflow: visible;
|
|
4664
4576
|
background: var(--void-base);
|
|
4665
4577
|
backdrop-filter: blur(24px) saturate(180%);
|
|
4666
4578
|
-webkit-backdrop-filter: blur(24px) saturate(180%);
|
|
4667
4579
|
border: 1px solid var(--rim-light-bottom);
|
|
4668
4580
|
border-radius: var(--radius-card);
|
|
4669
4581
|
box-shadow: var(--shadow-xl), 0 0 0 1px var(--rim-light-bottom);
|
|
4582
|
+
opacity: 0;
|
|
4583
|
+
transform: translateX(-50%) translateY(-8px) scale(0.98);
|
|
4584
|
+
visibility: hidden;
|
|
4585
|
+
pointer-events: none;
|
|
4586
|
+
transition:
|
|
4587
|
+
opacity 150ms cubic-bezier(0.4, 0, 1, 1),
|
|
4588
|
+
transform 150ms cubic-bezier(0.4, 0, 1, 1),
|
|
4589
|
+
visibility 0s linear 150ms;
|
|
4590
|
+
}
|
|
4591
|
+
.ds-navbar-v2__mega-panel[data-state=open] {
|
|
4592
|
+
opacity: 1;
|
|
4593
|
+
transform: translateX(-50%) translateY(0) scale(1);
|
|
4594
|
+
visibility: visible;
|
|
4595
|
+
pointer-events: auto;
|
|
4596
|
+
transition:
|
|
4597
|
+
opacity 250ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4598
|
+
transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4599
|
+
visibility 0s linear 0s;
|
|
4670
4600
|
}
|
|
4671
4601
|
.ds-navbar-v2__mega-panel::before {
|
|
4672
4602
|
content: "";
|
|
@@ -4687,6 +4617,15 @@
|
|
|
4687
4617
|
opacity: 0.8;
|
|
4688
4618
|
pointer-events: none;
|
|
4689
4619
|
}
|
|
4620
|
+
.ds-navbar-v2__mega-panel::after {
|
|
4621
|
+
content: "";
|
|
4622
|
+
position: absolute;
|
|
4623
|
+
top: -8px;
|
|
4624
|
+
left: 0;
|
|
4625
|
+
right: 0;
|
|
4626
|
+
height: 8px;
|
|
4627
|
+
background: transparent;
|
|
4628
|
+
}
|
|
4690
4629
|
.ds-navbar-v2__actions {
|
|
4691
4630
|
grid-column: 3;
|
|
4692
4631
|
justify-self: end;
|
|
@@ -4833,7 +4772,24 @@
|
|
|
4833
4772
|
overflow-y: auto;
|
|
4834
4773
|
overscroll-behavior: contain;
|
|
4835
4774
|
-webkit-overflow-scrolling: touch;
|
|
4775
|
+
opacity: 0;
|
|
4776
|
+
transform: translateY(-12px);
|
|
4777
|
+
visibility: hidden;
|
|
4778
|
+
pointer-events: none;
|
|
4779
|
+
transition:
|
|
4780
|
+
opacity 200ms cubic-bezier(0.4, 0, 1, 1),
|
|
4781
|
+
transform 200ms cubic-bezier(0.4, 0, 1, 1),
|
|
4782
|
+
visibility 0s linear 200ms;
|
|
4783
|
+
}
|
|
4784
|
+
.ds-navbar-v2__mobile-overlay[data-state=open] {
|
|
4785
|
+
opacity: 1;
|
|
4786
|
+
transform: translateY(0);
|
|
4787
|
+
visibility: visible;
|
|
4836
4788
|
pointer-events: auto;
|
|
4789
|
+
transition:
|
|
4790
|
+
opacity 250ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4791
|
+
transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
4792
|
+
visibility 0s linear 0s;
|
|
4837
4793
|
}
|
|
4838
4794
|
.ds-navbar-v2__mobile-content {
|
|
4839
4795
|
display: flex;
|
|
@@ -4870,9 +4826,15 @@
|
|
|
4870
4826
|
.ds-navbar-v2__tab::before {
|
|
4871
4827
|
transition: none;
|
|
4872
4828
|
}
|
|
4829
|
+
.ds-navbar-v2__tab-chevron {
|
|
4830
|
+
transition: none;
|
|
4831
|
+
}
|
|
4873
4832
|
.ds-navbar-v2__mobile-overlay {
|
|
4874
4833
|
transition: none;
|
|
4875
4834
|
}
|
|
4835
|
+
.ds-navbar-v2__mega-panel {
|
|
4836
|
+
transition: none;
|
|
4837
|
+
}
|
|
4876
4838
|
}
|
|
4877
4839
|
@media (prefers-contrast: more) {
|
|
4878
4840
|
.ds-navbar-v2--scrolled .ds-navbar-v2__container {
|
|
@@ -7326,7 +7288,10 @@
|
|
|
7326
7288
|
align-items: center;
|
|
7327
7289
|
color: var(--text-tertiary);
|
|
7328
7290
|
flex-shrink: 0;
|
|
7329
|
-
transition: color var(--transition-fast);
|
|
7291
|
+
transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), color var(--transition-fast);
|
|
7292
|
+
}
|
|
7293
|
+
.ds-locale-dropdown__trigger-chevron[data-state=open] {
|
|
7294
|
+
transform: rotate(180deg);
|
|
7330
7295
|
}
|
|
7331
7296
|
.ds-locale-dropdown__trigger:hover .ds-locale-dropdown__trigger-chevron {
|
|
7332
7297
|
color: var(--text-secondary);
|
|
@@ -7346,12 +7311,33 @@
|
|
|
7346
7311
|
border: 1px solid var(--rim-light-bottom);
|
|
7347
7312
|
border-radius: var(--radius-card);
|
|
7348
7313
|
box-shadow: var(--shadow-xl), 0 0 0 1px var(--rim-light-bottom);
|
|
7314
|
+
opacity: 0;
|
|
7315
|
+
transform: translateY(-8px) scale(0.95);
|
|
7316
|
+
visibility: hidden;
|
|
7317
|
+
pointer-events: none;
|
|
7318
|
+
transition:
|
|
7319
|
+
opacity 0.15s cubic-bezier(0.4, 0, 1, 1),
|
|
7320
|
+
transform 0.15s cubic-bezier(0.4, 0, 1, 1),
|
|
7321
|
+
visibility 0s 0.15s;
|
|
7322
|
+
}
|
|
7323
|
+
.ds-locale-dropdown__panel[data-state=open] {
|
|
7324
|
+
opacity: 1;
|
|
7325
|
+
transform: translateY(0) scale(1);
|
|
7326
|
+
visibility: visible;
|
|
7327
|
+
pointer-events: auto;
|
|
7328
|
+
transition:
|
|
7329
|
+
opacity 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
7330
|
+
transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
7331
|
+
visibility 0s 0s;
|
|
7349
7332
|
}
|
|
7350
7333
|
.ds-locale-dropdown--up .ds-locale-dropdown__panel {
|
|
7351
7334
|
top: auto;
|
|
7352
7335
|
bottom: calc(100% + var(--space-2));
|
|
7353
7336
|
transform-origin: bottom right;
|
|
7354
7337
|
}
|
|
7338
|
+
.ds-locale-dropdown--up .ds-locale-dropdown__panel[data-state=closed] {
|
|
7339
|
+
transform: translateY(8px) scale(0.95);
|
|
7340
|
+
}
|
|
7355
7341
|
.ds-locale-dropdown--align-left .ds-locale-dropdown__panel {
|
|
7356
7342
|
right: auto;
|
|
7357
7343
|
left: 0;
|
|
@@ -7360,15 +7346,23 @@
|
|
|
7360
7346
|
.ds-locale-dropdown--align-center .ds-locale-dropdown__panel {
|
|
7361
7347
|
right: auto;
|
|
7362
7348
|
left: 50%;
|
|
7363
|
-
transform: translateX(-50%);
|
|
7364
7349
|
transform-origin: top center;
|
|
7365
7350
|
}
|
|
7351
|
+
.ds-locale-dropdown--align-center .ds-locale-dropdown__panel[data-state=closed] {
|
|
7352
|
+
transform: translateX(-50%) translateY(-8px) scale(0.95);
|
|
7353
|
+
}
|
|
7354
|
+
.ds-locale-dropdown--align-center .ds-locale-dropdown__panel[data-state=open] {
|
|
7355
|
+
transform: translateX(-50%) translateY(0) scale(1);
|
|
7356
|
+
}
|
|
7366
7357
|
.ds-locale-dropdown--up.ds-locale-dropdown--align-left .ds-locale-dropdown__panel {
|
|
7367
7358
|
transform-origin: bottom left;
|
|
7368
7359
|
}
|
|
7369
7360
|
.ds-locale-dropdown--up.ds-locale-dropdown--align-center .ds-locale-dropdown__panel {
|
|
7370
7361
|
transform-origin: bottom center;
|
|
7371
7362
|
}
|
|
7363
|
+
.ds-locale-dropdown--up.ds-locale-dropdown--align-center .ds-locale-dropdown__panel[data-state=closed] {
|
|
7364
|
+
transform: translateX(-50%) translateY(8px) scale(0.95);
|
|
7365
|
+
}
|
|
7372
7366
|
.ds-locale-dropdown__panel::before {
|
|
7373
7367
|
content: "";
|
|
7374
7368
|
position: absolute;
|
|
@@ -7465,6 +7459,12 @@
|
|
|
7465
7459
|
.ds-locale-dropdown__trigger {
|
|
7466
7460
|
transition: none;
|
|
7467
7461
|
}
|
|
7462
|
+
.ds-locale-dropdown__trigger-chevron {
|
|
7463
|
+
transition: none;
|
|
7464
|
+
}
|
|
7465
|
+
.ds-locale-dropdown__panel {
|
|
7466
|
+
transition: none;
|
|
7467
|
+
}
|
|
7468
7468
|
.ds-locale-dropdown__option {
|
|
7469
7469
|
transition: none;
|
|
7470
7470
|
}
|
|
@@ -13109,8 +13109,9 @@
|
|
|
13109
13109
|
.ds-dropdown-menu__content {
|
|
13110
13110
|
min-width: 220px;
|
|
13111
13111
|
padding: var(--space-1);
|
|
13112
|
-
background: var(--glass-base);
|
|
13113
|
-
backdrop-filter: var(--glass-backdrop);
|
|
13112
|
+
background: var(--glass-base-active);
|
|
13113
|
+
backdrop-filter: var(--glass-backdrop-heavy);
|
|
13114
|
+
-webkit-backdrop-filter: var(--glass-backdrop-heavy);
|
|
13114
13115
|
border-radius: var(--radius-button);
|
|
13115
13116
|
border: 1px solid var(--rim-light-bottom);
|
|
13116
13117
|
box-shadow: var(--glass-shadow-elevated);
|
|
@@ -19193,9 +19194,9 @@ button.ds-key-metric {
|
|
|
19193
19194
|
padding: var(--space-1);
|
|
19194
19195
|
border-radius: var(--radius-button);
|
|
19195
19196
|
outline: none;
|
|
19196
|
-
background: var(--glass-base);
|
|
19197
|
-
backdrop-filter: var(--glass-backdrop);
|
|
19198
|
-
-webkit-backdrop-filter: var(--glass-backdrop);
|
|
19197
|
+
background: var(--glass-base-active);
|
|
19198
|
+
backdrop-filter: var(--glass-backdrop-heavy);
|
|
19199
|
+
-webkit-backdrop-filter: var(--glass-backdrop-heavy);
|
|
19199
19200
|
border: 1px solid var(--rim-light-bottom);
|
|
19200
19201
|
box-shadow: var(--glass-shadow-elevated);
|
|
19201
19202
|
transform-origin: var(--transform-origin);
|