add more shuffle play modes

This commit is contained in:
jeffvli
2025-11-23 15:58:23 -08:00
parent 16c703fe31
commit 1763f666b5
5 changed files with 140 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
import { useLongPress as useMantineLongPress } from '@mantine/hooks';
export const useLongPress = useMantineLongPress;
+2
View File
@@ -110,7 +110,9 @@ export enum FontType {
export enum Play {
INDEX = 'index',
LAST = 'last',
LAST_SHUFFLE = 'lastShuffle',
NEXT = 'next',
NEXT_SHUFFLE = 'nextShuffle',
NOW = 'now',
SHUFFLE = 'shuffle',
}