@moises.ai/design-system 4.17.2 → 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/dist/index.js +1317 -1316
- package/package.json +1 -1
- package/src/components/SetlistList/SetlistList.jsx +2 -1
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,
|