Visual particle effect editor for EkaiiCosmetics — 3D preview, YAML export
  • TypeScript 98.5%
  • CSS 0.6%
  • HTML 0.4%
  • JavaScript 0.4%
  • Dockerfile 0.1%
Find a file
exo 2f54f8d6c3 fix: tooltips stay within viewport, wrap text properly
- Changed from absolute to fixed positioning with computed coordinates
- getBoundingClientRect() on the info icon to place tooltip near it
- Clamped X to max(8, min(left, innerWidth-230)) to prevent overflow
- Clamped Y to max(8, top-8) to prevent top overflow
- Added break-words + whitespace-normal for long text wrapping
- max-w-[220px] instead of fixed w-52

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-09 20:33:01 +02:00
public fix: complete particle texture audit — 241 textures, all correctly mapped 2026-05-09 20:15:17 +02:00
src fix: tooltips stay within viewport, wrap text properly 2026-05-09 20:33:01 +02:00
.gitignore feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
docker-compose.yml feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
Dockerfile fix: bust Docker cache for Coolify rebuild 2026-05-09 20:23:14 +02:00
eslint.config.js feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
index.html feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
nginx.conf feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
package-lock.json feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
package.json feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
README.md feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
tsconfig.app.json feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
tsconfig.json feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
tsconfig.node.json feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00
vite.config.ts feat: initial ekaii-cosmetics-editor 2026-05-09 19:45:24 +02:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])