Skip to content

Latest commit

 

History

History
39 lines (37 loc) · 2.08 KB

CHANGELOG.md

File metadata and controls

39 lines (37 loc) · 2.08 KB

Changelog

  • v1.6.7 - Bugfix: fields are not sortable

  • v1.6.6 - Bugfix: change should be triggered when hidden textarea updated

  • v1.6.5 - Feature: Make rendered fields targetable

  • v1.6.4 - Bugfix: User options should be deep copied with $.extend

  • v1.6.3 - Bugfix: Remove max-length attribute for hidden fields, Update preview and label for textarea

  • v1.6.2 - Bugfix: Option text not rendered in IE #39

  • v1.6.1 - Bugfix: required attribute should not be rendered when false.

  • v1.6.0 - Feature: Hidden input field type added

  • v1.5.4 - update gulp to autopush tags

  • v1.5.3 - Bugfix: multiple formBuilder on one page.

  • v1.5.2 - Bugfix: formRender radio-group invalid name property

  • v1.5.1 - Bugfix: Add minimal Bootstrap styling for formRender

  • v1.5 - Feature: checkbox inputs can now be made into toggle switch. details here

  • v1.4.0 - Feature: formRender is a companion plugin to render saved formData into a usable form. details here

  • v1.3.5 - Bugfix: XML parse and save

    • This fix brings a slight update in XML markup for multiple value fields, specifically the <option> node. The changes is to move away from the proprietary XML parser formBuilder was made for.

    This:

    <field name="checkbox-group-1" label="Checkbox Group" style="multiple" required="false" type="checkbox-group" >
        <option label="Option 1">option-1</option>
        <option label="Option 2">option-2</option>
      </field>
    

    Becomes:

    <field name="checkbox-group-1" label="Checkbox Group" style="multiple" required="false" type="checkbox-group" >
        <option value="option-1">Option 1</option>
        <option value="option-2">Option 2</option>
      </field>
    
  • v1.3.4 - Bugfix: fix self closing xml for radio-group field

  • v1.3.3 - Bugfix: preview not toggling correctly

  • v1.3.2 - Bugfix: preview for Multiple fields not updating

  • v1.3.1 - Bugfix: multiple value fields not saving XML

  • v1.3.0 - Live previews, icon font

  • v1.2.0 - Add default fields, and call-to-action text