1.2.6 • Published 4 years ago

@sparkbox/safe-focus v1.2.6

Weekly downloads
197
License
ISC
Repository
github
Last release
4 years ago

Safe focus

CircleCI

Safe Focus is a utility file to add a custom outline style for all selectable components.

Installation

Run npm i @sparkbox/safe-focus -P in your local project.

Usage

JavaScript

Require the package in your project and init the safeFocusInit import.

import { safeFocusInit } from '@sparkbox/safe-focus';

safeFocusInit();

Sass

To use the safe-focus mixin, start by exposing node_modules to Sass in package.json.

"sass": {
    "includePaths": ["./node_modules"]
},

Next, import the package into your project's mixin file.

@import '~@sparkbox/safe-focus/index';

Encapsulate your styles with the safe-focus mixin:

.my-button {
  outline: 1px solid #00b2e2;
  @include safe-focus() {
    outline: 1px solid #264b59;
  }
}

This will result in the following transpiled CSS:

.my-button {
  outline: 1px solid #00b2e2;
}

html.safe-focus {
  .my-button {
    outline: 1px solid #264b59;
  }
}

Since the safe-focus CSS class added to the DOM may change, it is not recommended to directly reference the safe-focus CSS class in your project.

1.2.6

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago