├── LICENSE ├── fxmanifest.lua ├── main.lua ├── readme.md └── zUI ├── class.lua ├── contextMenus ├── _init.lua ├── components │ └── _graphics.lua ├── functions │ ├── manageFocus.lua │ ├── registerContext.lua │ ├── setFocus.lua │ ├── showInfo.lua │ ├── updateContext.lua │ └── updateItems.lua ├── menu.lua └── theme.json ├── items ├── _loadItems.lua ├── button.lua ├── checkbox.lua ├── colorList.lua ├── line.lua ├── linkButton.lua ├── list.lua ├── separator.lua └── slider.lua ├── menus ├── _init.lua ├── functions │ ├── applyTheme.lua │ ├── closeAll.lua │ ├── manageControls.lua │ ├── playSound.lua │ ├── registerMenu.lua │ └── updateItems.lua ├── menu.lua ├── methods │ ├── goBack.lua │ ├── goTo.lua │ ├── isVisible.lua │ ├── onClose.lua │ ├── onOpen.lua │ ├── setClosable.lua │ ├── setItems.lua │ └── setVisible.lua └── theme.json ├── modals ├── _init.lua ├── modals.lua └── theme.json ├── notifications ├── _init.lua ├── helpNotification.lua ├── notification.lua ├── pulsingNotification.lua └── theme.json ├── showError.lua └── user-interface ├── .gitignore ├── content ├── assets │ ├── badges │ │ ├── arrowleft.png │ │ ├── arrowright.png │ │ ├── bettingbox_centre.png │ │ ├── bettingbox_left.png │ │ ├── bettingbox_right.png │ │ ├── card_suit_clubs.png │ │ ├── card_suit_diamonds.png │ │ ├── card_suit_hearts.png │ │ ├── card_suit_spades.png │ │ ├── medal_silver.png │ │ ├── mp_alerttriangle.png │ │ ├── mp_hostcrown.png │ │ ├── mp_medal_bronze.png │ │ ├── mp_medal_gold.png │ │ ├── mp_medal_silver.png │ │ ├── mp_specitem_cash.png │ │ ├── mp_specitem_coke.png │ │ ├── mp_specitem_heroin.png │ │ ├── mp_specitem_meth.png │ │ ├── mp_specitem_weed.png │ │ ├── shop_ammo_icon_a.png │ │ ├── shop_ammo_icon_b.png │ │ ├── shop_armour_icon_a.png │ │ ├── shop_armour_icon_b.png │ │ ├── shop_arrows_upanddown.png │ │ ├── shop_art_icon_a.png │ │ ├── shop_art_icon_b.png │ │ ├── shop_barber_icon_a.png │ │ ├── shop_barber_icon_b.png │ │ ├── shop_box_blank.png │ │ ├── shop_box_blankb.png │ │ ├── shop_box_cross.png │ │ ├── shop_box_crossb.png │ │ ├── shop_box_tick.png │ │ ├── shop_box_tickb.png │ │ ├── shop_chips_a.png │ │ ├── shop_chips_b.png │ │ ├── shop_clothing_icon_a.png │ │ ├── shop_clothing_icon_b.png │ │ ├── shop_franklin_icon_a.png │ │ ├── shop_franklin_icon_b.png │ │ ├── shop_garage_bike_icon_a.png │ │ ├── shop_garage_bike_icon_b.png │ │ ├── shop_garage_icon_a.png │ │ ├── shop_garage_icon_b.png │ │ ├── shop_gunclub_icon_a.png │ │ ├── shop_gunclub_icon_b.png │ │ ├── shop_health_icon_a.png │ │ ├── shop_health_icon_b.png │ │ ├── shop_lock.png │ │ ├── shop_lock_arena.png │ │ ├── shop_makeup_icon_a.png │ │ ├── shop_makeup_icon_b.png │ │ ├── shop_mask_icon_a.png │ │ ├── shop_mask_icon_b.png │ │ ├── shop_michael_icon_a.png │ │ ├── shop_michael_icon_b.png │ │ ├── shop_new_star.png │ │ ├── shop_tattoos_icon_a.png │ │ ├── shop_tattoos_icon_b.png │ │ ├── shop_tick_icon.png │ │ ├── shop_trevor_icon_a.png │ │ └── shop_trevor_icon_b.png │ ├── icons │ │ ├── last.svg │ │ ├── link.svg │ │ └── next.svg │ └── images │ │ └── debugBackground.png ├── features │ ├── context │ │ ├── animations.ts │ │ ├── context.css │ │ ├── context.tsx │ │ ├── defaultTheme.json │ │ └── props.tsx │ ├── features.css │ ├── features.tsx │ ├── items │ │ ├── button │ │ │ └── button.tsx │ │ ├── checkbox │ │ │ ├── checkbox.css │ │ │ └── checkbox.tsx │ │ ├── colorList │ │ │ ├── colorList.css │ │ │ └── colorList.tsx │ │ ├── items.css │ │ ├── line │ │ │ ├── line.css │ │ │ └── line.tsx │ │ ├── linkButton │ │ │ └── linkButton.tsx │ │ ├── list │ │ │ ├── list.css │ │ │ └── list.tsx │ │ ├── separator │ │ │ ├── separator.css │ │ │ └── separator.tsx │ │ └── slider │ │ │ ├── slider.css │ │ │ └── slider.tsx │ ├── menu │ │ ├── animations.ts │ │ ├── defaultTheme.json │ │ ├── menu.css │ │ ├── menu.tsx │ │ └── props.tsx │ ├── modals │ │ ├── animations.ts │ │ ├── defaultTheme.json │ │ ├── modal.css │ │ ├── modals.tsx │ │ └── props.tsx │ └── notifications │ │ ├── defaultTheme.json │ │ ├── help-notification │ │ ├── animations.ts │ │ ├── help.css │ │ └── help.tsx │ │ ├── notification │ │ ├── animations.ts │ │ ├── notification.css │ │ └── notification.tsx │ │ ├── notifications.css │ │ ├── notifications.tsx │ │ ├── props.tsx │ │ └── pulsingNotification │ │ ├── animations.ts │ │ ├── pulsingNotification.css │ │ └── pulsingNotification.tsx ├── fonts.css ├── hooks │ ├── fetchNui.ts │ └── useNuiEvent.ts ├── index.css ├── index.tsx ├── reset.css ├── utils │ ├── data │ │ ├── badges.ts │ │ └── fontsModifiers.ts │ ├── functions │ │ ├── darkenColor.ts │ │ ├── extractFontName.ts │ │ ├── extractFontWeight.ts │ │ ├── findBadge.ts │ │ ├── formatString.tsx │ │ ├── isDefined.ts │ │ ├── isHexColor.ts │ │ ├── isUrl.ts │ │ └── sleep.ts │ └── misc.ts └── vite-env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.mts /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/LICENSE -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/main.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/readme.md -------------------------------------------------------------------------------- /zUI/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/class.lua -------------------------------------------------------------------------------- /zUI/contextMenus/_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/_init.lua -------------------------------------------------------------------------------- /zUI/contextMenus/components/_graphics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/components/_graphics.lua -------------------------------------------------------------------------------- /zUI/contextMenus/functions/manageFocus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/functions/manageFocus.lua -------------------------------------------------------------------------------- /zUI/contextMenus/functions/registerContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/functions/registerContext.lua -------------------------------------------------------------------------------- /zUI/contextMenus/functions/setFocus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/functions/setFocus.lua -------------------------------------------------------------------------------- /zUI/contextMenus/functions/showInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/functions/showInfo.lua -------------------------------------------------------------------------------- /zUI/contextMenus/functions/updateContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/functions/updateContext.lua -------------------------------------------------------------------------------- /zUI/contextMenus/functions/updateItems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/functions/updateItems.lua -------------------------------------------------------------------------------- /zUI/contextMenus/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/menu.lua -------------------------------------------------------------------------------- /zUI/contextMenus/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/contextMenus/theme.json -------------------------------------------------------------------------------- /zUI/items/_loadItems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/_loadItems.lua -------------------------------------------------------------------------------- /zUI/items/button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/button.lua -------------------------------------------------------------------------------- /zUI/items/checkbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/checkbox.lua -------------------------------------------------------------------------------- /zUI/items/colorList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/colorList.lua -------------------------------------------------------------------------------- /zUI/items/line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/line.lua -------------------------------------------------------------------------------- /zUI/items/linkButton.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/linkButton.lua -------------------------------------------------------------------------------- /zUI/items/list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/list.lua -------------------------------------------------------------------------------- /zUI/items/separator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/separator.lua -------------------------------------------------------------------------------- /zUI/items/slider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/items/slider.lua -------------------------------------------------------------------------------- /zUI/menus/_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/_init.lua -------------------------------------------------------------------------------- /zUI/menus/functions/applyTheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/functions/applyTheme.lua -------------------------------------------------------------------------------- /zUI/menus/functions/closeAll.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/functions/closeAll.lua -------------------------------------------------------------------------------- /zUI/menus/functions/manageControls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/functions/manageControls.lua -------------------------------------------------------------------------------- /zUI/menus/functions/playSound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/functions/playSound.lua -------------------------------------------------------------------------------- /zUI/menus/functions/registerMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/functions/registerMenu.lua -------------------------------------------------------------------------------- /zUI/menus/functions/updateItems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/functions/updateItems.lua -------------------------------------------------------------------------------- /zUI/menus/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/menu.lua -------------------------------------------------------------------------------- /zUI/menus/methods/goBack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/goBack.lua -------------------------------------------------------------------------------- /zUI/menus/methods/goTo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/goTo.lua -------------------------------------------------------------------------------- /zUI/menus/methods/isVisible.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/isVisible.lua -------------------------------------------------------------------------------- /zUI/menus/methods/onClose.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/onClose.lua -------------------------------------------------------------------------------- /zUI/menus/methods/onOpen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/onOpen.lua -------------------------------------------------------------------------------- /zUI/menus/methods/setClosable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/setClosable.lua -------------------------------------------------------------------------------- /zUI/menus/methods/setItems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/setItems.lua -------------------------------------------------------------------------------- /zUI/menus/methods/setVisible.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/methods/setVisible.lua -------------------------------------------------------------------------------- /zUI/menus/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/menus/theme.json -------------------------------------------------------------------------------- /zUI/modals/_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/modals/_init.lua -------------------------------------------------------------------------------- /zUI/modals/modals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/modals/modals.lua -------------------------------------------------------------------------------- /zUI/modals/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/modals/theme.json -------------------------------------------------------------------------------- /zUI/notifications/_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/notifications/_init.lua -------------------------------------------------------------------------------- /zUI/notifications/helpNotification.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/notifications/helpNotification.lua -------------------------------------------------------------------------------- /zUI/notifications/notification.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/notifications/notification.lua -------------------------------------------------------------------------------- /zUI/notifications/pulsingNotification.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/notifications/pulsingNotification.lua -------------------------------------------------------------------------------- /zUI/notifications/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/notifications/theme.json -------------------------------------------------------------------------------- /zUI/showError.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/showError.lua -------------------------------------------------------------------------------- /zUI/user-interface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/.gitignore -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/arrowleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/arrowleft.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/arrowright.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/bettingbox_centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/bettingbox_centre.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/bettingbox_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/bettingbox_left.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/bettingbox_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/bettingbox_right.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/card_suit_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/card_suit_clubs.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/card_suit_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/card_suit_diamonds.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/card_suit_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/card_suit_hearts.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/card_suit_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/card_suit_spades.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/medal_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/medal_silver.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_alerttriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_alerttriangle.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_hostcrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_hostcrown.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_medal_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_medal_bronze.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_medal_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_medal_gold.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_medal_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_medal_silver.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_specitem_cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_specitem_cash.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_specitem_coke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_specitem_coke.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_specitem_heroin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_specitem_heroin.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_specitem_meth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_specitem_meth.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/mp_specitem_weed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/mp_specitem_weed.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_ammo_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_ammo_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_ammo_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_ammo_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_armour_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_armour_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_armour_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_armour_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_arrows_upanddown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_arrows_upanddown.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_art_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_art_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_art_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_art_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_barber_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_barber_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_barber_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_barber_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_box_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_box_blank.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_box_blankb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_box_blankb.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_box_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_box_cross.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_box_crossb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_box_crossb.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_box_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_box_tick.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_box_tickb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_box_tickb.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_chips_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_chips_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_chips_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_chips_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_clothing_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_clothing_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_clothing_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_clothing_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_franklin_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_franklin_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_franklin_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_franklin_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_garage_bike_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_garage_bike_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_garage_bike_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_garage_bike_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_garage_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_garage_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_garage_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_garage_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_gunclub_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_gunclub_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_gunclub_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_gunclub_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_health_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_health_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_health_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_health_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_lock.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_lock_arena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_lock_arena.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_makeup_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_makeup_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_makeup_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_makeup_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_mask_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_mask_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_mask_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_mask_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_michael_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_michael_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_michael_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_michael_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_new_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_new_star.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_tattoos_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_tattoos_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_tattoos_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_tattoos_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_tick_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_tick_icon.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_trevor_icon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_trevor_icon_a.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/badges/shop_trevor_icon_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/badges/shop_trevor_icon_b.png -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/icons/last.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/icons/last.svg -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/icons/link.svg -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/icons/next.svg -------------------------------------------------------------------------------- /zUI/user-interface/content/assets/images/debugBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/assets/images/debugBackground.png -------------------------------------------------------------------------------- /zUI/user-interface/content/features/context/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/context/animations.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/features/context/context.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/context/context.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/context/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/context/context.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/context/defaultTheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/context/defaultTheme.json -------------------------------------------------------------------------------- /zUI/user-interface/content/features/context/props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/context/props.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/features.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/features.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/features.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/button/button.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/checkbox/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/checkbox/checkbox.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/checkbox/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/checkbox/checkbox.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/colorList/colorList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/colorList/colorList.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/colorList/colorList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/colorList/colorList.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/items.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/items.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/line/line.css: -------------------------------------------------------------------------------- 1 | .zUI-Line { 2 | width: 85%; 3 | height: 0.4vh; 4 | } 5 | -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/line/line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/line/line.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/linkButton/linkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/linkButton/linkButton.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/list/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/list/list.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/list/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/list/list.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/separator/separator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/separator/separator.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/separator/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/separator/separator.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/slider/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/slider/slider.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/items/slider/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/items/slider/slider.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/menu/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/menu/animations.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/features/menu/defaultTheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/menu/defaultTheme.json -------------------------------------------------------------------------------- /zUI/user-interface/content/features/menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/menu/menu.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/menu/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/menu/menu.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/menu/props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/menu/props.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/modals/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/modals/animations.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/features/modals/defaultTheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/modals/defaultTheme.json -------------------------------------------------------------------------------- /zUI/user-interface/content/features/modals/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/modals/modal.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/modals/modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/modals/modals.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/modals/props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/modals/props.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/defaultTheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/defaultTheme.json -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/help-notification/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/help-notification/animations.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/help-notification/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/help-notification/help.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/help-notification/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/help-notification/help.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/notification/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/notification/animations.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/notification/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/notification/notification.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/notification/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/notification/notification.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/notifications.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/notifications.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/props.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/pulsingNotification/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/pulsingNotification/animations.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/pulsingNotification/pulsingNotification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/pulsingNotification/pulsingNotification.css -------------------------------------------------------------------------------- /zUI/user-interface/content/features/notifications/pulsingNotification/pulsingNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/features/notifications/pulsingNotification/pulsingNotification.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/fonts.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zUI/user-interface/content/hooks/fetchNui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/hooks/fetchNui.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/hooks/useNuiEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/hooks/useNuiEvent.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/index.css -------------------------------------------------------------------------------- /zUI/user-interface/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/index.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/reset.css -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/data/badges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/data/badges.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/data/fontsModifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/data/fontsModifiers.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/darkenColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/darkenColor.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/extractFontName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/extractFontName.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/extractFontWeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/extractFontWeight.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/findBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/findBadge.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/formatString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/formatString.tsx -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/isDefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/isDefined.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/isHexColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/isHexColor.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/isUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/isUrl.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/functions/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/functions/sleep.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/content/utils/misc.ts -------------------------------------------------------------------------------- /zUI/user-interface/content/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /zUI/user-interface/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/index.html -------------------------------------------------------------------------------- /zUI/user-interface/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/package-lock.json -------------------------------------------------------------------------------- /zUI/user-interface/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/package.json -------------------------------------------------------------------------------- /zUI/user-interface/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/tsconfig.json -------------------------------------------------------------------------------- /zUI/user-interface/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/tsconfig.node.json -------------------------------------------------------------------------------- /zUI/user-interface/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZProject-Official/zUI/HEAD/zUI/user-interface/vite.config.mts --------------------------------------------------------------------------------