feat(web): support icon urls in radial menu (#487)

* feat(package): support icon urls in radial menu

* fix: update lua & ts types + clamp size parameters
This commit is contained in:
ktx-mega
2024-02-18 12:11:40 +01:00
committed by GitHub
parent bd6183aa04
commit 78891fb4b9
5 changed files with 27 additions and 5 deletions

View File

@@ -3,9 +3,11 @@ import type { IconName, IconPrefix } from '@fortawesome/fontawesome-common-types
type RadialItem = {
id: string;
label: string;
icon: IconName | [IconPrefix, IconName];
icon: IconName | [IconPrefix, IconName] | string;
onSelect?: (currentMenu: string | null, itemIndex: number) => void | string;
menu?: string;
iconWidth?: number;
iconHeight?: number;
};
export const addRadialItem = (items: RadialItem | RadialItem[]) => exports.ox_lib.addRadialItem(items);