2 hours ago
heroui

@heroui/toast@2.0.20

Patch Changes

  • Updated dependencies []:
    • @heroui/spinner@2.2.27
2 hours ago
heroui

@heroui/tooltip@2.2.27

Patch Changes

  • Updated dependencies []:
    • @heroui/aria-utils@2.2.27
    • @heroui/framer-utils@2.1.26
2 hours ago
heroui

@heroui/tabs@2.2.27

Patch Changes

  • Updated dependencies []:
    • @heroui/aria-utils@2.2.27
2 hours ago
heroui

@heroui/spinner@2.2.27

Patch Changes

  • Updated dependencies [1a2635b]:
    • @heroui/system-rsc@2.3.22
    • @heroui/system@2.4.26
2 hours ago
heroui

@heroui/user@2.2.25

Patch Changes

  • Updated dependencies [5ec842b]:
    • @heroui/avatar@2.2.25
2 hours ago
heroui

@heroui/use-image@2.1.14

Patch Changes

  • #6041 5ec842b Thanks @brianatdetections! - Fix race condition in use-image hook that caused cached images to remain invisible (stuck at opacity-0) on Firefox and Safari.

    Root Cause: Event handlers (onload/onerror) were attached AFTER setting the image src. For cached images, the browser fires onload synchronously when src is set, causing the event to be missed. This is particularly prevalent in Firefox and Safari due to their JavaScript execution timing characteristics.

    Solution:

    • Attach onload/onerror handlers BEFORE setting src
    • Check both naturalWidth AND naturalHeight (per CodeRabbit review feedback on #4523)
    • Handle synchronous error callbacks for failed cached images
    • Include ignoreFallback in useCallback dependencies to prevent stale closures when prop changes dynamically
    • Add comprehensive test coverage including synchronous callback scenarios and dynamic ignoreFallback changes

    Fixes #4534, #2259

2 hours ago
heroui

@heroui/system@2.4.26

Patch Changes

  • Updated dependencies [1a2635b]:
    • @heroui/system-rsc@2.3.22
2 hours ago
heroui

@heroui/theme@2.4.26

Patch Changes

2 hours ago
heroui

@heroui/table@2.2.30

Patch Changes

  • Updated dependencies []:
    • @heroui/checkbox@2.3.30
2 hours ago
heroui

@heroui/system-rsc@2.3.22

Patch Changes

  • #5847 1a2635b Thanks @ITBoomBKStudio! - fix(system-rsc): correct type inference in extendVariants and CompoundVariants & correct slot detection in getSlots() to ensure proper slot key extraction and consistent compoundVariants behavior.