Socket
Socket
Sign inDemoInstall

@vue-a11y/focus-loop

Package Overview
Dependencies
11
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @vue-a11y/focus-loop

Vue component that helps you to to trap focus in an element.


Version published
Weekly downloads
2.7K
increased by23.02%
Maintainers
3
Install size
53.9 kB
Created
Weekly downloads
 

Changelog

Source

0.2.0 (2021-05-04)

Features

  • a11y: Content outside inert for assistive technology users (ca85261)
  • Add autoFocus props (3716d1e)

Readme

Source

@vue-a11y/focus-loop


🔥 HEADS UP! You are in the Vue 2 compatible branch, check the "next" branch for Vue3 support.


Introduction

Vue component that helps you to to trap focus in an element.

When developing accessible components, in certain behaviors it is important to trap focus on the element.

For example, when opening a modal, it is recommended that the focus is only on the tabbable elements of that modal and only release the focus, when the modal is closed.

  • Focus is trapped: Tab and Shift+Tab will cycle through the focusable nodes within <FocusLoop> without returning to the main document below;
  • Automatic focus on the first focusable element, with the option to disable;
  • Restoring focus to the last activeElement;
  • Hides the document from screen readers when <focusLoop> is visible and enabled.

Installation

Add @vue-a11y/focus-loop in your Vue project.

npm install -S @vue-a11y/focus-loop
# or
yarn add @vue-a11y/focus-loop

Or via CDN

<script src="http://unpkg.com/@vue-a11y/focus-loop"></script>

Usage

You can use it globally in your main.js.

import Vue from 'vue'
import VueFocusLoop from '@vue-a11y/focus-loop'

Vue.use(VueFocusLoop)

Or you can import into your component.

import { FocusLoop } from '@vue-a11y/focus-loop'

export default {
  components: {
    FocusLoop
  }
}

Example of use on your single file component.

<template>
  <div>
    <b-button v-b-modal.modal-1>Launch demo modal</b-button>

    <b-modal id="modal-1" title="BootstrapVue">
      <FocusLoop :is-visible="isOpen">
        <b-form @submit="onSubmit" @reset="onReset" v-if="show">
          <b-form-group id="input-group-2" label="Your Name:" label-for="input-1">
            <b-form-input
              id="input-1"
              v-model="form.name"
              required
              placeholder="Enter name"
            ></b-form-input>
          </b-form-group>

          <b-form-group id="input-group-2" label="Your Email:" label-for="input-2">
            <b-form-input
              id="input-2"
              type="email"
              v-model="form.email"
              required
              placeholder="Enter email" 
            ></b-form-input>
          </b-form-group>

          <b-button type="submit" variant="primary">Submit</b-button>
          <b-button type="reset" variant="danger">Reset</b-button>
        </b-form>
      </FocusLoop>
    </b-modal>
  </div>
</template>

Make the focus-loop container visible and rendered

proptypedefault
isVisibleBooleanfalse
<FocusLoop :is-visible="isOpen">
  <!-- your elements here -->
</FocusLoop>

Disable loop

You can disable the focus trap and activate it only when you really need it.

proptypedefault
disabledBooleanfalse

For example:

<FocusLoop :is-visible="isOpen" disabled>
  <!-- your elements here -->
</FocusLoop>

Disable autofocus on the first element

When activating the <FocusLoop>, the first element receives the focus automatically, however, if you want to disable this behavior, just disable it through the autoFocus prop.

proptypedefault
autoFocusBooleantrue

For example:

<FocusLoop :is-visible="isOpen" :auto-focus="false">
  <!-- your elements here -->
</FocusLoop>

Keyboard support

Keyboard users will use Tab and Shift + Tab to navigate tabbable elements.

According to the Modal Dialog Example in WAI-ARIA Authoring Practices specification, when the focus is on the last focusable element, you must move the focus to the first element and vice versa.

KeyFunction
Tab▸ Moves focus to next focusable element inside the dialog.
▸ When focus is on the last focusable element in the dialog, moves focus to the first focusable element in the dialog.
Shift + Tab▸ Moves focus to previous focusable element inside the dialog.
▸ When focus is on the first focusable element in the dialog, moves focus to the last focusable element in the dialog.

Articles that served as inspiration:

Other options

Contributing

  • From typos in documentation to coding new features;
  • Check the open issues or open a new issue to start a discussion around your feature idea or the bug you found;
  • Fork repository, make changes and send a pull request;

Follow us on Twitter @vue_a11y

Thank you

Keywords

FAQs

Last updated on 04 May 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc