@moises.ai/design-system 4.17.1 → 4.17.3
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/package.json
CHANGED
|
@@ -292,6 +292,7 @@ export const SetlistList = ({
|
|
|
292
292
|
droppable = false,
|
|
293
293
|
activeDropSetlistId = null,
|
|
294
294
|
enableDndDropTargets = false,
|
|
295
|
+
className,
|
|
295
296
|
}) => {
|
|
296
297
|
const { close, isMobile: isMobileDrawer } = useMobileDrawerContext()
|
|
297
298
|
const [openSetlistMenuId, setOpenSetlistMenuId] = useState(null)
|
|
@@ -575,7 +576,7 @@ export const SetlistList = ({
|
|
|
575
576
|
) : (
|
|
576
577
|
<NewSetlistButton
|
|
577
578
|
onClick={handleNewSetlistClick}
|
|
578
|
-
className={classNames({
|
|
579
|
+
className={classNames(className, {
|
|
579
580
|
[styles.staggerItem]: isStaggerActive,
|
|
580
581
|
[styles.staggerAnimateIn]: isStaggerActive && isExpanding,
|
|
581
582
|
[styles.staggerAnimateOut]: isStaggerActive && isShrinking,
|
|
@@ -26,9 +26,11 @@
|
|
|
26
26
|
.avatarSetlist {
|
|
27
27
|
background: var(--neutral-alpha-3);
|
|
28
28
|
}
|
|
29
|
+
|
|
29
30
|
.dropdownMenuTrigger {
|
|
30
31
|
color: var(--neutral-alpha-7);
|
|
31
32
|
}
|
|
33
|
+
|
|
32
34
|
.dropdownTriggerWrapper {
|
|
33
35
|
opacity: 1;
|
|
34
36
|
pointer-events: auto;
|
|
@@ -83,7 +85,7 @@
|
|
|
83
85
|
gap: 8px;
|
|
84
86
|
aspect-ratio: 1/1;
|
|
85
87
|
border-radius: 4px;
|
|
86
|
-
background: var(--neutral-
|
|
88
|
+
background: var(--neutral-3);
|
|
87
89
|
color: var(--neutral-alpha-8);
|
|
88
90
|
flex-shrink: 0;
|
|
89
91
|
position: relative;
|
|
@@ -180,9 +182,11 @@
|
|
|
180
182
|
background: var(--neutral-alpha-4) !important;
|
|
181
183
|
}
|
|
182
184
|
}
|
|
185
|
+
|
|
183
186
|
.avatarSetlist {
|
|
184
187
|
background: var(--neutral-alpha-4);
|
|
185
188
|
}
|
|
189
|
+
|
|
186
190
|
.dropdownMenuTrigger {
|
|
187
191
|
color: var(--neutral-alpha-7);
|
|
188
192
|
}
|
|
@@ -199,6 +203,7 @@
|
|
|
199
203
|
pointer-events: auto;
|
|
200
204
|
}
|
|
201
205
|
}
|
|
206
|
+
|
|
202
207
|
.setlistsSection {
|
|
203
208
|
flex: 1;
|
|
204
209
|
min-height: 0;
|
|
@@ -328,6 +333,7 @@ sectionTitle {
|
|
|
328
333
|
from {
|
|
329
334
|
transform: translateY(var(--stagger-in-y, 0)) scaleX(var(--stagger-in-scale, 1));
|
|
330
335
|
}
|
|
336
|
+
|
|
331
337
|
to {
|
|
332
338
|
transform: translateY(0) scaleX(1);
|
|
333
339
|
}
|
|
@@ -337,6 +343,7 @@ sectionTitle {
|
|
|
337
343
|
from {
|
|
338
344
|
transform: translateY(0) scaleX(1);
|
|
339
345
|
}
|
|
346
|
+
|
|
340
347
|
to {
|
|
341
348
|
transform: translateY(var(--stagger-out-y, 0)) scaleX(var(--stagger-out-scale, 1));
|
|
342
349
|
}
|
|
@@ -360,6 +367,7 @@ sectionTitle {
|
|
|
360
367
|
from {
|
|
361
368
|
opacity: 0;
|
|
362
369
|
}
|
|
370
|
+
|
|
363
371
|
to {
|
|
364
372
|
opacity: 1;
|
|
365
373
|
}
|
|
@@ -369,6 +377,7 @@ sectionTitle {
|
|
|
369
377
|
from {
|
|
370
378
|
opacity: 1;
|
|
371
379
|
}
|
|
380
|
+
|
|
372
381
|
to {
|
|
373
382
|
opacity: 0;
|
|
374
383
|
}
|
|
@@ -451,9 +460,11 @@ sectionTitle {
|
|
|
451
460
|
.iconHidden {
|
|
452
461
|
opacity: 0;
|
|
453
462
|
}
|
|
463
|
+
|
|
454
464
|
.newSetlistItemButton {
|
|
455
465
|
color: var(--aqua-alpha-11) !important;
|
|
456
466
|
}
|
|
467
|
+
|
|
457
468
|
.plusIcon {
|
|
458
469
|
color: var(--aqua-alpha-11);
|
|
459
|
-
}
|
|
470
|
+
}
|