sevago-sso-fe 1.0.64 → 1.0.66
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/components/styles/image.style.d.ts +2 -0
- package/dist/index.cjs.js +24 -19
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +24 -19
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -14925,6 +14925,23 @@ 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
|
+
}));
|
|
14928
14945
|
const ImageEmpty = styled$3(Box)(({ theme }) => ({
|
|
14929
14946
|
width: "auto",
|
|
14930
14947
|
minWidth: 50,
|
|
@@ -47848,21 +47865,10 @@ const TextFieldSelectSearchElement = ({
|
|
|
47848
47865
|
...openTest && { open: openTest },
|
|
47849
47866
|
sx: { ...sx },
|
|
47850
47867
|
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,
|
|
47868
|
+
renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxs(ListItem$1, { ...props, sx: { display: "flex", alignItems: "center", maxHeight: HEIGHT_LOGO_DEFAULT }, children: [
|
|
47869
|
+
showRadioBtn && /* @__PURE__ */ jsx(Radio, { checked: value === option, disableRipple: true, size: "small" }),
|
|
47870
|
+
/* @__PURE__ */ jsx(ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
|
|
47871
|
+
] }) : renderOption,
|
|
47866
47872
|
value: value || (multiple ? [] : null),
|
|
47867
47873
|
disabled,
|
|
47868
47874
|
onChange: change,
|
|
@@ -47876,10 +47882,7 @@ const TextFieldSelectSearchElement = ({
|
|
|
47876
47882
|
TextField,
|
|
47877
47883
|
{
|
|
47878
47884
|
...params,
|
|
47879
|
-
InputLabelProps: {
|
|
47880
|
-
shrink: isCheckIcon ? true : false,
|
|
47881
|
-
sx: { display: "flex" }
|
|
47882
|
-
},
|
|
47885
|
+
InputLabelProps: { shrink: isCheckIcon ? true : false, sx: { display: "flex" } },
|
|
47883
47886
|
error: Boolean(error),
|
|
47884
47887
|
name,
|
|
47885
47888
|
placeholder,
|
|
@@ -49867,6 +49870,8 @@ export {
|
|
|
49867
49870
|
IconContentOpacityElement,
|
|
49868
49871
|
IconContentSubsElement,
|
|
49869
49872
|
IconElement,
|
|
49873
|
+
ImageBorderDashboard,
|
|
49874
|
+
ImageBrand,
|
|
49870
49875
|
ImageContentCaptionComponent,
|
|
49871
49876
|
ImageContentTimeComponent,
|
|
49872
49877
|
ImageElement,
|