react-survey-builder 1.0.90 → 1.0.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/bundle.js +10 -10
- package/lib/fieldset/Fieldset.js +1 -0
- package/lib/form-fields.js +25 -6
- package/lib/form-steps.js +26 -7
- package/lib/form.js +26 -7
- package/lib/index.js +3 -1
- package/lib/multi-column/MultiColumnRow.js +1 -0
- package/lib/multi-column/dustbin.js +1 -0
- package/lib/preview.js +2 -0
- package/lib/step/Step.js +1 -0
- package/lib/survey-elements/index.js +62 -31
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
    
        package/README.md
    CHANGED
    
    | @@ -101,6 +101,7 @@ checkboxButtonClassName | string | Optional | CSS class(es) for the checkbox and | |
| 101 101 | 
             
            headerClassName | string | Optional | CSS class(es) for the header
         | 
| 102 102 | 
             
            labelClassName | string | Optional | CSS class(es) for the standalone label
         | 
| 103 103 | 
             
            paragraphClassName | string | Optional | CSS class(es) for the paragraph
         | 
| 104 | 
            +
            helpClassName | string | Optional | CSS class(es) for the help content
         | 
| 104 105 | 
             
            hideLabels | boolean | Optional | If you would like to hide field labels
         | 
| 105 106 | 
             
            skipValidations | boolean | Optional | Suppress form validations on submit, if set to true.
         | 
| 106 107 | 
             
            displayShort | boolean | Optional | Display an optional "shorter page/form" which is common for legal documents or situations where the user will just have to sign or fill out a shorter form with only the critical elements.
         |