Skip to content

Releases: Meteor-Community-Packages/meteor-autoform

v5.0.2

10 Mar 22:53

Choose a tag to compare

Minor fix

v5.0.1

10 Mar 16:18

Choose a tag to compare

Minor fix

v5.0.0

08 Mar 21:18

Choose a tag to compare

v5.0.0-pre.1

24 Jan 15:53

Choose a tag to compare

v5.0.0-pre.1 Pre-release
Pre-release

Not ready for use

v4.2.2

28 Dec 19:41

Choose a tag to compare

  • Fixed "Can't set timers inside simulations" error (Thanks @SachaG)
  • Switched Moment dependency to official momentjs:moment package

v4.2.1

14 Dec 21:31

Choose a tag to compare

Fix AutoForm.getFieldValue reactivity when the field is in an #if block

v4.2.0

10 Dec 20:52

Choose a tag to compare

  • As an alternative to the current method of specifying options as an array of objects, you can now specify options as an object with {value: label} format. Values are coerced into the expected type. (Thanks @comerc)
  • When you have an update form with autosave=true, fields with type="contenteditable" now properly autosave. (Thanks @MichalW)

v4.1.0

08 Dec 19:22

Choose a tag to compare

  • The "boolean-radios" input type now outputs the correct field value (true, false, or undefined) in all cases.
  • The "boolean-checkbox" input type now always returns either true or false as its value. Previously, it could return undefined instead of false sometimes.
  • You can now pass a comma-separated list of values to afFieldValueContains and it will return true if any of those values are in the array. (thanks @comerc)
  • The "select-multiple" input type now has initial values set properly. (thanks @BigDSK)
  • The "select-checkbox-inline" input type now has initial values set properly. (thanks @AlainPaumen)
  • When handling submission with onSubmit, you can now call this.done(null, result) when done, and result will be passed to onSuccess as the second argument. If there are multiple onSubmit hooks, only the first provided result will be passed to onSuccess.
  • When onSuccess is called after an insert, this.docId is now set to the new document _id.
  • Update forms should now reset properly (to values from database).
  • Fixes to migration of form input values on hot code push
  • Other fixes (thanks @zimme and @mjgallag)