Skip to content

Commit b334588

Browse files
committed
fix readme component's table
1 parent 250b172 commit b334588

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

README.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -68,29 +68,28 @@ import { Pagination, Tabs, Checkbox } from './MyDumbComponents'
6868
> **_Note_** _This is a kind of a cheat sheet for fast search._
6969
> _If you want a more detailed **API Reference** and examples for each component see [full docs](/docs)_
7070
71-
| Component | Component Props | Render Props | |
72-
| ---------------------------- | ----------------------- | ---------------------------------------------- | ------------------------------------------------------------------------ |
71+
| Component | Component Props | Render Props | |
72+
| ---------------------------- | ----------------------- | ---------------------------------------------- | --------------------------------------------------------------------------- |
7373
| <h6>STATE CONTAINERS</h6> |
74-
| **\<State>** | `{ initial, onChange }` | `{ state, setState }` | [:point_down:](#state) [:books:](docs/components/State.md) |
75-
| **\<Toggle>** | `{ initial, onChange }` | `{ on, toggle, set }` | [:point_down:](#toggle) [:books:](docs/components/Toggle.md) |
76-
| **\<Counter>** | `{ initial, onChange }` | `{count, inc, dec, incBy, decBy, set }` | [:point_down:](#counter) [:books:](docs/components/Counter.md) |
77-
| **\<Value>** | `{ initial, onChange }` | `{ value, setValue, set }` | [:point_down:](#value) [:books:](docs/components/Value.md) |
78-
| **\<Map>** | `{ initial, onChange }` | `{ set, get, over, values }` | [:point_down:](#map) [:books:](docs/components/Map.md) |
79-
| **\<Set>** | `{ initial, onChange }` | `{ values, add, clear, remove, has }` | [:point_down:](#set) [:books:](docs/components/Set.md) |
80-
| **\<List>** | `{ initial, onChange }` | `{ list, first, last, push, pull, sort, set }` | [:point_down:](#list) [:books:](docs/components/List.md) |
74+
| **\<State>** | `{ initial, onChange }` | `{ state, setState }` | [:point_down:](#state) [:books:](docs/components/State.md) |
75+
| **\<Toggle>** | `{ initial, onChange }` | `{ on, toggle, set }` | [:point_down:](#toggle) [:books:](docs/components/Toggle.md) |
76+
| **\<Counter>** | `{ initial, onChange }` | `{ count, inc, dec, incBy, decBy, set }` | [:point_down:](#counter) [:books:](docs/components/Counter.md) |
77+
| **\<Value>** | `{ initial, onChange }` | `{ value, setValue, set }` | [:point_down:](#value) [:books:](docs/components/Value.md) |
78+
| **\<Map>** | `{ initial, onChange }` | `{ set, get, over, values }` | [:point_down:](#map) [:books:](docs/components/Map.md) |
79+
| **\<Set>** | `{ initial, onChange }` | `{ values, add, clear, remove, has }` | [:point_down:](#set) [:books:](docs/components/Set.md) |
80+
| **\<List>** | `{ initial, onChange }` | `{ list, first, last, push, pull, sort, set }` | [:point_down:](#list) [:books:](docs/components/List.md) |
8181
| <h6>FEEDBACK CONTAINERS</h6> |
82-
| **\<Hover>** | `{ onChange }` | `{ isHovered, bind }` | [:point_down:](#hover) [:books:](docs/components/Hover.md) |
83-
| **\<Active>** | `{ onChange }` | `{ isActive, bind }` | [:point_down:](#active) [:books:](docs/components/Active.md) |
84-
| **\<Focus>** | `{ onChange }` | `{ isFocused, bind }` | [:point_down:](#focus) [:books:](docs/components/Focus.md) |
85-
| **\<Touch>** | `{ onChange }` | `{ isTouched, bind }` | [:point_down:](#touch) [:books:](docs/components/Touch.md) |
86-
| **\<FocusManager>** | `{ onChange }` | `{ isFocused, blur, bind }` | [:point_down:](#focusmanager) [:books:](docs/components/FocusManager.md) |
82+
| **\<Hover>** | `{ onChange }` | `{ isHovered, bind }` | [:point_down:](#hover) [:books:](docs/components/Hover.md) |
83+
| **\<Active>** | `{ onChange }` | `{ isActive, bind }` | [:point_down:](#active) [:books:](docs/components/Active.md) |
84+
| **\<Focus>** | `{ onChange }` | `{ isFocused, bind }` | [:point_down:](#focus) [:books:](docs/components/Focus.md) |
85+
| **\<Touch>** | `{ onChange }` | `{ isTouched, bind }` | [:point_down:](#touch) [:books:](docs/components/Touch.md) |
86+
| **\<FocusManager>** | `{ onChange }` | `{ isFocused, blur, bind }` | [:point_down:](#focusmanager) [:books:](docs/components/FocusManager.md) |
8787
| <h6>FORM CONTAINERS</h6> |
88-
| **\<Input>** | `{ initial, onChange }` | `{ set, value, bind }` | [:point_down:](#input) [:books:](docs/components/Input.md) |
89-
| **\<Form>** | `{ initial, onChange }` | `{ input, values }` | [:point_down:](#form) [:books:](docs/components/Form.md) |
88+
| **\<Input>** | `{ initial, onChange }` | `{ set, value, bind }` | [:point_down:](#input) [:books:](docs/components/Input.md) |
89+
| **\<Form>** | `{ initial, onChange }` | `{ input, values }` | [:point_down:](#form) [:books:](docs/components/Form.md) |
9090
| <h6>OTHER</h6> |
91-
| (docs/components/Compose.md) |
92-
| **\<Interval>** | `{ delay }` | `{ stop, start, toggle }` | [:point_down:](#interval) [:books:](docs/components/Interval.md) |
93-
| **\<Compose>** | `{ components }` | _depends on components prop_ | [:point_down:](#composing-components) [:books:] |
91+
| **\<Interval>** | `{ delay }` | `{ stop, start, toggle }` | [:point_down:](#interval) [:books:](docs/components/Interval.md) |
92+
| **\<Compose>** | `{ components }` | _depends on components prop_ | [:point_down:](#composing-components) [:books:](docs/components/Compose.md) |
9493

9594
## Utilities
9695

@@ -284,8 +283,8 @@ import { Pagination, Tabs, Checkbox } from './MyDumbComponents'
284283
<Submit>Send</Submit>
285284

286285
{/*
287-
input(id) => { bind, set, value }
288-
*/}
286+
input(id) => { bind, set, value }
287+
*/}
289288
</form>
290289
)}
291290
</Form>

0 commit comments

Comments
 (0)