├── README.md ├── client.lua ├── config.lua ├── fxmanifest.lua ├── sound └── mt_elevator.ogg └── web ├── build ├── assets │ └── index-BwEqNc0Q.js └── index.html ├── index.html ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── src ├── components │ └── Elevator.tsx ├── hooks │ └── useNuiEvent.ts ├── main.tsx ├── providers │ └── VisibilityProvider.tsx ├── utils │ ├── debugData.ts │ ├── fetchNui.ts │ └── misc.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /README.md: -------------------------------------------------------------------------------- 1 | # MT Elevator 2 | Simple FiveM standalone elevator script 3 | 4 | # Features 5 | - Create multiple elevators with multiple levels 6 | - Clean UI made in Typescript with React and Mantine V6 7 | - Elevator sound (optional, needs interact-sound) 8 | 9 | # Preview 10 | https://youtu.be/AMZCBdL7lZU 11 | -------------------------------------------------------------------------------- /client.lua: -------------------------------------------------------------------------------- 1 | local Config = lib.load('config') 2 | 3 | createSphereZoneTarget = function(coords, radius, options, distance, name) 4 | if Config.target == 'ox_target' then 5 | return exports.ox_target:addSphereZone({ debug = Config.debug, coords = coords, radius = radius, options = options }) 6 | elseif Config.target == 'interact' then 7 | return exports.interact:AddInteraction({ coords = vec3(coords.x, coords.y, coords.z), distance = 1.0, interactDst = 1.0, id = name, name = name, options = options }) 8 | else 9 | -- Here we use Box Zone cause qb-target Sphere Zone does not exists and the Circle Zone is the big shit ever made 10 | return exports[Config.target]:AddBoxZone(name, coords, radius, radius, { debugPoly = Config.debug, name = name, minZ = coords.z-radius, maxZ = coords.z+radius }, { options = options, distance = distance }) 11 | end 12 | end 13 | 14 | RegisterNuiCallback('hideFrame', function(data, cb) 15 | SendNUIMessage({ action = 'setVisibleElevator', data = false }) 16 | SetNuiFocus(false, false) 17 | cb(true) 18 | end) 19 | 20 | RegisterNuiCallback('useElevator', function(data, cb) 21 | SendNUIMessage({ action = 'setVisibleElevator', data = false }) 22 | SetNuiFocus(false, false) 23 | local coords = Config.elevators[data.currentElevator].levels[data.id].ped 24 | DoScreenFadeOut(500) 25 | Wait(1000) 26 | SetEntityCoords(cache.ped, coords.x, coords.y, coords.z, true, false, false, false) 27 | SetEntityHeading(cache.ped, coords.w) 28 | Wait(1000) 29 | TriggerServerEvent("InteractSound_SV:PlayOnSource", "mt_elevator", 0.5) 30 | DoScreenFadeIn(500) 31 | cb(true) 32 | end) 33 | 34 | CreateThread(function() 35 | for k, v in pairs(Config.elevators) do 36 | for a, b in pairs(v.levels) do b.id = a end 37 | for a, b in pairs(v.levels) do 38 | createSphereZoneTarget(b.target.coords, b.target.radius, { 39 | { 40 | label = "Use elevator", 41 | icon = 'fas fa-angle-up', 42 | onSelect = function() 43 | SendNUIMessage({ 44 | action = 'updateElevator', 45 | data = { 46 | currentElevator = k, 47 | elevatorLabel = v.label, 48 | elevatorLevels = v.levels, 49 | currentLevel = a 50 | } 51 | }) 52 | SendNUIMessage({ action = 'setVisibleElevator', data = true }) 53 | SetNuiFocus(true, true) 54 | end 55 | } 56 | }, 2.5, 'elevaotor_'..k..a) 57 | end 58 | end 59 | end) 60 | -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- 1 | return { 2 | target = 'ox_target', 3 | 4 | elevators = { 5 | { 6 | label = 'SAPD MR Elevator', 7 | levels = { 8 | { 9 | label = '-1', 10 | ped = vec4(473.4, -983.68, 26.39, 77.7), 11 | target = { 12 | coords = vec3(471.75, -982.65, 26.5), 13 | radius = 0.3, 14 | } 15 | }, 16 | { 17 | label = '0', 18 | ped = vec4(472.99, -983.51, 30.71, 87.22), 19 | target = { 20 | coords = vec3(471.7, -982.65, 30.85), 21 | radius = 0.3, 22 | } 23 | }, 24 | { 25 | label = '1', 26 | ped = vec4(473.01, -983.45, 35.68, 88.33), 27 | target = { 28 | coords = vec3(471.75, -982.7, 35.8), 29 | radius = 0.3, 30 | } 31 | }, 32 | { 33 | label = '2', 34 | ped = vec4(473.38, -983.48, 43.69, 95.82), 35 | target = { 36 | coords = vec3(471.75, -982.65, 43.85), 37 | radius = 0.3, 38 | } 39 | }, 40 | } 41 | } 42 | }, 43 | } 44 | -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- 1 | fx_version 'cerulean' 2 | author 'Marttins | MT Scripts' 3 | description 'Most incredible FiveM elevator script' 4 | lua54 'yes' 5 | game 'gta5' 6 | 7 | shared_scripts { 8 | '@ox_lib/init.lua', 9 | 'config.lua' 10 | } 11 | 12 | client_scripts { 13 | 'client.lua' 14 | } 15 | 16 | ui_page 'web/build/index.html' 17 | 18 | files { 19 | 'locales/*', 20 | 21 | 'web/build/index.html', 22 | 'web/build/**/*', 23 | 'web/assets/**/*', 24 | } 25 | -------------------------------------------------------------------------------- /sound/mt_elevator.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-Scripts/mt_elevator/95cce7dc808b752317bf4f353ce74716acd320d1/sound/mt_elevator.ogg -------------------------------------------------------------------------------- /web/build/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | NUI React Boilerplate 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | NUI React Boilerplate 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "web", 3 | "homepage": "web/build", 4 | "private": true, 5 | "type": "module", 6 | "version": "0.1.0", 7 | "scripts": { 8 | "start": "vite", 9 | "start:game": "vite build --watch", 10 | "build": "tsc && vite build", 11 | "preview": "vite preview" 12 | }, 13 | "dependencies": { 14 | "@emotion/react": "^11.11.4", 15 | "@fortawesome/fontawesome-svg-core": "^6.5.2", 16 | "@fortawesome/free-solid-svg-icons": "^6.5.2", 17 | "@fortawesome/react-fontawesome": "^0.2.2", 18 | "@mantine/core": "^6.0.21", 19 | "@mantine/form": "^7.10.1", 20 | "@mantine/hooks": "^6.0.21", 21 | "@mantine/dates": "^6.0.21", 22 | "@mantine/modals": "^6.0.21", 23 | "@mantine/styles": "^6.0.21", 24 | "@tabler/icons-react": "^2.47.0", 25 | "html2canvas": "^1.4.1", 26 | "react": "^18.3.1", 27 | "react-dom": "^18.3.1", 28 | "react-icons": "^5.2.1", 29 | "sass": "^1.77.4", 30 | "styled-components": "^6.1.11" 31 | }, 32 | "devDependencies": { 33 | "@types/node": "^20.14.2", 34 | "@types/react": "^18.3.3", 35 | "@types/react-dom": "^18.3.0", 36 | "@typescript-eslint/eslint-plugin": "^6.21.0", 37 | "@typescript-eslint/parser": "^6.21.0", 38 | "@vitejs/plugin-react": "^4.3.0", 39 | "eslint": "^8.57.0", 40 | "eslint-plugin-react-hooks": "^4.6.2", 41 | "eslint-plugin-react-refresh": "^0.4.7", 42 | "postcss": "^8.4.38", 43 | "postcss-preset-mantine": "^1.15.0", 44 | "postcss-simple-vars": "^7.0.1", 45 | "typescript": "^5.4.5", 46 | "vite": "^5.2.13" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /web/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@emotion/react': 12 | specifier: ^11.11.4 13 | version: 11.11.4(@types/react@18.3.3)(react@18.3.1) 14 | '@fortawesome/fontawesome-svg-core': 15 | specifier: ^6.5.2 16 | version: 6.5.2 17 | '@fortawesome/free-solid-svg-icons': 18 | specifier: ^6.5.2 19 | version: 6.5.2 20 | '@fortawesome/react-fontawesome': 21 | specifier: ^0.2.2 22 | version: 0.2.2(@fortawesome/fontawesome-svg-core@6.5.2)(react@18.3.1) 23 | '@mantine/core': 24 | specifier: ^6.0.21 25 | version: 6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 26 | '@mantine/dates': 27 | specifier: ^6.0.21 28 | version: 6.0.21(@mantine/core@6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(dayjs@1.11.11)(react@18.3.1) 29 | '@mantine/form': 30 | specifier: ^7.10.1 31 | version: 7.10.1(react@18.3.1) 32 | '@mantine/hooks': 33 | specifier: ^6.0.21 34 | version: 6.0.21(react@18.3.1) 35 | '@mantine/modals': 36 | specifier: ^6.0.21 37 | version: 6.0.21(@mantine/core@6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 38 | '@mantine/styles': 39 | specifier: ^6.0.21 40 | version: 6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 41 | '@tabler/icons-react': 42 | specifier: ^2.47.0 43 | version: 2.47.0(react@18.3.1) 44 | html2canvas: 45 | specifier: ^1.4.1 46 | version: 1.4.1 47 | react: 48 | specifier: ^18.3.1 49 | version: 18.3.1 50 | react-dom: 51 | specifier: ^18.3.1 52 | version: 18.3.1(react@18.3.1) 53 | react-icons: 54 | specifier: ^5.2.1 55 | version: 5.2.1(react@18.3.1) 56 | sass: 57 | specifier: ^1.77.4 58 | version: 1.77.4 59 | styled-components: 60 | specifier: ^6.1.11 61 | version: 6.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 62 | devDependencies: 63 | '@types/node': 64 | specifier: ^20.14.2 65 | version: 20.14.2 66 | '@types/react': 67 | specifier: ^18.3.3 68 | version: 18.3.3 69 | '@types/react-dom': 70 | specifier: ^18.3.0 71 | version: 18.3.0 72 | '@typescript-eslint/eslint-plugin': 73 | specifier: ^6.21.0 74 | version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) 75 | '@typescript-eslint/parser': 76 | specifier: ^6.21.0 77 | version: 6.21.0(eslint@8.57.0)(typescript@5.4.5) 78 | '@vitejs/plugin-react': 79 | specifier: ^4.3.0 80 | version: 4.3.0(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4)(sugarss@4.0.1(postcss@8.4.38))) 81 | eslint: 82 | specifier: ^8.57.0 83 | version: 8.57.0 84 | eslint-plugin-react-hooks: 85 | specifier: ^4.6.2 86 | version: 4.6.2(eslint@8.57.0) 87 | eslint-plugin-react-refresh: 88 | specifier: ^0.4.7 89 | version: 0.4.7(eslint@8.57.0) 90 | postcss: 91 | specifier: ^8.4.38 92 | version: 8.4.38 93 | postcss-preset-mantine: 94 | specifier: ^1.15.0 95 | version: 1.15.0(postcss@8.4.38) 96 | postcss-simple-vars: 97 | specifier: ^7.0.1 98 | version: 7.0.1(postcss@8.4.38) 99 | typescript: 100 | specifier: ^5.4.5 101 | version: 5.4.5 102 | vite: 103 | specifier: ^5.2.13 104 | version: 5.2.13(@types/node@20.14.2)(sass@1.77.4)(sugarss@4.0.1(postcss@8.4.38)) 105 | 106 | packages: 107 | 108 | '@ampproject/remapping@2.3.0': 109 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 110 | engines: {node: '>=6.0.0'} 111 | 112 | '@babel/code-frame@7.24.7': 113 | resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} 114 | engines: {node: '>=6.9.0'} 115 | 116 | '@babel/compat-data@7.24.7': 117 | resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} 118 | engines: {node: '>=6.9.0'} 119 | 120 | '@babel/core@7.24.7': 121 | resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} 122 | engines: {node: '>=6.9.0'} 123 | 124 | '@babel/generator@7.24.7': 125 | resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} 126 | engines: {node: '>=6.9.0'} 127 | 128 | '@babel/helper-compilation-targets@7.24.7': 129 | resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==} 130 | engines: {node: '>=6.9.0'} 131 | 132 | '@babel/helper-environment-visitor@7.24.7': 133 | resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} 134 | engines: {node: '>=6.9.0'} 135 | 136 | '@babel/helper-function-name@7.24.7': 137 | resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} 138 | engines: {node: '>=6.9.0'} 139 | 140 | '@babel/helper-hoist-variables@7.24.7': 141 | resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} 142 | engines: {node: '>=6.9.0'} 143 | 144 | '@babel/helper-module-imports@7.24.7': 145 | resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} 146 | engines: {node: '>=6.9.0'} 147 | 148 | '@babel/helper-module-transforms@7.24.7': 149 | resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} 150 | engines: {node: '>=6.9.0'} 151 | peerDependencies: 152 | '@babel/core': ^7.0.0 153 | 154 | '@babel/helper-plugin-utils@7.24.7': 155 | resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==} 156 | engines: {node: '>=6.9.0'} 157 | 158 | '@babel/helper-simple-access@7.24.7': 159 | resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} 160 | engines: {node: '>=6.9.0'} 161 | 162 | '@babel/helper-split-export-declaration@7.24.7': 163 | resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} 164 | engines: {node: '>=6.9.0'} 165 | 166 | '@babel/helper-string-parser@7.24.7': 167 | resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} 168 | engines: {node: '>=6.9.0'} 169 | 170 | '@babel/helper-validator-identifier@7.24.7': 171 | resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} 172 | engines: {node: '>=6.9.0'} 173 | 174 | '@babel/helper-validator-option@7.24.7': 175 | resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} 176 | engines: {node: '>=6.9.0'} 177 | 178 | '@babel/helpers@7.24.7': 179 | resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==} 180 | engines: {node: '>=6.9.0'} 181 | 182 | '@babel/highlight@7.24.7': 183 | resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} 184 | engines: {node: '>=6.9.0'} 185 | 186 | '@babel/parser@7.24.7': 187 | resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} 188 | engines: {node: '>=6.0.0'} 189 | hasBin: true 190 | 191 | '@babel/plugin-transform-react-jsx-self@7.24.7': 192 | resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==} 193 | engines: {node: '>=6.9.0'} 194 | peerDependencies: 195 | '@babel/core': ^7.0.0-0 196 | 197 | '@babel/plugin-transform-react-jsx-source@7.24.7': 198 | resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==} 199 | engines: {node: '>=6.9.0'} 200 | peerDependencies: 201 | '@babel/core': ^7.0.0-0 202 | 203 | '@babel/runtime@7.24.7': 204 | resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} 205 | engines: {node: '>=6.9.0'} 206 | 207 | '@babel/template@7.24.7': 208 | resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} 209 | engines: {node: '>=6.9.0'} 210 | 211 | '@babel/traverse@7.24.7': 212 | resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} 213 | engines: {node: '>=6.9.0'} 214 | 215 | '@babel/types@7.24.7': 216 | resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} 217 | engines: {node: '>=6.9.0'} 218 | 219 | '@emotion/babel-plugin@11.11.0': 220 | resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} 221 | 222 | '@emotion/cache@11.11.0': 223 | resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} 224 | 225 | '@emotion/hash@0.9.1': 226 | resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} 227 | 228 | '@emotion/is-prop-valid@1.2.2': 229 | resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} 230 | 231 | '@emotion/memoize@0.8.1': 232 | resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} 233 | 234 | '@emotion/react@11.11.4': 235 | resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} 236 | peerDependencies: 237 | '@types/react': '*' 238 | react: '>=16.8.0' 239 | peerDependenciesMeta: 240 | '@types/react': 241 | optional: true 242 | 243 | '@emotion/serialize@1.1.4': 244 | resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} 245 | 246 | '@emotion/sheet@1.2.2': 247 | resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} 248 | 249 | '@emotion/unitless@0.8.1': 250 | resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} 251 | 252 | '@emotion/use-insertion-effect-with-fallbacks@1.0.1': 253 | resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} 254 | peerDependencies: 255 | react: '>=16.8.0' 256 | 257 | '@emotion/utils@1.2.1': 258 | resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} 259 | 260 | '@emotion/weak-memoize@0.3.1': 261 | resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} 262 | 263 | '@esbuild/aix-ppc64@0.20.2': 264 | resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} 265 | engines: {node: '>=12'} 266 | cpu: [ppc64] 267 | os: [aix] 268 | 269 | '@esbuild/android-arm64@0.20.2': 270 | resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} 271 | engines: {node: '>=12'} 272 | cpu: [arm64] 273 | os: [android] 274 | 275 | '@esbuild/android-arm@0.20.2': 276 | resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} 277 | engines: {node: '>=12'} 278 | cpu: [arm] 279 | os: [android] 280 | 281 | '@esbuild/android-x64@0.20.2': 282 | resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} 283 | engines: {node: '>=12'} 284 | cpu: [x64] 285 | os: [android] 286 | 287 | '@esbuild/darwin-arm64@0.20.2': 288 | resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} 289 | engines: {node: '>=12'} 290 | cpu: [arm64] 291 | os: [darwin] 292 | 293 | '@esbuild/darwin-x64@0.20.2': 294 | resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} 295 | engines: {node: '>=12'} 296 | cpu: [x64] 297 | os: [darwin] 298 | 299 | '@esbuild/freebsd-arm64@0.20.2': 300 | resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} 301 | engines: {node: '>=12'} 302 | cpu: [arm64] 303 | os: [freebsd] 304 | 305 | '@esbuild/freebsd-x64@0.20.2': 306 | resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} 307 | engines: {node: '>=12'} 308 | cpu: [x64] 309 | os: [freebsd] 310 | 311 | '@esbuild/linux-arm64@0.20.2': 312 | resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} 313 | engines: {node: '>=12'} 314 | cpu: [arm64] 315 | os: [linux] 316 | 317 | '@esbuild/linux-arm@0.20.2': 318 | resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} 319 | engines: {node: '>=12'} 320 | cpu: [arm] 321 | os: [linux] 322 | 323 | '@esbuild/linux-ia32@0.20.2': 324 | resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} 325 | engines: {node: '>=12'} 326 | cpu: [ia32] 327 | os: [linux] 328 | 329 | '@esbuild/linux-loong64@0.20.2': 330 | resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} 331 | engines: {node: '>=12'} 332 | cpu: [loong64] 333 | os: [linux] 334 | 335 | '@esbuild/linux-mips64el@0.20.2': 336 | resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} 337 | engines: {node: '>=12'} 338 | cpu: [mips64el] 339 | os: [linux] 340 | 341 | '@esbuild/linux-ppc64@0.20.2': 342 | resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} 343 | engines: {node: '>=12'} 344 | cpu: [ppc64] 345 | os: [linux] 346 | 347 | '@esbuild/linux-riscv64@0.20.2': 348 | resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} 349 | engines: {node: '>=12'} 350 | cpu: [riscv64] 351 | os: [linux] 352 | 353 | '@esbuild/linux-s390x@0.20.2': 354 | resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} 355 | engines: {node: '>=12'} 356 | cpu: [s390x] 357 | os: [linux] 358 | 359 | '@esbuild/linux-x64@0.20.2': 360 | resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} 361 | engines: {node: '>=12'} 362 | cpu: [x64] 363 | os: [linux] 364 | 365 | '@esbuild/netbsd-x64@0.20.2': 366 | resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} 367 | engines: {node: '>=12'} 368 | cpu: [x64] 369 | os: [netbsd] 370 | 371 | '@esbuild/openbsd-x64@0.20.2': 372 | resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} 373 | engines: {node: '>=12'} 374 | cpu: [x64] 375 | os: [openbsd] 376 | 377 | '@esbuild/sunos-x64@0.20.2': 378 | resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} 379 | engines: {node: '>=12'} 380 | cpu: [x64] 381 | os: [sunos] 382 | 383 | '@esbuild/win32-arm64@0.20.2': 384 | resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} 385 | engines: {node: '>=12'} 386 | cpu: [arm64] 387 | os: [win32] 388 | 389 | '@esbuild/win32-ia32@0.20.2': 390 | resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} 391 | engines: {node: '>=12'} 392 | cpu: [ia32] 393 | os: [win32] 394 | 395 | '@esbuild/win32-x64@0.20.2': 396 | resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} 397 | engines: {node: '>=12'} 398 | cpu: [x64] 399 | os: [win32] 400 | 401 | '@eslint-community/eslint-utils@4.4.0': 402 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 403 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 404 | peerDependencies: 405 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 406 | 407 | '@eslint-community/regexpp@4.10.1': 408 | resolution: {integrity: sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==} 409 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 410 | 411 | '@eslint/eslintrc@2.1.4': 412 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 413 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 414 | 415 | '@eslint/js@8.57.0': 416 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 417 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 418 | 419 | '@floating-ui/core@1.6.2': 420 | resolution: {integrity: sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==} 421 | 422 | '@floating-ui/dom@1.6.5': 423 | resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==} 424 | 425 | '@floating-ui/react-dom@1.3.0': 426 | resolution: {integrity: sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==} 427 | peerDependencies: 428 | react: '>=16.8.0' 429 | react-dom: '>=16.8.0' 430 | 431 | '@floating-ui/react@0.19.2': 432 | resolution: {integrity: sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==} 433 | peerDependencies: 434 | react: '>=16.8.0' 435 | react-dom: '>=16.8.0' 436 | 437 | '@floating-ui/utils@0.2.2': 438 | resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==} 439 | 440 | '@fortawesome/fontawesome-common-types@6.5.2': 441 | resolution: {integrity: sha512-gBxPg3aVO6J0kpfHNILc+NMhXnqHumFxOmjYCFfOiLZfwhnnfhtsdA2hfJlDnj+8PjAs6kKQPenOTKj3Rf7zHw==} 442 | engines: {node: '>=6'} 443 | 444 | '@fortawesome/fontawesome-svg-core@6.5.2': 445 | resolution: {integrity: sha512-5CdaCBGl8Rh9ohNdxeeTMxIj8oc3KNBgIeLMvJosBMdslK/UnEB8rzyDRrbKdL1kDweqBPo4GT9wvnakHWucZw==} 446 | engines: {node: '>=6'} 447 | 448 | '@fortawesome/free-solid-svg-icons@6.5.2': 449 | resolution: {integrity: sha512-QWFZYXFE7O1Gr1dTIp+D6UcFUF0qElOnZptpi7PBUMylJh+vFmIedVe1Ir6RM1t2tEQLLSV1k7bR4o92M+uqlw==} 450 | engines: {node: '>=6'} 451 | 452 | '@fortawesome/react-fontawesome@0.2.2': 453 | resolution: {integrity: sha512-EnkrprPNqI6SXJl//m29hpaNzOp1bruISWaOiRtkMi/xSvHJlzc2j2JAYS7egxt/EbjSNV/k6Xy0AQI6vB2+1g==} 454 | peerDependencies: 455 | '@fortawesome/fontawesome-svg-core': ~1 || ~6 456 | react: '>=16.3' 457 | 458 | '@humanwhocodes/config-array@0.11.14': 459 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 460 | engines: {node: '>=10.10.0'} 461 | 462 | '@humanwhocodes/module-importer@1.0.1': 463 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 464 | engines: {node: '>=12.22'} 465 | 466 | '@humanwhocodes/object-schema@2.0.3': 467 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 468 | 469 | '@jridgewell/gen-mapping@0.3.5': 470 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 471 | engines: {node: '>=6.0.0'} 472 | 473 | '@jridgewell/resolve-uri@3.1.2': 474 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 475 | engines: {node: '>=6.0.0'} 476 | 477 | '@jridgewell/set-array@1.2.1': 478 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 479 | engines: {node: '>=6.0.0'} 480 | 481 | '@jridgewell/sourcemap-codec@1.4.15': 482 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 483 | 484 | '@jridgewell/trace-mapping@0.3.25': 485 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 486 | 487 | '@mantine/core@6.0.21': 488 | resolution: {integrity: sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg==} 489 | peerDependencies: 490 | '@mantine/hooks': 6.0.21 491 | react: '>=16.8.0' 492 | react-dom: '>=16.8.0' 493 | 494 | '@mantine/dates@6.0.21': 495 | resolution: {integrity: sha512-nSX7MxNkHyyDJqEJOT7Wg930jBfgWz+3pnoWo601cYDvFjh5GgcRz66v36rnMJFK1/56k5G9rWzUOzuM94j6hg==} 496 | peerDependencies: 497 | '@mantine/core': 6.0.21 498 | '@mantine/hooks': 6.0.21 499 | dayjs: '>=1.0.0' 500 | react: '>=16.8.0' 501 | 502 | '@mantine/form@7.10.1': 503 | resolution: {integrity: sha512-mZwzg4GEWKEDKEIZu9FmSpGFzYYhFD2YArVOXUM0MMciUqX7yxSCon1PaPJxrV8ldc6FE+JLVI2+G2KVxJ3ZXA==} 504 | peerDependencies: 505 | react: ^18.2.0 506 | 507 | '@mantine/hooks@6.0.21': 508 | resolution: {integrity: sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew==} 509 | peerDependencies: 510 | react: '>=16.8.0' 511 | 512 | '@mantine/modals@6.0.21': 513 | resolution: {integrity: sha512-Gx2D/ZHMUuYF197JKMWey4K9FeGP9rxYp4lmAEXUrjXiST2fEhLZOdiD75KuOHXd1/sYAU9NcNRo9wXrlF/gUA==} 514 | peerDependencies: 515 | '@mantine/core': 6.0.21 516 | '@mantine/hooks': 6.0.21 517 | react: '>=16.8.0' 518 | react-dom: '>=16.8.0' 519 | 520 | '@mantine/styles@6.0.21': 521 | resolution: {integrity: sha512-PVtL7XHUiD/B5/kZ/QvZOZZQQOj12QcRs3Q6nPoqaoPcOX5+S7bMZLMH0iLtcGq5OODYk0uxlvuJkOZGoPj8Mg==} 522 | peerDependencies: 523 | '@emotion/react': '>=11.9.0' 524 | react: '>=16.8.0' 525 | react-dom: '>=16.8.0' 526 | 527 | '@mantine/utils@6.0.21': 528 | resolution: {integrity: sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ==} 529 | peerDependencies: 530 | react: '>=16.8.0' 531 | 532 | '@nodelib/fs.scandir@2.1.5': 533 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 534 | engines: {node: '>= 8'} 535 | 536 | '@nodelib/fs.stat@2.0.5': 537 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 538 | engines: {node: '>= 8'} 539 | 540 | '@nodelib/fs.walk@1.2.8': 541 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 542 | engines: {node: '>= 8'} 543 | 544 | '@radix-ui/number@1.0.0': 545 | resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} 546 | 547 | '@radix-ui/primitive@1.0.0': 548 | resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} 549 | 550 | '@radix-ui/react-compose-refs@1.0.0': 551 | resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==} 552 | peerDependencies: 553 | react: ^16.8 || ^17.0 || ^18.0 554 | 555 | '@radix-ui/react-context@1.0.0': 556 | resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==} 557 | peerDependencies: 558 | react: ^16.8 || ^17.0 || ^18.0 559 | 560 | '@radix-ui/react-direction@1.0.0': 561 | resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==} 562 | peerDependencies: 563 | react: ^16.8 || ^17.0 || ^18.0 564 | 565 | '@radix-ui/react-presence@1.0.0': 566 | resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==} 567 | peerDependencies: 568 | react: ^16.8 || ^17.0 || ^18.0 569 | react-dom: ^16.8 || ^17.0 || ^18.0 570 | 571 | '@radix-ui/react-primitive@1.0.1': 572 | resolution: {integrity: sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==} 573 | peerDependencies: 574 | react: ^16.8 || ^17.0 || ^18.0 575 | react-dom: ^16.8 || ^17.0 || ^18.0 576 | 577 | '@radix-ui/react-scroll-area@1.0.2': 578 | resolution: {integrity: sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg==} 579 | peerDependencies: 580 | react: ^16.8 || ^17.0 || ^18.0 581 | react-dom: ^16.8 || ^17.0 || ^18.0 582 | 583 | '@radix-ui/react-slot@1.0.1': 584 | resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==} 585 | peerDependencies: 586 | react: ^16.8 || ^17.0 || ^18.0 587 | 588 | '@radix-ui/react-use-callback-ref@1.0.0': 589 | resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==} 590 | peerDependencies: 591 | react: ^16.8 || ^17.0 || ^18.0 592 | 593 | '@radix-ui/react-use-layout-effect@1.0.0': 594 | resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==} 595 | peerDependencies: 596 | react: ^16.8 || ^17.0 || ^18.0 597 | 598 | '@rollup/rollup-android-arm-eabi@4.18.0': 599 | resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==} 600 | cpu: [arm] 601 | os: [android] 602 | 603 | '@rollup/rollup-android-arm64@4.18.0': 604 | resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==} 605 | cpu: [arm64] 606 | os: [android] 607 | 608 | '@rollup/rollup-darwin-arm64@4.18.0': 609 | resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==} 610 | cpu: [arm64] 611 | os: [darwin] 612 | 613 | '@rollup/rollup-darwin-x64@4.18.0': 614 | resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==} 615 | cpu: [x64] 616 | os: [darwin] 617 | 618 | '@rollup/rollup-linux-arm-gnueabihf@4.18.0': 619 | resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==} 620 | cpu: [arm] 621 | os: [linux] 622 | 623 | '@rollup/rollup-linux-arm-musleabihf@4.18.0': 624 | resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==} 625 | cpu: [arm] 626 | os: [linux] 627 | 628 | '@rollup/rollup-linux-arm64-gnu@4.18.0': 629 | resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==} 630 | cpu: [arm64] 631 | os: [linux] 632 | 633 | '@rollup/rollup-linux-arm64-musl@4.18.0': 634 | resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==} 635 | cpu: [arm64] 636 | os: [linux] 637 | 638 | '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': 639 | resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==} 640 | cpu: [ppc64] 641 | os: [linux] 642 | 643 | '@rollup/rollup-linux-riscv64-gnu@4.18.0': 644 | resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==} 645 | cpu: [riscv64] 646 | os: [linux] 647 | 648 | '@rollup/rollup-linux-s390x-gnu@4.18.0': 649 | resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==} 650 | cpu: [s390x] 651 | os: [linux] 652 | 653 | '@rollup/rollup-linux-x64-gnu@4.18.0': 654 | resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==} 655 | cpu: [x64] 656 | os: [linux] 657 | 658 | '@rollup/rollup-linux-x64-musl@4.18.0': 659 | resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==} 660 | cpu: [x64] 661 | os: [linux] 662 | 663 | '@rollup/rollup-win32-arm64-msvc@4.18.0': 664 | resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==} 665 | cpu: [arm64] 666 | os: [win32] 667 | 668 | '@rollup/rollup-win32-ia32-msvc@4.18.0': 669 | resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==} 670 | cpu: [ia32] 671 | os: [win32] 672 | 673 | '@rollup/rollup-win32-x64-msvc@4.18.0': 674 | resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==} 675 | cpu: [x64] 676 | os: [win32] 677 | 678 | '@tabler/icons-react@2.47.0': 679 | resolution: {integrity: sha512-iqly2FvCF/qUbgmvS8E40rVeYY7laltc5GUjRxQj59DuX0x/6CpKHTXt86YlI2whg4czvd/c8Ce8YR08uEku0g==} 680 | peerDependencies: 681 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 682 | 683 | '@tabler/icons@2.47.0': 684 | resolution: {integrity: sha512-4w5evLh+7FUUiA1GucvGj2ReX2TvOjEr4ejXdwL/bsjoSkof6r1gQmzqI+VHrE2CpJpB3al7bCTulOkFa/RcyA==} 685 | 686 | '@types/babel__core@7.20.5': 687 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 688 | 689 | '@types/babel__generator@7.6.8': 690 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 691 | 692 | '@types/babel__template@7.4.4': 693 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 694 | 695 | '@types/babel__traverse@7.20.6': 696 | resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} 697 | 698 | '@types/estree@1.0.5': 699 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} 700 | 701 | '@types/json-schema@7.0.15': 702 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 703 | 704 | '@types/node@20.14.2': 705 | resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} 706 | 707 | '@types/parse-json@4.0.2': 708 | resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} 709 | 710 | '@types/prop-types@15.7.12': 711 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 712 | 713 | '@types/react-dom@18.3.0': 714 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 715 | 716 | '@types/react@18.3.3': 717 | resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} 718 | 719 | '@types/semver@7.5.8': 720 | resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 721 | 722 | '@types/stylis@4.2.5': 723 | resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==} 724 | 725 | '@typescript-eslint/eslint-plugin@6.21.0': 726 | resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} 727 | engines: {node: ^16.0.0 || >=18.0.0} 728 | peerDependencies: 729 | '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha 730 | eslint: ^7.0.0 || ^8.0.0 731 | typescript: '*' 732 | peerDependenciesMeta: 733 | typescript: 734 | optional: true 735 | 736 | '@typescript-eslint/parser@6.21.0': 737 | resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} 738 | engines: {node: ^16.0.0 || >=18.0.0} 739 | peerDependencies: 740 | eslint: ^7.0.0 || ^8.0.0 741 | typescript: '*' 742 | peerDependenciesMeta: 743 | typescript: 744 | optional: true 745 | 746 | '@typescript-eslint/scope-manager@6.21.0': 747 | resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} 748 | engines: {node: ^16.0.0 || >=18.0.0} 749 | 750 | '@typescript-eslint/type-utils@6.21.0': 751 | resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} 752 | engines: {node: ^16.0.0 || >=18.0.0} 753 | peerDependencies: 754 | eslint: ^7.0.0 || ^8.0.0 755 | typescript: '*' 756 | peerDependenciesMeta: 757 | typescript: 758 | optional: true 759 | 760 | '@typescript-eslint/types@6.21.0': 761 | resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} 762 | engines: {node: ^16.0.0 || >=18.0.0} 763 | 764 | '@typescript-eslint/typescript-estree@6.21.0': 765 | resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} 766 | engines: {node: ^16.0.0 || >=18.0.0} 767 | peerDependencies: 768 | typescript: '*' 769 | peerDependenciesMeta: 770 | typescript: 771 | optional: true 772 | 773 | '@typescript-eslint/utils@6.21.0': 774 | resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} 775 | engines: {node: ^16.0.0 || >=18.0.0} 776 | peerDependencies: 777 | eslint: ^7.0.0 || ^8.0.0 778 | 779 | '@typescript-eslint/visitor-keys@6.21.0': 780 | resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} 781 | engines: {node: ^16.0.0 || >=18.0.0} 782 | 783 | '@ungap/structured-clone@1.2.0': 784 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 785 | 786 | '@vitejs/plugin-react@4.3.0': 787 | resolution: {integrity: sha512-KcEbMsn4Dpk+LIbHMj7gDPRKaTMStxxWRkRmxsg/jVdFdJCZWt1SchZcf0M4t8lIKdwwMsEyzhrcOXRrDPtOBw==} 788 | engines: {node: ^14.18.0 || >=16.0.0} 789 | peerDependencies: 790 | vite: ^4.2.0 || ^5.0.0 791 | 792 | acorn-jsx@5.3.2: 793 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 794 | peerDependencies: 795 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 796 | 797 | acorn@8.11.3: 798 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 799 | engines: {node: '>=0.4.0'} 800 | hasBin: true 801 | 802 | ajv@6.12.6: 803 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 804 | 805 | ansi-regex@5.0.1: 806 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 807 | engines: {node: '>=8'} 808 | 809 | ansi-styles@3.2.1: 810 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 811 | engines: {node: '>=4'} 812 | 813 | ansi-styles@4.3.0: 814 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 815 | engines: {node: '>=8'} 816 | 817 | anymatch@3.1.3: 818 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 819 | engines: {node: '>= 8'} 820 | 821 | argparse@2.0.1: 822 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 823 | 824 | aria-hidden@1.2.4: 825 | resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} 826 | engines: {node: '>=10'} 827 | 828 | array-union@2.1.0: 829 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 830 | engines: {node: '>=8'} 831 | 832 | babel-plugin-macros@3.1.0: 833 | resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} 834 | engines: {node: '>=10', npm: '>=6'} 835 | 836 | balanced-match@1.0.2: 837 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 838 | 839 | base64-arraybuffer@1.0.2: 840 | resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==} 841 | engines: {node: '>= 0.6.0'} 842 | 843 | binary-extensions@2.3.0: 844 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 845 | engines: {node: '>=8'} 846 | 847 | brace-expansion@1.1.11: 848 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 849 | 850 | brace-expansion@2.0.1: 851 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 852 | 853 | braces@3.0.3: 854 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 855 | engines: {node: '>=8'} 856 | 857 | browserslist@4.23.1: 858 | resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} 859 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 860 | hasBin: true 861 | 862 | callsites@3.1.0: 863 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 864 | engines: {node: '>=6'} 865 | 866 | camelcase-css@2.0.1: 867 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 868 | engines: {node: '>= 6'} 869 | 870 | camelize@1.0.1: 871 | resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} 872 | 873 | caniuse-lite@1.0.30001629: 874 | resolution: {integrity: sha512-c3dl911slnQhmxUIT4HhYzT7wnBK/XYpGnYLOj4nJBaRiw52Ibe7YxlDaAeRECvA786zCuExhxIUJ2K7nHMrBw==} 875 | 876 | chalk@2.4.2: 877 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 878 | engines: {node: '>=4'} 879 | 880 | chalk@4.1.2: 881 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 882 | engines: {node: '>=10'} 883 | 884 | chokidar@3.6.0: 885 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 886 | engines: {node: '>= 8.10.0'} 887 | 888 | clsx@1.1.1: 889 | resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==} 890 | engines: {node: '>=6'} 891 | 892 | color-convert@1.9.3: 893 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 894 | 895 | color-convert@2.0.1: 896 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 897 | engines: {node: '>=7.0.0'} 898 | 899 | color-name@1.1.3: 900 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 901 | 902 | color-name@1.1.4: 903 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 904 | 905 | concat-map@0.0.1: 906 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 907 | 908 | convert-source-map@1.9.0: 909 | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} 910 | 911 | convert-source-map@2.0.0: 912 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 913 | 914 | cosmiconfig@7.1.0: 915 | resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} 916 | engines: {node: '>=10'} 917 | 918 | cross-spawn@7.0.3: 919 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 920 | engines: {node: '>= 8'} 921 | 922 | css-color-keywords@1.0.0: 923 | resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} 924 | engines: {node: '>=4'} 925 | 926 | css-line-break@2.1.0: 927 | resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==} 928 | 929 | css-to-react-native@3.2.0: 930 | resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} 931 | 932 | cssesc@3.0.0: 933 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 934 | engines: {node: '>=4'} 935 | hasBin: true 936 | 937 | csstype@3.0.9: 938 | resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} 939 | 940 | csstype@3.1.3: 941 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 942 | 943 | dayjs@1.11.11: 944 | resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} 945 | 946 | debug@4.3.5: 947 | resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} 948 | engines: {node: '>=6.0'} 949 | peerDependencies: 950 | supports-color: '*' 951 | peerDependenciesMeta: 952 | supports-color: 953 | optional: true 954 | 955 | deep-is@0.1.4: 956 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 957 | 958 | detect-node-es@1.1.0: 959 | resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} 960 | 961 | dir-glob@3.0.1: 962 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 963 | engines: {node: '>=8'} 964 | 965 | doctrine@3.0.0: 966 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 967 | engines: {node: '>=6.0.0'} 968 | 969 | electron-to-chromium@1.4.796: 970 | resolution: {integrity: sha512-NglN/xprcM+SHD2XCli4oC6bWe6kHoytcyLKCWXmRL854F0qhPhaYgUswUsglnPxYaNQIg2uMY4BvaomIf3kLA==} 971 | 972 | error-ex@1.3.2: 973 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 974 | 975 | esbuild@0.20.2: 976 | resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} 977 | engines: {node: '>=12'} 978 | hasBin: true 979 | 980 | escalade@3.1.2: 981 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 982 | engines: {node: '>=6'} 983 | 984 | escape-string-regexp@1.0.5: 985 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 986 | engines: {node: '>=0.8.0'} 987 | 988 | escape-string-regexp@4.0.0: 989 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 990 | engines: {node: '>=10'} 991 | 992 | eslint-plugin-react-hooks@4.6.2: 993 | resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} 994 | engines: {node: '>=10'} 995 | peerDependencies: 996 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 997 | 998 | eslint-plugin-react-refresh@0.4.7: 999 | resolution: {integrity: sha512-yrj+KInFmwuQS2UQcg1SF83ha1tuHC1jMQbRNyuWtlEzzKRDgAl7L4Yp4NlDUZTZNlWvHEzOtJhMi40R7JxcSw==} 1000 | peerDependencies: 1001 | eslint: '>=7' 1002 | 1003 | eslint-scope@7.2.2: 1004 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1005 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1006 | 1007 | eslint-visitor-keys@3.4.3: 1008 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1009 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1010 | 1011 | eslint@8.57.0: 1012 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 1013 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1014 | hasBin: true 1015 | 1016 | espree@9.6.1: 1017 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1018 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1019 | 1020 | esquery@1.5.0: 1021 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1022 | engines: {node: '>=0.10'} 1023 | 1024 | esrecurse@4.3.0: 1025 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1026 | engines: {node: '>=4.0'} 1027 | 1028 | estraverse@5.3.0: 1029 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1030 | engines: {node: '>=4.0'} 1031 | 1032 | esutils@2.0.3: 1033 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1034 | engines: {node: '>=0.10.0'} 1035 | 1036 | fast-deep-equal@3.1.3: 1037 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1038 | 1039 | fast-glob@3.3.2: 1040 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1041 | engines: {node: '>=8.6.0'} 1042 | 1043 | fast-json-stable-stringify@2.1.0: 1044 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1045 | 1046 | fast-levenshtein@2.0.6: 1047 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1048 | 1049 | fastq@1.17.1: 1050 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1051 | 1052 | file-entry-cache@6.0.1: 1053 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1054 | engines: {node: ^10.12.0 || >=12.0.0} 1055 | 1056 | fill-range@7.1.1: 1057 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1058 | engines: {node: '>=8'} 1059 | 1060 | find-root@1.1.0: 1061 | resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} 1062 | 1063 | find-up@5.0.0: 1064 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1065 | engines: {node: '>=10'} 1066 | 1067 | flat-cache@3.2.0: 1068 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 1069 | engines: {node: ^10.12.0 || >=12.0.0} 1070 | 1071 | flatted@3.3.1: 1072 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 1073 | 1074 | fs.realpath@1.0.0: 1075 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1076 | 1077 | fsevents@2.3.3: 1078 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1079 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1080 | os: [darwin] 1081 | 1082 | function-bind@1.1.2: 1083 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1084 | 1085 | gensync@1.0.0-beta.2: 1086 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1087 | engines: {node: '>=6.9.0'} 1088 | 1089 | get-nonce@1.0.1: 1090 | resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} 1091 | engines: {node: '>=6'} 1092 | 1093 | glob-parent@5.1.2: 1094 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1095 | engines: {node: '>= 6'} 1096 | 1097 | glob-parent@6.0.2: 1098 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1099 | engines: {node: '>=10.13.0'} 1100 | 1101 | glob@7.2.3: 1102 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1103 | deprecated: Glob versions prior to v9 are no longer supported 1104 | 1105 | globals@11.12.0: 1106 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1107 | engines: {node: '>=4'} 1108 | 1109 | globals@13.24.0: 1110 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1111 | engines: {node: '>=8'} 1112 | 1113 | globby@11.1.0: 1114 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1115 | engines: {node: '>=10'} 1116 | 1117 | graphemer@1.4.0: 1118 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1119 | 1120 | has-flag@3.0.0: 1121 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1122 | engines: {node: '>=4'} 1123 | 1124 | has-flag@4.0.0: 1125 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1126 | engines: {node: '>=8'} 1127 | 1128 | hasown@2.0.2: 1129 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1130 | engines: {node: '>= 0.4'} 1131 | 1132 | hoist-non-react-statics@3.3.2: 1133 | resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} 1134 | 1135 | html2canvas@1.4.1: 1136 | resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==} 1137 | engines: {node: '>=8.0.0'} 1138 | 1139 | ignore@5.3.1: 1140 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 1141 | engines: {node: '>= 4'} 1142 | 1143 | immutable@4.3.6: 1144 | resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} 1145 | 1146 | import-fresh@3.3.0: 1147 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1148 | engines: {node: '>=6'} 1149 | 1150 | imurmurhash@0.1.4: 1151 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1152 | engines: {node: '>=0.8.19'} 1153 | 1154 | inflight@1.0.6: 1155 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1156 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 1157 | 1158 | inherits@2.0.4: 1159 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1160 | 1161 | invariant@2.2.4: 1162 | resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} 1163 | 1164 | is-arrayish@0.2.1: 1165 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1166 | 1167 | is-binary-path@2.1.0: 1168 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1169 | engines: {node: '>=8'} 1170 | 1171 | is-core-module@2.13.1: 1172 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 1173 | 1174 | is-extglob@2.1.1: 1175 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1176 | engines: {node: '>=0.10.0'} 1177 | 1178 | is-glob@4.0.3: 1179 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1180 | engines: {node: '>=0.10.0'} 1181 | 1182 | is-number@7.0.0: 1183 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1184 | engines: {node: '>=0.12.0'} 1185 | 1186 | is-path-inside@3.0.3: 1187 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1188 | engines: {node: '>=8'} 1189 | 1190 | isexe@2.0.0: 1191 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1192 | 1193 | js-tokens@4.0.0: 1194 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1195 | 1196 | js-yaml@4.1.0: 1197 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1198 | hasBin: true 1199 | 1200 | jsesc@2.5.2: 1201 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 1202 | engines: {node: '>=4'} 1203 | hasBin: true 1204 | 1205 | json-buffer@3.0.1: 1206 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1207 | 1208 | json-parse-even-better-errors@2.3.1: 1209 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 1210 | 1211 | json-schema-traverse@0.4.1: 1212 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1213 | 1214 | json-stable-stringify-without-jsonify@1.0.1: 1215 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1216 | 1217 | json5@2.2.3: 1218 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1219 | engines: {node: '>=6'} 1220 | hasBin: true 1221 | 1222 | keyv@4.5.4: 1223 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1224 | 1225 | klona@2.0.6: 1226 | resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} 1227 | engines: {node: '>= 8'} 1228 | 1229 | levn@0.4.1: 1230 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1231 | engines: {node: '>= 0.8.0'} 1232 | 1233 | lines-and-columns@1.2.4: 1234 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1235 | 1236 | locate-path@6.0.0: 1237 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1238 | engines: {node: '>=10'} 1239 | 1240 | lodash.merge@4.6.2: 1241 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1242 | 1243 | loose-envify@1.4.0: 1244 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1245 | hasBin: true 1246 | 1247 | lru-cache@5.1.1: 1248 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1249 | 1250 | merge2@1.4.1: 1251 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1252 | engines: {node: '>= 8'} 1253 | 1254 | micromatch@4.0.7: 1255 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} 1256 | engines: {node: '>=8.6'} 1257 | 1258 | minimatch@3.1.2: 1259 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1260 | 1261 | minimatch@9.0.3: 1262 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1263 | engines: {node: '>=16 || 14 >=14.17'} 1264 | 1265 | ms@2.1.2: 1266 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1267 | 1268 | nanoid@3.3.7: 1269 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1270 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1271 | hasBin: true 1272 | 1273 | natural-compare@1.4.0: 1274 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1275 | 1276 | node-releases@2.0.14: 1277 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 1278 | 1279 | normalize-path@3.0.0: 1280 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1281 | engines: {node: '>=0.10.0'} 1282 | 1283 | object-assign@4.1.1: 1284 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1285 | engines: {node: '>=0.10.0'} 1286 | 1287 | once@1.4.0: 1288 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1289 | 1290 | optionator@0.9.4: 1291 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1292 | engines: {node: '>= 0.8.0'} 1293 | 1294 | p-limit@3.1.0: 1295 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1296 | engines: {node: '>=10'} 1297 | 1298 | p-locate@5.0.0: 1299 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1300 | engines: {node: '>=10'} 1301 | 1302 | parent-module@1.0.1: 1303 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1304 | engines: {node: '>=6'} 1305 | 1306 | parse-json@5.2.0: 1307 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 1308 | engines: {node: '>=8'} 1309 | 1310 | path-exists@4.0.0: 1311 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1312 | engines: {node: '>=8'} 1313 | 1314 | path-is-absolute@1.0.1: 1315 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1316 | engines: {node: '>=0.10.0'} 1317 | 1318 | path-key@3.1.1: 1319 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1320 | engines: {node: '>=8'} 1321 | 1322 | path-parse@1.0.7: 1323 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1324 | 1325 | path-type@4.0.0: 1326 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1327 | engines: {node: '>=8'} 1328 | 1329 | picocolors@1.0.1: 1330 | resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} 1331 | 1332 | picomatch@2.3.1: 1333 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1334 | engines: {node: '>=8.6'} 1335 | 1336 | postcss-js@4.0.1: 1337 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1338 | engines: {node: ^12 || ^14 || >= 16} 1339 | peerDependencies: 1340 | postcss: ^8.4.21 1341 | 1342 | postcss-mixins@9.0.4: 1343 | resolution: {integrity: sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==} 1344 | engines: {node: '>=14.0'} 1345 | peerDependencies: 1346 | postcss: ^8.2.14 1347 | 1348 | postcss-nested@6.0.1: 1349 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 1350 | engines: {node: '>=12.0'} 1351 | peerDependencies: 1352 | postcss: ^8.2.14 1353 | 1354 | postcss-preset-mantine@1.15.0: 1355 | resolution: {integrity: sha512-OKPs6uoORSXlU/GFH1ZtFaslecHBPwuoSikdL5W3WKJm4ZPAQM0mw9x9m3toa/Mo1JhoBmYMM28i+zEdav5Edg==} 1356 | peerDependencies: 1357 | postcss: '>=8.0.0' 1358 | 1359 | postcss-selector-parser@6.1.0: 1360 | resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} 1361 | engines: {node: '>=4'} 1362 | 1363 | postcss-simple-vars@7.0.1: 1364 | resolution: {integrity: sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==} 1365 | engines: {node: '>=14.0'} 1366 | peerDependencies: 1367 | postcss: ^8.2.1 1368 | 1369 | postcss-value-parser@4.2.0: 1370 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1371 | 1372 | postcss@8.4.38: 1373 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} 1374 | engines: {node: ^10 || ^12 || >=14} 1375 | 1376 | prelude-ls@1.2.1: 1377 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1378 | engines: {node: '>= 0.8.0'} 1379 | 1380 | prop-types@15.8.1: 1381 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1382 | 1383 | punycode@2.3.1: 1384 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1385 | engines: {node: '>=6'} 1386 | 1387 | queue-microtask@1.2.3: 1388 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1389 | 1390 | react-dom@18.3.1: 1391 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 1392 | peerDependencies: 1393 | react: ^18.3.1 1394 | 1395 | react-icons@5.2.1: 1396 | resolution: {integrity: sha512-zdbW5GstTzXaVKvGSyTaBalt7HSfuK5ovrzlpyiWHAFXndXTdd/1hdDHI4xBM1Mn7YriT6aqESucFl9kEXzrdw==} 1397 | peerDependencies: 1398 | react: '*' 1399 | 1400 | react-is@16.13.1: 1401 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1402 | 1403 | react-refresh@0.14.2: 1404 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} 1405 | engines: {node: '>=0.10.0'} 1406 | 1407 | react-remove-scroll-bar@2.3.6: 1408 | resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} 1409 | engines: {node: '>=10'} 1410 | peerDependencies: 1411 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 1412 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1413 | peerDependenciesMeta: 1414 | '@types/react': 1415 | optional: true 1416 | 1417 | react-remove-scroll@2.5.10: 1418 | resolution: {integrity: sha512-m3zvBRANPBw3qxVVjEIPEQinkcwlFZ4qyomuWVpNJdv4c6MvHfXV0C3L9Jx5rr3HeBHKNRX+1jreB5QloDIJjA==} 1419 | engines: {node: '>=10'} 1420 | peerDependencies: 1421 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 1422 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1423 | peerDependenciesMeta: 1424 | '@types/react': 1425 | optional: true 1426 | 1427 | react-style-singleton@2.2.1: 1428 | resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} 1429 | engines: {node: '>=10'} 1430 | peerDependencies: 1431 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 1432 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1433 | peerDependenciesMeta: 1434 | '@types/react': 1435 | optional: true 1436 | 1437 | react-textarea-autosize@8.3.4: 1438 | resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==} 1439 | engines: {node: '>=10'} 1440 | peerDependencies: 1441 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1442 | 1443 | react@18.3.1: 1444 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 1445 | engines: {node: '>=0.10.0'} 1446 | 1447 | readdirp@3.6.0: 1448 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1449 | engines: {node: '>=8.10.0'} 1450 | 1451 | regenerator-runtime@0.14.1: 1452 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1453 | 1454 | resolve-from@4.0.0: 1455 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1456 | engines: {node: '>=4'} 1457 | 1458 | resolve@1.22.8: 1459 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1460 | hasBin: true 1461 | 1462 | reusify@1.0.4: 1463 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1464 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1465 | 1466 | rimraf@3.0.2: 1467 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1468 | deprecated: Rimraf versions prior to v4 are no longer supported 1469 | hasBin: true 1470 | 1471 | rollup@4.18.0: 1472 | resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==} 1473 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1474 | hasBin: true 1475 | 1476 | run-parallel@1.2.0: 1477 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1478 | 1479 | sass@1.77.4: 1480 | resolution: {integrity: sha512-vcF3Ckow6g939GMA4PeU7b2K/9FALXk2KF9J87txdHzXbUF9XRQRwSxcAs/fGaTnJeBFd7UoV22j3lzMLdM0Pw==} 1481 | engines: {node: '>=14.0.0'} 1482 | hasBin: true 1483 | 1484 | scheduler@0.23.2: 1485 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 1486 | 1487 | semver@6.3.1: 1488 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1489 | hasBin: true 1490 | 1491 | semver@7.6.2: 1492 | resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} 1493 | engines: {node: '>=10'} 1494 | hasBin: true 1495 | 1496 | shallowequal@1.1.0: 1497 | resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} 1498 | 1499 | shebang-command@2.0.0: 1500 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1501 | engines: {node: '>=8'} 1502 | 1503 | shebang-regex@3.0.0: 1504 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1505 | engines: {node: '>=8'} 1506 | 1507 | slash@3.0.0: 1508 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1509 | engines: {node: '>=8'} 1510 | 1511 | source-map-js@1.2.0: 1512 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} 1513 | engines: {node: '>=0.10.0'} 1514 | 1515 | source-map@0.5.7: 1516 | resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} 1517 | engines: {node: '>=0.10.0'} 1518 | 1519 | strip-ansi@6.0.1: 1520 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1521 | engines: {node: '>=8'} 1522 | 1523 | strip-json-comments@3.1.1: 1524 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1525 | engines: {node: '>=8'} 1526 | 1527 | styled-components@6.1.11: 1528 | resolution: {integrity: sha512-Ui0jXPzbp1phYij90h12ksljKGqF8ncGx+pjrNPsSPhbUUjWT2tD1FwGo2LF6USCnbrsIhNngDfodhxbegfEOA==} 1529 | engines: {node: '>= 16'} 1530 | peerDependencies: 1531 | react: '>= 16.8.0' 1532 | react-dom: '>= 16.8.0' 1533 | 1534 | stylis@4.2.0: 1535 | resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} 1536 | 1537 | stylis@4.3.2: 1538 | resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==} 1539 | 1540 | sugarss@4.0.1: 1541 | resolution: {integrity: sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==} 1542 | engines: {node: '>=12.0'} 1543 | peerDependencies: 1544 | postcss: ^8.3.3 1545 | 1546 | supports-color@5.5.0: 1547 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 1548 | engines: {node: '>=4'} 1549 | 1550 | supports-color@7.2.0: 1551 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1552 | engines: {node: '>=8'} 1553 | 1554 | supports-preserve-symlinks-flag@1.0.0: 1555 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1556 | engines: {node: '>= 0.4'} 1557 | 1558 | tabbable@6.2.0: 1559 | resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} 1560 | 1561 | text-segmentation@1.0.3: 1562 | resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==} 1563 | 1564 | text-table@0.2.0: 1565 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1566 | 1567 | to-fast-properties@2.0.0: 1568 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 1569 | engines: {node: '>=4'} 1570 | 1571 | to-regex-range@5.0.1: 1572 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1573 | engines: {node: '>=8.0'} 1574 | 1575 | ts-api-utils@1.3.0: 1576 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 1577 | engines: {node: '>=16'} 1578 | peerDependencies: 1579 | typescript: '>=4.2.0' 1580 | 1581 | tslib@2.6.2: 1582 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 1583 | 1584 | tslib@2.6.3: 1585 | resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} 1586 | 1587 | type-check@0.4.0: 1588 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1589 | engines: {node: '>= 0.8.0'} 1590 | 1591 | type-fest@0.20.2: 1592 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1593 | engines: {node: '>=10'} 1594 | 1595 | typescript@5.4.5: 1596 | resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} 1597 | engines: {node: '>=14.17'} 1598 | hasBin: true 1599 | 1600 | undici-types@5.26.5: 1601 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 1602 | 1603 | update-browserslist-db@1.0.16: 1604 | resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} 1605 | hasBin: true 1606 | peerDependencies: 1607 | browserslist: '>= 4.21.0' 1608 | 1609 | uri-js@4.4.1: 1610 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1611 | 1612 | use-callback-ref@1.3.2: 1613 | resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} 1614 | engines: {node: '>=10'} 1615 | peerDependencies: 1616 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 1617 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1618 | peerDependenciesMeta: 1619 | '@types/react': 1620 | optional: true 1621 | 1622 | use-composed-ref@1.3.0: 1623 | resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} 1624 | peerDependencies: 1625 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1626 | 1627 | use-isomorphic-layout-effect@1.1.2: 1628 | resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} 1629 | peerDependencies: 1630 | '@types/react': '*' 1631 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1632 | peerDependenciesMeta: 1633 | '@types/react': 1634 | optional: true 1635 | 1636 | use-latest@1.2.1: 1637 | resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} 1638 | peerDependencies: 1639 | '@types/react': '*' 1640 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1641 | peerDependenciesMeta: 1642 | '@types/react': 1643 | optional: true 1644 | 1645 | use-sidecar@1.1.2: 1646 | resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} 1647 | engines: {node: '>=10'} 1648 | peerDependencies: 1649 | '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 1650 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1651 | peerDependenciesMeta: 1652 | '@types/react': 1653 | optional: true 1654 | 1655 | util-deprecate@1.0.2: 1656 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1657 | 1658 | utrie@1.0.2: 1659 | resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==} 1660 | 1661 | vite@5.2.13: 1662 | resolution: {integrity: sha512-SSq1noJfY9pR3I1TUENL3rQYDQCFqgD+lM6fTRAM8Nv6Lsg5hDLaXkjETVeBt+7vZBCMoibD+6IWnT2mJ+Zb/A==} 1663 | engines: {node: ^18.0.0 || >=20.0.0} 1664 | hasBin: true 1665 | peerDependencies: 1666 | '@types/node': ^18.0.0 || >=20.0.0 1667 | less: '*' 1668 | lightningcss: ^1.21.0 1669 | sass: '*' 1670 | stylus: '*' 1671 | sugarss: '*' 1672 | terser: ^5.4.0 1673 | peerDependenciesMeta: 1674 | '@types/node': 1675 | optional: true 1676 | less: 1677 | optional: true 1678 | lightningcss: 1679 | optional: true 1680 | sass: 1681 | optional: true 1682 | stylus: 1683 | optional: true 1684 | sugarss: 1685 | optional: true 1686 | terser: 1687 | optional: true 1688 | 1689 | which@2.0.2: 1690 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1691 | engines: {node: '>= 8'} 1692 | hasBin: true 1693 | 1694 | word-wrap@1.2.5: 1695 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1696 | engines: {node: '>=0.10.0'} 1697 | 1698 | wrappy@1.0.2: 1699 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1700 | 1701 | yallist@3.1.1: 1702 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 1703 | 1704 | yaml@1.10.2: 1705 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 1706 | engines: {node: '>= 6'} 1707 | 1708 | yocto-queue@0.1.0: 1709 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1710 | engines: {node: '>=10'} 1711 | 1712 | snapshots: 1713 | 1714 | '@ampproject/remapping@2.3.0': 1715 | dependencies: 1716 | '@jridgewell/gen-mapping': 0.3.5 1717 | '@jridgewell/trace-mapping': 0.3.25 1718 | 1719 | '@babel/code-frame@7.24.7': 1720 | dependencies: 1721 | '@babel/highlight': 7.24.7 1722 | picocolors: 1.0.1 1723 | 1724 | '@babel/compat-data@7.24.7': {} 1725 | 1726 | '@babel/core@7.24.7': 1727 | dependencies: 1728 | '@ampproject/remapping': 2.3.0 1729 | '@babel/code-frame': 7.24.7 1730 | '@babel/generator': 7.24.7 1731 | '@babel/helper-compilation-targets': 7.24.7 1732 | '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) 1733 | '@babel/helpers': 7.24.7 1734 | '@babel/parser': 7.24.7 1735 | '@babel/template': 7.24.7 1736 | '@babel/traverse': 7.24.7 1737 | '@babel/types': 7.24.7 1738 | convert-source-map: 2.0.0 1739 | debug: 4.3.5 1740 | gensync: 1.0.0-beta.2 1741 | json5: 2.2.3 1742 | semver: 6.3.1 1743 | transitivePeerDependencies: 1744 | - supports-color 1745 | 1746 | '@babel/generator@7.24.7': 1747 | dependencies: 1748 | '@babel/types': 7.24.7 1749 | '@jridgewell/gen-mapping': 0.3.5 1750 | '@jridgewell/trace-mapping': 0.3.25 1751 | jsesc: 2.5.2 1752 | 1753 | '@babel/helper-compilation-targets@7.24.7': 1754 | dependencies: 1755 | '@babel/compat-data': 7.24.7 1756 | '@babel/helper-validator-option': 7.24.7 1757 | browserslist: 4.23.1 1758 | lru-cache: 5.1.1 1759 | semver: 6.3.1 1760 | 1761 | '@babel/helper-environment-visitor@7.24.7': 1762 | dependencies: 1763 | '@babel/types': 7.24.7 1764 | 1765 | '@babel/helper-function-name@7.24.7': 1766 | dependencies: 1767 | '@babel/template': 7.24.7 1768 | '@babel/types': 7.24.7 1769 | 1770 | '@babel/helper-hoist-variables@7.24.7': 1771 | dependencies: 1772 | '@babel/types': 7.24.7 1773 | 1774 | '@babel/helper-module-imports@7.24.7': 1775 | dependencies: 1776 | '@babel/traverse': 7.24.7 1777 | '@babel/types': 7.24.7 1778 | transitivePeerDependencies: 1779 | - supports-color 1780 | 1781 | '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': 1782 | dependencies: 1783 | '@babel/core': 7.24.7 1784 | '@babel/helper-environment-visitor': 7.24.7 1785 | '@babel/helper-module-imports': 7.24.7 1786 | '@babel/helper-simple-access': 7.24.7 1787 | '@babel/helper-split-export-declaration': 7.24.7 1788 | '@babel/helper-validator-identifier': 7.24.7 1789 | transitivePeerDependencies: 1790 | - supports-color 1791 | 1792 | '@babel/helper-plugin-utils@7.24.7': {} 1793 | 1794 | '@babel/helper-simple-access@7.24.7': 1795 | dependencies: 1796 | '@babel/traverse': 7.24.7 1797 | '@babel/types': 7.24.7 1798 | transitivePeerDependencies: 1799 | - supports-color 1800 | 1801 | '@babel/helper-split-export-declaration@7.24.7': 1802 | dependencies: 1803 | '@babel/types': 7.24.7 1804 | 1805 | '@babel/helper-string-parser@7.24.7': {} 1806 | 1807 | '@babel/helper-validator-identifier@7.24.7': {} 1808 | 1809 | '@babel/helper-validator-option@7.24.7': {} 1810 | 1811 | '@babel/helpers@7.24.7': 1812 | dependencies: 1813 | '@babel/template': 7.24.7 1814 | '@babel/types': 7.24.7 1815 | 1816 | '@babel/highlight@7.24.7': 1817 | dependencies: 1818 | '@babel/helper-validator-identifier': 7.24.7 1819 | chalk: 2.4.2 1820 | js-tokens: 4.0.0 1821 | picocolors: 1.0.1 1822 | 1823 | '@babel/parser@7.24.7': 1824 | dependencies: 1825 | '@babel/types': 7.24.7 1826 | 1827 | '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.7)': 1828 | dependencies: 1829 | '@babel/core': 7.24.7 1830 | '@babel/helper-plugin-utils': 7.24.7 1831 | 1832 | '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.7)': 1833 | dependencies: 1834 | '@babel/core': 7.24.7 1835 | '@babel/helper-plugin-utils': 7.24.7 1836 | 1837 | '@babel/runtime@7.24.7': 1838 | dependencies: 1839 | regenerator-runtime: 0.14.1 1840 | 1841 | '@babel/template@7.24.7': 1842 | dependencies: 1843 | '@babel/code-frame': 7.24.7 1844 | '@babel/parser': 7.24.7 1845 | '@babel/types': 7.24.7 1846 | 1847 | '@babel/traverse@7.24.7': 1848 | dependencies: 1849 | '@babel/code-frame': 7.24.7 1850 | '@babel/generator': 7.24.7 1851 | '@babel/helper-environment-visitor': 7.24.7 1852 | '@babel/helper-function-name': 7.24.7 1853 | '@babel/helper-hoist-variables': 7.24.7 1854 | '@babel/helper-split-export-declaration': 7.24.7 1855 | '@babel/parser': 7.24.7 1856 | '@babel/types': 7.24.7 1857 | debug: 4.3.5 1858 | globals: 11.12.0 1859 | transitivePeerDependencies: 1860 | - supports-color 1861 | 1862 | '@babel/types@7.24.7': 1863 | dependencies: 1864 | '@babel/helper-string-parser': 7.24.7 1865 | '@babel/helper-validator-identifier': 7.24.7 1866 | to-fast-properties: 2.0.0 1867 | 1868 | '@emotion/babel-plugin@11.11.0': 1869 | dependencies: 1870 | '@babel/helper-module-imports': 7.24.7 1871 | '@babel/runtime': 7.24.7 1872 | '@emotion/hash': 0.9.1 1873 | '@emotion/memoize': 0.8.1 1874 | '@emotion/serialize': 1.1.4 1875 | babel-plugin-macros: 3.1.0 1876 | convert-source-map: 1.9.0 1877 | escape-string-regexp: 4.0.0 1878 | find-root: 1.1.0 1879 | source-map: 0.5.7 1880 | stylis: 4.2.0 1881 | transitivePeerDependencies: 1882 | - supports-color 1883 | 1884 | '@emotion/cache@11.11.0': 1885 | dependencies: 1886 | '@emotion/memoize': 0.8.1 1887 | '@emotion/sheet': 1.2.2 1888 | '@emotion/utils': 1.2.1 1889 | '@emotion/weak-memoize': 0.3.1 1890 | stylis: 4.2.0 1891 | 1892 | '@emotion/hash@0.9.1': {} 1893 | 1894 | '@emotion/is-prop-valid@1.2.2': 1895 | dependencies: 1896 | '@emotion/memoize': 0.8.1 1897 | 1898 | '@emotion/memoize@0.8.1': {} 1899 | 1900 | '@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1)': 1901 | dependencies: 1902 | '@babel/runtime': 7.24.7 1903 | '@emotion/babel-plugin': 11.11.0 1904 | '@emotion/cache': 11.11.0 1905 | '@emotion/serialize': 1.1.4 1906 | '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) 1907 | '@emotion/utils': 1.2.1 1908 | '@emotion/weak-memoize': 0.3.1 1909 | hoist-non-react-statics: 3.3.2 1910 | react: 18.3.1 1911 | optionalDependencies: 1912 | '@types/react': 18.3.3 1913 | transitivePeerDependencies: 1914 | - supports-color 1915 | 1916 | '@emotion/serialize@1.1.4': 1917 | dependencies: 1918 | '@emotion/hash': 0.9.1 1919 | '@emotion/memoize': 0.8.1 1920 | '@emotion/unitless': 0.8.1 1921 | '@emotion/utils': 1.2.1 1922 | csstype: 3.1.3 1923 | 1924 | '@emotion/sheet@1.2.2': {} 1925 | 1926 | '@emotion/unitless@0.8.1': {} 1927 | 1928 | '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': 1929 | dependencies: 1930 | react: 18.3.1 1931 | 1932 | '@emotion/utils@1.2.1': {} 1933 | 1934 | '@emotion/weak-memoize@0.3.1': {} 1935 | 1936 | '@esbuild/aix-ppc64@0.20.2': 1937 | optional: true 1938 | 1939 | '@esbuild/android-arm64@0.20.2': 1940 | optional: true 1941 | 1942 | '@esbuild/android-arm@0.20.2': 1943 | optional: true 1944 | 1945 | '@esbuild/android-x64@0.20.2': 1946 | optional: true 1947 | 1948 | '@esbuild/darwin-arm64@0.20.2': 1949 | optional: true 1950 | 1951 | '@esbuild/darwin-x64@0.20.2': 1952 | optional: true 1953 | 1954 | '@esbuild/freebsd-arm64@0.20.2': 1955 | optional: true 1956 | 1957 | '@esbuild/freebsd-x64@0.20.2': 1958 | optional: true 1959 | 1960 | '@esbuild/linux-arm64@0.20.2': 1961 | optional: true 1962 | 1963 | '@esbuild/linux-arm@0.20.2': 1964 | optional: true 1965 | 1966 | '@esbuild/linux-ia32@0.20.2': 1967 | optional: true 1968 | 1969 | '@esbuild/linux-loong64@0.20.2': 1970 | optional: true 1971 | 1972 | '@esbuild/linux-mips64el@0.20.2': 1973 | optional: true 1974 | 1975 | '@esbuild/linux-ppc64@0.20.2': 1976 | optional: true 1977 | 1978 | '@esbuild/linux-riscv64@0.20.2': 1979 | optional: true 1980 | 1981 | '@esbuild/linux-s390x@0.20.2': 1982 | optional: true 1983 | 1984 | '@esbuild/linux-x64@0.20.2': 1985 | optional: true 1986 | 1987 | '@esbuild/netbsd-x64@0.20.2': 1988 | optional: true 1989 | 1990 | '@esbuild/openbsd-x64@0.20.2': 1991 | optional: true 1992 | 1993 | '@esbuild/sunos-x64@0.20.2': 1994 | optional: true 1995 | 1996 | '@esbuild/win32-arm64@0.20.2': 1997 | optional: true 1998 | 1999 | '@esbuild/win32-ia32@0.20.2': 2000 | optional: true 2001 | 2002 | '@esbuild/win32-x64@0.20.2': 2003 | optional: true 2004 | 2005 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': 2006 | dependencies: 2007 | eslint: 8.57.0 2008 | eslint-visitor-keys: 3.4.3 2009 | 2010 | '@eslint-community/regexpp@4.10.1': {} 2011 | 2012 | '@eslint/eslintrc@2.1.4': 2013 | dependencies: 2014 | ajv: 6.12.6 2015 | debug: 4.3.5 2016 | espree: 9.6.1 2017 | globals: 13.24.0 2018 | ignore: 5.3.1 2019 | import-fresh: 3.3.0 2020 | js-yaml: 4.1.0 2021 | minimatch: 3.1.2 2022 | strip-json-comments: 3.1.1 2023 | transitivePeerDependencies: 2024 | - supports-color 2025 | 2026 | '@eslint/js@8.57.0': {} 2027 | 2028 | '@floating-ui/core@1.6.2': 2029 | dependencies: 2030 | '@floating-ui/utils': 0.2.2 2031 | 2032 | '@floating-ui/dom@1.6.5': 2033 | dependencies: 2034 | '@floating-ui/core': 1.6.2 2035 | '@floating-ui/utils': 0.2.2 2036 | 2037 | '@floating-ui/react-dom@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2038 | dependencies: 2039 | '@floating-ui/dom': 1.6.5 2040 | react: 18.3.1 2041 | react-dom: 18.3.1(react@18.3.1) 2042 | 2043 | '@floating-ui/react@0.19.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2044 | dependencies: 2045 | '@floating-ui/react-dom': 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2046 | aria-hidden: 1.2.4 2047 | react: 18.3.1 2048 | react-dom: 18.3.1(react@18.3.1) 2049 | tabbable: 6.2.0 2050 | 2051 | '@floating-ui/utils@0.2.2': {} 2052 | 2053 | '@fortawesome/fontawesome-common-types@6.5.2': {} 2054 | 2055 | '@fortawesome/fontawesome-svg-core@6.5.2': 2056 | dependencies: 2057 | '@fortawesome/fontawesome-common-types': 6.5.2 2058 | 2059 | '@fortawesome/free-solid-svg-icons@6.5.2': 2060 | dependencies: 2061 | '@fortawesome/fontawesome-common-types': 6.5.2 2062 | 2063 | '@fortawesome/react-fontawesome@0.2.2(@fortawesome/fontawesome-svg-core@6.5.2)(react@18.3.1)': 2064 | dependencies: 2065 | '@fortawesome/fontawesome-svg-core': 6.5.2 2066 | prop-types: 15.8.1 2067 | react: 18.3.1 2068 | 2069 | '@humanwhocodes/config-array@0.11.14': 2070 | dependencies: 2071 | '@humanwhocodes/object-schema': 2.0.3 2072 | debug: 4.3.5 2073 | minimatch: 3.1.2 2074 | transitivePeerDependencies: 2075 | - supports-color 2076 | 2077 | '@humanwhocodes/module-importer@1.0.1': {} 2078 | 2079 | '@humanwhocodes/object-schema@2.0.3': {} 2080 | 2081 | '@jridgewell/gen-mapping@0.3.5': 2082 | dependencies: 2083 | '@jridgewell/set-array': 1.2.1 2084 | '@jridgewell/sourcemap-codec': 1.4.15 2085 | '@jridgewell/trace-mapping': 0.3.25 2086 | 2087 | '@jridgewell/resolve-uri@3.1.2': {} 2088 | 2089 | '@jridgewell/set-array@1.2.1': {} 2090 | 2091 | '@jridgewell/sourcemap-codec@1.4.15': {} 2092 | 2093 | '@jridgewell/trace-mapping@0.3.25': 2094 | dependencies: 2095 | '@jridgewell/resolve-uri': 3.1.2 2096 | '@jridgewell/sourcemap-codec': 1.4.15 2097 | 2098 | '@mantine/core@6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2099 | dependencies: 2100 | '@floating-ui/react': 0.19.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2101 | '@mantine/hooks': 6.0.21(react@18.3.1) 2102 | '@mantine/styles': 6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2103 | '@mantine/utils': 6.0.21(react@18.3.1) 2104 | '@radix-ui/react-scroll-area': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2105 | react: 18.3.1 2106 | react-dom: 18.3.1(react@18.3.1) 2107 | react-remove-scroll: 2.5.10(@types/react@18.3.3)(react@18.3.1) 2108 | react-textarea-autosize: 8.3.4(@types/react@18.3.3)(react@18.3.1) 2109 | transitivePeerDependencies: 2110 | - '@emotion/react' 2111 | - '@types/react' 2112 | 2113 | '@mantine/dates@6.0.21(@mantine/core@6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(dayjs@1.11.11)(react@18.3.1)': 2114 | dependencies: 2115 | '@mantine/core': 6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2116 | '@mantine/hooks': 6.0.21(react@18.3.1) 2117 | '@mantine/utils': 6.0.21(react@18.3.1) 2118 | dayjs: 1.11.11 2119 | react: 18.3.1 2120 | 2121 | '@mantine/form@7.10.1(react@18.3.1)': 2122 | dependencies: 2123 | fast-deep-equal: 3.1.3 2124 | klona: 2.0.6 2125 | react: 18.3.1 2126 | 2127 | '@mantine/hooks@6.0.21(react@18.3.1)': 2128 | dependencies: 2129 | react: 18.3.1 2130 | 2131 | '@mantine/modals@6.0.21(@mantine/core@6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2132 | dependencies: 2133 | '@mantine/core': 6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@6.0.21(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2134 | '@mantine/hooks': 6.0.21(react@18.3.1) 2135 | '@mantine/utils': 6.0.21(react@18.3.1) 2136 | react: 18.3.1 2137 | react-dom: 18.3.1(react@18.3.1) 2138 | 2139 | '@mantine/styles@6.0.21(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2140 | dependencies: 2141 | '@emotion/react': 11.11.4(@types/react@18.3.3)(react@18.3.1) 2142 | clsx: 1.1.1 2143 | csstype: 3.0.9 2144 | react: 18.3.1 2145 | react-dom: 18.3.1(react@18.3.1) 2146 | 2147 | '@mantine/utils@6.0.21(react@18.3.1)': 2148 | dependencies: 2149 | react: 18.3.1 2150 | 2151 | '@nodelib/fs.scandir@2.1.5': 2152 | dependencies: 2153 | '@nodelib/fs.stat': 2.0.5 2154 | run-parallel: 1.2.0 2155 | 2156 | '@nodelib/fs.stat@2.0.5': {} 2157 | 2158 | '@nodelib/fs.walk@1.2.8': 2159 | dependencies: 2160 | '@nodelib/fs.scandir': 2.1.5 2161 | fastq: 1.17.1 2162 | 2163 | '@radix-ui/number@1.0.0': 2164 | dependencies: 2165 | '@babel/runtime': 7.24.7 2166 | 2167 | '@radix-ui/primitive@1.0.0': 2168 | dependencies: 2169 | '@babel/runtime': 7.24.7 2170 | 2171 | '@radix-ui/react-compose-refs@1.0.0(react@18.3.1)': 2172 | dependencies: 2173 | '@babel/runtime': 7.24.7 2174 | react: 18.3.1 2175 | 2176 | '@radix-ui/react-context@1.0.0(react@18.3.1)': 2177 | dependencies: 2178 | '@babel/runtime': 7.24.7 2179 | react: 18.3.1 2180 | 2181 | '@radix-ui/react-direction@1.0.0(react@18.3.1)': 2182 | dependencies: 2183 | '@babel/runtime': 7.24.7 2184 | react: 18.3.1 2185 | 2186 | '@radix-ui/react-presence@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2187 | dependencies: 2188 | '@babel/runtime': 7.24.7 2189 | '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1) 2190 | '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1) 2191 | react: 18.3.1 2192 | react-dom: 18.3.1(react@18.3.1) 2193 | 2194 | '@radix-ui/react-primitive@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2195 | dependencies: 2196 | '@babel/runtime': 7.24.7 2197 | '@radix-ui/react-slot': 1.0.1(react@18.3.1) 2198 | react: 18.3.1 2199 | react-dom: 18.3.1(react@18.3.1) 2200 | 2201 | '@radix-ui/react-scroll-area@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2202 | dependencies: 2203 | '@babel/runtime': 7.24.7 2204 | '@radix-ui/number': 1.0.0 2205 | '@radix-ui/primitive': 1.0.0 2206 | '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1) 2207 | '@radix-ui/react-context': 1.0.0(react@18.3.1) 2208 | '@radix-ui/react-direction': 1.0.0(react@18.3.1) 2209 | '@radix-ui/react-presence': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2210 | '@radix-ui/react-primitive': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2211 | '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1) 2212 | '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1) 2213 | react: 18.3.1 2214 | react-dom: 18.3.1(react@18.3.1) 2215 | 2216 | '@radix-ui/react-slot@1.0.1(react@18.3.1)': 2217 | dependencies: 2218 | '@babel/runtime': 7.24.7 2219 | '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1) 2220 | react: 18.3.1 2221 | 2222 | '@radix-ui/react-use-callback-ref@1.0.0(react@18.3.1)': 2223 | dependencies: 2224 | '@babel/runtime': 7.24.7 2225 | react: 18.3.1 2226 | 2227 | '@radix-ui/react-use-layout-effect@1.0.0(react@18.3.1)': 2228 | dependencies: 2229 | '@babel/runtime': 7.24.7 2230 | react: 18.3.1 2231 | 2232 | '@rollup/rollup-android-arm-eabi@4.18.0': 2233 | optional: true 2234 | 2235 | '@rollup/rollup-android-arm64@4.18.0': 2236 | optional: true 2237 | 2238 | '@rollup/rollup-darwin-arm64@4.18.0': 2239 | optional: true 2240 | 2241 | '@rollup/rollup-darwin-x64@4.18.0': 2242 | optional: true 2243 | 2244 | '@rollup/rollup-linux-arm-gnueabihf@4.18.0': 2245 | optional: true 2246 | 2247 | '@rollup/rollup-linux-arm-musleabihf@4.18.0': 2248 | optional: true 2249 | 2250 | '@rollup/rollup-linux-arm64-gnu@4.18.0': 2251 | optional: true 2252 | 2253 | '@rollup/rollup-linux-arm64-musl@4.18.0': 2254 | optional: true 2255 | 2256 | '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': 2257 | optional: true 2258 | 2259 | '@rollup/rollup-linux-riscv64-gnu@4.18.0': 2260 | optional: true 2261 | 2262 | '@rollup/rollup-linux-s390x-gnu@4.18.0': 2263 | optional: true 2264 | 2265 | '@rollup/rollup-linux-x64-gnu@4.18.0': 2266 | optional: true 2267 | 2268 | '@rollup/rollup-linux-x64-musl@4.18.0': 2269 | optional: true 2270 | 2271 | '@rollup/rollup-win32-arm64-msvc@4.18.0': 2272 | optional: true 2273 | 2274 | '@rollup/rollup-win32-ia32-msvc@4.18.0': 2275 | optional: true 2276 | 2277 | '@rollup/rollup-win32-x64-msvc@4.18.0': 2278 | optional: true 2279 | 2280 | '@tabler/icons-react@2.47.0(react@18.3.1)': 2281 | dependencies: 2282 | '@tabler/icons': 2.47.0 2283 | prop-types: 15.8.1 2284 | react: 18.3.1 2285 | 2286 | '@tabler/icons@2.47.0': {} 2287 | 2288 | '@types/babel__core@7.20.5': 2289 | dependencies: 2290 | '@babel/parser': 7.24.7 2291 | '@babel/types': 7.24.7 2292 | '@types/babel__generator': 7.6.8 2293 | '@types/babel__template': 7.4.4 2294 | '@types/babel__traverse': 7.20.6 2295 | 2296 | '@types/babel__generator@7.6.8': 2297 | dependencies: 2298 | '@babel/types': 7.24.7 2299 | 2300 | '@types/babel__template@7.4.4': 2301 | dependencies: 2302 | '@babel/parser': 7.24.7 2303 | '@babel/types': 7.24.7 2304 | 2305 | '@types/babel__traverse@7.20.6': 2306 | dependencies: 2307 | '@babel/types': 7.24.7 2308 | 2309 | '@types/estree@1.0.5': {} 2310 | 2311 | '@types/json-schema@7.0.15': {} 2312 | 2313 | '@types/node@20.14.2': 2314 | dependencies: 2315 | undici-types: 5.26.5 2316 | 2317 | '@types/parse-json@4.0.2': {} 2318 | 2319 | '@types/prop-types@15.7.12': {} 2320 | 2321 | '@types/react-dom@18.3.0': 2322 | dependencies: 2323 | '@types/react': 18.3.3 2324 | 2325 | '@types/react@18.3.3': 2326 | dependencies: 2327 | '@types/prop-types': 15.7.12 2328 | csstype: 3.1.3 2329 | 2330 | '@types/semver@7.5.8': {} 2331 | 2332 | '@types/stylis@4.2.5': {} 2333 | 2334 | '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': 2335 | dependencies: 2336 | '@eslint-community/regexpp': 4.10.1 2337 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 2338 | '@typescript-eslint/scope-manager': 6.21.0 2339 | '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 2340 | '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 2341 | '@typescript-eslint/visitor-keys': 6.21.0 2342 | debug: 4.3.5 2343 | eslint: 8.57.0 2344 | graphemer: 1.4.0 2345 | ignore: 5.3.1 2346 | natural-compare: 1.4.0 2347 | semver: 7.6.2 2348 | ts-api-utils: 1.3.0(typescript@5.4.5) 2349 | optionalDependencies: 2350 | typescript: 5.4.5 2351 | transitivePeerDependencies: 2352 | - supports-color 2353 | 2354 | '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5)': 2355 | dependencies: 2356 | '@typescript-eslint/scope-manager': 6.21.0 2357 | '@typescript-eslint/types': 6.21.0 2358 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) 2359 | '@typescript-eslint/visitor-keys': 6.21.0 2360 | debug: 4.3.5 2361 | eslint: 8.57.0 2362 | optionalDependencies: 2363 | typescript: 5.4.5 2364 | transitivePeerDependencies: 2365 | - supports-color 2366 | 2367 | '@typescript-eslint/scope-manager@6.21.0': 2368 | dependencies: 2369 | '@typescript-eslint/types': 6.21.0 2370 | '@typescript-eslint/visitor-keys': 6.21.0 2371 | 2372 | '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.5)': 2373 | dependencies: 2374 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) 2375 | '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 2376 | debug: 4.3.5 2377 | eslint: 8.57.0 2378 | ts-api-utils: 1.3.0(typescript@5.4.5) 2379 | optionalDependencies: 2380 | typescript: 5.4.5 2381 | transitivePeerDependencies: 2382 | - supports-color 2383 | 2384 | '@typescript-eslint/types@6.21.0': {} 2385 | 2386 | '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': 2387 | dependencies: 2388 | '@typescript-eslint/types': 6.21.0 2389 | '@typescript-eslint/visitor-keys': 6.21.0 2390 | debug: 4.3.5 2391 | globby: 11.1.0 2392 | is-glob: 4.0.3 2393 | minimatch: 9.0.3 2394 | semver: 7.6.2 2395 | ts-api-utils: 1.3.0(typescript@5.4.5) 2396 | optionalDependencies: 2397 | typescript: 5.4.5 2398 | transitivePeerDependencies: 2399 | - supports-color 2400 | 2401 | '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.5)': 2402 | dependencies: 2403 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 2404 | '@types/json-schema': 7.0.15 2405 | '@types/semver': 7.5.8 2406 | '@typescript-eslint/scope-manager': 6.21.0 2407 | '@typescript-eslint/types': 6.21.0 2408 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) 2409 | eslint: 8.57.0 2410 | semver: 7.6.2 2411 | transitivePeerDependencies: 2412 | - supports-color 2413 | - typescript 2414 | 2415 | '@typescript-eslint/visitor-keys@6.21.0': 2416 | dependencies: 2417 | '@typescript-eslint/types': 6.21.0 2418 | eslint-visitor-keys: 3.4.3 2419 | 2420 | '@ungap/structured-clone@1.2.0': {} 2421 | 2422 | '@vitejs/plugin-react@4.3.0(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4)(sugarss@4.0.1(postcss@8.4.38)))': 2423 | dependencies: 2424 | '@babel/core': 7.24.7 2425 | '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.7) 2426 | '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.7) 2427 | '@types/babel__core': 7.20.5 2428 | react-refresh: 0.14.2 2429 | vite: 5.2.13(@types/node@20.14.2)(sass@1.77.4)(sugarss@4.0.1(postcss@8.4.38)) 2430 | transitivePeerDependencies: 2431 | - supports-color 2432 | 2433 | acorn-jsx@5.3.2(acorn@8.11.3): 2434 | dependencies: 2435 | acorn: 8.11.3 2436 | 2437 | acorn@8.11.3: {} 2438 | 2439 | ajv@6.12.6: 2440 | dependencies: 2441 | fast-deep-equal: 3.1.3 2442 | fast-json-stable-stringify: 2.1.0 2443 | json-schema-traverse: 0.4.1 2444 | uri-js: 4.4.1 2445 | 2446 | ansi-regex@5.0.1: {} 2447 | 2448 | ansi-styles@3.2.1: 2449 | dependencies: 2450 | color-convert: 1.9.3 2451 | 2452 | ansi-styles@4.3.0: 2453 | dependencies: 2454 | color-convert: 2.0.1 2455 | 2456 | anymatch@3.1.3: 2457 | dependencies: 2458 | normalize-path: 3.0.0 2459 | picomatch: 2.3.1 2460 | 2461 | argparse@2.0.1: {} 2462 | 2463 | aria-hidden@1.2.4: 2464 | dependencies: 2465 | tslib: 2.6.3 2466 | 2467 | array-union@2.1.0: {} 2468 | 2469 | babel-plugin-macros@3.1.0: 2470 | dependencies: 2471 | '@babel/runtime': 7.24.7 2472 | cosmiconfig: 7.1.0 2473 | resolve: 1.22.8 2474 | 2475 | balanced-match@1.0.2: {} 2476 | 2477 | base64-arraybuffer@1.0.2: {} 2478 | 2479 | binary-extensions@2.3.0: {} 2480 | 2481 | brace-expansion@1.1.11: 2482 | dependencies: 2483 | balanced-match: 1.0.2 2484 | concat-map: 0.0.1 2485 | 2486 | brace-expansion@2.0.1: 2487 | dependencies: 2488 | balanced-match: 1.0.2 2489 | 2490 | braces@3.0.3: 2491 | dependencies: 2492 | fill-range: 7.1.1 2493 | 2494 | browserslist@4.23.1: 2495 | dependencies: 2496 | caniuse-lite: 1.0.30001629 2497 | electron-to-chromium: 1.4.796 2498 | node-releases: 2.0.14 2499 | update-browserslist-db: 1.0.16(browserslist@4.23.1) 2500 | 2501 | callsites@3.1.0: {} 2502 | 2503 | camelcase-css@2.0.1: {} 2504 | 2505 | camelize@1.0.1: {} 2506 | 2507 | caniuse-lite@1.0.30001629: {} 2508 | 2509 | chalk@2.4.2: 2510 | dependencies: 2511 | ansi-styles: 3.2.1 2512 | escape-string-regexp: 1.0.5 2513 | supports-color: 5.5.0 2514 | 2515 | chalk@4.1.2: 2516 | dependencies: 2517 | ansi-styles: 4.3.0 2518 | supports-color: 7.2.0 2519 | 2520 | chokidar@3.6.0: 2521 | dependencies: 2522 | anymatch: 3.1.3 2523 | braces: 3.0.3 2524 | glob-parent: 5.1.2 2525 | is-binary-path: 2.1.0 2526 | is-glob: 4.0.3 2527 | normalize-path: 3.0.0 2528 | readdirp: 3.6.0 2529 | optionalDependencies: 2530 | fsevents: 2.3.3 2531 | 2532 | clsx@1.1.1: {} 2533 | 2534 | color-convert@1.9.3: 2535 | dependencies: 2536 | color-name: 1.1.3 2537 | 2538 | color-convert@2.0.1: 2539 | dependencies: 2540 | color-name: 1.1.4 2541 | 2542 | color-name@1.1.3: {} 2543 | 2544 | color-name@1.1.4: {} 2545 | 2546 | concat-map@0.0.1: {} 2547 | 2548 | convert-source-map@1.9.0: {} 2549 | 2550 | convert-source-map@2.0.0: {} 2551 | 2552 | cosmiconfig@7.1.0: 2553 | dependencies: 2554 | '@types/parse-json': 4.0.2 2555 | import-fresh: 3.3.0 2556 | parse-json: 5.2.0 2557 | path-type: 4.0.0 2558 | yaml: 1.10.2 2559 | 2560 | cross-spawn@7.0.3: 2561 | dependencies: 2562 | path-key: 3.1.1 2563 | shebang-command: 2.0.0 2564 | which: 2.0.2 2565 | 2566 | css-color-keywords@1.0.0: {} 2567 | 2568 | css-line-break@2.1.0: 2569 | dependencies: 2570 | utrie: 1.0.2 2571 | 2572 | css-to-react-native@3.2.0: 2573 | dependencies: 2574 | camelize: 1.0.1 2575 | css-color-keywords: 1.0.0 2576 | postcss-value-parser: 4.2.0 2577 | 2578 | cssesc@3.0.0: {} 2579 | 2580 | csstype@3.0.9: {} 2581 | 2582 | csstype@3.1.3: {} 2583 | 2584 | dayjs@1.11.11: {} 2585 | 2586 | debug@4.3.5: 2587 | dependencies: 2588 | ms: 2.1.2 2589 | 2590 | deep-is@0.1.4: {} 2591 | 2592 | detect-node-es@1.1.0: {} 2593 | 2594 | dir-glob@3.0.1: 2595 | dependencies: 2596 | path-type: 4.0.0 2597 | 2598 | doctrine@3.0.0: 2599 | dependencies: 2600 | esutils: 2.0.3 2601 | 2602 | electron-to-chromium@1.4.796: {} 2603 | 2604 | error-ex@1.3.2: 2605 | dependencies: 2606 | is-arrayish: 0.2.1 2607 | 2608 | esbuild@0.20.2: 2609 | optionalDependencies: 2610 | '@esbuild/aix-ppc64': 0.20.2 2611 | '@esbuild/android-arm': 0.20.2 2612 | '@esbuild/android-arm64': 0.20.2 2613 | '@esbuild/android-x64': 0.20.2 2614 | '@esbuild/darwin-arm64': 0.20.2 2615 | '@esbuild/darwin-x64': 0.20.2 2616 | '@esbuild/freebsd-arm64': 0.20.2 2617 | '@esbuild/freebsd-x64': 0.20.2 2618 | '@esbuild/linux-arm': 0.20.2 2619 | '@esbuild/linux-arm64': 0.20.2 2620 | '@esbuild/linux-ia32': 0.20.2 2621 | '@esbuild/linux-loong64': 0.20.2 2622 | '@esbuild/linux-mips64el': 0.20.2 2623 | '@esbuild/linux-ppc64': 0.20.2 2624 | '@esbuild/linux-riscv64': 0.20.2 2625 | '@esbuild/linux-s390x': 0.20.2 2626 | '@esbuild/linux-x64': 0.20.2 2627 | '@esbuild/netbsd-x64': 0.20.2 2628 | '@esbuild/openbsd-x64': 0.20.2 2629 | '@esbuild/sunos-x64': 0.20.2 2630 | '@esbuild/win32-arm64': 0.20.2 2631 | '@esbuild/win32-ia32': 0.20.2 2632 | '@esbuild/win32-x64': 0.20.2 2633 | 2634 | escalade@3.1.2: {} 2635 | 2636 | escape-string-regexp@1.0.5: {} 2637 | 2638 | escape-string-regexp@4.0.0: {} 2639 | 2640 | eslint-plugin-react-hooks@4.6.2(eslint@8.57.0): 2641 | dependencies: 2642 | eslint: 8.57.0 2643 | 2644 | eslint-plugin-react-refresh@0.4.7(eslint@8.57.0): 2645 | dependencies: 2646 | eslint: 8.57.0 2647 | 2648 | eslint-scope@7.2.2: 2649 | dependencies: 2650 | esrecurse: 4.3.0 2651 | estraverse: 5.3.0 2652 | 2653 | eslint-visitor-keys@3.4.3: {} 2654 | 2655 | eslint@8.57.0: 2656 | dependencies: 2657 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 2658 | '@eslint-community/regexpp': 4.10.1 2659 | '@eslint/eslintrc': 2.1.4 2660 | '@eslint/js': 8.57.0 2661 | '@humanwhocodes/config-array': 0.11.14 2662 | '@humanwhocodes/module-importer': 1.0.1 2663 | '@nodelib/fs.walk': 1.2.8 2664 | '@ungap/structured-clone': 1.2.0 2665 | ajv: 6.12.6 2666 | chalk: 4.1.2 2667 | cross-spawn: 7.0.3 2668 | debug: 4.3.5 2669 | doctrine: 3.0.0 2670 | escape-string-regexp: 4.0.0 2671 | eslint-scope: 7.2.2 2672 | eslint-visitor-keys: 3.4.3 2673 | espree: 9.6.1 2674 | esquery: 1.5.0 2675 | esutils: 2.0.3 2676 | fast-deep-equal: 3.1.3 2677 | file-entry-cache: 6.0.1 2678 | find-up: 5.0.0 2679 | glob-parent: 6.0.2 2680 | globals: 13.24.0 2681 | graphemer: 1.4.0 2682 | ignore: 5.3.1 2683 | imurmurhash: 0.1.4 2684 | is-glob: 4.0.3 2685 | is-path-inside: 3.0.3 2686 | js-yaml: 4.1.0 2687 | json-stable-stringify-without-jsonify: 1.0.1 2688 | levn: 0.4.1 2689 | lodash.merge: 4.6.2 2690 | minimatch: 3.1.2 2691 | natural-compare: 1.4.0 2692 | optionator: 0.9.4 2693 | strip-ansi: 6.0.1 2694 | text-table: 0.2.0 2695 | transitivePeerDependencies: 2696 | - supports-color 2697 | 2698 | espree@9.6.1: 2699 | dependencies: 2700 | acorn: 8.11.3 2701 | acorn-jsx: 5.3.2(acorn@8.11.3) 2702 | eslint-visitor-keys: 3.4.3 2703 | 2704 | esquery@1.5.0: 2705 | dependencies: 2706 | estraverse: 5.3.0 2707 | 2708 | esrecurse@4.3.0: 2709 | dependencies: 2710 | estraverse: 5.3.0 2711 | 2712 | estraverse@5.3.0: {} 2713 | 2714 | esutils@2.0.3: {} 2715 | 2716 | fast-deep-equal@3.1.3: {} 2717 | 2718 | fast-glob@3.3.2: 2719 | dependencies: 2720 | '@nodelib/fs.stat': 2.0.5 2721 | '@nodelib/fs.walk': 1.2.8 2722 | glob-parent: 5.1.2 2723 | merge2: 1.4.1 2724 | micromatch: 4.0.7 2725 | 2726 | fast-json-stable-stringify@2.1.0: {} 2727 | 2728 | fast-levenshtein@2.0.6: {} 2729 | 2730 | fastq@1.17.1: 2731 | dependencies: 2732 | reusify: 1.0.4 2733 | 2734 | file-entry-cache@6.0.1: 2735 | dependencies: 2736 | flat-cache: 3.2.0 2737 | 2738 | fill-range@7.1.1: 2739 | dependencies: 2740 | to-regex-range: 5.0.1 2741 | 2742 | find-root@1.1.0: {} 2743 | 2744 | find-up@5.0.0: 2745 | dependencies: 2746 | locate-path: 6.0.0 2747 | path-exists: 4.0.0 2748 | 2749 | flat-cache@3.2.0: 2750 | dependencies: 2751 | flatted: 3.3.1 2752 | keyv: 4.5.4 2753 | rimraf: 3.0.2 2754 | 2755 | flatted@3.3.1: {} 2756 | 2757 | fs.realpath@1.0.0: {} 2758 | 2759 | fsevents@2.3.3: 2760 | optional: true 2761 | 2762 | function-bind@1.1.2: {} 2763 | 2764 | gensync@1.0.0-beta.2: {} 2765 | 2766 | get-nonce@1.0.1: {} 2767 | 2768 | glob-parent@5.1.2: 2769 | dependencies: 2770 | is-glob: 4.0.3 2771 | 2772 | glob-parent@6.0.2: 2773 | dependencies: 2774 | is-glob: 4.0.3 2775 | 2776 | glob@7.2.3: 2777 | dependencies: 2778 | fs.realpath: 1.0.0 2779 | inflight: 1.0.6 2780 | inherits: 2.0.4 2781 | minimatch: 3.1.2 2782 | once: 1.4.0 2783 | path-is-absolute: 1.0.1 2784 | 2785 | globals@11.12.0: {} 2786 | 2787 | globals@13.24.0: 2788 | dependencies: 2789 | type-fest: 0.20.2 2790 | 2791 | globby@11.1.0: 2792 | dependencies: 2793 | array-union: 2.1.0 2794 | dir-glob: 3.0.1 2795 | fast-glob: 3.3.2 2796 | ignore: 5.3.1 2797 | merge2: 1.4.1 2798 | slash: 3.0.0 2799 | 2800 | graphemer@1.4.0: {} 2801 | 2802 | has-flag@3.0.0: {} 2803 | 2804 | has-flag@4.0.0: {} 2805 | 2806 | hasown@2.0.2: 2807 | dependencies: 2808 | function-bind: 1.1.2 2809 | 2810 | hoist-non-react-statics@3.3.2: 2811 | dependencies: 2812 | react-is: 16.13.1 2813 | 2814 | html2canvas@1.4.1: 2815 | dependencies: 2816 | css-line-break: 2.1.0 2817 | text-segmentation: 1.0.3 2818 | 2819 | ignore@5.3.1: {} 2820 | 2821 | immutable@4.3.6: {} 2822 | 2823 | import-fresh@3.3.0: 2824 | dependencies: 2825 | parent-module: 1.0.1 2826 | resolve-from: 4.0.0 2827 | 2828 | imurmurhash@0.1.4: {} 2829 | 2830 | inflight@1.0.6: 2831 | dependencies: 2832 | once: 1.4.0 2833 | wrappy: 1.0.2 2834 | 2835 | inherits@2.0.4: {} 2836 | 2837 | invariant@2.2.4: 2838 | dependencies: 2839 | loose-envify: 1.4.0 2840 | 2841 | is-arrayish@0.2.1: {} 2842 | 2843 | is-binary-path@2.1.0: 2844 | dependencies: 2845 | binary-extensions: 2.3.0 2846 | 2847 | is-core-module@2.13.1: 2848 | dependencies: 2849 | hasown: 2.0.2 2850 | 2851 | is-extglob@2.1.1: {} 2852 | 2853 | is-glob@4.0.3: 2854 | dependencies: 2855 | is-extglob: 2.1.1 2856 | 2857 | is-number@7.0.0: {} 2858 | 2859 | is-path-inside@3.0.3: {} 2860 | 2861 | isexe@2.0.0: {} 2862 | 2863 | js-tokens@4.0.0: {} 2864 | 2865 | js-yaml@4.1.0: 2866 | dependencies: 2867 | argparse: 2.0.1 2868 | 2869 | jsesc@2.5.2: {} 2870 | 2871 | json-buffer@3.0.1: {} 2872 | 2873 | json-parse-even-better-errors@2.3.1: {} 2874 | 2875 | json-schema-traverse@0.4.1: {} 2876 | 2877 | json-stable-stringify-without-jsonify@1.0.1: {} 2878 | 2879 | json5@2.2.3: {} 2880 | 2881 | keyv@4.5.4: 2882 | dependencies: 2883 | json-buffer: 3.0.1 2884 | 2885 | klona@2.0.6: {} 2886 | 2887 | levn@0.4.1: 2888 | dependencies: 2889 | prelude-ls: 1.2.1 2890 | type-check: 0.4.0 2891 | 2892 | lines-and-columns@1.2.4: {} 2893 | 2894 | locate-path@6.0.0: 2895 | dependencies: 2896 | p-locate: 5.0.0 2897 | 2898 | lodash.merge@4.6.2: {} 2899 | 2900 | loose-envify@1.4.0: 2901 | dependencies: 2902 | js-tokens: 4.0.0 2903 | 2904 | lru-cache@5.1.1: 2905 | dependencies: 2906 | yallist: 3.1.1 2907 | 2908 | merge2@1.4.1: {} 2909 | 2910 | micromatch@4.0.7: 2911 | dependencies: 2912 | braces: 3.0.3 2913 | picomatch: 2.3.1 2914 | 2915 | minimatch@3.1.2: 2916 | dependencies: 2917 | brace-expansion: 1.1.11 2918 | 2919 | minimatch@9.0.3: 2920 | dependencies: 2921 | brace-expansion: 2.0.1 2922 | 2923 | ms@2.1.2: {} 2924 | 2925 | nanoid@3.3.7: {} 2926 | 2927 | natural-compare@1.4.0: {} 2928 | 2929 | node-releases@2.0.14: {} 2930 | 2931 | normalize-path@3.0.0: {} 2932 | 2933 | object-assign@4.1.1: {} 2934 | 2935 | once@1.4.0: 2936 | dependencies: 2937 | wrappy: 1.0.2 2938 | 2939 | optionator@0.9.4: 2940 | dependencies: 2941 | deep-is: 0.1.4 2942 | fast-levenshtein: 2.0.6 2943 | levn: 0.4.1 2944 | prelude-ls: 1.2.1 2945 | type-check: 0.4.0 2946 | word-wrap: 1.2.5 2947 | 2948 | p-limit@3.1.0: 2949 | dependencies: 2950 | yocto-queue: 0.1.0 2951 | 2952 | p-locate@5.0.0: 2953 | dependencies: 2954 | p-limit: 3.1.0 2955 | 2956 | parent-module@1.0.1: 2957 | dependencies: 2958 | callsites: 3.1.0 2959 | 2960 | parse-json@5.2.0: 2961 | dependencies: 2962 | '@babel/code-frame': 7.24.7 2963 | error-ex: 1.3.2 2964 | json-parse-even-better-errors: 2.3.1 2965 | lines-and-columns: 1.2.4 2966 | 2967 | path-exists@4.0.0: {} 2968 | 2969 | path-is-absolute@1.0.1: {} 2970 | 2971 | path-key@3.1.1: {} 2972 | 2973 | path-parse@1.0.7: {} 2974 | 2975 | path-type@4.0.0: {} 2976 | 2977 | picocolors@1.0.1: {} 2978 | 2979 | picomatch@2.3.1: {} 2980 | 2981 | postcss-js@4.0.1(postcss@8.4.38): 2982 | dependencies: 2983 | camelcase-css: 2.0.1 2984 | postcss: 8.4.38 2985 | 2986 | postcss-mixins@9.0.4(postcss@8.4.38): 2987 | dependencies: 2988 | fast-glob: 3.3.2 2989 | postcss: 8.4.38 2990 | postcss-js: 4.0.1(postcss@8.4.38) 2991 | postcss-simple-vars: 7.0.1(postcss@8.4.38) 2992 | sugarss: 4.0.1(postcss@8.4.38) 2993 | 2994 | postcss-nested@6.0.1(postcss@8.4.38): 2995 | dependencies: 2996 | postcss: 8.4.38 2997 | postcss-selector-parser: 6.1.0 2998 | 2999 | postcss-preset-mantine@1.15.0(postcss@8.4.38): 3000 | dependencies: 3001 | postcss: 8.4.38 3002 | postcss-mixins: 9.0.4(postcss@8.4.38) 3003 | postcss-nested: 6.0.1(postcss@8.4.38) 3004 | 3005 | postcss-selector-parser@6.1.0: 3006 | dependencies: 3007 | cssesc: 3.0.0 3008 | util-deprecate: 1.0.2 3009 | 3010 | postcss-simple-vars@7.0.1(postcss@8.4.38): 3011 | dependencies: 3012 | postcss: 8.4.38 3013 | 3014 | postcss-value-parser@4.2.0: {} 3015 | 3016 | postcss@8.4.38: 3017 | dependencies: 3018 | nanoid: 3.3.7 3019 | picocolors: 1.0.1 3020 | source-map-js: 1.2.0 3021 | 3022 | prelude-ls@1.2.1: {} 3023 | 3024 | prop-types@15.8.1: 3025 | dependencies: 3026 | loose-envify: 1.4.0 3027 | object-assign: 4.1.1 3028 | react-is: 16.13.1 3029 | 3030 | punycode@2.3.1: {} 3031 | 3032 | queue-microtask@1.2.3: {} 3033 | 3034 | react-dom@18.3.1(react@18.3.1): 3035 | dependencies: 3036 | loose-envify: 1.4.0 3037 | react: 18.3.1 3038 | scheduler: 0.23.2 3039 | 3040 | react-icons@5.2.1(react@18.3.1): 3041 | dependencies: 3042 | react: 18.3.1 3043 | 3044 | react-is@16.13.1: {} 3045 | 3046 | react-refresh@0.14.2: {} 3047 | 3048 | react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1): 3049 | dependencies: 3050 | react: 18.3.1 3051 | react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) 3052 | tslib: 2.6.3 3053 | optionalDependencies: 3054 | '@types/react': 18.3.3 3055 | 3056 | react-remove-scroll@2.5.10(@types/react@18.3.3)(react@18.3.1): 3057 | dependencies: 3058 | react: 18.3.1 3059 | react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1) 3060 | react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) 3061 | tslib: 2.6.3 3062 | use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1) 3063 | use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) 3064 | optionalDependencies: 3065 | '@types/react': 18.3.3 3066 | 3067 | react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): 3068 | dependencies: 3069 | get-nonce: 1.0.1 3070 | invariant: 2.2.4 3071 | react: 18.3.1 3072 | tslib: 2.6.3 3073 | optionalDependencies: 3074 | '@types/react': 18.3.3 3075 | 3076 | react-textarea-autosize@8.3.4(@types/react@18.3.3)(react@18.3.1): 3077 | dependencies: 3078 | '@babel/runtime': 7.24.7 3079 | react: 18.3.1 3080 | use-composed-ref: 1.3.0(react@18.3.1) 3081 | use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1) 3082 | transitivePeerDependencies: 3083 | - '@types/react' 3084 | 3085 | react@18.3.1: 3086 | dependencies: 3087 | loose-envify: 1.4.0 3088 | 3089 | readdirp@3.6.0: 3090 | dependencies: 3091 | picomatch: 2.3.1 3092 | 3093 | regenerator-runtime@0.14.1: {} 3094 | 3095 | resolve-from@4.0.0: {} 3096 | 3097 | resolve@1.22.8: 3098 | dependencies: 3099 | is-core-module: 2.13.1 3100 | path-parse: 1.0.7 3101 | supports-preserve-symlinks-flag: 1.0.0 3102 | 3103 | reusify@1.0.4: {} 3104 | 3105 | rimraf@3.0.2: 3106 | dependencies: 3107 | glob: 7.2.3 3108 | 3109 | rollup@4.18.0: 3110 | dependencies: 3111 | '@types/estree': 1.0.5 3112 | optionalDependencies: 3113 | '@rollup/rollup-android-arm-eabi': 4.18.0 3114 | '@rollup/rollup-android-arm64': 4.18.0 3115 | '@rollup/rollup-darwin-arm64': 4.18.0 3116 | '@rollup/rollup-darwin-x64': 4.18.0 3117 | '@rollup/rollup-linux-arm-gnueabihf': 4.18.0 3118 | '@rollup/rollup-linux-arm-musleabihf': 4.18.0 3119 | '@rollup/rollup-linux-arm64-gnu': 4.18.0 3120 | '@rollup/rollup-linux-arm64-musl': 4.18.0 3121 | '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0 3122 | '@rollup/rollup-linux-riscv64-gnu': 4.18.0 3123 | '@rollup/rollup-linux-s390x-gnu': 4.18.0 3124 | '@rollup/rollup-linux-x64-gnu': 4.18.0 3125 | '@rollup/rollup-linux-x64-musl': 4.18.0 3126 | '@rollup/rollup-win32-arm64-msvc': 4.18.0 3127 | '@rollup/rollup-win32-ia32-msvc': 4.18.0 3128 | '@rollup/rollup-win32-x64-msvc': 4.18.0 3129 | fsevents: 2.3.3 3130 | 3131 | run-parallel@1.2.0: 3132 | dependencies: 3133 | queue-microtask: 1.2.3 3134 | 3135 | sass@1.77.4: 3136 | dependencies: 3137 | chokidar: 3.6.0 3138 | immutable: 4.3.6 3139 | source-map-js: 1.2.0 3140 | 3141 | scheduler@0.23.2: 3142 | dependencies: 3143 | loose-envify: 1.4.0 3144 | 3145 | semver@6.3.1: {} 3146 | 3147 | semver@7.6.2: {} 3148 | 3149 | shallowequal@1.1.0: {} 3150 | 3151 | shebang-command@2.0.0: 3152 | dependencies: 3153 | shebang-regex: 3.0.0 3154 | 3155 | shebang-regex@3.0.0: {} 3156 | 3157 | slash@3.0.0: {} 3158 | 3159 | source-map-js@1.2.0: {} 3160 | 3161 | source-map@0.5.7: {} 3162 | 3163 | strip-ansi@6.0.1: 3164 | dependencies: 3165 | ansi-regex: 5.0.1 3166 | 3167 | strip-json-comments@3.1.1: {} 3168 | 3169 | styled-components@6.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 3170 | dependencies: 3171 | '@emotion/is-prop-valid': 1.2.2 3172 | '@emotion/unitless': 0.8.1 3173 | '@types/stylis': 4.2.5 3174 | css-to-react-native: 3.2.0 3175 | csstype: 3.1.3 3176 | postcss: 8.4.38 3177 | react: 18.3.1 3178 | react-dom: 18.3.1(react@18.3.1) 3179 | shallowequal: 1.1.0 3180 | stylis: 4.3.2 3181 | tslib: 2.6.2 3182 | 3183 | stylis@4.2.0: {} 3184 | 3185 | stylis@4.3.2: {} 3186 | 3187 | sugarss@4.0.1(postcss@8.4.38): 3188 | dependencies: 3189 | postcss: 8.4.38 3190 | 3191 | supports-color@5.5.0: 3192 | dependencies: 3193 | has-flag: 3.0.0 3194 | 3195 | supports-color@7.2.0: 3196 | dependencies: 3197 | has-flag: 4.0.0 3198 | 3199 | supports-preserve-symlinks-flag@1.0.0: {} 3200 | 3201 | tabbable@6.2.0: {} 3202 | 3203 | text-segmentation@1.0.3: 3204 | dependencies: 3205 | utrie: 1.0.2 3206 | 3207 | text-table@0.2.0: {} 3208 | 3209 | to-fast-properties@2.0.0: {} 3210 | 3211 | to-regex-range@5.0.1: 3212 | dependencies: 3213 | is-number: 7.0.0 3214 | 3215 | ts-api-utils@1.3.0(typescript@5.4.5): 3216 | dependencies: 3217 | typescript: 5.4.5 3218 | 3219 | tslib@2.6.2: {} 3220 | 3221 | tslib@2.6.3: {} 3222 | 3223 | type-check@0.4.0: 3224 | dependencies: 3225 | prelude-ls: 1.2.1 3226 | 3227 | type-fest@0.20.2: {} 3228 | 3229 | typescript@5.4.5: {} 3230 | 3231 | undici-types@5.26.5: {} 3232 | 3233 | update-browserslist-db@1.0.16(browserslist@4.23.1): 3234 | dependencies: 3235 | browserslist: 4.23.1 3236 | escalade: 3.1.2 3237 | picocolors: 1.0.1 3238 | 3239 | uri-js@4.4.1: 3240 | dependencies: 3241 | punycode: 2.3.1 3242 | 3243 | use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1): 3244 | dependencies: 3245 | react: 18.3.1 3246 | tslib: 2.6.3 3247 | optionalDependencies: 3248 | '@types/react': 18.3.3 3249 | 3250 | use-composed-ref@1.3.0(react@18.3.1): 3251 | dependencies: 3252 | react: 18.3.1 3253 | 3254 | use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1): 3255 | dependencies: 3256 | react: 18.3.1 3257 | optionalDependencies: 3258 | '@types/react': 18.3.3 3259 | 3260 | use-latest@1.2.1(@types/react@18.3.3)(react@18.3.1): 3261 | dependencies: 3262 | react: 18.3.1 3263 | use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1) 3264 | optionalDependencies: 3265 | '@types/react': 18.3.3 3266 | 3267 | use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1): 3268 | dependencies: 3269 | detect-node-es: 1.1.0 3270 | react: 18.3.1 3271 | tslib: 2.6.3 3272 | optionalDependencies: 3273 | '@types/react': 18.3.3 3274 | 3275 | util-deprecate@1.0.2: {} 3276 | 3277 | utrie@1.0.2: 3278 | dependencies: 3279 | base64-arraybuffer: 1.0.2 3280 | 3281 | vite@5.2.13(@types/node@20.14.2)(sass@1.77.4)(sugarss@4.0.1(postcss@8.4.38)): 3282 | dependencies: 3283 | esbuild: 0.20.2 3284 | postcss: 8.4.38 3285 | rollup: 4.18.0 3286 | optionalDependencies: 3287 | '@types/node': 20.14.2 3288 | fsevents: 2.3.3 3289 | sass: 1.77.4 3290 | sugarss: 4.0.1(postcss@8.4.38) 3291 | 3292 | which@2.0.2: 3293 | dependencies: 3294 | isexe: 2.0.0 3295 | 3296 | word-wrap@1.2.5: {} 3297 | 3298 | wrappy@1.0.2: {} 3299 | 3300 | yallist@3.1.1: {} 3301 | 3302 | yaml@1.10.2: {} 3303 | 3304 | yocto-queue@0.1.0: {} 3305 | -------------------------------------------------------------------------------- /web/src/components/Elevator.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState, useRef, useEffect } from "react"; 2 | import { DEFAULT_THEME, Paper, Text, Divider, ActionIcon } from "@mantine/core"; 3 | import { modals } from "@mantine/modals"; 4 | import { fetchNui } from "../utils/fetchNui"; 5 | import { useNuiEvent } from "../hooks/useNuiEvent"; 6 | 7 | const Elevator: React.FC = () => { 8 | const theme = DEFAULT_THEME; 9 | const [elevatorLevels, setElevatorLevels] = useState([]) 10 | const [currentLevel, setCurrentLevel] = useState([]) 11 | const [elevatorLabel, setElevatorLevel] = useState('') 12 | const [currentElevator, setCurrentElevator] = useState(0) 13 | 14 | useNuiEvent('updateElevator', (data) => { 15 | setCurrentElevator(data.currentElevator) 16 | setElevatorLevel(data.elevatorLabel) 17 | setElevatorLevels(data.elevatorLevels) 18 | setCurrentLevel(data.currentLevel) 19 | }); 20 | 21 | return ( 22 |
33 | 43 | 50 | {elevatorLabel} 51 | 52 | 53 |
64 | {elevatorLevels && elevatorLevels.map(({ id, label }) => ( { 70 | fetchNui('useElevator', { currentElevator: currentElevator, id: id }) 71 | }} 72 | > 73 | {label} 74 | ))} 75 |
76 |
77 |
78 | ); 79 | }; 80 | 81 | export default Elevator; -------------------------------------------------------------------------------- /web/src/hooks/useNuiEvent.ts: -------------------------------------------------------------------------------- 1 | import { MutableRefObject, useEffect, useRef } from "react"; 2 | import { noop } from "../utils/misc"; 3 | 4 | interface NuiMessageData { 5 | action: string; 6 | data: T; 7 | } 8 | 9 | type NuiHandlerSignature = (data: T) => void; 10 | 11 | export const useNuiEvent = ( 12 | action: string, 13 | handler: (data: T) => void, 14 | ) => { 15 | const savedHandler: MutableRefObject> = useRef(noop); 16 | 17 | useEffect(() => { 18 | savedHandler.current = handler; 19 | }, [handler]); 20 | 21 | useEffect(() => { 22 | const eventListener = (event: MessageEvent>) => { 23 | const { action: eventAction, data } = event.data; 24 | 25 | if (savedHandler.current) { 26 | if (eventAction === action) { 27 | savedHandler.current(data); 28 | } 29 | } 30 | }; 31 | 32 | window.addEventListener("message", eventListener); 33 | return () => window.removeEventListener("message", eventListener); 34 | }, [action]); 35 | }; -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import ReactDOM from 'react-dom/client' 3 | import { VisibilityProvider } from './providers/VisibilityProvider' 4 | import { MantineProvider } from '@mantine/core' 5 | import { ModalsProvider } from '@mantine/modals' 6 | import { DatesProvider } from '@mantine/dates' 7 | import Elevator from './components/Elevator' 8 | 9 | ReactDOM.createRoot(document.getElementById('root')!).render( 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | ) -------------------------------------------------------------------------------- /web/src/providers/VisibilityProvider.tsx: -------------------------------------------------------------------------------- 1 | import React, { createContext, useContext, useEffect, useState } from "react"; 2 | import { useNuiEvent } from "../hooks/useNuiEvent"; 3 | import { fetchNui } from "../utils/fetchNui"; 4 | import { isEnvBrowser } from "../utils/misc"; 5 | 6 | 7 | const VisibilityCtx = createContext(null); 8 | 9 | 10 | interface VisibilityProviderValue { 11 | setVisible: (visible: boolean) => void; 12 | visible: boolean; 13 | } 14 | 15 | export const VisibilityProvider: React.FC<{ 16 | children: React.ReactNode; 17 | componentName: string; 18 | }> = ({ children, componentName }) => { 19 | const [visible, setVisible] = useState(false); 20 | 21 | useNuiEvent(`setVisible${componentName}`, setVisible); 22 | 23 | useEffect(() => { 24 | const keyHandler = (e: KeyboardEvent) => { 25 | if (visible && e.code === "Escape") { 26 | if (!isEnvBrowser()) fetchNui("hideFrame", { name: `setVisible${componentName}` }); 27 | else setVisible(false); 28 | } 29 | }; 30 | window.addEventListener("keydown", keyHandler); 31 | 32 | return () => window.removeEventListener("keydown", keyHandler); 33 | }, [visible, componentName]); 34 | 35 | return ( 36 | 37 |
38 | {children} 39 |
40 |
41 | ); 42 | }; 43 | 44 | export const useVisibility = () => 45 | useContext( 46 | VisibilityCtx as React.Context 47 | ); -------------------------------------------------------------------------------- /web/src/utils/debugData.ts: -------------------------------------------------------------------------------- 1 | import { isEnvBrowser } from "./misc"; 2 | 3 | interface DebugEvent { 4 | action: string; 5 | data: T; 6 | } 7 | 8 | /** 9 | * Emulates dispatching an event using SendNuiMessage in the lua scripts. 10 | * This is used when developing in browser 11 | * 12 | * @param events - The event you want to cover 13 | * @param timer - How long until it should trigger (ms) 14 | */ 15 | export const debugData =

