Vulcan/packages/vulcan-forms
Erik Schannen 373857131a SubSchema Fields
- Added support for fields that have their own subschema
- The code flattens the subschema fields, so the path for `address: { street }`` becomes `'address.street'`
- Several places needed to be changed to properly support paths, so `currentValues[path]` becomes `get(currentValues, path)`
- In Form.getData(), replaced underscore's `pick` with lodash's `pick` which properly supports paths and returns a new object
- Fixed a bug in collection.getParameters that made it impossible to specify a `limit` with addView or addDefaultView
2018-05-23 16:02:36 -04:00
..
lib SubSchema Fields 2018-05-23 16:02:36 -04:00
package.js v1.10.1 2018-05-18 08:27:41 +09:00
README.md Improve form error handling; fields now show relevant validation errors 2017-08-16 16:18:40 +09:00
test.js renaming nova-xyz directories to vulcan-xyz 2017-03-24 10:19:24 +09:00

Vulcan Forms

This package provides a SmartForm component.