@bigbinary/neeto-form-frontend 3.13.7 → 3.13.9
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/app/javascript/src/translations/en.json +2 -2
- package/dist/BuildForm.js +3 -0
- package/dist/BuildForm.js.map +1 -1
- package/dist/ExternalForm.js +5 -2
- package/dist/ExternalForm.js.map +1 -1
- package/dist/cjs/BuildForm.js +3 -0
- package/dist/cjs/BuildForm.js.map +1 -1
- package/dist/cjs/ExternalForm.js +4 -1
- package/dist/cjs/ExternalForm.js.map +1 -1
- package/package.json +9 -9
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"title2": "Your response has been received."
|
|
99
99
|
},
|
|
100
100
|
"emptyState": {
|
|
101
|
-
"noData": "No data found"
|
|
101
|
+
"noData": "No data found."
|
|
102
102
|
},
|
|
103
103
|
"questions": {
|
|
104
104
|
"deleteAlert": {
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"message_other": "You are deleting the <strong>{{label}}</strong> field for all languages. This will also delete any data associated with this field."
|
|
108
108
|
},
|
|
109
109
|
"common": {
|
|
110
|
-
"noData": "There are no questions to show",
|
|
110
|
+
"noData": "There are no questions to show.",
|
|
111
111
|
"helpText": {
|
|
112
112
|
"learnAbout": "Learn about",
|
|
113
113
|
"howToAddNewQuestions": "how to add new questions"
|
package/dist/BuildForm.js
CHANGED
|
@@ -2046,6 +2046,7 @@ var buildDefaultValueForKind = function buildDefaultValueForKind(questionKind) {
|
|
|
2046
2046
|
var hideSwitchLabelProps = function hideSwitchLabelProps(helpUrl) {
|
|
2047
2047
|
return helpUrl ? {
|
|
2048
2048
|
helpIconProps: {
|
|
2049
|
+
"data-cy": "help-popover-button",
|
|
2049
2050
|
popoverProps: {
|
|
2050
2051
|
description: t("neetoForm.questions.common.questionFields.field.hideQuestionHelpDescription"),
|
|
2051
2052
|
helpLinkProps: {
|
|
@@ -2059,6 +2060,7 @@ var hideSwitchLabelProps = function hideSwitchLabelProps(helpUrl) {
|
|
|
2059
2060
|
var responseVisibleOnlyToHostSwitchLabelProps = function responseVisibleOnlyToHostSwitchLabelProps(helpUrl) {
|
|
2060
2061
|
return {
|
|
2061
2062
|
helpIconProps: {
|
|
2063
|
+
"data-cy": "help-popover-button",
|
|
2062
2064
|
popoverProps: {
|
|
2063
2065
|
description: t("neetoForm.questions.common.questionFields.field.responseVisibleOnlyToHostHelpDescription"),
|
|
2064
2066
|
helpLinkProps: {
|
|
@@ -2072,6 +2074,7 @@ var responseVisibleOnlyToHostSwitchLabelProps = function responseVisibleOnlyToHo
|
|
|
2072
2074
|
var readOnlySwitchLabelProps = function readOnlySwitchLabelProps(helpUrl) {
|
|
2073
2075
|
return {
|
|
2074
2076
|
helpIconProps: {
|
|
2077
|
+
"data-cy": "help-popover-button",
|
|
2075
2078
|
popoverProps: {
|
|
2076
2079
|
description: t("neetoForm.questions.common.questionFields.field.readOnlyHelpDescription"),
|
|
2077
2080
|
helpLinkProps: helpUrl ? {
|