(events: DebugEvent

[], timer = 1000): void => { 16 | if (import.meta.env.MODE === "development" && isEnvBrowser()) { 17 | for (const event of events) { 18 | setTimeout(() => { 19 | window.dispatchEvent( 20 | new MessageEvent("message", { 21 | data: { 22 | action: event.action, 23 | data: event.data, 24 | }, 25 | }), 26 | ); 27 | }, timer); 28 | } 29 | } 30 | }; 31 | -------------------------------------------------------------------------------- /web/src/utils/fetchNui.ts: -------------------------------------------------------------------------------- 1 | import { isEnvBrowser } from "./misc" 2 | 3 | export async function fetchNui( 4 | eventName: string, 5 | data?: unknown, 6 | mockData?: T, 7 | ): Promise { 8 | const options = { 9 | method: "post", 10 | headers: { 11 | "Content-Type": "application/json; charset=UTF-8", 12 | }, 13 | body: JSON.stringify(data), 14 | }; 15 | 16 | if (isEnvBrowser() && mockData) return mockData 17 | 18 | const resourceName = (window as any).GetParentResourceName 19 | ? (window as any).GetParentResourceName() : "nui-frame-app" 20 | 21 | const resp = await fetch(`https://${resourceName}/${eventName}`, options) 22 | 23 | const respFormatted = await resp.json() 24 | 25 | return respFormatted 26 | } 27 | -------------------------------------------------------------------------------- /web/src/utils/misc.ts: -------------------------------------------------------------------------------- 1 | export const isEnvBrowser = (): boolean => !(window as any).invokeNative 2 | 3 | export const noop = () => {} -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "useDefineForClassFields": true, 5 | "lib": ["DOM", "DOM.Iterable", "ESNext"], 6 | "allowJs": false, 7 | "skipLibCheck": true, 8 | "esModuleInterop": false, 9 | "allowSyntheticDefaultImports": true, 10 | "strict": true, 11 | "forceConsistentCasingInFileNames": true, 12 | "module": "ESNext", 13 | "moduleResolution": "Node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true, 16 | "noEmit": true, 17 | "jsx": "react-jsx", 18 | 19 | }, 20 | "include": ["src"], 21 | "references": [{ "path": "./tsconfig.node.json" }] 22 | } 23 | -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "esnext", 5 | "moduleResolution": "node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | export default defineConfig({ 5 | plugins: [react()], 6 | base: './', 7 | build: { 8 | outDir: 'build', 9 | chunkSizeWarningLimit: 1000 10 | }, 11 | }); --------------------------------------------------------------------------------