2.0.0-0 • Published 7 years ago

pmx-dropdown-menu v2.0.0-0

Weekly downloads
52
License
-
Repository
-
Last release
7 years ago

PMX Dropdown Menu:

Intro

Module to generate an accordion menu

Getting Started

import EventEmitter from 'eventemitter3';
import dropdown from 'pmx-dropdown-menu';

const emitter = new EventEmitter();
const dd = dropdown();
const el = document.getElementById('example-dropdown');
const config = {
  el,
}
const shared = {
  emitter,
};
dd.init(config, shared);

How to use

Setup

The module is exported as an UMD module so it can be used with AMD, CommonJS, ES Modules and in the browser.

  • Install the dependency Using Yarn
yarn add pmx-dropdown-menu

or using NPM

npm install pmx-dropdown-menu --save
  • Include the module

CommonJS

const inert = require('pmx-dropdown-menu').default;

ES2015 modules

import inert from 'pmx-dropdown-menu';

API

.init(config, shared):

Initializes the component.

.stop(config, shared)

Stops the component by removing all added mutations.

Browser Support

  • IE 10+
  • Chrome
  • Firefox
  • Safari

Dependencies

This library has been written with some ES2015 features that need to be polyfilled:

  • Map
  • Object.assign
2.0.0-0

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago