Socket
Book a DemoInstallSign in
Socket

ceri-dropdown

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ceri-dropdown

a advanced dropdown menu

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

ceri-dropdown

a advanced dropdown/up/left/right menu.

Features:

  • plain JS - no dependencies
  • themeable
  • use in your markup - easy to reason about
  • aware of the viewport - automatically changes opening direction to be visible

Demo

Install

npm install --save-dev ceri-dropdown

Usage

window.customElements.define("ceri-dropdown", require("ceri-dropdown"))
<!-- as sibling (preferred) -->
<button>Click to open dropdown</button>
<ceri-dropdown>
  <li><span>Line 1</span></li>
</ceri-dropdown>
<!-- as child -->
<button>Click to open dropdown
  <ceri-dropdown>
    <li><span>Line 1</span></li>
  </ceri-dropdown>
</button>

For examples see dev/.

Props

Nametypedefaultdescription
gutterNumber0horizontal offset
anchorStringoverlay ? "nw" : "sw"point of the parent where it will be attached
keep-openBooleanfalsewill be not close on click outside of dropdown
constrain-widthBooleanfalsefix width to parent width
overlayBooleanfalsewill overlay parent
hoverBooleanfalseopen on hover instead click
openBooleanfalseset to open / close
on-bodyBooleanfalsewill be positioned on body instead of sibling/parent element. Detailed description

Events

Namedescription
toggled(open:Boolean)emitted before open and after close

Positioning

There are two ways of positioning. The default is in-place, the other possibility is on body.

  • The in-place positioning can be problematic when you have an overflow:hidden combined with a position:absolute|relative|fixed element in the parent chain and the dropdown is overflowing.
  • the body positioning can be problematic when the parent is moving relative to body or when you depend on inheritance of styles.

Themes

<button class=btn>Click me!</button>
<ceri-dropdown class=materialize constrain-width overlay>
  <li><span>Content</span></li>
  <li><span>Content2</span></li>
</ceri-dropdown>

Custom animation

  • read the documentation of the animate mixin.
  • read and understand the default enter and leave animation in src/dropdown.coffee
  • you can provide a custom animation like this:
# application wide
CEDD = require("ceri-dropdown")
CEDD.prototype.enter = (o) -> # your new enter animation
CEDD.prototype.leave = (o) -> # your new leave animation
window.customElements.define("ceri-dropdown", CEDD)

# single instance
# get a ref to your instance of ceri-dropdown somehow
# then overwrite the animations directly
ceDD.enter = (o) -> # your new enter animation
ceDD.leave = (o) -> # your new leave animation

Development

Clone repository.

npm install
npm run dev

Browse to http://localhost:8080/.

Notable changes

0.2.0

  • use ceri-materialize@2

License

Copyright (c) 2017 Paul Pflugradt Licensed under the MIT license.

Keywords

dropdown

FAQs

Package last updated on 07 Sep 2017

Did you know?

Socket

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