Skip to content

Releases: GuiEpi/react-dot-cursor

v1.0.0

04 Aug 07:33

Choose a tag to compare

  • ✨ Add normalizeColor utility and support multiple formats for defaultColor prop
  • ✨ Add support for cursor text color customization

⚠️ Breaking Changes

Migration Guide - v0.2.4 to v1.0.0

🎨 CSS Variable Format Changes

The CSS variable format for cursor colors has been updated to use complete CSS color values instead of raw color components.

Before (v0.2.4):

:root {
  --cursor-color: 349, 80%, 59%; /* Raw HSL components */
}

After (v1.0.0):

:root {
  --cursor-color: hsl(349, 80%, 59%); /* Complete HSL color */
}

Quick Migration Script

You can use this regex to quickly find and replace color values in your CSS files:

Find: --cursor-color:\s*(\d+),\s*(\d+%),\s*(\d+%);

Replace: --cursor-color: hsl($1, $2, $3);

v0.2.4

15 Jan 17:37

Choose a tag to compare

  • ⬆️ Upgrade dependencies

v0.2.3

14 Jan 17:44

Choose a tag to compare

  • ✨ Add scaleOnClick prop

v0.2.2

11 Jan 14:29

Choose a tag to compare

  • ✨ Allow multiple selectors

v0.2.1

09 Jan 17:51

Choose a tag to compare

  • 🎨 Move isText in utils
  • 📝 Update package description

v0.2.0

08 Jan 02:18

Choose a tag to compare

  • ✨ Add theme and content

v0.1.3

05 Jan 17:36

Choose a tag to compare

  • ✨ Add missing interactive/text elements
  • 📱 Add mobile detection to disable cursor
  • 🔄 Prioritize interactive elements

v0.1.2

05 Jan 03:35

Choose a tag to compare

  • 🚸 Improve cursor position
  • 🔥 Remove unnecessary file/code

v0.1.1

04 Jan 22:54

Choose a tag to compare

  • ✨ Add missing text elements