cerebral-forms
Advanced tools
Comparing version 1.0.0-b-alpha.9b918342 to 1.0.0-b-alpha.a2e68a01
{ | ||
"name": "cerebral-forms", | ||
"version": "1.0.0-b-alpha.9b918342", | ||
"version": "1.0.0-b-alpha.a2e68a01", | ||
"description": "Signals, actions and state factories to create forms", | ||
@@ -28,7 +28,7 @@ "main": "lib/index.js", | ||
"peerDependencies": { | ||
"cerebral": "2.0.0-b-alpha.9b918342" | ||
"cerebral": "2.0.0-b-alpha.a2e68a01" | ||
}, | ||
"devDependencies": { | ||
"@cerebral/monorepo": "0.0.1-alpha.9b918342", | ||
"cerebral": "2.0.0-b-alpha.9b918342" | ||
"@cerebral/monorepo": "0.0.1-alpha.a2e68a01", | ||
"cerebral": "2.0.0-b-alpha.a2e68a01" | ||
}, | ||
@@ -35,0 +35,0 @@ "nyc": { |
@@ -203,3 +203,3 @@ # cerebral-forms | ||
```js | ||
import {input} from 'cerebral/operators' | ||
import {props} from 'cerebral/tags' | ||
import {validateField} from 'cerebral-forms' | ||
@@ -212,3 +212,3 @@ | ||
// dynamic | ||
validateField(input`fieldPath`), | ||
validateField(props`fieldPath`), | ||
doThat | ||
@@ -222,3 +222,3 @@ ] | ||
```js | ||
import {input} from 'cerebral/operators' | ||
import {props} from 'cerebral/tags' | ||
import {validateForm} from 'cerebral-forms' | ||
@@ -230,3 +230,3 @@ | ||
// dynamic | ||
validateForm(input`formPath`), | ||
validateForm(props`formPath`), | ||
isFormValid, { | ||
@@ -247,3 +247,3 @@ true: [ | ||
```js | ||
import {input} from 'cerebral/operators' | ||
import {props} from 'cerebral/tags' | ||
import {resetForm} from 'cerebral-forms' | ||
@@ -256,3 +256,3 @@ | ||
// dynamic | ||
resetForm(input`formPath`), | ||
resetForm(props`formPath`), | ||
doThat | ||
@@ -348,3 +348,3 @@ ] | ||
```js | ||
import {input} from 'cerebral/operators' | ||
import {props} from 'cerebral/tags' | ||
import {isValidForm} from 'cerebral-forms' | ||
@@ -356,3 +356,3 @@ | ||
// dynamic | ||
isValidForm(input`formPath`), { | ||
isValidForm(props`formPath`), { | ||
true: [], | ||
@@ -359,0 +359,0 @@ false: [] |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
72256