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

can-search-select

v0.3.0

Published

Dropdown select component with a search option

Downloads

3

Readme

can-search-select

Build Status

CanJS component for a dropdown select with a search

Demo

To try out the demo open demo.html file in browser.

Example

Your page template can look like this:

<can-import from="can-search-select" />
<can-search-select {items}="items"
                   filter-prop-name="companyName"
                   {format}="@format"
                   {format-input}="@formatInput"
                   {^selected-item}="selectedItem" />

Your view model can look like this:

const vm = new DefineMap({
  selectedItem: null,
  items: [{
    companyName: 'Alphabet',
    issuanceName: 'Preferred Series A',
    price: '1,494'
  }],
  format (item) {
    return item.companyName + ', ' + item.issuanceName + ', price: ' + item.price;
  },
  formatInput (item) {
    return item.companyName;
  }
})

There is also a simple dropdown select without a search:

<can-import from="can-search-select/can-select" />
<can-select {items}="items"
            display-prop-name="companyName"
            {^selected-item}="selectedItem" />

API

can-search-select

Main props:

  • items, a list of source items;
  • selected-item, the selected item, can also be used for preselection;
  • filter-prop-name, string, a property name to search against;
  • format, a function that receives the selected item and returns a value for rendering in the input, default will use filterPropName or the item itself;
  • format-input, a function to format the input field value.

Customization options:

  • placeholder-search, default Enter to Search...;
  • placeholder-select, default Choose From the List;
  • btnClass, default caret (for TwBootstrap caret).

can-select

Simple dropdown select:

  • items, a list of source items;
  • selected-item, the selected item, can also be used for preselection;
  • filter-prop-name, string, a property name to use for displaying.

Usage

ES6 use

With StealJS, you can import this module directly in a template that is autorendered:

import 'can-search-select';

CommonJS use

Use require to load can-search-select and everything else needed to create a template that uses can-search-select:

require("can-search-select");

Standalone use

Load the global version of the plugin:

<script src='./node_modules/can-search-select/dist/global/can-search-select.js'></script>

Release Notes

  • 0.3.0:
    • added a simple dropdown select (w/o search) can-select component.
  • 0.2.2:
    • added format-input param.
  • 0.2.1:
    • styled dropdown list;
    • use selectedItem for preselection.
  • 0.2.0:
    • finalized main params and customization options.