JSPM

@instructure/ui-forms

6.16.1-rc.35+f1e0c295f
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 941
  • Score
    100M100P100Q12166F
  • License MIT

A UI component library made by Instructure Inc.

Package Exports

  • @instructure/ui-forms
  • @instructure/ui-forms/es/Select/SelectOptionsList
  • @instructure/ui-forms/lib/Checkbox
  • @instructure/ui-forms/lib/FileDrop
  • @instructure/ui-forms/lib/RadioInput
  • @instructure/ui-forms/lib/RadioInputGroup
  • @instructure/ui-forms/lib/Select
  • @instructure/ui-forms/lib/Select/SelectOptionsList
  • @instructure/ui-forms/lib/TextArea

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-forms) 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-forms

npm  build-status  MIT License  Code of Conduct

Components

The ui-forms package contains the following components:

Deprecated components

The following components have been deprecated and will be removed from the ui-forms package:

Codemods are provided to assist in updating the packages. See ui-codemods

Installation

yarn add @instructure/ui-forms

Usage

import React from 'react'
import { TextInput } from '@instructure/ui-forms'

const MyTextInput = () => {
  return (
    <TextInput label="Name" placeholder="Doe, John Doe" />
  )
}