sevago-sso-fe 1.0.65 → 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/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,
@@ -49853,6 +49870,8 @@ export {
49853
49870
  IconContentOpacityElement,
49854
49871
  IconContentSubsElement,
49855
49872
  IconElement,
49873
+ ImageBorderDashboard,
49874
+ ImageBrand,
49856
49875
  ImageContentCaptionComponent,
49857
49876
  ImageContentTimeComponent,
49858
49877
  ImageElement,