sevago-sso-fe 1.0.62 → 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.esm.js
CHANGED
|
@@ -14925,23 +14925,6 @@ const MotionBox = ({
|
|
|
14925
14925
|
} : {};
|
|
14926
14926
|
return /* @__PURE__ */ jsx(motion.div, { ...motionProps, ...getAnimationProps(), ...hoverProps, onClick, style: { ...sx }, children });
|
|
14927
14927
|
};
|
|
14928
|
-
const ImageBrand = styled$3(ImageElement)(({ theme }) => ({
|
|
14929
|
-
height: HEIGHT_ELEMENT_OTHER,
|
|
14930
|
-
border: `1px solid ${theme.palette.divider}`,
|
|
14931
|
-
borderRadius: BORDER_RADIUS_ELEMENT,
|
|
14932
|
-
"&:hover": { boxShadow: theme.shadows[1] },
|
|
14933
|
-
padding: 8,
|
|
14934
|
-
backgroundColor: "white",
|
|
14935
|
-
cursor: "pointer",
|
|
14936
|
-
width: 100,
|
|
14937
|
-
objectFit: "contain"
|
|
14938
|
-
}));
|
|
14939
|
-
const ImageBorderDashboard = styled$3(ImageElement)(({ theme }) => ({
|
|
14940
|
-
border: `1px solid ${theme.palette.divider}`,
|
|
14941
|
-
borderRadius: BORDER_RADIUS_ELEMENT,
|
|
14942
|
-
height: 50,
|
|
14943
|
-
width: 70
|
|
14944
|
-
}));
|
|
14945
14928
|
const ImageEmpty = styled$3(Box)(({ theme }) => ({
|
|
14946
14929
|
width: "auto",
|
|
14947
14930
|
minWidth: 50,
|
|
@@ -47865,21 +47848,10 @@ const TextFieldSelectSearchElement = ({
|
|
|
47865
47848
|
...openTest && { open: openTest },
|
|
47866
47849
|
sx: { ...sx },
|
|
47867
47850
|
getOptionLabel,
|
|
47868
|
-
renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxs(
|
|
47869
|
-
|
|
47870
|
-
{
|
|
47871
|
-
|
|
47872
|
-
sx: {
|
|
47873
|
-
display: "flex",
|
|
47874
|
-
alignItems: "center",
|
|
47875
|
-
maxHeight: HEIGHT_LOGO_DEFAULT
|
|
47876
|
-
},
|
|
47877
|
-
children: [
|
|
47878
|
-
showRadioBtn && /* @__PURE__ */ jsx(Radio, { checked: value === option, disableRipple: true, size: "small" }),
|
|
47879
|
-
/* @__PURE__ */ jsx(ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
|
|
47880
|
-
]
|
|
47881
|
-
}
|
|
47882
|
-
) : 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,
|
|
47883
47855
|
value: value || (multiple ? [] : null),
|
|
47884
47856
|
disabled,
|
|
47885
47857
|
onChange: change,
|
|
@@ -47893,10 +47865,7 @@ const TextFieldSelectSearchElement = ({
|
|
|
47893
47865
|
TextField,
|
|
47894
47866
|
{
|
|
47895
47867
|
...params,
|
|
47896
|
-
InputLabelProps: {
|
|
47897
|
-
shrink: isCheckIcon ? true : false,
|
|
47898
|
-
sx: { display: "flex" }
|
|
47899
|
-
},
|
|
47868
|
+
InputLabelProps: { shrink: isCheckIcon ? true : false, sx: { display: "flex" } },
|
|
47900
47869
|
error: Boolean(error),
|
|
47901
47870
|
name,
|
|
47902
47871
|
placeholder,
|
|
@@ -49884,8 +49853,6 @@ export {
|
|
|
49884
49853
|
IconContentOpacityElement,
|
|
49885
49854
|
IconContentSubsElement,
|
|
49886
49855
|
IconElement,
|
|
49887
|
-
ImageBorderDashboard,
|
|
49888
|
-
ImageBrand,
|
|
49889
49856
|
ImageContentCaptionComponent,
|
|
49890
49857
|
ImageContentTimeComponent,
|
|
49891
49858
|
ImageElement,
|