react-survey-builder 1.0.83 → 1.0.85
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 +15 -15
- package/lib/fieldset/{FieldSet.js → Fieldset.js} +2 -2
- package/lib/fieldset/index.js +2 -2
- package/lib/form-fields.js +8 -5
- package/lib/form-steps.js +8 -5
- package/lib/form.js +8 -5
- package/lib/index.js +11 -1
- package/lib/multi-column/dustbin.js +13 -7
- package/lib/preview.js +24 -2
- package/lib/sortable-form-elements.js +2 -2
- package/lib/survey-elements/index.js +63 -58
- package/lib/survey-elements/myxss.js +15 -7
- package/lib/toolbar.js +1 -1
- package/lib/utils/objectUtils.js +6 -0
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
package/README.md
CHANGED
@@ -107,6 +107,7 @@ displayShort | boolean | Optional | Display an optional "shorter page/form" whic
|
|
107
107
|
readOnly | boolean | Optional | Shows a read only version which has fields disabled and removes "required" labels.
|
108
108
|
print | boolean | Optional | Shows a print friendly version of the form that removes all the form fields.
|
109
109
|
variables | object | Optional | Key/value object that can be used for Signature variable replacement.
|
110
|
+
staticVariables | object | Optional | Key/value object that can be used for text replacement in static element text using double curly brackets.
|
110
111
|
methods | object | Optional (Required if using ReactSurveyFieldGenerator) | React Hook Form methods object generated by the useForm hook.
|
111
112
|
|
112
113
|
### Read only Signatures
|