mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
feat(web/radial): global menu pagination
adds a More... button when menu items are over PAGE_ITEMS
This commit is contained in:
@@ -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: '',
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user