JSPM

@instructure/ui-dialog

11.2.1-snapshot-9
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2816
  • Score
    100M100P100Q150193F
  • License MIT

A utility component for managing keyboard accessibility and screen reader behavior

Package Exports

  • @instructure/ui-dialog
  • @instructure/ui-dialog/es/index.js
  • @instructure/ui-dialog/lib/Dialog
  • @instructure/ui-dialog/lib/Dialog/index.js
  • @instructure/ui-dialog/lib/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 (@instructure/ui-dialog) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ui-dialog

npm MIT License Code of Conduct

A utility component for managing keyboard accessibility and screen reader behavior.

Components

The ui-dialog package contains the following:

Installation

npm install @instructure/ui-dialog

Usage

import React from 'react'
import { Dialog } from '@instructure/ui-dialog'

const MyDialog = () => {
  return <Dialog open={this.state.open}>Hello world</Dialog>
}