Skip to content

0.4.6

Choose a tag to compare

@eps1lon eps1lon released this 13 Jul 21:29
· 558 commits to main since this release
03c05ac

Patch Changes

  • f7c1981 #288 Thanks @eps1lon! - Drop node 13 support

    We only stopped testing. Probability of breakage should be very low.

    New policy:

    Only active node versions are supported.
    Inactive node versions can stop working in a SemVer MINOR release.

  • fa53c51 #210 Thanks @eps1lon! - Implement accessbile description computation

    import { computeAccessibleDescription } from "dom-accessibility-api";
    
    const description = computeAccessibleDescription(element);

    Warning: It always considers title attributes if the description is empty.
    Even if the title attribute was already used for the accessible name.
    This is fails a web-platform-test.
    The other failing test is due to aria-label being ignored for the description which is correct by spec.
    It's likely an issue with wpt.
    The other tests are passing (13/15).