Skip to content

Flow Types

Choose a tag to compare

@dxinteractive dxinteractive released this 22 Jun 05:42
· 972 commits to master since this release

parcels

  • Fix all Flow errors as of v0.54.1
  • Internal changes to keying and key conversion. For anyone who is
    • key is a string used to identify a child, on any parcel including elements in indexed parcels which are given auto geenrated keys. "abc" and "#a" are keys, 3 is not.
    • index is a number that says the position of an element in an indexed parcel. 3 is an index, "abc" and "#a" are not.
    • property is a string or a number that can be used by Javascript to access a value's child. "abc" and 3 are properties, "#a" on an indexed parcel is not.
  • BREAKING CHANGE PartialParcelData type no longer exists and is not exported anymore
  • Property type has been added to exports

parcels-react

  • BREAKING CHANGE PartialParcelData type no longer exists and is not exported anymore
  • Property type has been added to exports

parcels-plugin-form

  • No change to API

Addresses #20 #52