Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NarasimhaReddyY/react-form-builder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Codebrahma/react-form-builder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
Loading
Showing with 8,474 additions and 6,783 deletions.
  1. +6 −0 README.md
  2. +5,337 −4,314 package-lock.json
  3. +8 −5 package.json
  4. +1 −0 scss/application.scss
  5. +23 −17 scss/react-star-rating.scss
  6. +68 −0 scss/react-text-area-styles.scss
  7. +7 −11 src/CustomElement.js
  8. +144 −169 src/form-elements-edit.jsx
  9. +140 −118 src/form-elements.jsx
  10. +1 −1 src/form-place-holder.jsx
  11. +68 −60 src/form.jsx
  12. +6 −0 src/header-bar.jsx
  13. +1 −0 src/index.jsx
  14. +12 −1 src/preview.jsx
  15. +39 −26 src/star-rating.jsx
  16. +2,613 −2,061 yarn.lock
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CAUTION

This package is highly customized for internal usage, **DO NOT** use in new projects

# React Form Builder Advance

A complete react form builder that interfaces with a json endpoint to load and save generated forms.

- Upgraded to React 16.4.1
- Use react-dnd for Drag & Drop
- Save form data with dummy api server.
Loading