Skip to content

Commit

Permalink
Merge pull request #3 from mynamesleon/autocomplete
Browse files Browse the repository at this point in the history
AutoComplete work
  • Loading branch information
mynamesleon authored Dec 29, 2023
2 parents bb980d8 + a326b52 commit 2596381
Show file tree
Hide file tree
Showing 24 changed files with 2,276 additions and 856 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: '20.x'

- name: Install dependencies
run: npm ci
run: npm install

- name: Run jest tests
run: npm run test:coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
node-version: '20.x'

- name: Install dependencies
run: npm ci
run: npm install

- name: Build storybook
run: npm run storybook:build
Expand Down
25 changes: 20 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# rea11y-easy-form (IN PROGRESS!)
# rea11y-easy-form

[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![NPM version](https://img.shields.io/npm/v/rea11y-easy-form.svg)](http://npm.im/rea11y-easy-form)
[![Types](https://flat.badgen.net/npm/types/rea11y-easy-form)](https://www.npmjs.com/package/rea11y-easy-form)
[![Tree Shaking](https://flat.badgen.net/bundlephobia/tree-shaking/rea11y-easy-form)](https://bundlephobia.com/result?p=rea11y-easy-form)
![License: MIT](https://img.shields.io/npm/l/rea11y-easy-form)
![NPM version](https://img.shields.io/npm/v/rea11y-easy-form.svg)
![Types](https://img.shields.io/npm/types/rea11y-easy-form)
![Tree Shaking](https://flat.badgen.net/bundlephobia/tree-shaking/rea11y-easy-form)

![React](https://img.shields.io/badge/React-%2320232a.svg?logo=React&logoColor=%2361DAFB)
![React Final Form](https://img.shields.io/badge/React%20Final%20Form-%23333639.svg?logo=react&logoColor=white)

The (hopefully!) easiest way to build highly performant and accessible forms in React.

Expand All @@ -20,6 +23,18 @@ With a number of built-in components developed for accessibility, and the abilit

[View the components and docs in Storybook](https://mynamesleon.github.io/rea11y-easy-form/).

## Install

`react-final-form` and `final-form` are required peer dependencies for all of the core functionality.

```shell
npm install rea11y-easy-form react-final-form final-form
# or
yarn add rea11y-easy-form react-final-form final-form
```

Certain components require additional peer dependencies as well. They are only needed if you plan to use those components though.

## Development

### Testing
Expand Down
Loading

0 comments on commit 2596381

Please sign in to comment.