Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Releases: 3lvis/Form

Form — 2.1.5

25 Mar 10:01

Choose a tag to compare

  • Improved behavior when removing dynamic sections (PR #270)

The process of removing the section will update the position of the sections from the same group in a way that the consistency is kept.

  • Improved behavior of removedValues and values

It works better when removing dynamic values.

Form — 2.1.4

23 Mar 22:43

Choose a tag to compare

  • Fixed crash when initializing Form with initial values that had some values missing (related to PR #269)

2.1.3

23 Mar 15:24

Choose a tag to compare

  • Improved behaviour when removing dynamic sections

Form — 2.1.2

20 Mar 12:26

Choose a tag to compare

  • Fix dynamic values not present in form values

Form 2.1.1

20 Mar 09:24

Choose a tag to compare

  • Form will reset field positions when hiding and showing them

Form — 2.1

19 Mar 07:11

Choose a tag to compare

FORMDataSource

  • Store removed values (only dynamic ones at the moment) into a dictionary.
- (NSDictionary *)values;
- (NSDictionary *)removedValues;

Notes

  • valuesDictionary is deprecated, use the new values method instead
- (NSDictionary *)valuesDictionary __attribute__((deprecated("Use values instead")));

Form — 2.0.1

17 Mar 10:01

Choose a tag to compare

Initializing a JSON now supports NSArray and NSDictionary. Useful when creating dynamic fields with templates

Before

- (instancetype)initWithJSON:(NSArray *)JSON
              collectionView:(UICollectionView *)collectionView
                      layout:(FORMLayout *)layout
                      values:(NSDictionary *)values
                    disabled:(BOOL)disabled;

Now

- (instancetype)initWithJSON:(id)JSON
              collectionView:(UICollectionView *)collectionView
                      layout:(FORMLayout *)layout
                      values:(NSDictionary *)values
                    disabled:(BOOL)disabled;

Form — 2.0

16 Mar 12:41

Choose a tag to compare

— FORMField's fieldValue now is referenced as value — [Breaking change]
— Parsing FORMField's now support sending more parameters (minimum_date, maximum_date and value). This is useful when preprocessing the JSON to modify it's content before sending it to FORMDataSource

Form — 1.0.1

13 Mar 11:47

Choose a tag to compare

  • Specified dependency versions
  • Fixed disabled border style not appearing
  • Updated default style with a font available on iOS (Avenir Next)
  • Added validations with compare rule (by the awesome @callumboddy)

Example:

"validations":{
  "compare_to":"start_date",
  "compare_rule":">",
}

More info https://github.com/hyperoslo/Form/pull/237

Initial release

06 Mar 12:10

Choose a tag to compare