JSPM

@jmoxey/reakit

0.16.0-beta.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 53
  • Score
    100M100P100Q53317F
  • License MIT

Toolkit for building really interactive UIs with React

Package Exports

  • @jmoxey/reakit
  • @jmoxey/reakit/Avatar
  • @jmoxey/reakit/Backdrop
  • @jmoxey/reakit/Block
  • @jmoxey/reakit/Blockquote
  • @jmoxey/reakit/Box
  • @jmoxey/reakit/Button
  • @jmoxey/reakit/Code
  • @jmoxey/reakit/Divider
  • @jmoxey/reakit/Field
  • @jmoxey/reakit/Flex
  • @jmoxey/reakit/Grid
  • @jmoxey/reakit/Group
  • @jmoxey/reakit/Heading
  • @jmoxey/reakit/Image
  • @jmoxey/reakit/Inline
  • @jmoxey/reakit/InlineBlock
  • @jmoxey/reakit/InlineFlex
  • @jmoxey/reakit/Input
  • @jmoxey/reakit/Label
  • @jmoxey/reakit/Link
  • @jmoxey/reakit/List
  • @jmoxey/reakit/Navigation
  • @jmoxey/reakit/Overlay
  • @jmoxey/reakit/Paragraph
  • @jmoxey/reakit/Popover
  • @jmoxey/reakit/Portal
  • @jmoxey/reakit/Provider
  • @jmoxey/reakit/Tabs
  • @jmoxey/reakit/Tooltip
  • @jmoxey/reakit/use

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

Readme



reakit


Toolkit for building composable, accessible and reliable UIs with React.


๐ŸŒŽ Website   ยท   ๐Ÿ“š Guide   ยท   ๐Ÿ— Components


NPM version Build Status Coverage Status Backers Sponsors Spectrum Slack

Installation

npm i reakit

Thanks to @nosebit for the package name on npm.

Example


See and edit full source code on CodeSandbox

import React from "react";
import { render } from "react-dom";
import { Button, Popover } from "reakit";

const App = () => (
  <Popover.Container>
    {popover => (
      <Button use={Popover.Toggle} {...popover}>
        Toggle
        <Popover {...popover}>
          <Popover.Arrow />
          Popover
        </Popover>
      </Button>
    )}
  </Popover.Container>
);

render(<App />, document.getElementById("root"));

Contributors

This project exists thanks to all the people who contribute.

Supporters

By donating $5 or more you help in the development of this project. Thank you to all our supporters! ๐Ÿ™

License

MIT ยฉ Diego Haz