@tellescope/react-components 1.249.0 → 1.249.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tellescope/react-components",
3
- "version": "1.249.0",
3
+ "version": "1.249.1",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -51,13 +51,13 @@
51
51
  "@reduxjs/toolkit": "1.9.0",
52
52
  "@stripe/react-stripe-js": "2.9.0",
53
53
  "@stripe/stripe-js": "1.52.1",
54
- "@tellescope/constants": "1.249.0",
55
- "@tellescope/sdk": "1.249.0",
56
- "@tellescope/types-client": "1.249.0",
57
- "@tellescope/types-models": "1.249.0",
58
- "@tellescope/types-utilities": "1.249.0",
59
- "@tellescope/utilities": "1.249.0",
60
- "@tellescope/validation": "1.249.0",
54
+ "@tellescope/constants": "1.249.1",
55
+ "@tellescope/sdk": "1.249.1",
56
+ "@tellescope/types-client": "1.249.1",
57
+ "@tellescope/types-models": "1.249.1",
58
+ "@tellescope/types-utilities": "1.249.1",
59
+ "@tellescope/utilities": "1.249.1",
60
+ "@tellescope/validation": "1.249.1",
61
61
  "css-to-react-native": "3.0.0",
62
62
  "draft-js": "0.11.7",
63
63
  "draftjs-to-html": "0.9.1",
@@ -84,7 +84,7 @@
84
84
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
85
85
  "react-native": "^0.65.0 || ^0.66.0 || ^0.67.0 || ^0.68.0 || ^0.71.0"
86
86
  },
87
- "gitHead": "fb54fd85672184ea09d70e3072e6037eedc84822",
87
+ "gitHead": "23480776738c31e1d56244ce6c23d9abe032e15a",
88
88
  "publishConfig": {
89
89
  "access": "public"
90
90
  }
@@ -778,12 +778,12 @@ export const useTellescopeForm = ({ dontAutoadvance, isPublicForm, form, urlLogi
778
778
  ...response,
779
779
  fieldTitle: replace_form_field_template_values(originalField.title || '', { enduser, responses }),
780
780
  fieldDescription: replace_form_field_template_values(originalField.description || '', { enduser, responses }),
781
- fieldHtmlDescription: replace_form_field_template_values(originalField.htmlDescription || '', { enduser, responses }),
781
+ fieldHtmlDescription: replace_form_field_template_values(originalField.htmlDescription || '', { enduser, responses, escapeNewlinesAsHTMLBreaks: true }),
782
782
  field: {
783
783
  ...response.field,
784
784
  title: replace_form_field_template_values(originalField.title || '', { enduser, responses }),
785
785
  description: replace_form_field_template_values(originalField.description || '', { enduser, responses }),
786
- htmlDescription: replace_form_field_template_values(originalField.htmlDescription || '', { enduser, responses }),
786
+ htmlDescription: replace_form_field_template_values(originalField.htmlDescription || '', { enduser, responses, escapeNewlinesAsHTMLBreaks: true }),
787
787
  }
788
788
  }
789
789
  })