JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q72216F
  • License UNLICENSED

HeyCar-UIKit Dropdown

Package Exports

  • @heycar-uikit/dropdown
  • @heycar-uikit/dropdown/dist/esm/index.js
  • @heycar-uikit/dropdown/dist/index.js

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 (@heycar-uikit/dropdown) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

HeyCar-UIKit - Dropdown

Tests Coverage Status Demo build Commitizen friendly

The Dropdown components use element is most often used in a form, to collect user input.

Installation

To install and save in your package.json dependencies, run the command below using npm:

npm install @heycar-uikit/dropdown

Usage

import Dropdown from '@heycar-uikit/dropdown';

function App() {
  return (
    <div>
      <Dropdown id="marque" labelFor="marque" label="Marque label">
        <option value="Marque">Marque</option>
        <option value="saab">Saab</option>
        <option value="opel">Opel</option>
        <option value="audi">Audi</option>
      </Dropdown>
    </div>
  );
}

Documentation and sandbox

Storybook documentation and sandbox