@oliasoft-open-source/react-ui-library 4.20.7 → 4.20.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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -67109,7 +67109,7 @@ const SettingField = ({
|
|
|
67109
67109
|
return /* @__PURE__ */ jsxs("div", { className: styles.settingField, children: [
|
|
67110
67110
|
/* @__PURE__ */ jsxs(Flex, { justifyContent: "space-between", wrap: false, children: [
|
|
67111
67111
|
children,
|
|
67112
|
-
!noPermission && /* @__PURE__ */ jsx(
|
|
67112
|
+
!noPermission && /* @__PURE__ */ jsx("div", { style: { flexShrink: 0 }, children: /* @__PURE__ */ jsx(
|
|
67113
67113
|
Select,
|
|
67114
67114
|
{
|
|
67115
67115
|
small: true,
|
|
@@ -67122,7 +67122,7 @@ const SettingField = ({
|
|
|
67122
67122
|
"aria-label": "Select user type",
|
|
67123
67123
|
width: "auto"
|
|
67124
67124
|
}
|
|
67125
|
-
)
|
|
67125
|
+
) })
|
|
67126
67126
|
] }),
|
|
67127
67127
|
helpText && /* @__PURE__ */ jsx(Text, { muted: true, children: renderHelpText(helpText) })
|
|
67128
67128
|
] });
|