auto-views
Advanced tools
Comparing version 0.0.7 to 0.0.8
@@ -22,3 +22,3 @@ | ||
| view | string | "edit" | No | the name of the view to request from the repo | | ||
| data | object| null | No | data for the form, needs to comply with schema | expanded/collapsed directly (search can do it) or traversed using keyboard, or selected. | | ||
| value | object| null | No | data for the form, needs to comply with schema | expanded/collapsed directly (search can do it) or traversed using keyboard, or selected. | | ||
| onChange | (ev:[AutoViewEvent](./auto-view-event.md))=>void | none | No| callback method for data change | | ||
@@ -25,0 +25,0 @@ |
{ | ||
"name": "auto-views", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "Common, fully-tested, strictly-typed, Wix-styled, auto views library", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -43,3 +43,3 @@ # Auto-Views component family | ||
<AutoForm schemaId="http://example.com/user" view="view"/> | ||
<AutoForm schemaId="http://example.com/user" view="view" value={{fName:'Derrick',lName:'Freeman',age:37}}/> | ||
@@ -53,3 +53,3 @@ ``` | ||
<AutoForm schemaId="http://example.com/user" view="edit"/> | ||
<AutoForm schemaId="http://example.com/user" view="edit" value={{fName:'Derrick',lName:'Freeman',age:37}}/> | ||
@@ -64,3 +64,3 @@ ``` | ||
<AutoGrid schemaId="http://example.com/user" view="edit"/> | ||
<AutoGrid schemaId="http://example.com/user" view="edit" value={[{fName:'Derrick',lName:'Freeman',age:37}...]}/> | ||
@@ -75,3 +75,3 @@ ``` | ||
<AutoThumbnailForm schemaId="http://example.com/user" view="edit"/> | ||
<AutoThumbnailForm schemaId="http://example.com/user" view="edit" value={[{fName:'Derrick',lName:'Freeman',age:37}...]}/> | ||
@@ -78,0 +78,0 @@ ``` |
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
195917