Package Exports
- @chakra-ui/visually-hidden
- @chakra-ui/visually-hidden/dist/chakra-ui-visually-hidden.cjs.js
- @chakra-ui/visually-hidden/dist/chakra-ui-visually-hidden.esm.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@chakra-ui/visually-hidden) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@chakra-ui/visually-hidden
The visually hidden component styles itself so that it’s content is not visible, but it is available to assistive technologies like screen readers and other text to speech programs.
Installation
yarn add @chakra-ui/visually-hidden
# or
npm i @chakra-ui/visually-hidden
Import component
import { VisuallyHidden } from "@chakra-ui/visually-hidden"
Basic usage
// it renders a `span` by default
<VisuallyHidden>This content will be hidden on screen</VisuallyHidden>
// for visually hidden input fields
<VisuallyHiddenInput type="checkbox" defaultChecked/>