@oliasoft-open-source/react-ui-library 4.15.0-beta-4 → 4.15.0-beta-5
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 +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -70965,8 +70965,9 @@ const SettingField = ({
|
|
|
70965
70965
|
const onSelectChange = (event) => {
|
|
70966
70966
|
handleSelectChange(event.target.value);
|
|
70967
70967
|
};
|
|
70968
|
-
return /* @__PURE__ */ jsxs("div", {
|
|
70968
|
+
return /* @__PURE__ */ jsxs("div", { children: [
|
|
70969
70969
|
/* @__PURE__ */ jsxs(Flex, { justifyContent: "space-between", children: [
|
|
70970
|
+
children,
|
|
70970
70971
|
/* @__PURE__ */ jsx(
|
|
70971
70972
|
Select,
|
|
70972
70973
|
{
|
|
@@ -70977,8 +70978,7 @@ const SettingField = ({
|
|
|
70977
70978
|
"aria-label": "Select user type",
|
|
70978
70979
|
width: "auto"
|
|
70979
70980
|
}
|
|
70980
|
-
)
|
|
70981
|
-
children
|
|
70981
|
+
)
|
|
70982
70982
|
] }),
|
|
70983
70983
|
/* @__PURE__ */ jsx(Text, { muted: true, children: helpText }),
|
|
70984
70984
|
/* @__PURE__ */ jsx(Divider, {})
|