optimized-react-component-library-xyz123 2.8.17 → 2.8.18
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/index.js +10 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2084,9 +2084,16 @@ var RadioCollapseItem = ({
|
|
|
2084
2084
|
children: /* @__PURE__ */ jsxs16("div", { className: `pts-radio-collapse-content `, children: [
|
|
2085
2085
|
isOpen && //TODO??
|
|
2086
2086
|
/* @__PURE__ */ jsx20("span", { className: "sr-only", children: activatedLanguage === "sv" ? `Visar informationstext om svarsalternativet ${label}` : `Displays informational text about the answer option ${label}` }),
|
|
2087
|
-
/* @__PURE__ */ jsx20(
|
|
2088
|
-
|
|
2089
|
-
|
|
2087
|
+
/* @__PURE__ */ jsx20(
|
|
2088
|
+
"div",
|
|
2089
|
+
{
|
|
2090
|
+
dangerouslySetInnerHTML: {
|
|
2091
|
+
__html: DOMPurify6.sanitize(optionText != null ? optionText : "", {
|
|
2092
|
+
ADD_ATTR: ["target", "style"]
|
|
2093
|
+
})
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
)
|
|
2090
2097
|
] })
|
|
2091
2098
|
}
|
|
2092
2099
|
)
|