Compare commits

...

14 Commits
0.1.0 ... main

Author SHA1 Message Date
c70d05af54 sync with mobx version
All checks were successful
AutoRelease / release (push) Successful in 4m23s
2024-07-12 16:37:34 +07:00
e3b507b435 update action
All checks were successful
AutoRelease / release (push) Successful in 2m44s
2024-05-31 05:59:45 +07:00
fae6a5f97c modified: .github/workflows/autorelease.yml
Some checks failed
AutoRelease / release (push) Failing after 1m49s
2024-05-31 05:38:51 +07:00
b91f95d296 modified: .github/workflows/autorelease.yml
Some checks failed
AutoRelease / release (push) Failing after 3m8s
2024-05-31 05:32:48 +07:00
61cdbb3b7a update
Some checks failed
AutoRelease / release (push) Failing after 3m51s
2024-05-31 05:18:24 +07:00
c18e606d10 fix framwork 2024-04-11 15:31:34 +07:00
c3ef6cc962 Add escrow 2024-04-11 15:27:43 +07:00
cff9c609c6 Fix locale 2024-04-09 16:37:30 +07:00
481d82d612 Add locales system 2024-04-09 12:44:56 +07:00
78bf2c1c3f Add stringd 2024-04-09 11:55:21 +07:00
d0275487e0 add type 2024-04-08 12:37:20 +07:00
0935cbf272 Update autorelease.yml 2024-04-08 12:35:27 +07:00
fc8a4f4587 Update main.lua 2024-03-28 23:44:07 +07:00
e42f1f006b test 2024-03-24 06:56:44 +07:00
12 changed files with 686 additions and 98 deletions

View File

