Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
c70d05af54 | |||
e3b507b435 | |||
fae6a5f97c | |||
b91f95d296 | |||
61cdbb3b7a | |||
c18e606d10 | |||
c3ef6cc962 | |||
cff9c609c6 | |||
481d82d612 | |||
78bf2c1c3f | |||
d0275487e0 | |||
0935cbf272 | |||
fc8a4f4587 | |||
e42f1f006b |
20
.github/workflows/autorelease.yml
vendored
20
.github/workflows/autorelease.yml
vendored
|
@ -19,23 +19,19 @@ jobs:
|
||||||
- name: Use Node.js
|
- name: Use Node.js
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: '18.x'
|
node-version: "18.x"
|
||||||
- name: Install dependencies NUI
|
- name: Install dependencies NUI
|
||||||
working-directory: ./web
|
working-directory: ./web
|
||||||
run: yarn install --frozen-lockfile
|
run: npm install --frozen-lockfile
|
||||||
- name: Build Bundles
|
- name: Build UI
|
||||||
working-directory: ./web
|
working-directory: ./web
|
||||||
run: yarn build
|
run: npm run build
|
||||||
- name: Zip Folder
|
- 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/*
|
run: zip -r ${{ github.event.repository.name }}.zip config.lua fxmanifest.lua impl.lua main.lua README.md LICENSE web/build/* locales/* client/* server/*
|
||||||
- name: Get Versioning Data
|
- uses: "akkuman/gitea-release-action@v1"
|
||||||
id: versioning
|
|
||||||
uses: Soumeh/Auto-Versioning@main
|
|
||||||
- uses: 'marvinpinto/action-automatic-releases@latest'
|
|
||||||
with:
|
with:
|
||||||
repo_token: '${{ secrets.GITHUB_TOKEN }}'
|
name: "${{ github.event.head_commit.message }}"
|
||||||
title: ${{ github.event.head_commit.message }}
|
tag_name: "latest"
|
||||||
automatic_release_tag: ${{ steps.versioning.outputs.tag }}
|
|
||||||
prerelease: false
|
prerelease: false
|
||||||
files: |
|
files: |
|
||||||
*.zip
|
*.zip
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
---@class TestImpl : Impl
|
||||||
local Impl = NewImpl("Test")
|
local Impl = NewImpl("Test")
|
||||||
|
|
||||||
function Impl:Init()
|
function Impl:Init()
|
||||||
|
@ -15,4 +16,4 @@ end
|
||||||
function Impl:Add(amount, amount2)
|
function Impl:Add(amount, amount2)
|
||||||
self.testVar = self.testVar + amount + amount2
|
self.testVar = self.testVar + amount + amount2
|
||||||
return self.testVar
|
return self.testVar
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
Config = {}
|
Config = {}
|
||||||
|
|
||||||
Config.Dependencies = {} -- Reqired resources loaded to start
|
Config.Dependencies = {} -- Reqired resources loaded to start
|
||||||
|
Config.Locale = 'vi'
|
||||||
|
|
||||||
Config.Settings = {
|
Config.Settings = {
|
||||||
locale = {}
|
locale = Locales[Config.Locale] or Locales['default']
|
||||||
}
|
}
|
||||||
|
|
||||||
--Dont touch this
|
--Dont touch this
|
||||||
|
@ -21,7 +22,8 @@ Config.EnableModules = {
|
||||||
Config.Debug = true
|
Config.Debug = true
|
||||||
Config.Nui = false
|
Config.Nui = false
|
||||||
Config.Dev = false
|
Config.Dev = false
|
||||||
Config.Framework = "custom" -- "qb" | "esx" | "custom"
|
---@type "qb" | "esx" | "ProjectStarboy" | "standalone"
|
||||||
|
Config.Framework = "standalone" -- "qb" | "esx" | "custom"
|
||||||
Config.ClientLazyLoad = false
|
Config.ClientLazyLoad = false
|
||||||
|
|
||||||
function L(key, ...)
|
function L(key, ...)
|
||||||
|
|
|
@ -28,6 +28,8 @@ ui_page 'web/build/index.html'
|
||||||
|
|
||||||
shared_scripts {
|
shared_scripts {
|
||||||
'@ox_lib/init.lua',
|
'@ox_lib/init.lua',
|
||||||
|
"locales/L.lua",
|
||||||
|
"locales/lang/*.lua",
|
||||||
"config.lua",
|
"config.lua",
|
||||||
"main.lua",
|
"main.lua",
|
||||||
"impl.lua",
|
"impl.lua",
|
||||||
|
@ -47,3 +49,14 @@ server_script {
|
||||||
"server/classes/*",
|
"server/classes/*",
|
||||||
"server/impl/*"
|
"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",
|
||||||
|
}
|
||||||
|
|
71
impl.lua
71
impl.lua
|
@ -1,9 +1,15 @@
|
||||||
|
---@class Class
|
||||||
|
---@field destroyed boolean
|
||||||
|
---@field originalMethods table
|
||||||
|
---@field eventHandlers table
|
||||||
Class = {}
|
Class = {}
|
||||||
env = IsDuplicityVersion() and "sv" or "cl"
|
env = IsDuplicityVersion() and "sv" or "cl"
|
||||||
-- default (empty) constructor
|
-- default (empty) constructor
|
||||||
function Class:Init(...) end
|
function Class:Init(...) end
|
||||||
|
|
||||||
-- create a subclass
|
---comment
|
||||||
|
---@param obj any
|
||||||
|
---@return any
|
||||||
function Class:extend(obj)
|
function Class:extend(obj)
|
||||||
local obj = obj or {}
|
local obj = obj or {}
|
||||||
|
|
||||||
|
@ -35,42 +41,6 @@ function Class:extend(obj)
|
||||||
return self:new(...)
|
return self:new(...)
|
||||||
end
|
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)
|
setmetatable(obj, mt)
|
||||||
|
|
||||||
|
@ -81,9 +51,11 @@ end
|
||||||
function Class:set(prop, value)
|
function Class:set(prop, value)
|
||||||
if not value and type(prop) == "table" then
|
if not value and type(prop) == "table" then
|
||||||
for k, v in pairs(prop) do
|
for k, v in pairs(prop) do
|
||||||
|
---@diagnostic disable-next-line: undefined-field
|
||||||
rawset(self._, k, v)
|
rawset(self._, k, v)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
---@diagnostic disable-next-line: undefined-field
|
||||||
rawset(self._, prop, value)
|
rawset(self._, prop, value)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -99,11 +71,16 @@ function Class:new(...)
|
||||||
return obj
|
return obj
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@diagnostic disable-next-line: lowercase-global
|
||||||
function class(attr)
|
function class(attr)
|
||||||
attr = attr or {}
|
attr = attr or {}
|
||||||
return Class:extend(attr)
|
return Class:extend(attr)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@class Impl:Class
|
||||||
|
---@field name string
|
||||||
|
---@field config table
|
||||||
|
---@field implType "impl"
|
||||||
Impl = class()
|
Impl = class()
|
||||||
|
|
||||||
function Impl:GetName()
|
function Impl:GetName()
|
||||||
|
@ -288,12 +265,28 @@ function Impl:GetConfig()
|
||||||
return self.config
|
return self.config
|
||||||
end
|
end
|
||||||
|
|
||||||
function NewImpl(name)
|
---Create a new Implemented class
|
||||||
|
---@param name string
|
||||||
|
---@return Impl
|
||||||
|
function NewImpl(name, sync)
|
||||||
|
---@type Impl
|
||||||
local impl = Impl:extend({
|
local impl = Impl:extend({
|
||||||
name = name,
|
name = name,
|
||||||
config = Config[name] or {},
|
config = Config[name] or {},
|
||||||
implType = "impl"
|
implType = sync and "syncImpl" or "impl"
|
||||||
})
|
})
|
||||||
main:RegisterImpl(name, impl)
|
main:RegisterImpl(name, impl)
|
||||||
return impl
|
return impl
|
||||||
end
|
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
15
locales/L.lua
Normal 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
9
locales/lang/default.lua
Normal 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")
|
97
main.lua
97
main.lua
|
@ -13,6 +13,9 @@ else
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@class Main
|
||||||
|
---@field impls table<string, Impl>
|
||||||
|
---@field initializedImpls table<string, Impl>
|
||||||
Main = {}
|
Main = {}
|
||||||
ResourceName = GetCurrentResourceName()
|
ResourceName = GetCurrentResourceName()
|
||||||
local RegisteredEvents = {}
|
local RegisteredEvents = {}
|
||||||
|
@ -26,6 +29,9 @@ else
|
||||||
NuiReady = true
|
NuiReady = true
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Init main class
|
||||||
|
---@return Main
|
||||||
function Main:Init()
|
function Main:Init()
|
||||||
local o = {}
|
local o = {}
|
||||||
setmetatable(o, { __index = Main })
|
setmetatable(o, { __index = Main })
|
||||||
|
@ -43,26 +49,29 @@ function Main:Init()
|
||||||
o:Thread1()
|
o:Thread1()
|
||||||
else
|
else
|
||||||
o.ClientImpls = {}
|
o.ClientImpls = {}
|
||||||
for k, v in pairs(Config.EnableModules) do
|
if Config.ClientLazyLoad then
|
||||||
if v then
|
for k, v in pairs(Config.EnableModules) do
|
||||||
local path = "client/impl/" .. k .. ".impl.lua"
|
if v and v.client then
|
||||||
local source = LoadResourceFile(ResourceName, path)
|
local path = "client/impl/" .. k .. ".impl.lua"
|
||||||
if source == nil then
|
local source = LoadResourceFile(ResourceName, path)
|
||||||
self:LogWarning("Failed to load %s", path)
|
if source == nil then
|
||||||
else
|
self:LogWarning("Failed to load %s", path)
|
||||||
--[[ self:LogInfo("Loading %s", path)
|
else
|
||||||
self:LogInfo("Loaded %s", source) ]]
|
--[[ self:LogInfo("Loading %s", path)
|
||||||
o.ClientImpls[k] = source
|
self:LogInfo("Loaded %s", source) ]]
|
||||||
|
o.ClientImpls[k] = source
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
lib.callback.register(ResourceName .. ":getClientImpl", function(source, implName)
|
||||||
|
return o.ClientImpls[implName]
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
lib.callback.register(ResourceName .. ":getClientImpl", function(source, implName)
|
|
||||||
return o.ClientImpls[implName]
|
|
||||||
end)
|
|
||||||
end
|
end
|
||||||
o:Exports()
|
o:Exports()
|
||||||
o:RegisterCommands()
|
o:RegisterCommands()
|
||||||
o:RegisterEvents()
|
o:RegisterEvents()
|
||||||
|
o:LogInfo("Main initialized")
|
||||||
return o
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -73,6 +82,7 @@ end
|
||||||
|
|
||||||
if not IsDuplicityVersion() then
|
if not IsDuplicityVersion() then
|
||||||
function Main:Thread1()
|
function Main:Thread1()
|
||||||
|
self.playerServerId = GetPlayerServerId(self.playerId)
|
||||||
Citizen.CreateThread(function()
|
Citizen.CreateThread(function()
|
||||||
while true do
|
while true do
|
||||||
self.playerId = PlayerId()
|
self.playerId = PlayerId()
|
||||||
|
@ -125,7 +135,7 @@ function Main:RegisterCommands()
|
||||||
end
|
end
|
||||||
local source = LoadResourceFile(ResourceName, "server/impl/" .. implName .. ".impl.lua")
|
local source = LoadResourceFile(ResourceName, "server/impl/" .. implName .. ".impl.lua")
|
||||||
if source == nil then
|
if source == nil then
|
||||||
self:LogWarning("Failed to load %s", path)
|
self:LogWarning("Failed to load %s", ResourceName, "server/impl/" .. implName .. ".impl.lua")
|
||||||
else
|
else
|
||||||
self:LogInfo("Loading %s", implName)
|
self:LogInfo("Loading %s", implName)
|
||||||
load(source)()
|
load(source)()
|
||||||
|
@ -134,7 +144,7 @@ function Main:RegisterCommands()
|
||||||
if mode == "0" or mode == "1" then
|
if mode == "0" or mode == "1" then
|
||||||
local clSource = LoadResourceFile(ResourceName, "client/impl/" .. implName .. ".impl.lua")
|
local clSource = LoadResourceFile(ResourceName, "client/impl/" .. implName .. ".impl.lua")
|
||||||
if clSource == nil then
|
if clSource == nil then
|
||||||
self:LogWarning("Failed to load %s", path)
|
self:LogWarning("Failed to load %s", ResourceName, "client/impl/" .. implName .. ".impl.lua")
|
||||||
else
|
else
|
||||||
self:LogInfo("Loading %s", "client/impl/" .. implName .. ".impl.lua")
|
self:LogInfo("Loading %s", "client/impl/" .. implName .. ".impl.lua")
|
||||||
TriggerClientEvent(ResourceName .. ":restartClientImpl", -1, implName, clSource)
|
TriggerClientEvent(ResourceName .. ":restartClientImpl", -1, implName, clSource)
|
||||||
|
@ -157,21 +167,21 @@ function Main:RegisterEvents()
|
||||||
end
|
end
|
||||||
|
|
||||||
function Main:LogError(msg, ...)
|
function Main:LogError(msg, ...)
|
||||||
print(("[^1ERROR^0] " .. msg):format(...))
|
print(("[^1ERROR^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
|
||||||
end
|
end
|
||||||
|
|
||||||
function Main:LogWarning(msg, ...)
|
function Main:LogWarning(msg, ...)
|
||||||
print(("[^3WARNING^0] " .. msg):format(...))
|
print(("[^3WARNING^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
|
||||||
end
|
end
|
||||||
|
|
||||||
function Main:LogSuccess(msg, ...)
|
function Main:LogSuccess(msg, ...)
|
||||||
if not Config.Debug then return end
|
if not Config.Debug then return end
|
||||||
print(("[^2INFO^0] " .. msg):format(...))
|
print(("[^2INFO^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
|
||||||
end
|
end
|
||||||
|
|
||||||
function Main:LogInfo(msg, ...)
|
function Main:LogInfo(msg, ...)
|
||||||
if not Config.Debug then return end
|
if not Config.Debug then return end
|
||||||
print(("[^5INFO^0] " .. msg):format(...))
|
print(("[^5INFO^0] " .. ("[%s] "):format(GetGameTimer()) .. msg):format(...))
|
||||||
end
|
end
|
||||||
|
|
||||||
function Main:CheckValidImpl(name, impl)
|
function Main:CheckValidImpl(name, impl)
|
||||||
|
@ -187,6 +197,9 @@ function Main:CheckValidImpl(name, impl)
|
||||||
end
|
end
|
||||||
|
|
||||||
function Main:RegisterImpl(name, impl)
|
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
|
if impl.implType == "impl" and (Config.EnableModules[name] == nil or not Config.EnableModules[name].enabled) then
|
||||||
self:LogWarning("Impl %s not enabled", name)
|
self:LogWarning("Impl %s not enabled", name)
|
||||||
return
|
return
|
||||||
|
@ -350,6 +363,16 @@ function Main:Exports()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Main:ToggleUI(state)
|
||||||
|
self.showUI = state
|
||||||
|
if Config.Nui then
|
||||||
|
SendNUIMessage({
|
||||||
|
event = "main:setShow",
|
||||||
|
data = state
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
main = Main:Init()
|
main = Main:Init()
|
||||||
AddEventHandler(("%s:onReady"):format(GetCurrentResourceName()), function(handler)
|
AddEventHandler(("%s:onReady"):format(GetCurrentResourceName()), function(handler)
|
||||||
local invokingResource = GetInvokingResource()
|
local invokingResource = GetInvokingResource()
|
||||||
|
@ -357,25 +380,7 @@ AddEventHandler(("%s:onReady"):format(GetCurrentResourceName()), function(handle
|
||||||
main:ListenOnReady(handler)
|
main:ListenOnReady(handler)
|
||||||
end)
|
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()
|
Citizen.CreateThread(function()
|
||||||
while GetGameTimer() < main.lastTimeImplRegistered + 1000 do
|
while GetGameTimer() < main.lastTimeImplRegistered + 1000 do
|
||||||
|
@ -384,6 +389,19 @@ Citizen.CreateThread(function()
|
||||||
while Framework == nil do
|
while Framework == nil do
|
||||||
main:LogInfo("Waiting for Framework")
|
main:LogInfo("Waiting for Framework")
|
||||||
Wait(100)
|
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
|
end
|
||||||
main:InitImpl()
|
main:InitImpl()
|
||||||
if not IsDuplicityVersion() then
|
if not IsDuplicityVersion() then
|
||||||
|
@ -397,6 +415,11 @@ Citizen.CreateThread(function()
|
||||||
Wait(100)
|
Wait(100)
|
||||||
player = Framework.Functions.GetPlayerData()
|
player = Framework.Functions.GetPlayerData()
|
||||||
end
|
end
|
||||||
|
elseif Config.Framework == 'ProjectStarboy' then
|
||||||
|
while not CORE.PlayerData.loaded do
|
||||||
|
Wait(100)
|
||||||
|
main:LogInfo("Waiting for player loaded")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
while not NuiReady and Config.Nui do
|
while not NuiReady and Config.Nui do
|
||||||
Wait(100)
|
Wait(100)
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
|
---@class TestImpl : Impl
|
||||||
local Impl = NewImpl("Test")
|
local Impl = NewImpl("Test")
|
||||||
|
|
||||||
function Impl:OnReady()
|
function Impl:OnReady()
|
||||||
main:LogInfo("%s ready", self:GetName())
|
main:LogInfo("%s ready", self:GetName())
|
||||||
end
|
end
|
||||||
|
|
|
@ -14,11 +14,12 @@
|
||||||
"@nextui-org/react": "^2.2.9",
|
"@nextui-org/react": "^2.2.9",
|
||||||
"@reduxjs/toolkit": "^2.0.1",
|
"@reduxjs/toolkit": "^2.0.1",
|
||||||
"framer-motion": "^10.16.16",
|
"framer-motion": "^10.16.16",
|
||||||
"lr-components": "^0.2.3",
|
"lr-components": "^0.3.7",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-redux": "^9.0.4",
|
"react-redux": "^9.0.4",
|
||||||
"react-toastify": "^9.1.3",
|
"react-toastify": "^9.1.3",
|
||||||
|
"stringd": "^2.2.0",
|
||||||
"styled-components": "^6.1.1"
|
"styled-components": "^6.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -15,8 +15,8 @@ dependencies:
|
||||||
specifier: ^10.16.16
|
specifier: ^10.16.16
|
||||||
version: 10.16.16(react-dom@18.2.0)(react@18.2.0)
|
version: 10.16.16(react-dom@18.2.0)(react@18.2.0)
|
||||||
lr-components:
|
lr-components:
|
||||||
specifier: ^0.2.3
|
specifier: ^0.3.7
|
||||||
version: 0.2.3(react-dom@18.2.0)(react@18.2.0)
|
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:
|
react:
|
||||||
specifier: ^18.2.0
|
specifier: ^18.2.0
|
||||||
version: 18.2.0
|
version: 18.2.0
|
||||||
|
@ -29,6 +29,9 @@ dependencies:
|
||||||
react-toastify:
|
react-toastify:
|
||||||
specifier: ^9.1.3
|
specifier: ^9.1.3
|
||||||
version: 9.1.3(react-dom@18.2.0)(react@18.2.0)
|
version: 9.1.3(react-dom@18.2.0)(react@18.2.0)
|
||||||
|
stringd:
|
||||||
|
specifier: ^2.2.0
|
||||||
|
version: 2.2.0
|
||||||
styled-components:
|
styled-components:
|
||||||
specifier: ^6.1.1
|
specifier: ^6.1.1
|
||||||
version: 6.1.1(react-dom@18.2.0)(react@18.2.0)
|
version: 6.1.1(react-dom@18.2.0)(react@18.2.0)
|
||||||
|
@ -716,6 +719,39 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-4M4jeJ/ghGaia9064yS+mEZ3sFPH80onmjNGWJZkkZDmUV4R88lNkqe/XYBK1tbxfl4Kxa8jc/ALsZkUkkvR5w==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -775,6 +811,45 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-3QUn8v61iNvAYogUbEDVnhDjBK6WBxxFYLp95a0H52zN0p2LHXe+UNwdGZYFo5QNWx6CHGH3vh2AHlLLy3WFSQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -863,6 +938,35 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -888,6 +992,31 @@ packages:
|
||||||
react-dom: 18.2.0(react@18.2.0)
|
react-dom: 18.2.0(react@18.2.0)
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-X6WkwPbZlDvioEcXF6HhKH21wD6OK+3+FSroKkzMPQLJrj2KYUIYGbiuw9rT9aCtdjbT+6HUCv+FA8/cBQr7cA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -999,6 +1128,34 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1016,6 +1173,23 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-bps5D5ki7PoLldb8wcJEf6C4EUFZm3PocLytNaGa7dNxFfaCOD78So+kq+K+0IRusK3yn94K8r31qMvpI3Gg2Q==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1193,6 +1367,40 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1224,6 +1432,37 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-OVpkpXqUKRuMRIcYESBAL95d3pqZ17SKAyNINMiJ/DwWnrzJu/LXGmFwTuYRoBdqHFlm7guGqZbHmAkcS/Fgow==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1281,6 +1520,40 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-RPVsFCF8COFClS/8PqEepzryhDFtIcJGQLu/P+qAr7jIDlXizXaBDrp0X34GVtQsapNeE9ExxX9Kt+QIspuHHQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1397,6 +1670,62 @@ packages:
|
||||||
- tailwindcss
|
- tailwindcss
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1415,6 +1744,24 @@ packages:
|
||||||
react-dom: 18.2.0(react@18.2.0)
|
react-dom: 18.2.0(react@18.2.0)
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-uxT8D+WCWeBy4xaFDfqVpBgjjHZUwydXsX5HhbzZCBir/1eRG5GMnUES3w98DSwcUVadG64gAVsyGW4HmSZw1Q==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1466,6 +1813,40 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@nextui-org/shared-icons@2.0.6(react@18.2.0):
|
||||||
resolution: {integrity: sha512-Mw5utPJAclFaeKAZowznEgabI5gdhXrW0iMaMA18Y4zcZRTidAc0WFeGYUlX876NxYLPc1Zk4bZUhQvMe+7uWg==}
|
resolution: {integrity: sha512-Mw5utPJAclFaeKAZowznEgabI5gdhXrW0iMaMA18Y4zcZRTidAc0WFeGYUlX876NxYLPc1Zk4bZUhQvMe+7uWg==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1527,6 +1908,34 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-8hKxqKpbJIMqFVedzYj90T4td+TkWdOdyYD9+VjywMdezAjsWdr8tqQj7boaMFjVNVSG+Pnw55Pgg/vkpc21aw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1553,6 +1962,32 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@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==}
|
resolution: {integrity: sha512-bLnhPRnoyHQXhLneHjbRqZNxJWMFOBYOZkuX83uy59/FFUY07BcoNsb2s80tN3GoVxsaZ2jB6NxxVbaCJwoPog==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1704,6 +2139,38 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@nextui-org/theme@2.1.17(tailwindcss@3.3.6):
|
||||||
resolution: {integrity: sha512-/WeHcMrAcWPGsEVn9M9TnvxKkaYkCocBH9JrDYCEFQoJgleUzHd4nVk7MWtpSOYJXLUzUMY1M9AqAK3jBkw+5g==}
|
resolution: {integrity: sha512-/WeHcMrAcWPGsEVn9M9TnvxKkaYkCocBH9JrDYCEFQoJgleUzHd4nVk7MWtpSOYJXLUzUMY1M9AqAK3jBkw+5g==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -1751,6 +2218,35 @@ packages:
|
||||||
- tailwind-variants
|
- tailwind-variants
|
||||||
dev: false
|
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):
|
/@nextui-org/use-aria-accordion@2.0.2(react-dom@18.2.0)(react@18.2.0):
|
||||||
resolution: {integrity: sha512-ebYr4CdvWifuTM/yyhQLKCa7aUqbVrWyR0SB6VNCGDID/kvRUW52puWnY9k24xdwY0cKbW3JRciKtQkrokRQwg==}
|
resolution: {integrity: sha512-ebYr4CdvWifuTM/yyhQLKCa7aUqbVrWyR0SB6VNCGDID/kvRUW52puWnY9k24xdwY0cKbW3JRciKtQkrokRQwg==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -3793,6 +4289,25 @@ packages:
|
||||||
'@emotion/is-prop-valid': 0.8.8
|
'@emotion/is-prop-valid': 0.8.8
|
||||||
dev: false
|
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:
|
/fs.realpath@1.0.0:
|
||||||
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
||||||
|
|
||||||
|
@ -4078,21 +4593,29 @@ packages:
|
||||||
js-tokens: 4.0.0
|
js-tokens: 4.0.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/lr-components@0.2.3(react-dom@18.2.0)(react@18.2.0):
|
/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-CKcegip4QAXgZUFY/PQLIsv2/xsec36N000RBULBgzq9vX5SexzHcgUucdqiNXkDmSleR5fzx2tMi+sU1ugOtw==}
|
resolution: {integrity: sha512-/zGWh6nDwAUGsY678aIioOqOd+z0Muoftwqouhr+PB04rlgCGrKEonaBqCeP60c6/3N5itfeu9dbnzf3VmH41w==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: '>=16'
|
react: '>=16'
|
||||||
dependencies:
|
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)
|
'@uidotdev/usehooks': 2.4.1(react-dom@18.2.0)(react@18.2.0)
|
||||||
csstype: 3.1.3
|
csstype: 3.1.3
|
||||||
|
framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0)
|
||||||
moment: 2.29.4
|
moment: 2.29.4
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-icons: 4.12.0(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)
|
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)
|
usehooks-ts: 2.9.1(react-dom@18.2.0)(react@18.2.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
- '@emotion/is-prop-valid'
|
||||||
|
- '@types/react'
|
||||||
- react-dom
|
- react-dom
|
||||||
|
- tailwind-variants
|
||||||
|
- tailwindcss
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/lru-cache@5.1.1:
|
/lru-cache@5.1.1:
|
||||||
|
@ -4586,6 +5109,11 @@ packages:
|
||||||
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
|
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
|
||||||
engines: {node: '>=0.10.0'}
|
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:
|
/strip-ansi@6.0.1:
|
||||||
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|
|
@ -7,13 +7,19 @@ import AppActionHook from './components/AppActionHook';
|
||||||
import { isEnvBrowser } from './utils/misc';
|
import { isEnvBrowser } from './utils/misc';
|
||||||
import { fetchNui } from './utils/fetchNui';
|
import { fetchNui } from './utils/fetchNui';
|
||||||
import { DefaultUISetting, ISettingContext, UISetting } from './types';
|
import { DefaultUISetting, ISettingContext, UISetting } from './types';
|
||||||
|
import stringd from 'stringd';
|
||||||
|
|
||||||
export const SettingContext = createContext<ISettingContext>(DefaultUISetting);
|
export const SettingContext = createContext<ISettingContext>(DefaultUISetting);
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
const show = useSelector((state: RootState) => state.main.show);
|
const show = useSelector((state: RootState) => state.main.show);
|
||||||
const [setting, setSetting] = useState<UISetting>({ locale: {} });
|
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(() => {
|
useEffect(() => {
|
||||||
if (!isEnvBrowser()) {
|
if (!isEnvBrowser()) {
|
||||||
setTimeout(async () => {
|
setTimeout(async () => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user