vue-dropd
v1.1.4-alpha.0
Published
⚡️Zero-dependency minimalistic dropdown for Vue.
Downloads
13
Maintainers
Readme
✨ Pros:
- 📦 ~3kb (gzipped)
- 🙅♂️ Zero dependencies
- 📱Supports touch devices
- ⚒ CommonJS and ES Modules support
- ✅ Optimized for Accessibilty
- 🌈 Easy to customize
- 🦄 Optimized for performance
- 💅 More-reliant on CSS over JavaScript
🔧 Installation
$ npm install vue-dropd --save
📖 Usage
Register the component
import Vue from 'vue'
import Dropd from 'vue-dropd'
Vue.component('dropd', Dropd)
Now, you can use it anywhere, so, like:
<dropd
placeholder="Choose an ice cream topping"
@open="(list, event) => console.log(list, event)"
:list="['Caramel', 'Peanut butter', 'Sundae', 'Oreos']"
></dropd>
Props
list: {Array}
Default: []
Description: An array of strings or objects to be used as dropdown items. If
you are using an array of objects, ensure you have a label
key. e.g
[{label: 'Caramel', value: 'caramel'}])
.
closeOnBlur: {Boolean}
Default: true
Description: Specifies whether the dropdown should be closed when the user clicks away.
defaultOpen: {Boolean}
Default: false
Description: Specifies whether the dropdown should be open by default (i.e when the component is created).
value: {String|Object}
Default: null
Description: Specifies the currently selected item. value
can be from
list
or manually set.
placeholder: {String|Object}
Default: Please select an item
Description: Specifies a placeholder for the dropdown. Very similar to the
placeholder
attribute on html inputs.
revealOn: {mousedown|mouseover}
Note: Not implemented yet.
Default: mousedown
Description: Specifies what event should trigger opening and closing the dropdown.
Events
open: {(list, event)}
list
: The list that was received via props.
event
: If triggered by #1 condition below, null
... If triggered by #2
MouseEvent
... and if triggered by #3, FocusEvent
This event is only emitted when:
defaultOpen
is set totrue
. Note thatevent
here would be set tonull
since the dropdown was programatically opened.- A mouse down event is fired on the toggle button when the dropdown is closed.
- The toggle button is focused via navigation with the
tab
key.
item-change: {(currentItem, event)}
currentItem
: The new item that was selected from the list.
event
: The MouseEvent
of the element when clicked.
This event is only emitted when an item in the dropdown list is clicked.
👀 Examples
👷 Contributing
Please see Projects for a list of things to do.
- Fork this repo and clone on your machine
- Navigate to the main folder,
dropd
- Create a new branch using the format,
feature/feature-name
- Run
yarn install -W
to install all of the dependencies in the workspace - Use
yarn dev:vue
to monitor the changes you make in/packages/vue-dropd
and concurrently re-build or - Use
yarn build:vue
to compilepackages/vue-dropd/index.vue
(showsbundlesize
info too)
🔗 See Also
🤝 License
MIT © Olaolu Olawuyi