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.
@@ -1,3 +1 @@
1
- export declare const ImageBrand: import('@emotion/styled').StyledComponent<import('../elements/image/image.element').ImageElementProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
2
- export declare const ImageBorderDashboard: import('@emotion/styled').StyledComponent<import('../elements/image/image.element').ImageElementProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
3
1
  export declare const ImageEmpty: import('@emotion/styled').StyledComponent<import('@mui/system').BoxOwnProps<import('@mui/material').Theme> & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
package/dist/index.cjs.js CHANGED
@@ -14943,23 +14943,6 @@ const MotionBox = ({
14943
14943
  } : {};
14944
14944
  return /* @__PURE__ */ jsxRuntime.jsx(motion.div, { ...motionProps, ...getAnimationProps(), ...hoverProps, onClick, style: { ...sx }, children });
14945
14945
  };
14946
- const ImageBrand = material.styled(ImageElement)(({ theme }) => ({
14947
- height: HEIGHT_ELEMENT_OTHER,
14948
- border: `1px solid ${theme.palette.divider}`,
14949
- borderRadius: BORDER_RADIUS_ELEMENT,
14950
- "&:hover": { boxShadow: theme.shadows[1] },
14951
- padding: 8,
14952
- backgroundColor: "white",
14953
- cursor: "pointer",
14954
- width: 100,
14955
- objectFit: "contain"
14956
- }));
14957
- const ImageBorderDashboard = material.styled(ImageElement)(({ theme }) => ({
14958
- border: `1px solid ${theme.palette.divider}`,
14959
- borderRadius: BORDER_RADIUS_ELEMENT,
14960
- height: 50,
14961
- width: 70
14962
- }));
14963
14946
  const ImageEmpty = material.styled(material.Box)(({ theme }) => ({
14964
14947
  width: "auto",
14965
14948
  minWidth: 50,
@@ -47883,21 +47866,10 @@ const TextFieldSelectSearchElement = ({
47883
47866
  ...openTest && { open: openTest },
47884
47867
  sx: { ...sx },
47885
47868
  getOptionLabel,
47886
- renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxRuntime.jsxs(
47887
- material.ListItem,
47888
- {
47889
- ...props,
47890
- sx: {
47891
- display: "flex",
47892
- alignItems: "center",
47893
- maxHeight: HEIGHT_LOGO_DEFAULT
47894
- },
47895
- children: [
47896
- showRadioBtn && /* @__PURE__ */ jsxRuntime.jsx(material.Radio, { checked: value === option, disableRipple: true, size: "small" }),
47897
- /* @__PURE__ */ jsxRuntime.jsx(material.ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
47898
- ]
47899
- }
47900
- ) : 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,
47901
47873
  value: value || (multiple ? [] : null),
47902
47874
  disabled,
47903
47875
  onChange: change,
@@ -47911,10 +47883,7 @@ const TextFieldSelectSearchElement = ({
47911
47883
  TextField,
47912
47884
  {
47913
47885
  ...params,
47914
- InputLabelProps: {
47915
- shrink: isCheckIcon ? true : false,
47916
- sx: { display: "flex" }
47917
- },
47886
+ InputLabelProps: { shrink: isCheckIcon ? true : false, sx: { display: "flex" } },
47918
47887
  error: Boolean(error),
47919
47888
  name,
47920
47889
  placeholder,
@@ -49901,8 +49870,6 @@ exports.IconContentElement = IconContentElement;
49901
49870
  exports.IconContentOpacityElement = IconContentOpacityElement;
49902
49871
  exports.IconContentSubsElement = IconContentSubsElement;
49903
49872
  exports.IconElement = IconElement;
49904
- exports.ImageBorderDashboard = ImageBorderDashboard;
49905
- exports.ImageBrand = ImageBrand;
49906
49873
  exports.ImageContentCaptionComponent = ImageContentCaptionComponent;
49907
49874
  exports.ImageContentTimeComponent = ImageContentTimeComponent;
49908
49875
  exports.ImageElement = ImageElement;