+++ .gitignore
... | ... | @@ -0,0 +1,29 @@ |
| 1 | +# Dependencies | |
| 2 | +node_modules/ | |
| 3 | + | |
| 4 | +# Build output | |
| 5 | +dist/ | |
| 6 | +build/ | |
| 7 | + | |
| 8 | +# Logs | |
| 9 | +*.log | |
| 10 | +npm-debug.log* | |
| 11 | +yarn-debug.log* | |
| 12 | +yarn-error.log* | |
| 13 | +pnpm-debug.log* | |
| 14 | + | |
| 15 | +# Local environment | |
| 16 | +.env | |
| 17 | +.env.* | |
| 18 | +!.env.example | |
| 19 | + | |
| 20 | +# Editor / IDE | |
| 21 | +.idea/ | |
| 22 | +.vscode/ | |
| 23 | + | |
| 24 | +# OS files | |
| 25 | +.DS_Store | |
| 26 | +Thumbs.db | |
| 27 | + | |
| 28 | +# TypeScript | |
| 29 | +*.tsbuildinfo |
+++ eslint.config.js
... | ... | @@ -0,0 +1,23 @@ |
| 1 | +import js from '@eslint/js' | |
| 2 | +import globals from 'globals' | |
| 3 | +import reactHooks from 'eslint-plugin-react-hooks' | |
| 4 | +import reactRefresh from 'eslint-plugin-react-refresh' | |
| 5 | +import tseslint from 'typescript-eslint' | |
| 6 | +import { defineConfig, globalIgnores } from 'eslint/config' | |
| 7 | + | |
| 8 | +export default defineConfig([ | |
| 9 | + globalIgnores(['dist']), | |
| 10 | + { | |
| 11 | + files: ['**/*.{ts,tsx}'], | |
| 12 | + extends: [ | |
| 13 | + js.configs.recommended, | |
| 14 | + tseslint.configs.recommended, | |
| 15 | + reactHooks.configs.flat.recommended, | |
| 16 | + reactRefresh.configs.vite, | |
| 17 | + ], | |
| 18 | + languageOptions: { | |
| 19 | + ecmaVersion: 2020, | |
| 20 | + globals: globals.browser, | |
| 21 | + }, | |
| 22 | + }, | |
| 23 | +]) |
+++ index.html
... | ... | @@ -0,0 +1,12 @@ |
| 1 | +<!doctype html> | |
| 2 | +<html lang="ko"> | |
| 3 | + <head> | |
| 4 | + <meta charset="UTF-8" /> | |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| 6 | + <title>Base React Publishing Lab</title> | |
| 7 | + </head> | |
| 8 | + <body> | |
| 9 | + <div id="root"></div> | |
| 10 | + <script type="module" src="/src/main.tsx"></script> | |
| 11 | + </body> | |
| 12 | +</html> |
+++ package-lock.json
... | ... | @@ -0,0 +1,3107 @@ |
| 1 | +{ | |
| 2 | + "name": "react-app", | |
| 3 | + "version": "0.0.0", | |
| 4 | + "lockfileVersion": 3, | |
| 5 | + "requires": true, | |
| 6 | + "packages": { | |
| 7 | + "": { | |
| 8 | + "name": "react-app", | |
| 9 | + "version": "0.0.0", | |
| 10 | + "dependencies": { | |
| 11 | + "@tanstack/react-query": "^5.99.0", | |
| 12 | + "react": "^19.2.4", | |
| 13 | + "react-dom": "^19.2.4", | |
| 14 | + "react-router-dom": "^7.14.1", | |
| 15 | + "react-toastify": "^11.1.0" | |
| 16 | + }, | |
| 17 | + "devDependencies": { | |
| 18 | + "@eslint/js": "^9.39.4", | |
| 19 | + "@types/node": "^24.12.2", | |
| 20 | + "@types/react": "^19.2.14", | |
| 21 | + "@types/react-dom": "^19.2.3", | |
| 22 | + "@vitejs/plugin-react": "^6.0.1", | |
| 23 | + "eslint": "^9.39.4", | |
| 24 | + "eslint-plugin-react-hooks": "^7.0.1", | |
| 25 | + "eslint-plugin-react-refresh": "^0.5.2", | |
| 26 | + "globals": "^17.4.0", | |
| 27 | + "typescript": "~6.0.2", | |
| 28 | + "typescript-eslint": "^8.58.0", | |
| 29 | + "vite": "^8.0.4" | |
| 30 | + } | |
| 31 | + }, | |
| 32 | + "node_modules/@babel/code-frame": { | |
| 33 | + "version": "7.29.0", | |
| 34 | + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", | |
| 35 | + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", | |
| 36 | + "dev": true, | |
| 37 | + "license": "MIT", | |
| 38 | + "dependencies": { | |
| 39 | + "@babel/helper-validator-identifier": "^7.28.5", | |
| 40 | + "js-tokens": "^4.0.0", | |
| 41 | + "picocolors": "^1.1.1" | |
| 42 | + }, | |
| 43 | + "engines": { | |
| 44 | + "node": ">=6.9.0" | |
| 45 | + } | |
| 46 | + }, | |
| 47 | + "node_modules/@babel/compat-data": { | |
| 48 | + "version": "7.29.0", | |
| 49 | + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", | |
| 50 | + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", | |
| 51 | + "dev": true, | |
| 52 | + "license": "MIT", | |
| 53 | + "engines": { | |
| 54 | + "node": ">=6.9.0" | |
| 55 | + } | |
| 56 | + }, | |
| 57 | + "node_modules/@babel/core": { | |
| 58 | + "version": "7.29.0", | |
| 59 | + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", | |
| 60 | + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", | |
| 61 | + "dev": true, | |
| 62 | + "license": "MIT", | |
| 63 | + "dependencies": { | |
| 64 | + "@babel/code-frame": "^7.29.0", | |
| 65 | + "@babel/generator": "^7.29.0", | |
| 66 | + "@babel/helper-compilation-targets": "^7.28.6", | |
| 67 | + "@babel/helper-module-transforms": "^7.28.6", | |
| 68 | + "@babel/helpers": "^7.28.6", | |
| 69 | + "@babel/parser": "^7.29.0", | |
| 70 | + "@babel/template": "^7.28.6", | |
| 71 | + "@babel/traverse": "^7.29.0", | |
| 72 | + "@babel/types": "^7.29.0", | |
| 73 | + "@jridgewell/remapping": "^2.3.5", | |
| 74 | + "convert-source-map": "^2.0.0", | |
| 75 | + "debug": "^4.1.0", | |
| 76 | + "gensync": "^1.0.0-beta.2", | |
| 77 | + "json5": "^2.2.3", | |
| 78 | + "semver": "^6.3.1" | |
| 79 | + }, | |
| 80 | + "engines": { | |
| 81 | + "node": ">=6.9.0" | |
| 82 | + }, | |
| 83 | + "funding": { | |
| 84 | + "type": "opencollective", | |
| 85 | + "url": "https://opencollective.com/babel" | |
| 86 | + } | |
| 87 | + }, | |
| 88 | + "node_modules/@babel/generator": { | |
| 89 | + "version": "7.29.1", | |
| 90 | + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", | |
| 91 | + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", | |
| 92 | + "dev": true, | |
| 93 | + "license": "MIT", | |
| 94 | + "dependencies": { | |
| 95 | + "@babel/parser": "^7.29.0", | |
| 96 | + "@babel/types": "^7.29.0", | |
| 97 | + "@jridgewell/gen-mapping": "^0.3.12", | |
| 98 | + "@jridgewell/trace-mapping": "^0.3.28", | |
| 99 | + "jsesc": "^3.0.2" | |
| 100 | + }, | |
| 101 | + "engines": { | |
| 102 | + "node": ">=6.9.0" | |
| 103 | + } | |
| 104 | + }, | |
| 105 | + "node_modules/@babel/helper-compilation-targets": { | |
| 106 | + "version": "7.28.6", | |
| 107 | + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", | |
| 108 | + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", | |
| 109 | + "dev": true, | |
| 110 | + "license": "MIT", | |
| 111 | + "dependencies": { | |
| 112 | + "@babel/compat-data": "^7.28.6", | |
| 113 | + "@babel/helper-validator-option": "^7.27.1", | |
| 114 | + "browserslist": "^4.24.0", | |
| 115 | + "lru-cache": "^5.1.1", | |
| 116 | + "semver": "^6.3.1" | |
| 117 | + }, | |
| 118 | + "engines": { | |
| 119 | + "node": ">=6.9.0" | |
| 120 | + } | |
| 121 | + }, | |
| 122 | + "node_modules/@babel/helper-globals": { | |
| 123 | + "version": "7.28.0", | |
| 124 | + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", | |
| 125 | + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", | |
| 126 | + "dev": true, | |
| 127 | + "license": "MIT", | |
| 128 | + "engines": { | |
| 129 | + "node": ">=6.9.0" | |
| 130 | + } | |
| 131 | + }, | |
| 132 | + "node_modules/@babel/helper-module-imports": { | |
| 133 | + "version": "7.28.6", | |
| 134 | + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", | |
| 135 | + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", | |
| 136 | + "dev": true, | |
| 137 | + "license": "MIT", | |
| 138 | + "dependencies": { | |
| 139 | + "@babel/traverse": "^7.28.6", | |
| 140 | + "@babel/types": "^7.28.6" | |
| 141 | + }, | |
| 142 | + "engines": { | |
| 143 | + "node": ">=6.9.0" | |
| 144 | + } | |
| 145 | + }, | |
| 146 | + "node_modules/@babel/helper-module-transforms": { | |
| 147 | + "version": "7.28.6", | |
| 148 | + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", | |
| 149 | + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", | |
| 150 | + "dev": true, | |
| 151 | + "license": "MIT", | |
| 152 | + "dependencies": { | |
| 153 | + "@babel/helper-module-imports": "^7.28.6", | |
| 154 | + "@babel/helper-validator-identifier": "^7.28.5", | |
| 155 | + "@babel/traverse": "^7.28.6" | |
| 156 | + }, | |
| 157 | + "engines": { | |
| 158 | + "node": ">=6.9.0" | |
| 159 | + }, | |
| 160 | + "peerDependencies": { | |
| 161 | + "@babel/core": "^7.0.0" | |
| 162 | + } | |
| 163 | + }, | |
| 164 | + "node_modules/@babel/helper-string-parser": { | |
| 165 | + "version": "7.27.1", | |
| 166 | + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", | |
| 167 | + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", | |
| 168 | + "dev": true, | |
| 169 | + "license": "MIT", | |
| 170 | + "engines": { | |
| 171 | + "node": ">=6.9.0" | |
| 172 | + } | |
| 173 | + }, | |
| 174 | + "node_modules/@babel/helper-validator-identifier": { | |
| 175 | + "version": "7.28.5", | |
| 176 | + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", | |
| 177 | + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", | |
| 178 | + "dev": true, | |
| 179 | + "license": "MIT", | |
| 180 | + "engines": { | |
| 181 | + "node": ">=6.9.0" | |
| 182 | + } | |
| 183 | + }, | |
| 184 | + "node_modules/@babel/helper-validator-option": { | |
| 185 | + "version": "7.27.1", | |
| 186 | + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", | |
| 187 | + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", | |
| 188 | + "dev": true, | |
| 189 | + "license": "MIT", | |
| 190 | + "engines": { | |
| 191 | + "node": ">=6.9.0" | |
| 192 | + } | |
| 193 | + }, | |
| 194 | + "node_modules/@babel/helpers": { | |
| 195 | + "version": "7.29.2", | |
| 196 | + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", | |
| 197 | + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", | |
| 198 | + "dev": true, | |
| 199 | + "license": "MIT", | |
| 200 | + "dependencies": { | |
| 201 | + "@babel/template": "^7.28.6", | |
| 202 | + "@babel/types": "^7.29.0" | |
| 203 | + }, | |
| 204 | + "engines": { | |
| 205 | + "node": ">=6.9.0" | |
| 206 | + } | |
| 207 | + }, | |
| 208 | + "node_modules/@babel/parser": { | |
| 209 | + "version": "7.29.2", | |
| 210 | + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", | |
| 211 | + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", | |
| 212 | + "dev": true, | |
| 213 | + "license": "MIT", | |
| 214 | + "dependencies": { | |
| 215 | + "@babel/types": "^7.29.0" | |
| 216 | + }, | |
| 217 | + "bin": { | |
| 218 | + "parser": "bin/babel-parser.js" | |
| 219 | + }, | |
| 220 | + "engines": { | |
| 221 | + "node": ">=6.0.0" | |
| 222 | + } | |
| 223 | + }, | |
| 224 | + "node_modules/@babel/template": { | |
| 225 | + "version": "7.28.6", | |
| 226 | + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", | |
| 227 | + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", | |
| 228 | + "dev": true, | |
| 229 | + "license": "MIT", | |
| 230 | + "dependencies": { | |
| 231 | + "@babel/code-frame": "^7.28.6", | |
| 232 | + "@babel/parser": "^7.28.6", | |
| 233 | + "@babel/types": "^7.28.6" | |
| 234 | + }, | |
| 235 | + "engines": { | |
| 236 | + "node": ">=6.9.0" | |
| 237 | + } | |
| 238 | + }, | |
| 239 | + "node_modules/@babel/traverse": { | |
| 240 | + "version": "7.29.0", | |
| 241 | + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", | |
| 242 | + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", | |
| 243 | + "dev": true, | |
| 244 | + "license": "MIT", | |
| 245 | + "dependencies": { | |
| 246 | + "@babel/code-frame": "^7.29.0", | |
| 247 | + "@babel/generator": "^7.29.0", | |
| 248 | + "@babel/helper-globals": "^7.28.0", | |
| 249 | + "@babel/parser": "^7.29.0", | |
| 250 | + "@babel/template": "^7.28.6", | |
| 251 | + "@babel/types": "^7.29.0", | |
| 252 | + "debug": "^4.3.1" | |
| 253 | + }, | |
| 254 | + "engines": { | |
| 255 | + "node": ">=6.9.0" | |
| 256 | + } | |
| 257 | + }, | |
| 258 | + "node_modules/@babel/types": { | |
| 259 | + "version": "7.29.0", | |
| 260 | + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", | |
| 261 | + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", | |
| 262 | + "dev": true, | |
| 263 | + "license": "MIT", | |
| 264 | + "dependencies": { | |
| 265 | + "@babel/helper-string-parser": "^7.27.1", | |
| 266 | + "@babel/helper-validator-identifier": "^7.28.5" | |
| 267 | + }, | |
| 268 | + "engines": { | |
| 269 | + "node": ">=6.9.0" | |
| 270 | + } | |
| 271 | + }, | |
| 272 | + "node_modules/@emnapi/core": { | |
| 273 | + "version": "1.9.2", | |
| 274 | + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.2.tgz", | |
| 275 | + "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==", | |
| 276 | + "dev": true, | |
| 277 | + "license": "MIT", | |
| 278 | + "optional": true, | |
| 279 | + "dependencies": { | |
| 280 | + "@emnapi/wasi-threads": "1.2.1", | |
| 281 | + "tslib": "^2.4.0" | |
| 282 | + } | |
| 283 | + }, | |
| 284 | + "node_modules/@emnapi/runtime": { | |
| 285 | + "version": "1.9.2", | |
| 286 | + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz", | |
| 287 | + "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==", | |
| 288 | + "dev": true, | |
| 289 | + "license": "MIT", | |
| 290 | + "optional": true, | |
| 291 | + "dependencies": { | |
| 292 | + "tslib": "^2.4.0" | |
| 293 | + } | |
| 294 | + }, | |
| 295 | + "node_modules/@emnapi/wasi-threads": { | |
| 296 | + "version": "1.2.1", | |
| 297 | + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", | |
| 298 | + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", | |
| 299 | + "dev": true, | |
| 300 | + "license": "MIT", | |
| 301 | + "optional": true, | |
| 302 | + "dependencies": { | |
| 303 | + "tslib": "^2.4.0" | |
| 304 | + } | |
| 305 | + }, | |
| 306 | + "node_modules/@eslint-community/eslint-utils": { | |
| 307 | + "version": "4.9.1", | |
| 308 | + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", | |
| 309 | + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", | |
| 310 | + "dev": true, | |
| 311 | + "license": "MIT", | |
| 312 | + "dependencies": { | |
| 313 | + "eslint-visitor-keys": "^3.4.3" | |
| 314 | + }, | |
| 315 | + "engines": { | |
| 316 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | |
| 317 | + }, | |
| 318 | + "funding": { | |
| 319 | + "url": "https://opencollective.com/eslint" | |
| 320 | + }, | |
| 321 | + "peerDependencies": { | |
| 322 | + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" | |
| 323 | + } | |
| 324 | + }, | |
| 325 | + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { | |
| 326 | + "version": "3.4.3", | |
| 327 | + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", | |
| 328 | + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", | |
| 329 | + "dev": true, | |
| 330 | + "license": "Apache-2.0", | |
| 331 | + "engines": { | |
| 332 | + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | |
| 333 | + }, | |
| 334 | + "funding": { | |
| 335 | + "url": "https://opencollective.com/eslint" | |
| 336 | + } | |
| 337 | + }, | |
| 338 | + "node_modules/@eslint-community/regexpp": { | |
| 339 | + "version": "4.12.2", | |
| 340 | + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", | |
| 341 | + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", | |
| 342 | + "dev": true, | |
| 343 | + "license": "MIT", | |
| 344 | + "engines": { | |
| 345 | + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" | |
| 346 | + } | |
| 347 | + }, | |
| 348 | + "node_modules/@eslint/config-array": { | |
| 349 | + "version": "0.21.2", | |
| 350 | + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", | |
| 351 | + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", | |
| 352 | + "dev": true, | |
| 353 | + "license": "Apache-2.0", | |
| 354 | + "dependencies": { | |
| 355 | + "@eslint/object-schema": "^2.1.7", | |
| 356 | + "debug": "^4.3.1", | |
| 357 | + "minimatch": "^3.1.5" | |
| 358 | + }, | |
| 359 | + "engines": { | |
| 360 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 361 | + } | |
| 362 | + }, | |
| 363 | + "node_modules/@eslint/config-helpers": { | |
| 364 | + "version": "0.4.2", | |
| 365 | + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", | |
| 366 | + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", | |
| 367 | + "dev": true, | |
| 368 | + "license": "Apache-2.0", | |
| 369 | + "dependencies": { | |
| 370 | + "@eslint/core": "^0.17.0" | |
| 371 | + }, | |
| 372 | + "engines": { | |
| 373 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 374 | + } | |
| 375 | + }, | |
| 376 | + "node_modules/@eslint/core": { | |
| 377 | + "version": "0.17.0", | |
| 378 | + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", | |
| 379 | + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", | |
| 380 | + "dev": true, | |
| 381 | + "license": "Apache-2.0", | |
| 382 | + "dependencies": { | |
| 383 | + "@types/json-schema": "^7.0.15" | |
| 384 | + }, | |
| 385 | + "engines": { | |
| 386 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 387 | + } | |
| 388 | + }, | |
| 389 | + "node_modules/@eslint/eslintrc": { | |
| 390 | + "version": "3.3.5", | |
| 391 | + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", | |
| 392 | + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", | |
| 393 | + "dev": true, | |
| 394 | + "license": "MIT", | |
| 395 | + "dependencies": { | |
| 396 | + "ajv": "^6.14.0", | |
| 397 | + "debug": "^4.3.2", | |
| 398 | + "espree": "^10.0.1", | |
| 399 | + "globals": "^14.0.0", | |
| 400 | + "ignore": "^5.2.0", | |
| 401 | + "import-fresh": "^3.2.1", | |
| 402 | + "js-yaml": "^4.1.1", | |
| 403 | + "minimatch": "^3.1.5", | |
| 404 | + "strip-json-comments": "^3.1.1" | |
| 405 | + }, | |
| 406 | + "engines": { | |
| 407 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 408 | + }, | |
| 409 | + "funding": { | |
| 410 | + "url": "https://opencollective.com/eslint" | |
| 411 | + } | |
| 412 | + }, | |
| 413 | + "node_modules/@eslint/eslintrc/node_modules/globals": { | |
| 414 | + "version": "14.0.0", | |
| 415 | + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", | |
| 416 | + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", | |
| 417 | + "dev": true, | |
| 418 | + "license": "MIT", | |
| 419 | + "engines": { | |
| 420 | + "node": ">=18" | |
| 421 | + }, | |
| 422 | + "funding": { | |
| 423 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 424 | + } | |
| 425 | + }, | |
| 426 | + "node_modules/@eslint/js": { | |
| 427 | + "version": "9.39.4", | |
| 428 | + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", | |
| 429 | + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", | |
| 430 | + "dev": true, | |
| 431 | + "license": "MIT", | |
| 432 | + "engines": { | |
| 433 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 434 | + }, | |
| 435 | + "funding": { | |
| 436 | + "url": "https://eslint.org/donate" | |
| 437 | + } | |
| 438 | + }, | |
| 439 | + "node_modules/@eslint/object-schema": { | |
| 440 | + "version": "2.1.7", | |
| 441 | + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", | |
| 442 | + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", | |
| 443 | + "dev": true, | |
| 444 | + "license": "Apache-2.0", | |
| 445 | + "engines": { | |
| 446 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 447 | + } | |
| 448 | + }, | |
| 449 | + "node_modules/@eslint/plugin-kit": { | |
| 450 | + "version": "0.4.1", | |
| 451 | + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", | |
| 452 | + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", | |
| 453 | + "dev": true, | |
| 454 | + "license": "Apache-2.0", | |
| 455 | + "dependencies": { | |
| 456 | + "@eslint/core": "^0.17.0", | |
| 457 | + "levn": "^0.4.1" | |
| 458 | + }, | |
| 459 | + "engines": { | |
| 460 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 461 | + } | |
| 462 | + }, | |
| 463 | + "node_modules/@humanfs/core": { | |
| 464 | + "version": "0.19.1", | |
| 465 | + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", | |
| 466 | + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", | |
| 467 | + "dev": true, | |
| 468 | + "license": "Apache-2.0", | |
| 469 | + "engines": { | |
| 470 | + "node": ">=18.18.0" | |
| 471 | + } | |
| 472 | + }, | |
| 473 | + "node_modules/@humanfs/node": { | |
| 474 | + "version": "0.16.7", | |
| 475 | + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", | |
| 476 | + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", | |
| 477 | + "dev": true, | |
| 478 | + "license": "Apache-2.0", | |
| 479 | + "dependencies": { | |
| 480 | + "@humanfs/core": "^0.19.1", | |
| 481 | + "@humanwhocodes/retry": "^0.4.0" | |
| 482 | + }, | |
| 483 | + "engines": { | |
| 484 | + "node": ">=18.18.0" | |
| 485 | + } | |
| 486 | + }, | |
| 487 | + "node_modules/@humanwhocodes/module-importer": { | |
| 488 | + "version": "1.0.1", | |
| 489 | + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", | |
| 490 | + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", | |
| 491 | + "dev": true, | |
| 492 | + "license": "Apache-2.0", | |
| 493 | + "engines": { | |
| 494 | + "node": ">=12.22" | |
| 495 | + }, | |
| 496 | + "funding": { | |
| 497 | + "type": "github", | |
| 498 | + "url": "https://github.com/sponsors/nzakas" | |
| 499 | + } | |
| 500 | + }, | |
| 501 | + "node_modules/@humanwhocodes/retry": { | |
| 502 | + "version": "0.4.3", | |
| 503 | + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", | |
| 504 | + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", | |
| 505 | + "dev": true, | |
| 506 | + "license": "Apache-2.0", | |
| 507 | + "engines": { | |
| 508 | + "node": ">=18.18" | |
| 509 | + }, | |
| 510 | + "funding": { | |
| 511 | + "type": "github", | |
| 512 | + "url": "https://github.com/sponsors/nzakas" | |
| 513 | + } | |
| 514 | + }, | |
| 515 | + "node_modules/@jridgewell/gen-mapping": { | |
| 516 | + "version": "0.3.13", | |
| 517 | + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", | |
| 518 | + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", | |
| 519 | + "dev": true, | |
| 520 | + "license": "MIT", | |
| 521 | + "dependencies": { | |
| 522 | + "@jridgewell/sourcemap-codec": "^1.5.0", | |
| 523 | + "@jridgewell/trace-mapping": "^0.3.24" | |
| 524 | + } | |
| 525 | + }, | |
| 526 | + "node_modules/@jridgewell/remapping": { | |
| 527 | + "version": "2.3.5", | |
| 528 | + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", | |
| 529 | + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", | |
| 530 | + "dev": true, | |
| 531 | + "license": "MIT", | |
| 532 | + "dependencies": { | |
| 533 | + "@jridgewell/gen-mapping": "^0.3.5", | |
| 534 | + "@jridgewell/trace-mapping": "^0.3.24" | |
| 535 | + } | |
| 536 | + }, | |
| 537 | + "node_modules/@jridgewell/resolve-uri": { | |
| 538 | + "version": "3.1.2", | |
| 539 | + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", | |
| 540 | + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", | |
| 541 | + "dev": true, | |
| 542 | + "license": "MIT", | |
| 543 | + "engines": { | |
| 544 | + "node": ">=6.0.0" | |
| 545 | + } | |
| 546 | + }, | |
| 547 | + "node_modules/@jridgewell/sourcemap-codec": { | |
| 548 | + "version": "1.5.5", | |
| 549 | + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", | |
| 550 | + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", | |
| 551 | + "dev": true, | |
| 552 | + "license": "MIT" | |
| 553 | + }, | |
| 554 | + "node_modules/@jridgewell/trace-mapping": { | |
| 555 | + "version": "0.3.31", | |
| 556 | + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", | |
| 557 | + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", | |
| 558 | + "dev": true, | |
| 559 | + "license": "MIT", | |
| 560 | + "dependencies": { | |
| 561 | + "@jridgewell/resolve-uri": "^3.1.0", | |
| 562 | + "@jridgewell/sourcemap-codec": "^1.4.14" | |
| 563 | + } | |
| 564 | + }, | |
| 565 | + "node_modules/@napi-rs/wasm-runtime": { | |
| 566 | + "version": "1.1.4", | |
| 567 | + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz", | |
| 568 | + "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==", | |
| 569 | + "dev": true, | |
| 570 | + "license": "MIT", | |
| 571 | + "optional": true, | |
| 572 | + "dependencies": { | |
| 573 | + "@tybys/wasm-util": "^0.10.1" | |
| 574 | + }, | |
| 575 | + "funding": { | |
| 576 | + "type": "github", | |
| 577 | + "url": "https://github.com/sponsors/Brooooooklyn" | |
| 578 | + }, | |
| 579 | + "peerDependencies": { | |
| 580 | + "@emnapi/core": "^1.7.1", | |
| 581 | + "@emnapi/runtime": "^1.7.1" | |
| 582 | + } | |
| 583 | + }, | |
| 584 | + "node_modules/@oxc-project/types": { | |
| 585 | + "version": "0.124.0", | |
| 586 | + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.124.0.tgz", | |
| 587 | + "integrity": "sha512-VBFWMTBvHxS11Z5Lvlr3IWgrwhMTXV+Md+EQF0Xf60+wAdsGFTBx7X7K/hP4pi8N7dcm1RvcHwDxZ16Qx8keUg==", | |
| 588 | + "dev": true, | |
| 589 | + "license": "MIT", | |
| 590 | + "funding": { | |
| 591 | + "url": "https://github.com/sponsors/Boshen" | |
| 592 | + } | |
| 593 | + }, | |
| 594 | + "node_modules/@rolldown/binding-android-arm64": { | |
| 595 | + "version": "1.0.0-rc.15", | |
| 596 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.15.tgz", | |
| 597 | + "integrity": "sha512-YYe6aWruPZDtHNpwu7+qAHEMbQ/yRl6atqb/AhznLTnD3UY99Q1jE7ihLSahNWkF4EqRPVC4SiR4O0UkLK02tA==", | |
| 598 | + "cpu": [ | |
| 599 | + "arm64" | |
| 600 | + ], | |
| 601 | + "dev": true, | |
| 602 | + "license": "MIT", | |
| 603 | + "optional": true, | |
| 604 | + "os": [ | |
| 605 | + "android" | |
| 606 | + ], | |
| 607 | + "engines": { | |
| 608 | + "node": "^20.19.0 || >=22.12.0" | |
| 609 | + } | |
| 610 | + }, | |
| 611 | + "node_modules/@rolldown/binding-darwin-arm64": { | |
| 612 | + "version": "1.0.0-rc.15", | |
| 613 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.15.tgz", | |
| 614 | + "integrity": "sha512-oArR/ig8wNTPYsXL+Mzhs0oxhxfuHRfG7Ikw7jXsw8mYOtk71W0OkF2VEVh699pdmzjPQsTjlD1JIOoHkLP1Fg==", | |
| 615 | + "cpu": [ | |
| 616 | + "arm64" | |
| 617 | + ], | |
| 618 | + "dev": true, | |
| 619 | + "license": "MIT", | |
| 620 | + "optional": true, | |
| 621 | + "os": [ | |
| 622 | + "darwin" | |
| 623 | + ], | |
| 624 | + "engines": { | |
| 625 | + "node": "^20.19.0 || >=22.12.0" | |
| 626 | + } | |
| 627 | + }, | |
| 628 | + "node_modules/@rolldown/binding-darwin-x64": { | |
| 629 | + "version": "1.0.0-rc.15", | |
| 630 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.15.tgz", | |
| 631 | + "integrity": "sha512-YzeVqOqjPYvUbJSWJ4EDL8ahbmsIXQpgL3JVipmN+MX0XnXMeWomLN3Fb+nwCmP/jfyqte5I3XRSm7OfQrbyxw==", | |
| 632 | + "cpu": [ | |
| 633 | + "x64" | |
| 634 | + ], | |
| 635 | + "dev": true, | |
| 636 | + "license": "MIT", | |
| 637 | + "optional": true, | |
| 638 | + "os": [ | |
| 639 | + "darwin" | |
| 640 | + ], | |
| 641 | + "engines": { | |
| 642 | + "node": "^20.19.0 || >=22.12.0" | |
| 643 | + } | |
| 644 | + }, | |
| 645 | + "node_modules/@rolldown/binding-freebsd-x64": { | |
| 646 | + "version": "1.0.0-rc.15", | |
| 647 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.15.tgz", | |
| 648 | + "integrity": "sha512-9Erhx956jeQ0nNTyif1+QWAXDRD38ZNjr//bSHrt6wDwB+QkAfl2q6Mn1k6OBPerznjRmbM10lgRb1Pli4xZPw==", | |
| 649 | + "cpu": [ | |
| 650 | + "x64" | |
| 651 | + ], | |
| 652 | + "dev": true, | |
| 653 | + "license": "MIT", | |
| 654 | + "optional": true, | |
| 655 | + "os": [ | |
| 656 | + "freebsd" | |
| 657 | + ], | |
| 658 | + "engines": { | |
| 659 | + "node": "^20.19.0 || >=22.12.0" | |
| 660 | + } | |
| 661 | + }, | |
| 662 | + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { | |
| 663 | + "version": "1.0.0-rc.15", | |
| 664 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.15.tgz", | |
| 665 | + "integrity": "sha512-cVwk0w8QbZJGTnP/AHQBs5yNwmpgGYStL88t4UIaqcvYJWBfS0s3oqVLZPwsPU6M0zlW4GqjP0Zq5MnAGwFeGA==", | |
| 666 | + "cpu": [ | |
| 667 | + "arm" | |
| 668 | + ], | |
| 669 | + "dev": true, | |
| 670 | + "license": "MIT", | |
| 671 | + "optional": true, | |
| 672 | + "os": [ | |
| 673 | + "linux" | |
| 674 | + ], | |
| 675 | + "engines": { | |
| 676 | + "node": "^20.19.0 || >=22.12.0" | |
| 677 | + } | |
| 678 | + }, | |
| 679 | + "node_modules/@rolldown/binding-linux-arm64-gnu": { | |
| 680 | + "version": "1.0.0-rc.15", | |
| 681 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.15.tgz", | |
| 682 | + "integrity": "sha512-eBZ/u8iAK9SoHGanqe/jrPnY0JvBN6iXbVOsbO38mbz+ZJsaobExAm1Iu+rxa4S1l2FjG0qEZn4Rc6X8n+9M+w==", | |
| 683 | + "cpu": [ | |
| 684 | + "arm64" | |
| 685 | + ], | |
| 686 | + "dev": true, | |
| 687 | + "libc": [ | |
| 688 | + "glibc" | |
| 689 | + ], | |
| 690 | + "license": "MIT", | |
| 691 | + "optional": true, | |
| 692 | + "os": [ | |
| 693 | + "linux" | |
| 694 | + ], | |
| 695 | + "engines": { | |
| 696 | + "node": "^20.19.0 || >=22.12.0" | |
| 697 | + } | |
| 698 | + }, | |
| 699 | + "node_modules/@rolldown/binding-linux-arm64-musl": { | |
| 700 | + "version": "1.0.0-rc.15", | |
| 701 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.15.tgz", | |
| 702 | + "integrity": "sha512-ZvRYMGrAklV9PEkgt4LQM6MjQX2P58HPAuecwYObY2DhS2t35R0I810bKi0wmaYORt6m/2Sm+Z+nFgb0WhXNcQ==", | |
| 703 | + "cpu": [ | |
| 704 | + "arm64" | |
| 705 | + ], | |
| 706 | + "dev": true, | |
| 707 | + "libc": [ | |
| 708 | + "musl" | |
| 709 | + ], | |
| 710 | + "license": "MIT", | |
| 711 | + "optional": true, | |
| 712 | + "os": [ | |
| 713 | + "linux" | |
| 714 | + ], | |
| 715 | + "engines": { | |
| 716 | + "node": "^20.19.0 || >=22.12.0" | |
| 717 | + } | |
| 718 | + }, | |
| 719 | + "node_modules/@rolldown/binding-linux-ppc64-gnu": { | |
| 720 | + "version": "1.0.0-rc.15", | |
| 721 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.15.tgz", | |
| 722 | + "integrity": "sha512-VDpgGBzgfg5hLg+uBpCLoFG5kVvEyafmfxGUV0UHLcL5irxAK7PKNeC2MwClgk6ZAiNhmo9FLhRYgvMmedLtnQ==", | |
| 723 | + "cpu": [ | |
| 724 | + "ppc64" | |
| 725 | + ], | |
| 726 | + "dev": true, | |
| 727 | + "libc": [ | |
| 728 | + "glibc" | |
| 729 | + ], | |
| 730 | + "license": "MIT", | |
| 731 | + "optional": true, | |
| 732 | + "os": [ | |
| 733 | + "linux" | |
| 734 | + ], | |
| 735 | + "engines": { | |
| 736 | + "node": "^20.19.0 || >=22.12.0" | |
| 737 | + } | |
| 738 | + }, | |
| 739 | + "node_modules/@rolldown/binding-linux-s390x-gnu": { | |
| 740 | + "version": "1.0.0-rc.15", | |
| 741 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.15.tgz", | |
| 742 | + "integrity": "sha512-y1uXY3qQWCzcPgRJATPSOUP4tCemh4uBdY7e3EZbVwCJTY3gLJWnQABgeUetvED+bt1FQ01OeZwvhLS2bpNrAQ==", | |
| 743 | + "cpu": [ | |
| 744 | + "s390x" | |
| 745 | + ], | |
| 746 | + "dev": true, | |
| 747 | + "libc": [ | |
| 748 | + "glibc" | |
| 749 | + ], | |
| 750 | + "license": "MIT", | |
| 751 | + "optional": true, | |
| 752 | + "os": [ | |
| 753 | + "linux" | |
| 754 | + ], | |
| 755 | + "engines": { | |
| 756 | + "node": "^20.19.0 || >=22.12.0" | |
| 757 | + } | |
| 758 | + }, | |
| 759 | + "node_modules/@rolldown/binding-linux-x64-gnu": { | |
| 760 | + "version": "1.0.0-rc.15", | |
| 761 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.15.tgz", | |
| 762 | + "integrity": "sha512-023bTPBod7J3Y/4fzAN6QtpkSABR0rigtrwaP+qSEabUh5zf6ELr9Nc7GujaROuPY3uwdSIXWrvhn1KxOvurWA==", | |
| 763 | + "cpu": [ | |
| 764 | + "x64" | |
| 765 | + ], | |
| 766 | + "dev": true, | |
| 767 | + "libc": [ | |
| 768 | + "glibc" | |
| 769 | + ], | |
| 770 | + "license": "MIT", | |
| 771 | + "optional": true, | |
| 772 | + "os": [ | |
| 773 | + "linux" | |
| 774 | + ], | |
| 775 | + "engines": { | |
| 776 | + "node": "^20.19.0 || >=22.12.0" | |
| 777 | + } | |
| 778 | + }, | |
| 779 | + "node_modules/@rolldown/binding-linux-x64-musl": { | |
| 780 | + "version": "1.0.0-rc.15", | |
| 781 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.15.tgz", | |
| 782 | + "integrity": "sha512-witB2O0/hU4CgfOOKUoeFgQ4GktPi1eEbAhaLAIpgD6+ZnhcPkUtPsoKKHRzmOoWPZue46IThdSgdo4XneOLYw==", | |
| 783 | + "cpu": [ | |
| 784 | + "x64" | |
| 785 | + ], | |
| 786 | + "dev": true, | |
| 787 | + "libc": [ | |
| 788 | + "musl" | |
| 789 | + ], | |
| 790 | + "license": "MIT", | |
| 791 | + "optional": true, | |
| 792 | + "os": [ | |
| 793 | + "linux" | |
| 794 | + ], | |
| 795 | + "engines": { | |
| 796 | + "node": "^20.19.0 || >=22.12.0" | |
| 797 | + } | |
| 798 | + }, | |
| 799 | + "node_modules/@rolldown/binding-openharmony-arm64": { | |
| 800 | + "version": "1.0.0-rc.15", | |
| 801 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.15.tgz", | |
| 802 | + "integrity": "sha512-UCL68NJ0Ud5zRipXZE9dF5PmirzJE4E4BCIOOssEnM7wLDsxjc6Qb0sGDxTNRTP53I6MZpygyCpY8Aa8sPfKPg==", | |
| 803 | + "cpu": [ | |
| 804 | + "arm64" | |
| 805 | + ], | |
| 806 | + "dev": true, | |
| 807 | + "license": "MIT", | |
| 808 | + "optional": true, | |
| 809 | + "os": [ | |
| 810 | + "openharmony" | |
| 811 | + ], | |
| 812 | + "engines": { | |
| 813 | + "node": "^20.19.0 || >=22.12.0" | |
| 814 | + } | |
| 815 | + }, | |
| 816 | + "node_modules/@rolldown/binding-wasm32-wasi": { | |
| 817 | + "version": "1.0.0-rc.15", | |
| 818 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.15.tgz", | |
| 819 | + "integrity": "sha512-ApLruZq/ig+nhaE7OJm4lDjayUnOHVUa77zGeqnqZ9pn0ovdVbbNPerVibLXDmWeUZXjIYIT8V3xkT58Rm9u5Q==", | |
| 820 | + "cpu": [ | |
| 821 | + "wasm32" | |
| 822 | + ], | |
| 823 | + "dev": true, | |
| 824 | + "license": "MIT", | |
| 825 | + "optional": true, | |
| 826 | + "dependencies": { | |
| 827 | + "@emnapi/core": "1.9.2", | |
| 828 | + "@emnapi/runtime": "1.9.2", | |
| 829 | + "@napi-rs/wasm-runtime": "^1.1.3" | |
| 830 | + }, | |
| 831 | + "engines": { | |
| 832 | + "node": ">=14.0.0" | |
| 833 | + } | |
| 834 | + }, | |
| 835 | + "node_modules/@rolldown/binding-win32-arm64-msvc": { | |
| 836 | + "version": "1.0.0-rc.15", | |
| 837 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.15.tgz", | |
| 838 | + "integrity": "sha512-KmoUoU7HnN+Si5YWJigfTws1jz1bKBYDQKdbLspz0UaqjjFkddHsqorgiW1mxcAj88lYUE6NC/zJNwT+SloqtA==", | |
| 839 | + "cpu": [ | |
| 840 | + "arm64" | |
| 841 | + ], | |
| 842 | + "dev": true, | |
| 843 | + "license": "MIT", | |
| 844 | + "optional": true, | |
| 845 | + "os": [ | |
| 846 | + "win32" | |
| 847 | + ], | |
| 848 | + "engines": { | |
| 849 | + "node": "^20.19.0 || >=22.12.0" | |
| 850 | + } | |
| 851 | + }, | |
| 852 | + "node_modules/@rolldown/binding-win32-x64-msvc": { | |
| 853 | + "version": "1.0.0-rc.15", | |
| 854 | + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.15.tgz", | |
| 855 | + "integrity": "sha512-3P2A8L+x75qavWLe/Dll3EYBJLQmtkJN8rfh+U/eR3MqMgL/h98PhYI+JFfXuDPgPeCB7iZAKiqii5vqOvnA0g==", | |
| 856 | + "cpu": [ | |
| 857 | + "x64" | |
| 858 | + ], | |
| 859 | + "dev": true, | |
| 860 | + "license": "MIT", | |
| 861 | + "optional": true, | |
| 862 | + "os": [ | |
| 863 | + "win32" | |
| 864 | + ], | |
| 865 | + "engines": { | |
| 866 | + "node": "^20.19.0 || >=22.12.0" | |
| 867 | + } | |
| 868 | + }, | |
| 869 | + "node_modules/@rolldown/pluginutils": { | |
| 870 | + "version": "1.0.0-rc.7", | |
| 871 | + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.7.tgz", | |
| 872 | + "integrity": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==", | |
| 873 | + "dev": true, | |
| 874 | + "license": "MIT" | |
| 875 | + }, | |
| 876 | + "node_modules/@tanstack/query-core": { | |
| 877 | + "version": "5.99.0", | |
| 878 | + "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.99.0.tgz", | |
| 879 | + "integrity": "sha512-3Jv3WQG0BCcH7G+7lf/bP8QyBfJOXeY+T08Rin3GZ1bshvwlbPt7NrDHMEzGdKIOmOzvIQmxjk28YEQX60k7pQ==", | |
| 880 | + "license": "MIT", | |
| 881 | + "funding": { | |
| 882 | + "type": "github", | |
| 883 | + "url": "https://github.com/sponsors/tannerlinsley" | |
| 884 | + } | |
| 885 | + }, | |
| 886 | + "node_modules/@tanstack/react-query": { | |
| 887 | + "version": "5.99.0", | |
| 888 | + "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.99.0.tgz", | |
| 889 | + "integrity": "sha512-OY2bCqPemT1LlqJ8Y2CUau4KELnIhhG9Ol3ZndPbdnB095pRbPo1cHuXTndg8iIwtoHTgwZjyaDnQ0xD0mYwAw==", | |
| 890 | + "license": "MIT", | |
| 891 | + "dependencies": { | |
| 892 | + "@tanstack/query-core": "5.99.0" | |
| 893 | + }, | |
| 894 | + "funding": { | |
| 895 | + "type": "github", | |
| 896 | + "url": "https://github.com/sponsors/tannerlinsley" | |
| 897 | + }, | |
| 898 | + "peerDependencies": { | |
| 899 | + "react": "^18 || ^19" | |
| 900 | + } | |
| 901 | + }, | |
| 902 | + "node_modules/@tybys/wasm-util": { | |
| 903 | + "version": "0.10.1", | |
| 904 | + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", | |
| 905 | + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", | |
| 906 | + "dev": true, | |
| 907 | + "license": "MIT", | |
| 908 | + "optional": true, | |
| 909 | + "dependencies": { | |
| 910 | + "tslib": "^2.4.0" | |
| 911 | + } | |
| 912 | + }, | |
| 913 | + "node_modules/@types/estree": { | |
| 914 | + "version": "1.0.8", | |
| 915 | + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", | |
| 916 | + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", | |
| 917 | + "dev": true, | |
| 918 | + "license": "MIT" | |
| 919 | + }, | |
| 920 | + "node_modules/@types/json-schema": { | |
| 921 | + "version": "7.0.15", | |
| 922 | + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", | |
| 923 | + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", | |
| 924 | + "dev": true, | |
| 925 | + "license": "MIT" | |
| 926 | + }, | |
| 927 | + "node_modules/@types/node": { | |
| 928 | + "version": "24.12.2", | |
| 929 | + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.2.tgz", | |
| 930 | + "integrity": "sha512-A1sre26ke7HDIuY/M23nd9gfB+nrmhtYyMINbjI1zHJxYteKR6qSMX56FsmjMcDb3SMcjJg5BiRRgOCC/yBD0g==", | |
| 931 | + "dev": true, | |
| 932 | + "license": "MIT", | |
| 933 | + "dependencies": { | |
| 934 | + "undici-types": "~7.16.0" | |
| 935 | + } | |
| 936 | + }, | |
| 937 | + "node_modules/@types/react": { | |
| 938 | + "version": "19.2.14", | |
| 939 | + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", | |
| 940 | + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", | |
| 941 | + "dev": true, | |
| 942 | + "license": "MIT", | |
| 943 | + "dependencies": { | |
| 944 | + "csstype": "^3.2.2" | |
| 945 | + } | |
| 946 | + }, | |
| 947 | + "node_modules/@types/react-dom": { | |
| 948 | + "version": "19.2.3", | |
| 949 | + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", | |
| 950 | + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", | |
| 951 | + "dev": true, | |
| 952 | + "license": "MIT", | |
| 953 | + "peerDependencies": { | |
| 954 | + "@types/react": "^19.2.0" | |
| 955 | + } | |
| 956 | + }, | |
| 957 | + "node_modules/@typescript-eslint/eslint-plugin": { | |
| 958 | + "version": "8.58.2", | |
| 959 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.2.tgz", | |
| 960 | + "integrity": "sha512-aC2qc5thQahutKjP+cl8cgN9DWe3ZUqVko30CMSZHnFEHyhOYoZSzkGtAI2mcwZ38xeImDucI4dnqsHiOYuuCw==", | |
| 961 | + "dev": true, | |
| 962 | + "license": "MIT", | |
| 963 | + "dependencies": { | |
| 964 | + "@eslint-community/regexpp": "^4.12.2", | |
| 965 | + "@typescript-eslint/scope-manager": "8.58.2", | |
| 966 | + "@typescript-eslint/type-utils": "8.58.2", | |
| 967 | + "@typescript-eslint/utils": "8.58.2", | |
| 968 | + "@typescript-eslint/visitor-keys": "8.58.2", | |
| 969 | + "ignore": "^7.0.5", | |
| 970 | + "natural-compare": "^1.4.0", | |
| 971 | + "ts-api-utils": "^2.5.0" | |
| 972 | + }, | |
| 973 | + "engines": { | |
| 974 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 975 | + }, | |
| 976 | + "funding": { | |
| 977 | + "type": "opencollective", | |
| 978 | + "url": "https://opencollective.com/typescript-eslint" | |
| 979 | + }, | |
| 980 | + "peerDependencies": { | |
| 981 | + "@typescript-eslint/parser": "^8.58.2", | |
| 982 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | |
| 983 | + "typescript": ">=4.8.4 <6.1.0" | |
| 984 | + } | |
| 985 | + }, | |
| 986 | + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { | |
| 987 | + "version": "7.0.5", | |
| 988 | + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", | |
| 989 | + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", | |
| 990 | + "dev": true, | |
| 991 | + "license": "MIT", | |
| 992 | + "engines": { | |
| 993 | + "node": ">= 4" | |
| 994 | + } | |
| 995 | + }, | |
| 996 | + "node_modules/@typescript-eslint/parser": { | |
| 997 | + "version": "8.58.2", | |
| 998 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.2.tgz", | |
| 999 | + "integrity": "sha512-/Zb/xaIDfxeJnvishjGdcR4jmr7S+bda8PKNhRGdljDM+elXhlvN0FyPSsMnLmJUrVG9aPO6dof80wjMawsASg==", | |
| 1000 | + "dev": true, | |
| 1001 | + "license": "MIT", | |
| 1002 | + "dependencies": { | |
| 1003 | + "@typescript-eslint/scope-manager": "8.58.2", | |
| 1004 | + "@typescript-eslint/types": "8.58.2", | |
| 1005 | + "@typescript-eslint/typescript-estree": "8.58.2", | |
| 1006 | + "@typescript-eslint/visitor-keys": "8.58.2", | |
| 1007 | + "debug": "^4.4.3" | |
| 1008 | + }, | |
| 1009 | + "engines": { | |
| 1010 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1011 | + }, | |
| 1012 | + "funding": { | |
| 1013 | + "type": "opencollective", | |
| 1014 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1015 | + }, | |
| 1016 | + "peerDependencies": { | |
| 1017 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | |
| 1018 | + "typescript": ">=4.8.4 <6.1.0" | |
| 1019 | + } | |
| 1020 | + }, | |
| 1021 | + "node_modules/@typescript-eslint/project-service": { | |
| 1022 | + "version": "8.58.2", | |
| 1023 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.2.tgz", | |
| 1024 | + "integrity": "sha512-Cq6UfpZZk15+r87BkIh5rDpi38W4b+Sjnb8wQCPPDDweS/LRCFjCyViEbzHk5Ck3f2QDfgmlxqSa7S7clDtlfg==", | |
| 1025 | + "dev": true, | |
| 1026 | + "license": "MIT", | |
| 1027 | + "dependencies": { | |
| 1028 | + "@typescript-eslint/tsconfig-utils": "^8.58.2", | |
| 1029 | + "@typescript-eslint/types": "^8.58.2", | |
| 1030 | + "debug": "^4.4.3" | |
| 1031 | + }, | |
| 1032 | + "engines": { | |
| 1033 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1034 | + }, | |
| 1035 | + "funding": { | |
| 1036 | + "type": "opencollective", | |
| 1037 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1038 | + }, | |
| 1039 | + "peerDependencies": { | |
| 1040 | + "typescript": ">=4.8.4 <6.1.0" | |
| 1041 | + } | |
| 1042 | + }, | |
| 1043 | + "node_modules/@typescript-eslint/scope-manager": { | |
| 1044 | + "version": "8.58.2", | |
| 1045 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.2.tgz", | |
| 1046 | + "integrity": "sha512-SgmyvDPexWETQek+qzZnrG6844IaO02UVyOLhI4wpo82dpZJY9+6YZCKAMFzXb7qhx37mFK1QcPQ18tud+vo6Q==", | |
| 1047 | + "dev": true, | |
| 1048 | + "license": "MIT", | |
| 1049 | + "dependencies": { | |
| 1050 | + "@typescript-eslint/types": "8.58.2", | |
| 1051 | + "@typescript-eslint/visitor-keys": "8.58.2" | |
| 1052 | + }, | |
| 1053 | + "engines": { | |
| 1054 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1055 | + }, | |
| 1056 | + "funding": { | |
| 1057 | + "type": "opencollective", | |
| 1058 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1059 | + } | |
| 1060 | + }, | |
| 1061 | + "node_modules/@typescript-eslint/tsconfig-utils": { | |
| 1062 | + "version": "8.58.2", | |
| 1063 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.2.tgz", | |
| 1064 | + "integrity": "sha512-3SR+RukipDvkkKp/d0jP0dyzuls3DbGmwDpVEc5wqk5f38KFThakqAAO0XMirWAE+kT00oTauTbzMFGPoAzB0A==", | |
| 1065 | + "dev": true, | |
| 1066 | + "license": "MIT", | |
| 1067 | + "engines": { | |
| 1068 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1069 | + }, | |
| 1070 | + "funding": { | |
| 1071 | + "type": "opencollective", | |
| 1072 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1073 | + }, | |
| 1074 | + "peerDependencies": { | |
| 1075 | + "typescript": ">=4.8.4 <6.1.0" | |
| 1076 | + } | |
| 1077 | + }, | |
| 1078 | + "node_modules/@typescript-eslint/type-utils": { | |
| 1079 | + "version": "8.58.2", | |
| 1080 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.2.tgz", | |
| 1081 | + "integrity": "sha512-Z7EloNR/B389FvabdGeTo2XMs4W9TjtPiO9DAsmT0yom0bwlPyRjkJ1uCdW1DvrrrYP50AJZ9Xc3sByZA9+dcg==", | |
| 1082 | + "dev": true, | |
| 1083 | + "license": "MIT", | |
| 1084 | + "dependencies": { | |
| 1085 | + "@typescript-eslint/types": "8.58.2", | |
| 1086 | + "@typescript-eslint/typescript-estree": "8.58.2", | |
| 1087 | + "@typescript-eslint/utils": "8.58.2", | |
| 1088 | + "debug": "^4.4.3", | |
| 1089 | + "ts-api-utils": "^2.5.0" | |
| 1090 | + }, | |
| 1091 | + "engines": { | |
| 1092 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1093 | + }, | |
| 1094 | + "funding": { | |
| 1095 | + "type": "opencollective", | |
| 1096 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1097 | + }, | |
| 1098 | + "peerDependencies": { | |
| 1099 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | |
| 1100 | + "typescript": ">=4.8.4 <6.1.0" | |
| 1101 | + } | |
| 1102 | + }, | |
| 1103 | + "node_modules/@typescript-eslint/types": { | |
| 1104 | + "version": "8.58.2", | |
| 1105 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.2.tgz", | |
| 1106 | + "integrity": "sha512-9TukXyATBQf/Jq9AMQXfvurk+G5R2MwfqQGDR2GzGz28HvY/lXNKGhkY+6IOubwcquikWk5cjlgPvD2uAA7htQ==", | |
| 1107 | + "dev": true, | |
| 1108 | + "license": "MIT", | |
| 1109 | + "engines": { | |
| 1110 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1111 | + }, | |
| 1112 | + "funding": { | |
| 1113 | + "type": "opencollective", | |
| 1114 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1115 | + } | |
| 1116 | + }, | |
| 1117 | + "node_modules/@typescript-eslint/typescript-estree": { | |
| 1118 | + "version": "8.58.2", | |
| 1119 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.2.tgz", | |
| 1120 | + "integrity": "sha512-ELGuoofuhhoCvNbQjFFiobFcGgcDCEm0ThWdmO4Z0UzLqPXS3KFvnEZ+SHewwOYHjM09tkzOWXNTv9u6Gqtyuw==", | |
| 1121 | + "dev": true, | |
| 1122 | + "license": "MIT", | |
| 1123 | + "dependencies": { | |
| 1124 | + "@typescript-eslint/project-service": "8.58.2", | |
| 1125 | + "@typescript-eslint/tsconfig-utils": "8.58.2", | |
| 1126 | + "@typescript-eslint/types": "8.58.2", | |
| 1127 | + "@typescript-eslint/visitor-keys": "8.58.2", | |
| 1128 | + "debug": "^4.4.3", | |
| 1129 | + "minimatch": "^10.2.2", | |
| 1130 | + "semver": "^7.7.3", | |
| 1131 | + "tinyglobby": "^0.2.15", | |
| 1132 | + "ts-api-utils": "^2.5.0" | |
| 1133 | + }, | |
| 1134 | + "engines": { | |
| 1135 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1136 | + }, | |
| 1137 | + "funding": { | |
| 1138 | + "type": "opencollective", | |
| 1139 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1140 | + }, | |
| 1141 | + "peerDependencies": { | |
| 1142 | + "typescript": ">=4.8.4 <6.1.0" | |
| 1143 | + } | |
| 1144 | + }, | |
| 1145 | + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { | |
| 1146 | + "version": "4.0.4", | |
| 1147 | + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", | |
| 1148 | + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", | |
| 1149 | + "dev": true, | |
| 1150 | + "license": "MIT", | |
| 1151 | + "engines": { | |
| 1152 | + "node": "18 || 20 || >=22" | |
| 1153 | + } | |
| 1154 | + }, | |
| 1155 | + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { | |
| 1156 | + "version": "5.0.5", | |
| 1157 | + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", | |
| 1158 | + "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==", | |
| 1159 | + "dev": true, | |
| 1160 | + "license": "MIT", | |
| 1161 | + "dependencies": { | |
| 1162 | + "balanced-match": "^4.0.2" | |
| 1163 | + }, | |
| 1164 | + "engines": { | |
| 1165 | + "node": "18 || 20 || >=22" | |
| 1166 | + } | |
| 1167 | + }, | |
| 1168 | + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { | |
| 1169 | + "version": "10.2.5", | |
| 1170 | + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", | |
| 1171 | + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", | |
| 1172 | + "dev": true, | |
| 1173 | + "license": "BlueOak-1.0.0", | |
| 1174 | + "dependencies": { | |
| 1175 | + "brace-expansion": "^5.0.5" | |
| 1176 | + }, | |
| 1177 | + "engines": { | |
| 1178 | + "node": "18 || 20 || >=22" | |
| 1179 | + }, | |
| 1180 | + "funding": { | |
| 1181 | + "url": "https://github.com/sponsors/isaacs" | |
| 1182 | + } | |
| 1183 | + }, | |
| 1184 | + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { | |
| 1185 | + "version": "7.7.4", | |
| 1186 | + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", | |
| 1187 | + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", | |
| 1188 | + "dev": true, | |
| 1189 | + "license": "ISC", | |
| 1190 | + "bin": { | |
| 1191 | + "semver": "bin/semver.js" | |
| 1192 | + }, | |
| 1193 | + "engines": { | |
| 1194 | + "node": ">=10" | |
| 1195 | + } | |
| 1196 | + }, | |
| 1197 | + "node_modules/@typescript-eslint/utils": { | |
| 1198 | + "version": "8.58.2", | |
| 1199 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.2.tgz", | |
| 1200 | + "integrity": "sha512-QZfjHNEzPY8+l0+fIXMvuQ2sJlplB4zgDZvA+NmvZsZv3EQwOcc1DuIU1VJUTWZ/RKouBMhDyNaBMx4sWvrzRA==", | |
| 1201 | + "dev": true, | |
| 1202 | + "license": "MIT", | |
| 1203 | + "dependencies": { | |
| 1204 | + "@eslint-community/eslint-utils": "^4.9.1", | |
| 1205 | + "@typescript-eslint/scope-manager": "8.58.2", | |
| 1206 | + "@typescript-eslint/types": "8.58.2", | |
| 1207 | + "@typescript-eslint/typescript-estree": "8.58.2" | |
| 1208 | + }, | |
| 1209 | + "engines": { | |
| 1210 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1211 | + }, | |
| 1212 | + "funding": { | |
| 1213 | + "type": "opencollective", | |
| 1214 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1215 | + }, | |
| 1216 | + "peerDependencies": { | |
| 1217 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | |
| 1218 | + "typescript": ">=4.8.4 <6.1.0" | |
| 1219 | + } | |
| 1220 | + }, | |
| 1221 | + "node_modules/@typescript-eslint/visitor-keys": { | |
| 1222 | + "version": "8.58.2", | |
| 1223 | + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.2.tgz", | |
| 1224 | + "integrity": "sha512-f1WO2Lx8a9t8DARmcWAUPJbu0G20bJlj8L4z72K00TMeJAoyLr/tHhI/pzYBLrR4dXWkcxO1cWYZEOX8DKHTqA==", | |
| 1225 | + "dev": true, | |
| 1226 | + "license": "MIT", | |
| 1227 | + "dependencies": { | |
| 1228 | + "@typescript-eslint/types": "8.58.2", | |
| 1229 | + "eslint-visitor-keys": "^5.0.0" | |
| 1230 | + }, | |
| 1231 | + "engines": { | |
| 1232 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1233 | + }, | |
| 1234 | + "funding": { | |
| 1235 | + "type": "opencollective", | |
| 1236 | + "url": "https://opencollective.com/typescript-eslint" | |
| 1237 | + } | |
| 1238 | + }, | |
| 1239 | + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { | |
| 1240 | + "version": "5.0.1", | |
| 1241 | + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", | |
| 1242 | + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", | |
| 1243 | + "dev": true, | |
| 1244 | + "license": "Apache-2.0", | |
| 1245 | + "engines": { | |
| 1246 | + "node": "^20.19.0 || ^22.13.0 || >=24" | |
| 1247 | + }, | |
| 1248 | + "funding": { | |
| 1249 | + "url": "https://opencollective.com/eslint" | |
| 1250 | + } | |
| 1251 | + }, | |
| 1252 | + "node_modules/@vitejs/plugin-react": { | |
| 1253 | + "version": "6.0.1", | |
| 1254 | + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.1.tgz", | |
| 1255 | + "integrity": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==", | |
| 1256 | + "dev": true, | |
| 1257 | + "license": "MIT", | |
| 1258 | + "dependencies": { | |
| 1259 | + "@rolldown/pluginutils": "1.0.0-rc.7" | |
| 1260 | + }, | |
| 1261 | + "engines": { | |
| 1262 | + "node": "^20.19.0 || >=22.12.0" | |
| 1263 | + }, | |
| 1264 | + "peerDependencies": { | |
| 1265 | + "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0", | |
| 1266 | + "babel-plugin-react-compiler": "^1.0.0", | |
| 1267 | + "vite": "^8.0.0" | |
| 1268 | + }, | |
| 1269 | + "peerDependenciesMeta": { | |
| 1270 | + "@rolldown/plugin-babel": { | |
| 1271 | + "optional": true | |
| 1272 | + }, | |
| 1273 | + "babel-plugin-react-compiler": { | |
| 1274 | + "optional": true | |
| 1275 | + } | |
| 1276 | + } | |
| 1277 | + }, | |
| 1278 | + "node_modules/acorn": { | |
| 1279 | + "version": "8.16.0", | |
| 1280 | + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", | |
| 1281 | + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", | |
| 1282 | + "dev": true, | |
| 1283 | + "license": "MIT", | |
| 1284 | + "bin": { | |
| 1285 | + "acorn": "bin/acorn" | |
| 1286 | + }, | |
| 1287 | + "engines": { | |
| 1288 | + "node": ">=0.4.0" | |
| 1289 | + } | |
| 1290 | + }, | |
| 1291 | + "node_modules/acorn-jsx": { | |
| 1292 | + "version": "5.3.2", | |
| 1293 | + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", | |
| 1294 | + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", | |
| 1295 | + "dev": true, | |
| 1296 | + "license": "MIT", | |
| 1297 | + "peerDependencies": { | |
| 1298 | + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" | |
| 1299 | + } | |
| 1300 | + }, | |
| 1301 | + "node_modules/ajv": { | |
| 1302 | + "version": "6.14.0", | |
| 1303 | + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", | |
| 1304 | + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", | |
| 1305 | + "dev": true, | |
| 1306 | + "license": "MIT", | |
| 1307 | + "dependencies": { | |
| 1308 | + "fast-deep-equal": "^3.1.1", | |
| 1309 | + "fast-json-stable-stringify": "^2.0.0", | |
| 1310 | + "json-schema-traverse": "^0.4.1", | |
| 1311 | + "uri-js": "^4.2.2" | |
| 1312 | + }, | |
| 1313 | + "funding": { | |
| 1314 | + "type": "github", | |
| 1315 | + "url": "https://github.com/sponsors/epoberezkin" | |
| 1316 | + } | |
| 1317 | + }, | |
| 1318 | + "node_modules/ansi-styles": { | |
| 1319 | + "version": "4.3.0", | |
| 1320 | + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | |
| 1321 | + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | |
| 1322 | + "dev": true, | |
| 1323 | + "license": "MIT", | |
| 1324 | + "dependencies": { | |
| 1325 | + "color-convert": "^2.0.1" | |
| 1326 | + }, | |
| 1327 | + "engines": { | |
| 1328 | + "node": ">=8" | |
| 1329 | + }, | |
| 1330 | + "funding": { | |
| 1331 | + "url": "https://github.com/chalk/ansi-styles?sponsor=1" | |
| 1332 | + } | |
| 1333 | + }, | |
| 1334 | + "node_modules/argparse": { | |
| 1335 | + "version": "2.0.1", | |
| 1336 | + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", | |
| 1337 | + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", | |
| 1338 | + "dev": true, | |
| 1339 | + "license": "Python-2.0" | |
| 1340 | + }, | |
| 1341 | + "node_modules/balanced-match": { | |
| 1342 | + "version": "1.0.2", | |
| 1343 | + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", | |
| 1344 | + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", | |
| 1345 | + "dev": true, | |
| 1346 | + "license": "MIT" | |
| 1347 | + }, | |
| 1348 | + "node_modules/baseline-browser-mapping": { | |
| 1349 | + "version": "2.10.19", | |
| 1350 | + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.19.tgz", | |
| 1351 | + "integrity": "sha512-qCkNLi2sfBOn8XhZQ0FXsT1Ki/Yo5P90hrkRamVFRS7/KV9hpfA4HkoWNU152+8w0zPjnxo5psx5NL3PSGgv5g==", | |
| 1352 | + "dev": true, | |
| 1353 | + "license": "Apache-2.0", | |
| 1354 | + "bin": { | |
| 1355 | + "baseline-browser-mapping": "dist/cli.cjs" | |
| 1356 | + }, | |
| 1357 | + "engines": { | |
| 1358 | + "node": ">=6.0.0" | |
| 1359 | + } | |
| 1360 | + }, | |
| 1361 | + "node_modules/brace-expansion": { | |
| 1362 | + "version": "1.1.14", | |
| 1363 | + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", | |
| 1364 | + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", | |
| 1365 | + "dev": true, | |
| 1366 | + "license": "MIT", | |
| 1367 | + "dependencies": { | |
| 1368 | + "balanced-match": "^1.0.0", | |
| 1369 | + "concat-map": "0.0.1" | |
| 1370 | + } | |
| 1371 | + }, | |
| 1372 | + "node_modules/browserslist": { | |
| 1373 | + "version": "4.28.2", | |
| 1374 | + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", | |
| 1375 | + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", | |
| 1376 | + "dev": true, | |
| 1377 | + "funding": [ | |
| 1378 | + { | |
| 1379 | + "type": "opencollective", | |
| 1380 | + "url": "https://opencollective.com/browserslist" | |
| 1381 | + }, | |
| 1382 | + { | |
| 1383 | + "type": "tidelift", | |
| 1384 | + "url": "https://tidelift.com/funding/github/npm/browserslist" | |
| 1385 | + }, | |
| 1386 | + { | |
| 1387 | + "type": "github", | |
| 1388 | + "url": "https://github.com/sponsors/ai" | |
| 1389 | + } | |
| 1390 | + ], | |
| 1391 | + "license": "MIT", | |
| 1392 | + "dependencies": { | |
| 1393 | + "baseline-browser-mapping": "^2.10.12", | |
| 1394 | + "caniuse-lite": "^1.0.30001782", | |
| 1395 | + "electron-to-chromium": "^1.5.328", | |
| 1396 | + "node-releases": "^2.0.36", | |
| 1397 | + "update-browserslist-db": "^1.2.3" | |
| 1398 | + }, | |
| 1399 | + "bin": { | |
| 1400 | + "browserslist": "cli.js" | |
| 1401 | + }, | |
| 1402 | + "engines": { | |
| 1403 | + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" | |
| 1404 | + } | |
| 1405 | + }, | |
| 1406 | + "node_modules/callsites": { | |
| 1407 | + "version": "3.1.0", | |
| 1408 | + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", | |
| 1409 | + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", | |
| 1410 | + "dev": true, | |
| 1411 | + "license": "MIT", | |
| 1412 | + "engines": { | |
| 1413 | + "node": ">=6" | |
| 1414 | + } | |
| 1415 | + }, | |
| 1416 | + "node_modules/caniuse-lite": { | |
| 1417 | + "version": "1.0.30001788", | |
| 1418 | + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001788.tgz", | |
| 1419 | + "integrity": "sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==", | |
| 1420 | + "dev": true, | |
| 1421 | + "funding": [ | |
| 1422 | + { | |
| 1423 | + "type": "opencollective", | |
| 1424 | + "url": "https://opencollective.com/browserslist" | |
| 1425 | + }, | |
| 1426 | + { | |
| 1427 | + "type": "tidelift", | |
| 1428 | + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" | |
| 1429 | + }, | |
| 1430 | + { | |
| 1431 | + "type": "github", | |
| 1432 | + "url": "https://github.com/sponsors/ai" | |
| 1433 | + } | |
| 1434 | + ], | |
| 1435 | + "license": "CC-BY-4.0" | |
| 1436 | + }, | |
| 1437 | + "node_modules/chalk": { | |
| 1438 | + "version": "4.1.2", | |
| 1439 | + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | |
| 1440 | + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | |
| 1441 | + "dev": true, | |
| 1442 | + "license": "MIT", | |
| 1443 | + "dependencies": { | |
| 1444 | + "ansi-styles": "^4.1.0", | |
| 1445 | + "supports-color": "^7.1.0" | |
| 1446 | + }, | |
| 1447 | + "engines": { | |
| 1448 | + "node": ">=10" | |
| 1449 | + }, | |
| 1450 | + "funding": { | |
| 1451 | + "url": "https://github.com/chalk/chalk?sponsor=1" | |
| 1452 | + } | |
| 1453 | + }, | |
| 1454 | + "node_modules/clsx": { | |
| 1455 | + "version": "2.1.1", | |
| 1456 | + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", | |
| 1457 | + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", | |
| 1458 | + "license": "MIT", | |
| 1459 | + "engines": { | |
| 1460 | + "node": ">=6" | |
| 1461 | + } | |
| 1462 | + }, | |
| 1463 | + "node_modules/color-convert": { | |
| 1464 | + "version": "2.0.1", | |
| 1465 | + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | |
| 1466 | + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | |
| 1467 | + "dev": true, | |
| 1468 | + "license": "MIT", | |
| 1469 | + "dependencies": { | |
| 1470 | + "color-name": "~1.1.4" | |
| 1471 | + }, | |
| 1472 | + "engines": { | |
| 1473 | + "node": ">=7.0.0" | |
| 1474 | + } | |
| 1475 | + }, | |
| 1476 | + "node_modules/color-name": { | |
| 1477 | + "version": "1.1.4", | |
| 1478 | + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | |
| 1479 | + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", | |
| 1480 | + "dev": true, | |
| 1481 | + "license": "MIT" | |
| 1482 | + }, | |
| 1483 | + "node_modules/concat-map": { | |
| 1484 | + "version": "0.0.1", | |
| 1485 | + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", | |
| 1486 | + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", | |
| 1487 | + "dev": true, | |
| 1488 | + "license": "MIT" | |
| 1489 | + }, | |
| 1490 | + "node_modules/convert-source-map": { | |
| 1491 | + "version": "2.0.0", | |
| 1492 | + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", | |
| 1493 | + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", | |
| 1494 | + "dev": true, | |
| 1495 | + "license": "MIT" | |
| 1496 | + }, | |
| 1497 | + "node_modules/cookie": { | |
| 1498 | + "version": "1.1.1", | |
| 1499 | + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", | |
| 1500 | + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", | |
| 1501 | + "license": "MIT", | |
| 1502 | + "engines": { | |
| 1503 | + "node": ">=18" | |
| 1504 | + }, | |
| 1505 | + "funding": { | |
| 1506 | + "type": "opencollective", | |
| 1507 | + "url": "https://opencollective.com/express" | |
| 1508 | + } | |
| 1509 | + }, | |
| 1510 | + "node_modules/cross-spawn": { | |
| 1511 | + "version": "7.0.6", | |
| 1512 | + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", | |
| 1513 | + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", | |
| 1514 | + "dev": true, | |
| 1515 | + "license": "MIT", | |
| 1516 | + "dependencies": { | |
| 1517 | + "path-key": "^3.1.0", | |
| 1518 | + "shebang-command": "^2.0.0", | |
| 1519 | + "which": "^2.0.1" | |
| 1520 | + }, | |
| 1521 | + "engines": { | |
| 1522 | + "node": ">= 8" | |
| 1523 | + } | |
| 1524 | + }, | |
| 1525 | + "node_modules/csstype": { | |
| 1526 | + "version": "3.2.3", | |
| 1527 | + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", | |
| 1528 | + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", | |
| 1529 | + "dev": true, | |
| 1530 | + "license": "MIT" | |
| 1531 | + }, | |
| 1532 | + "node_modules/debug": { | |
| 1533 | + "version": "4.4.3", | |
| 1534 | + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", | |
| 1535 | + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", | |
| 1536 | + "dev": true, | |
| 1537 | + "license": "MIT", | |
| 1538 | + "dependencies": { | |
| 1539 | + "ms": "^2.1.3" | |
| 1540 | + }, | |
| 1541 | + "engines": { | |
| 1542 | + "node": ">=6.0" | |
| 1543 | + }, | |
| 1544 | + "peerDependenciesMeta": { | |
| 1545 | + "supports-color": { | |
| 1546 | + "optional": true | |
| 1547 | + } | |
| 1548 | + } | |
| 1549 | + }, | |
| 1550 | + "node_modules/deep-is": { | |
| 1551 | + "version": "0.1.4", | |
| 1552 | + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", | |
| 1553 | + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", | |
| 1554 | + "dev": true, | |
| 1555 | + "license": "MIT" | |
| 1556 | + }, | |
| 1557 | + "node_modules/detect-libc": { | |
| 1558 | + "version": "2.1.2", | |
| 1559 | + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", | |
| 1560 | + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", | |
| 1561 | + "dev": true, | |
| 1562 | + "license": "Apache-2.0", | |
| 1563 | + "engines": { | |
| 1564 | + "node": ">=8" | |
| 1565 | + } | |
| 1566 | + }, | |
| 1567 | + "node_modules/electron-to-chromium": { | |
| 1568 | + "version": "1.5.338", | |
| 1569 | + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.338.tgz", | |
| 1570 | + "integrity": "sha512-KVQQ3xko9/coDX3qXLUEEbqkKT8L+1DyAovrtu0Khtrt9wjSZ+7CZV4GVzxFy9Oe1NbrIU1oVXCwHJruIA1PNg==", | |
| 1571 | + "dev": true, | |
| 1572 | + "license": "ISC" | |
| 1573 | + }, | |
| 1574 | + "node_modules/escalade": { | |
| 1575 | + "version": "3.2.0", | |
| 1576 | + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", | |
| 1577 | + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", | |
| 1578 | + "dev": true, | |
| 1579 | + "license": "MIT", | |
| 1580 | + "engines": { | |
| 1581 | + "node": ">=6" | |
| 1582 | + } | |
| 1583 | + }, | |
| 1584 | + "node_modules/escape-string-regexp": { | |
| 1585 | + "version": "4.0.0", | |
| 1586 | + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", | |
| 1587 | + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", | |
| 1588 | + "dev": true, | |
| 1589 | + "license": "MIT", | |
| 1590 | + "engines": { | |
| 1591 | + "node": ">=10" | |
| 1592 | + }, | |
| 1593 | + "funding": { | |
| 1594 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 1595 | + } | |
| 1596 | + }, | |
| 1597 | + "node_modules/eslint": { | |
| 1598 | + "version": "9.39.4", | |
| 1599 | + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", | |
| 1600 | + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", | |
| 1601 | + "dev": true, | |
| 1602 | + "license": "MIT", | |
| 1603 | + "dependencies": { | |
| 1604 | + "@eslint-community/eslint-utils": "^4.8.0", | |
| 1605 | + "@eslint-community/regexpp": "^4.12.1", | |
| 1606 | + "@eslint/config-array": "^0.21.2", | |
| 1607 | + "@eslint/config-helpers": "^0.4.2", | |
| 1608 | + "@eslint/core": "^0.17.0", | |
| 1609 | + "@eslint/eslintrc": "^3.3.5", | |
| 1610 | + "@eslint/js": "9.39.4", | |
| 1611 | + "@eslint/plugin-kit": "^0.4.1", | |
| 1612 | + "@humanfs/node": "^0.16.6", | |
| 1613 | + "@humanwhocodes/module-importer": "^1.0.1", | |
| 1614 | + "@humanwhocodes/retry": "^0.4.2", | |
| 1615 | + "@types/estree": "^1.0.6", | |
| 1616 | + "ajv": "^6.14.0", | |
| 1617 | + "chalk": "^4.0.0", | |
| 1618 | + "cross-spawn": "^7.0.6", | |
| 1619 | + "debug": "^4.3.2", | |
| 1620 | + "escape-string-regexp": "^4.0.0", | |
| 1621 | + "eslint-scope": "^8.4.0", | |
| 1622 | + "eslint-visitor-keys": "^4.2.1", | |
| 1623 | + "espree": "^10.4.0", | |
| 1624 | + "esquery": "^1.5.0", | |
| 1625 | + "esutils": "^2.0.2", | |
| 1626 | + "fast-deep-equal": "^3.1.3", | |
| 1627 | + "file-entry-cache": "^8.0.0", | |
| 1628 | + "find-up": "^5.0.0", | |
| 1629 | + "glob-parent": "^6.0.2", | |
| 1630 | + "ignore": "^5.2.0", | |
| 1631 | + "imurmurhash": "^0.1.4", | |
| 1632 | + "is-glob": "^4.0.0", | |
| 1633 | + "json-stable-stringify-without-jsonify": "^1.0.1", | |
| 1634 | + "lodash.merge": "^4.6.2", | |
| 1635 | + "minimatch": "^3.1.5", | |
| 1636 | + "natural-compare": "^1.4.0", | |
| 1637 | + "optionator": "^0.9.3" | |
| 1638 | + }, | |
| 1639 | + "bin": { | |
| 1640 | + "eslint": "bin/eslint.js" | |
| 1641 | + }, | |
| 1642 | + "engines": { | |
| 1643 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1644 | + }, | |
| 1645 | + "funding": { | |
| 1646 | + "url": "https://eslint.org/donate" | |
| 1647 | + }, | |
| 1648 | + "peerDependencies": { | |
| 1649 | + "jiti": "*" | |
| 1650 | + }, | |
| 1651 | + "peerDependenciesMeta": { | |
| 1652 | + "jiti": { | |
| 1653 | + "optional": true | |
| 1654 | + } | |
| 1655 | + } | |
| 1656 | + }, | |
| 1657 | + "node_modules/eslint-plugin-react-hooks": { | |
| 1658 | + "version": "7.0.1", | |
| 1659 | + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", | |
| 1660 | + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", | |
| 1661 | + "dev": true, | |
| 1662 | + "license": "MIT", | |
| 1663 | + "dependencies": { | |
| 1664 | + "@babel/core": "^7.24.4", | |
| 1665 | + "@babel/parser": "^7.24.4", | |
| 1666 | + "hermes-parser": "^0.25.1", | |
| 1667 | + "zod": "^3.25.0 || ^4.0.0", | |
| 1668 | + "zod-validation-error": "^3.5.0 || ^4.0.0" | |
| 1669 | + }, | |
| 1670 | + "engines": { | |
| 1671 | + "node": ">=18" | |
| 1672 | + }, | |
| 1673 | + "peerDependencies": { | |
| 1674 | + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" | |
| 1675 | + } | |
| 1676 | + }, | |
| 1677 | + "node_modules/eslint-plugin-react-refresh": { | |
| 1678 | + "version": "0.5.2", | |
| 1679 | + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz", | |
| 1680 | + "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==", | |
| 1681 | + "dev": true, | |
| 1682 | + "license": "MIT", | |
| 1683 | + "peerDependencies": { | |
| 1684 | + "eslint": "^9 || ^10" | |
| 1685 | + } | |
| 1686 | + }, | |
| 1687 | + "node_modules/eslint-scope": { | |
| 1688 | + "version": "8.4.0", | |
| 1689 | + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", | |
| 1690 | + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", | |
| 1691 | + "dev": true, | |
| 1692 | + "license": "BSD-2-Clause", | |
| 1693 | + "dependencies": { | |
| 1694 | + "esrecurse": "^4.3.0", | |
| 1695 | + "estraverse": "^5.2.0" | |
| 1696 | + }, | |
| 1697 | + "engines": { | |
| 1698 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1699 | + }, | |
| 1700 | + "funding": { | |
| 1701 | + "url": "https://opencollective.com/eslint" | |
| 1702 | + } | |
| 1703 | + }, | |
| 1704 | + "node_modules/eslint-visitor-keys": { | |
| 1705 | + "version": "4.2.1", | |
| 1706 | + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", | |
| 1707 | + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", | |
| 1708 | + "dev": true, | |
| 1709 | + "license": "Apache-2.0", | |
| 1710 | + "engines": { | |
| 1711 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1712 | + }, | |
| 1713 | + "funding": { | |
| 1714 | + "url": "https://opencollective.com/eslint" | |
| 1715 | + } | |
| 1716 | + }, | |
| 1717 | + "node_modules/espree": { | |
| 1718 | + "version": "10.4.0", | |
| 1719 | + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", | |
| 1720 | + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", | |
| 1721 | + "dev": true, | |
| 1722 | + "license": "BSD-2-Clause", | |
| 1723 | + "dependencies": { | |
| 1724 | + "acorn": "^8.15.0", | |
| 1725 | + "acorn-jsx": "^5.3.2", | |
| 1726 | + "eslint-visitor-keys": "^4.2.1" | |
| 1727 | + }, | |
| 1728 | + "engines": { | |
| 1729 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 1730 | + }, | |
| 1731 | + "funding": { | |
| 1732 | + "url": "https://opencollective.com/eslint" | |
| 1733 | + } | |
| 1734 | + }, | |
| 1735 | + "node_modules/esquery": { | |
| 1736 | + "version": "1.7.0", | |
| 1737 | + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", | |
| 1738 | + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", | |
| 1739 | + "dev": true, | |
| 1740 | + "license": "BSD-3-Clause", | |
| 1741 | + "dependencies": { | |
| 1742 | + "estraverse": "^5.1.0" | |
| 1743 | + }, | |
| 1744 | + "engines": { | |
| 1745 | + "node": ">=0.10" | |
| 1746 | + } | |
| 1747 | + }, | |
| 1748 | + "node_modules/esrecurse": { | |
| 1749 | + "version": "4.3.0", | |
| 1750 | + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", | |
| 1751 | + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", | |
| 1752 | + "dev": true, | |
| 1753 | + "license": "BSD-2-Clause", | |
| 1754 | + "dependencies": { | |
| 1755 | + "estraverse": "^5.2.0" | |
| 1756 | + }, | |
| 1757 | + "engines": { | |
| 1758 | + "node": ">=4.0" | |
| 1759 | + } | |
| 1760 | + }, | |
| 1761 | + "node_modules/estraverse": { | |
| 1762 | + "version": "5.3.0", | |
| 1763 | + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", | |
| 1764 | + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", | |
| 1765 | + "dev": true, | |
| 1766 | + "license": "BSD-2-Clause", | |
| 1767 | + "engines": { | |
| 1768 | + "node": ">=4.0" | |
| 1769 | + } | |
| 1770 | + }, | |
| 1771 | + "node_modules/esutils": { | |
| 1772 | + "version": "2.0.3", | |
| 1773 | + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", | |
| 1774 | + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", | |
| 1775 | + "dev": true, | |
| 1776 | + "license": "BSD-2-Clause", | |
| 1777 | + "engines": { | |
| 1778 | + "node": ">=0.10.0" | |
| 1779 | + } | |
| 1780 | + }, | |
| 1781 | + "node_modules/fast-deep-equal": { | |
| 1782 | + "version": "3.1.3", | |
| 1783 | + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", | |
| 1784 | + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", | |
| 1785 | + "dev": true, | |
| 1786 | + "license": "MIT" | |
| 1787 | + }, | |
| 1788 | + "node_modules/fast-json-stable-stringify": { | |
| 1789 | + "version": "2.1.0", | |
| 1790 | + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", | |
| 1791 | + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", | |
| 1792 | + "dev": true, | |
| 1793 | + "license": "MIT" | |
| 1794 | + }, | |
| 1795 | + "node_modules/fast-levenshtein": { | |
| 1796 | + "version": "2.0.6", | |
| 1797 | + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", | |
| 1798 | + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", | |
| 1799 | + "dev": true, | |
| 1800 | + "license": "MIT" | |
| 1801 | + }, | |
| 1802 | + "node_modules/fdir": { | |
| 1803 | + "version": "6.5.0", | |
| 1804 | + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", | |
| 1805 | + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", | |
| 1806 | + "dev": true, | |
| 1807 | + "license": "MIT", | |
| 1808 | + "engines": { | |
| 1809 | + "node": ">=12.0.0" | |
| 1810 | + }, | |
| 1811 | + "peerDependencies": { | |
| 1812 | + "picomatch": "^3 || ^4" | |
| 1813 | + }, | |
| 1814 | + "peerDependenciesMeta": { | |
| 1815 | + "picomatch": { | |
| 1816 | + "optional": true | |
| 1817 | + } | |
| 1818 | + } | |
| 1819 | + }, | |
| 1820 | + "node_modules/file-entry-cache": { | |
| 1821 | + "version": "8.0.0", | |
| 1822 | + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", | |
| 1823 | + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", | |
| 1824 | + "dev": true, | |
| 1825 | + "license": "MIT", | |
| 1826 | + "dependencies": { | |
| 1827 | + "flat-cache": "^4.0.0" | |
| 1828 | + }, | |
| 1829 | + "engines": { | |
| 1830 | + "node": ">=16.0.0" | |
| 1831 | + } | |
| 1832 | + }, | |
| 1833 | + "node_modules/find-up": { | |
| 1834 | + "version": "5.0.0", | |
| 1835 | + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", | |
| 1836 | + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", | |
| 1837 | + "dev": true, | |
| 1838 | + "license": "MIT", | |
| 1839 | + "dependencies": { | |
| 1840 | + "locate-path": "^6.0.0", | |
| 1841 | + "path-exists": "^4.0.0" | |
| 1842 | + }, | |
| 1843 | + "engines": { | |
| 1844 | + "node": ">=10" | |
| 1845 | + }, | |
| 1846 | + "funding": { | |
| 1847 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 1848 | + } | |
| 1849 | + }, | |
| 1850 | + "node_modules/flat-cache": { | |
| 1851 | + "version": "4.0.1", | |
| 1852 | + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", | |
| 1853 | + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", | |
| 1854 | + "dev": true, | |
| 1855 | + "license": "MIT", | |
| 1856 | + "dependencies": { | |
| 1857 | + "flatted": "^3.2.9", | |
| 1858 | + "keyv": "^4.5.4" | |
| 1859 | + }, | |
| 1860 | + "engines": { | |
| 1861 | + "node": ">=16" | |
| 1862 | + } | |
| 1863 | + }, | |
| 1864 | + "node_modules/flatted": { | |
| 1865 | + "version": "3.4.2", | |
| 1866 | + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", | |
| 1867 | + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", | |
| 1868 | + "dev": true, | |
| 1869 | + "license": "ISC" | |
| 1870 | + }, | |
| 1871 | + "node_modules/fsevents": { | |
| 1872 | + "version": "2.3.3", | |
| 1873 | + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", | |
| 1874 | + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", | |
| 1875 | + "dev": true, | |
| 1876 | + "hasInstallScript": true, | |
| 1877 | + "license": "MIT", | |
| 1878 | + "optional": true, | |
| 1879 | + "os": [ | |
| 1880 | + "darwin" | |
| 1881 | + ], | |
| 1882 | + "engines": { | |
| 1883 | + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" | |
| 1884 | + } | |
| 1885 | + }, | |
| 1886 | + "node_modules/gensync": { | |
| 1887 | + "version": "1.0.0-beta.2", | |
| 1888 | + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", | |
| 1889 | + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", | |
| 1890 | + "dev": true, | |
| 1891 | + "license": "MIT", | |
| 1892 | + "engines": { | |
| 1893 | + "node": ">=6.9.0" | |
| 1894 | + } | |
| 1895 | + }, | |
| 1896 | + "node_modules/glob-parent": { | |
| 1897 | + "version": "6.0.2", | |
| 1898 | + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", | |
| 1899 | + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", | |
| 1900 | + "dev": true, | |
| 1901 | + "license": "ISC", | |
| 1902 | + "dependencies": { | |
| 1903 | + "is-glob": "^4.0.3" | |
| 1904 | + }, | |
| 1905 | + "engines": { | |
| 1906 | + "node": ">=10.13.0" | |
| 1907 | + } | |
| 1908 | + }, | |
| 1909 | + "node_modules/globals": { | |
| 1910 | + "version": "17.5.0", | |
| 1911 | + "resolved": "https://registry.npmjs.org/globals/-/globals-17.5.0.tgz", | |
| 1912 | + "integrity": "sha512-qoV+HK2yFl/366t2/Cb3+xxPUo5BuMynomoDmiaZBIdbs+0pYbjfZU+twLhGKp4uCZ/+NbtpVepH5bGCxRyy2g==", | |
| 1913 | + "dev": true, | |
| 1914 | + "license": "MIT", | |
| 1915 | + "engines": { | |
| 1916 | + "node": ">=18" | |
| 1917 | + }, | |
| 1918 | + "funding": { | |
| 1919 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 1920 | + } | |
| 1921 | + }, | |
| 1922 | + "node_modules/has-flag": { | |
| 1923 | + "version": "4.0.0", | |
| 1924 | + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | |
| 1925 | + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", | |
| 1926 | + "dev": true, | |
| 1927 | + "license": "MIT", | |
| 1928 | + "engines": { | |
| 1929 | + "node": ">=8" | |
| 1930 | + } | |
| 1931 | + }, | |
| 1932 | + "node_modules/hermes-estree": { | |
| 1933 | + "version": "0.25.1", | |
| 1934 | + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", | |
| 1935 | + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", | |
| 1936 | + "dev": true, | |
| 1937 | + "license": "MIT" | |
| 1938 | + }, | |
| 1939 | + "node_modules/hermes-parser": { | |
| 1940 | + "version": "0.25.1", | |
| 1941 | + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", | |
| 1942 | + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", | |
| 1943 | + "dev": true, | |
| 1944 | + "license": "MIT", | |
| 1945 | + "dependencies": { | |
| 1946 | + "hermes-estree": "0.25.1" | |
| 1947 | + } | |
| 1948 | + }, | |
| 1949 | + "node_modules/ignore": { | |
| 1950 | + "version": "5.3.2", | |
| 1951 | + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", | |
| 1952 | + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", | |
| 1953 | + "dev": true, | |
| 1954 | + "license": "MIT", | |
| 1955 | + "engines": { | |
| 1956 | + "node": ">= 4" | |
| 1957 | + } | |
| 1958 | + }, | |
| 1959 | + "node_modules/import-fresh": { | |
| 1960 | + "version": "3.3.1", | |
| 1961 | + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", | |
| 1962 | + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", | |
| 1963 | + "dev": true, | |
| 1964 | + "license": "MIT", | |
| 1965 | + "dependencies": { | |
| 1966 | + "parent-module": "^1.0.0", | |
| 1967 | + "resolve-from": "^4.0.0" | |
| 1968 | + }, | |
| 1969 | + "engines": { | |
| 1970 | + "node": ">=6" | |
| 1971 | + }, | |
| 1972 | + "funding": { | |
| 1973 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 1974 | + } | |
| 1975 | + }, | |
| 1976 | + "node_modules/imurmurhash": { | |
| 1977 | + "version": "0.1.4", | |
| 1978 | + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", | |
| 1979 | + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", | |
| 1980 | + "dev": true, | |
| 1981 | + "license": "MIT", | |
| 1982 | + "engines": { | |
| 1983 | + "node": ">=0.8.19" | |
| 1984 | + } | |
| 1985 | + }, | |
| 1986 | + "node_modules/is-extglob": { | |
| 1987 | + "version": "2.1.1", | |
| 1988 | + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", | |
| 1989 | + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", | |
| 1990 | + "dev": true, | |
| 1991 | + "license": "MIT", | |
| 1992 | + "engines": { | |
| 1993 | + "node": ">=0.10.0" | |
| 1994 | + } | |
| 1995 | + }, | |
| 1996 | + "node_modules/is-glob": { | |
| 1997 | + "version": "4.0.3", | |
| 1998 | + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", | |
| 1999 | + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", | |
| 2000 | + "dev": true, | |
| 2001 | + "license": "MIT", | |
| 2002 | + "dependencies": { | |
| 2003 | + "is-extglob": "^2.1.1" | |
| 2004 | + }, | |
| 2005 | + "engines": { | |
| 2006 | + "node": ">=0.10.0" | |
| 2007 | + } | |
| 2008 | + }, | |
| 2009 | + "node_modules/isexe": { | |
| 2010 | + "version": "2.0.0", | |
| 2011 | + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", | |
| 2012 | + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", | |
| 2013 | + "dev": true, | |
| 2014 | + "license": "ISC" | |
| 2015 | + }, | |
| 2016 | + "node_modules/js-tokens": { | |
| 2017 | + "version": "4.0.0", | |
| 2018 | + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", | |
| 2019 | + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", | |
| 2020 | + "dev": true, | |
| 2021 | + "license": "MIT" | |
| 2022 | + }, | |
| 2023 | + "node_modules/js-yaml": { | |
| 2024 | + "version": "4.1.1", | |
| 2025 | + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", | |
| 2026 | + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", | |
| 2027 | + "dev": true, | |
| 2028 | + "license": "MIT", | |
| 2029 | + "dependencies": { | |
| 2030 | + "argparse": "^2.0.1" | |
| 2031 | + }, | |
| 2032 | + "bin": { | |
| 2033 | + "js-yaml": "bin/js-yaml.js" | |
| 2034 | + } | |
| 2035 | + }, | |
| 2036 | + "node_modules/jsesc": { | |
| 2037 | + "version": "3.1.0", | |
| 2038 | + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", | |
| 2039 | + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", | |
| 2040 | + "dev": true, | |
| 2041 | + "license": "MIT", | |
| 2042 | + "bin": { | |
| 2043 | + "jsesc": "bin/jsesc" | |
| 2044 | + }, | |
| 2045 | + "engines": { | |
| 2046 | + "node": ">=6" | |
| 2047 | + } | |
| 2048 | + }, | |
| 2049 | + "node_modules/json-buffer": { | |
| 2050 | + "version": "3.0.1", | |
| 2051 | + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", | |
| 2052 | + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", | |
| 2053 | + "dev": true, | |
| 2054 | + "license": "MIT" | |
| 2055 | + }, | |
| 2056 | + "node_modules/json-schema-traverse": { | |
| 2057 | + "version": "0.4.1", | |
| 2058 | + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", | |
| 2059 | + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", | |
| 2060 | + "dev": true, | |
| 2061 | + "license": "MIT" | |
| 2062 | + }, | |
| 2063 | + "node_modules/json-stable-stringify-without-jsonify": { | |
| 2064 | + "version": "1.0.1", | |
| 2065 | + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", | |
| 2066 | + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", | |
| 2067 | + "dev": true, | |
| 2068 | + "license": "MIT" | |
| 2069 | + }, | |
| 2070 | + "node_modules/json5": { | |
| 2071 | + "version": "2.2.3", | |
| 2072 | + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", | |
| 2073 | + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", | |
| 2074 | + "dev": true, | |
| 2075 | + "license": "MIT", | |
| 2076 | + "bin": { | |
| 2077 | + "json5": "lib/cli.js" | |
| 2078 | + }, | |
| 2079 | + "engines": { | |
| 2080 | + "node": ">=6" | |
| 2081 | + } | |
| 2082 | + }, | |
| 2083 | + "node_modules/keyv": { | |
| 2084 | + "version": "4.5.4", | |
| 2085 | + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", | |
| 2086 | + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", | |
| 2087 | + "dev": true, | |
| 2088 | + "license": "MIT", | |
| 2089 | + "dependencies": { | |
| 2090 | + "json-buffer": "3.0.1" | |
| 2091 | + } | |
| 2092 | + }, | |
| 2093 | + "node_modules/levn": { | |
| 2094 | + "version": "0.4.1", | |
| 2095 | + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", | |
| 2096 | + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", | |
| 2097 | + "dev": true, | |
| 2098 | + "license": "MIT", | |
| 2099 | + "dependencies": { | |
| 2100 | + "prelude-ls": "^1.2.1", | |
| 2101 | + "type-check": "~0.4.0" | |
| 2102 | + }, | |
| 2103 | + "engines": { | |
| 2104 | + "node": ">= 0.8.0" | |
| 2105 | + } | |
| 2106 | + }, | |
| 2107 | + "node_modules/lightningcss": { | |
| 2108 | + "version": "1.32.0", | |
| 2109 | + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", | |
| 2110 | + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", | |
| 2111 | + "dev": true, | |
| 2112 | + "license": "MPL-2.0", | |
| 2113 | + "dependencies": { | |
| 2114 | + "detect-libc": "^2.0.3" | |
| 2115 | + }, | |
| 2116 | + "engines": { | |
| 2117 | + "node": ">= 12.0.0" | |
| 2118 | + }, | |
| 2119 | + "funding": { | |
| 2120 | + "type": "opencollective", | |
| 2121 | + "url": "https://opencollective.com/parcel" | |
| 2122 | + }, | |
| 2123 | + "optionalDependencies": { | |
| 2124 | + "lightningcss-android-arm64": "1.32.0", | |
| 2125 | + "lightningcss-darwin-arm64": "1.32.0", | |
| 2126 | + "lightningcss-darwin-x64": "1.32.0", | |
| 2127 | + "lightningcss-freebsd-x64": "1.32.0", | |
| 2128 | + "lightningcss-linux-arm-gnueabihf": "1.32.0", | |
| 2129 | + "lightningcss-linux-arm64-gnu": "1.32.0", | |
| 2130 | + "lightningcss-linux-arm64-musl": "1.32.0", | |
| 2131 | + "lightningcss-linux-x64-gnu": "1.32.0", | |
| 2132 | + "lightningcss-linux-x64-musl": "1.32.0", | |
| 2133 | + "lightningcss-win32-arm64-msvc": "1.32.0", | |
| 2134 | + "lightningcss-win32-x64-msvc": "1.32.0" | |
| 2135 | + } | |
| 2136 | + }, | |
| 2137 | + "node_modules/lightningcss-android-arm64": { | |
| 2138 | + "version": "1.32.0", | |
| 2139 | + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", | |
| 2140 | + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", | |
| 2141 | + "cpu": [ | |
| 2142 | + "arm64" | |
| 2143 | + ], | |
| 2144 | + "dev": true, | |
| 2145 | + "license": "MPL-2.0", | |
| 2146 | + "optional": true, | |
| 2147 | + "os": [ | |
| 2148 | + "android" | |
| 2149 | + ], | |
| 2150 | + "engines": { | |
| 2151 | + "node": ">= 12.0.0" | |
| 2152 | + }, | |
| 2153 | + "funding": { | |
| 2154 | + "type": "opencollective", | |
| 2155 | + "url": "https://opencollective.com/parcel" | |
| 2156 | + } | |
| 2157 | + }, | |
| 2158 | + "node_modules/lightningcss-darwin-arm64": { | |
| 2159 | + "version": "1.32.0", | |
| 2160 | + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", | |
| 2161 | + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", | |
| 2162 | + "cpu": [ | |
| 2163 | + "arm64" | |
| 2164 | + ], | |
| 2165 | + "dev": true, | |
| 2166 | + "license": "MPL-2.0", | |
| 2167 | + "optional": true, | |
| 2168 | + "os": [ | |
| 2169 | + "darwin" | |
| 2170 | + ], | |
| 2171 | + "engines": { | |
| 2172 | + "node": ">= 12.0.0" | |
| 2173 | + }, | |
| 2174 | + "funding": { | |
| 2175 | + "type": "opencollective", | |
| 2176 | + "url": "https://opencollective.com/parcel" | |
| 2177 | + } | |
| 2178 | + }, | |
| 2179 | + "node_modules/lightningcss-darwin-x64": { | |
| 2180 | + "version": "1.32.0", | |
| 2181 | + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", | |
| 2182 | + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", | |
| 2183 | + "cpu": [ | |
| 2184 | + "x64" | |
| 2185 | + ], | |
| 2186 | + "dev": true, | |
| 2187 | + "license": "MPL-2.0", | |
| 2188 | + "optional": true, | |
| 2189 | + "os": [ | |
| 2190 | + "darwin" | |
| 2191 | + ], | |
| 2192 | + "engines": { | |
| 2193 | + "node": ">= 12.0.0" | |
| 2194 | + }, | |
| 2195 | + "funding": { | |
| 2196 | + "type": "opencollective", | |
| 2197 | + "url": "https://opencollective.com/parcel" | |
| 2198 | + } | |
| 2199 | + }, | |
| 2200 | + "node_modules/lightningcss-freebsd-x64": { | |
| 2201 | + "version": "1.32.0", | |
| 2202 | + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", | |
| 2203 | + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", | |
| 2204 | + "cpu": [ | |
| 2205 | + "x64" | |
| 2206 | + ], | |
| 2207 | + "dev": true, | |
| 2208 | + "license": "MPL-2.0", | |
| 2209 | + "optional": true, | |
| 2210 | + "os": [ | |
| 2211 | + "freebsd" | |
| 2212 | + ], | |
| 2213 | + "engines": { | |
| 2214 | + "node": ">= 12.0.0" | |
| 2215 | + }, | |
| 2216 | + "funding": { | |
| 2217 | + "type": "opencollective", | |
| 2218 | + "url": "https://opencollective.com/parcel" | |
| 2219 | + } | |
| 2220 | + }, | |
| 2221 | + "node_modules/lightningcss-linux-arm-gnueabihf": { | |
| 2222 | + "version": "1.32.0", | |
| 2223 | + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", | |
| 2224 | + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", | |
| 2225 | + "cpu": [ | |
| 2226 | + "arm" | |
| 2227 | + ], | |
| 2228 | + "dev": true, | |
| 2229 | + "license": "MPL-2.0", | |
| 2230 | + "optional": true, | |
| 2231 | + "os": [ | |
| 2232 | + "linux" | |
| 2233 | + ], | |
| 2234 | + "engines": { | |
| 2235 | + "node": ">= 12.0.0" | |
| 2236 | + }, | |
| 2237 | + "funding": { | |
| 2238 | + "type": "opencollective", | |
| 2239 | + "url": "https://opencollective.com/parcel" | |
| 2240 | + } | |
| 2241 | + }, | |
| 2242 | + "node_modules/lightningcss-linux-arm64-gnu": { | |
| 2243 | + "version": "1.32.0", | |
| 2244 | + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", | |
| 2245 | + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", | |
| 2246 | + "cpu": [ | |
| 2247 | + "arm64" | |
| 2248 | + ], | |
| 2249 | + "dev": true, | |
| 2250 | + "libc": [ | |
| 2251 | + "glibc" | |
| 2252 | + ], | |
| 2253 | + "license": "MPL-2.0", | |
| 2254 | + "optional": true, | |
| 2255 | + "os": [ | |
| 2256 | + "linux" | |
| 2257 | + ], | |
| 2258 | + "engines": { | |
| 2259 | + "node": ">= 12.0.0" | |
| 2260 | + }, | |
| 2261 | + "funding": { | |
| 2262 | + "type": "opencollective", | |
| 2263 | + "url": "https://opencollective.com/parcel" | |
| 2264 | + } | |
| 2265 | + }, | |
| 2266 | + "node_modules/lightningcss-linux-arm64-musl": { | |
| 2267 | + "version": "1.32.0", | |
| 2268 | + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", | |
| 2269 | + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", | |
| 2270 | + "cpu": [ | |
| 2271 | + "arm64" | |
| 2272 | + ], | |
| 2273 | + "dev": true, | |
| 2274 | + "libc": [ | |
| 2275 | + "musl" | |
| 2276 | + ], | |
| 2277 | + "license": "MPL-2.0", | |
| 2278 | + "optional": true, | |
| 2279 | + "os": [ | |
| 2280 | + "linux" | |
| 2281 | + ], | |
| 2282 | + "engines": { | |
| 2283 | + "node": ">= 12.0.0" | |
| 2284 | + }, | |
| 2285 | + "funding": { | |
| 2286 | + "type": "opencollective", | |
| 2287 | + "url": "https://opencollective.com/parcel" | |
| 2288 | + } | |
| 2289 | + }, | |
| 2290 | + "node_modules/lightningcss-linux-x64-gnu": { | |
| 2291 | + "version": "1.32.0", | |
| 2292 | + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", | |
| 2293 | + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", | |
| 2294 | + "cpu": [ | |
| 2295 | + "x64" | |
| 2296 | + ], | |
| 2297 | + "dev": true, | |
| 2298 | + "libc": [ | |
| 2299 | + "glibc" | |
| 2300 | + ], | |
| 2301 | + "license": "MPL-2.0", | |
| 2302 | + "optional": true, | |
| 2303 | + "os": [ | |
| 2304 | + "linux" | |
| 2305 | + ], | |
| 2306 | + "engines": { | |
| 2307 | + "node": ">= 12.0.0" | |
| 2308 | + }, | |
| 2309 | + "funding": { | |
| 2310 | + "type": "opencollective", | |
| 2311 | + "url": "https://opencollective.com/parcel" | |
| 2312 | + } | |
| 2313 | + }, | |
| 2314 | + "node_modules/lightningcss-linux-x64-musl": { | |
| 2315 | + "version": "1.32.0", | |
| 2316 | + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", | |
| 2317 | + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", | |
| 2318 | + "cpu": [ | |
| 2319 | + "x64" | |
| 2320 | + ], | |
| 2321 | + "dev": true, | |
| 2322 | + "libc": [ | |
| 2323 | + "musl" | |
| 2324 | + ], | |
| 2325 | + "license": "MPL-2.0", | |
| 2326 | + "optional": true, | |
| 2327 | + "os": [ | |
| 2328 | + "linux" | |
| 2329 | + ], | |
| 2330 | + "engines": { | |
| 2331 | + "node": ">= 12.0.0" | |
| 2332 | + }, | |
| 2333 | + "funding": { | |
| 2334 | + "type": "opencollective", | |
| 2335 | + "url": "https://opencollective.com/parcel" | |
| 2336 | + } | |
| 2337 | + }, | |
| 2338 | + "node_modules/lightningcss-win32-arm64-msvc": { | |
| 2339 | + "version": "1.32.0", | |
| 2340 | + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", | |
| 2341 | + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", | |
| 2342 | + "cpu": [ | |
| 2343 | + "arm64" | |
| 2344 | + ], | |
| 2345 | + "dev": true, | |
| 2346 | + "license": "MPL-2.0", | |
| 2347 | + "optional": true, | |
| 2348 | + "os": [ | |
| 2349 | + "win32" | |
| 2350 | + ], | |
| 2351 | + "engines": { | |
| 2352 | + "node": ">= 12.0.0" | |
| 2353 | + }, | |
| 2354 | + "funding": { | |
| 2355 | + "type": "opencollective", | |
| 2356 | + "url": "https://opencollective.com/parcel" | |
| 2357 | + } | |
| 2358 | + }, | |
| 2359 | + "node_modules/lightningcss-win32-x64-msvc": { | |
| 2360 | + "version": "1.32.0", | |
| 2361 | + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", | |
| 2362 | + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", | |
| 2363 | + "cpu": [ | |
| 2364 | + "x64" | |
| 2365 | + ], | |
| 2366 | + "dev": true, | |
| 2367 | + "license": "MPL-2.0", | |
| 2368 | + "optional": true, | |
| 2369 | + "os": [ | |
| 2370 | + "win32" | |
| 2371 | + ], | |
| 2372 | + "engines": { | |
| 2373 | + "node": ">= 12.0.0" | |
| 2374 | + }, | |
| 2375 | + "funding": { | |
| 2376 | + "type": "opencollective", | |
| 2377 | + "url": "https://opencollective.com/parcel" | |
| 2378 | + } | |
| 2379 | + }, | |
| 2380 | + "node_modules/locate-path": { | |
| 2381 | + "version": "6.0.0", | |
| 2382 | + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", | |
| 2383 | + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", | |
| 2384 | + "dev": true, | |
| 2385 | + "license": "MIT", | |
| 2386 | + "dependencies": { | |
| 2387 | + "p-locate": "^5.0.0" | |
| 2388 | + }, | |
| 2389 | + "engines": { | |
| 2390 | + "node": ">=10" | |
| 2391 | + }, | |
| 2392 | + "funding": { | |
| 2393 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 2394 | + } | |
| 2395 | + }, | |
| 2396 | + "node_modules/lodash.merge": { | |
| 2397 | + "version": "4.6.2", | |
| 2398 | + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", | |
| 2399 | + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", | |
| 2400 | + "dev": true, | |
| 2401 | + "license": "MIT" | |
| 2402 | + }, | |
| 2403 | + "node_modules/lru-cache": { | |
| 2404 | + "version": "5.1.1", | |
| 2405 | + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", | |
| 2406 | + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", | |
| 2407 | + "dev": true, | |
| 2408 | + "license": "ISC", | |
| 2409 | + "dependencies": { | |
| 2410 | + "yallist": "^3.0.2" | |
| 2411 | + } | |
| 2412 | + }, | |
| 2413 | + "node_modules/minimatch": { | |
| 2414 | + "version": "3.1.5", | |
| 2415 | + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", | |
| 2416 | + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", | |
| 2417 | + "dev": true, | |
| 2418 | + "license": "ISC", | |
| 2419 | + "dependencies": { | |
| 2420 | + "brace-expansion": "^1.1.7" | |
| 2421 | + }, | |
| 2422 | + "engines": { | |
| 2423 | + "node": "*" | |
| 2424 | + } | |
| 2425 | + }, | |
| 2426 | + "node_modules/ms": { | |
| 2427 | + "version": "2.1.3", | |
| 2428 | + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", | |
| 2429 | + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", | |
| 2430 | + "dev": true, | |
| 2431 | + "license": "MIT" | |
| 2432 | + }, | |
| 2433 | + "node_modules/nanoid": { | |
| 2434 | + "version": "3.3.11", | |
| 2435 | + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", | |
| 2436 | + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", | |
| 2437 | + "dev": true, | |
| 2438 | + "funding": [ | |
| 2439 | + { | |
| 2440 | + "type": "github", | |
| 2441 | + "url": "https://github.com/sponsors/ai" | |
| 2442 | + } | |
| 2443 | + ], | |
| 2444 | + "license": "MIT", | |
| 2445 | + "bin": { | |
| 2446 | + "nanoid": "bin/nanoid.cjs" | |
| 2447 | + }, | |
| 2448 | + "engines": { | |
| 2449 | + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" | |
| 2450 | + } | |
| 2451 | + }, | |
| 2452 | + "node_modules/natural-compare": { | |
| 2453 | + "version": "1.4.0", | |
| 2454 | + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", | |
| 2455 | + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", | |
| 2456 | + "dev": true, | |
| 2457 | + "license": "MIT" | |
| 2458 | + }, | |
| 2459 | + "node_modules/node-releases": { | |
| 2460 | + "version": "2.0.37", | |
| 2461 | + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.37.tgz", | |
| 2462 | + "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==", | |
| 2463 | + "dev": true, | |
| 2464 | + "license": "MIT" | |
| 2465 | + }, | |
| 2466 | + "node_modules/optionator": { | |
| 2467 | + "version": "0.9.4", | |
| 2468 | + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", | |
| 2469 | + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", | |
| 2470 | + "dev": true, | |
| 2471 | + "license": "MIT", | |
| 2472 | + "dependencies": { | |
| 2473 | + "deep-is": "^0.1.3", | |
| 2474 | + "fast-levenshtein": "^2.0.6", | |
| 2475 | + "levn": "^0.4.1", | |
| 2476 | + "prelude-ls": "^1.2.1", | |
| 2477 | + "type-check": "^0.4.0", | |
| 2478 | + "word-wrap": "^1.2.5" | |
| 2479 | + }, | |
| 2480 | + "engines": { | |
| 2481 | + "node": ">= 0.8.0" | |
| 2482 | + } | |
| 2483 | + }, | |
| 2484 | + "node_modules/p-limit": { | |
| 2485 | + "version": "3.1.0", | |
| 2486 | + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", | |
| 2487 | + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", | |
| 2488 | + "dev": true, | |
| 2489 | + "license": "MIT", | |
| 2490 | + "dependencies": { | |
| 2491 | + "yocto-queue": "^0.1.0" | |
| 2492 | + }, | |
| 2493 | + "engines": { | |
| 2494 | + "node": ">=10" | |
| 2495 | + }, | |
| 2496 | + "funding": { | |
| 2497 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 2498 | + } | |
| 2499 | + }, | |
| 2500 | + "node_modules/p-locate": { | |
| 2501 | + "version": "5.0.0", | |
| 2502 | + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", | |
| 2503 | + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", | |
| 2504 | + "dev": true, | |
| 2505 | + "license": "MIT", | |
| 2506 | + "dependencies": { | |
| 2507 | + "p-limit": "^3.0.2" | |
| 2508 | + }, | |
| 2509 | + "engines": { | |
| 2510 | + "node": ">=10" | |
| 2511 | + }, | |
| 2512 | + "funding": { | |
| 2513 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 2514 | + } | |
| 2515 | + }, | |
| 2516 | + "node_modules/parent-module": { | |
| 2517 | + "version": "1.0.1", | |
| 2518 | + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", | |
| 2519 | + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", | |
| 2520 | + "dev": true, | |
| 2521 | + "license": "MIT", | |
| 2522 | + "dependencies": { | |
| 2523 | + "callsites": "^3.0.0" | |
| 2524 | + }, | |
| 2525 | + "engines": { | |
| 2526 | + "node": ">=6" | |
| 2527 | + } | |
| 2528 | + }, | |
| 2529 | + "node_modules/path-exists": { | |
| 2530 | + "version": "4.0.0", | |
| 2531 | + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", | |
| 2532 | + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", | |
| 2533 | + "dev": true, | |
| 2534 | + "license": "MIT", | |
| 2535 | + "engines": { | |
| 2536 | + "node": ">=8" | |
| 2537 | + } | |
| 2538 | + }, | |
| 2539 | + "node_modules/path-key": { | |
| 2540 | + "version": "3.1.1", | |
| 2541 | + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", | |
| 2542 | + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", | |
| 2543 | + "dev": true, | |
| 2544 | + "license": "MIT", | |
| 2545 | + "engines": { | |
| 2546 | + "node": ">=8" | |
| 2547 | + } | |
| 2548 | + }, | |
| 2549 | + "node_modules/picocolors": { | |
| 2550 | + "version": "1.1.1", | |
| 2551 | + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", | |
| 2552 | + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", | |
| 2553 | + "dev": true, | |
| 2554 | + "license": "ISC" | |
| 2555 | + }, | |
| 2556 | + "node_modules/picomatch": { | |
| 2557 | + "version": "4.0.4", | |
| 2558 | + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", | |
| 2559 | + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", | |
| 2560 | + "dev": true, | |
| 2561 | + "license": "MIT", | |
| 2562 | + "engines": { | |
| 2563 | + "node": ">=12" | |
| 2564 | + }, | |
| 2565 | + "funding": { | |
| 2566 | + "url": "https://github.com/sponsors/jonschlinkert" | |
| 2567 | + } | |
| 2568 | + }, | |
| 2569 | + "node_modules/postcss": { | |
| 2570 | + "version": "8.5.10", | |
| 2571 | + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz", | |
| 2572 | + "integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==", | |
| 2573 | + "dev": true, | |
| 2574 | + "funding": [ | |
| 2575 | + { | |
| 2576 | + "type": "opencollective", | |
| 2577 | + "url": "https://opencollective.com/postcss/" | |
| 2578 | + }, | |
| 2579 | + { | |
| 2580 | + "type": "tidelift", | |
| 2581 | + "url": "https://tidelift.com/funding/github/npm/postcss" | |
| 2582 | + }, | |
| 2583 | + { | |
| 2584 | + "type": "github", | |
| 2585 | + "url": "https://github.com/sponsors/ai" | |
| 2586 | + } | |
| 2587 | + ], | |
| 2588 | + "license": "MIT", | |
| 2589 | + "dependencies": { | |
| 2590 | + "nanoid": "^3.3.11", | |
| 2591 | + "picocolors": "^1.1.1", | |
| 2592 | + "source-map-js": "^1.2.1" | |
| 2593 | + }, | |
| 2594 | + "engines": { | |
| 2595 | + "node": "^10 || ^12 || >=14" | |
| 2596 | + } | |
| 2597 | + }, | |
| 2598 | + "node_modules/prelude-ls": { | |
| 2599 | + "version": "1.2.1", | |
| 2600 | + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", | |
| 2601 | + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", | |
| 2602 | + "dev": true, | |
| 2603 | + "license": "MIT", | |
| 2604 | + "engines": { | |
| 2605 | + "node": ">= 0.8.0" | |
| 2606 | + } | |
| 2607 | + }, | |
| 2608 | + "node_modules/punycode": { | |
| 2609 | + "version": "2.3.1", | |
| 2610 | + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", | |
| 2611 | + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", | |
| 2612 | + "dev": true, | |
| 2613 | + "license": "MIT", | |
| 2614 | + "engines": { | |
| 2615 | + "node": ">=6" | |
| 2616 | + } | |
| 2617 | + }, | |
| 2618 | + "node_modules/react": { | |
| 2619 | + "version": "19.2.5", | |
| 2620 | + "resolved": "https://registry.npmjs.org/react/-/react-19.2.5.tgz", | |
| 2621 | + "integrity": "sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==", | |
| 2622 | + "license": "MIT", | |
| 2623 | + "engines": { | |
| 2624 | + "node": ">=0.10.0" | |
| 2625 | + } | |
| 2626 | + }, | |
| 2627 | + "node_modules/react-dom": { | |
| 2628 | + "version": "19.2.5", | |
| 2629 | + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.5.tgz", | |
| 2630 | + "integrity": "sha512-J5bAZz+DXMMwW/wV3xzKke59Af6CHY7G4uYLN1OvBcKEsWOs4pQExj86BBKamxl/Ik5bx9whOrvBlSDfWzgSag==", | |
| 2631 | + "license": "MIT", | |
| 2632 | + "dependencies": { | |
| 2633 | + "scheduler": "^0.27.0" | |
| 2634 | + }, | |
| 2635 | + "peerDependencies": { | |
| 2636 | + "react": "^19.2.5" | |
| 2637 | + } | |
| 2638 | + }, | |
| 2639 | + "node_modules/react-router": { | |
| 2640 | + "version": "7.14.1", | |
| 2641 | + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.14.1.tgz", | |
| 2642 | + "integrity": "sha512-5BCvFskyAAVumqhEKh/iPhLOIkfxcEUz8WqFIARCkMg8hZZzDYX9CtwxXA0e+qT8zAxmMC0x3Ckb9iMONwc5jg==", | |
| 2643 | + "license": "MIT", | |
| 2644 | + "dependencies": { | |
| 2645 | + "cookie": "^1.0.1", | |
| 2646 | + "set-cookie-parser": "^2.6.0" | |
| 2647 | + }, | |
| 2648 | + "engines": { | |
| 2649 | + "node": ">=20.0.0" | |
| 2650 | + }, | |
| 2651 | + "peerDependencies": { | |
| 2652 | + "react": ">=18", | |
| 2653 | + "react-dom": ">=18" | |
| 2654 | + }, | |
| 2655 | + "peerDependenciesMeta": { | |
| 2656 | + "react-dom": { | |
| 2657 | + "optional": true | |
| 2658 | + } | |
| 2659 | + } | |
| 2660 | + }, | |
| 2661 | + "node_modules/react-router-dom": { | |
| 2662 | + "version": "7.14.1", | |
| 2663 | + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.14.1.tgz", | |
| 2664 | + "integrity": "sha512-ZkrQuwwhGibjQLqH1eCdyiZyLWglPxzxdl5tgwgKEyCSGC76vmAjleGocRe3J/MLfzMUIKwaFJWpFVJhK3d2xA==", | |
| 2665 | + "license": "MIT", | |
| 2666 | + "dependencies": { | |
| 2667 | + "react-router": "7.14.1" | |
| 2668 | + }, | |
| 2669 | + "engines": { | |
| 2670 | + "node": ">=20.0.0" | |
| 2671 | + }, | |
| 2672 | + "peerDependencies": { | |
| 2673 | + "react": ">=18", | |
| 2674 | + "react-dom": ">=18" | |
| 2675 | + } | |
| 2676 | + }, | |
| 2677 | + "node_modules/react-toastify": { | |
| 2678 | + "version": "11.1.0", | |
| 2679 | + "resolved": "https://registry.npmjs.org/react-toastify/-/react-toastify-11.1.0.tgz", | |
| 2680 | + "integrity": "sha512-e9h23x3phN0wbFeB6yovmWp7lobzV4CaCH0LO8nVP6H7Y+3GbcLpIzMm9dJhcp1RXbpyfvjgpfXqO80QAmn7sg==", | |
| 2681 | + "license": "MIT", | |
| 2682 | + "dependencies": { | |
| 2683 | + "clsx": "^2.1.1" | |
| 2684 | + }, | |
| 2685 | + "peerDependencies": { | |
| 2686 | + "react": "^18 || ^19", | |
| 2687 | + "react-dom": "^18 || ^19" | |
| 2688 | + } | |
| 2689 | + }, | |
| 2690 | + "node_modules/resolve-from": { | |
| 2691 | + "version": "4.0.0", | |
| 2692 | + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", | |
| 2693 | + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", | |
| 2694 | + "dev": true, | |
| 2695 | + "license": "MIT", | |
| 2696 | + "engines": { | |
| 2697 | + "node": ">=4" | |
| 2698 | + } | |
| 2699 | + }, | |
| 2700 | + "node_modules/rolldown": { | |
| 2701 | + "version": "1.0.0-rc.15", | |
| 2702 | + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.15.tgz", | |
| 2703 | + "integrity": "sha512-Ff31guA5zT6WjnGp0SXw76X6hzGRk/OQq2hE+1lcDe+lJdHSgnSX6nK3erbONHyCbpSj9a9E+uX/OvytZoWp2g==", | |
| 2704 | + "dev": true, | |
| 2705 | + "license": "MIT", | |
| 2706 | + "dependencies": { | |
| 2707 | + "@oxc-project/types": "=0.124.0", | |
| 2708 | + "@rolldown/pluginutils": "1.0.0-rc.15" | |
| 2709 | + }, | |
| 2710 | + "bin": { | |
| 2711 | + "rolldown": "bin/cli.mjs" | |
| 2712 | + }, | |
| 2713 | + "engines": { | |
| 2714 | + "node": "^20.19.0 || >=22.12.0" | |
| 2715 | + }, | |
| 2716 | + "optionalDependencies": { | |
| 2717 | + "@rolldown/binding-android-arm64": "1.0.0-rc.15", | |
| 2718 | + "@rolldown/binding-darwin-arm64": "1.0.0-rc.15", | |
| 2719 | + "@rolldown/binding-darwin-x64": "1.0.0-rc.15", | |
| 2720 | + "@rolldown/binding-freebsd-x64": "1.0.0-rc.15", | |
| 2721 | + "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.15", | |
| 2722 | + "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.15", | |
| 2723 | + "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.15", | |
| 2724 | + "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.15", | |
| 2725 | + "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.15", | |
| 2726 | + "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.15", | |
| 2727 | + "@rolldown/binding-linux-x64-musl": "1.0.0-rc.15", | |
| 2728 | + "@rolldown/binding-openharmony-arm64": "1.0.0-rc.15", | |
| 2729 | + "@rolldown/binding-wasm32-wasi": "1.0.0-rc.15", | |
| 2730 | + "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.15", | |
| 2731 | + "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.15" | |
| 2732 | + } | |
| 2733 | + }, | |
| 2734 | + "node_modules/rolldown/node_modules/@rolldown/pluginutils": { | |
| 2735 | + "version": "1.0.0-rc.15", | |
| 2736 | + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.15.tgz", | |
| 2737 | + "integrity": "sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==", | |
| 2738 | + "dev": true, | |
| 2739 | + "license": "MIT" | |
| 2740 | + }, | |
| 2741 | + "node_modules/scheduler": { | |
| 2742 | + "version": "0.27.0", | |
| 2743 | + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", | |
| 2744 | + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", | |
| 2745 | + "license": "MIT" | |
| 2746 | + }, | |
| 2747 | + "node_modules/semver": { | |
| 2748 | + "version": "6.3.1", | |
| 2749 | + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", | |
| 2750 | + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", | |
| 2751 | + "dev": true, | |
| 2752 | + "license": "ISC", | |
| 2753 | + "bin": { | |
| 2754 | + "semver": "bin/semver.js" | |
| 2755 | + } | |
| 2756 | + }, | |
| 2757 | + "node_modules/set-cookie-parser": { | |
| 2758 | + "version": "2.7.2", | |
| 2759 | + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz", | |
| 2760 | + "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==", | |
| 2761 | + "license": "MIT" | |
| 2762 | + }, | |
| 2763 | + "node_modules/shebang-command": { | |
| 2764 | + "version": "2.0.0", | |
| 2765 | + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", | |
| 2766 | + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", | |
| 2767 | + "dev": true, | |
| 2768 | + "license": "MIT", | |
| 2769 | + "dependencies": { | |
| 2770 | + "shebang-regex": "^3.0.0" | |
| 2771 | + }, | |
| 2772 | + "engines": { | |
| 2773 | + "node": ">=8" | |
| 2774 | + } | |
| 2775 | + }, | |
| 2776 | + "node_modules/shebang-regex": { | |
| 2777 | + "version": "3.0.0", | |
| 2778 | + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", | |
| 2779 | + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", | |
| 2780 | + "dev": true, | |
| 2781 | + "license": "MIT", | |
| 2782 | + "engines": { | |
| 2783 | + "node": ">=8" | |
| 2784 | + } | |
| 2785 | + }, | |
| 2786 | + "node_modules/source-map-js": { | |
| 2787 | + "version": "1.2.1", | |
| 2788 | + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", | |
| 2789 | + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", | |
| 2790 | + "dev": true, | |
| 2791 | + "license": "BSD-3-Clause", | |
| 2792 | + "engines": { | |
| 2793 | + "node": ">=0.10.0" | |
| 2794 | + } | |
| 2795 | + }, | |
| 2796 | + "node_modules/strip-json-comments": { | |
| 2797 | + "version": "3.1.1", | |
| 2798 | + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", | |
| 2799 | + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", | |
| 2800 | + "dev": true, | |
| 2801 | + "license": "MIT", | |
| 2802 | + "engines": { | |
| 2803 | + "node": ">=8" | |
| 2804 | + }, | |
| 2805 | + "funding": { | |
| 2806 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 2807 | + } | |
| 2808 | + }, | |
| 2809 | + "node_modules/supports-color": { | |
| 2810 | + "version": "7.2.0", | |
| 2811 | + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | |
| 2812 | + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | |
| 2813 | + "dev": true, | |
| 2814 | + "license": "MIT", | |
| 2815 | + "dependencies": { | |
| 2816 | + "has-flag": "^4.0.0" | |
| 2817 | + }, | |
| 2818 | + "engines": { | |
| 2819 | + "node": ">=8" | |
| 2820 | + } | |
| 2821 | + }, | |
| 2822 | + "node_modules/tinyglobby": { | |
| 2823 | + "version": "0.2.16", | |
| 2824 | + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", | |
| 2825 | + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", | |
| 2826 | + "dev": true, | |
| 2827 | + "license": "MIT", | |
| 2828 | + "dependencies": { | |
| 2829 | + "fdir": "^6.5.0", | |
| 2830 | + "picomatch": "^4.0.4" | |
| 2831 | + }, | |
| 2832 | + "engines": { | |
| 2833 | + "node": ">=12.0.0" | |
| 2834 | + }, | |
| 2835 | + "funding": { | |
| 2836 | + "url": "https://github.com/sponsors/SuperchupuDev" | |
| 2837 | + } | |
| 2838 | + }, | |
| 2839 | + "node_modules/ts-api-utils": { | |
| 2840 | + "version": "2.5.0", | |
| 2841 | + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", | |
| 2842 | + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", | |
| 2843 | + "dev": true, | |
| 2844 | + "license": "MIT", | |
| 2845 | + "engines": { | |
| 2846 | + "node": ">=18.12" | |
| 2847 | + }, | |
| 2848 | + "peerDependencies": { | |
| 2849 | + "typescript": ">=4.8.4" | |
| 2850 | + } | |
| 2851 | + }, | |
| 2852 | + "node_modules/tslib": { | |
| 2853 | + "version": "2.8.1", | |
| 2854 | + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", | |
| 2855 | + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", | |
| 2856 | + "dev": true, | |
| 2857 | + "license": "0BSD", | |
| 2858 | + "optional": true | |
| 2859 | + }, | |
| 2860 | + "node_modules/type-check": { | |
| 2861 | + "version": "0.4.0", | |
| 2862 | + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", | |
| 2863 | + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", | |
| 2864 | + "dev": true, | |
| 2865 | + "license": "MIT", | |
| 2866 | + "dependencies": { | |
| 2867 | + "prelude-ls": "^1.2.1" | |
| 2868 | + }, | |
| 2869 | + "engines": { | |
| 2870 | + "node": ">= 0.8.0" | |
| 2871 | + } | |
| 2872 | + }, | |
| 2873 | + "node_modules/typescript": { | |
| 2874 | + "version": "6.0.2", | |
| 2875 | + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", | |
| 2876 | + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", | |
| 2877 | + "dev": true, | |
| 2878 | + "license": "Apache-2.0", | |
| 2879 | + "bin": { | |
| 2880 | + "tsc": "bin/tsc", | |
| 2881 | + "tsserver": "bin/tsserver" | |
| 2882 | + }, | |
| 2883 | + "engines": { | |
| 2884 | + "node": ">=14.17" | |
| 2885 | + } | |
| 2886 | + }, | |
| 2887 | + "node_modules/typescript-eslint": { | |
| 2888 | + "version": "8.58.2", | |
| 2889 | + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.58.2.tgz", | |
| 2890 | + "integrity": "sha512-V8iSng9mRbdZjl54VJ9NKr6ZB+dW0J3TzRXRGcSbLIej9jV86ZRtlYeTKDR/QLxXykocJ5icNzbsl2+5TzIvcQ==", | |
| 2891 | + "dev": true, | |
| 2892 | + "license": "MIT", | |
| 2893 | + "dependencies": { | |
| 2894 | + "@typescript-eslint/eslint-plugin": "8.58.2", | |
| 2895 | + "@typescript-eslint/parser": "8.58.2", | |
| 2896 | + "@typescript-eslint/typescript-estree": "8.58.2", | |
| 2897 | + "@typescript-eslint/utils": "8.58.2" | |
| 2898 | + }, | |
| 2899 | + "engines": { | |
| 2900 | + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | |
| 2901 | + }, | |
| 2902 | + "funding": { | |
| 2903 | + "type": "opencollective", | |
| 2904 | + "url": "https://opencollective.com/typescript-eslint" | |
| 2905 | + }, | |
| 2906 | + "peerDependencies": { | |
| 2907 | + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", | |
| 2908 | + "typescript": ">=4.8.4 <6.1.0" | |
| 2909 | + } | |
| 2910 | + }, | |
| 2911 | + "node_modules/undici-types": { | |
| 2912 | + "version": "7.16.0", | |
| 2913 | + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", | |
| 2914 | + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", | |
| 2915 | + "dev": true, | |
| 2916 | + "license": "MIT" | |
| 2917 | + }, | |
| 2918 | + "node_modules/update-browserslist-db": { | |
| 2919 | + "version": "1.2.3", | |
| 2920 | + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", | |
| 2921 | + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", | |
| 2922 | + "dev": true, | |
| 2923 | + "funding": [ | |
| 2924 | + { | |
| 2925 | + "type": "opencollective", | |
| 2926 | + "url": "https://opencollective.com/browserslist" | |
| 2927 | + }, | |
| 2928 | + { | |
| 2929 | + "type": "tidelift", | |
| 2930 | + "url": "https://tidelift.com/funding/github/npm/browserslist" | |
| 2931 | + }, | |
| 2932 | + { | |
| 2933 | + "type": "github", | |
| 2934 | + "url": "https://github.com/sponsors/ai" | |
| 2935 | + } | |
| 2936 | + ], | |
| 2937 | + "license": "MIT", | |
| 2938 | + "dependencies": { | |
| 2939 | + "escalade": "^3.2.0", | |
| 2940 | + "picocolors": "^1.1.1" | |
| 2941 | + }, | |
| 2942 | + "bin": { | |
| 2943 | + "update-browserslist-db": "cli.js" | |
| 2944 | + }, | |
| 2945 | + "peerDependencies": { | |
| 2946 | + "browserslist": ">= 4.21.0" | |
| 2947 | + } | |
| 2948 | + }, | |
| 2949 | + "node_modules/uri-js": { | |
| 2950 | + "version": "4.4.1", | |
| 2951 | + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", | |
| 2952 | + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", | |
| 2953 | + "dev": true, | |
| 2954 | + "license": "BSD-2-Clause", | |
| 2955 | + "dependencies": { | |
| 2956 | + "punycode": "^2.1.0" | |
| 2957 | + } | |
| 2958 | + }, | |
| 2959 | + "node_modules/vite": { | |
| 2960 | + "version": "8.0.8", | |
| 2961 | + "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.8.tgz", | |
| 2962 | + "integrity": "sha512-dbU7/iLVa8KZALJyLOBOQ88nOXtNG8vxKuOT4I2mD+Ya70KPceF4IAmDsmU0h1Qsn5bPrvsY9HJstCRh3hG6Uw==", | |
| 2963 | + "dev": true, | |
| 2964 | + "license": "MIT", | |
| 2965 | + "dependencies": { | |
| 2966 | + "lightningcss": "^1.32.0", | |
| 2967 | + "picomatch": "^4.0.4", | |
| 2968 | + "postcss": "^8.5.8", | |
| 2969 | + "rolldown": "1.0.0-rc.15", | |
| 2970 | + "tinyglobby": "^0.2.15" | |
| 2971 | + }, | |
| 2972 | + "bin": { | |
| 2973 | + "vite": "bin/vite.js" | |
| 2974 | + }, | |
| 2975 | + "engines": { | |
| 2976 | + "node": "^20.19.0 || >=22.12.0" | |
| 2977 | + }, | |
| 2978 | + "funding": { | |
| 2979 | + "url": "https://github.com/vitejs/vite?sponsor=1" | |
| 2980 | + }, | |
| 2981 | + "optionalDependencies": { | |
| 2982 | + "fsevents": "~2.3.3" | |
| 2983 | + }, | |
| 2984 | + "peerDependencies": { | |
| 2985 | + "@types/node": "^20.19.0 || >=22.12.0", | |
| 2986 | + "@vitejs/devtools": "^0.1.0", | |
| 2987 | + "esbuild": "^0.27.0 || ^0.28.0", | |
| 2988 | + "jiti": ">=1.21.0", | |
| 2989 | + "less": "^4.0.0", | |
| 2990 | + "sass": "^1.70.0", | |
| 2991 | + "sass-embedded": "^1.70.0", | |
| 2992 | + "stylus": ">=0.54.8", | |
| 2993 | + "sugarss": "^5.0.0", | |
| 2994 | + "terser": "^5.16.0", | |
| 2995 | + "tsx": "^4.8.1", | |
| 2996 | + "yaml": "^2.4.2" | |
| 2997 | + }, | |
| 2998 | + "peerDependenciesMeta": { | |
| 2999 | + "@types/node": { | |
| 3000 | + "optional": true | |
| 3001 | + }, | |
| 3002 | + "@vitejs/devtools": { | |
| 3003 | + "optional": true | |
| 3004 | + }, | |
| 3005 | + "esbuild": { | |
| 3006 | + "optional": true | |
| 3007 | + }, | |
| 3008 | + "jiti": { | |
| 3009 | + "optional": true | |
| 3010 | + }, | |
| 3011 | + "less": { | |
| 3012 | + "optional": true | |
| 3013 | + }, | |
| 3014 | + "sass": { | |
| 3015 | + "optional": true | |
| 3016 | + }, | |
| 3017 | + "sass-embedded": { | |
| 3018 | + "optional": true | |
| 3019 | + }, | |
| 3020 | + "stylus": { | |
| 3021 | + "optional": true | |
| 3022 | + }, | |
| 3023 | + "sugarss": { | |
| 3024 | + "optional": true | |
| 3025 | + }, | |
| 3026 | + "terser": { | |
| 3027 | + "optional": true | |
| 3028 | + }, | |
| 3029 | + "tsx": { | |
| 3030 | + "optional": true | |
| 3031 | + }, | |
| 3032 | + "yaml": { | |
| 3033 | + "optional": true | |
| 3034 | + } | |
| 3035 | + } | |
| 3036 | + }, | |
| 3037 | + "node_modules/which": { | |
| 3038 | + "version": "2.0.2", | |
| 3039 | + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", | |
| 3040 | + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", | |
| 3041 | + "dev": true, | |
| 3042 | + "license": "ISC", | |
| 3043 | + "dependencies": { | |
| 3044 | + "isexe": "^2.0.0" | |
| 3045 | + }, | |
| 3046 | + "bin": { | |
| 3047 | + "node-which": "bin/node-which" | |
| 3048 | + }, | |
| 3049 | + "engines": { | |
| 3050 | + "node": ">= 8" | |
| 3051 | + } | |
| 3052 | + }, | |
| 3053 | + "node_modules/word-wrap": { | |
| 3054 | + "version": "1.2.5", | |
| 3055 | + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", | |
| 3056 | + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", | |
| 3057 | + "dev": true, | |
| 3058 | + "license": "MIT", | |
| 3059 | + "engines": { | |
| 3060 | + "node": ">=0.10.0" | |
| 3061 | + } | |
| 3062 | + }, | |
| 3063 | + "node_modules/yallist": { | |
| 3064 | + "version": "3.1.1", | |
| 3065 | + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", | |
| 3066 | + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", | |
| 3067 | + "dev": true, | |
| 3068 | + "license": "ISC" | |
| 3069 | + }, | |
| 3070 | + "node_modules/yocto-queue": { | |
| 3071 | + "version": "0.1.0", | |
| 3072 | + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", | |
| 3073 | + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", | |
| 3074 | + "dev": true, | |
| 3075 | + "license": "MIT", | |
| 3076 | + "engines": { | |
| 3077 | + "node": ">=10" | |
| 3078 | + }, | |
| 3079 | + "funding": { | |
| 3080 | + "url": "https://github.com/sponsors/sindresorhus" | |
| 3081 | + } | |
| 3082 | + }, | |
| 3083 | + "node_modules/zod": { | |
| 3084 | + "version": "4.3.6", | |
| 3085 | + "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", | |
| 3086 | + "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", | |
| 3087 | + "dev": true, | |
| 3088 | + "license": "MIT", | |
| 3089 | + "funding": { | |
| 3090 | + "url": "https://github.com/sponsors/colinhacks" | |
| 3091 | + } | |
| 3092 | + }, | |
| 3093 | + "node_modules/zod-validation-error": { | |
| 3094 | + "version": "4.0.2", | |
| 3095 | + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", | |
| 3096 | + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", | |
| 3097 | + "dev": true, | |
| 3098 | + "license": "MIT", | |
| 3099 | + "engines": { | |
| 3100 | + "node": ">=18.0.0" | |
| 3101 | + }, | |
| 3102 | + "peerDependencies": { | |
| 3103 | + "zod": "^3.25.0 || ^4.0.0" | |
| 3104 | + } | |
| 3105 | + } | |
| 3106 | + } | |
| 3107 | +} |
+++ package.json
... | ... | @@ -0,0 +1,34 @@ |
| 1 | +{ | |
| 2 | + "name": "base-react", | |
| 3 | + "private": true, | |
| 4 | + "version": "0.0.0", | |
| 5 | + "type": "module", | |
| 6 | + "scripts": { | |
| 7 | + "dev": "vite", | |
| 8 | + "build": "tsc -b && vite build", | |
| 9 | + "build:watch": "vite build --watch", | |
| 10 | + "lint": "eslint .", | |
| 11 | + "preview": "vite preview" | |
| 12 | + }, | |
| 13 | + "dependencies": { | |
| 14 | + "@tanstack/react-query": "^5.99.0", | |
| 15 | + "react": "^19.2.4", | |
| 16 | + "react-dom": "^19.2.4", | |
| 17 | + "react-router-dom": "^7.14.1", | |
| 18 | + "react-toastify": "^11.1.0" | |
| 19 | + }, | |
| 20 | + "devDependencies": { | |
| 21 | + "@eslint/js": "^9.39.4", | |
| 22 | + "@types/node": "^24.12.2", | |
| 23 | + "@types/react": "^19.2.14", | |
| 24 | + "@types/react-dom": "^19.2.3", | |
| 25 | + "@vitejs/plugin-react": "^6.0.1", | |
| 26 | + "eslint": "^9.39.4", | |
| 27 | + "eslint-plugin-react-hooks": "^7.0.1", | |
| 28 | + "eslint-plugin-react-refresh": "^0.5.2", | |
| 29 | + "globals": "^17.4.0", | |
| 30 | + "typescript": "~6.0.2", | |
| 31 | + "typescript-eslint": "^8.58.0", | |
| 32 | + "vite": "^8.0.4" | |
| 33 | + } | |
| 34 | +} |
+++ public/publish/adm/images/component/icon_alram.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_arrow_down.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_arrow_left.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_arrow_left_page.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_arrow_right.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_arrow_right_gray_24.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_arrow_right_page.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_arrow_up.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_calendar.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_clock.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_comment.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_double_arrow_left_page.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_double_arrow_right_page.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_excel.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_excel_download.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_excel_upload.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_file.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_file_blue.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_file_table.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_folder.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_folder_open.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_home.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_ip.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_lock.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_new.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_note.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_plus.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_print.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_x.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_x_red.png
| Binary file is not shown |
+++ public/publish/adm/images/component/icon_x_white.png
| Binary file is not shown |
+++ public/publish/adm/images/content/login_bg_left.png
| Binary file is not shown |
+++ public/publish/adm/images/content/login_bg_right.png
| Binary file is not shown |
+++ public/publish/adm/images/content/login_img.jpg
| Binary file is not shown |
+++ public/publish/adm/images/content/no_img.jpg
| Binary file is not shown |
+++ public/publish/adm/images/login/login.jpg
| Binary file is not shown |
+++ public/publish/adm/images/login/login_bg_left.png
| Binary file is not shown |
+++ public/publish/adm/images/login/login_bg_right.png
| Binary file is not shown |
+++ public/publish/usr/images/common/home.png
| Binary file is not shown |
+++ public/publish/usr/images/common/lang.png
| Binary file is not shown |
+++ public/publish/usr/images/common/lang_scrolled.png
| Binary file is not shown |
+++ public/publish/usr/images/common/logo.png
| Binary file is not shown |
+++ public/publish/usr/images/common/no_images.jpg
| Binary file is not shown |
+++ public/publish/usr/images/common/search.png
| Binary file is not shown |
+++ public/publish/usr/images/community/visual.jpg
| Binary file is not shown |
+++ public/publish/usr/images/company/card_01.png
| Binary file is not shown |
+++ public/publish/usr/images/company/card_02.png
| Binary file is not shown |
+++ public/publish/usr/images/company/card_03.png
| Binary file is not shown |
+++ public/publish/usr/images/company/card_04.png
| Binary file is not shown |
+++ public/publish/usr/images/company/content_bg.png
| Binary file is not shown |
+++ public/publish/usr/images/company/corp_bg.png
| Binary file is not shown |
+++ public/publish/usr/images/company/history_img_01.png
| Binary file is not shown |
+++ public/publish/usr/images/company/history_img_02.png
| Binary file is not shown |
+++ public/publish/usr/images/company/obg_deco.png
| Binary file is not shown |
+++ public/publish/usr/images/company/visual.jpg
| Binary file is not shown |
+++ public/publish/usr/images/company/visual_mobile.jpg
| Binary file is not shown |
+++ public/publish/usr/images/component/arrow_bottom.png
| Binary file is not shown |
+++ public/publish/usr/images/component/arrow_left.png
| Binary file is not shown |
+++ public/publish/usr/images/component/arrow_right.png
| Binary file is not shown |
+++ public/publish/usr/images/component/arrow_top.png
| Binary file is not shown |
+++ public/publish/usr/images/component/email.png
| Binary file is not shown |
+++ public/publish/usr/images/component/fax.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_down.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_down_18.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_down_blue.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_down_gray_18.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_down_white.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_left_page.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_right_gray.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_right_page.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_up_18.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_up_blue.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_up_gray_18.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_arrow_up_white.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_calendar.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_comment.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_double_arrow_left_page.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_double_arrow_right_page.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_file.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_file_blue.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_file_table.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_home.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_lock.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_select.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_view.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_writer.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_x.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_x_red.png
| Binary file is not shown |
+++ public/publish/usr/images/component/icon_x_white.png
| Binary file is not shown |
+++ public/publish/usr/images/component/list_circle.png
| Binary file is not shown |
+++ public/publish/usr/images/component/list_square.png
| Binary file is not shown |
+++ public/publish/usr/images/component/location.png
| Binary file is not shown |
+++ public/publish/usr/images/component/phone.png
| Binary file is not shown |
+++ public/publish/usr/images/component/step_next.png
| Binary file is not shown |
+++ public/publish/usr/images/gallery_img.png
| Binary file is not shown |
+++ public/publish/usr/images/main/box_blue.png
| Binary file is not shown |
+++ public/publish/usr/images/main/box_purple.png
| Binary file is not shown |
+++ public/publish/usr/images/main/box_skyblue.png
| Binary file is not shown |
+++ public/publish/usr/images/main/btn_more.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_arrow_blue.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_arrow_white.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_calendar.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_data.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_next.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_notice.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_pause.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_plus.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_prev.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_view.png
| Binary file is not shown |
+++ public/publish/usr/images/main/icon_writer.png
| Binary file is not shown |
+++ public/publish/usr/images/main/visual01.jpg
| Binary file is not shown |
+++ public/publish/usr/images/main/visual02.jpg
| Binary file is not shown |
+++ public/publish/usr/images/main/visual03.jpg
| Binary file is not shown |
+++ public/publish/usr/images/major_result/cancer_1.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/cancer_2.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/ciliogenesis_1.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/ciliogenesis_2.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/ciliogenesis_3.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/melanophagy_1.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/melanophagy_2.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/melanophagy_3.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/melanophagy_4.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/mitophagy_1.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/mitophagy_2.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/mitophagy_3.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/mitophagy_4.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/mitophagy_5.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/pexophagy_1.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/pexophagy_2.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/pexophagy_3.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/polygon_blue.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/polygon_orange.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/polygon_purple.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/rd_1.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/rd_2.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/rd_3.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/rd_4.png
| Binary file is not shown |
+++ public/publish/usr/images/major_result/visual.jpg
| Binary file is not shown |
+++ public/publish/usr/images/major_result/visual_mobile.jpg
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/autophagy_1.png
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/autophagy_2.png
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/background_1.png
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/background_2.png
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/background_3.png
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/background_4.png
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/visual.jpg
| Binary file is not shown |
+++ public/publish/usr/images/platform_tech/visual_mobile.jpg
| Binary file is not shown |
+++ src/App.tsx
... | ... | @@ -0,0 +1,65 @@ |
| 1 | +import { useEffect, useState } from 'react'; | |
| 2 | +import { UserLayout } from './user/UserLayout'; | |
| 3 | +import { UserListPage } from './user/UserListPage'; | |
| 4 | +import {AdminLayout} from "./admin/layout/AdminLayout.tsx"; | |
| 5 | + | |
| 6 | +type Skin = 'admin' | 'user'; | |
| 7 | + | |
| 8 | +function getInitialSkin(): Skin { | |
| 9 | + const params = new URLSearchParams(window.location.search); | |
| 10 | + return params.get('skin') === 'user' ? 'user' : 'admin'; | |
| 11 | +} | |
| 12 | + | |
| 13 | +function switchSkin(nextSkin: Skin) { | |
| 14 | + const url = new URL(window.location.href); | |
| 15 | + url.searchParams.set('skin', nextSkin); | |
| 16 | + window.location.href = url.toString(); | |
| 17 | +} | |
| 18 | + | |
| 19 | +export default function App() { | |
| 20 | + const [skin] = useState<Skin>(getInitialSkin); | |
| 21 | + const [styleReady, setStyleReady] = useState(false); | |
| 22 | + | |
| 23 | + useEffect(() => { | |
| 24 | + let mounted = true; | |
| 25 | + | |
| 26 | + document.body.dataset.skin = skin; | |
| 27 | + | |
| 28 | + const loadStyles = skin === 'admin' ? import('./admin') : import('./user'); | |
| 29 | + loadStyles.finally(() => { | |
| 30 | + if (mounted) { | |
| 31 | + setStyleReady(true); | |
| 32 | + } | |
| 33 | + }); | |
| 34 | + | |
| 35 | + return () => { | |
| 36 | + mounted = false; | |
| 37 | + }; | |
| 38 | + }, [skin]); | |
| 39 | + | |
| 40 | + if (!styleReady) { | |
| 41 | + return <div style={{ padding: 24 }}>Loading publishing styles...</div>; | |
| 42 | + } | |
| 43 | + | |
| 44 | + return ( | |
| 45 | + <> | |
| 46 | + <div className="skin_switcher"> | |
| 47 | + <button type="button" className={skin === 'admin' ? 'active' : ''} onClick={() => switchSkin('admin')}> | |
| 48 | + Admin layout | |
| 49 | + </button> | |
| 50 | + <button type="button" className={skin === 'user' ? 'active' : ''} onClick={() => switchSkin('user')}> | |
| 51 | + User layout | |
| 52 | + </button> | |
| 53 | + </div> | |
| 54 | + | |
| 55 | + {skin === 'admin' ? ( | |
| 56 | + <AdminLayout children={undefined}> | |
| 57 | + </AdminLayout> | |
| 58 | + ) : ( | |
| 59 | + <UserLayout> | |
| 60 | + <UserListPage /> | |
| 61 | + </UserLayout> | |
| 62 | + )} | |
| 63 | + </> | |
| 64 | + ); | |
| 65 | +} |
+++ src/admin/index.ts
... | ... | @@ -0,0 +1,15 @@ |
| 1 | +// common | |
| 2 | +import '../styles/common/reset.css' | |
| 3 | +import '../styles/common/font.css' | |
| 4 | +import '../styles/common/style.css' | |
| 5 | + | |
| 6 | +import '../styles/adm/common.css' | |
| 7 | +import '../styles/adm/layout.css' | |
| 8 | +import '../styles/adm/style.css' | |
| 9 | +import '../styles/adm/button.css' | |
| 10 | +import '../styles/adm/tab.css' | |
| 11 | +import '../styles/adm/table.css' | |
| 12 | +import '../styles/adm/calendar.css' | |
| 13 | +import '../styles/adm/popup.css' | |
| 14 | +import '../styles/adm/dashboard.css' | |
| 15 | +import '../styles/adm/validate.css' |
+++ src/admin/layout/AdminLayout.tsx
... | ... | @@ -0,0 +1,20 @@ |
| 1 | +import type {ReactNode} from "react"; | |
| 2 | +import {AdminSideBar} from "./AdminSideBar.tsx"; | |
| 3 | + | |
| 4 | +type AdminLayoutProps = { | |
| 5 | + children: ReactNode; | |
| 6 | +} | |
| 7 | + | |
| 8 | + | |
| 9 | +export function AdminLayout({children}: AdminLayoutProps) { | |
| 10 | + return ( | |
| 11 | + <div className="wrap"> | |
| 12 | + <AdminSideBar/> | |
| 13 | + <div className="container sub"> | |
| 14 | + <div className="content_wrap"> | |
| 15 | + {children} | |
| 16 | + </div> | |
| 17 | + </div> | |
| 18 | + </div> | |
| 19 | + ); | |
| 20 | +}(No newline at end of file) |
+++ src/admin/layout/AdminSideBar.tsx
... | ... | @@ -0,0 +1,31 @@ |
| 1 | +import {MenuList} from "../component/menu/MenuList.tsx"; | |
| 2 | + | |
| 3 | +const menuList = [ | |
| 4 | + {name: "1", no: '6', url: '테스트', upperNo: '1'}, | |
| 5 | + {name: "2", no: '7', url: '테스트', upperNo: '1'}, | |
| 6 | + {name: "3", no: '8', url: '테스트', upperNo: '2'}, | |
| 7 | + {name: "4", no: '9', url: '테스트', upperNo: '2'}, | |
| 8 | + {name: "5", no: '10', url: '테스트', upperNo: '2'}, | |
| 9 | + | |
| 10 | +] | |
| 11 | + | |
| 12 | +const headMenuList = [ | |
| 13 | + {name: "테스트 메뉴1", no: '1', url: '테스트', upperNo: '0'}, | |
| 14 | + {name: "테스트 메뉴2", no: '2', url: '테스트', upperNo: '0'}, | |
| 15 | + {name: "테스트 메뉴3", no: '3', url: '테스트', upperNo: '0'}, | |
| 16 | + {name: "테스트 메뉴4", no: '4', url: '테스트', upperNo: '0'}, | |
| 17 | + {name: "테스트 메뉴5", no: '5', url: '테스트', upperNo: '0'}, | |
| 18 | +] | |
| 19 | + | |
| 20 | +export const AdminSideBar = () => { | |
| 21 | + return ( | |
| 22 | + <div className={"menu_wrap"}> | |
| 23 | + <h1 className={"logo"}> | |
| 24 | + <a href="/">DashBoard</a> | |
| 25 | + </h1> | |
| 26 | + <nav className={"menu"}> | |
| 27 | + <MenuList headMenuList={headMenuList} menuList={menuList}/> | |
| 28 | + </nav> | |
| 29 | + </div> | |
| 30 | + ); | |
| 31 | +}(No newline at end of file) |
+++ src/admin/route/AdminRoute.tsx
... | ... | @@ -0,0 +1,8 @@ |
| 1 | + | |
| 2 | + | |
| 3 | +export const adminRoute = () => { | |
| 4 | + return ( | |
| 5 | + <> | |
| 6 | + </> | |
| 7 | + ); | |
| 8 | +} |
+++ src/main.tsx
... | ... | @@ -0,0 +1,10 @@ |
| 1 | +import { StrictMode } from 'react'; | |
| 2 | +import { createRoot } from 'react-dom/client'; | |
| 3 | +import App from './App'; | |
| 4 | +import './styles/app.css'; | |
| 5 | + | |
| 6 | +createRoot(document.getElementById('root')!).render( | |
| 7 | + <StrictMode> | |
| 8 | + <App /> | |
| 9 | + </StrictMode>, | |
| 10 | +); |
+++ src/styles/adm/calendar.css
... | ... | @@ -0,0 +1,20 @@ |
| 1 | +button.duet-date__toggle{height:100%;top:0;} | |
| 2 | +*[class*="endDate"] .duet-date__dialog{left:auto;right:0;} | |
| 3 | + | |
| 4 | +.wrap .duet-date__dialog-content{padding:30px 20px;border-radius:16px;;} | |
| 5 | +.wrap .duet-date__dialog-content *{font-family:'pretendard';} | |
| 6 | +.wrap .duet-date__mobile{display:none;} | |
| 7 | +.wrap .duet-date__header{gap:12px;} | |
| 8 | +.wrap .duet-date__header>div.duet-date__nav{display:none;} | |
| 9 | +.wrap .duet-date__header>div:first-child .duet-date__select{width:100%;} | |
| 10 | +.wrap .duet-date__select{width:45%;} | |
| 11 | +.wrap .duet-date__select-label{width:100%;border:0;background-color:#EDF0F5;} | |
| 12 | + | |
| 13 | +.wrap .duet-date__table tr{background:#fff;border-bottom:0;} | |
| 14 | +.wrap .duet-date__table-header,.wrap .duet-date__cell,.wrap .duet-date__day,.wrap .list_top .search_area .duet-date__day{width:36px !important;height:36px !important;border-bottom:3px solid transparent;line-height:1;} | |
| 15 | +.wrap .duet-date__day:hover::before,.wrap .duet-date__day.is-today::before,.wrap .duet-date__day[aria-pressed=true],.wrap .duet-date__day:focus{background:var(--secondary-color) !important;font-weight:bold !important;color:#fff !important;border-radius:100% !important;border-bottom:0 !important;} | |
| 16 | +.wrap .duet-date__day.is-today{font-weight:500;color:var(--secondary-color);background:#fff;border:0;border-bottom:3px solid var(--secondary-color);border-radius:0;box-shadow:none;} | |
| 17 | +.wrap .duet-date__day.is-today::before{display:none;} | |
| 18 | + | |
| 19 | +.duet-date__row td:first-child button{color:var(--red-color);} | |
| 20 | +.duet-date__row td:last-child button{color:var(--primary-color);} |
+++ src/styles/adm/common.css
... | ... | @@ -0,0 +1,53 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +:root{ | |
| 4 | + --primary-color: #2557B4; | |
| 5 | + --primary-color-hover: #214EA2; | |
| 6 | + --primary-light-color: #F4F7FB; | |
| 7 | + --primary-light-color-hover: #DCE4F3; | |
| 8 | + --primary-lighter-color: #E9EEF8; | |
| 9 | + --primary-lighter-color-hover: #CFDAEF; | |
| 10 | + --primary-dark-color: #1C4187; | |
| 11 | + --primary-dark-color-hover: #16346C; | |
| 12 | + | |
| 13 | + --secondary-color: #F86A3C; | |
| 14 | + --secondary-color-hover: #DF5F36; | |
| 15 | + --secondary-light-color: #FFF8F5; | |
| 16 | + --secondary-light-color-hover: #FEE7E0; | |
| 17 | + --secondary-dark-color: #BA502D; | |
| 18 | + --secondary-dark-color-hover: #954024; | |
| 19 | + | |
| 20 | + --red-color: #e81717; | |
| 21 | + --red-color-hover: #d11515; | |
| 22 | + --red-light-color: #fde8e8; | |
| 23 | + --red-light-color-hover: #fee9e2; | |
| 24 | + | |
| 25 | + --green-color: #289C77; | |
| 26 | + --green-color-hover: #067b14; | |
| 27 | + | |
| 28 | + --gray-color: #81899C; | |
| 29 | + --gray-color-hover: #676e80; | |
| 30 | + --lightgray-color: #D5D9E3; | |
| 31 | + --lightgray-color-hover: #BFC3CD; | |
| 32 | + | |
| 33 | + --primary-title-font:'Pretendard'; | |
| 34 | + --secondary-title-font:'Gmarket Sans TTF'; | |
| 35 | + | |
| 36 | + --primary-title-color:#1B1C2B; | |
| 37 | + --secondary-title-color:#252836; | |
| 38 | + --body-text-color:#313337; | |
| 39 | + | |
| 40 | + --disable-fill-bg-color:#EAEBEF; | |
| 41 | + --disable-fill-line-color:#D3D7DE; | |
| 42 | + --disable-fill-text-color:#8D9098; | |
| 43 | + | |
| 44 | + --default-line-color:#d3d7de; | |
| 45 | + --disable-line-bg-color:#F5F6F7; | |
| 46 | + --disable-line-border-color:#eaebef; | |
| 47 | + --disable-line-text-color:#bcc0ca; | |
| 48 | +} | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + |
+++ src/styles/adm/dashboard.css
... | ... | @@ -0,0 +1,115 @@ |
| 1 | +/* 怨듯넻 */ | |
| 2 | +.dashboard .box_title{width:100%;font-size:20px;font-weight:700;} | |
| 3 | +.dashboard .box_wrap{display:flex;flex-wrap:wrap;justify-content:flex-start;padding:40px;box-sizing:border-box;gap:30px;} | |
| 4 | +.dashboard .box{width:calc((100%/3) - 20px);height:auto;border-radius:5px;border:5px solid #EFF2F9;background:#fff;} | |
| 5 | +.dashboard .box_tit{display:flex;height:60px;align-items:center;justify-content:space-between;padding:0 25px;border-bottom:1px solid #E6E8EB;box-sizing: border-box;} | |
| 6 | +.dashboard .box_tit p{font-size:20px;font-weight:bold;letter-spacing:-0.5px;color:#333;} | |
| 7 | +.dashboard .box_tit .btn_plus{display:flex;font-size:16px;font-weight:300;color:#aaa;letter-spacing:-0.5px;align-items:center;gap:8px;} | |
| 8 | +.dashboard .box_tit .btn_plus i{display:inline-block;width:14px;height:14px;background:url(/publish/adm/images/component/icon_plus.png) no-repeat center center;margin:-2px 0 0 0;transition:all .5s;} | |
| 9 | +.dashboard .box_tit .btn_plus:hover{color:#666;font-weight:400;} | |
| 10 | +.dashboard .box_tit .btn_plus:hover i{transform:rotate(90deg);} | |
| 11 | +.dashboard .box_cont{position:relative;height:calc(100% - 60px);padding:20px 25px;box-sizing:border-box;} | |
| 12 | +/* //怨듯넻 */ | |
| 13 | + | |
| 14 | +/* ?ㅻ뒛 ?ъ슜???꾪솴 */ | |
| 15 | +.today_box{display: flex; justify-content: space-between; align-items: center;} | |
| 16 | +.today_box .today_status{text-align: center; width: calc((100% - 80px)/3);} | |
| 17 | +.today_box p{font-size: 16px; font-weight: 300; margin-top: 12px;} | |
| 18 | +.today_box .today_status i{display: block; width: 84px; height: 84px; background-color: #E8ECF4; border-radius: 100%; margin: 23px auto; background-repeat: no-repeat; background-position: center;} | |
| 19 | +/* .today_box .status01 i{background-image: url(/publish/adm/images/dashboard/icon_today01.png);} | |
| 20 | +.today_box .status02 i{background-image: url(/publish/adm/images/dashboard/icon_today02.png);} | |
| 21 | +.today_box .status03 i{background-image: url(/publish/adm/images/dashboard/icon_today03.png);} */ | |
| 22 | +.today_box span{font-size: 24px; font-weight: bold;} | |
| 23 | +/* .today_box .status_pcs{width: 24px; height: 9px; background-image: url(/publish/adm/images/dashboard/icon_today_pcs.png);} */ | |
| 24 | +/* //?ㅻ뒛 ?ъ슜???꾪솴 */ | |
| 25 | + | |
| 26 | +/* ?쒖뒪?쒓?由?*/ | |
| 27 | +.system_box{display: flex; flex-wrap: wrap; justify-content: space-between;} | |
| 28 | +.system_box a{position: relative; display: flex; flex-flow: column; width: calc((100% - 10px)/2); height: 90px; justify-content: center; align-items: flex-start; border-radius: 10px; background-color: #666; margin: 5px 0; padding: 0 20px; box-sizing: border-box; background-repeat: no-repeat; background-position: calc(100% - 20px) center; box-shadow: 0 0 5px rgba(0,0,0,0.3); transition: background-color 0.2s ease-in-out;} | |
| 29 | +.system_box a:hover{transition: background-color 0.2s ease-in-out;} | |
| 30 | +.system_box .system01{background-color: #7991C3;/* background-image: url(/publish/adm/images/dashboard/icon_system01.png); */} | |
| 31 | +.system_box .system01:hover{background-color: #6281c4;} | |
| 32 | +.system_box .system02{background-color: #2C3B5B;/* background-image: url(/publish/adm/images/dashboard/icon_system02.png); */} | |
| 33 | +.system_box .system02:hover{background-color: #1F2D4A;} | |
| 34 | +.system_box .system03{background-color: #2557B4;/* background-image: url(/publish/adm/images/dashboard/icon_system03.png); */} | |
| 35 | +.system_box .system03:hover{background-color: #18418D;} | |
| 36 | +.system_box .system04{background-color: #F86A3C;/* background-image: url(/publish/adm/images/dashboard/icon_system04.png); */} | |
| 37 | +.system_box .system04:hover{background-color: rgb(241, 85, 33);} | |
| 38 | +.system_box a::before{position: absolute; content: ""; width: 58px; height: 58px; background-color: rgba(255,255,255,0.3); border-radius: 100%; right: -5px; bottom: -5px;} | |
| 39 | +.system_box p{font-size: 18px; font-weight: 400; color: #fff; letter-spacing: -0.5px; width: calc(100% - 40px); line-height: 1.3;} | |
| 40 | +.system_box span{display: block; font-size: 15px; font-weight: 300; color: #fff; padding-top: 10px;} | |
| 41 | +/* //?쒖뒪?쒓?由?*/ | |
| 42 | + | |
| 43 | +/* 2021 ?좎껌 泥섎━?꾪솴 */ | |
| 44 | +.dashboard .box_cont.ds_box{padding-top:27px;} | |
| 45 | +.ds_box .chartType01 li{display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px;} | |
| 46 | +.ds_box .chartType01 li:last-child{margin-bottom: 0;} | |
| 47 | +.ds_box .chartType01 p{font-size: 15px; font-weight: 400; width: auto; min-width:30px; text-align: right;} | |
| 48 | +.ds_box .chartType01 p:first-child{margin:0 10px 0 0;} | |
| 49 | +.ds_box .chartType01 .chart_wrap{width: calc(100% - 100px); height: 15px; background-color: #f1eeed; border-radius: 10px; box-shadow: inset 3px 2px 3px rgba(0,0,0,0.15); overflow: hidden;} | |
| 50 | +.ds_box .chartType01 .chart_wrap div{width: 50%; height: 100%; background-color: #3A3C41; border-radius: 10px; box-shadow: inset 3px 2px 3px rgba(0,0,0,0.15);} | |
| 51 | +.ds_box .chartType01 li:first-child .chart_wrap div{background-color: #428ef6;} | |
| 52 | +.ds_box .chartType01 li:nth-child(2) .chart_wrap div{background-color: #fc6d38;} | |
| 53 | +.ds_box .chartType01 li:nth-child(3) .chart_wrap div{background-color: #f7be0f;} | |
| 54 | +.ds_box .chartType01 li:nth-child(4) .chart_wrap div{background-color: #ad65eb;} | |
| 55 | +.ds_box .chartType01 li:last-child .chart_wrap div{background-color: #41b691;} | |
| 56 | +.ds_box .case_number{color:#3A3C41; white-space:nowrap;} | |
| 57 | +.ds_box .case_number span{font-weight:600;} | |
| 58 | +.ds_box .chart_num{display: flex; width: calc(100% - 100px); justify-content: space-between; margin-left: auto; margin:15px auto 0 auto; color:#666;} | |
| 59 | +/* //2021 ?좎껌 泥섎━?꾪솴 */ | |
| 60 | + | |
| 61 | +/* ??쒕낫??由ъ뒪??*/ | |
| 62 | +.dashboard_list li{display:flex;font-weight:300;letter-spacing:-0.5px;border-bottom:1px solid #e5e5e5;padding:0 0 8px 0;margin:0 0 12px 0;justify-content:space-between;} | |
| 63 | +.dashboard_list li:last-child{border-bottom:0;margin:0;padding:0;} | |
| 64 | +.dashboard_list li p,.notice_box li a{padding:0 5px;box-sizing:border-box;} | |
| 65 | +.dashboard_list li:hover p,.dashboard_list li:hover a{color:#222;font-weight:400;} | |
| 66 | +.dashboard_list li a{width:98%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:17px;color:#222;} | |
| 67 | +.dashboard_list .list_tit{display:inline-block;width:calc(100% - 170px);white-space:nowrap;text-overflow:ellipsis;overflow:hidden;} | |
| 68 | +.dashboard_list .list_tit img{display:inline-block;vertical-align:text-top;} | |
| 69 | +.dashboard_list .list_writer,.dashboard_list .list_date{font-size:16px;color:#777777;} | |
| 70 | +.dashboard_list .list_writer{width:60px;max-width:60px;text-align: right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;} | |
| 71 | +.dashboard_list .list_date{width: 100px; text-align: right;} | |
| 72 | + | |
| 73 | +.dashboard_list.status{display:flex;flex-wrap:wrap;} | |
| 74 | +.dashboard_list.status li{width:100%;align-items:center;gap:8px;} | |
| 75 | + | |
| 76 | +.dashboard_list .status{display:flex;min-width:75px;min-height:27px;height: 27px;font-size: 14px;font-weight:500;padding:0 12px;border-radius:28px;justify-content:center;align-items:center;transition: all 0.3s;} | |
| 77 | +.dashboard_list .line.gray{border:1px solid #c1c5ce;color:#616576;} | |
| 78 | +.dashboard_list .line.blue{border:1px solid #2557B4;color:#2557B4;} | |
| 79 | +.dashboard_list .line.orange{border:1px solid #F86A3C;color:#F86A3C;} | |
| 80 | +.dashboard_list .fill.gray{background:#e4e7ee;color:#616576;} | |
| 81 | +.dashboard_list .fill.green{background:#d9f0e9;color:#289c77;} | |
| 82 | +.dashboard_list .fill.purple{background:#f3e8fc;color:#ad65eb;} | |
| 83 | + | |
| 84 | +.dashboard_list li:hover .line.gray{border:1px solid #c1c5ce;background:#F5F6F7;color:#616576;} | |
| 85 | +.dashboard_list li:hover .line.blue{border:1px solid #2557B4;background:#F4F7FB;color:#2557B4;} | |
| 86 | +.dashboard_list li:hover .line.orange{border:1px solid #F86A3C;background:#FEF0EC;color:#F86A3C;} | |
| 87 | +.dashboard_list li:hover .fill.gray{background:#d2d6df;color:#494c59;} | |
| 88 | +.dashboard_list li:hover .fill.green{background:#C1E8DC;color:#177C5C;} | |
| 89 | +.dashboard_list li:hover .fill.purple{background:#EDD8FE;color:#9747DD;} | |
| 90 | + | |
| 91 | +/* //??쒕낫??由ъ뒪??*/ | |
| 92 | + | |
| 93 | +/* 李⑦듃 */ | |
| 94 | +.chart_box{text-align: center;} | |
| 95 | +.chart_box img{box-sizing: border-box; width: 100%; height: 100%;}/* ?섏쨷??李⑦듃 異붽??섍퀬 吏??寃?*/ | |
| 96 | +/* //李⑦듃 */ | |
| 97 | + | |
| 98 | +@media all and (max-width:1600px){ | |
| 99 | + | |
| 100 | + /* 怨듯넻 */ | |
| 101 | + .dashboard .box{width: calc((100% - 30px)/2);} | |
| 102 | + /* //怨듯넻 */ | |
| 103 | + | |
| 104 | +} | |
| 105 | + | |
| 106 | +@media all and (max-width:1300px){ | |
| 107 | + | |
| 108 | + /* ?쒖뒪?쒓?由?*/ | |
| 109 | + .system_box a{background-size: 35px;} | |
| 110 | + .system_box .system01{background-size: 33px;} | |
| 111 | + .system_box .system04{background-size: 30px;} | |
| 112 | + /* //?쒖뒪?쒓?由?*/ | |
| 113 | + | |
| 114 | +} | |
| 115 | + |
+++ src/styles/adm/icon.css
... | ... | @@ -0,0 +1,24 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.icon{display:inline-block;width:100%;height:100%;vertical-align:middle;;} | |
| 4 | + | |
| 5 | +.icon.excel{width:40px;height:40px;background:url(/publish/adm/images/component/icon_excel.png) no-repeat center center;} | |
| 6 | +.icon.excel.download{background:url(/publish/adm/images/component/icon_excel_download.png) no-repeat center center;} | |
| 7 | +.icon.excel.upload{background:url(/publish/adm/images/component/icon_excel_upload.png) no-repeat center center;background-size:contain;} | |
| 8 | + | |
| 9 | +.icon.file{width:20px;height:20px;background:url(/publish/adm/images/component/icon_file.png) no-repeat center center;} | |
| 10 | +.icon.file.blue{background:url(/publish/adm/images/component/icon_file_blue.png) no-repeat center center;} | |
| 11 | +.icon.file_bg{width:60px;height:60px;background:url(/publish/adm/images/component/icon_file_table.png) no-repeat center center;} | |
| 12 | + | |
| 13 | +.icon.delete{width:30px;height:30px;background:url(/publish/adm/images/component/icon_x.png) no-repeat center;} | |
| 14 | +.icon.delete.red{background:url(/publish/adm/images/component/icon_x_red.png) no-repeat center;} | |
| 15 | + | |
| 16 | +.icon.x{width:30px;height:30px;background:url(/publish/adm/images/component/icon_x.png) no-repeat center;} | |
| 17 | +.icon.x.white{background:url(/publish/adm/images/component/icon_x_white.png) no-repeat center;} | |
| 18 | +.icon.x.red{background:url(/publish/adm/images/component/icon_x_red.png) no-repeat center;} | |
| 19 | + | |
| 20 | +.icon.excel{width:40px;height:40px;background:url(/publish/adm/images/component/icon_excel.png) no-repeat center center;} | |
| 21 | + | |
| 22 | +.icon.lock{width:24px;height:24px;background:url(/publish/adm/images/component/icon_lock.png) no-repeat center center;} | |
| 23 | + | |
| 24 | +.icon.comment{width:20px;height:20px;background:url(/publish/adm/images/component/icon_comment.png) no-repeat center center;} |
+++ src/styles/adm/layout.css
... | ... | @@ -0,0 +1,286 @@ |
| 1 | +.wrap{width:100%;height:100%;position:relative;display:flex;font-family:var(--primary-title-font);align-items:stretch;min-width:1240px;} | |
| 2 | +.container{width:calc(100% - 280px);} | |
| 3 | +.content_wrap{position:relative;height:calc(100% - 100px);padding:0 48px;margin:0 0 60px 0;} | |
| 4 | + | |
| 5 | +.content_title{display:flex;align-items:center;justify-content:space-between;} | |
| 6 | +.content_title h3{position:relative;padding:0 0 0 20px;margin:0 0 40px 0;;font-size:26px;font-weight:bold;color:var(--primary-title-color);} | |
| 7 | +.content_title h3::before{position:absolute;content:"";width:6px;height:27px;background:var(--primary-color);left:0;top:8px;} | |
| 8 | +.content_title h4{position:relative;padding:0 0 0 20px;margin:0 0 12px 0;;font-size:20px;font-weight:bold;color:var(--primary-title-color);} | |
| 9 | +.content_title h4::before{position:absolute;content:"";width:10px;height:10px;border:3px solid var(--primary-color);border-radius:100%;left:0;top:10px;} | |
| 10 | +.content_title h5{position:relative;padding:0;margin:0;font-size:18px;font-weight:bold;color:var(--primary-color);} | |
| 11 | + | |
| 12 | +.breadcrumb{display:flex;font-size:14px;color:#636469;gap:8px;align-items:center;} | |
| 13 | +.breadcrumb a{position:relative;display:flex;height:24px;padding:0 8px;align-items:center;} | |
| 14 | +.breadcrumb a::after{position:absolute;width:24px;height:24px;content:"";background:url(/publish/adm/images/component/icon_arrow_right_gray_24.png) no-repeat right center;right:-16px;top:1px;} | |
| 15 | +.breadcrumb .home i{display:flex;width:24px;height:24px;background:url(/publish/adm/images/component/icon_home.png) no-repeat center center;} | |
| 16 | +.breadcrumb .current_location{height:24px;padding:0 0 0 8px;color:var(--primary-color);} | |
| 17 | + | |
| 18 | +/* leftmenu */ | |
| 19 | +.menu_wrap{width:280px;min-height:100vh;background-color: #2557b4; box-shadow: 5px 0 10px rgba(0,0,0,0.1); z-index: 1; transition: width 0.3s linear; border-radius: 0 35px 35px 0;} | |
| 20 | +.menu_wrap .logo{width: 100%; height: 100px; text-align: center; border-bottom: 1px solid #688DD0;} | |
| 21 | +.menu_wrap .logo a{height: 100%; display: flex; justify-content: center; align-items: center;} | |
| 22 | +.menu_wrap .logo img{margin-left: -15px;} | |
| 23 | +.depth01{position: relative; border-bottom: 1px solid #688DD0;} | |
| 24 | +.menu_title{width: 100%; height: 50px; padding: 0 20px; text-align: left; font-size: 18px; font-weight: 500; color: #fff; background-image: url(/publish/adm/images/common/icon_leftmenu_open.png); background-repeat: no-repeat; background-position: calc(100% - 20px) center; transition:all .3s;} | |
| 25 | +.menu_title:not(:has(+ .depth02 li)) {background-image: none !important;padding-right: 0 !important;} | |
| 26 | +.menu_title:hover{background-color:#1A499F;} | |
| 27 | +.depth01.on .menu_title{background:#fff; color: #2557b4; font-weight:600; background-image: url(/publish/adm/images/common/icon_leftmenu_on.png); background-repeat: no-repeat; background-position: calc(100% - 20px) center;} | |
| 28 | +.depth01.on .depth02 {max-height: 500px; padding: 8px 0; } | |
| 29 | +.depth02{background-color: #16459A; | |
| 30 | + max-height: 0; | |
| 31 | + overflow: hidden; | |
| 32 | + transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); | |
| 33 | +} | |
| 34 | +.depth02 li a{display: flex; align-items: center; width: 100%; height: 40px; padding: 0 5px 0 32px; font-size: 16px; font-weight: 300; color: #8BA2CD; box-sizing: border-box; position: relative;} | |
| 35 | +.depth02 li a::before{position: absolute; content: ""; left: 0; font-size: 20px;} | |
| 36 | +.depth02 li a:hover,.depth02 li.on a{color: #fff; font-weight: 400;} | |
| 37 | +.depth03 {padding: 5px 0;background-color: #123a82;} | |
| 38 | +.depth03 li a {display: flex;align-items: center;width: 100%;height: 36px;padding: 0 5px 0 48px;font-size: 14px;font-weight: 300;color: #AFC0E0;box-sizing: border-box;position: relative;} | |
| 39 | +.depth03 li a:hover, .depth03 li.on a {color: #fff;font-weight: 400;} | |
| 40 | +/* //leftmenu */ | |
| 41 | + | |
| 42 | +/* top_util */ | |
| 43 | +.top_util{display:flex;width:100%;height:100px;justify-content:space-between;background:#fff;padding:0 48px;box-sizing:border-box;align-items:center;} | |
| 44 | +.user,.user_info,.alram{display:flex;align-items:center;} | |
| 45 | + | |
| 46 | +.user_util{display:flex;gap:36px;} | |
| 47 | +.user_util li{display:flex;align-items:center;gap:4px;} | |
| 48 | +.user_util *{display:inline-block;vertical-align:middle;font-size:14px;color:#666666;letter-spacing:-0.5px;} | |
| 49 | +.user_util i{width:20px;height:20px;margin:0 2px 0 0;} | |
| 50 | +.user_util .time_out i{background:url(/publish/adm/images/component/icon_clock.png) no-repeat center;} | |
| 51 | +.user_util .final_date i{background:url(/publish/adm/images/component/icon_calendar.png) no-repeat center;} | |
| 52 | +.user_util .ip i{background:url(/publish/adm/images/component/icon_ip.png) no-repeat center;} | |
| 53 | +.user_util .time_out #ViewTimer font,.user_util .time_out .view_timer{color:#F86A3C;font-weight:bold;vertical-align:bottom;} | |
| 54 | +.user_util .btn_extend{width:45px;height:26px;border:1px solid #F86A3C;color:#f86a3c;background:#FFF1EC;border-radius:5px;margin:0 0 0 4px;font-weight:600;transition:all 0.3s;} | |
| 55 | +.user_util .btn_extend:hover{background:#F86A3C;color:#fff;} | |
| 56 | + | |
| 57 | +.top_util .area_right{position:relative;display:flex;width:auto;background:#fff;transition:width 0.3s linear;gap:12px;} | |
| 58 | +.user_info_ul{display:inline-flex;height:38px;padding:0 20px;border-radius:35px;background:#f4f5f6;align-items:center;} | |
| 59 | +.user_info_ul li{position:relative;display:inline-flex;align-items:center;line-height:1.8;} | |
| 60 | +/* .user_info_ul li:first-child{margin:0 20px 0 0;} | |
| 61 | +.user_info_ul li:first-child:after{position:absolute;content:"";width:1px;height:15px;background:#d5d5d5;right:0;} */ | |
| 62 | +.user_info_ul select{width:145px;padding:0 0 0 20px;font-size:16px;border:0;background:transparent url(/publish/adm/images/component/icon_arrow_down.png) no-repeat calc(100% - 20px) center;} | |
| 63 | +.btn_logout{width:auto;height:38px;padding:8px 17px;font-size:16px;color:#fff;border-radius:40px;background:var(--gray-color);transition: all 0.3s;} | |
| 64 | +.btn_logout:hover{background:var(--gray-color-hover);} | |
| 65 | +/* //top_util */ | |
| 66 | + | |
| 67 | +/* footer */ | |
| 68 | +.footer{display:flex;width:calc(100% - 90px);padding:60px 0;border-top:1px solid #D7D9DF;margin:0 auto;box-sizing:border-box;align-items:center;gap:40px;} | |
| 69 | +.footer h1{margin:-14px 0 0 0;} | |
| 70 | +.footer address{font-size:14px;color:#959698;line-height:1.5;} | |
| 71 | +.footer address span{font-weight:600;margin:0 10px;} | |
| 72 | +/* //footer */ | |
| 73 | + | |
| 74 | +@media all and (max-width:1440px){ | |
| 75 | + | |
| 76 | + /* leftmenu */ | |
| 77 | + .area_left{width: 240px;} | |
| 78 | + .area_left .logo img{width: 75%;} | |
| 79 | + | |
| 80 | + .menu_tit{padding:0 12px;font-size:16px;} | |
| 81 | + .depth02 li a{font-size:14px;} | |
| 82 | + /* //leftmenu */ | |
| 83 | + | |
| 84 | + /* top_util */ | |
| 85 | + .area_right{width: calc(100% - 240px);} | |
| 86 | + | |
| 87 | + .top_util{padding: 0 20px;} | |
| 88 | + .alram{margin-left: -15px;} | |
| 89 | + .user_util{padding: 8px 0;gap:8px;} | |
| 90 | + | |
| 91 | + .user_util *{font-size: 14px;} | |
| 92 | + .user .user_id{width: calc(100% - 130px);} | |
| 93 | + | |
| 94 | + .user_info_ul li{font-size:14px;} | |
| 95 | + .user_info_ul select{width:120px;font-size:14px;} | |
| 96 | + | |
| 97 | + /* //top_util */ | |
| 98 | + | |
| 99 | + footer{padding: 31px 20px;} | |
| 100 | +} | |
| 101 | + | |
| 102 | +/* 媛꾧꺽 */ | |
| 103 | +.p0 {padding: 0px!important;} | |
| 104 | +.p5 {padding: 5px!important;} | |
| 105 | + | |
| 106 | +.pt5 {padding-top: 5px!important;} | |
| 107 | +.pt10 {padding-top: 10px!important;} | |
| 108 | +.pt15 {padding-top: 15px!important;} | |
| 109 | +.pt20 {padding-top: 20px!important;} | |
| 110 | +.pt25 {padding-top: 25px!important;} | |
| 111 | +.pt30 {padding-top: 30px!important;} | |
| 112 | +.pt35 {padding-top: 35px!important;} | |
| 113 | +.pt40 {padding-top: 40px!important;} | |
| 114 | +.pt45 {padding-top: 45px!important;} | |
| 115 | +.pt50 {padding-top: 50px!important;} | |
| 116 | + | |
| 117 | +.pr0 {padding-right: 0px!important;} | |
| 118 | +.pr20 {padding-right: 20px!important;} | |
| 119 | + | |
| 120 | +.pb5 {padding-bottom: 5px!important;} | |
| 121 | +.pb10 {padding-bottom: 10px!important;} | |
| 122 | +.pb15 {padding-bottom: 15px!important;} | |
| 123 | +.pb20 {padding-bottom: 20px!important;} | |
| 124 | +.pb25 {padding-bottom: 25px!important;} | |
| 125 | +.pb30 {padding-bottom: 30px!important;} | |
| 126 | +.pb35 {padding-bottom: 35px!important;} | |
| 127 | +.pb40 {padding-bottom: 40px!important;} | |
| 128 | +.pb45 {padding-bottom: 45px!important;} | |
| 129 | +.pb50 {padding-bottom: 50px!important;} | |
| 130 | + | |
| 131 | +.pl0 {padding-left: 0px!important;} | |
| 132 | +.pl15 {padding-left: 15px!important;} | |
| 133 | +.pl20 {padding-left: 20px!important;} | |
| 134 | + | |
| 135 | +.m20 {margin: 20px!important;} | |
| 136 | + | |
| 137 | +.mt-1 {margin-top: -1px!important;} | |
| 138 | +.mt0 {margin-top: 0px!important;} | |
| 139 | +.mt5 {margin-top: 5px!important;} | |
| 140 | +.mt10 {margin-top: 10px!important;} | |
| 141 | +.mt15 {margin-top: 15px!important;} | |
| 142 | +.mt20 {margin-top: 20px!important;} | |
| 143 | +.mt25 {margin-top: 25px!important;} | |
| 144 | +.mt30 {margin-top: 30px!important;} | |
| 145 | +.mt35 {margin-top: 35px!important;} | |
| 146 | +.mt40 {margin-top: 40px!important;} | |
| 147 | +.mt45 {margin-top: 45px!important;} | |
| 148 | +.mt50 {margin-top: 50px!important;} | |
| 149 | +.mt60 {margin-top: 60px!important;} | |
| 150 | +.mt70 {margin-top: 70px!important;} | |
| 151 | +.mt80 {margin-top: 80px!important;} | |
| 152 | +.mt90 {margin-top: 90px!important;} | |
| 153 | +.mt100 {margin-top: 100px!important;} | |
| 154 | + | |
| 155 | +.mr0 {margin-right: 0px!important;} | |
| 156 | +.mr3 {margin-right: 3px!important;} | |
| 157 | +.mr5 {margin-right: 5px!important;} | |
| 158 | +.mr10 {margin-right: 10px!important;} | |
| 159 | +.mr15 {margin-right: 15px!important;} | |
| 160 | +.mr20 {margin-right: 20px!important;} | |
| 161 | +.mr25 {margin-right: 25px!important;} | |
| 162 | +.mr30 {margin-right: 30px!important;} | |
| 163 | +.mr35 {margin-right: 35px!important;} | |
| 164 | +.mr40 {margin-right: 40px!important;} | |
| 165 | +.mr45 {margin-right: 45px!important;} | |
| 166 | +.mr50 {margin-right: 50px!important;} | |
| 167 | +.mr60 {margin-right: 60px!important;} | |
| 168 | +.mr70 {margin-right: 70px!important;} | |
| 169 | +.mr80 {margin-right: 80px!important;} | |
| 170 | +.mr90 {margin-right: 90px!important;} | |
| 171 | +.mr100 {margin-right: 100px!important;} | |
| 172 | + | |
| 173 | +.mb-4 {margin-bottom: -4px!important;} | |
| 174 | +.mb0 {margin-bottom: 0px!important;} | |
| 175 | +.mb1 {margin-bottom: 1px!important;} | |
| 176 | +.mb5 {margin-bottom: 5px!important;} | |
| 177 | +.mb10 {margin-bottom: 10px!important;} | |
| 178 | +.mb15 {margin-bottom: 15px!important;} | |
| 179 | +.mb18 {margin-bottom: 18px!important;} | |
| 180 | +.mb20 {margin-bottom: 20px!important;} | |
| 181 | +.mb25 {margin-bottom: 25px!important;} | |
| 182 | +.mb30 {margin-bottom: 30px!important;} | |
| 183 | +.mb35 {margin-bottom: 35px!important;} | |
| 184 | +.mb40 {margin-bottom: 40px!important;} | |
| 185 | +.mb45 {margin-bottom: 45px!important;} | |
| 186 | +.mb50 {margin-bottom: 50px!important;} | |
| 187 | +.mb60 {margin-bottom: 60px!important;} | |
| 188 | +.mb70 {margin-bottom: 70px!important;} | |
| 189 | +.mb80 {margin-bottom: 80px!important;} | |
| 190 | +.mb90 {margin-bottom: 90px!important;} | |
| 191 | +.mb100 {margin-bottom: 100px!important;} | |
| 192 | + | |
| 193 | +.ml0 {margin-left: 0px!important;} | |
| 194 | +.ml5 {margin-left: 5px!important;} | |
| 195 | +.ml10 {margin-left: 10px!important;} | |
| 196 | +.ml15 {margin-left: 15px!important;} | |
| 197 | +.ml20 {margin-left: 20px!important;} | |
| 198 | +.ml25 {margin-left: 25px!important;} | |
| 199 | +.ml30 {margin-left: 30px!important;} | |
| 200 | +.ml35 {margin-left: 35px!important;} | |
| 201 | +.ml40 {margin-left: 40px!important;} | |
| 202 | +.ml45 {margin-left: 45px!important;} | |
| 203 | +.ml50 {margin-left: 50px!important;} | |
| 204 | +.ml60 {margin-left: 60px!important;} | |
| 205 | +.ml70 {margin-left: 70px!important;} | |
| 206 | +.ml80 {margin-left: 80px!important;} | |
| 207 | +.ml90 {margin-left: 90px!important;} | |
| 208 | +.ml100 {margin-left: 100px!important;} | |
| 209 | + | |
| 210 | +/* ?덈퉬, ?믪씠 */ | |
| 211 | +.w100per {width: 100% !important;} | |
| 212 | +.w99per {width: 99%;} | |
| 213 | +.w95per {width: 95%;} | |
| 214 | +.w90per {width: 90%;} | |
| 215 | +.w85per {width: 85%;} | |
| 216 | +.w80per {width: 80%;} | |
| 217 | +.w75per {width: 75%;} | |
| 218 | +.w70per {width: 70%;} | |
| 219 | +.w65per {width: 65%;} | |
| 220 | +.w60per {width: 60%;} | |
| 221 | +.w50per {width: 50%;} | |
| 222 | +.w55per {width: 55%;} | |
| 223 | +.w45per {width: 45%;} | |
| 224 | +.w40per {width: 40%;} | |
| 225 | +.w35per {width: 35%;} | |
| 226 | +.w33per {width: 33.3333333%;} | |
| 227 | +.w30per {width: 30%;} | |
| 228 | +.w25per {width: 25%;} | |
| 229 | +.w20per {width: 20%;} | |
| 230 | +.w19per {width: 19%;} | |
| 231 | +.w18per {width: 18%;} | |
| 232 | +.w17per {width: 17%;} | |
| 233 | +.w16per {width: 16%;} | |
| 234 | +.w15per {width: 15%;} | |
| 235 | +.w14per {width: 14%;} | |
| 236 | +.w13per {width: 13%;} | |
| 237 | +.w12per {width: 12%;} | |
| 238 | +.w11per {width: 11%;} | |
| 239 | +.w10per {width: 10%;} | |
| 240 | +.w9per {width: 9%;} | |
| 241 | +.w8per {width: 8%;} | |
| 242 | +.w7per {width: 7%;} | |
| 243 | +.w6per {width: 6%;} | |
| 244 | +.w5per {width: 5%;} | |
| 245 | +.w4per {width: 4%;} | |
| 246 | +.w3per {width: 3%;} | |
| 247 | +.w2per {width: 2%;} | |
| 248 | +.w1per {width: 1%;} | |
| 249 | + | |
| 250 | +.w5 {width: 5px;} | |
| 251 | +.w10 {width: 10px;} | |
| 252 | +.w15 {width: 15px;} | |
| 253 | +.w20 {width: 20px;} | |
| 254 | +.w25 {width: 25px;} | |
| 255 | +.w30 {width: 30px;} | |
| 256 | +.w35 {width: 35px;} | |
| 257 | +.w40 {width: 40px;} | |
| 258 | +.w45 {width: 45px;} | |
| 259 | +.w50 {width: 50px;} | |
| 260 | +.w55 {width: 55px;} | |
| 261 | +.w60 {width: 60px;} | |
| 262 | +.w70 {width: 70px;} | |
| 263 | +.w80 {width: 80px;} | |
| 264 | +.w90 {width: 90px;} | |
| 265 | +.w100 {width: 100px;} | |
| 266 | +.w110 {width: 110px;} | |
| 267 | +.w120 {width: 120px;} | |
| 268 | +.w130 {width: 130px;} | |
| 269 | +.w140 {width: 140px;} | |
| 270 | +.w150 {width: 150px;} | |
| 271 | +.w160 {width: 160px;} | |
| 272 | +.w170 {width: 170px;} | |
| 273 | +.w180 {width: 180px;} | |
| 274 | +.w190 {width: 190px;} | |
| 275 | +.w200 {width: 200px;} | |
| 276 | +.w250 {width: 250px;} | |
| 277 | +.w300 {width: 300px;} | |
| 278 | +.w325 {width: 325px;} | |
| 279 | +.w350 {width: 350px;} | |
| 280 | +.w400 {width: 400px;} | |
| 281 | +.w500 {width: 500px;} | |
| 282 | + | |
| 283 | +.mw100 {min-width: 100px;} | |
| 284 | + | |
| 285 | +.h100 {height: 100px;} | |
| 286 | +.h100per {height: 100%;} |
+++ src/styles/adm/popup.css
... | ... | @@ -0,0 +1,63 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.mask{position:fixed;display:none;width:100%;height:100%;background:rgba(0,0,0,0.64);left:0;top:0;z-index:9;} | |
| 4 | +.popup{background:#fff;} | |
| 5 | +.popup_title_area{display:flex;width:100%;height:60px;padding:0 20px;border-bottom:1px solid #eee;background:#fff;align-items:center;justify-content:space-between;} | |
| 6 | +.popup h1.popup_title{font-size:18px;font-weight:600;color:#222;} | |
| 7 | +.popup_title_area .btn_popup_close{width:30px;height:30px;} | |
| 8 | +.popup_title_wrap{display:flex;align-items:center;justify-content:space-between;} | |
| 9 | +.popup_title_wrap h2{font-size:16px;font-weight:600;color:var(--primary-title-color);} | |
| 10 | +.popup_content{padding:30px 24px 50px 24px;} | |
| 11 | + | |
| 12 | +.popup .btn.large{height:40px;font-size:16px;padding:0 12px;font-weight:500;} | |
| 13 | +.popup .btn.xlarge{height:50px;font-size:16px;padding:0 24px;font-weight:500;} | |
| 14 | + | |
| 15 | +.popup .text_primary{font-size:16px;font-weight:500;} | |
| 16 | +.popup .text_secondary{font-size:14px;font-weight:400;} | |
| 17 | + | |
| 18 | +.popup .search_area.box{padding:0 10px;font-size:14px;} | |
| 19 | +.popup .search_item{padding:4px 0;} | |
| 20 | + | |
| 21 | +.popup .input{height:30px;} | |
| 22 | +.popup .input.medium{height:36px;} | |
| 23 | +.popup select,.popup .select{height:30px;border:1px solid var(--default-line-color);border-radius:5px;padding:0 32px 0 12px;background:#fff url(/publish/adm/images/component/icon_arrow_down.png) no-repeat calc(100% - 4px) center;} | |
| 24 | + | |
| 25 | +.popup .radio_wrap,.popup .checkbox_wrap{gap:8px;} | |
| 26 | +.popup .radio_item,.popup .checkbox_item{font-size:14px;} | |
| 27 | + | |
| 28 | +.popup_title_wrap+.table{margin:12px 0 40px 0;} | |
| 29 | +.popup.table_type_cols thead>tr>th,.popup.table_type_cols tbody>tr>td{height:40px;font-size:15px;} | |
| 30 | +.popup.table_type_rows tbody>tr>th, .popup.table_type_rows tbody>tr>td{height:40px;font-size:15px;padding:8px 12px;} | |
| 31 | + | |
| 32 | +.popup .page a{width:32px;height:32px;} | |
| 33 | + | |
| 34 | +/* ?덉씠??*/ | |
| 35 | +.popup:not(.popup_window){position:absolute;display:none;min-width:200px;min-height:200px;border-radius:12px;overflow:hidden;opacity:0;transition:all 0.3s;left:50%;top:50%;transform:translate(-50%,-50%);} | |
| 36 | +.popup.active:not(.popup_window){display:block;opacity:1;z-index:11;} | |
| 37 | + | |
| 38 | + | |
| 39 | +/* ?덉갹?앹뾽 */ | |
| 40 | +.popup_window{padding:20px;box-sizing:border-box;} | |
| 41 | +.popup_window h2.title{display:flex;width:100%;height:50px;font-size:20px;font-weight:bold;color:#fff;padding:0 20px;border-radius:4px;background:#f86a3c;align-items:center;} | |
| 42 | +.popup_window h2.title .text_secondary{font-weight:300;} | |
| 43 | + | |
| 44 | +.popup_window .content_title{margin:40px 0 12px 0;} | |
| 45 | +.popup_window h3.title{font-size:18px;font-weight:bold;margin:0;padding:0;} | |
| 46 | +.popup_window h3.title::before{display:none;} | |
| 47 | + | |
| 48 | +.popup_window .search_title{font-weight:400;} | |
| 49 | +.popup_window .search_title::after{top:12px;} | |
| 50 | +.popup_window .search_area.box{border-radius:4px;} | |
| 51 | +.popup_window input[type="text"]{height:30px;} | |
| 52 | +.popup_window .search_item:has(input[type='hidden']:only-child){display:none;} | |
| 53 | + | |
| 54 | +.popup_window .tree{display:flex;border:1px solid #CDD5E6;border-radius:4px;flex-direction:column;} | |
| 55 | +.popup_window .tree_title{display:flex;width:100%;height:50px;font-weight:500;padding:0 12px;background:#eff2f9;align-items:center;gap:8px;} | |
| 56 | +.popup_window .tree .tree_body{padding:4px 0;max-height:300px;overflow:scroll;} | |
| 57 | +.popup_window .tree .tree-node{display:flex;height:auto;font-size:14px;flex-direction:column;align-items:flex-start;padding:0 12px;} | |
| 58 | +.popup_window .tree .tree-node label{display:flex;min-height:35px;align-items:center;gap:4px;} | |
| 59 | +.popup_window .tree-node.folder .tree-label{padding:0 0 0 26px;} | |
| 60 | +.popup_window .tree-node.folder .tree-label::before{width:24px;height:24px;top:50%;transform:translateY(-50%);} | |
| 61 | +.popup_window .tree-node.file label{min-height:25px;} | |
| 62 | +.popup_window .tree .tree-children{display:flex;width:calc(100% - 24px);font-size:14px;background:#f2f4f5;flex-direction:column;gap:4px;border-radius:4px;padding:8px 12px;margin:0 auto;} | |
| 63 | +.popup_window .tree .tree-children .tree-node{height:auto;} |
+++ src/styles/adm/style.css
... | ... | @@ -0,0 +1,158 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | +@import url(./icon.css); | |
| 3 | + | |
| 4 | +/* font weight */ | |
| 5 | +.fwLg{font-weight: 300 !important} | |
| 6 | +.fwRg{font-weight: 400 !important} | |
| 7 | +.fwMd{font-weight: 500 !important} | |
| 8 | +.fwBold{font-weight: 700 !important} | |
| 9 | + | |
| 10 | +.sub_font{font-family:var(--secondary-title-font);} | |
| 11 | + | |
| 12 | +.show{display:block !important;} | |
| 13 | +.hide{display:none !important;} | |
| 14 | + | |
| 15 | +.text_left{text-align:left;} | |
| 16 | +.text_right{text-align:right;} | |
| 17 | +.text_center{text-align:center;} | |
| 18 | + | |
| 19 | +.input{height:34px;background:#fff;border:1px solid var(--default-line-color);border-radius:5px;padding:0 12px;} | |
| 20 | +input[type="checkbox"].checkbox{width:20px;height:20px;border:1px solid var(--default-line-color);} | |
| 21 | +textarea, .testarea{background:#fff;border:1px solid var(--default-line-color);border-radius:5px;padding:8px 12px;} | |
| 22 | +select, .select{height:34px;border:1px solid var(--default-line-color);border-radius:5px;padding:0 32px 0 12px;background:#fff url(/publish/adm/images/component/icon_arrow_down.png) no-repeat calc(100% - 4px) center;} | |
| 23 | + | |
| 24 | +.form_group{display:flex;gap:8px;align-items:center;} | |
| 25 | +.form_group.column{flex-direction:column;align-items:flex-start;gap:12px;} | |
| 26 | + | |
| 27 | +.form_wrap{display:flex;gap:8px;align-items:center;} | |
| 28 | +.form_wrap.column{flex-direction:column;align-items:flex-start;gap:4px;} | |
| 29 | + | |
| 30 | +.email_wrap{display:flex;gap:8px;align-items:center;} | |
| 31 | +.email_wrap .input{width:160px;} | |
| 32 | +.email_wrap .select{width:160px;} | |
| 33 | + | |
| 34 | +.radio_wrap,.checkbox_wrap{display:flex;align-items:center;gap:16px;} | |
| 35 | +.radio_wrap.column,.checkbox_wrap.column{flex-direction:column;align-items:flex-start;gap:4px;} | |
| 36 | +.radio_item,.checkbox_item{display:flex;align-items:center;gap:4px;font-size:16px;} | |
| 37 | + | |
| 38 | +.input_mix_wrap{display:flex;gap:8px;align-items:center;} | |
| 39 | + | |
| 40 | +.address_wrap{display:flex;flex-direction:column;align-items:flex-start;gap:8px;} | |
| 41 | +.address_row{display:flex;width:60%;gap:8px;} | |
| 42 | +.input_post{width:calc(100% - 200px);} | |
| 43 | +.adr_default{width:60%;} | |
| 44 | +.adr_detail{width:40%;} | |
| 45 | + | |
| 46 | +.input_desc_wrap{display:flex;width:100%;gap:12px;} | |
| 47 | +.input_desc_wrap.column{flex-direction:column;gap:0;margin:8px 0 0 0;} | |
| 48 | +.input_desc_wrap .input_desc{margin:0;} | |
| 49 | + | |
| 50 | +.input_desc{font-size:14px;font-weight:400;color:#666;margin:0 0 0 8px;} | |
| 51 | +.input_desc.red{color:var(--red-color);} | |
| 52 | +.input_desc.blue{color:var(--primary-color);} | |
| 53 | + | |
| 54 | +.calendar_wrap{display:flex;align-items:center;gap:8px;} | |
| 55 | +.calendar{width:140px;background:#fff url(/publish/adm/images/component/icon_calendar.png) no-repeat calc(100% - 8px) center;} | |
| 56 | +.btn_calendar,input.btn_calendar{width:32px;height:32px;background:transparent !important;border:0 !important;margin:0 0 0 -42px;cursor:pointer;} | |
| 57 | + | |
| 58 | +.time_layer_wrap{position:relative;} | |
| 59 | +.time_input{width:110px;background:#fff url(/publish/adm/images/component/icon_clock.png) no-repeat calc(100% - 8px) center;} | |
| 60 | +.time_layer{position:absolute;width:230px;padding:20px;border-radius:16px;background:#fff;box-shadow:0 0 10px rgba(0,0,0,0.1);top:calc(100% + 4px);left:0;transform:scale(0.96) translateZ(0) translateY(-20px);opacity:0;transition: transform 300ms ease, opacity 300ms ease, visibility 300ms ease;} | |
| 61 | +.time_layer.active{transform:scale(1.0001) translateZ(0) translateY(0);opacity:1;} | |
| 62 | +.time_layer .title{display:block;font-size:16px;font-weight:bold;color:var(--primary-title-color);text-align:left;padding:0 0 8px 0;} | |
| 63 | +.time_wrap{display:flex;gap:8px;align-items:center;} | |
| 64 | +.time_select{width:73px;background-color:#edf0f5;border:0;} | |
| 65 | +.time_layer button{width:100%;margin:12px 0 0 0;} | |
| 66 | + | |
| 67 | +/* search */ | |
| 68 | +.search_area{display:flex;align-items:flex-end;justify-content:space-between;} | |
| 69 | +.search_area.box{padding:0 20px;margin:0 0 40px 0;border:1px solid #cdd5e6;border-radius:10px;background:#eff2f9;flex-direction:column;} | |
| 70 | + | |
| 71 | +.search_item{display:flex;width:100%;padding:8px 0;align-items:center;border-bottom:1px solid #cdd5e6;} | |
| 72 | +.search_item:last-child{border-bottom:0;} | |
| 73 | +.search_title{position:relative;min-width:120px;padding:0 0 0 12px;} | |
| 74 | +.search_title::after{position:absolute;content:"";width:4px;height:4px;background:var(--primary-color);border-radius:100%;left:0;top:9px;} | |
| 75 | +.search_title+.form_wrap{width:calc(100% - 120px);} | |
| 76 | + | |
| 77 | +.search_select{min-width:120px;} | |
| 78 | +.search_input{min-width:300px;} | |
| 79 | + | |
| 80 | +.search_left .total_number{font-size:14px;color:var(--body-text-color);} | |
| 81 | +.search_left .total_number b{font-size:16px;font-weight:bold;color:var(--primary-color);} | |
| 82 | +.search_right{display:flex;gap:10px;align-items:center;} | |
| 83 | +.search_select{min-width:120px;height:34px;} | |
| 84 | +.search_input{min-width:150px;} | |
| 85 | +.search_right button{height:34px;padding:0 12px;font-size:16px;font-weight:400;} | |
| 86 | +.search_right .btn_search{background:var(--primary-color);color:#fff;} | |
| 87 | +.search_right .btn_reset{background:var(--gray-color);color:#fff;} | |
| 88 | + | |
| 89 | +/* status */ | |
| 90 | +.status{min-height:34px;font-size:16px;font-weight:500;border-radius:100px;padding:3px 12px;} | |
| 91 | + | |
| 92 | +.status.line.blue{border:1px solid #135add;color:#135add;background:#fff;} | |
| 93 | +.status.line.gray{border:1px solid #d1d6df;color:#858B97;background:#eff0f2;} | |
| 94 | +.status.line.orange{border:1px solid #df5f36;color:#df5f36;background:#fff;} | |
| 95 | + | |
| 96 | +.status.fill.blue{background:#E9EEF8;color:#2557B4;} | |
| 97 | +.status.fill.gray{background:#E4E7EE;color:#616576;} | |
| 98 | +.status.fill.orange{background:#FEF0EC;color:#F86A3C;} | |
| 99 | + | |
| 100 | +.status.text{position:relative;padding:0;} | |
| 101 | +.status.text::after{position:absolute;content:"";width:100%;height:5px;opacity:0.2;left:0;bottom:2px;} | |
| 102 | +.status.text.blue{color:#135add;} | |
| 103 | +.status.text.blue::after{background:#135add;} | |
| 104 | +.status.text.gray{color:#858B97;} | |
| 105 | +.status.text.gray::after{background:#858B97;} | |
| 106 | + | |
| 107 | +.file_list{display:flex;flex-direction:column;gap:4px;} | |
| 108 | +.file_list a{display:flex;gap:4px;align-items:center;} | |
| 109 | + | |
| 110 | +.file_list.box{padding:15px 35px;margin:40px 0 0 0;background:#f5f7f9;border-radius:15px;gap:10px;} | |
| 111 | +.file_list.box a{gap:8px;font-size:18px;color:var(--body-text-color);text-decoration:none;} | |
| 112 | + | |
| 113 | +/* gallery list */ | |
| 114 | +.gallery_list{display:flex;border-top:2px solid var(--primary-color);border-bottom:1px solid var(--lightgray-color);margin:12px 0 40px 0;padding:40px 0;gap:20px;flex-wrap:wrap;} | |
| 115 | +.gallery_list>li{width:calc((100%/4) - 15px);} | |
| 116 | +.gallery_list a{position:relative;width:100%;height:100%;border:1px solid #E2E7EF;} | |
| 117 | +.gallery_list .status{position:absolute;display:flex;min-height:30px;font-size:16px;letter-spacing:0.3px;padding:2px 8px;right:12px;top:12px;border-radius:8px;justify-content:center;align-items:center;} | |
| 118 | +.gallery_list .primary{background:var(--primary-color);color:#fff;} | |
| 119 | +.gallery_list .gray{background:var(--gray-color);color:#fff;} | |
| 120 | +.gallery_list .images_area{position:relative;display:flex;width:100%;height:240px;background:#f2f4f7;overflow:hidden;justify-content:center;align-items:center;} | |
| 121 | +.gallery_list .images_area .check{position:absolute;left:10px;top:10px;} | |
| 122 | +.gallery_list .images_area img{max-width:100%;max-height:100%;object-fit:contain;margin:0 auto;} | |
| 123 | +.gallery_list .list_content{padding:20px;} | |
| 124 | +.gallery_list .list_title{text-overflow: ellipsis;overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;font-size:20px;font-weight:600;color:var(--primary-title-color);} | |
| 125 | +.gallery_list .list_info{display:flex;font-size:14px;font-weight:400;color:#636469;margin:12px 0 0 0;} | |
| 126 | +.gallery_list .list_info li{position:relative;padding:0 10px;} | |
| 127 | +.gallery_list .list_info li:first-child{padding:0 10px 0 0;} | |
| 128 | +.gallery_list .list_info li::after{position:absolute;content:"";width:1px;height:10px;background:#636469;right:0;top:6px;} | |
| 129 | +.gallery_list .list_info li:last-child::after{display:none;} | |
| 130 | + | |
| 131 | + | |
| 132 | +/* ?볤? */ | |
| 133 | +.cmmt_wrap{margin:60px 0 0 0;} | |
| 134 | +.cmmt_title{display:flex;margin:0 0 12px 0;align-items:center;gap:6px;justify-content:flex-start;} | |
| 135 | +.cmmt_title p{font-size:16px;font-weight:400;} | |
| 136 | +.cmmt_title p b{font-weight:600;color:var(--primary-color);} | |
| 137 | + | |
| 138 | +.cmmt_list{display:flex;border-top:2px solid var(--primary-color);flex-direction:column;} | |
| 139 | +.cmmt_list li{padding:20px;border-bottom:1px solid var(--default-line-color);} | |
| 140 | +.cmmt_top{display:flex;gap:8px;align-items:center;} | |
| 141 | +.cmmt_top .writer{font-size:16px;color:var(--primary-title-color);} | |
| 142 | +.cmmt_top .cmmt_date{font-size:14px;font-weight:400;color:#666;} | |
| 143 | +.cmmt_detail{padding:8px 0 12px 0;font-size:16px;color:var(--body-text-color);} | |
| 144 | +.cmmt_bottom .cmmt_date{font-size:14px;color:#666;} | |
| 145 | + | |
| 146 | +.cmmt_input{margin:40px 0 0 0;} | |
| 147 | +/* .cmmt_input form:first-child{display:flex;padding:12px 20px;margin:40px 0 0 0;border-top:1px solid #cdd5e6;border-bottom:1px solid #cdd5e6;background:#f2f4f6;align-items:center;gap:8px;} */ | |
| 148 | +.cmmt_input textarea{width:calc(100% - 100px);height:120px;} | |
| 149 | +.cmmt_input button.btn.xlarge{height:120px;} | |
| 150 | + | |
| 151 | + | |
| 152 | +/* 硫붾돱愿由?*/ | |
| 153 | +.menu_container{display:flex;gap:20px;} | |
| 154 | +.menu_list_content{width:20%;} | |
| 155 | +.menu_list_top{display:flex;justify-content:space-between;align-items:center;} | |
| 156 | +.menu_list{width:100%;max-height:calc(100vh - 300px);margin:12px 0 0 0;border-radius:4px;} | |
| 157 | +.menu_detail{width:80%;} | |
| 158 | + |
+++ src/styles/adm/tab.css
... | ... | @@ -0,0 +1,24 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.tabs{display:flex;width:100%;margin:0 0 40px 0;} | |
| 4 | + | |
| 5 | +.tabs.tab02 li{width:calc(100%/2);} | |
| 6 | +.tabs.tab03 li{width:calc(100%/3);} | |
| 7 | +.tabs.tab04 li{width:calc(100%/4);} | |
| 8 | +.tabs.tab05 li{width:calc(100%/5);} | |
| 9 | +.tabs.tab06 li{width:calc(100%/6);} | |
| 10 | + | |
| 11 | +.tabs.fill{background:#EFF2F9;border-radius:10px;padding:0 20px;} | |
| 12 | +.tabs.fill .tab{width:100%;min-width:180px;height:60px;font-size:20px;font-weight:500;color:#8F96A6;} | |
| 13 | +.tabs.fill .tab.active{border-bottom:3px solid var(--primary-color);font-weight:600;color:var(--primary-color);} | |
| 14 | + | |
| 15 | +/* .tabs.line{border-bottom:2px solid var(--primary-color);border-top:1px solid #CED3DE;border-radius:10px 10px 0 0;overflow:hidden;} */ | |
| 16 | +.tabs.line{border:1px solid #ced3de;border-bottom:2px solid var(--primary-color);border-radius:10px 10px 0 0;} | |
| 17 | +.tabs.line .tab{position:relative;width:100%;height:50px;font-size:18px;border-right:1px solid #ced3de;} | |
| 18 | +.tabs.line .tab.active{background:#E9EEF8;color:var(--primary-color);font-weight:600;border-radius:10px 10px 0 0;} | |
| 19 | +.tabs.line .tab.active::after{position:absolute;content:"";width:calc(100% + 2px);height:calc(100% + 2px);left:-1px;top:-1px;border:2px solid var(--primary-color);border-bottom:0;border-radius:10px 10px 0 0;} | |
| 20 | +.tabs.line :last-child .tab{border-right:0;} | |
| 21 | + | |
| 22 | + | |
| 23 | +.tab_content{display:none;} | |
| 24 | +.tab_content.active{display:block;} |
+++ src/styles/adm/table.css
... | ... | @@ -0,0 +1,57 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.table{border-top:2px solid var(--primary-color);margin:0 0 40px 0;} | |
| 4 | +.content_title.h4+.table{margin:0 0 20px 0;} | |
| 5 | +.content_title.h5+.table{margin:12px 0 40px 0;} | |
| 6 | + | |
| 7 | +.table table{table-layout:fixed;width:100%;} | |
| 8 | +.table .mobile_show,.table .mobile_hide{display:none;} | |
| 9 | +.table .required{color:var(--red-color);margin:0 4px 0 0;} | |
| 10 | + | |
| 11 | +.table td.visible{overflow:visible !important;} | |
| 12 | + | |
| 13 | +.table_type_cols{margin:12px 0 40px 0;} | |
| 14 | +.table_type_cols tr{border-bottom:1px solid #DEE6F4;} | |
| 15 | +.table_type_cols th,.table_type_cols td{padding:4px 8px;font-size:16px;text-align:center;box-sizing:border-box;} | |
| 16 | +.table_type_cols thead>tr>th{height:50px;font-weight:500;color:#25272A;background:#eff2f9;} | |
| 17 | +.table_type_cols tbody>tr>td{height:50px;font-weight:400;color:#444;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;} | |
| 18 | +.table_type_cols .text_left a{width:100%;text-align:left;} | |
| 19 | + | |
| 20 | + | |
| 21 | +.table_type_rows{margin:30px 0;} | |
| 22 | +.table_type_rows tr{border-bottom:1px solid #e2e7ef;} | |
| 23 | +.table_type_rows tbody>tr>th,.table_type_rows tbody>tr>td{height:50px;padding:12px 20px;font-size:16px;color:#25272A;text-align:left;box-sizing:border-box;} | |
| 24 | +.table_type_rows tbody>tr>th{font-weight:500;background:#F2F3F5;} | |
| 25 | +.table_type_rows tbody>tr>td{font-weight:400;} | |
| 26 | + | |
| 27 | +.file_top{display:flex;justify-content:space-between;align-items:flex-end;} | |
| 28 | +.file_table{height:150px;margin:12px 0 0 0;border:1px solid var(--lightgray-color);border-radius:8px;} | |
| 29 | +.file_table table{table-layout:fixed;width:100%;border-collapse: collapse;} | |
| 30 | +.file_table tbody{width:100%;max-height:150px;overflow-y:auto;} | |
| 31 | +.file_table th{height:36px;font-size:14px;color:#222;padding:0 8px;text-align:center;} | |
| 32 | +.file_table tbody>tr>td{height:36px;font-size:14px;color:#444;padding:0 8px;text-align:center;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;} | |
| 33 | +.file_table .btn_delete{width:28px;} | |
| 34 | +.file_table .btn_delete i{width:100%;height:100%;} | |
| 35 | + | |
| 36 | +.file_table.before_file_table table{height:100%;} | |
| 37 | +.file_table.before_file_table thead{opacity:0.3;} | |
| 38 | +.file_table.before_file_table tbody{background:#EFF0F4;} | |
| 39 | +.file_table.before_file_table tbody tr{height:100%;border:0;text-align:center;} | |
| 40 | +.file_table.before_file_table p{font-size:14px;} | |
| 41 | +.file_table.before_file_table b{color:var(--primary-color);} | |
| 42 | + | |
| 43 | +/* 由ъ뒪?몄뿉 ?덈뒗 ?뚯씪?뚯씠釉?*/ | |
| 44 | +.list_file_td .file_table{height:auto;border:0;margin:0;} | |
| 45 | +.list_file_td .file_table tbody>tr>td{height:auto;} | |
| 46 | +.list_file_td .file_table .file_row{display:inline-block;max-width:95%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;margin:6px 0 0 0;} | |
| 47 | +.list_file_td .file_table .file_row .file{margin:-2px 0 0 0;} | |
| 48 | + | |
| 49 | +td.file_view .file_table{margin:0;} | |
| 50 | + | |
| 51 | +/* 由ъ뒪??- ?댁쟾湲/?ㅼ쓬湲 */ | |
| 52 | +.list_nav{margin:40px 0 0 0;border-top:2px solid var(--primary-color);} | |
| 53 | +.list_nav li{display:flex;height:50px;border-bottom:1px solid #D3D7DE;align-items:center;} | |
| 54 | +.list_nav li.none .title,.list_nav li.none a{opacity:0.6;} | |
| 55 | +.list_nav .title{width:120px;font-size:16px;color:#242426;padding:0 0 0 20px;} | |
| 56 | + | |
| 57 | + |
+++ src/styles/adm/validate.css
... | ... | @@ -0,0 +1,9 @@ |
| 1 | +.input-error { | |
| 2 | + border: 1px solid #e74c3c !important; | |
| 3 | +} | |
| 4 | + | |
| 5 | +.error-text { | |
| 6 | + color: #e74c3c; | |
| 7 | + font-size: 12px; | |
| 8 | + margin-top: 4px; | |
| 9 | +} |
+++ src/styles/app.css
... | ... | @@ -0,0 +1,30 @@ |
| 1 | +.skin_switcher { | |
| 2 | + position: fixed; | |
| 3 | + z-index: 99999; | |
| 4 | + right: 16px; | |
| 5 | + bottom: 16px; | |
| 6 | + display: flex; | |
| 7 | + gap: 6px; | |
| 8 | + padding: 6px; | |
| 9 | + border: 1px solid #cfd6e2; | |
| 10 | + background: #fff; | |
| 11 | + box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16); | |
| 12 | +} | |
| 13 | + | |
| 14 | +.skin_switcher button { | |
| 15 | + height: 32px; | |
| 16 | + padding: 0 12px; | |
| 17 | + border: 1px solid #c7ceda; | |
| 18 | + background: #f8fafc; | |
| 19 | + color: #222; | |
| 20 | + font-size: 13px; | |
| 21 | + font-weight: 700; | |
| 22 | + cursor: pointer; | |
| 23 | +} | |
| 24 | + | |
| 25 | +.skin_switcher button.active { | |
| 26 | + border-color: #2457d6; | |
| 27 | + background: #2457d6; | |
| 28 | + color: #fff; | |
| 29 | +} | |
| 30 | + |
+++ src/styles/common/font.css
... | ... | @@ -0,0 +1,317 @@ |
| 1 | +/* ================================ | |
| 2 | + Noto Sans KR | |
| 3 | + ================================ */ | |
| 4 | + | |
| 5 | +@font-face { | |
| 6 | + font-family: 'Noto Sans KR'; | |
| 7 | + font-style: normal; | |
| 8 | + font-weight: 300; | |
| 9 | + src: url('/font/NotoSansKR-Light.woff2') format('woff2'), | |
| 10 | + url('/font/NotoSansKR-Light.woff') format('woff'), | |
| 11 | + url('/font/NotoSansKR-Light.ttf') format('truetype'); | |
| 12 | + font-display: block; | |
| 13 | +} | |
| 14 | + | |
| 15 | +@font-face { | |
| 16 | + font-family: 'Noto Sans KR'; | |
| 17 | + font-style: normal; | |
| 18 | + font-weight: 400; | |
| 19 | + src: url('/font/NotoSansKR-Regular.woff2') format('woff2'), | |
| 20 | + url('/font/NotoSansKR-Regular.woff') format('woff'), | |
| 21 | + url('/font/NotoSansKR-Regular.ttf') format('truetype'); | |
| 22 | + font-display: block; | |
| 23 | +} | |
| 24 | + | |
| 25 | +@font-face { | |
| 26 | + font-family: 'Noto Sans KR'; | |
| 27 | + font-style: normal; | |
| 28 | + font-weight: 500; | |
| 29 | + src: url('/font/NotoSansKR-Medium.woff2') format('woff2'), | |
| 30 | + url('/font/NotoSansKR-Medium.woff') format('woff'), | |
| 31 | + url('/font/NotoSansKR-Medium.ttf') format('truetype'); | |
| 32 | + font-display: block; | |
| 33 | +} | |
| 34 | + | |
| 35 | +@font-face { | |
| 36 | + font-family: 'Noto Sans KR'; | |
| 37 | + font-style: normal; | |
| 38 | + font-weight: 700; | |
| 39 | + src: url('/font/NotoSansKR-Bold.woff2') format('woff2'), | |
| 40 | + url('/font/NotoSansKR-Bold.woff') format('woff'), | |
| 41 | + url('/font/NotoSansKR-Bold.ttf') format('truetype'); | |
| 42 | + font-display: block; | |
| 43 | +} | |
| 44 | + | |
| 45 | +@font-face { | |
| 46 | + font-family: 'Noto Sans KR'; | |
| 47 | + font-style: normal; | |
| 48 | + font-weight: 800; | |
| 49 | + src: url('/font/NotoSansKR-ExtraBold.woff2') format('woff2'), | |
| 50 | + url('/font/NotoSansKR-ExtraBold.woff') format('woff'), | |
| 51 | + url('/font/NotoSansKR-ExtraBold.ttf') format('truetype'); | |
| 52 | + font-display: block; | |
| 53 | +} | |
| 54 | + | |
| 55 | + | |
| 56 | +/* ================================ | |
| 57 | + Pretendard | |
| 58 | + ================================ */ | |
| 59 | + | |
| 60 | +/* Thin (100) */ | |
| 61 | +@font-face { | |
| 62 | + font-family: 'Pretendard'; | |
| 63 | + font-weight: 100; | |
| 64 | + font-style: normal; | |
| 65 | + src: url('/font/Pretendard-Thin.woff2') format('woff2'), | |
| 66 | + url('/font/Pretendard-Thin.woff') format('woff'), | |
| 67 | + url('/font/Pretendard-Thin.ttf') format('truetype'), | |
| 68 | + url('/font/Pretendard-Thin.otf') format('opentype'); | |
| 69 | + font-display: swap; | |
| 70 | +} | |
| 71 | + | |
| 72 | +/* ExtraLight (200) */ | |
| 73 | +@font-face { | |
| 74 | + font-family: 'Pretendard'; | |
| 75 | + font-weight: 200; | |
| 76 | + font-style: normal; | |
| 77 | + src: url('/font/Pretendard-ExtraLight.woff2') format('woff2'), | |
| 78 | + url('/font/Pretendard-ExtraLight.woff') format('woff'), | |
| 79 | + url('/font/Pretendard-ExtraLight.ttf') format('truetype'), | |
| 80 | + url('/font/Pretendard-ExtraLight.otf') format('opentype'); | |
| 81 | + font-display: swap; | |
| 82 | +} | |
| 83 | + | |
| 84 | +/* Light (300) */ | |
| 85 | +@font-face { | |
| 86 | + font-family: 'Pretendard'; | |
| 87 | + font-weight: 300; | |
| 88 | + font-style: normal; | |
| 89 | + src: url('/font/Pretendard-Light.woff2') format('woff2'), | |
| 90 | + url('/font/Pretendard-Light.woff') format('woff'), | |
| 91 | + url('/font/Pretendard-Light.ttf') format('truetype'), | |
| 92 | + url('/font/Pretendard-Light.otf') format('opentype'); | |
| 93 | + font-display: swap; | |
| 94 | +} | |
| 95 | + | |
| 96 | +/* Regular (400) */ | |
| 97 | +@font-face { | |
| 98 | + font-family: 'Pretendard'; | |
| 99 | + font-weight: 400; | |
| 100 | + font-style: normal; | |
| 101 | + src: url('/font/Pretendard-Regular.woff2') format('woff2'), | |
| 102 | + url('/font/Pretendard-Regular.woff') format('woff'), | |
| 103 | + url('/font/Pretendard-Regular.ttf') format('truetype'), | |
| 104 | + url('/font/Pretendard-Regular.otf') format('opentype'); | |
| 105 | + font-display: swap; | |
| 106 | +} | |
| 107 | + | |
| 108 | +/* Medium (500) */ | |
| 109 | +@font-face { | |
| 110 | + font-family: 'Pretendard'; | |
| 111 | + font-weight: 500; | |
| 112 | + font-style: normal; | |
| 113 | + src: url('/font/Pretendard-Medium.woff2') format('woff2'), | |
| 114 | + url('/font/Pretendard-Medium.woff') format('woff'), | |
| 115 | + url('/font/Pretendard-Medium.ttf') format('truetype'), | |
| 116 | + url('/font/Pretendard-Medium.otf') format('opentype'); | |
| 117 | + font-display: swap; | |
| 118 | +} | |
| 119 | + | |
| 120 | +/* SemiBold (600) */ | |
| 121 | +@font-face { | |
| 122 | + font-family: 'Pretendard'; | |
| 123 | + font-weight: 600; | |
| 124 | + font-style: normal; | |
| 125 | + src: url('/font/Pretendard-SemiBold.woff2') format('woff2'), | |
| 126 | + url('/font/Pretendard-SemiBold.woff') format('woff'), | |
| 127 | + url('/font/Pretendard-SemiBold.ttf') format('truetype'), | |
| 128 | + url('/font/Pretendard-SemiBold.otf') format('opentype'); | |
| 129 | + font-display: swap; | |
| 130 | +} | |
| 131 | + | |
| 132 | +/* Bold (700) */ | |
| 133 | +@font-face { | |
| 134 | + font-family: 'Pretendard'; | |
| 135 | + font-weight: 700; | |
| 136 | + font-style: normal; | |
| 137 | + src: url('/font/Pretendard-Bold.woff2') format('woff2'), | |
| 138 | + url('/font/Pretendard-Bold.woff') format('woff'), | |
| 139 | + url('/font/Pretendard-Bold.ttf') format('truetype'), | |
| 140 | + url('/font/Pretendard-Bold.otf') format('opentype'); | |
| 141 | + font-display: swap; | |
| 142 | +} | |
| 143 | + | |
| 144 | +/* ExtraBold (800) */ | |
| 145 | +@font-face { | |
| 146 | + font-family: 'Pretendard'; | |
| 147 | + font-weight: 800; | |
| 148 | + font-style: normal; | |
| 149 | + src: url('/font/Pretendard-ExtraBold.woff2') format('woff2'), | |
| 150 | + url('/font/Pretendard-ExtraBold.woff') format('woff'), | |
| 151 | + url('/font/Pretendard-ExtraBold.ttf') format('truetype'), | |
| 152 | + url('/font/Pretendard-ExtraBold.otf') format('opentype'); | |
| 153 | + font-display: swap; | |
| 154 | +} | |
| 155 | + | |
| 156 | +/* Black (900) */ | |
| 157 | +@font-face { | |
| 158 | + font-family: 'Pretendard'; | |
| 159 | + font-weight: 900; | |
| 160 | + font-style: normal; | |
| 161 | + src: url('/font/Pretendard-Black.woff2') format('woff2'), | |
| 162 | + url('/font/Pretendard-Black.woff') format('woff'), | |
| 163 | + url('/font/Pretendard-Black.ttf') format('truetype'), | |
| 164 | + url('/font/Pretendard-Black.otf') format('opentype'); | |
| 165 | + font-display: swap; | |
| 166 | +} | |
| 167 | + | |
| 168 | + | |
| 169 | +/* ================================ | |
| 170 | + Gmarket Sans TTF | |
| 171 | + ================================ */ | |
| 172 | + | |
| 173 | +@font-face { | |
| 174 | + font-family: 'Gmarket Sans TTF'; | |
| 175 | + font-weight: 300; | |
| 176 | + font-style: normal; | |
| 177 | + src: url('/font/GmarketSansTTFLight.woff2') format('woff2'), | |
| 178 | + url('/font/GmarketSansTTFLight.woff') format('woff'), | |
| 179 | + url('/font/GmarketSansTTFLight.ttf') format('truetype'), | |
| 180 | + url('/font/GmarketSansTTFLight.eot?#iefix') format('embedded-opentype'); | |
| 181 | + font-display: swap; | |
| 182 | +} | |
| 183 | + | |
| 184 | +@font-face { | |
| 185 | + font-family: 'Gmarket Sans TTF'; | |
| 186 | + font-weight: 500; | |
| 187 | + font-style: normal; | |
| 188 | + src: url('/font/GmarketSansTTFMedium.woff2') format('woff2'), | |
| 189 | + url('/font/GmarketSansTTFMedium.woff') format('woff'), | |
| 190 | + url('/font/GmarketSansTTFMedium.ttf') format('truetype'), | |
| 191 | + url('/font/GmarketSansTTFMedium.eot?#iefix') format('embedded-opentype'); | |
| 192 | + font-display: swap; | |
| 193 | +} | |
| 194 | + | |
| 195 | +@font-face { | |
| 196 | + font-family: 'Gmarket Sans TTF'; | |
| 197 | + font-weight: 700; | |
| 198 | + font-style: normal; | |
| 199 | + src: url('/font/GmarketSansTTFBold.woff2') format('woff2'), | |
| 200 | + url('/font/GmarketSansTTFBold.woff') format('woff'), | |
| 201 | + url('/font/GmarketSansTTFBold.ttf') format('truetype'), | |
| 202 | + url('/font/GmarketSansTTFBold.eot?#iefix') format('embedded-opentype'); | |
| 203 | + font-display: swap; | |
| 204 | +} | |
| 205 | + | |
| 206 | +/* ================================ | |
| 207 | + S-Core Dream 1 | |
| 208 | + ================================ */ | |
| 209 | + | |
| 210 | +@font-face { | |
| 211 | + font-family: 'S-Core Dream'; | |
| 212 | + src: url('/font/S-CoreDream-1Thin.eot'); | |
| 213 | + src: url('/font/S-CoreDream-1Thin.eot?#iefix') format('embedded-opentype'), | |
| 214 | + url('/font/S-CoreDream-1Thin.woff2') format('woff2'), | |
| 215 | + url('/font/S-CoreDream-1Thin.woff') format('woff'), | |
| 216 | + url('/font/S-CoreDream-1Thin.ttf') format('truetype'); | |
| 217 | + font-weight: 100; | |
| 218 | + font-style: normal; | |
| 219 | + font-display: swap; | |
| 220 | +} | |
| 221 | + | |
| 222 | +@font-face { | |
| 223 | + font-family: 'S-Core Dream'; | |
| 224 | + src: url('/font/S-CoreDream-2ExtraLight.eot'); | |
| 225 | + src: url('/font/S-CoreDream-2ExtraLight.eot?#iefix') format('embedded-opentype'), | |
| 226 | + url('/font/S-CoreDream-2ExtraLight.woff2') format('woff2'), | |
| 227 | + url('/font/S-CoreDream-2ExtraLight.woff') format('woff'), | |
| 228 | + url('/font/S-CoreDream-2ExtraLight.ttf') format('truetype'); | |
| 229 | + font-weight: 200; | |
| 230 | + font-style: normal; | |
| 231 | + font-display: swap; | |
| 232 | +} | |
| 233 | + | |
| 234 | +@font-face { | |
| 235 | + font-family: 'S-Core Dream'; | |
| 236 | + src: url('/font/S-CoreDream-3Light.eot'); | |
| 237 | + src: url('/font/S-CoreDream-3Light.eot?#iefix') format('embedded-opentype'), | |
| 238 | + url('/font/S-CoreDream-3Light.woff2') format('woff2'), | |
| 239 | + url('/font/S-CoreDream-3Light.woff') format('woff'), | |
| 240 | + url('/font/S-CoreDream-3Light.ttf') format('truetype'); | |
| 241 | + font-weight: 300; | |
| 242 | + font-style: normal; | |
| 243 | + font-display: swap; | |
| 244 | +} | |
| 245 | + | |
| 246 | +@font-face { | |
| 247 | + font-family: 'S-Core Dream'; | |
| 248 | + src: url('/font/S-CoreDream-4Regular.eot'); | |
| 249 | + src: url('/font/S-CoreDream-4Regular.eot?#iefix') format('embedded-opentype'), | |
| 250 | + url('/font/S-CoreDream-4Regular.woff2') format('woff2'), | |
| 251 | + url('/font/S-CoreDream-4Regular.woff') format('woff'), | |
| 252 | + url('/font/S-CoreDream-4Regular.ttf') format('truetype'); | |
| 253 | + font-weight: 400; | |
| 254 | + font-style: normal; | |
| 255 | + font-display: swap; | |
| 256 | +} | |
| 257 | + | |
| 258 | +@font-face { | |
| 259 | + font-family: 'S-Core Dream'; | |
| 260 | + src: url('/font/S-CoreDream-5Medium.eot'); | |
| 261 | + src: url('/font/S-CoreDream-5Medium.eot?#iefix') format('embedded-opentype'), | |
| 262 | + url('/font/S-CoreDream-5Medium.woff2') format('woff2'), | |
| 263 | + url('/font/S-CoreDream-5Medium.woff') format('woff'), | |
| 264 | + url('/font/S-CoreDream-5Medium.ttf') format('truetype'); | |
| 265 | + font-weight: 500; | |
| 266 | + font-style: normal; | |
| 267 | + font-display: swap; | |
| 268 | +} | |
| 269 | + | |
| 270 | +@font-face { | |
| 271 | + font-family: 'S-Core Dream'; | |
| 272 | + src: url('/font/S-CoreDream-6Bold.eot'); | |
| 273 | + src: url('/font/S-CoreDream-6Bold.eot?#iefix') format('embedded-opentype'), | |
| 274 | + url('/font/S-CoreDream-6Bold.woff2') format('woff2'), | |
| 275 | + url('/font/S-CoreDream-6Bold.woff') format('woff'), | |
| 276 | + url('/font/S-CoreDream-6Bold.ttf') format('truetype'); | |
| 277 | + font-weight: 600; | |
| 278 | + font-style: normal; | |
| 279 | + font-display: swap; | |
| 280 | +} | |
| 281 | + | |
| 282 | +@font-face { | |
| 283 | + font-family: 'S-Core Dream'; | |
| 284 | + src: url('/font/S-CoreDream-7ExtraBold.eot'); | |
| 285 | + src: url('/font/S-CoreDream-7ExtraBold.eot?#iefix') format('embedded-opentype'), | |
| 286 | + url('/font/S-CoreDream-7ExtraBold.woff2') format('woff2'), | |
| 287 | + url('/font/S-CoreDream-7ExtraBold.woff') format('woff'), | |
| 288 | + url('/font/S-CoreDream-7ExtraBold.ttf') format('truetype'); | |
| 289 | + font-weight: 700; | |
| 290 | + font-style: normal; | |
| 291 | + font-display: swap; | |
| 292 | +} | |
| 293 | + | |
| 294 | +@font-face { | |
| 295 | + font-family: 'S-Core Dream'; | |
| 296 | + src: url('/font/S-CoreDream-8Heavy.eot'); | |
| 297 | + src: url('/font/S-CoreDream-8Heavy.eot?#iefix') format('embedded-opentype'), | |
| 298 | + url('/font/S-CoreDream-8Heavy.woff2') format('woff2'), | |
| 299 | + url('/font/S-CoreDream-8Heavy.woff') format('woff'), | |
| 300 | + url('/font/S-CoreDream-8Heavy.ttf') format('truetype'); | |
| 301 | + font-weight: 800; | |
| 302 | + font-style: normal; | |
| 303 | + font-display: swap; | |
| 304 | +} | |
| 305 | + | |
| 306 | +@font-face { | |
| 307 | + font-family: 'S-Core Dream'; | |
| 308 | + src: url('/font/S-CoreDream-9Black.eot'); | |
| 309 | + src: url('/font/S-CoreDream-9Black.eot?#iefix') format('embedded-opentype'), | |
| 310 | + url('/font/S-CoreDream-9Black.woff2') format('woff2'), | |
| 311 | + url('/font/S-CoreDream-9Black.woff') format('woff'), | |
| 312 | + url('/font/S-CoreDream-9Black.ttf') format('truetype'); | |
| 313 | + font-weight: 900; | |
| 314 | + font-style: normal; | |
| 315 | + font-display: swap; | |
| 316 | +} | |
| 317 | + |
+++ src/styles/common/reset.css
... | ... | @@ -0,0 +1,210 @@ |
| 1 | +/* ======================================================================== | |
| 2 | + reset.css ??2025 | |
| 3 | + ?묒꽦?? ?뺤닔鍮? | |
| 4 | + ?좎쭨: 2025-10-17 | |
| 5 | + ======================================================================== */ | |
| 6 | + | |
| 7 | +/* box-sizing & 湲곕낯 由ъ뀑 */ | |
| 8 | +*, *::before, *::after { | |
| 9 | + box-sizing: border-box; | |
| 10 | + margin: 0; | |
| 11 | + padding: 0; | |
| 12 | +} | |
| 13 | + | |
| 14 | +/* HTML5 ?붿냼 湲곕낯 ?쒖떆 蹂댁옣 */ | |
| 15 | +article, aside, details, figcaption, figure, | |
| 16 | +footer, header, hgroup, menu, nav, section, main { | |
| 17 | + display: block; | |
| 18 | +} | |
| 19 | + | |
| 20 | +/* root ?ㅼ젙 */ | |
| 21 | +html { | |
| 22 | + scroll-behavior: smooth; | |
| 23 | + -webkit-text-size-adjust: 100%; | |
| 24 | + font-size: 16px; | |
| 25 | +} | |
| 26 | + | |
| 27 | +body { | |
| 28 | + min-height: 100vh; | |
| 29 | + line-height: 1.5; | |
| 30 | + font-family: 'Noto Sans KR', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; | |
| 31 | + -webkit-font-smoothing: antialiased; | |
| 32 | + -moz-osx-font-smoothing: grayscale; | |
| 33 | + letter-spacing: -0.35px; | |
| 34 | + color: #222; | |
| 35 | + background-color: #fff; | |
| 36 | +} | |
| 37 | + | |
| 38 | +/* ?띿뒪???붿냼 */ | |
| 39 | +h1, h2, h3, h4, h5, h6, p { | |
| 40 | + font-weight: inherit; | |
| 41 | + font-size: inherit; | |
| 42 | + color: inherit; | |
| 43 | + margin: 0; | |
| 44 | + padding: 0; | |
| 45 | +} | |
| 46 | + | |
| 47 | +a { | |
| 48 | + color: inherit; | |
| 49 | + text-decoration: none; | |
| 50 | + display: inline-block; | |
| 51 | +} | |
| 52 | +a:focus-visible { | |
| 53 | + outline: 2px solid #222; | |
| 54 | + outline-offset: 3px; | |
| 55 | +} | |
| 56 | + | |
| 57 | +/* 由ъ뒪??*/ | |
| 58 | +ol, ul { | |
| 59 | + list-style: none; | |
| 60 | +} | |
| 61 | + | |
| 62 | +/* ?대?吏 諛?誘몃뵒??*/ | |
| 63 | +img, picture, video, canvas, svg { | |
| 64 | + display: block; | |
| 65 | + max-width: 100%; | |
| 66 | + height: auto; | |
| 67 | + border: 0; | |
| 68 | + font-size: 0; | |
| 69 | +} | |
| 70 | + | |
| 71 | +/* ??*/ | |
| 72 | +table { | |
| 73 | + border-collapse: collapse; | |
| 74 | + border-spacing: 0; | |
| 75 | + table-layout: fixed; | |
| 76 | + width: 100%; | |
| 77 | +} | |
| 78 | + | |
| 79 | +/* ???붿냼 */ | |
| 80 | +button, input, select, textarea { | |
| 81 | + font: inherit; | |
| 82 | + color: inherit; | |
| 83 | + border: none; | |
| 84 | + background: none; | |
| 85 | + margin: 0; | |
| 86 | + padding: 0; | |
| 87 | + vertical-align: middle; | |
| 88 | + | |
| 89 | + appearance: none; | |
| 90 | +} | |
| 91 | + | |
| 92 | +/* ?쇰뵒?? 泥댄겕諛뺤뒪??appearance ?쒓굅 湲덉? (湲곕낯 ?쒖떆 ?좎?) */ | |
| 93 | +input[type="radio"], | |
| 94 | +input[type="checkbox"] { | |
| 95 | + appearance: auto; | |
| 96 | + -webkit-appearance: auto; | |
| 97 | + -moz-appearance: auto; | |
| 98 | + display: inline-block; | |
| 99 | + width: auto; | |
| 100 | + height: auto; | |
| 101 | + cursor: pointer; | |
| 102 | + vertical-align: middle; | |
| 103 | +} | |
| 104 | + | |
| 105 | +button { | |
| 106 | + cursor: pointer; | |
| 107 | + background: transparent; | |
| 108 | +} | |
| 109 | + | |
| 110 | +input::placeholder, | |
| 111 | +textarea::placeholder { | |
| 112 | + color: #777; | |
| 113 | + font-weight: 400; | |
| 114 | + font-size:14px; | |
| 115 | +} | |
| 116 | + | |
| 117 | +input:disabled, | |
| 118 | +input:read-only, | |
| 119 | +textarea:disabled, | |
| 120 | +textarea:read-only, | |
| 121 | +select:disabled, | |
| 122 | +select:read-only | |
| 123 | +input.readonly, | |
| 124 | +textarea.readonly, | |
| 125 | +select.readonly{ | |
| 126 | + background-color: var(--disable-fill-bg-color) !important; | |
| 127 | + color: var(--disable-fill-text-color) !important; | |
| 128 | + border: 1px solid var(--disable-fill-line-color) !important; | |
| 129 | +} | |
| 130 | + | |
| 131 | +/* ?묎렐??- label ?④? 泥섎━ */ | |
| 132 | +caption,.caption, .label, .sr-only, .visually-hidden { | |
| 133 | + position: absolute; | |
| 134 | + width: 1px; | |
| 135 | + height: 1px; | |
| 136 | + padding: 0; | |
| 137 | + margin: -1px; | |
| 138 | + overflow: hidden; | |
| 139 | + clip: rect(0, 0, 0, 0); | |
| 140 | + white-space: nowrap; | |
| 141 | + border: 0; | |
| 142 | +} | |
| 143 | + | |
| 144 | +/* ?ㅽ겕濡ㅻ컮 而ㅼ뒪?곕쭏?댁쭠 */ | |
| 145 | +::-webkit-scrollbar { | |
| 146 | + width: 7px; | |
| 147 | + height: 7px; | |
| 148 | +} | |
| 149 | +::-webkit-scrollbar-thumb { | |
| 150 | + background: #adadad; | |
| 151 | + border-radius: 10px; | |
| 152 | +} | |
| 153 | +::-webkit-scrollbar-track { | |
| 154 | + background: transparent; | |
| 155 | +} | |
| 156 | + | |
| 157 | +/* ?몄슜, 湲고? */ | |
| 158 | +blockquote, q { | |
| 159 | + quotes: none; | |
| 160 | +} | |
| 161 | +blockquote::before, blockquote::after, | |
| 162 | +q::before, q::after { | |
| 163 | + content: ''; | |
| 164 | +} | |
| 165 | + | |
| 166 | +/* ???덉쇅 泥섎━ */ | |
| 167 | +input[type="search"]::-webkit-search-cancel-button, | |
| 168 | +input[type="search"]::-webkit-search-decoration { | |
| 169 | + appearance: none; | |
| 170 | +} | |
| 171 | + | |
| 172 | +/* 二쇱냼, ?댄깶由???*/ | |
| 173 | +address, em, i { | |
| 174 | + font-style: normal; | |
| 175 | +} | |
| 176 | + | |
| 177 | +/* hr */ | |
| 178 | +hr { | |
| 179 | + border: none; | |
| 180 | + height: 1px; | |
| 181 | + background: #e0e0e0; | |
| 182 | + margin: 0; | |
| 183 | +} | |
| 184 | + | |
| 185 | +/* ?띿뒪?몄쁺??湲곕낯 */ | |
| 186 | +textarea { | |
| 187 | + resize: vertical; | |
| 188 | + color: #333; | |
| 189 | +} | |
| 190 | + | |
| 191 | +/* ?묎렐?? 紐⑥뀡 以꾩씠湲??좏샇 ??*/ | |
| 192 | +@media (prefers-reduced-motion: reduce) { | |
| 193 | + *, *::before, *::after { | |
| 194 | + animation-duration: 0.001ms !important; | |
| 195 | + transition-duration: 0.001ms !important; | |
| 196 | + scroll-behavior: auto !important; | |
| 197 | + } | |
| 198 | +} | |
| 199 | + | |
| 200 | +/* ?ㅽ겕紐⑤뱶 湲곕낯 ???*/ | |
| 201 | +/*@media (prefers-color-scheme: dark) {*/ | |
| 202 | +/* body {*/ | |
| 203 | +/* color: #e6e6e6;*/ | |
| 204 | +/* background-color: #111;*/ | |
| 205 | +/* }*/ | |
| 206 | +/* ::-webkit-scrollbar-thumb {*/ | |
| 207 | +/* background: #666;*/ | |
| 208 | +/* }*/ | |
| 209 | +/*}*/ | |
| 210 | + |
+++ src/styles/common/reset_bak.css
... | ... | @@ -0,0 +1,53 @@ |
| 1 | +/* reset ?뚯씪 ?뺣━ */ | |
| 2 | + | |
| 3 | +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;color: inherit;font-weight: inherit;font-family: 'Noto Sans KR', sans-serif; word-break: keep-all;} | |
| 4 | +article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display: block; font-family: 'Noto Sans KR', sans-serif; margin: 0; padding: 0; border: 0; font-size: 100%;} | |
| 5 | +body {min-height: 100vh;line-height: 1.4;-webkit-font-smoothing: antialiased;letter-spacing:-0.5px;;} | |
| 6 | +ol,ul,li {list-style: none;} | |
| 7 | +p, h1, h2, h3, h4, h5, h6 {margin: 0; padding: 0;letter-spacing: -0.35px;} | |
| 8 | +h1, h2, h3, h4, h5, h6, button, input, label{line-height:1.1;} | |
| 9 | +a {color: inherit; text-decoration: none; display: block;} | |
| 10 | +/* a:focus:active:hover{outline: 0} */ | |
| 11 | +img {display:block;max-width: 100%;font-size: 0; border: 0;} | |
| 12 | +table {border-collapse: collapse; border-spacing: 0; table-layout: fixed;} | |
| 13 | +select, input {vertical-align: middle; font-family: 'Noto Sans KR', sans-serif; margin:0;} | |
| 14 | +caption, .label{position: absolute;width: 1px; height: 1px; margin: 0; border: none; clip: rect(0,0,0,0); overflow: hidden;} | |
| 15 | +/* ?덈뱶濡쒖씠??諛??꾩씠?곗뿉??湲곕낯?곸쑝濡??곸슜?섏뼱?덈뒗 select, input css ?쒓굅. */ | |
| 16 | +select {background-color: #fff; appearance: none; -webkit-appearance: none; -moz-appearance: none;} | |
| 17 | +select::-ms-expand {display: none;} | |
| 18 | +button,html input[type="button"],input[type="reset"],input[type="submit"] {-webkit-appearance: button; cursor: pointer; *overflow: visible; font-family: 'Noto Sans KR', sans-serif;} | |
| 19 | +button[disabled],html input[disabled] {cursor: default;} | |
| 20 | +/* ie ?섏쐞踰꾩쟾 湲곕낯?곸쑝濡??곸슜?섏뼱 ?덈뒗 css 蹂寃?*/ | |
| 21 | +input[type="checkbox"],input[type="radio"] {box-sizing: border-box; padding: 0; *height: 13px; *width: 13px;} | |
| 22 | +/* ?꾩씠??湲곕낯?곸쑝濡??곸슜?섏뼱 ?덈뒗 踰꾪듉 css 蹂寃?*/ | |
| 23 | +input{-webkit-appearance: button;} | |
| 24 | +input::placeholder{font-size:15px;font-weight:300;font-family:'Noto Sans KR', sans-serif;} | |
| 25 | +/* ?ы뙆由?, ?щ\?먯꽌 湲곕낯?곸쑝濡??곸슜?섏뼱 ?덈뒗 css 蹂寃?*/ | |
| 26 | +input[type="search"] {-webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box;} | |
| 27 | +input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {-webkit-appearance: none;} | |
| 28 | +address, em, i {font-style: normal;} | |
| 29 | +button {border: 0; background: none; cursor: pointer;} | |
| 30 | +hr {margin: 0; border: none; padding: 0; display: block;} | |
| 31 | +figure, figcaption {margin: 0; padding: 0;} | |
| 32 | +form, fieldset {border: none; margin: 0; padding: 0; line-height: 1;} | |
| 33 | +input[type="submit"] {-webkit-appearance: none; -moz-appearance: none; appearance: none;} | |
| 34 | +header, footer, article, section, aside, nav, main {display: block;} | |
| 35 | +textarea{color: #666;font-size: 20px;font-weight: 300; font-family: 'Noto Sans KR', sans-serif;} | |
| 36 | + | |
| 37 | +input::placeholder,input[type="text"]::placeholder,input[type="password"]::placeholder,input[type="text"]:-ms-input-placeholder,input[type="password"]:-ms-input-placeholder{color: #666 !important; font-size: 16px !important;} | |
| 38 | +input[type="text"]:focus::placeholder,input[type="password"]:focus::placeholder{color: transparent;} | |
| 39 | + | |
| 40 | +input:disabled,input[disabled="disabled"],input:read-only,input[readonly="readonly"]{background-color: #f8f9fa !important; color: #aaa !important; border:1px solid #d8d8d8 !important; font-size: 16px;} | |
| 41 | +button:disabled,button[disabled="disabled"]{background-color: #f8f9fa !important; color: #aaa !important; border: 1px solid #d8d8d8 !important;} | |
| 42 | +select:disabled,select[disabled="disabled"],select.read-only,select[readonly="readonly"]{background-color: #f8f9fa !important; color: #aaa !important; border: 1px solid #d8d8d8 !important;pointer-events:none;} | |
| 43 | +*,*::before,*::after {box-sizing: border-box;} | |
| 44 | + | |
| 45 | +:target{scroll-margin-block: 5ex;} | |
| 46 | + | |
| 47 | +/* a:hover, a:active,a:hover:active { outline: none; } | |
| 48 | +a:focus:not(:focus) {outline: none;} | |
| 49 | +a:focus:not(:focus-visible){outline: none;} */ | |
| 50 | + | |
| 51 | +::-webkit-scrollbar{width:7px;height:7px;} /* ?ㅽ겕濡ㅻ컮 ?덈퉬 */ | |
| 52 | +::-webkit-scrollbar-thumb{background:#adadad;border-radius:10px;} /* ?ㅽ겕濡ㅻ컮 紐⑥뼇 */ | |
| 53 | +::-webkit-scrollbar-track{background:transparent;} /* ?룸같寃?*/ |
+++ src/styles/common/style.css
... | ... | @@ -0,0 +1,187 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +/* 媛꾧꺽 */ | |
| 4 | +.p0 {padding: 0px!important;} | |
| 5 | +.p5 {padding: 5px!important;} | |
| 6 | + | |
| 7 | +.pt5 {padding-top: 5px!important;} | |
| 8 | +.pt10 {padding-top: 10px!important;} | |
| 9 | +.pt15 {padding-top: 15px!important;} | |
| 10 | +.pt20 {padding-top: 20px!important;} | |
| 11 | +.pt25 {padding-top: 25px!important;} | |
| 12 | +.pt30 {padding-top: 30px!important;} | |
| 13 | +.pt35 {padding-top: 35px!important;} | |
| 14 | +.pt40 {padding-top: 40px!important;} | |
| 15 | +.pt45 {padding-top: 45px!important;} | |
| 16 | +.pt50 {padding-top: 50px!important;} | |
| 17 | + | |
| 18 | +.pr0 {padding-right: 0px!important;} | |
| 19 | +.pr20 {padding-right: 20px!important;} | |
| 20 | + | |
| 21 | +.pb5 {padding-bottom: 5px!important;} | |
| 22 | +.pb10 {padding-bottom: 10px!important;} | |
| 23 | +.pb15 {padding-bottom: 15px!important;} | |
| 24 | +.pb20 {padding-bottom: 20px!important;} | |
| 25 | +.pb25 {padding-bottom: 25px!important;} | |
| 26 | +.pb30 {padding-bottom: 30px!important;} | |
| 27 | +.pb35 {padding-bottom: 35px!important;} | |
| 28 | +.pb40 {padding-bottom: 40px!important;} | |
| 29 | +.pb45 {padding-bottom: 45px!important;} | |
| 30 | +.pb50 {padding-bottom: 50px!important;} | |
| 31 | + | |
| 32 | +.pl0 {padding-left: 0px!important;} | |
| 33 | +.pl15 {padding-left: 15px!important;} | |
| 34 | +.pl20 {padding-left: 20px!important;} | |
| 35 | + | |
| 36 | +.m20 {margin: 20px!important;} | |
| 37 | + | |
| 38 | +.mt-1 {margin-top: -1px!important;} | |
| 39 | +.mt0 {margin-top: 0px!important;} | |
| 40 | +.mt5 {margin-top: 5px!important;} | |
| 41 | +.mt10 {margin-top: 10px!important;} | |
| 42 | +.mt15 {margin-top: 15px!important;} | |
| 43 | +.mt20 {margin-top: 20px!important;} | |
| 44 | +.mt25 {margin-top: 25px!important;} | |
| 45 | +.mt30 {margin-top: 30px!important;} | |
| 46 | +.mt35 {margin-top: 35px!important;} | |
| 47 | +.mt40 {margin-top: 40px!important;} | |
| 48 | +.mt45 {margin-top: 45px!important;} | |
| 49 | +.mt50 {margin-top: 50px!important;} | |
| 50 | +.mt60 {margin-top: 60px!important;} | |
| 51 | +.mt70 {margin-top: 70px!important;} | |
| 52 | +.mt80 {margin-top: 80px!important;} | |
| 53 | +.mt90 {margin-top: 90px!important;} | |
| 54 | +.mt100 {margin-top: 100px!important;} | |
| 55 | + | |
| 56 | +.mr0 {margin-right: 0px!important;} | |
| 57 | +.mr3 {margin-right: 3px!important;} | |
| 58 | +.mr5 {margin-right: 5px!important;} | |
| 59 | +.mr10 {margin-right: 10px!important;} | |
| 60 | +.mr15 {margin-right: 15px!important;} | |
| 61 | +.mr20 {margin-right: 20px!important;} | |
| 62 | +.mr25 {margin-right: 25px!important;} | |
| 63 | +.mr30 {margin-right: 30px!important;} | |
| 64 | +.mr35 {margin-right: 35px!important;} | |
| 65 | +.mr40 {margin-right: 40px!important;} | |
| 66 | +.mr45 {margin-right: 45px!important;} | |
| 67 | +.mr50 {margin-right: 50px!important;} | |
| 68 | +.mr60 {margin-right: 60px!important;} | |
| 69 | +.mr70 {margin-right: 70px!important;} | |
| 70 | +.mr80 {margin-right: 80px!important;} | |
| 71 | +.mr90 {margin-right: 90px!important;} | |
| 72 | +.mr100 {margin-right: 100px!important;} | |
| 73 | + | |
| 74 | +.mb-4 {margin-bottom: -4px!important;} | |
| 75 | +.mb0 {margin-bottom: 0px!important;} | |
| 76 | +.mb1 {margin-bottom: 1px!important;} | |
| 77 | +.mb5 {margin-bottom: 5px!important;} | |
| 78 | +.mb10 {margin-bottom: 10px!important;} | |
| 79 | +.mb15 {margin-bottom: 15px!important;} | |
| 80 | +.mb18 {margin-bottom: 18px!important;} | |
| 81 | +.mb20 {margin-bottom: 20px!important;} | |
| 82 | +.mb25 {margin-bottom: 25px!important;} | |
| 83 | +.mb30 {margin-bottom: 30px!important;} | |
| 84 | +.mb35 {margin-bottom: 35px!important;} | |
| 85 | +.mb40 {margin-bottom: 40px!important;} | |
| 86 | +.mb45 {margin-bottom: 45px!important;} | |
| 87 | +.mb50 {margin-bottom: 50px!important;} | |
| 88 | +.mb60 {margin-bottom: 60px!important;} | |
| 89 | +.mb70 {margin-bottom: 70px!important;} | |
| 90 | +.mb80 {margin-bottom: 80px!important;} | |
| 91 | +.mb90 {margin-bottom: 90px!important;} | |
| 92 | +.mb100 {margin-bottom: 100px!important;} | |
| 93 | + | |
| 94 | +.ml0 {margin-left: 0px!important;} | |
| 95 | +.ml5 {margin-left: 5px!important;} | |
| 96 | +.ml10 {margin-left: 10px!important;} | |
| 97 | +.ml15 {margin-left: 15px!important;} | |
| 98 | +.ml20 {margin-left: 20px!important;} | |
| 99 | +.ml25 {margin-left: 25px!important;} | |
| 100 | +.ml30 {margin-left: 30px!important;} | |
| 101 | +.ml35 {margin-left: 35px!important;} | |
| 102 | +.ml40 {margin-left: 40px!important;} | |
| 103 | +.ml45 {margin-left: 45px!important;} | |
| 104 | +.ml50 {margin-left: 50px!important;} | |
| 105 | +.ml60 {margin-left: 60px!important;} | |
| 106 | +.ml70 {margin-left: 70px!important;} | |
| 107 | +.ml80 {margin-left: 80px!important;} | |
| 108 | +.ml90 {margin-left: 90px!important;} | |
| 109 | +.ml100 {margin-left: 100px!important;} | |
| 110 | + | |
| 111 | +/* ?덈퉬, ?믪씠 */ | |
| 112 | +.w100per {width: 100% !important;} | |
| 113 | +.w99per {width: 99%;} | |
| 114 | +.w95per {width: 95%;} | |
| 115 | +.w90per {width: 90%;} | |
| 116 | +.w85per {width: 85%;} | |
| 117 | +.w80per {width: 80%;} | |
| 118 | +.w75per {width: 75%;} | |
| 119 | +.w70per {width: 70%;} | |
| 120 | +.w65per {width: 65%;} | |
| 121 | +.w60per {width: 60%;} | |
| 122 | +.w50per {width: 50%;} | |
| 123 | +.w55per {width: 55%;} | |
| 124 | +.w45per {width: 45%;} | |
| 125 | +.w40per {width: 40%;} | |
| 126 | +.w35per {width: 35%;} | |
| 127 | +.w33per {width: 33.3333333%;} | |
| 128 | +.w30per {width: 30%;} | |
| 129 | +.w25per {width: 25%;} | |
| 130 | +.w20per {width: 20%;} | |
| 131 | +.w19per {width: 19%;} | |
| 132 | +.w18per {width: 18%;} | |
| 133 | +.w17per {width: 17%;} | |
| 134 | +.w16per {width: 16%;} | |
| 135 | +.w15per {width: 15%;} | |
| 136 | +.w14per {width: 14%;} | |
| 137 | +.w13per {width: 13%;} | |
| 138 | +.w12per {width: 12%;} | |
| 139 | +.w11per {width: 11%;} | |
| 140 | +.w10per {width: 10%;} | |
| 141 | +.w9per {width: 9%;} | |
| 142 | +.w8per {width: 8%;} | |
| 143 | +.w7per {width: 7%;} | |
| 144 | +.w6per {width: 6%;} | |
| 145 | +.w5per {width: 5%;} | |
| 146 | +.w4per {width: 4%;} | |
| 147 | +.w3per {width: 3%;} | |
| 148 | +.w2per {width: 2%;} | |
| 149 | +.w1per {width: 1%;} | |
| 150 | + | |
| 151 | +.w5 {width: 5px;} | |
| 152 | +.w10 {width: 10px;} | |
| 153 | +.w15 {width: 15px;} | |
| 154 | +.w20 {width: 20px;} | |
| 155 | +.w25 {width: 25px;} | |
| 156 | +.w30 {width: 30px;} | |
| 157 | +.w35 {width: 35px;} | |
| 158 | +.w40 {width: 40px;} | |
| 159 | +.w45 {width: 45px;} | |
| 160 | +.w50 {width: 50px;} | |
| 161 | +.w55 {width: 55px;} | |
| 162 | +.w60 {width: 60px;} | |
| 163 | +.w70 {width: 70px;} | |
| 164 | +.w80 {width: 80px;} | |
| 165 | +.w90 {width: 90px;} | |
| 166 | +.w100 {width: 100px;} | |
| 167 | +.w110 {width: 110px;} | |
| 168 | +.w120 {width: 120px;} | |
| 169 | +.w130 {width: 130px;} | |
| 170 | +.w140 {width: 140px;} | |
| 171 | +.w150 {width: 150px;} | |
| 172 | +.w160 {width: 160px;} | |
| 173 | +.w170 {width: 170px;} | |
| 174 | +.w180 {width: 180px;} | |
| 175 | +.w190 {width: 190px;} | |
| 176 | +.w200 {width: 200px;} | |
| 177 | +.w250 {width: 250px;} | |
| 178 | +.w300 {width: 300px;} | |
| 179 | +.w325 {width: 325px;} | |
| 180 | +.w350 {width: 350px;} | |
| 181 | +.w400 {width: 400px;} | |
| 182 | +.w500 {width: 500px;} | |
| 183 | + | |
| 184 | +.mw100 {min-width: 100px;} | |
| 185 | + | |
| 186 | +.h100 {height: 100px;} | |
| 187 | +.h100per {height: 100%;} |
+++ src/styles/usr/calendar.css
... | ... | @@ -0,0 +1,1 @@ |
| 1 | +(No newline at end of file) |
+++ src/styles/usr/common.css
... | ... | @@ -0,0 +1,59 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +:root{ | |
| 4 | + --primary-color: #2c45c3; | |
| 5 | + --primary-color-hover: #283eb0; | |
| 6 | + --primary-light-color: #eaecf9; | |
| 7 | + --primary-light-color-hover: #dfe3f6; | |
| 8 | + --primary-lighter-color: #F0F2FB; | |
| 9 | + --primary-lighter-color-hover: #D2D7EF; | |
| 10 | + --primary-dark-color: #213492; | |
| 11 | + --primary-dark-color-hover: #1a2975; | |
| 12 | + | |
| 13 | + --secondary-color: #2de394; | |
| 14 | + --secondary-color-hover: #29cc85; | |
| 15 | + --secondary-light-color: #eafcf4; | |
| 16 | + --secondary-light-color-hover: #e0fbef; | |
| 17 | + --secondary-dark-color: #22aa6f; | |
| 18 | + --secondary-dark-color-hover: #1b8859; | |
| 19 | + | |
| 20 | + --accent-color:#f86a3c; | |
| 21 | + --accent-color-hover:#df5f36; | |
| 22 | + --accent-light-color:#fef0ec; | |
| 23 | + --accent-light-color-hover:#fee9e2; | |
| 24 | + --accent-dark-color:#ba502d; | |
| 25 | + --accent-dark-color-hover:#954024; | |
| 26 | + | |
| 27 | + | |
| 28 | + --red-color: #e81717; | |
| 29 | + --red-color-hover: #d11515; | |
| 30 | + --red-light-color: #fde8e8; | |
| 31 | + --red-light-color-hover: #fee9e2; | |
| 32 | + | |
| 33 | + --green-color: #19B32B; | |
| 34 | + --green-color-hover: #0E9A1F; | |
| 35 | + | |
| 36 | + --gray-color: #81899C; | |
| 37 | + --gray-color-hover: #717379; | |
| 38 | + --lightgray-color: #D5D9E3; | |
| 39 | + --lightgray-color-hover: #BFC3CD; | |
| 40 | + | |
| 41 | + --primary-title-font:'Pretendard'; | |
| 42 | + --secondary-title-font:'Gmarket Sans TTF'; | |
| 43 | + | |
| 44 | + --primary-title-color:#1A1B1D; | |
| 45 | + --body-text-color:#3F4043; | |
| 46 | + | |
| 47 | + --disable-fill-bg-color:#F8F9FA; | |
| 48 | + --disable-fill-line-color:#D3D7DE; | |
| 49 | + --disable-fill-text-color:#8d9098; | |
| 50 | + | |
| 51 | + --default-line-color:#d3d7de; | |
| 52 | + --disable-line-bg-color:#f5f6f7; | |
| 53 | + --disable-line-border-color:#eaebef; | |
| 54 | + --disable-line-text-color:#bcc0ca; | |
| 55 | +} | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + |
+++ src/styles/usr/content.css
... | ... | @@ -0,0 +1,420 @@ |
| 1 | +/* ================================================== | |
| 2 | + 怨듯넻?덉씠?꾩썐 | |
| 3 | + ================================================== */ | |
| 4 | + | |
| 5 | + body.lock_scroll{overflow:hidden;} | |
| 6 | + | |
| 7 | + .sub_visual{position:relative;width:100%;height:615px;border-radius:0 0 80px 80px;} | |
| 8 | + .sub_title{display:flex;height:100%;font-family:var(--secondary-title-font);font-size:60px;font-weight:bold;color:#fff;letter-spacing:1px;text-shadow:0 0 20px rgba(0,0,0,.3);align-items:center;justify-content:center;} | |
| 9 | + .sub_visual_nav{position:relative;display:flex;width:45%;border-radius:38px 38px 0 0;background:#fff;padding:0 20px;bottom:66px;left:50%;transform:translateX(-50%);align-items:center;} | |
| 10 | + .sub_visual_nav a,.sub_visual_nav .snb_wrap{position:relative;height:66px;} | |
| 11 | + .sub_visual_nav>a::after,.sub_visual_nav .snb_wrap::after{position:absolute;display:inline-block;content:"";width:1px;height:20px;background:#d9d9d9;right:0;top:50%;transform:translateY(-50%);} | |
| 12 | + .sub_visual_nav .snb_wrap:last-child::after{display:none;} | |
| 13 | + .sub_visual_nav::before,.sub_visual_nav::after{position:absolute;content:"";width:41px;height:41px;bottom:0;} | |
| 14 | + .sub_visual_nav::before{background:url(/publish/usr/images/common/sub_visual_nav_left.png);left:-40px;} | |
| 15 | + .sub_visual_nav::after{background:url(/publish/usr/images/common/sub_visual_nav_right.png);right:-40px;} | |
| 16 | + .sub_visual_nav .snb_wrap{width:calc((100% - 66px)/2);} | |
| 17 | + .snb_title{width:100%;height:100%;font-size:20px;font-weight:500;text-align:left;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding:0 60px 0 20px;border:none;background:url(/publish/usr/images/component/icon_select.png) no-repeat calc(100% - 20px) center;} | |
| 18 | + .snb_select{position:absolute;display:none;width:100%;background:#fff;padding:10px;overflow:hidden;top:calc(100% + 4px);border-radius:8px;box-shadow:2px 3px 4px 0 rgba(0, 0, 0, .08);} | |
| 19 | + .snb_select a{display:flex;height:40px;font-size:16px;padding:0 20px;justify-content:flex-start;align-items:center;} | |
| 20 | + .snb_select a:hover{background:var(--primary-light-color);color:var(--primary-color);border-radius:8px;} | |
| 21 | + .active .snb_select{width:100%;height:auto;left:0;border:1px solid #f0f0f0;} | |
| 22 | + | |
| 23 | + .company .sub_visual{background:url(/publish/usr/images/company/visual.jpg);} | |
| 24 | + .major_result .sub_visual{background:url(/publish/usr/images/major_result/visual.jpg);} | |
| 25 | + .platform_tech .sub_visual{background:url(/publish/usr/images/platform_tech/visual.jpg);} | |
| 26 | + | |
| 27 | + .con_title{display:flex;margin:80px 0 36px 0;flex-direction:column;} | |
| 28 | + .con_title .summary{font-family:var(--secondary-title-font);font-size:24px;margin:0 0 12px 0;} | |
| 29 | + .con_title .summary.black{font-family:var(--primary-title-font);} | |
| 30 | + .con_title .title{font-family:var(--secondary-title-font);font-size:36px;} | |
| 31 | + | |
| 32 | + .box{background:#f2f4f6;border-radius:40px;} | |
| 33 | + | |
| 34 | + | |
| 35 | + /* ================================================== | |
| 36 | + Company | |
| 37 | + ================================================== */ | |
| 38 | + | |
| 39 | + /* ?ㅻ┰諛곌꼍 */ | |
| 40 | + .overview{text-align:center;} | |
| 41 | + .overview_contents_top{background:url(/publish/usr/images/company/corp_bg.png) no-repeat center 80px;} | |
| 42 | + .overview .txt strong{font-family:var(--secondary-title-font);font-size:52px;font-weight:bold;} | |
| 43 | + .overview .txt strong span{font-family:var(--secondary-title-font);font-weight:bold;} | |
| 44 | + .overview .txt p{font-family:var(--secondary-title-font);font-size:24px;} | |
| 45 | + .overview .card{display:flex;padding:90px 0 280px 0;gap:46px;justify-content:center;} | |
| 46 | + .overview .card li{position:relative;display:flex;width:calc((100% / 4) - 90px);height:363px;padding:0 30px;text-align:left;color:#fff;border-radius:24px;flex-direction:column;justify-content:flex-end;} | |
| 47 | + .overview .card li:nth-child(2n){transform:translateY(52px);} | |
| 48 | + .overview .card li:nth-child(1){background:url(/publish/usr/images/company/card_01.png) no-repeat center;} | |
| 49 | + .overview .card li:nth-child(2){background:url(/publish/usr/images/company/card_02.png) no-repeat center;} | |
| 50 | + .overview .card li:nth-child(3){background:url(/publish/usr/images/company/card_03.png) no-repeat center;} | |
| 51 | + .overview .card li:nth-child(4){background:url(/publish/usr/images/company/card_04.png) no-repeat center;} | |
| 52 | + .overview .card .number,.overview .card .title{font-family:var(--secondary-title-font);font-weight:bold;} | |
| 53 | + .overview .card .number{position:absolute;font-size:20px;top:25px;right:25px;} | |
| 54 | + .overview .card .title{display:block;font-size:24px;font-weight:bold;} | |
| 55 | + .overview .card .summary{font-size:16px;opacity:0.8;margin:0 0 32px 0;word-break:keep-all;} | |
| 56 | + | |
| 57 | + .overview .circles{position:relative;justify-content:space-between;padding:0 180px;margin:80px 0;} | |
| 58 | + .overview .circles::after{position:absolute;content:"";width:45%;height:1px;border:1px dashed var(--primary-color);right:180px;z-index:-1;} | |
| 59 | + .overview .circles,.overview .circles .left{display:flex;align-items:center;} | |
| 60 | + | |
| 61 | + .overview .circles .left, .overview .circles .right{position:relative;} | |
| 62 | + .overview .circles .left::after, .overview .circles .right::after{position:absolute;content:"";width:16px;height:16px;border-radius:100%;top:50%;transform:translateY(-50%);} | |
| 63 | + .overview .circles .left::after{background:var(--primary-color);right:-8px;} | |
| 64 | + .overview .circles .right::after{border:1px solid var(--primary-color);background:#fff;left:-8px;} | |
| 65 | + | |
| 66 | + .overview .circle.line{position:relative;display:flex;width:400px;height:400px;font-family:var(--secondary-title-font);font-size:32px;color:var(--primary-color);background:#fff;border:1px solid var(--primary-color);border-radius:100%;justify-content:center;align-items:center;} | |
| 67 | + .overview .circle.line:first-child{z-index:2;background:transparent;} | |
| 68 | + .overview .circle.line:first-child::after{position:absolute;content:"+";width:20px;height:40px;font-family:var(--secondary-title-font);font-size:32px;font-weight:bold;right:18px} | |
| 69 | + .overview .circle.line:last-child{margin:0 0 0 -60px;} | |
| 70 | + | |
| 71 | + .overview .circle.fill{position:relative;display:flex;width:460px;height:460px;font-family:var(--secondary-title-font);font-size:40px;color:#fff;background:var(--primary-color);border-radius:100%;justify-content:center;align-items:center;} | |
| 72 | + .overview .circle.fill::after{position:absolute;content:"";width:calc(100% + 60px);height:calc(100% + 60px);background:url(/publish/usr/images/company/obg_deco.png) no-repeat center center;left:-30px;top:-30px;z-index:-1;} | |
| 73 | + | |
| 74 | + /* 議곗쭅??*/ | |
| 75 | + .org_list{display:flex;flex-wrap:wrap;gap:48px 58px;} | |
| 76 | + .org_list>li{width:calc((100% / 2) - 29px);padding:40px;background:#f2f4f6;border-radius:20px;} | |
| 77 | + .org_name{display:flex;flex-direction:column;} | |
| 78 | + .org_name span{font-size:16px;font-weight:700;} | |
| 79 | + .org_name strong{font-family:var(--secondary-title-font);font-size:28px;font-weight:700;} | |
| 80 | + .org_list .list{display:flex;list-style:disc;margin:12px 0 0 0;padding:0 20px;flex-direction:column;gap:4px;} | |
| 81 | + .org_list .list .summary{font-size:14px;color:#444;text-indent:28px;} | |
| 82 | + | |
| 83 | + /* ?ㅼ떆??湲?*/ | |
| 84 | + .location_list{display:flex;flex-direction:column;gap:80px;} | |
| 85 | + .location_list>li{display:flex;gap:60px;align-items:center;} | |
| 86 | + .location_area{width:760px;height:500px;border-radius:20px;background:#f2f4f6;border:1px solid #e0e0e0;} | |
| 87 | + | |
| 88 | + .location_list .title{display:flex;margin:0 0 20px 0;font-size:36px;align-items:center;gap:12px;} | |
| 89 | + .location_list .location{width:32px;height:42px;background:url(/publish/usr/images/component/location.png) no-repeat center;} | |
| 90 | + .location_list .info{width:calc(100% - 820px);} | |
| 91 | + .location_list .info p{font-size:20px;font-weight:400;} | |
| 92 | + | |
| 93 | + .location_list .boxs{display:flex;margin:40px 0 0 0;flex-direction:column;gap:20px;} | |
| 94 | + .location_list .boxs li{display:flex;height:80px;font-size:20px;font-weight:bold;background:#f2f4f6;border-radius:20px;justify-content:center;align-items:center;gap:12px;} | |
| 95 | + .location_list .phone{width:40px;height:40px;background:url(/publish/usr/images/component/phone.png) no-repeat center center;} | |
| 96 | + .location_list .email{width:40px;height:40px;background:url(/publish/usr/images/component/email.png) no-repeat center center;} | |
| 97 | + .location_list .btn_map{width:100%;height:80px;font-size:20px;font-weight:bold;margin:20px 0 0 0;border:1px solid #000;border-radius:100px;;} | |
| 98 | + | |
| 99 | + /* ?고쁺 */ | |
| 100 | + .history_area{position:relative;display:flex;height:818px;gap:89px;overflow:hidden;} | |
| 101 | + .history_year{position:sticky;width:600px;display:flex;height:900px;flex-shrink:0;flex-direction:column;top:0;} | |
| 102 | + .year_item{position:absolute;text-align:right;opacity:0;transform:translateY(-100PX);transition:opacity 0.6s ease-in-out, transform 0.6s ease-in-out;top:0;left:0;} | |
| 103 | + .year_item.active{opacity:1;transform:translateY(0);} | |
| 104 | + .year_item strong{font-family:var(--secondary-title-font);font-size:60px;font-weight:bold;} | |
| 105 | + .year_item .img_box{margin:20px 0 0 0;border-radius:20px;overflow:hidden;} | |
| 106 | + .history_month {position:absolute;width:100%;max-height:100%;overflow-y:auto;-ms-overflow-style:none;scrollbar-width:none;} | |
| 107 | + .month_ul{display:flex;width:calc(100% - 690px);flex-direction:column;margin:0 0 0 auto;} | |
| 108 | + .month_ul:first-child li:first-child{border-top:1px solid #e0e0e0;} | |
| 109 | + .month_ul:last-child{margin:40px 0 0 auto;} | |
| 110 | + .month_ul li{border-bottom:1px solid #e0e0e0;} | |
| 111 | + .month_ul dl{display:flex;padding:40px 0;gap:60px;align-items:flex-start;} | |
| 112 | + .month_ul dd{width:calc(100% - 80px);} | |
| 113 | + .month_ul dd p:nth-child(n+2){margin:36px 0 0 0;} | |
| 114 | + .month_ul .month{width:80px;font-family:var(--secondary-title-font);font-size:24px;font-weight:bold;color:var(--primary-color);letter-spacing:-0.5px;} | |
| 115 | + .month_ul strong{font-size:20px;font-weight:600;;} | |
| 116 | + .month_ul .summary{display:block;font-size:20px;font-weight:400;color:#444;margin:8px 0 0 0;} | |
| 117 | + | |
| 118 | + .history_month.active{position:fixed;left:0;top:207px;} | |
| 119 | + .active .month_ul{width:calc(100% - 980px);margin:0 7% 0 auto;} | |
| 120 | + | |
| 121 | + /* ================================================== | |
| 122 | + Major Result | |
| 123 | + ================================================== */ | |
| 124 | + | |
| 125 | + .figure_content{display:flex;gap:65px;align-items:center;} | |
| 126 | + .figure_content.column{flex-direction:column;align-items:flex-start;} | |
| 127 | + | |
| 128 | + .figure_content .box{display:flex;width:50%;padding:50px 30px;justify-content:center;align-items:center;box-sizing:border-box;} | |
| 129 | + .figure_content .box img{mix-blend-mode:multiply;} | |
| 130 | + .figure_content.column .box{width:100%;margin:20px 0 60px 0;} | |
| 131 | + .figure_content.column .figure_desc{width:100%;} | |
| 132 | + | |
| 133 | + .figure_desc{display:flex;flex-direction:column;gap:24px;} | |
| 134 | + .figure_desc li{min-height:30px;font-size:24px;font-weight:400;text-indent:32px;} | |
| 135 | + .figure_desc.circle li{background:url(/publish/usr/images/component/list_circle.png) no-repeat left 8px;} | |
| 136 | + .figure_desc.square li{background:url(/publish/usr/images/component/list_square.png) no-repeat left 8px;} | |
| 137 | + | |
| 138 | + /* Anti Cancer */ | |
| 139 | + .cancer .figure_content .box img{mix-blend-mode:darken;} | |
| 140 | + | |
| 141 | + /* R&D */ | |
| 142 | + .rd .figure_content.column{gap:40px;} | |
| 143 | + .rd .figure_content .box{margin:0;} | |
| 144 | + .rd .figure_content .box:first-child img{mix-blend-mode: normal;} | |
| 145 | + | |
| 146 | + /* Pipeline Summary */ | |
| 147 | + .pipeline table{table-layout:fixed;width:100%;border-spacing:12px;border-collapse:separate;} | |
| 148 | + .pipeline thead th{font-family:var(--primary-title-font);font-size:20px;font-weight:500;padding:10px 0;background:#AFBCDF;border-radius:8px;word-break:break-all;} | |
| 149 | + .pipeline thead tr:nth-child(2) th{height:44px;font-size:16px;background:#EBEFF7;} | |
| 150 | + | |
| 151 | + .pipeline tr>th,.pipeline tr>td{height:84px;padding:10px 0;border-radius:8px;font-size:20px;font-weight:500;line-height:1.2;text-align:center;word-break:break-all;} | |
| 152 | + .pipeline tbody th{background:#f4f4f4;} | |
| 153 | + .pipeline tbody td{position:relative;border:1px solid #e0e0e0;background:#fff;} | |
| 154 | + .pipeline tbody td[colspan="6"]{border:2px solid #cbd7ff;} | |
| 155 | + .pipeline .graph{position:absolute;width:100%;top:50%;transform:translateY(-50%);} | |
| 156 | + .pipeline .graph span{position:relative;display:flex;height:30px;border-radius:30px 0 0 30px;background:linear-gradient(90deg, #DBE5FF 0%, #3B5BB0 100%);color:#fff;text-shadow:0 0 5px rgba(0,0,0,0.3);justify-content:center;align-items:center;left:10px} | |
| 157 | + .pipeline .graph span::after{position:absolute;content:"";width:51px;height:70px;background:url(/publish/usr/images/major_result/polygon_blue.png) no-repeat center center;right:-44px;} | |
| 158 | + .pipeline .graph.purple span{background:linear-gradient(90deg, #EFEDF7 0%, #5F48B0 100%);} | |
| 159 | + .pipeline .graph.purple span::after{background:url(/publish/usr/images/major_result/polygon_purple.png) no-repeat center center;} | |
| 160 | + .pipeline .graph.orange span{background:linear-gradient(90deg, #FFEADF 0%, #FF8748 100%);} | |
| 161 | + .pipeline .graph.orange span::after{background:url(/publish/usr/images/major_result/polygon_orange.png) no-repeat center center;} | |
| 162 | + .pipeline .graph1 span{width:calc((100% / 6) - 20px);} | |
| 163 | + .pipeline .graph2 span{width:calc((100% / 6)*2 - 100px);} | |
| 164 | + .pipeline .graph3 span{width:calc((100% / 6)*3 - 100px);} | |
| 165 | + .pipeline .graph4 span{width:calc((100% / 6)*4 - 100px);} | |
| 166 | + .pipeline .graph5 span{width:calc((100% / 6)*5 - 100px);} | |
| 167 | + | |
| 168 | + | |
| 169 | + .pipeline ul{display:flex;} | |
| 170 | + .pipeline ul li{height:42px;border-right:1px dashed #bbc8ea;font-size:16px;font-weight:bold;flex-grow:1;} | |
| 171 | + .pipeline ul li:last-child{border:0;} | |
| 172 | + .pipeline tr:first-child ul li:nth-child(5){flex-grow:0.5;color:#3b5bb0;} | |
| 173 | + | |
| 174 | + .pipeline .purple+ul li{color:#5F48B0;} | |
| 175 | + .pipeline .purple+ul li:nth-child(4){flex-grow:1.2;} | |
| 176 | + .pipeline .orange+ul li{color:#FF8748;} | |
| 177 | + .pipeline .orange+ul li:nth-child(5){flex-grow:1.2;} | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + /* ================================================== | |
| 183 | + Platform Tech | |
| 184 | + ================================================== */ | |
| 185 | + .dl_wrap{display:flex;width:100%;gap:32px;} | |
| 186 | + .dl_wrap dl{width:50%;} | |
| 187 | + .dl_wrap dt{font-size:20px;font-weight:700;text-align:center;padding:11px 36px;background:var(--secondary-light-color);border-radius:8px;} | |
| 188 | + .dl_wrap dt span{display:block;font-size:16px;font-weight:400;} | |
| 189 | + .dl_wrap dd{display:flex;height:calc(100% - 100px);background:#f2f4f6;border-radius:8px;margin:36px 0 0 0;justify-content:center;align-items:center;} | |
| 190 | + .dl_wrap dd img{mix-blend-mode:darken;} | |
| 191 | + | |
| 192 | + | |
| 193 | + /* background */ | |
| 194 | + .background .figure_content .box img{mix-blend-mode:normal;} | |
| 195 | + | |
| 196 | + /* autophagy */ | |
| 197 | + .step_ul{display:flex;width:100%;align-items:center;gap:12px;} | |
| 198 | + .step_ul li:not(.next){display:flex;width:calc(100%/6);min-height:91px;font-size:20px;font-weight:500;text-align:center;padding:0 10px;background:#f2f4f6;border-radius:20px;justify-content:center;align-items:center;box-sizing:border-box;} | |
| 199 | + | |
| 200 | + .autophagy .box:nth-child(2){margin:0;} | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + @media (max-width: 1400px){ | |
| 206 | + | |
| 207 | + /* ================================================== | |
| 208 | + 怨듯넻?덉씠?꾩썐 | |
| 209 | + ================================================== */ | |
| 210 | + .sub_visual_nav{width:80%;} | |
| 211 | + | |
| 212 | + /* ================================================== | |
| 213 | + Company | |
| 214 | + ================================================== */ | |
| 215 | + | |
| 216 | + /* ?ㅻ┰諛곌꼍 */ | |
| 217 | + .overview .card li{width:calc((100% / 4) - 60px);} | |
| 218 | + | |
| 219 | + /* ?ㅼ떆??湲?*/ | |
| 220 | + .location_area{width:660px;} | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + } | |
| 225 | + | |
| 226 | + @media (max-width: 1280px){ | |
| 227 | + | |
| 228 | + /* ================================================== | |
| 229 | + 怨듯넻?덉씠?꾩썐 | |
| 230 | + ================================================== */ | |
| 231 | + .sub_title{font-size:40px;} | |
| 232 | + .sub_visual{height:480px;} | |
| 233 | + .sub_visual_nav{width:65%;} | |
| 234 | + .sub_visual_nav .snb_wrap{width:calc(100% - 66px);} | |
| 235 | + .con_title{margin:80px 0 16px 0;} | |
| 236 | + .con_title .title{font-size:28px;} | |
| 237 | + .con_title .summary{font-size:20px;} | |
| 238 | + | |
| 239 | + .platform_tech .sub_visual{background-position:75% center;} | |
| 240 | + | |
| 241 | + /* ================================================== | |
| 242 | + Company | |
| 243 | + ================================================== */ | |
| 244 | + | |
| 245 | + /* ?ㅻ┰諛곌꼍 */ | |
| 246 | + .overview .card{flex-wrap:wrap;} | |
| 247 | + .overview .card li{width:calc((100% / 2) - 60px);height:485px;} | |
| 248 | + .overview .card li:nth-child(1),.overview .card li:nth-child(2),.overview .card li:nth-child(3),.overview .card li:nth-child(4){background-size:cover;} | |
| 249 | + | |
| 250 | + .overview .circles, .overview .circles .left{flex-direction:column;} | |
| 251 | + .overview .circles{gap:120px;} | |
| 252 | + .overview .circles::after{width:1px;height:45%;right:50%;bottom:0;transform:translateX(-50%);} | |
| 253 | + .overview .circles .left::after{left:50%;bottom:-8px;top:auto;transform:translateX(-50%);} | |
| 254 | + .overview .circles .right::after{left:50%;top:-8px;transform:translateX(-50%);} | |
| 255 | + .overview .circle.line:last-child{margin:-60px 0 0 0;} | |
| 256 | + .overview .circle.line:first-child::after{bottom:10px;right:45%;transform:translateX(-50%);} | |
| 257 | + | |
| 258 | + /* ?고쁺 */ | |
| 259 | + .history_area{flex-direction:column;} | |
| 260 | + .history_year{display:none;} | |
| 261 | + .month_ul{position:relative;width:90%;padding:100px 0 0 0;margin:0 auto;} | |
| 262 | + .month_ul::after{position:absolute;content:"";width:100%;height:70px;top:0;font-family:var(--secondary-title-font);font-size:52px;font-weight:bold;} | |
| 263 | + .month_ul:last-child{margin:160px auto 0 auto;} | |
| 264 | + #year_2023::after{content:"2023";} | |
| 265 | + #year_2022::after{content:"2022";} | |
| 266 | + | |
| 267 | + /* ?ㅼ떆??湲?*/ | |
| 268 | + .location_list>li{flex-wrap:wrap;gap:30px} | |
| 269 | + .location_area{width:100%;} | |
| 270 | + .location_list .info{width:100%;} | |
| 271 | + .location_list .boxs{flex-direction:row;} | |
| 272 | + .location_list .boxs li{width:50%;} | |
| 273 | + .location_list .boxs li:only-child{width:100%;} | |
| 274 | + | |
| 275 | + /* ================================================== | |
| 276 | + Platform Tech | |
| 277 | + ================================================== */ | |
| 278 | + | |
| 279 | + /* autophagy */ | |
| 280 | + .step_ul{flex-wrap:wrap;} | |
| 281 | + .step_ul li:not(.next){width:calc((100%/3) - 40px);} | |
| 282 | + .step_ul li:nth-child(6){display:none;} | |
| 283 | + | |
| 284 | + /* ================================================== | |
| 285 | + Major Result | |
| 286 | + ================================================== */ | |
| 287 | + | |
| 288 | + .figure_desc{gap:12px;} | |
| 289 | + .figure_desc li{font-size:20px;} | |
| 290 | + | |
| 291 | + .figure_content.column .box{margin:20px 0;} | |
| 292 | + | |
| 293 | + /* Pipeline Summary */ | |
| 294 | + .pipeline .table_wrap{width:100%;overflow:auto;} | |
| 295 | + .pipeline table{width:1024px;border-spacing:6px;} | |
| 296 | + .pipeline tr>th, .pipeline tr>td{height:60px;font-size:14px;} | |
| 297 | + .pipeline .graph span{font-size:14px;} | |
| 298 | + .pipeline .graph span::after{background-size:60% auto;right:-38px;} | |
| 299 | + .pipeline .graph.purple span::after,.pipeline .graph.orange span::after{background-size:60% auto;right:-38px;} | |
| 300 | + .pipeline tr:first-child ul li:nth-child(5),.pipeline .purple+ul li:nth-child(4),.pipeline .orange+ul li:nth-child(5){font-size:14px;} | |
| 301 | + | |
| 302 | + .pipeline ul li{display:flex;justify-content:center;align-items:center;} | |
| 303 | + | |
| 304 | + .pipeline .graph1 span{width:calc((100% / 6) - 20px);} | |
| 305 | + .pipeline .graph2 span{width:calc((100% / 6)*2 - 60px);} | |
| 306 | + .pipeline .graph3 span{width:calc((100% / 6)*3 - 60px);} | |
| 307 | + .pipeline .graph4 span{width:calc((100% / 6)*4 - 60px);} | |
| 308 | + .pipeline .graph5 span{width:calc((100% / 6)*5 - 60px);} | |
| 309 | + | |
| 310 | + .rd .figure_content.column{gap:0;} | |
| 311 | + | |
| 312 | + } | |
| 313 | + | |
| 314 | + | |
| 315 | + @media (max-width: 768px){ | |
| 316 | + | |
| 317 | + /* ================================================== | |
| 318 | + 怨듯넻?덉씠?꾩썐 | |
| 319 | + ================================================== */ | |
| 320 | + .sub_visual{height:500px;border-radius:0 0 40px 40px;;} | |
| 321 | + .sub_visual_nav{height:66px;} | |
| 322 | + .sub_visual_nav>a{display:none;} | |
| 323 | + .sub_visual_nav .snb_wrap{width:calc(100% / 2);} | |
| 324 | + | |
| 325 | + .con_title .title{font-size:28px;} | |
| 326 | + | |
| 327 | + | |
| 328 | + /* ================================================== | |
| 329 | + Company | |
| 330 | + ================================================== */ | |
| 331 | + | |
| 332 | + /* ?ㅻ┰諛곌꼍 */ | |
| 333 | + .overview .txt strong{font-size:40px;line-height:1.4;} | |
| 334 | + .overview .txt strong span{display:block;} | |
| 335 | + .overview .card{gap:20px;} | |
| 336 | + .overview .card li{width:calc((100% / 2) - 20px);height:400px;} | |
| 337 | + | |
| 338 | + .figure_content.row{flex-direction:column;gap:20px;} | |
| 339 | + .figure_content.row .box{width:100%;} | |
| 340 | + | |
| 341 | + .figure_desc{width:100%;gap:12px;} | |
| 342 | + .figure_desc li{font-size:18px;} | |
| 343 | + .figure_desc.square li{text-indent:26px;background:url(/publish/usr/images/component/list_square.png) no-repeat left 4px;} | |
| 344 | + .figure_desc.circle li{text-indent:26px;background:url(/publish/usr/images/component/list_circle.png) no-repeat left 4px;background-size:auto 20px;} | |
| 345 | + | |
| 346 | + /* 議곗쭅??*/ | |
| 347 | + .org_list{gap:20px} | |
| 348 | + .org_list>li{width:100%;} | |
| 349 | + | |
| 350 | + /* ?고쁺 */ | |
| 351 | + .month_ul{padding:80px 0 0 0;} | |
| 352 | + .month_ul::after{font-size:36px;} | |
| 353 | + | |
| 354 | + .month_ul .month{width:60px;font-size:20px;} | |
| 355 | + .month_ul dl{padding:20px 0;gap:20px;} | |
| 356 | + .month_ul dt{padding:2px 0 0 0;} | |
| 357 | + .month_ul dd p:nth-child(n+2){margin:18px 0 0 0;} | |
| 358 | + .month_ul strong{font-size:18px;} | |
| 359 | + .month_ul .summary{font-size:16px;} | |
| 360 | + | |
| 361 | + /* ?ㅼ떆??湲?*/ | |
| 362 | + .location_list .boxs{flex-direction:column;} | |
| 363 | + .location_list .boxs li{width:100%;} | |
| 364 | + | |
| 365 | + /* ================================================== | |
| 366 | + Platform Tech | |
| 367 | + ================================================== */ | |
| 368 | + .dl_wrap{flex-direction:column;gap:60px;} | |
| 369 | + .dl_wrap dl{width:100%;} | |
| 370 | + .dl_wrap dd{margin:20px 0 0 0;;} | |
| 371 | + } | |
| 372 | + | |
| 373 | + @media (max-width: 640px){ | |
| 374 | + | |
| 375 | + | |
| 376 | + /* ================================================== | |
| 377 | + 怨듯넻?덉씠?꾩썐 | |
| 378 | + ================================================== */ | |
| 379 | + .sub_visual_nav .snb_wrap{width:100%;} | |
| 380 | + .sub_visual_nav .snb_wrap:nth-child(2){display:none;} | |
| 381 | + .content_title h3{font-size:40px;} | |
| 382 | + | |
| 383 | + | |
| 384 | + /* ================================================== | |
| 385 | + Company | |
| 386 | + ================================================== */ | |
| 387 | + | |
| 388 | + /* ?ㅻ┰諛곌꼍 */ | |
| 389 | + .overview .txt strong{font-size:28px;} | |
| 390 | + .overview .txt p{font-size:18px;margin:8px 0 0 0;} | |
| 391 | + .overview .card{gap:36px;padding:90px 0 120px 0;} | |
| 392 | + .overview .card li{width:100%;} | |
| 393 | + .overview .card li:nth-child(2n){transform:none;;} | |
| 394 | + .overview .card .title br{display:none;} | |
| 395 | + | |
| 396 | + .overview .circles{padding:0;margin:40px 0 80px 0;gap:60px;} | |
| 397 | + .overview .circles::after{height:50%;right:49.5%;} | |
| 398 | + .overview .circle.line{width:200px;height:200px;font-size:18px;} | |
| 399 | + .overview .circle.line:last-child{margin:-40px 0 0 0;} | |
| 400 | + .overview .circle.line:first-child::after{height:20px;font-size:24px;bottom:14px;right:40%;} | |
| 401 | + .overview .circle.fill{width:260px;height:260px;font-size:20px;;} | |
| 402 | + .overview .circle.fill::after{width:calc(100% + 20px);height:calc(100% + 20px);left:-10px;top:-10px;background-size:100% auto;} | |
| 403 | + .overview .circles .left::after, .overview .circles .right::after{width:12px;height:12px;} | |
| 404 | + .overview .circles .left::after{bottom:-5px;} | |
| 405 | + | |
| 406 | + /* ================================================== | |
| 407 | + Platform Tech | |
| 408 | + ================================================== */ | |
| 409 | + | |
| 410 | + /* autophagy */ | |
| 411 | + .step_ul{flex-direction:column;} | |
| 412 | + .step_ul li:not(.next){width:100%;} | |
| 413 | + .step_ul li.next img{transform:rotate(90deg);} | |
| 414 | + .step_ul li:nth-child(6){display:block;} | |
| 415 | + } | |
| 416 | + | |
| 417 | + @media (max-width: 500px){ | |
| 418 | + .month_ul dl{flex-direction:column;gap:12px;} | |
| 419 | + .month_ul dd{width:100%;} | |
| 420 | + } |
+++ src/styles/usr/content_layout.css
... | ... | @@ -0,0 +1,97 @@ |
| 1 | +/* ?ㅺ??쒖뒪???욎엫 */ | |
| 2 | + | |
| 3 | +.wrap{position:relative;width:100%;height:100%;} | |
| 4 | +.inner{max-width:1700px;width:100%;height:100%;margin:0 auto;padding:0 20px;box-sizing:border-box;} | |
| 5 | +.container{min-height:calc(100vh - 358px);} | |
| 6 | +.container.sub .content_wrap{display:inline-block;width:100%;margin:125px 0 80px 0;padding:20px 0 0 0;vertical-align:top;} | |
| 7 | +.content_title{margin:0 0 80px 0;} | |
| 8 | +.content_title h3{font-family:var(--secondary-title-font);font-size:52px;font-weight:bold;color:var(--primary-title-color);text-align:center;} | |
| 9 | +.content_title h3 span{font-family:var(--secondary-title-font);font-weight:500;} | |
| 10 | +.breadcrumb{display:flex;font-size:14px;color:#636469;gap:8px;align-items:center;} | |
| 11 | +.breadcrumb a{position:relative;display:flex;padding:0 8px;align-items:center;} | |
| 12 | +.breadcrumb a::after{position:absolute;width:100%;height:100%;content:"";background:url(/publish/usr/images/component/icon_arrow_right_gray.png) no-repeat right center;right:-12px;top:1px;} | |
| 13 | +.breadcrumb .home i{display:flex;width:15px;height:15px;background:url(/publish/usr/images/component/icon_home.png) no-repeat center center;} | |
| 14 | +.breadcrumb .current_location{padding:0 0 0 8px;} | |
| 15 | + | |
| 16 | +.lang_switch{display:flex;align-items:center;font-size:16px;color:#fff;} | |
| 17 | +.lang_switch button{position:relative;width:auto;padding:0 12px;opacity:0.6;} | |
| 18 | +.lang_switch button:first-child{padding:0 12px 0 4px;} | |
| 19 | +.lang_switch button::after{position:absolute;content:"";width:1px;height:11px;background:#d5d5d5;right:0;top:15.5px;} | |
| 20 | +.lang_switch button:last-child::after{display:none;} | |
| 21 | +.lang_switch .active{font-weight:bold;opacity:1;} | |
| 22 | + | |
| 23 | +.header.scrolled{background:#fff;box-shadow: 0 4px 12px rgba(0,0,0,0.08);} | |
| 24 | +.header.scrolled .gnb a{color:#222;} | |
| 25 | +.header.scrolled .btn_sitemap i{background:url(/publish/usr/images/common/menu_scrolled.png) no-repeat center center;} | |
| 26 | +.header.scrolled .lang_switch{color:#222;} | |
| 27 | + | |
| 28 | +/* 紐⑤컮??硫붾돱 */ | |
| 29 | +.mobile_nav {position:fixed;width:100%;height:100%;top:0;right:-100%;background:#fff;transition:right .6s ease;z-index:1000;flex-direction:column;} | |
| 30 | +.mobile_nav.active {right:0;} | |
| 31 | +.mobile_nav_top {display:flex;width:100%;justify-content:space-between;align-items:center;padding:20px;} | |
| 32 | + | |
| 33 | +.mobile_nav .gnb{display:block;width:100%;margin:20px 0 80px 0;} | |
| 34 | +.mobile_nav .gnb .depth01{display:flex;width:100%;height:80px;padding:0 20px;font-family:var(--secondary-title-font);font-size:28px;font-weight:bold;align-items:center;justify-content:space-between;} | |
| 35 | +.mobile_nav .gnb .active .depth01{color:var(--primary-color);} | |
| 36 | +.mobile_nav .depth02_ul{display:flex;padding:20px;background:#f2f4f6;flex-direction:column;gap:8px;} | |
| 37 | +.mobile_nav .depth02_ul li{width:100%;} | |
| 38 | +.mobile_nav a.depth02{border:0;justify-content:flex-start;} | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | +/* footer */ | |
| 43 | +.footer{position:relative;width:100%;padding:60px 0;margin:80px 0 0 0;background:#222427;border-radius:30px 30px 0 0;box-sizing:border-box;bottom:0;} | |
| 44 | +.footer .inner{position:relative;display:flex;justify-content:flex-start;align-items:center;gap:32px;} | |
| 45 | +.footer .footer_left{display:flex;flex-direction:column;gap:50px;} | |
| 46 | +.footer .footer_logo{mix-blend-mode:luminosity;} | |
| 47 | +.footer .link{display:flex;align-items:center;} | |
| 48 | +.footer .link a{position:relative;font-size:16px;color:#72787d;padding:0 20px;} | |
| 49 | +.footer .link a::after{position:absolute;content:"";width:1px;height:12px;background:#72787d;right:0;top:6.5px;} | |
| 50 | +.footer .link :first-child a{padding:0 20px 0 0;color:#2DE394;font-weight:bold;} | |
| 51 | +.footer .link :last-child a::after{display:none;} | |
| 52 | +.footer .footer_right{font-size:16px;color:#72787d;line-height:1.8;letter-spacing:0.3px;} | |
| 53 | +.footer .footer_right address b{margin:0 8px 0 0;} | |
| 54 | +.footer .footer_right address b:nth-child(3){margin:0 8px 0 16px;} | |
| 55 | +.footer .btn_top{position:absolute;display:flex;width:66px;height:66px;font-family:var(--secondary-title-font);font-size:14px;font-weight:bold;color:#fff;letter-spacing:1px;border:1px solid #fff;border-radius:28px;flex-direction:column;justify-content:center;align-items:center;right:20px;} | |
| 56 | +.footer .btn_top i{display:inline-block;width:26px;height:14px;background:url(/publish/usr/images/common/footer_top.png) no-repeat center center;} | |
| 57 | + | |
| 58 | + | |
| 59 | +/* sitemap */ | |
| 60 | +.sitemap {position:fixed;width:100%;height:100%;left:0;top:-100%;background:#fff;transition:top .6s ease;z-index:1000;flex-direction:column;} | |
| 61 | +.sitemap.active {top:0;} | |
| 62 | +.sitemap_top.inner {display:flex;width:100%;height:auto;justify-content:space-between;align-items:center;padding:20px;} | |
| 63 | + | |
| 64 | +.sitemap .sitemenu{display:flex;width:100%;margin:20px 0 80px 0;padding:0 140px;justify-content:space-between;box-sizing:border-box;} | |
| 65 | +.sitemap .sitemenu .depth01{display:flex;width:100%;height:80px;padding:0 20px;margin:0;font-family:var(--secondary-title-font);font-size:48px;font-weight:bold;color:var(--primary-color);align-items:center;} | |
| 66 | +.sitemap .depth02_ul{display:flex;flex-direction:column;gap:20px;} | |
| 67 | +.sitemap .depth02_ul li{width:100%;font-size:24px;text-align:center;} | |
| 68 | +.sitemap a.depth02{display:flex;width:100%;padding:8px 0;border:0;border-radius:8px;justify-content:center;align-items:center;} | |
| 69 | +.sitemap a.depth02:hover{color:var(--primary-color);background:var(--primary-light-color);} | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | +@media (max-width: 1280px){ | |
| 76 | + .header_container nav:not(.mobile_nav){display:none;} | |
| 77 | + | |
| 78 | + .content_title h3{font-size:40px;} | |
| 79 | + | |
| 80 | +} | |
| 81 | + | |
| 82 | +@media (max-width: 1024px){ | |
| 83 | + .footer .footer_right{width:60%;} | |
| 84 | +} | |
| 85 | + | |
| 86 | +@media (max-width: 768px){ | |
| 87 | + .footer .inner{flex-direction:column;align-items:flex-start;} | |
| 88 | + .footer .footer_right{width:100%;} | |
| 89 | +} | |
| 90 | + | |
| 91 | +@media (max-width: 640px){ | |
| 92 | + .header_container .logo img{height:60px;} | |
| 93 | + | |
| 94 | + .container.sub .content_wrap{margin:80px 0 80px 0;} | |
| 95 | + .content_title{margin:0 0 60px 0;} | |
| 96 | + | |
| 97 | +} |
+++ src/styles/usr/icon.css
... | ... | @@ -0,0 +1,28 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.icon{display:inline-block;width:100%;height:100%;vertical-align:middle;;} | |
| 4 | + | |
| 5 | +.icon.lang{width:20px;height:40px;background:url(/publish/usr/images/common/lang.png) no-repeat center 12px;} | |
| 6 | +.scrolled .icon.lang{background:url(/publish/usr/images/common/lang_scrolled.png) no-repeat center 12px;} | |
| 7 | + | |
| 8 | +.icon.close{width:40px;height:40px;background:url(/publish/usr/images/common/menu_close.png) no-repeat center;} | |
| 9 | + | |
| 10 | +.icon.home{width:66px;height:66px;background:url(/publish/usr/images/common/home.png) no-repeat center;} | |
| 11 | + | |
| 12 | +.icon.file{width:20px;height:20px;background:url(/publish/usr/images/component/icon_file.png) no-repeat center center;} | |
| 13 | +.icon.file.blue{background:url(/publish/usr/images/component/icon_file_blue.png) no-repeat center center;} | |
| 14 | +.icon.file_bg{width:60px;height:60px;background:url(/publish/usr/images/component/icon_file_table.png) no-repeat center center;} | |
| 15 | + | |
| 16 | +.icon.delete{width:30px;height:30px;background:url(/publish/usr/images/component/icon_x.png) no-repeat center;} | |
| 17 | +.icon.delete.red{background:url(/publish/usr/images/component/icon_x_red.png) no-repeat center;} | |
| 18 | + | |
| 19 | +.icon.calendar{width:30px;height:30px;background:url(/publish/usr/images/component/icon_calendar.png) no-repeat center;} | |
| 20 | +.icon.writer{width:30px;height:30px;background:url(/publish/usr/images/component/icon_writer.png) no-repeat center;} | |
| 21 | +.icon.view{width:30px;height:30px;background:url(/publish/usr/images/component/icon_view.png) no-repeat center;} | |
| 22 | + | |
| 23 | +.icon.arrow.left{width:40px;height:40px;background:url(/publish/usr/images/component/arrow_left.png) no-repeat center;} | |
| 24 | +.icon.arrow.right{width:40px;height:40px;background:url(/publish/usr/images/component/arrow_right.png) no-repeat center;} | |
| 25 | +.icon.arrow.bottom{width:40px;height:40px;background:url(/publish/usr/images/component/arrow_bottom.png) no-repeat center;} | |
| 26 | +.icon.arrow.top{width:40px;height:40px;background:url(/publish/usr/images/component/arrow_top.png) no-repeat center;} | |
| 27 | + | |
| 28 | +.icon.comment{width:20px;height:20px;background:url(/publish/usr/images/component/icon_comment.png) no-repeat center center;} |
+++ src/styles/usr/layout.css
... | ... | @@ -0,0 +1,77 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.wrap{position:relative;width:100%;height:100%;} | |
| 4 | +.inner{max-width:1440px;width:100%;height:100%;margin:0 auto;padding:0 20px;box-sizing:border-box;} | |
| 5 | +.container{margin:140px 0 0 0;} | |
| 6 | +.container.sub .content_wrap{display:inline-block;width:100%;margin:0;padding:20px 0 0 0;vertical-align:top;} | |
| 7 | +.content_title,.section_title{display:flex;margin:0 0 20px 0;align-items:center;justify-content:space-between;} | |
| 8 | +.content_title h3{font-size:40px;font-weight:bold;color:var(--primary-title-color);} | |
| 9 | +.section_title{margin:60px 0 20px 0;} | |
| 10 | +.section_title h4{font-size:22px;font-weight:bold;} | |
| 11 | +.breadcrumb{display:flex;font-size:14px;color:#636469;gap:8px;align-items:center;} | |
| 12 | +.breadcrumb a{position:relative;display:flex;padding:0 8px;align-items:center;} | |
| 13 | +.breadcrumb a::after{position:absolute;width:100%;height:100%;content:"";background:url(/publish/usr/images/component/icon_arrow_right_gray.png) no-repeat right center;right:-12px;top:1px;} | |
| 14 | +.breadcrumb .home i{display:flex;width:15px;height:15px;background:url(/publish/usr/images/component/icon_home.png) no-repeat center center;} | |
| 15 | +.breadcrumb .current_location{padding:0 0 0 8px;} | |
| 16 | + | |
| 17 | +/* header */ | |
| 18 | +.header{position:fixed;width:100%;left:0;top:0;z-index:9;} | |
| 19 | +.header_top{width:100%;height:40px;background:#EEEFF4;} | |
| 20 | +.header_top .inner{display:flex;height:100%;justify-content:space-between;} | |
| 21 | +.header_top .user_menu{display:flex;align-items:center;} | |
| 22 | +.header_top .user_menu a{position:relative;height:100%;padding:0 20px;margin:0 0 6px 0;font-size:14px;color:#656770;} | |
| 23 | +.header_top .user_menu a::after{position:absolute;content:"";width:1px;height:16px;background:#c5c6cc;right:0;top:3px;} | |
| 24 | +.header_top .user_menu :last-child a::after{display:none;} | |
| 25 | + | |
| 26 | +.header_container{position:relative;width:100%;height:100px;background:#fff;} | |
| 27 | +.header_container .inner{display:flex;height:100%;justify-content:space-between;align-items:center;} | |
| 28 | +.header_container nav,.header_container .gnb{display:flex;height:100%;} | |
| 29 | +.header_container .gnb{width:calc(100% - 100px);gap:100px;} | |
| 30 | +.header_container .gnb a{display:flex;height:100%;padding:0 10px;font-size:20px;font-weight:bold;color:#222;align-items:center;justify-content:center;white-space:nowrap;} | |
| 31 | +.header_container .depth02_container{position:absolute;width:100%;border-top:1px solid #eeeff4;top:100%;left:0;background:#fff;box-shadow:0 8px 10px rgba(0,0,0,0.05);max-height:0;overflow:hidden;opacity:0;visibility:hidden;transition:max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),opacity 0.3s ease,transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),visibility 0.4s;} | |
| 32 | +.header_container .active .depth02_container{max-height:100vh;opacity:1;visibility:visible;} | |
| 33 | +.header_container .depth02_ul{display:flex;max-width:1440px;margin:0 auto;padding:40px 0;gap:20px;justify-content:center;} | |
| 34 | +.header_container .depth02_ul>li{width:calc(100% / 4);} | |
| 35 | +.header_container a.depth02{display:flex;width:100%;height:50px;font-size:18px;font-weight:400;text-align:center;padding:0 18px;border:2px solid #eeeff4;border-radius:8px;justify-content:center;align-items:center;} | |
| 36 | +.header_container .depth03_ul{display:flex;margin:8px 0 0 0;flex-direction:column;gap:8px;text-align:center;} | |
| 37 | +.header_container .depth03_ul a.depth03{font-size:16px;font-weight:300;} | |
| 38 | + | |
| 39 | + | |
| 40 | +.header_util{display:flex;gap:12px;align-items:center;} | |
| 41 | +.header_util button{width:40px;height:40px;} | |
| 42 | +.header_util button i{display:inline-block;width:100%;height:100%;} | |
| 43 | +.btn_search i{background:url(/publish/usr/images/common/search.png) no-repeat center center;} | |
| 44 | +.btn_sitemap i{background:url(/publish/usr/images/common/menu.png) no-repeat center center;} | |
| 45 | + | |
| 46 | + | |
| 47 | +/* footer */ | |
| 48 | +.footer{width:100%;padding:60px 0;margin:100px 0 0 0;background:#222427;border-radius:30px 30px 0 0;box-sizing:border-box;} | |
| 49 | +.footer .inner{display:flex;justify-content:space-between;align-items:center;} | |
| 50 | +.footer .footer_left{display:flex;flex-direction:column;gap:50px;} | |
| 51 | +.footer .link{display:flex;align-items:center;} | |
| 52 | +.footer .link a{position:relative;font-size:16px;color:#72787d;padding:0 20px;} | |
| 53 | +.footer .link a::after{position:absolute;content:"";width:1px;height:12px;background:#72787d;right:0;top:6.5px;} | |
| 54 | +.footer .link :first-child a{padding:0 20px 0 0;color:#2DE394;font-weight:bold;} | |
| 55 | +.footer .link :last-child a::after{display:none;} | |
| 56 | +.footer .footer_right{font-size:16px;color:#72787d;line-height:1.8;letter-spacing:0.3px;} | |
| 57 | +.footer .footer_right address b{margin:0 8px 0 0;} | |
| 58 | +.footer .footer_right address b:nth-child(3){margin:0 8px 0 16px;} | |
| 59 | + | |
| 60 | + | |
| 61 | +/* sidemenu */ | |
| 62 | +.sidemenu{display:inline-block;width:300px;background:#f2f4f6;border-radius:20px;} | |
| 63 | +.sidemenu_tit{position:relative;width:100%;height:164px;border-radius:20px;background:linear-gradient(166deg,rgba(44, 69, 195, 1) 0%, rgba(21, 33, 93, 1) 100%);} | |
| 64 | +.sidemenu_tit::after{position:absolute;content:"";width:100%;height:100%;background:url(/publish/usr/images/common/sidemenu_title_bg.png) no-repeat calc(100% + 4px) calc(100% + 11px);right:0;bottom:0;mix-blend-mode:luminosity;} | |
| 65 | +.sidemenu_tit h2{position:absolute;font-family:var(--secondary-title-font);font-size:24px;font-weight:bold;color:#fff;bottom:30px;left:35px;} | |
| 66 | +.sidemenu_nav{padding:40px 20px 160px 20px;background:url(/publish/usr/images/common/sidemenu_nav_bg.png) no-repeat calc(100% - 20px) calc(100% - 20px);box-sizing: border-box;} | |
| 67 | +.sidemenu_nav .depth01_list{display:flex;flex-direction:column;gap:8px;} | |
| 68 | +.sidemenu_nav .depth01{display:flex;width:100%;height:50px;font-size:18px;font-weight:500;color:var(--primary-title-color);padding:0 16px;border-radius:8px;align-items:center;justify-content:space-between;transition:all .3s;} | |
| 69 | +.sidemenu_nav .depth01:hover{background:var(--primary-color);color:#fff;} | |
| 70 | +.sidemenu_nav .depth01 i{width:24px;height:24px;background:url(/publish/usr/images/component/icon_arrow_down.png) no-repeat center;} | |
| 71 | +.sidemenu_nav .depth01:hover i{background:url(/publish/usr/images/component/icon_arrow_down_white.png) no-repeat center;} | |
| 72 | +.sidemenu_nav .depth01.active{background:var(--primary-color);color:#fff;} | |
| 73 | +.sidemenu_nav .depth01.active i{background: url(/publish/usr/images/component/icon_arrow_up_white.png) no-repeat center;color:#fff;} | |
| 74 | +.sidemenu_nav .depth02_list{background:#fff;padding:16px;margin:8px 0 0 0;border-radius:8px;} | |
| 75 | +.sidemenu_nav .depth02{display:flex;width:100%;height:30px;font-size:16px;font-weight:400;color:#3f4043;align-items:center;} | |
| 76 | +.sidemenu_nav .depth02:hover,.sidemenu_nav .depth02.active{color:var(--primary-color);font-weight:500;} | |
| 77 | + |
+++ src/styles/usr/main.css
... | ... | @@ -0,0 +1,115 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.section{margin:140px 0 0 0;} | |
| 4 | +.section .inner{display:flex;gap:40px;} | |
| 5 | +.title_wrap{display:flex;width:100%;margin:0 0 40px 0;justify-content:space-between;align-items:center;} | |
| 6 | +.cont_wrap{position:relative;width:100%;;} | |
| 7 | +.main_title{font-family: var(--secondary-title-font);font-size:36px;font-weight:bold;color:var(--primary-title-color);} | |
| 8 | +.btn_more{display:inline-flex;height:40px;padding:0 5px 0 20px;background:#fff;border:1px solid #1a1b1d;font-size:16px;font-weight:500;color:var(--primary-title-color);border-radius:50px;align-items:center;} | |
| 9 | +.btn_more i{width:40px;height:40px;background:url(/publish/usr/images/main/icon_plus.png) no-repeat center center;} | |
| 10 | + | |
| 11 | +.main .tabs{display:flex;gap:30px;} | |
| 12 | +.main .tab{position:relative;font-size:20px;font-weight:400;color:#636469;} | |
| 13 | +.main .tab.active{font-weight:bold;color:var(--primary-color);} | |
| 14 | +.main .tab.active::after{position:absolute;content:"";width:6px;height:6px;background:var(--primary-color);border-radius:100%;right:-8px;top:-2px;} | |
| 15 | +.main .tab_content{position:absolute;display:none;width:100%;left:0;} | |
| 16 | +.main .tab.active+.tab_content{display:block;} | |
| 17 | + | |
| 18 | +/* 硫붿씤鍮꾩<??*/ | |
| 19 | + | |
| 20 | +.main_visual{width:100%;height:422px;} | |
| 21 | +.main_visual .visual_slide{width:100%;height:100%;border-radius:20px;} | |
| 22 | +.main_visual .visual_slide a:first-child{background:blue;} | |
| 23 | +.main_visual .visual_slide a:nth-child(2){background:red;} | |
| 24 | +.main_visual .visual_slide a:nth-child(3){background:salmon;} | |
| 25 | + | |
| 26 | +/* //硫붿씤鍮꾩<??*/ | |
| 27 | + | |
| 28 | +/* section01 */ | |
| 29 | +.section01{height:452px;} | |
| 30 | +.sch_cont{position:relative;width:calc(100% - 470px);} | |
| 31 | +.sch_cont .cont_wrap{top:-85px;left:290px;} | |
| 32 | +.sch_cont .tab_content{width:100%;left:-290px;top:calc(100% + 40px);} | |
| 33 | +.sch_cont .sch_title{margin:0 0 20px 0;} | |
| 34 | +.sch_cont .current_date{font-size:30px;font-weight:bold;} | |
| 35 | +.sch_cont .list{width:100%;border-top:1px solid #000;} | |
| 36 | +.sch_cont .list>li{border-bottom:1px dashed #aeafb2;} | |
| 37 | +.sch_cont .list a{display:flex;padding:19px 16px;align-items:center;justify-content:space-between;} | |
| 38 | +.sch_cont .status{height:30px;padding:4px 16px;margin:0 4px 0 0;font-size:16px;font-weight:500;box-sizing:border-box;border-radius:30px;} | |
| 39 | +.sch_cont .status.green{background:#CEF5E4;color:#00A15B;} | |
| 40 | +.sch_cont .status.gray{background:#F2F4F6;color:#636469;} | |
| 41 | +.sch_cont .list .title{font-size:18px;font-weight:400;color:var(--primary-title-color);line-height:1.3;} | |
| 42 | +.sch_cont .list_info{display:flex;font-size:16px;color:#7f868f;margin:16px 0 0 0;gap:20px;} | |
| 43 | +.sch_cont .list_info em{font-weight:600;margin:0 8px 0 0;} | |
| 44 | +.sch_cont .text_move{display:flex;font-size:16px;font-weight:600;color:#9FA1A8;align-items:center;transition:all 0.3s;} | |
| 45 | +.sch_cont .text_move i{display:inline-block;width:24px;height:24px;margin:1px 0 0 8px;background:url(/publish/usr/images/main/btn_more.png) no-repeat center bottom;transition:color .3s;} | |
| 46 | +.sch_cont a:hover .text_move{color:var(--primary-title-color);} | |
| 47 | +.sch_cont a:hover .text_move i{background:url(/publish/usr/images/main/btn_more.png) no-repeat center top;} | |
| 48 | +.sch_cont .tab_content .btn_more{position:absolute;top:3px;right:0;} | |
| 49 | + | |
| 50 | + | |
| 51 | +.allim_cont{position:relative;width:430px;border-radius:20px;overflow:hidden;} | |
| 52 | +.allim_slide{width:100%;height:100%;} | |
| 53 | +.allim_slide a:first-child{background:blue;} | |
| 54 | +.allim_slide a:nth-child(2){background:red;} | |
| 55 | +.allim_slide a:nth-child(3){background:salmon;} | |
| 56 | +.allim_bottom{position:absolute;display:flex;width:100%;height:60px;padding:0 24px;background:#303347;left:0;bottom:0;justify-content:space-between;align-items:center;z-index:1;} | |
| 57 | +.allim_bottom .title{font-size:20px;font-weight:bold;color:#fff;} | |
| 58 | +.allim_util{display:flex;align-items:center;gap:8px;} | |
| 59 | +.allim_util p{font-size:16px;font-weight:400;color:#858897;letter-spacing:2px;} | |
| 60 | +.allim_util .current_num{font-weight:bold;color:#2de394;} | |
| 61 | +.allim_util button{width:24px;height:24px;} | |
| 62 | +.allim_util button i{display:inline-block;width:100%;height:100%;} | |
| 63 | +.allim_util .btn_prev{background:url(/publish/usr/images/main/icon_prev.png) no-repeat center center;} | |
| 64 | +.allim_util .btn_pause{background:url(/publish/usr/images/main/icon_pause.png) no-repeat center center;} | |
| 65 | +.allim_util .btn_play{background:url(/publish/usr/images/main/icon_play.png) no-repeat center center;} | |
| 66 | +.allim_util .btn_next{background:url(/publish/usr/images/main/icon_next.png) no-repeat center center;} | |
| 67 | + | |
| 68 | +/* //section01 */ | |
| 69 | + | |
| 70 | +/* section02 */ | |
| 71 | +.section02 .inner{display:block;height:427px;} | |
| 72 | +.section02 .cont_wrap{top:-85px;left:190px;} | |
| 73 | +.section02 .tab_content{top:calc(100% + 40px);left:-190px;} | |
| 74 | +.section02 .card_list{display:flex;align-items:stretch;gap:30px;} | |
| 75 | +.section02 .card_list>li{width:calc((100% / 4));} | |
| 76 | +.section02 .card_list a{padding:30px;background:#F2F4F6;border:2px solid transparent;border-radius:10px;transition:all .3s;} | |
| 77 | +.section02 .card_list a:hover{background:#fff;transform:translateY(-10px);} | |
| 78 | +.section02 .part_notice a:hover{border:2px solid var(--primary-color);box-shadow:0 3px 5px 3px rgba(44,69,195,0.15);} | |
| 79 | +.section02 .part_data a:hover{border:2px solid #00a15b;box-shadow:0 3px 5px 3px rgba(0,161,91,0.15);} | |
| 80 | +.section02 .card_list .part{display:flex;font-size:16px;font-weight:600;gap:8px;align-items:center;} | |
| 81 | +.section02 .card_list .part i{display:inline-block;width:22px;height:22px;} | |
| 82 | +.section02 .part_notice .part{color:var(--primary-color);} | |
| 83 | +.section02 .part_notice .part i{background:url(/publish/usr/images/main/icon_notice.png) no-repeat center center;} | |
| 84 | +.section02 .part_data .part{color:#00a15b;} | |
| 85 | +.section02 .part_data .part i{background:url(/publish/usr/images/main/icon_data.png) no-repeat center center;} | |
| 86 | +.section02 .card_list .title{display:-webkit-box;width:100%;height:102px;margin:10px 0 15px 0;font-size:24px;font-weight:600;color:var(--primary-title-color);line-height:1.4;text-overflow:ellipsis;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3;} | |
| 87 | +.section02 .card_list .summary{display:-webkit-box;width:100%;font-size:16px;font-weight:400;color:#636469;text-overflow:ellipsis;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3;} | |
| 88 | +.section02 .list_util{display:flex;width:100%;font-size:14px;color:#636469;margin:24px 0 0 0;gap:18px;} | |
| 89 | +.section02 .list_util li{display:flex;align-items:center;gap:4px;} | |
| 90 | +.section02 .list_util .icon{display:inline-block;width:22px;height:22px;} | |
| 91 | +.section02 .list_util .calendar{background:url(/publish/usr/images/main/icon_calendar.png) no-repeat center;} | |
| 92 | +.section02 .list_util .writer{background:url(/publish/usr/images/main/icon_writer.png) no-repeat center;} | |
| 93 | +.section02 .list_util .view{background:url(/publish/usr/images/main/icon_view.png) no-repeat center;} | |
| 94 | +.section02 .btn_more{position:absolute;top:-71px;right:0;} | |
| 95 | + | |
| 96 | +/* //section02 */ | |
| 97 | + | |
| 98 | +/* section03 */ | |
| 99 | +.section03 .inner{display:flex;gap:30px;} | |
| 100 | +.faq_cont, .qna_cont{width:50%;} | |
| 101 | +.box_list{width:100%;background:#f2f4f6;border-radius:20px;padding:30px 30px 20px 30px;} | |
| 102 | +.box_list span{display:flex;width:100%;font-size:18px;font-weight:500;color:var(--primary-title-color);align-items:flex-start;} | |
| 103 | +.box_list li{padding:16px 0;border-bottom:1px solid #D8D8D8;} | |
| 104 | +.box_list li:first-child{padding:0 0 16px 0;} | |
| 105 | +.box_list li:last-child{border-bottom:0;} | |
| 106 | +.box_list li:first-child .question{font-size:24px;} | |
| 107 | +.box_list em{font-family:var(--secondary-title-font);font-size:20px;font-weight:700;margin:0 16px 0 0;vertical-align:middle;} | |
| 108 | +.box_list li:first-child em{font-size:24px;} | |
| 109 | +.box_list .question em{color:var(--primary-color);} | |
| 110 | +.box_list .answer{display:flex;align-items:flex-start;margin:16px 0 0 0;} | |
| 111 | +.box_list .answer span{display:-webkit-box;font-size:16px;font-weight:400;color:#636469;margin:2px 0 0 0;line-height:1.4;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;} | |
| 112 | +.box_list .answer em{color:#7A7C86;} | |
| 113 | + | |
| 114 | +.qna_cont .cont_wrap{height:calc(100% - 94px);background:salmon;border-radius:20px;} | |
| 115 | +/* //section03 */ |
+++ src/styles/usr/popup.css
... | ... | @@ -0,0 +1,37 @@ |
| 1 | + | |
| 2 | +.popup_wrap{display:none;position:fixed;box-shadow:0 0 10px rgba(0,0,0,0.25);border-radius:8px;z-index: 50;} | |
| 3 | +.popup_wrap .title_wrap {display:flex;height:45px;background-color:var(--primary-color);justify-content:space-between;align-items:center;font-size:18px;font-weight:500;color:#fff;padding:0 12px 0 20px;border-radius:8px 8px 0 0;box-sizing:border-box;} | |
| 4 | + | |
| 5 | +.btn_popup_close{width:30px;height:30px;padding:0;} | |
| 6 | +.btn_popup_close i{display:inline-block;width:100%;height:100%;background:url(/publish/usr/images/component/icon_x_white.png) no-repeat center center;background-size:95%;} | |
| 7 | + | |
| 8 | +.popup_content {color: #222; padding:20px; box-sizing: border-box;background-color: #fff; border-radius: 0 0 5px 5px;} | |
| 9 | + | |
| 10 | +.popup_content .input{height:30px;border:1px solid var(--default-line-color);border-radius:5px;padding:0 12px;} | |
| 11 | +.popup_content textarea, .popup_content .testarea{border:1px solid var(--default-line-color);border-radius:5px;padding:0 12px;} | |
| 12 | +.popup_content select, .popup_content .select{height:30px;border:1px solid var(--default-line-color);border-radius:5px;padding:0 32px 0 12px;background:url(/publish/usr/images/component/icon_arrow_down.png) no-repeat calc(100% - 4px) center;} | |
| 13 | + | |
| 14 | +/* popup - btn */ | |
| 15 | +.popup_wrap .btn_wrap.bottom{margin:15px 0 0 0;} | |
| 16 | +.popup_wrap .btn_wrap.bottom button{padding:0 12px;} | |
| 17 | + | |
| 18 | + | |
| 19 | +/* popup - title */ | |
| 20 | +.popup_content .content_title{display:flex;margin:0 0 15px 0;justify-content:space-between;align-items:center;} | |
| 21 | +.popup_content h3{position:relative;font-size:18px;font-weight:600;padding:0 0 0 12px;} | |
| 22 | +.popup_content h3::before{position:absolute;content:"";width:3px;height:16px;background:var(--primary-color);left:0;top:6.5px;} | |
| 23 | + | |
| 24 | + | |
| 25 | +/* popup - table */ | |
| 26 | +.popup_table_cols tr{border-bottom:1px solid #e2e7ef;} | |
| 27 | +.popup_table_cols th,.popup_table_cols td{padding:4px 8px;font-size:15px;text-align:center;box-sizing:border-box;} | |
| 28 | +.popup_table_cols thead>tr>th{height:60px;font-weight:500;color:#25272A;} | |
| 29 | +.popup_table_cols tbody>tr>td{height:50px;font-weight:400;color:#444;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;} | |
| 30 | +.popup_table_cols .text_left a{width:100%;text-align:left;} | |
| 31 | + | |
| 32 | +.popup_table_rows tr{border-bottom:1px solid #e2e7ef;} | |
| 33 | +.popup_table_rows tbody>tr>th,.popup_table_rows tbody>tr>td{height:40px;padding:4px 8px;font-size:15px;color:#25272A;box-sizing:border-box;} | |
| 34 | +.popup_table_rows tbody>tr>th{text-align:center;font-weight:500;background:#F2F3F5;} | |
| 35 | +.popup_table_rows tbody>tr>td{text-align:left;font-weight:400;} | |
| 36 | + | |
| 37 | + |
+++ src/styles/usr/reset.css
... | ... | @@ -0,0 +1,200 @@ |
| 1 | +/* ======================================================================== | |
| 2 | + reset.css ??2025 | |
| 3 | + ?묒꽦?? ?뺤닔鍮? | |
| 4 | + ?좎쭨: 2025-10-17 | |
| 5 | + ======================================================================== */ | |
| 6 | + | |
| 7 | +/* box-sizing & 湲곕낯 由ъ뀑 */ | |
| 8 | +*, *::before, *::after { | |
| 9 | + box-sizing: border-box; | |
| 10 | + margin: 0; | |
| 11 | + padding: 0; | |
| 12 | +} | |
| 13 | + | |
| 14 | +/* HTML5 ?붿냼 湲곕낯 ?쒖떆 蹂댁옣 */ | |
| 15 | +article, aside, details, figcaption, figure, | |
| 16 | +footer, header, hgroup, menu, nav, section, main { | |
| 17 | + display: block; | |
| 18 | +} | |
| 19 | + | |
| 20 | +/* root ?ㅼ젙 */ | |
| 21 | +html { | |
| 22 | + scroll-behavior: smooth; | |
| 23 | + -webkit-text-size-adjust: 100%; | |
| 24 | + font-size: 16px; | |
| 25 | +} | |
| 26 | + | |
| 27 | +body { | |
| 28 | + min-height: 100vh; | |
| 29 | + line-height: 1.5; | |
| 30 | + font-family: 'Noto Sans KR', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; | |
| 31 | + -webkit-font-smoothing: antialiased; | |
| 32 | + -moz-osx-font-smoothing: grayscale; | |
| 33 | + letter-spacing: -0.35px; | |
| 34 | + color: #222; | |
| 35 | + background-color: #fff; | |
| 36 | +} | |
| 37 | + | |
| 38 | +/* ?띿뒪???붿냼 */ | |
| 39 | +h1, h2, h3, h4, h5, h6, p { | |
| 40 | + font-weight: inherit; | |
| 41 | + font-size: inherit; | |
| 42 | + color: inherit; | |
| 43 | + margin: 0; | |
| 44 | + padding: 0; | |
| 45 | +} | |
| 46 | + | |
| 47 | +a { | |
| 48 | + color: inherit; | |
| 49 | + text-decoration: none; | |
| 50 | + display: inline-block; | |
| 51 | +} | |
| 52 | +a:focus-visible { | |
| 53 | + outline: 2px solid #222; | |
| 54 | + outline-offset: 3px; | |
| 55 | +} | |
| 56 | + | |
| 57 | +/* 由ъ뒪??*/ | |
| 58 | +ol, ul { | |
| 59 | + list-style: none; | |
| 60 | +} | |
| 61 | + | |
| 62 | +/* ?대?吏 諛?誘몃뵒??*/ | |
| 63 | +img, picture, video, canvas, svg { | |
| 64 | + display: block; | |
| 65 | + max-width: 100%; | |
| 66 | + height: auto; | |
| 67 | + border: 0; | |
| 68 | + font-size: 0; | |
| 69 | +} | |
| 70 | + | |
| 71 | +/* ??*/ | |
| 72 | +table { | |
| 73 | + border-collapse: collapse; | |
| 74 | + border-spacing: 0; | |
| 75 | + table-layout: fixed; | |
| 76 | + width: 100%; | |
| 77 | +} | |
| 78 | + | |
| 79 | +/* ???붿냼 */ | |
| 80 | +button, input, select, textarea { | |
| 81 | + font: inherit; | |
| 82 | + color: inherit; | |
| 83 | + border: none; | |
| 84 | + background: none; | |
| 85 | + margin: 0; | |
| 86 | + padding: 0; | |
| 87 | + vertical-align: middle; | |
| 88 | + | |
| 89 | + appearance: none; | |
| 90 | +} | |
| 91 | + | |
| 92 | +/* ?쇰뵒?? 泥댄겕諛뺤뒪??appearance ?쒓굅 湲덉? (湲곕낯 ?쒖떆 ?좎?) */ | |
| 93 | +input[type="radio"], | |
| 94 | +input[type="checkbox"] { | |
| 95 | + appearance: auto; | |
| 96 | + -webkit-appearance: auto; | |
| 97 | + -moz-appearance: auto; | |
| 98 | + display: inline-block; | |
| 99 | + width: auto; | |
| 100 | + height: auto; | |
| 101 | + cursor: pointer; | |
| 102 | + vertical-align: middle; | |
| 103 | +} | |
| 104 | + | |
| 105 | +button { | |
| 106 | + cursor: pointer; | |
| 107 | + background: transparent; | |
| 108 | +} | |
| 109 | + | |
| 110 | +input::placeholder, | |
| 111 | +textarea::placeholder { | |
| 112 | + color: #777; | |
| 113 | + font-weight: 400; | |
| 114 | + font-size:14px; | |
| 115 | +} | |
| 116 | + | |
| 117 | +input:disabled, | |
| 118 | +input:read-only, | |
| 119 | +textarea:disabled, | |
| 120 | +textarea:read-only, | |
| 121 | +select:disabled, | |
| 122 | +select:read-only | |
| 123 | +input.readonly, | |
| 124 | +textarea.readonly, | |
| 125 | +select.readonly{ | |
| 126 | + background-color: var(--disable-fill-bg-color) !important; | |
| 127 | + color: var(--disable-fill-text-color) !important; | |
| 128 | + border: 1px solid var(--disable-fill-line-color) !important; | |
| 129 | + cursor: not-allowed; | |
| 130 | +} | |
| 131 | + | |
| 132 | +/* ?묎렐??- label ?④? 泥섎━ */ | |
| 133 | +caption,.caption, .label, .sr-only, .visually-hidden { | |
| 134 | + position: absolute; | |
| 135 | + width: 1px; | |
| 136 | + height: 1px; | |
| 137 | + padding: 0; | |
| 138 | + margin: -1px; | |
| 139 | + overflow: hidden; | |
| 140 | + clip: rect(0, 0, 0, 0); | |
| 141 | + white-space: nowrap; | |
| 142 | + border: 0; | |
| 143 | +} | |
| 144 | + | |
| 145 | +/* ?ㅽ겕濡ㅻ컮 而ㅼ뒪?곕쭏?댁쭠 */ | |
| 146 | +::-webkit-scrollbar { | |
| 147 | + width: 7px; | |
| 148 | + height: 7px; | |
| 149 | +} | |
| 150 | +::-webkit-scrollbar-thumb { | |
| 151 | + background: #adadad; | |
| 152 | + border-radius: 10px; | |
| 153 | +} | |
| 154 | +::-webkit-scrollbar-track { | |
| 155 | + background: transparent; | |
| 156 | +} | |
| 157 | + | |
| 158 | +/* ?몄슜, 湲고? */ | |
| 159 | +blockquote, q { | |
| 160 | + quotes: none; | |
| 161 | +} | |
| 162 | +blockquote::before, blockquote::after, | |
| 163 | +q::before, q::after { | |
| 164 | + content: ''; | |
| 165 | +} | |
| 166 | + | |
| 167 | +/* ???덉쇅 泥섎━ */ | |
| 168 | +input[type="search"]::-webkit-search-cancel-button, | |
| 169 | +input[type="search"]::-webkit-search-decoration { | |
| 170 | + appearance: none; | |
| 171 | +} | |
| 172 | + | |
| 173 | +/* 二쇱냼, ?댄깶由???*/ | |
| 174 | +address, em, i { | |
| 175 | + font-style: normal; | |
| 176 | +} | |
| 177 | + | |
| 178 | +/* hr */ | |
| 179 | +hr { | |
| 180 | + border: none; | |
| 181 | + height: 1px; | |
| 182 | + background: #e0e0e0; | |
| 183 | + margin: 0; | |
| 184 | +} | |
| 185 | + | |
| 186 | +/* ?띿뒪?몄쁺??湲곕낯 */ | |
| 187 | +textarea { | |
| 188 | + resize: vertical; | |
| 189 | + color: #333; | |
| 190 | +} | |
| 191 | + | |
| 192 | +/* ?묎렐?? 紐⑥뀡 以꾩씠湲??좏샇 ??*/ | |
| 193 | +@media (prefers-reduced-motion: reduce) { | |
| 194 | + *, *::before, *::after { | |
| 195 | + animation-duration: 0.001ms !important; | |
| 196 | + transition-duration: 0.001ms !important; | |
| 197 | + scroll-behavior: auto !important; | |
| 198 | + } | |
| 199 | +} | |
| 200 | + |
+++ src/styles/usr/style.css
... | ... | @@ -0,0 +1,141 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | +@import url(../common/style.css); | |
| 3 | +@import url(./icon.css); | |
| 4 | + | |
| 5 | +/* ?고듃 */ | |
| 6 | +.fwLg{font-weight: 300 !important} | |
| 7 | +.fwRg{font-weight: 400 !important} | |
| 8 | +.fwMd{font-weight: 500 !important} | |
| 9 | +.fwBold{font-weight: 700 !important} | |
| 10 | + | |
| 11 | +.sub_font{font-family:var(--secondary-title-font);} | |
| 12 | + | |
| 13 | +.show{display:block !important;} | |
| 14 | +.hide{display:none !important;} | |
| 15 | + | |
| 16 | +.text_left{text-align:left;} | |
| 17 | +.text_right{text-align:right;} | |
| 18 | +.text_center{text-align:center;} | |
| 19 | + | |
| 20 | +.input{height:34px;border:1px solid var(--default-line-color);border-radius:5px;padding:0 12px;} | |
| 21 | +textarea, .testarea{border:1px solid var(--default-line-color);border-radius:5px;padding:0 12px;} | |
| 22 | +select, .select{height:34px;border:1px solid var(--default-line-color);border-radius:5px;padding:0 32px 0 12px;background:url(/publish/usr/images/component/icon_arrow_down.png) no-repeat calc(100% - 4px) center;} | |
| 23 | + | |
| 24 | +.email_wrap{display:flex;gap:8px;align-items:center;} | |
| 25 | +.email_wrap .input{width:160px;} | |
| 26 | +.email_wrap .select{width:160px;} | |
| 27 | + | |
| 28 | +.radio_wrap,.checkbox_wrap{display:flex;align-items:center;gap:16px;} | |
| 29 | +.radio_item,.checkbox_item{display:flex;align-items:center;gap:4px;font-size:16px;} | |
| 30 | + | |
| 31 | +.input_mix_wrap{display:flex;gap:8px;align-items:center;} | |
| 32 | + | |
| 33 | +.address_wrap{display:flex;flex-direction:column;gap:8px;} | |
| 34 | +.address_row{display:flex;gap:8px;} | |
| 35 | +.input_post{width:calc(50% - 105px);} | |
| 36 | +.adr_default{width:60%;} | |
| 37 | +.adr_detail{width:40%;} | |
| 38 | + | |
| 39 | +.input_desc_wrap{display:flex;width:100%;gap:12px;} | |
| 40 | +.input_desc_wrap.column{flex-direction:column;gap:0;margin:8px 0 0 0;} | |
| 41 | +.input_desc_wrap .input_desc{margin:0;} | |
| 42 | + | |
| 43 | +.input_desc{font-size:14px;font-weight:400;color:#666;margin:0 0 0 8px;} | |
| 44 | +.input_desc.red{color:var(--red-color);} | |
| 45 | +.input_desc.blue{color:var(--primary-color);} | |
| 46 | + | |
| 47 | +.calendar_wrap{display:flex;align-items:center;gap:8px;} | |
| 48 | +.calendar{width:140px;background:url(/publish/usr/images/component/icon_calendar.png) no-repeat calc(100% - 4px) center;} | |
| 49 | + | |
| 50 | + | |
| 51 | +/* 寃?됱쁺??*/ | |
| 52 | +.search_area{display:flex;align-items:flex-end;justify-content:space-between;} | |
| 53 | + | |
| 54 | +.search_left .total_number{font-size:14px;color:var(--body-text-color);} | |
| 55 | +.search_left .total_number b{font-size:16px;font-weight:bold;color:var(--primary-color);} | |
| 56 | +.search_right{display:flex;gap:10px;} | |
| 57 | +.search_select{min-width:120px;} | |
| 58 | +.search_input{min-width:150px;} | |
| 59 | +.search_right button{height:34px;padding:0 12px;font-size:16px;font-weight:400;} | |
| 60 | +.search_right .btn_search{background:var(--primary-color);color:#fff;} | |
| 61 | +.search_right .btn_reset{background:var(--gray-color);color:#fff;} | |
| 62 | + | |
| 63 | +/* ?곹깭 */ | |
| 64 | +.status{min-height:34px;font-size:16px;font-weight:500;border-radius:100px;padding:3px 12px;} | |
| 65 | + | |
| 66 | +.status.line.blue{border:1px solid #135add;color:#135add;} | |
| 67 | +.status.line.gray{border:1px solid #d1d6df;color:#858B97;background:#eff0f2;} | |
| 68 | + | |
| 69 | +.status.text{position:relative;padding:0;} | |
| 70 | +.status.text::after{position:absolute;content:"";width:100%;height:5px;opacity:0.2;left:0;bottom:2px;} | |
| 71 | +.status.text.blue{color:#135add;} | |
| 72 | +.status.text.blue::after{background:#135add;} | |
| 73 | +.status.text.gray{color:#858B97;} | |
| 74 | +.status.text.gray::after{background:#858B97;} | |
| 75 | + | |
| 76 | +.file_list{display:flex;flex-direction:column;gap:4px;} | |
| 77 | +.file_list a{display:flex;gap:4px;align-items:center;} | |
| 78 | + | |
| 79 | +.file_list.box{padding:15px 35px;margin:40px 0 0 0;background:#f5f7f9;border-radius:15px;gap:10px;} | |
| 80 | +.file_list.box a{gap:8px;font-size:18px;color:var(--body-text-color);text-decoration:none;} | |
| 81 | +.file_list.box .file_table{height:auto;border:0;margin:0;} | |
| 82 | + | |
| 83 | +/* 怨듭??ы빆 - ?곸꽭 */ | |
| 84 | +.board_wrap{border-top:2px solid #000;margin:0 0 30px 0;} | |
| 85 | +.board_top{display:flex;padding:30px;border-bottom:1px solid #e2e7ef;gap:15px;flex-direction:column;} | |
| 86 | +.board_title{font-size:25px;font-weight:700;color:var(--primary-title-color);} | |
| 87 | +.board_info{display:flex;font-size:16px;font-weight:400;color:var(--body-text-color);align-items:center;gap:20px;} | |
| 88 | +.board_info li{display:flex;align-items:center;gap:4px;} | |
| 89 | +.board_info b{color:#666;font-weight:500;margin:0 6px 0 0;} | |
| 90 | +.board_cont{font-size:18px;padding:45px 30px;line-height:1.5;border-bottom:1px solid #e2e7ef;} | |
| 91 | +.board_cont a{text-decoration:underline;text-underline-offset:3px;} | |
| 92 | +.view_more{border-top:2px solid #000;margin:50px 0 0 0;} | |
| 93 | +.view_more li{padding:20px 30px;font-size:16px;color:#25272a;border-bottom:1px solid #e2e7ef;} | |
| 94 | +.view_more .none *{opacity:0.5;} | |
| 95 | +.view_more span{display:inline-flex;font-weight:500;align-items:center;gap:8px;} | |
| 96 | +.view_more a{width:calc(100% - 100px);margin:0 0 0 20px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;vertical-align:bottom;} | |
| 97 | + | |
| 98 | +/* FAQ */ | |
| 99 | +.faq_wrap{display:flex;border-top:2px solid #000;margin:12px 0 0 0;flex-direction:column;} | |
| 100 | +.faq_wrap li{border-bottom:1px solid #E2E7EF;} | |
| 101 | +.question,.answer{display:flex;width:100%;padding:10px 0;font-size:18px;line-height:1.5;align-items:flex-start;} | |
| 102 | +.question em,.answer em{display:inline-block;width:100px;font-family: 'S-Core Dream';font-size:24px;font-weight:700;text-align:center;} | |
| 103 | +.question span:not(.visuall-hidden),.answer span:not(.visuall-hidden){width:calc(100% - 100px);text-align:left;margin:4px 0 0 0;} | |
| 104 | +.question em{color:var(--primary-color);} | |
| 105 | +.question{background:url(/publish/usr/images/component/icon_arrow_down_blue.png) no-repeat calc(100% - 16px) center;} | |
| 106 | +.question.active{background:url(/publish/usr/images/component/icon_arrow_up_blue.png) no-repeat calc(100% - 16px) center;} | |
| 107 | +.answer{padding:34px 26px 34px 0;background:#F5F7F9;border-top:1px solid #E2E7EF;} | |
| 108 | +.answer em{color:var(--accent-color);} | |
| 109 | + | |
| 110 | +/* 媛ㅻ윭由?由ъ뒪??*/ | |
| 111 | +.gallery_list{display:flex;margin:12px 0 0 0;gap:20px;flex-wrap:wrap;} | |
| 112 | +.gallery_list>li{width:calc((100%/3) - 14px);} | |
| 113 | +.gallery_list a{width:100%;border:1px solid #E2E7EF;} | |
| 114 | +.gallery_list .images_area{display:flex;width:100%;height:260px;background:#f2f4f7;overflow:hidden;justify-content:center;align-items:center;} | |
| 115 | +.gallery_list .images_area img{max-width:100%;max-height:100%;object-fit:contain;} | |
| 116 | +.gallery_list .list_content{padding:20px;} | |
| 117 | +.gallery_list .list_title{ text-overflow: ellipsis;overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;font-size:18px;font-weight:600;color:var(--primary-title-color);} | |
| 118 | +.gallery_list .list_info{display:flex;font-size:14px;font-weight:400;color:#636469;margin:20px 0 0 0;} | |
| 119 | +.gallery_list .list_info li{position:relative;padding:0 10px;} | |
| 120 | +.gallery_list .list_info li:first-child{padding:0 10px 0 0;} | |
| 121 | +.gallery_list .list_info li::after{position:absolute;content:"";width:1px;height:10px;background:#636469;right:0;top:6px;} | |
| 122 | +.gallery_list .list_info li:last-child::after{display:none;} | |
| 123 | + | |
| 124 | +/* ?볤? */ | |
| 125 | +.cmmt_wrap{margin:60px 0 0 0;} | |
| 126 | +.cmmt_title{display:flex;margin:0 0 12px 0;align-items:center;gap:6px;justify-content:flex-start;} | |
| 127 | +.cmmt_title p{font-size:16px;font-weight:400;} | |
| 128 | +.cmmt_title p b{font-weight:600;color:var(--primary-color);} | |
| 129 | + | |
| 130 | +.cmmt_list{display:flex;border-top:2px solid var(--primary-color);flex-direction:column;} | |
| 131 | +.cmmt_list li{padding:20px;border-bottom:1px solid var(--default-line-color);} | |
| 132 | +.cmmt_top{display:flex;gap:8px;align-items:center;} | |
| 133 | +.cmmt_top .writer{font-size:16px;color:var(--primary-title-color);} | |
| 134 | +.cmmt_top .cmmt_date{font-size:14px;font-weight:400;color:#666;} | |
| 135 | +.cmmt_detail{padding:8px 0 12px 0;font-size:16px;color:var(--body-text-color);} | |
| 136 | +.cmmt_bottom .cmmt_date{font-size:14px;color:#666;} | |
| 137 | + | |
| 138 | +.cmmt_input{margin:40px 0 0 0;} | |
| 139 | +.cmmt_input textarea{width:calc(100% - 95px);height:120px;margin:0 10px 0 0;} | |
| 140 | +.cmmt_input button.btn.xlarge{height:120px;} | |
| 141 | + |
+++ src/styles/usr/tab.css
... | ... | @@ -0,0 +1,18 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.tabs{display:flex;width:100%;margin:0 0 30px 0;} | |
| 4 | + | |
| 5 | +.tabs.tab02 li{width:calc(100%/2);} | |
| 6 | +.tabs.tab03 li{width:calc(100%/3);} | |
| 7 | +.tabs.tab04 li{width:calc(100%/4);} | |
| 8 | +.tabs.tab05 li{width:calc(100%/5);} | |
| 9 | +.tabs.tab06 li{width:calc(100%/6);} | |
| 10 | + | |
| 11 | +.tabs.fill .tab{width:100%;height:60px;font-size:20px;font-weight:500;border:1px solid #d1d6df;border-right:0;color:#838994;} | |
| 12 | +.tabs.fill .tab.active{border:1px solid var(--primary-color);background:var(--primary-lighter-color);color:var(--primary-color);} | |
| 13 | +.tabs.fill :first-child .tab{border-radius:8px 0 0 8px;} | |
| 14 | +.tabs.fill :last-child .tab{border-radius:0 8px 8px 0;border-right:1px solid #d1d6df;} | |
| 15 | +.tabs.fill :last-child .tab.active{border:1px solid var(--primary-color);} | |
| 16 | + | |
| 17 | +.tab_content{display:none;} | |
| 18 | +.tab_content.active{display:block;} |
+++ src/styles/usr/table.css
... | ... | @@ -0,0 +1,37 @@ |
| 1 | +@charset "utf-8"; | |
| 2 | + | |
| 3 | +.table{border-top:2px solid #000;} | |
| 4 | +.table table{table-layout:fixed;width:100%;} | |
| 5 | +.table .mobile_show,.table .mobile_hide{display:none;} | |
| 6 | +.table .required{color:var(--red-color);margin:0 4px 0 0;} | |
| 7 | + | |
| 8 | +.table_type_cols{margin:12px 0 0 0;} | |
| 9 | +.table_type_cols tr{border-bottom:1px solid #e2e7ef;} | |
| 10 | +.table_type_cols th,.table_type_cols td{padding:4px 8px;font-size:16px;text-align:center;box-sizing:border-box;} | |
| 11 | +.table_type_cols thead>tr>th{height:60px;font-weight:500;color:#25272A;} | |
| 12 | +.table_type_cols tbody>tr>td{height:50px;font-weight:400;color:#444;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;} | |
| 13 | +.table_type_cols .text_left a{width:100%;text-align:left;} | |
| 14 | + | |
| 15 | + | |
| 16 | +.table_type_rows{margin:30px 0;} | |
| 17 | +.table_type_rows tr{border-bottom:1px solid #e2e7ef;} | |
| 18 | +.table_type_rows tbody>tr>th,.table_type_rows tbody>tr>td{height:50px;padding:12px 20px;font-size:16px;color:#25272A;box-sizing:border-box;} | |
| 19 | +.table_type_rows tbody>tr>th{text-align:center;font-weight:500;background:#F2F3F5;} | |
| 20 | +.table_type_rows tbody>tr>td{text-align:left;font-weight:400;} | |
| 21 | + | |
| 22 | +.file_top{display:flex;justify-content:space-between;align-items:flex-end;} | |
| 23 | +.file_table{height:150px;margin:12px 0 0 0;border:1px solid var(--lightgray-color);border-radius:8px;} | |
| 24 | +.file_table table{table-layout:fixed;width:100%;border-collapse: collapse;} | |
| 25 | +.file_table tbody{width:100%;max-height:150px;overflow-y:auto;} | |
| 26 | +.file_table th{height:36px;font-size:14px;color:#222;padding:0 8px;text-align:center;} | |
| 27 | +.file_table tbody>tr>td{height:36px;font-size:14px;color:#444;padding:0 8px;text-align:center;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;} | |
| 28 | + | |
| 29 | +.file_table.before_file_table table{height:100%;} | |
| 30 | +.file_table.before_file_table thead{opacity:0.3;} | |
| 31 | +.file_table.before_file_table tbody{background:#EFF0F4;} | |
| 32 | +.file_table.before_file_table tbody tr{height:100%;border:0;text-align:center;} | |
| 33 | +.file_table.before_file_table p{font-size:14px;} | |
| 34 | +.file_table.before_file_table b{color:var(--primary-color);} | |
| 35 | + | |
| 36 | + | |
| 37 | + |
+++ src/user/UserLayout.tsx
... | ... | @@ -0,0 +1,132 @@ |
| 1 | +import type { ReactNode } from 'react'; | |
| 2 | + | |
| 3 | +const navItems = ['소개', '게시판', '자료실', '마이페이지']; | |
| 4 | + | |
| 5 | +function UserHeader() { | |
| 6 | + return ( | |
| 7 | + <header className="header"> | |
| 8 | + <div className="header_top"> | |
| 9 | + <div className="inner"> | |
| 10 | + <div className="area_left" /> | |
| 11 | + <ul className="user_menu"> | |
| 12 | + <li> | |
| 13 | + <a href="#">본인인증</a> | |
| 14 | + </li> | |
| 15 | + <li> | |
| 16 | + <a href="#">마이페이지</a> | |
| 17 | + </li> | |
| 18 | + </ul> | |
| 19 | + </div> | |
| 20 | + </div> | |
| 21 | + <div className="header_container"> | |
| 22 | + <div className="inner"> | |
| 23 | + <h1 className="logo"> | |
| 24 | + <a href="#"> | |
| 25 | + <span>BASE USER</span> | |
| 26 | + </a> | |
| 27 | + </h1> | |
| 28 | + <nav> | |
| 29 | + <ul className="gnb"> | |
| 30 | + {navItems.map((item) => ( | |
| 31 | + <li key={item}> | |
| 32 | + <a href="#" className="depth01"> | |
| 33 | + {item} | |
| 34 | + </a> | |
| 35 | + <div className="depth02_container"> | |
| 36 | + <ul className="depth02_ul"> | |
| 37 | + <li> | |
| 38 | + <a href="#" className="depth02"> | |
| 39 | + {item} 하위메뉴 | |
| 40 | + </a> | |
| 41 | + </li> | |
| 42 | + <li> | |
| 43 | + <a href="#" className="depth02"> | |
| 44 | + 안내 | |
| 45 | + </a> | |
| 46 | + </li> | |
| 47 | + </ul> | |
| 48 | + </div> | |
| 49 | + </li> | |
| 50 | + ))} | |
| 51 | + </ul> | |
| 52 | + </nav> | |
| 53 | + <ul className="header_util"> | |
| 54 | + <li> | |
| 55 | + <button type="button" className="btn_search" title="검색"> | |
| 56 | + <i /> | |
| 57 | + </button> | |
| 58 | + </li> | |
| 59 | + <li> | |
| 60 | + <button type="button" className="btn_sitemap" title="전체메뉴 보기"> | |
| 61 | + <i /> | |
| 62 | + </button> | |
| 63 | + </li> | |
| 64 | + </ul> | |
| 65 | + </div> | |
| 66 | + </div> | |
| 67 | + </header> | |
| 68 | + ); | |
| 69 | +} | |
| 70 | + | |
| 71 | +function UserSideMenu() { | |
| 72 | + return ( | |
| 73 | + <aside className="sidemenu"> | |
| 74 | + <div className="sidemenu_tit"> | |
| 75 | + <h2>마이페이지</h2> | |
| 76 | + </div> | |
| 77 | + <nav className="sidemenu_nav"> | |
| 78 | + <ul className="depth01_list"> | |
| 79 | + <li> | |
| 80 | + <a href="#" className="depth01" rel="noopener noreferrer"> | |
| 81 | + 게시판 <i /> | |
| 82 | + </a> | |
| 83 | + <ul className="depth02_list"> | |
| 84 | + <li> | |
| 85 | + <a href="#" className="depth02"> | |
| 86 | + 공지사항 | |
| 87 | + </a> | |
| 88 | + </li> | |
| 89 | + <li> | |
| 90 | + <a href="#" className="depth02"> | |
| 91 | + 자료실 | |
| 92 | + </a> | |
| 93 | + </li> | |
| 94 | + </ul> | |
| 95 | + </li> | |
| 96 | + <li> | |
| 97 | + <a href="#" className="depth01"> | |
| 98 | + 내 신청 내역 | |
| 99 | + </a> | |
| 100 | + </li> | |
| 101 | + <li> | |
| 102 | + <a href="#" className="depth01"> | |
| 103 | + 회원정보 | |
| 104 | + </a> | |
| 105 | + </li> | |
| 106 | + </ul> | |
| 107 | + </nav> | |
| 108 | + </aside> | |
| 109 | + ); | |
| 110 | +} | |
| 111 | + | |
| 112 | +export function UserLayout({ children }: { children: ReactNode }) { | |
| 113 | + return ( | |
| 114 | + <div className="wrap"> | |
| 115 | + <UserHeader /> | |
| 116 | + <div id="container" className="container sub"> | |
| 117 | + <div className="inner"> | |
| 118 | + <UserSideMenu /> | |
| 119 | + <div className="content_wrap"> | |
| 120 | + <div className="content_title"> | |
| 121 | + <h2>공지사항</h2> | |
| 122 | + </div> | |
| 123 | + <div className="contents">{children}</div> | |
| 124 | + </div> | |
| 125 | + </div> | |
| 126 | + </div> | |
| 127 | + <footer className="footer"> | |
| 128 | + <div className="inner">Copyright BASE USER.</div> | |
| 129 | + </footer> | |
| 130 | + </div> | |
| 131 | + ); | |
| 132 | +} |
+++ src/user/UserListPage.tsx
... | ... | @@ -0,0 +1,136 @@ |
| 1 | +const rows = Array.from({ length: 5 }).map((_, index) => ({ | |
| 2 | + no: index + 1, | |
| 3 | + title: `게시글 제목 샘플 ${index + 1}`, | |
| 4 | + period: '2026-05-04 ~ 2026-05-31', | |
| 5 | + createdAt: '2026-05-04', | |
| 6 | + status: index === 0 ? '접수중' : '마감', | |
| 7 | +})); | |
| 8 | + | |
| 9 | +export function UserListPage() { | |
| 10 | + return ( | |
| 11 | + <> | |
| 12 | + <ul className="tabs fill tab03"> | |
| 13 | + <li> | |
| 14 | + <button type="button" className="tab active"> | |
| 15 | + tab1 | |
| 16 | + </button> | |
| 17 | + </li> | |
| 18 | + <li> | |
| 19 | + <button type="button" className="tab"> | |
| 20 | + tab2 | |
| 21 | + </button> | |
| 22 | + </li> | |
| 23 | + <li> | |
| 24 | + <button type="button" className="tab"> | |
| 25 | + tab3 | |
| 26 | + </button> | |
| 27 | + </li> | |
| 28 | + </ul> | |
| 29 | + | |
| 30 | + <div className="search_area"> | |
| 31 | + <div className="search_left"> | |
| 32 | + <p className="total_number"> | |
| 33 | + 총 게시물 <b>111</b>건 | |
| 34 | + </p> | |
| 35 | + </div> | |
| 36 | + <div className="search_right"> | |
| 37 | + <select title="검색조건" className="search_select"> | |
| 38 | + <option>전체</option> | |
| 39 | + <option>제목</option> | |
| 40 | + <option>내용</option> | |
| 41 | + </select> | |
| 42 | + <div className="search_type input_type"> | |
| 43 | + <input type="text" title="검색어 입력" className="input search_input" /> | |
| 44 | + </div> | |
| 45 | + <button type="button" className="btn btn_search"> | |
| 46 | + 검색 | |
| 47 | + </button> | |
| 48 | + <button type="button" className="btn btn_reset"> | |
| 49 | + 초기화 | |
| 50 | + </button> | |
| 51 | + </div> | |
| 52 | + </div> | |
| 53 | + | |
| 54 | + <div className="table table_type_cols"> | |
| 55 | + <table> | |
| 56 | + <colgroup> | |
| 57 | + <col style={{ width: '80px' }} /> | |
| 58 | + <col style={{ width: 'auto' }} /> | |
| 59 | + <col style={{ width: '26%' }} /> | |
| 60 | + <col style={{ width: '11%' }} /> | |
| 61 | + <col style={{ width: '12%' }} /> | |
| 62 | + </colgroup> | |
| 63 | + <thead> | |
| 64 | + <tr> | |
| 65 | + <th>번호</th> | |
| 66 | + <th>제목</th> | |
| 67 | + <th>기간</th> | |
| 68 | + <th>등록일</th> | |
| 69 | + <th>상태</th> | |
| 70 | + </tr> | |
| 71 | + </thead> | |
| 72 | + <tbody> | |
| 73 | + {rows.map((row) => ( | |
| 74 | + <tr key={row.no}> | |
| 75 | + <td> | |
| 76 | + <span className="mobile_show">번호</span> | |
| 77 | + {row.no} | |
| 78 | + </td> | |
| 79 | + <td className="text_left"> | |
| 80 | + <span className="mobile_hide">제목</span> | |
| 81 | + <a href="#">{row.title}</a> | |
| 82 | + </td> | |
| 83 | + <td> | |
| 84 | + <span className="mobile_show">기간</span> | |
| 85 | + {row.period} | |
| 86 | + </td> | |
| 87 | + <td> | |
| 88 | + <span className="mobile_show">등록일</span> | |
| 89 | + {row.createdAt} | |
| 90 | + </td> | |
| 91 | + <td> | |
| 92 | + <span className="mobile_show">상태</span> | |
| 93 | + <strong className={`status line ${row.status === '접수중' ? 'blue' : 'gray'}`}>{row.status}</strong> | |
| 94 | + </td> | |
| 95 | + </tr> | |
| 96 | + ))} | |
| 97 | + </tbody> | |
| 98 | + </table> | |
| 99 | + </div> | |
| 100 | + | |
| 101 | + <ul className="page"> | |
| 102 | + <li> | |
| 103 | + <a href="#" className="btn_page btn_first" title="첫 페이지로 이동"> | |
| 104 | + <i /> | |
| 105 | + </a> | |
| 106 | + </li> | |
| 107 | + <li> | |
| 108 | + <a href="#" className="btn_page btn_prev" title="이전 페이지로 이동"> | |
| 109 | + <i /> | |
| 110 | + </a> | |
| 111 | + </li> | |
| 112 | + <li> | |
| 113 | + <a href="#" className="active"> | |
| 114 | + 1 | |
| 115 | + </a> | |
| 116 | + </li> | |
| 117 | + <li> | |
| 118 | + <a href="#">2</a> | |
| 119 | + </li> | |
| 120 | + <li> | |
| 121 | + <a href="#">3</a> | |
| 122 | + </li> | |
| 123 | + <li> | |
| 124 | + <a href="#" className="btn_page btn_next" title="다음 페이지로 이동"> | |
| 125 | + <i /> | |
| 126 | + </a> | |
| 127 | + </li> | |
| 128 | + <li> | |
| 129 | + <a href="#" className="btn_page btn_last" title="마지막 페이지로 이동"> | |
| 130 | + <i /> | |
| 131 | + </a> | |
| 132 | + </li> | |
| 133 | + </ul> | |
| 134 | + </> | |
| 135 | + ); | |
| 136 | +} |
+++ src/user/index.ts
... | ... | @@ -0,0 +1,16 @@ |
| 1 | +// common | |
| 2 | +import '../styles/common/reset.css' | |
| 3 | +import '../styles/common/font.css' | |
| 4 | +import '../styles/common/style.css' | |
| 5 | + | |
| 6 | +import '../styles/usr/common.css' | |
| 7 | +import '../styles/usr/layout.css' | |
| 8 | +import '../styles/usr/content_layout.css' | |
| 9 | +import '../styles/usr/style.css' | |
| 10 | +import '../styles/usr/button.css' | |
| 11 | +import '../styles/usr/tab.css' | |
| 12 | +import '../styles/usr/table.css' | |
| 13 | +import '../styles/usr/calendar.css' | |
| 14 | +import '../styles/usr/popup.css' | |
| 15 | +import '../styles/usr/content.css' | |
| 16 | +import '../styles/usr/main.css' |
+++ tsconfig.app.json
... | ... | @@ -0,0 +1,25 @@ |
| 1 | +{ | |
| 2 | + "compilerOptions": { | |
| 3 | + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | |
| 4 | + "target": "es2023", | |
| 5 | + "lib": ["ES2023", "DOM", "DOM.Iterable"], | |
| 6 | + "module": "esnext", | |
| 7 | + "types": ["vite/client"], | |
| 8 | + "skipLibCheck": true, | |
| 9 | + | |
| 10 | + /* Bundler mode */ | |
| 11 | + "moduleResolution": "bundler", | |
| 12 | + "allowImportingTsExtensions": true, | |
| 13 | + "verbatimModuleSyntax": true, | |
| 14 | + "moduleDetection": "force", | |
| 15 | + "noEmit": true, | |
| 16 | + "jsx": "react-jsx", | |
| 17 | + | |
| 18 | + /* Linting */ | |
| 19 | + "noUnusedLocals": true, | |
| 20 | + "noUnusedParameters": true, | |
| 21 | + "erasableSyntaxOnly": true, | |
| 22 | + "noFallthroughCasesInSwitch": true | |
| 23 | + }, | |
| 24 | + "include": ["src"] | |
| 25 | +} |
+++ tsconfig.json
... | ... | @@ -0,0 +1,7 @@ |
| 1 | +{ | |
| 2 | + "files": [], | |
| 3 | + "references": [ | |
| 4 | + { "path": "./tsconfig.app.json" }, | |
| 5 | + { "path": "./tsconfig.node.json" } | |
| 6 | + ] | |
| 7 | +} |
+++ tsconfig.node.json
... | ... | @@ -0,0 +1,24 @@ |
| 1 | +{ | |
| 2 | + "compilerOptions": { | |
| 3 | + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", | |
| 4 | + "target": "es2023", | |
| 5 | + "lib": ["ES2023"], | |
| 6 | + "module": "esnext", | |
| 7 | + "types": ["node"], | |
| 8 | + "skipLibCheck": true, | |
| 9 | + | |
| 10 | + /* Bundler mode */ | |
| 11 | + "moduleResolution": "bundler", | |
| 12 | + "allowImportingTsExtensions": true, | |
| 13 | + "verbatimModuleSyntax": true, | |
| 14 | + "moduleDetection": "force", | |
| 15 | + "noEmit": true, | |
| 16 | + | |
| 17 | + /* Linting */ | |
| 18 | + "noUnusedLocals": true, | |
| 19 | + "noUnusedParameters": true, | |
| 20 | + "erasableSyntaxOnly": true, | |
| 21 | + "noFallthroughCasesInSwitch": true | |
| 22 | + }, | |
| 23 | + "include": ["vite.config.ts"] | |
| 24 | +} |
+++ vite.config.ts
... | ... | @@ -0,0 +1,10 @@ |
| 1 | +import { defineConfig } from 'vite' | |
| 2 | +import react from '@vitejs/plugin-react' | |
| 3 | + | |
| 4 | +export default defineConfig({ | |
| 5 | + plugins: [react()], | |
| 6 | + server: { | |
| 7 | + port: 5173, | |
| 8 | + host: '0.0.0.0' | |
| 9 | + }, | |
| 10 | +}) |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?