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
|
@@ -1 +1,3 @@
|
|
|
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>, {}, {}>;
|
|
1
3
|
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,6 +14943,23 @@ 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
|
+
}));
|
|
14946
14963
|
const ImageEmpty = material.styled(material.Box)(({ theme }) => ({
|
|
14947
14964
|
width: "auto",
|
|
14948
14965
|
minWidth: 50,
|
|
@@ -47866,21 +47883,10 @@ const TextFieldSelectSearchElement = ({
|
|
|
47866
47883
|
...openTest && { open: openTest },
|
|
47867
47884
|
sx: { ...sx },
|
|
47868
47885
|
getOptionLabel,
|
|
47869
|
-
renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
47870
|
-
material.
|
|
47871
|
-
{
|
|
47872
|
-
|
|
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,
|
|
47886
|
+
renderOption: showRadioBtn ? (props, option) => /* @__PURE__ */ jsxRuntime.jsxs(material.ListItem, { ...props, sx: { display: "flex", alignItems: "center", maxHeight: HEIGHT_LOGO_DEFAULT }, children: [
|
|
47887
|
+
showRadioBtn && /* @__PURE__ */ jsxRuntime.jsx(material.Radio, { checked: value === option, disableRipple: true, size: "small" }),
|
|
47888
|
+
/* @__PURE__ */ jsxRuntime.jsx(material.ListItemText, { primary: getOptionLabel ? getOptionLabel(option) : option })
|
|
47889
|
+
] }) : renderOption,
|
|
47884
47890
|
value: value || (multiple ? [] : null),
|
|
47885
47891
|
disabled,
|
|
47886
47892
|
onChange: change,
|
|
@@ -47894,10 +47900,7 @@ const TextFieldSelectSearchElement = ({
|
|
|
47894
47900
|
TextField,
|
|
47895
47901
|
{
|
|
47896
47902
|
...params,
|
|
47897
|
-
InputLabelProps: {
|
|
47898
|
-
shrink: isCheckIcon ? true : false,
|
|
47899
|
-
sx: { display: "flex" }
|
|
47900
|
-
},
|
|
47903
|
+
InputLabelProps: { shrink: isCheckIcon ? true : false, sx: { display: "flex" } },
|
|
47901
47904
|
error: Boolean(error),
|
|
47902
47905
|
name,
|
|
47903
47906
|
placeholder,
|
|
@@ -49884,6 +49887,8 @@ exports.IconContentElement = IconContentElement;
|
|
|
49884
49887
|
exports.IconContentOpacityElement = IconContentOpacityElement;
|
|
49885
49888
|
exports.IconContentSubsElement = IconContentSubsElement;
|
|
49886
49889
|
exports.IconElement = IconElement;
|
|
49890
|
+
exports.ImageBorderDashboard = ImageBorderDashboard;
|
|
49891
|
+
exports.ImageBrand = ImageBrand;
|
|
49887
49892
|
exports.ImageContentCaptionComponent = ImageContentCaptionComponent;
|
|
49888
49893
|
exports.ImageContentTimeComponent = ImageContentTimeComponent;
|
|
49889
49894
|
exports.ImageElement = ImageElement;
|