sevago-sso-fe 1.0.64 → 1.0.65
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.cjs.js +5 -19
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -19
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -47848,21 +47848,10 @@ const TextFieldSelectSearchElement = ({
|
|
|
47848
47848
|
...openTest && { open: openTest },
|
|
47849
47849
|
sx: { ...sx },
|
|
47850
47850
|
getOptionLabel,
|
|
47851
|
-
renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxs(
|
|
47852
|
-
|
|
47853
|
-
{
|
|
47854
|
-
|
|
47855
|
-
sx: {
|
|
47856
|
-
display: "flex",
|
|
47857
|
-
alignItems: "center",
|
|
47858
|
-
maxHeight: HEIGHT_LOGO_DEFAULT
|
|
47859
|
-
},
|
|
47860
|
-
children: [
|
|
47861
|
-
showRadioBtn && /* @__PURE__ */ jsx(Radio, { checked: value === option, disableRipple: true, size: "small" }),
|
|
47862
|
-
/* @__PURE__ */ jsx(ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
|
|
47863
|
-
]
|
|
47864
|
-
}
|
|
47865
|
-
) : renderOption,
|
|
47851
|
+
renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxs(ListItem$1, { ...props, sx: { display: "flex", alignItems: "center", maxHeight: HEIGHT_LOGO_DEFAULT }, children: [
|
|
47852
|
+
showRadioBtn && /* @__PURE__ */ jsx(Radio, { checked: value === option, disableRipple: true, size: "small" }),
|
|
47853
|
+
/* @__PURE__ */ jsx(ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
|
|
47854
|
+
] }) : renderOption,
|
|
47866
47855
|
value: value || (multiple ? [] : null),
|
|
47867
47856
|
disabled,
|
|
47868
47857
|
onChange: change,
|
|
@@ -47876,10 +47865,7 @@ const TextFieldSelectSearchElement = ({
|
|
|
47876
47865
|
TextField,
|
|
47877
47866
|
{
|
|
47878
47867
|
...params,
|
|
47879
|
-
InputLabelProps: {
|
|
47880
|
-
shrink: isCheckIcon ? true : false,
|
|
47881
|
-
sx: { display: "flex" }
|
|
47882
|
-
},
|
|
47868
|
+
InputLabelProps: { shrink: isCheckIcon ? true : false, sx: { display: "flex" } },
|
|
47883
47869
|
error: Boolean(error),
|
|
47884
47870
|
name,
|
|
47885
47871
|
placeholder,
|