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

@financial-times/o-multi-select

v2.2.6

Published

Multi select component

Downloads

7,512

Readme

o-multi-select

An Origami component for selecting multiple options.

Usage

Check out how to include Origami components in your project to get started with o-multi-select.

Markup

o-multi-select expects options to be provided in a <select> tag. The component will automatically enhance the experience for users with JavaScript enabled.

The value must not contain whitespace characters, as it should be valid as an id attribute

<div class="o-multi-select" data-o-component="o-multi-select">
	<select name="multiple" id="fruits" multiple>
		<option value="Apple">Apple</option>
		<option value="Banana">Banana</option>
		<!--More options -->
	</select>
</div>

To style form labels, we recommend using o-forms.

Below is an example of how to combine o-forms and o-multi-select components together. Note the label and select element are connected using for and id attributes.

<form data-o-component="o-forms">
	<label for="fruits" class="o-forms-field">
		<span class="o-forms-title">
			<span class="o-forms-title__main">Select multiple options</span>
		</span>
	</label>
	<div class="o-forms-input">
		<div class="o-multi-select" data-o-component="o-multi-select">
			<select name="multiple" id="fruits" multiple>
				<option value="Apple">Apple</option>
				<option value="Banana">Banana</option>
				<!--More options -->
			</select>
		</div>
	</div>
</form>

Using TSX templates

If you are using TSX templates we recommend that you also import GenericInput and Form from o-forms. This will style labels and options for your TSX component. And you will also need to initialise component javascript in correct lifecycle of your competent. Bellow is an example for react users.

import {Form, GenericInput} from '@financial-times/o-forms/src/tsx/Form';
import {MultiSelect} from '@financial-times/o-multi-select/src/tsx/multi-select';

export const MultiSelectDefault = args => {
	return (
		<Form>
			<GenericInput id={args.id} title={args.title}>
				<MultiSelect {...args} />
			</GenericInput>
		</Form>
	);
};

Sass

Use @include oMultiSelect() to include styles for all o-multi-select features.

@import '@financial-times/o-multi-select';

@include oMultiSelect();

JavaScript

JavaScript is initialised automatically for Origami Build Service users.

If your project is using a manual build process, initialise o-multi-select manually. For example call the init method to initialise all o-multi-select instances in the document:

import oMultiSelect from 'o-multi-select';
oMultiSelect.init();

Or pass an element to initialise a specific o-multi-select instance:

import oMultiSelect from 'o-multi-select';
const oMultiSelectElement = document.getElementById(
	'#my-o-multi-select-element'
);
oMultiSelect.init(oMultiSelectElement);

Events

o-multi-select dispatches a custom event oMultiSelect.OptionChange that bubbles. It is triggered when an option gets selected or removed. The event data has the following interface:

detail: {
  optionElement: HTMLelement, // The elements that was selected or deselected
  value: string, // Value of selected/deselected option
  selected: boolean, // If element is selected or not
  index: number, // Index of option in the array of options
  instance, // Instance of multiselect element
}

Keyboard Support

When focus is within the combobox input and the suggestions menu is closed

| Key | Function | | ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------- | | Enter, Space, Up Arrow or Down Arrow | All these keys will expand the suggestions menu, and focus will be on the first option, or the most recently highlighted option. |

When focus is within the suggestions menu

| Key | Function | | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | Enter | Selects content of the focused option in the suggestions menu.Prevents form submission.Creates selected option as button with remove icon. | | Space | Selects content of the focused option in the suggestions menu.Creates selected option as button with remove icon. | | Tab | Closes the suggestions menu.Focus moves to next focusable element | | Up Arrow | moves focus to the previous option, if one exists. If focus is already on the first option, it will not move. | | Down Arrow | moves focus to the next option, if one exists. If focus is already on the last option, it will not move. | | PageUp | Jumps visual focus up 10 options (or to first option). | | PageDown | Jumps visual focus down 10 options (or to last option). | | Home/End | moves focus to the first or last option. | | Escape | Returns focus to the combobox element closes the dropdown without modifying the selected options. |

Migration

| State | Major Version | Last Minor Release | Migration guide | | :----------: | :-----------: | :----------------: | :---------------------------------------------------: | | ✨ active | 2 | 2.0 | migrate to v2 | | ⚠ maintained | 1 | 1.0 | N/A |

Contact

If you have any questions or comments about this component, or need help using it, please either raise an issue, visit #origami-support or email [email protected].

Licence

This software is published by the Financial Times under the MIT licence.