Skip to content

Latest commit

 

History

History
135 lines (71 loc) · 4.6 KB

CHANGELOG.md

File metadata and controls

135 lines (71 loc) · 4.6 KB

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

3.1.2 (2019-04-26)

Bug Fixes

3.1.1 (2019-03-24)

Bug Fixes

  • package: add index.d.ts file to npm package (b40af98)

3.1.0 (2019-03-05)

Features

  • add typescript definition file [d.ts] (245a406)

3.0.1 (2019-03-04)

3.0.0 (2019-02-27)

Bug Fixes

  • styling: minor fixes in default styles (d76d8c2)

Features

  • allow any valid element for action buttons (c1bea76)
  • allow users to disable default icons (784dd48)

BREAKING CHANGES

  • prop names for buttons are now changed. see README.md

2.1.2 (2018-10-07)

Bug Fixes

  • styling: minor fixes in default styles (b33b5c4)

2.1.1 (2018-10-07)

Bug Fixes

  • styling: some styles override global css rules (14656d5)

2.1.0 (2018-10-05)

Bug Fixes

  • revert React.Fragment usage (3eaf836)

Features

  • allow any valid element for hint prop (1d802b6)

2.0.1 - October 2, 2018

  • fix - move inputProps top to prevent overrides to component logic.

2.0.0 - September 30, 2018 🚀 🔥 📌

This version brings some important and breaking changes. Please consider to upgrade v2.

And very special thanks to Oririner from Reddit for such a great and detailed review. This feedback helped me a lot especially to release this version.

  • inputProps and viewProps for both input and content div. 🎉

    You can customize input element and the div that shows edited value. See Examples pages for detailes usage.

  • onValidationFail prop. 🎉 🔒

    You don't have to stick to the default validation message and styling. You can track the validity and act based on its value. See the examples page.

  • Add hint prop.

    Useful if you want to show a simple hint message at the bottom of input element.

  • Support for more input types. ✅

    New Types -> date, datetime-local, time, month, url, week, tel

  • Add more examples -> https://alioguzhan.github.io/react-editext/
  • Remove inputClassName and containerClassName props ⚠️

    Since we added inputProps and viewProps these are no longer needed.

  • Remove save on press Enter feature. ⚠️

    This blocks new line feature in textarea.

1.2.1 - September 29, 2018

  • Added type=button to all buttons.
  • Improve tests

1.2.0 - September 23, 2018

  • Added className prop for custom styling to text content
  • Added tests

1.1.0 - September 22, 2018

  • Trigger save action on press Enter
  • Improve default styling for Firefox and Safari
  • Added this changelog

1.0.1 - September 22, 2018

  • Add validation feature. Now we can pass a function to validate the content before save it. See examples page for more details.

1.0.0 - September 21, 2018

  • Initial Release