react-simple-formkit 2.1.5 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -194,7 +194,7 @@ State updates only when observed via `watch()`, `useWatch()`, `subscribe()`, or
|
|
|
194
194
|
- `onChange` is just a handler callback that is called when field values change.
|
|
195
195
|
- `onBlur` is just a handler callback that is called when field blurred.
|
|
196
196
|
|
|
197
|
-
> **Rule\*:** onBlur works for uncontrolled fields
|
|
197
|
+
> **Rule\*:** By default, onBlur works automatically for uncontrolled fields. However, for controlled fields, you must explicitly pass the onBlur prop when rendering the field. For captured fields, use actions.triggerFieldBlur(fieldName) to manually trigger the onBlur event.
|
|
198
198
|
|
|
199
199
|
### The Power of watch (Unified Observation)
|
|
200
200
|
|
|
@@ -416,7 +416,7 @@ Generic props:
|
|
|
416
416
|
- `defaultValue`
|
|
417
417
|
- `render({name, value, onChange, onBlur, customState, setCustomState})`
|
|
418
418
|
|
|
419
|
-
## useController
|
|
419
|
+
## useController
|
|
420
420
|
|
|
421
421
|
Generic props:
|
|
422
422
|
|
|
@@ -425,7 +425,7 @@ Generic props:
|
|
|
425
425
|
|
|
426
426
|
Return: everything in render function above
|
|
427
427
|
|
|
428
|
-
## useWatch
|
|
428
|
+
## useWatch
|
|
429
429
|
|
|
430
430
|
[Example](#manage-values)
|
|
431
431
|
|
|
@@ -441,14 +441,14 @@ Return:
|
|
|
441
441
|
- if name is array: object of values of the fields
|
|
442
442
|
- if name is undefined: object of all input values
|
|
443
443
|
|
|
444
|
-
## useFormContext
|
|
444
|
+
## useFormContext
|
|
445
445
|
|
|
446
446
|
Return:
|
|
447
447
|
|
|
448
448
|
- `watch`
|
|
449
449
|
- `actions`
|
|
450
450
|
|
|
451
|
-
## watch
|
|
451
|
+
## watch
|
|
452
452
|
|
|
453
453
|
Arguments:
|
|
454
454
|
|
|
@@ -458,7 +458,7 @@ Return:
|
|
|
458
458
|
|
|
459
459
|
- same with useWatch()
|
|
460
460
|
|
|
461
|
-
## subscribe
|
|
461
|
+
## subscribe
|
|
462
462
|
|
|
463
463
|
Arguments:
|
|
464
464
|
|