npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@optix/vue-select

v0.0.7

Published

Enhanced select component for Vue.js, unlike other select components Vue Select will not manipulate the options you provide to it, instead we emit events allowing you to perform all the filtering, loading or whatever else you might want to do yourself.

Downloads

21

Readme

Vue Select

Enhanced select component for Vue.js, unlike other select components Vue Select will not manipulate the options you provide to it, instead we emit events allowing you to perform all the filtering, loading or whatever else you might want to do yourself.

Features

  • No dependencies
  • v-model support
  • Single select
  • Multiple select
  • Infinite loading on scroll with throttling
  • Searchable with debounce
  • Configurable
  • Themeable

Install

yarn add @optix/vue-select

Setup

import Vue from 'vue';
import VueSelect from '@optix/vue-select';

import '@optix/vue-select/dist/vue-select.min.css';

Vue.use(VueSelect, /* { options } */);

Basic usage

<template>
    <vue-select
        v-model="value"
        :options="options"
    />
</template>

<script>
export default {
    data() {
        return {
            value: null,

            options: [
                {
                    value: 1,
                    label: 'Option One',
                },
                {
                    value: 2,
                    label: 'Option Two',
                    disabled: true,
                }
                // ...
            ],
        };
    };
};
</script>

Options

Props

| Name | Type | Default Value | Description | | :--- | :--- | :------------ | :---------- | | value | Array\|\|Number\|\|String | null | Selects the given options | | options | Array | [] | An array of objects | | option-identifier | String | 'value' | Name of the identifier used within the options Object | | option-label | String | 'label' | Name of the label used within the options Object, this will be visible in the dropdown | | id | String | null | Applied to the underlying input | | loading | Boolean | false | Show / hide the loading indicator | | loading-more | Boolean | false | Show / hide loading indicator when scrolled to bottom of options list | | multiple | Boolean | false | Allows multiple options to be selected | | searchable | Boolean | true | Show / hide search input | | placeholder | String | 'Please select...' | Default placeholder text on select element | | disabled | Boolean | false | Enable / disable select | | open-direction | String | 'auto' | Fix opening direction, options: 'auto'\|\|'down'\|\|'up' | | close-on-select | Boolean | null | Enable opening / closing after selecting an option | | search-debounce-delay | Number | 150 | Delay in milliseconds after user finishes typing and @search-change is fired | | scroll-throttle-delay | Number | 150 | Delay in milliseconds between firing scroll events | | load-more-threshold | Number | 60 | Distance in px from bottom of options dropdown before @load-more is fired. | | no-options-message | String | 'No options found.' | Message shown when no options are provided |

Events

| Event | Payload | Description | | :---- | :--------- | :---------- | | @input | (options) | Fires when the value changes | | @change | null | Fires when an option is selected or deselected | | @select | (option) | Fires when an option is selected | | @deselect | (option) | Fires when an option is deselected | | @search-change | (searchQuery) | Fires when the search query changes | | @load-more | null | Fires when the load-more-threshold of the dropdown has been scrolled past |

Slots

Dropdown Option

Name: dropdown-option Description: Custom option template

Slot-scope:

  • option - Object of the current option
  • classes - Object containing 3 classes
{
    focused: false,
    selected: false,
    disabled: false,
}
<template #dropdown-option="{ option, classes }">
    <div class="vs-dropdown-option" :class="classes">
        {{ option.label }}
    </div>
</template>

Dropdown Loader

Name: dropdown-loader Description: Shows when no options are passed into the select

Default: Loading...

<template #dropdown-loader>
    <div class="vs-dropdown-loader">
        Loading...
    </div>
</template>

TODOs

  • Write tests
  • Working examples
  • Example on styling
  • Ability to add new options via component

License

The MIT License (MIT). Please see License File for more information.