@@ -79,11 +79,11 @@ import { Pagination, Tabs, Checkbox } from './MyDumbComponents'
7979| ** \< Set>** | ` { initial, onChange } ` | ` { values, add, clear, remove, has } ` | [ :point_down : ] ( #set ) [ :books : ] ( docs/components/Set.md ) |
8080| ** \< 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 } ` | ` { hovered , bind } ` | [ :point_down : ] ( #hover ) [ :books : ] ( docs/components/Hover.md ) |
83+ | ** \< Active>** | ` { onChange } ` | ` { active , bind } ` | [ :point_down : ] ( #active ) [ :books : ] ( docs/components/Active.md ) |
84+ | ** \< Focus>** | ` { onChange } ` | ` { focused , bind } ` | [ :point_down : ] ( #focus ) [ :books : ] ( docs/components/Focus.md ) |
85+ | ** \< Touch>** | ` { onChange } ` | ` { touched , bind } ` | [ :point_down : ] ( #touch ) [ :books : ] ( docs/components/Touch.md ) |
86+ | ** \< FocusManager>** | ` { onChange } ` | ` { focused , blur, bind } ` | [ :point_down : ] ( #focusmanager ) [ :books : ] ( docs/components/FocusManager.md ) |
8787| <h6 >FORM CONTAINERS</h6 > |
8888| ** \< Input>** | ` { initial, onChange } ` | ` { set, value, bind } ` | [ :point_down : ] ( #input ) [ :books : ] ( docs/components/Input.md ) |
8989| ** \< Form>** | ` { initial, onChange } ` | ` { input, values } ` | [ :point_down : ] ( #form ) [ :books : ] ( docs/components/Form.md ) |
@@ -209,9 +209,9 @@ import { Pagination, Tabs, Checkbox } from './MyDumbComponents'
209209
210210` ` ` jsx
211211< Hover>
212- {({ isHovered , bind }) => (
212+ {({ hovered , bind }) => (
213213 < div {... bind}>
214- You are {isHovered ? ' hovering' : ' not hovering' } this div.
214+ You are {hovered ? ' hovering' : ' not hovering' } this div.
215215 < / div>
216216 )}
217217< / Hover>
@@ -221,9 +221,9 @@ import { Pagination, Tabs, Checkbox } from './MyDumbComponents'
221221
222222` ` ` jsx
223223< Active>
224- {({ isActive , bind }) => (
224+ {({ active , bind }) => (
225225 < div {... bind}>
226- You are {isActive ? ' clicking' : ' not clicking' } this div.
226+ You are {active ? ' clicking' : ' not clicking' } this div.
227227 < / div>
228228 )}
229229< / Active>
@@ -233,9 +233,9 @@ import { Pagination, Tabs, Checkbox } from './MyDumbComponents'
233233
234234` ` ` jsx
235235< Touch >
236- {({ isTouched , bind }) => (
236+ {({ touched , bind }) => (
237237 < div {... bind}>
238- You are {isTouched ? ' touching' : ' not touching' } this div.
238+ You are {touched ? ' touching' : ' not touching' } this div.
239239 < / div>
240240 )}
241241< / Touch >
@@ -245,10 +245,10 @@ import { Pagination, Tabs, Checkbox } from './MyDumbComponents'
245245
246246` ` ` jsx
247247< Focus>
248- {({ isFocused , bind }) => (
248+ {({ focused , bind }) => (
249249 < div>
250250 < input {... bind} placeholder= " Focus me" / >
251- < div> You are {isFocused ? ' focusing' : ' not focusing' } input.< / div>
251+ < div> You are {focused ? ' focusing' : ' not focusing' } input.< / div>
252252 < / div>
253253 )}
254254< / Focus>
0 commit comments