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

@@ -18,6 +18,7 @@ debugData([
cancel: 'Cancel',
close: 'Close',
confirm: 'Confirm',
more: 'More...',
},
},
},
@@ -29,6 +30,7 @@ interface Locale {
cancel: string;
close: string;
confirm: string;
more: string;
};
}
@@ -46,6 +48,7 @@ const LocaleProvider: React.FC<{ children: React.ReactNode }> = ({ children }) =
cancel: '',
close: '',
confirm: '',
more: '',
},
});