JSPM

@instructure/ui-select

8.2.2-snapshot.11+bcafe9938
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2123
  • Score
    100M100P100Q139513F
  • License MIT

A component for select and autocomplete behavior.

Package Exports

  • @instructure/ui-select
  • @instructure/ui-select/es/Select/SelectLocator
  • @instructure/ui-select/lib/Select
  • @instructure/ui-select/lib/Select/SelectLocator

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@instructure/ui-select) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme


category: packages

ui-select

npm  build-status  MIT License  Code of Conduct

A component for select and autocomplete behavior.

Components

The ui-select package contains the following:

Installation

yarn add @instructure/ui-select

Usage

import React from 'react'
import { Select } from '@instructure/ui-select'

const MySelect = () => {
  return (
    <Select>
      <Select.Option>Option one</Select.Option>
      <Select.Option>Option two</Select.Option>
    </Select>
  )
}

For detailed usage and documentation, see Select examples.