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

raven-multiselect

v0.2.1

Published

An Angular component for selecting multiple values from a list.

Downloads

18

Readme

Raven Multiselect for Angular 6+

An Angular component for selecting multiple values from a list.

demo

Features

  • Add values not present in the list
  • Filter the list as you type
  • Keyboard/touch accessible
  • Compatible with template driven and reactive forms
  • Easily styled with CSS variables

Installation

Install into your Angular project using NPM.

npm install raven-multiselect --save

Import the MultiselectModule into your module, and import the FormsModule or ReactiveFormsModule depending on which you'll be using (FormsModule is used for these examples).

import { MultiselectModule } from 'raven-multiselect';
import { FormsModule } from '@angular/forms';
// ...

@NgModule({
  imports: [
    MultiselectModule,
    FormsModule
    // ...
  ],
  // ...
})
export class AppModule { }

Usage

Add a <raven-multiselect> element to your template, and use <option> tags to create text/values for the multiselect list.

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  template: `
    <raven-multiselect [(ngModel)]="selectedValues"
                       [enableCustomValues]="true"
                       placeholder="Type or select a color">
      <option value="red">Red</option>
      <option value="green">Green</option>
      <option value="blue">Blue</option>
      <option value="yellow">Yellow</option>
    </raven-multiselect>`,
  styles: []
})
export class AppComponent {
  selectedValues = 'red,blue';
}

Options

| Option | Type | Description | Default Value
| :----------------- | :------ | :------------------------------------- | :------------------- | icons | object | Provide custom SVG icons. | Default SVG icons | enableCustomValues | boolean | Allows user to type in a custom value. | false | placeholder | string | Placeholder text for text box. | Type and press Enter

How to Use Custom Icons

To use custom icons, you will need to pass strings of SVG content (including the <svg> tags) to the icons parameter. For example:

@Component({
  selector: 'app-root',
  template: `
  <raven-multiselect formControlName="color" [icons]="icons">
    <option value="1">Option 1</option>
    <!-- ... -->
  </raven-multiselect>`,
  // ...
})
export class AppComponent implements OnInit {
  icons: any;
  // ...

  constructor() {
    // Use custom icons
    this.icons = {
      arrowDown: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"></path></svg>',
      close: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"></path></svg>'
    };
  }

  // ...
}

Styling

CSS variables are used for styling. Example:

raven-multiselect {
  --rms-choice-color-text: #222;
  --rms-choice-color-bg: #eee;
}

Available CSS Variables

| Variable | Description | Default Value | :--------------------------- | :------------------------------------------------------------------------- | :------------ | --rms-control-height | Height of the main box. | 4rem | --rms-control-space-multiplier | Affects the amount of padding applied (use 0.5 – 1.5 for best results). | 1 | --rms-control-color-text | Text color of the box. | #555 | --rms-control-color-bg | Background color of the box. | #fff | --rms-control-color-border | Border color of the box. | #ccc | --rms-control-border-radius | Border radius for the box. | 0 | --rms-choice-color-text | Text color of selected values. | #fff | --rms-choice-color-bg | Background color of selected values. | #333 | --rms-choice-color-border | Border color of selected values. | #333 | --rms-choice-border-radius | Border radius for selected values. | 0 | --rms-dropdown-color-text | Text color of drop-down box. | #000 | --rms-dropdown-color-bg | Background color of drop-down box. | #fff | --rms-dropdown-color-border | Border color of drop-down box. | #ccc | --rms-dropdown-border-radius | Border radius for drop-down box. | 0 | --rms-dropdown-color-hover | Background color of hover/focused items. | #eee

Development

To contribute to the development of this component, clone this repository and run npm install. Then run ng serve -o to start a development server and to open a sample page in your browser.

License

MIT license.