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 CHANGED
@@ -47866,21 +47866,10 @@ const TextFieldSelectSearchElement = ({
47866
47866
  ...openTest && { open: openTest },
47867
47867
  sx: { ...sx },
47868
47868
  getOptionLabel,
47869
- renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxRuntime.jsxs(
47870
- material.ListItem,
47871
- {
47872
- ...props,
47873
- sx: {
47874
- display: "flex",
47875
- alignItems: "center",
47876
- maxHeight: HEIGHT_LOGO_DEFAULT
47877
- },
47878
- children: [
47879
- showRadioBtn && /* @__PURE__ */ jsxRuntime.jsx(material.Radio, { checked: value === option, disableRipple: true, size: "small" }),
47880
- /* @__PURE__ */ jsxRuntime.jsx(material.ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
47881
- ]
47882
- }
47883
- ) : renderOption,
47869
+ renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxRuntime.jsxs(material.ListItem, { ...props, sx: { display: "flex", alignItems: "center", maxHeight: HEIGHT_LOGO_DEFAULT }, children: [
47870
+ showRadioBtn && /* @__PURE__ */ jsxRuntime.jsx(material.Radio, { checked: value === option, disableRipple: true, size: "small" }),
47871
+ /* @__PURE__ */ jsxRuntime.jsx(material.ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
47872
+ ] }) : renderOption,
47884
47873
  value: value || (multiple ? [] : null),
47885
47874
  disabled,
47886
47875
  onChange: change,
@@ -47894,10 +47883,7 @@ const TextFieldSelectSearchElement = ({
47894
47883
  TextField,
47895
47884
  {
47896
47885
  ...params,
47897
- InputLabelProps: {
47898
- shrink: isCheckIcon ? true : false,
47899
- sx: { display: "flex" }
47900
- },
47886
+ InputLabelProps: { shrink: isCheckIcon ? true : false, sx: { display: "flex" } },
47901
47887
  error: Boolean(error),
47902
47888
  name,
47903
47889
  placeholder,