Socket
Socket
Sign inDemoInstall

@springernature/global-expander

Package Overview
Dependencies
1
Maintainers
14
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @springernature/global-expander

Frontend package for expanding a target when clicking a toggle


Version published
Weekly downloads
3.2K
increased by32.43%
Maintainers
14
Created
Weekly downloads
 

Readme

Source

Global Expander

Click a trigger element to toggle the display of a unique target element.

Usage

import {expander} from 'global-expander/js';

expander(options);
<button id="button1" data-expander data-expander-target="#target1">Expander 1</button>
<div id="target1">Target 1</div>

JavaScript

For more flexibility you can use the Expander class directly:

const trigger = document.querySelector('.my-trigger');
const target = document.querySelector('.my-target');

const myExpander = new Expander(trigger, target, options);

myExpander.init();

You can also manually open and close any instance of expander with:

expander.open();
expander.close();

Options

OptionDefault ValueTypeDescription
TARGET_HIDE_CLASS'u-js-hide'StringHTML class to be toggled on the target
TRIGGER_OPEN_CLASS-StringHTML class to be toggled to the trigger
TRIGGER_OPEN_LABEL-StringText to set on the trigger when open
CLOSE_ON_FOCUS_OUTtrueBooleanCloses when you click or tab outside of the target
AUTOFOCUSnullStringMoves focus to an element when hitting trigger:
firstTabbable will find the first tabbable element inside the target (will highlight text if appropriate, e.g. input with value).
target will set focus on target element
OPEN_EVENTfalseBooleanDispatch custom event on trigger once Global Expander has completed it's Open method
DEFAULT_OPENfalseBooleanSet the expander to be open by default

The data attribute options are the same, but are lowercase and hyphenated (and strings where the option is a boolean):

  • data-expander-target-hide-class
  • data-expander-trigger-open-class
  • data-expander-trigger-open-label
  • data-expander-close-on-focus-out
  • data-expander-autofocus
  • data-expander-open-event
  • data-expander-default-open

Note: data attribute options will take precedence over any options set during initialisation.

Polyfills / Babel plugins required

  • plugin-transform-object-assign

FAQs

Last updated on 18 Feb 2022

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