@bigbinary/neeto-form-frontend 3.13.7 → 3.13.8
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/dist/BuildForm.js +3 -0
- package/dist/BuildForm.js.map +1 -1
- package/dist/ExternalForm.js +2 -0
- 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 +2 -0
- package/dist/cjs/ExternalForm.js.map +1 -1
- package/package.json +9 -9
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 ? {
|