@ -19,23 +19,19 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18.x'
node-version: "18.x"
- name: Install dependencies NUI
working-directory: ./web
run: yarn install --frozen-lockfile
- name: Build Bundles
run: npm install --frozen-lockfile
- name: Build UI
working-directory: ./web
run: yarn build
run: npm run build
- name: Zip Folder
run: zip -r ${{ github.event.repository.name }}.zip config.lua fxmanifest.lua impl.lua main.lua README.md LICENSE web/build/* client/* server/*
- name: Get Versioning Data
id: versioning
uses: Soumeh/Auto-Versioning@main
- uses: 'marvinpinto/action-automatic-releases@latest'
run: zip -r ${{ github.event.repository.name }}.zip config.lua fxmanifest.lua impl.lua main.lua README.md LICENSE web/build/* locales/* client/* server/*
- uses: "akkuman/gitea-release-action@v1"
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
title: ${{ github.event.head_commit.message }}
automatic_release_tag: ${{ steps.versioning.outputs.tag }}
name: "${{ github.event.head_commit.message }}"
tag_name: "latest"
prerelease: false
files: |
*.zip

View File

@ -1,3 +1,4 @@
---@class TestImpl : Impl
local Impl = NewImpl("Test")
function Impl:Init()
@ -15,4 +16,4 @@ end
function Impl:Add(amount, amount2)
self.testVar = self.testVar + amount + amount2
return self.testVar
end
end

View File

@ -1,9 +1,10 @@
Config = {}
Config.Dependencies = {} -- Reqired resources loaded to start
Config.Locale = 'vi'
Config.Settings = {
locale = {}
locale = Locales[Config.Locale] or Locales['default']
}
--Dont touch this
@ -21,7 +22,8 @@ Config.EnableModules = {
Config.Debug = true
Config.Nui = false
Config.Dev = false
Config.Framework = "custom" -- "qb" | "esx" | "custom"
---@type "qb" | "esx" | "ProjectStarboy" | "standalone"
Config.Framework = "standalone" -- "qb" | "esx" | "custom"
Config.ClientLazyLoad = false
function L(key, ...)

View File

@ -28,6 +28,8 @@ ui_page 'web/build/index.html'
shared_scripts {
'@ox_lib/init.lua',
"locales/L.lua",
"locales/lang/*.lua",
"config.lua",
"main.lua",
"impl.lua",
@ -47,3 +49,14 @@ server_script {
"server/classes/*",
"server/impl/*"
}
escrow_ignore {
"locales/lang/*.lua",
"config.lua",
"main.lua",
"impl.lua",
"client/utils.lua",
"client/bridge.lua",
"server/utils.lua",
"server/bridge.lua",
}

View File

@ -1,9 +1,15 @@
---@class Class
---@field destroyed boolean
---@field originalMethods table
---@field eventHandlers table
Class = {}
env = IsDuplicityVersion() and "sv" or "cl"
-- default (empty) constructor
function Class:Init(...) end
-- create a subclass
---comment
---@param obj any
---@return any
function Class:extend(obj)
local obj = obj or {}
@ -35,42 +41,6 @@ function Class:extend(obj)
return self:new(...)
end
--[[ -- allow for getters and setters
mt.__index = function(table, key)
local val = rawget(table._, key)
--print(key, type(val))
if val and type(val) == "table" and (rawget(val, '__cfx_functionReference') == nil) and (val.get ~= nil or val.value ~= nil) then
if val.get then
if type(val.get) == "function" then
return val.get(table, val.value)
else
return val.get
end
elseif val.value then
return val.value
end
else
return val
end
end
mt.__newindex = function(table, key, value)
local val = rawget(table._, key)
if val and type(val) == "table" and (rawget(val, '__cfx_functionReference') == nil) and ((val.set ~= nil and val._ == nil) or val.value ~= nil) then
local v = value
if val.set then
if type(val.set) == "function" then
v = val.set(table, value, val.value)
else
v = val.set
end
end
val.value = v
if val and val.afterSet then val.afterSet(table, v) end
else
table._[key] = value
end
end ]]
setmetatable(obj, mt)
@ -81,9 +51,11 @@ end
function Class:set(prop, value)
if not value and type(prop) == "table" then
for k, v in pairs(prop) do
---@diagnostic disable-next-line: undefined-field
rawset(self._, k, v)
end
else
---@diagnostic disable-next-line: undefined-field
rawset(self._, prop, value)
end
end
@ -99,11 +71,16 @@ function Class:new(...)
return obj
end
---@diagnostic disable-next-line: lowercase-global
function class(attr)
attr = attr or {}
return Class:extend(attr)
end
---@class Impl:Class
---@field name string
---@field config table
---@field implType "impl"
Impl = class()
function Impl:GetName()
@ -288,12 +265,28 @@ function Impl:GetConfig()
return self.config
end
function NewImpl(name)
---Create a new Implemented class
---@param name string
---@return Impl
function NewImpl(name, sync)
---@type Impl
local impl = Impl:extend({
name = name,
config = Config[name] or {},
implType = "impl"
implType = sync and "syncImpl" or "impl"
})
main:RegisterImpl(name, impl)
return impl
end
function NewSyncImpl(name)
local impl = Impl:extend({
name = name,
config = Config[name] or {},
implType = sync and "syncImpl" or "impl",
})
impl.start = function()
main.initializedImpls[name] = impl(main)
end
return impl
end

15
locales/L.lua Normal file
View File

@ -0,0 +1,15 @@
Locales = {}
function L(key, args)
if not args then args = {} end
if type(args) ~= "table" then args = {} end
if Config.Settings.locale[key] then
local pattern = Config.Settings.locale[key]
for k, v in pairs(args) do
pattern = pattern:gsub(":{" .. k .. "}", v)
end
return pattern
else
return key
end
end

9
locales/lang/default.lua Normal file
View File

@ -0,0 +1,9 @@
Locales['default'] = {
['KILLED YOU'] = "ĐÃ HẠ BẠN",
['KILLED BY'] = "BỊ HẠ GỤC BỞI",
['OUTGOING'] = "GÂY RA",
['COMBAT REPORT'] = "BÁO CÁO GIAO TRANH",
['INCOMING'] = "NHẬN VÀO",
}
print("Ádasd")

View File

@ -13,6 +13,9 @@ else
end
end
---@class Main
---@field impls table<string, Impl>
---@field initializedImpls table<string, Impl>
Main = {}
ResourceName = GetCurrentResourceName()
local RegisteredEvents = {}
@ -26,6 +29,9 @@ else
NuiReady = true
end)
end
---Init main class
---@return Main
function Main:Init()
local o = {}
setmetatable(o, { __index = Main })
@ -43,26 +49,29 @@ function Main:Init()
o:Thread1()
else
o.ClientImpls = {}
for k, v in pairs(Config.EnableModules) do
if v then
local path = "client/impl/" .. k .. ".impl.lua"
local source = LoadResourceFile(ResourceName, path)
if source == nil then
self:LogWarning("Failed to load %s", path)
else
--[[ self:LogInfo("Loading %s", path)
self:LogInfo("Loaded %s", source) ]]
o.ClientImpls[k] = source
if Config.ClientLazyLoad then
for k, v in pairs(Config.EnableModules) do
if v and v.client then
local path = "client/impl/" .. k .. ".impl.lua"
local source = LoadResourceFile(ResourceName, path)
if source == nil then
self:LogWarning("Failed to load %s", path)
else
--[[ self:LogInfo("Loading %s", path)
self:LogInfo("Loaded %s", source) ]]
o.ClientImpls[k] = source
end
end
end
lib.callback.register(ResourceName .. ":getClientImpl", function(source, implName)
return o.ClientImpls[implName]
end)
end
lib.callback.register(ResourceName .. ":getClientImpl", function(source, implName)
return o.ClientImpls[implName]
end)
end
o:Exports()
o:RegisterCommands()
o:RegisterEvents()
o:LogInfo("Main initialized")
return o
end
@ -73,6 +82,7 @@ end
if not IsDuplicityVersion() then
function Main:Thread1()
self.playerServerId = GetPlayerServerId(self.playerId)
Citizen.CreateThread(function()
while true do
self.playerId = PlayerId()
@ -125,7 +135,7 @@ function Main:RegisterCommands()
end
local source = LoadResourceFile(ResourceName, "server/impl/" .. implName .. ".impl.lua")
if source == nil then
self:LogWarning("Failed to load %s", path)
self:LogWarning("Failed to load %s", ResourceName, "server/impl/" .. implName .. ".impl.lua")
else
self:LogInfo("Loading %s", implName)
load(source)()
@ -134,7 +144,7 @@ function Main:RegisterCommands()
if mode == "0" or mode == "1" then
local clSource = LoadResourceFile(ResourceName, "client/impl/" .. implName .. ".impl.lua")
if clSource == nil then
self:LogWarning("Failed to load %s", path)
self:LogWarning("Failed to load %s", ResourceName, "client/impl/" .. implName .. ".impl.lua")
else
self:LogInfo("Loading %s", "client/impl/" .. implName .. ".impl.lua")
TriggerClientEvent(ResourceName .. ":restartClientImpl", -1, implName, clSource)
@ -157,21 +167,21 @@ function Main:RegisterEvents()
end
function Main:LogError(msg, ...)
print(("[^1ERROR^0] " .. msg):format(...))
print(("[^1ERROR^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
end
function Main:LogWarning(msg, ...)
print(("[^3WARNING^0] " .. msg):format(...))
print(("[^3WARNING^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
end
function Main:LogSuccess(msg, ...)
if not Config.Debug then return end
print(("[^2INFO^0] " .. msg):format(...))
print(("[^2INFO^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
end
function Main:LogInfo(msg, ...)
if not Config.Debug then return end
print(("[^5INFO^0] " .. msg):format(...))
print(("[^5INFO^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
end
function Main:CheckValidImpl(name, impl)
@ -187,6 +197,9 @@ function Main:CheckValidImpl(name, impl)
end
function Main:RegisterImpl(name, impl)
if impl.implType == "syncImpl" then
return
end
if impl.implType == "impl" and (Config.EnableModules[name] == nil or not Config.EnableModules[name].enabled) then
self:LogWarning("Impl %s not enabled", name)
return
@ -350,6 +363,16 @@ function Main:Exports()
end)
end
function Main:ToggleUI(state)
self.showUI = state
if Config.Nui then
SendNUIMessage({
event = "main:setShow",
data = state
})
end
end
main = Main:Init()
AddEventHandler(("%s:onReady"):format(GetCurrentResourceName()), function(handler)
local invokingResource = GetInvokingResource()
@ -357,25 +380,7 @@ AddEventHandler(("%s:onReady"):format(GetCurrentResourceName()), function(handle
main:ListenOnReady(handler)
end)
--[[ local origAddEventHandler = AddEventHandler
function AddEventHandler(eventName, ...)
if RegisteredEvents[eventName] then
main:LogWarning("Event %s already registered. Removing", eventName)
RemoveEventHandler(RegisteredEvents[eventName])
end
RegisteredEvents[eventName] = origAddEventHandler(eventName, ...)
return RegisteredEvents[eventName]
end
local origRegisterNetEvent = RegisterNetEvent
function RegisterNetEvent(eventName, ...)
if RegisteredEvents[eventName] then
main:LogWarning("Event %s already registered. Removing", eventName)
RemoveEventHandler(RegisteredEvents[eventName])
end
RegisteredEvents[eventName] = origRegisterNetEvent(eventName, ...)
return RegisteredEvents[eventName]
end ]]
Citizen.CreateThread(function()
while GetGameTimer() < main.lastTimeImplRegistered + 1000 do
@ -384,6 +389,19 @@ Citizen.CreateThread(function()
while Framework == nil do
main:LogInfo("Waiting for Framework")
Wait(100)
if Config.Framework == 'esx' then
Framework = exports["es_extended"]:getSharedObject()
elseif Config.Framework == "qb" then
Framework = exports['qb-core']:GetCoreObject()
elseif Config.Framework == "ProjectStarboy" then
Framework = CORE
else
Framework = {}
Framework.Functions = {}
Framework.Functions.GetPlayerData = function()
return {}
end
end
end
main:InitImpl()
if not IsDuplicityVersion() then
@ -397,6 +415,11 @@ Citizen.CreateThread(function()
Wait(100)
player = Framework.Functions.GetPlayerData()
end
elseif Config.Framework == 'ProjectStarboy' then
while not CORE.PlayerData.loaded do
Wait(100)
main:LogInfo("Waiting for player loaded")
end
end
while not NuiReady and Config.Nui do
Wait(100)

View File

@ -1,5 +1,6 @@
---@class TestImpl : Impl
local Impl = NewImpl("Test")
function Impl:OnReady()
main:LogInfo("%s ready", self:GetName())
end
end

View File

@ -14,11 +14,12 @@
"@nextui-org/react": "^2.2.9",
"@reduxjs/toolkit": "^2.0.1",
"framer-motion": "^10.16.16",
"lr-components": "^0.2.3",
"lr-components": "^0.3.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-toastify": "^9.1.3",
"stringd": "^2.2.0",
"styled-components": "^6.1.1"
},
"devDependencies": {

View File

@ -15,8 +15,8 @@ dependencies:
specifier: ^10.16.16
version: 10.16.16(react-dom@18.2.0)(react@18.2.0)
lr-components:
specifier: ^0.2.3
version: 0.2.3(react-dom@18.2.0)(react@18.2.0)
specifier: ^0.3.7
version: 0.3.7(@types/react@18.2.43)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)(tailwindcss@3.3.6)
react:
specifier: ^18.2.0
version: 18.2.0
@ -29,6 +29,9 @@ dependencies:
react-toastify:
specifier: ^9.1.3
version: 9.1.3(react-dom@18.2.0)(react@18.2.0)
stringd:
specifier: ^2.2.0
version: 2.2.0
styled-components:
specifier: ^6.1.1
version: 6.1.1(react-dom@18.2.0)(react@18.2.0)
@ -716,6 +719,39 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-WzD7sscL+4K0TFyUutTn1AhU0wcS68TqNCTNv7KgON6ODdwieydilMxAyXvwo3RgXeWG+8BbdxJC/6W+/iLBTg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-accordion': 2.0.2(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@react-aria/button': 3.9.0(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/tree': 3.7.4(react@18.2.0)
'@react-types/accordion': 3.0.0-alpha.17(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/aria-utils@2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-4M4jeJ/ghGaia9064yS+mEZ3sFPH80onmjNGWJZkkZDmUV4R88lNkqe/XYBK1tbxfl4Kxa8jc/ALsZkUkkvR5w==}
peerDependencies:
@ -775,6 +811,45 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/autocomplete@2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-ViPXrZnP35k7LF+TBA4w8nqu0OEj9p1z9Rt7rwrACmY2VmDGY6h6a6nDCMjhuTVXptftRvzxfIPsIyzBYqxb0g==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/combobox': 3.8.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/i18n': 3.9.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-aria/visually-hidden': 3.8.7(react@18.2.0)
'@react-stately/combobox': 3.8.0(react@18.2.0)
'@react-types/combobox': 3.9.0(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/avatar@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3QUn8v61iNvAYogUbEDVnhDjBK6WBxxFYLp95a0H52zN0p2LHXe+UNwdGZYFo5QNWx6CHGH3vh2AHlLLy3WFSQ==}
peerDependencies:
@ -863,6 +938,35 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/button@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-mDrSII1oneY4omwDdxUhl5oLa3AhoWCchwV/jt7egunnAFie32HbTqfFYGpLGiJw3JMMh3WDUthrI1islVTRKA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/button': 3.9.0(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/button': 3.9.1(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==}
peerDependencies:
@ -888,6 +992,31 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/button': 3.9.0(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/checkbox@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-X6WkwPbZlDvioEcXF6HhKH21wD6OK+3+FSroKkzMPQLJrj2KYUIYGbiuw9rT9aCtdjbT+6HUCv+FA8/cBQr7cA==}
peerDependencies:
@ -999,6 +1128,34 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/dropdown@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-3KINNvC7Cz+deQltCM8gaB7iJCfU4Qsp1fwnoy1wUEjeZhEtPOPR59oTyqT+gPaPIisP1+LLOfcqRl4jNQoVXw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/menu': 3.11.2(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/menu': 3.5.7(react@18.2.0)
'@react-types/menu': 3.9.6(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==}
peerDependencies:
@ -1016,6 +1173,23 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==}
peerDependencies:
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@nextui-org/theme'
- tailwind-variants
dev: false
/@nextui-org/image@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-bps5D5ki7PoLldb8wcJEf6C4EUFZm3PocLytNaGa7dNxFfaCOD78So+kq+K+0IRusK3yn94K8r31qMvpI3Gg2Q==}
peerDependencies:
@ -1193,6 +1367,40 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/modal@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-unfP0EMF3FDg5CkRqou03s4/BopWbaBTeVIMZeA2A1WF5teHUOmpLdp44Z1KOoWB1RVMDVd4JeoauNHNhJMp0g==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@nextui-org/use-aria-modal-overlay': 2.0.6(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/use-disclosure': 2.0.6(react@18.2.0)
'@react-aria/dialog': 3.5.8(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/overlays': 3.6.4(react@18.2.0)
'@react-types/overlays': 3.8.4(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.43)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==}
peerDependencies:
@ -1224,6 +1432,37 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-toggle-button': 2.0.6(react@18.2.0)
'@nextui-org/use-scroll-position': 2.0.4(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/toggle': 3.7.0(react@18.2.0)
'@react-stately/utils': 3.9.0(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.43)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/pagination@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-OVpkpXqUKRuMRIcYESBAL95d3pqZ17SKAyNINMiJ/DwWnrzJu/LXGmFwTuYRoBdqHFlm7guGqZbHmAkcS/Fgow==}
peerDependencies:
@ -1281,6 +1520,40 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/popover@2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-fqqktFQ/chIBS9Y3MghL6KX6qAy3hodtXUDchnxLa1GL+oi6TCBLUjo+wgI5EMJrTTbqo/eFLui/Ks00JfCj+A==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/dialog': 3.5.8(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/overlays': 3.6.4(react@18.2.0)
'@react-types/button': 3.9.1(react@18.2.0)
'@react-types/overlays': 3.8.4(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.43)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/progress@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-RPVsFCF8COFClS/8PqEepzryhDFtIcJGQLu/P+qAr7jIDlXizXaBDrp0X34GVtQsapNeE9ExxX9Kt+QIspuHHQ==}
peerDependencies:
@ -1397,6 +1670,62 @@ packages:
- tailwindcss
dev: false
/@nextui-org/react@2.2.9(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)(tailwindcss@3.3.6):
resolution: {integrity: sha512-QHkUQTxI9sYoVjrvTpYm5K68pMDRqD13+DVzdsrkJuETGhbvE2c2CCGc4on9EwXC3JsOxuP/OyqaAmOIuHhYkA==}
peerDependencies:
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/autocomplete': 2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/avatar': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/badge': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/breadcrumbs': 2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/checkbox': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/chip': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/code': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/dropdown': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/image': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/kbd': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/link': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/modal': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/pagination': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/progress': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/radio': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/select': 2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/skeleton': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/slider': 2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/snippet': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/switch': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/table': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/user': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@react-aria/visually-hidden': 3.8.7(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
- tailwindcss
dev: false
/@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==}
peerDependencies:
@ -1415,6 +1744,24 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/scroll-shadow@2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-uxT8D+WCWeBy4xaFDfqVpBgjjHZUwydXsX5HhbzZCBir/1eRG5GMnUES3w98DSwcUVadG64gAVsyGW4HmSZw1Q==}
peerDependencies:
@ -1466,6 +1813,40 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/select@2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-GCO9uzyYnFIdJTqIe6aDe2NnYlclcdYfZnECFAze/R2MW0jpoysk5ysGBDjVDmZis6tLu+BOFXJbIlYEi+LoUQ==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@nextui-org/use-aria-multiselect': 2.1.3(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-aria/visually-hidden': 3.8.7(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/shared-icons@2.0.6(react@18.2.0):
resolution: {integrity: sha512-Mw5utPJAclFaeKAZowznEgabI5gdhXrW0iMaMA18Y4zcZRTidAc0WFeGYUlX876NxYLPc1Zk4bZUhQvMe+7uWg==}
peerDependencies:
@ -1527,6 +1908,34 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/slider@2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-dC6HHMmtn2WvxDmbY/Dq51XJjQ7cAnjZsuYVIvhwIiCLDG8QnEIhmYN0DQp/6oeZsCHnyMHC4DmtgOiJL0eXrQ==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/i18n': 3.9.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/slider': 3.7.3(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-aria/visually-hidden': 3.8.7(react@18.2.0)
'@react-stately/slider': 3.4.5(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- framer-motion
- tailwind-variants
dev: false
/@nextui-org/snippet@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-8hKxqKpbJIMqFVedzYj90T4td+TkWdOdyYD9+VjywMdezAjsWdr8tqQj7boaMFjVNVSG+Pnw55Pgg/vkpc21aw==}
peerDependencies:
@ -1553,6 +1962,32 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/snippet@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-8hKxqKpbJIMqFVedzYj90T4td+TkWdOdyYD9+VjywMdezAjsWdr8tqQj7boaMFjVNVSG+Pnw55Pgg/vkpc21aw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/use-clipboard': 2.0.4(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/spacer@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-bLnhPRnoyHQXhLneHjbRqZNxJWMFOBYOZkuX83uy59/FFUY07BcoNsb2s80tN3GoVxsaZ2jB6NxxVbaCJwoPog==}
peerDependencies:
@ -1704,6 +2139,38 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-GjERgBYUAY1KD4GqNVy0cRi6GyQnf62q0ddcN4je3sEM6rsq3PygEXhkN5pxxFPacoYM/UE6rBswHSKlbjJjgw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-is-mounted': 2.0.4(react@18.2.0)
'@nextui-org/use-update-effect': 2.0.4(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/tabs': 3.8.2(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/tabs': 3.6.2(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
'@react-types/tabs': 3.3.4(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
scroll-into-view-if-needed: 3.0.10
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/theme@2.1.17(tailwindcss@3.3.6):
resolution: {integrity: sha512-/WeHcMrAcWPGsEVn9M9TnvxKkaYkCocBH9JrDYCEFQoJgleUzHd4nVk7MWtpSOYJXLUzUMY1M9AqAK3jBkw+5g==}
peerDependencies:
@ -1751,6 +2218,35 @@ packages:
- tailwind-variants
dev: false
/@nextui-org/tooltip@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-LaFyS5bXhcZFXP9rnh6pTKsYX6siWjzEe5z72FIOyAV2yvv2yhkRiO/mEHKI8moo+/tScW/6muFXsvbEalPefg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/tooltip': 3.6.5(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/tooltip': 3.4.6(react@18.2.0)
'@react-types/overlays': 3.8.4(react@18.2.0)
'@react-types/tooltip': 3.4.6(react@18.2.0)
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/use-aria-accordion@2.0.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-ebYr4CdvWifuTM/yyhQLKCa7aUqbVrWyR0SB6VNCGDID/kvRUW52puWnY9k24xdwY0cKbW3JRciKtQkrokRQwg==}
peerDependencies:
@ -3793,6 +4289,25 @@ packages:
'@emotion/is-prop-valid': 0.8.8
dev: false
/framer-motion@11.0.25(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-mRt7vQGzA7++wTgb+PW1TrlXXgndqR6hCiJ48fXr2X9alte2hPQiAq556HRwDCt0Q5X98MNvcSe4KUa27Gm5Lg==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0
react-dom: ^18.0.0
peerDependenciesMeta:
'@emotion/is-prop-valid':
optional: true
react:
optional: true
react-dom:
optional: true
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
dev: false
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@ -4078,21 +4593,29 @@ packages:
js-tokens: 4.0.0
dev: false
/lr-components@0.2.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-CKcegip4QAXgZUFY/PQLIsv2/xsec36N000RBULBgzq9vX5SexzHcgUucdqiNXkDmSleR5fzx2tMi+sU1ugOtw==}
/lr-components@0.3.7(@types/react@18.2.43)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)(tailwindcss@3.3.6):
resolution: {integrity: sha512-/zGWh6nDwAUGsY678aIioOqOd+z0Muoftwqouhr+PB04rlgCGrKEonaBqCeP60c6/3N5itfeu9dbnzf3VmH41w==}
engines: {node: '>=10'}
peerDependencies:
react: '>=16'
dependencies:
'@nextui-org/react': 2.2.9(@types/react@18.2.43)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)(tailwindcss@3.3.6)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@uidotdev/usehooks': 2.4.1(react-dom@18.2.0)(react@18.2.0)
csstype: 3.1.3
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
moment: 2.29.4
react: 18.2.0
react-icons: 4.12.0(react@18.2.0)
styled-components: 6.1.1(react-dom@18.2.0)(react@18.2.0)
usehooks-ts: 2.9.1(react-dom@18.2.0)(react@18.2.0)
transitivePeerDependencies:
- '@emotion/is-prop-valid'
- '@types/react'
- react-dom
- tailwind-variants
- tailwindcss
dev: false
/lru-cache@5.1.1:
@ -4586,6 +5109,11 @@ packages:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
/stringd@2.2.0:
resolution: {integrity: sha512-+Cy2qL0I7feya1Rrgem6/pogMEEA5CXlWxR5WNyy6AgKRVtSqmMtkoDRv6czf5P/b//Y6YuT43Y4z7etKtzKFw==}
engines: {node: '>=12'}
dev: false
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}

View File

@ -7,13 +7,19 @@ import AppActionHook from './components/AppActionHook';
import { isEnvBrowser } from './utils/misc';
import { fetchNui } from './utils/fetchNui';
import { DefaultUISetting, ISettingContext, UISetting } from './types';
import stringd from 'stringd';
export const SettingContext = createContext<ISettingContext>(DefaultUISetting);
function App() {
const show = useSelector((state: RootState) => state.main.show);
const [setting, setSetting] = useState<UISetting>({ locale: {} });
const L = (key: string) => setting.locale[key] || key;
const L = (key: string, args?: { [key: string]: string | number }) => {
if (setting.locale[key]) {
return stringd(setting.locale[key], args) as string;
}
return key;
};
useEffect(() => {
if (!isEnvBrowser()) {
setTimeout(async () => {