react-survey-builder 1.0.76 → 1.0.78
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/dist/src_survey-elements-edit_jsx.bundle.js +2 -2
- package/lib/dynamic-option-list.js +17 -34
- package/lib/form-fields.js +28 -21
- package/lib/form-steps.js +93 -198
- package/lib/form.js +28 -21
- package/lib/index.js +3 -3
- package/lib/multi-column/dustbin.js +2 -1
- package/lib/step/Step.js +9 -47
- package/lib/survey-elements/component-header.js +5 -1
- package/lib/survey-elements/header-bar.js +4 -2
- package/lib/survey-elements/index.js +4 -1
- package/lib/survey-elements-edit.js +18 -11
- package/lib/toolbar.js +12 -12
- package/package.json +1 -1
- package/types/index.d.ts +4 -0
package/README.md
CHANGED
@@ -100,6 +100,7 @@ buttonClassName | string | Optional | CSS class(es) for the button container
|
|
100
100
|
checkboxButtonClassName | string | Optional | CSS class(es) for the checkbox and radio buttons
|
101
101
|
headerClassName | string | Optional | CSS class(es) for the header
|
102
102
|
labelClassName | string | Optional | CSS class(es) for the standalone label
|
103
|
+
paragraphClassName | string | Optional | CSS class(es) for the paragraph
|
103
104
|
hideLabels | boolean | Optional | If you would like to hide field labels
|
104
105
|
skipValidations | boolean | Optional | Suppress form validations on submit, if set to true.
|
105
106
|
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.
|