@oliasoft-open-source/react-ui-library 4.18.4-beta-1 → 4.18.4-beta-2
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 +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -66558,7 +66558,8 @@ const SettingField = ({
|
|
|
66558
66558
|
handleSelectChange
|
|
66559
66559
|
}) => {
|
|
66560
66560
|
const renderHelpText = (text2) => {
|
|
66561
|
-
|
|
66561
|
+
const textWithNewlines = text2.replace(/\\n/g, "\n");
|
|
66562
|
+
return textWithNewlines.split(/\n/).map((line2, index2) => /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
|
|
66562
66563
|
line2,
|
|
66563
66564
|
/* @__PURE__ */ jsx("br", {})
|
|
66564
66565
|
] }, index2));
|