@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moises.ai/design-system",
3
- "version": "4.17.2",
3
+ "version": "4.17.3",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -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,