feat(web/radial): global menu pagination

adds a More... button when menu items are over PAGE_ITEMS
This commit is contained in:
Luke
2023-02-23 17:29:38 +01:00
parent c2f5d38108
commit 7ffa12af4f
24 changed files with 96 additions and 37 deletions

View File

@@ -3,4 +3,5 @@ import { IconProp } from '@fortawesome/fontawesome-svg-core';
export interface RadialMenuItem {
icon: IconProp;
label: string;
isMore?: boolean;
}