1.0.1 • Published 4 years ago

react-shapeless-dropdown v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

react-shapeless-dropdown

React dropdown component that can be opened and closed by clicking on an adjustable via props button. Dropdown can show any kind of text or another component.

Screenshot

Installation

npm install react-shapeless-dropdown

API

PropertyTypeDefaultDescription
buttonany'Menu'"Toggle" button text or component. Always visible.
closeOnScrollbooleantrueWhen true, scrolling will close the dropdown box.
closeOnActionbooleantrueWhen true, click on nested component or keyboard "Enter" will close the dropdown box.
boxGapnumber10Gap between "toggle" element and dropdown box.
boxHeightnumber250Limits dropdown box height.
boxPositionstring'auto'Can be "auto", "top" or "bottom". "auto" adjusts dropdown box to fit on the page.
onDropdownOpenfunction() =>{}Fires when user opens dropdown.
onDropdownClosefunction() => {}Fires when user closes dropdown.
focusRefobjectnullReference to the element that should be focused when dropdown is opened.
boxStyleobjectnullMerged with dropdown box style.
arrowStyleobjectnullMerged with up-down arrow style.
crossStyleobjectnullMerged with closing cross style.

Usage

import React, {Component} from 'react';
import {Dropdown} from 'react-shapeless-dropdown';

export default class App extends Component {
    render() {
        const button = ({text}) => (<div>{`>>${text}<<`}</div>);
        return (
            <Dropdown button={button({text: 'Menu'})}>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
                labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
                laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
                voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
                non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
            </Dropdown>
        );
    }
}

License

Copyright (c) 2019 Aleksandr Novikov. License.

1.0.1

4 years ago

1.0.0

5 years ago