Skip to content

Releases: aderbas/jsonform

Release 0.2.2

06 Oct 12:10
e508252

Choose a tag to compare

Release 0.2.2

28 Sep 14:46
285ab6e

Choose a tag to compare

Added confirm for control buttons.

<JsonForm 
  components={formFields} 
  controlOptions={{
    confirmSave: 'Confirm form submission?',
    confirmCancel: 'Do you really want to cancel?',
    confirmButtonsLabel: {
      yes: 'Yep', no: 'Noooo'
    }    
  }}
  onSave={(data) => console.log(data)}
/>
  • confirmSave: Adds the confirm alert for the save button. String with the text of the question. Default: null
  • confirmCancel: Adds the confirm alert for the cancel button. String with the text of the question. Default: null
  • confirmButtonsLabel: Text for "yes" and "no" dialog buttons. Default: {no: 'No', yes: 'Yes'}

Release 0.2.1

21 Sep 14:54
c261158

Choose a tag to compare

Introduced simple rule option for dependencies between form fields and fix some bugs. See documentation.

Release 0.2.0

26 Aug 00:28
2d2c532

Choose a tag to compare

  • Fix bug on Select componente when value of first options is 0
  • Fix position of control buttons

Release 0.1.9

19 Aug 00:01
c124f31

Choose a tag to compare

  • Change dependency metodology
  • Added handler when form is populated by remote date
  • Bug fixies

Release 0.1.8

25 Jun 01:33

Choose a tag to compare

  • Added MultiSelect component.
  • Added RadioGroup component.
  • Fixed crash if component not found or any component render error.
  • Fixed issue on responsive layout on small devices.
  • Change the metodologi to "skip" field from model. (Check Readme)

Release 0.1.7

26 May 14:35
ae1b92b

Choose a tag to compare

  • Added support for custom components

Release 0.1.6

20 May 00:53

Choose a tag to compare

  • Added columns for form

Release 0.1.5

15 May 00:03

Choose a tag to compare

  • Add form split
  • Add custom label for buttons

Release 0.1.4

31 Mar 15:44

Choose a tag to compare

Added file upload field option