@acuteinfo/common-screens 1.0.46 → 1.0.47
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.js +3 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -3
- package/rollup.config.mjs +2 -9
- package/tsconfig.json +2 -4
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import './assets/verify~MOgwPpDY.css';
|
|
|
17
17
|
import CryptoJS from 'crypto-js';
|
|
18
18
|
import './assets/styles~ILuxAzHT.css';
|
|
19
19
|
import { useQuery, useMutation } from 'react-query';
|
|
20
|
-
import
|
|
20
|
+
import bank_logo_default from './assets/BecomePartnerImg~cwVtJhaB.svg';
|
|
21
21
|
import Waving_hand from './assets/waving-hand~JqQoivUD.png';
|
|
22
22
|
import { styled } from '@mui/material/styles';
|
|
23
23
|
import USER_PROFILE_DEFAULT from './assets/profile-default~evuVPsgu.png';
|
|
@@ -2203,7 +2203,7 @@ const BranchSelectionGrid = ({ selectionMode, authState, isBranchSelectedFn, isL
|
|
|
2203
2203
|
// flexDirection: "column",
|
|
2204
2204
|
justifyContent: "center",
|
|
2205
2205
|
alignItems: "center",
|
|
2206
|
-
}, children: jsx(Stack, { direction: "row", justifyContent: "flex-start", spacing: 2, children: jsx(Box, { className: classes.heading_user_img_border, children: jsx(Avatar, { className: classes.heading_user_img, alt: "Remy Sharp", src: Boolean(logos?.bank) ? logos?.bank :
|
|
2206
|
+
}, children: jsx(Stack, { direction: "row", justifyContent: "flex-start", spacing: 2, children: jsx(Box, { className: classes.heading_user_img_border, children: jsx(Avatar, { className: classes.heading_user_img, alt: "Remy Sharp", src: Boolean(logos?.bank) ? logos?.bank : bank_logo_default }) }) }) }), jsxs(Grid, { xs: 12, sm: 3, md: 3, lg: 3, xl: 3, sx: {
|
|
2207
2207
|
display: "flex",
|
|
2208
2208
|
flexDirection: "column",
|
|
2209
2209
|
justifyContent: "center",
|
|
@@ -2446,7 +2446,6 @@ const useStyles$1 = makeStyles((theme) => ({
|
|
|
2446
2446
|
}));
|
|
2447
2447
|
|
|
2448
2448
|
const AppbarWrapper = ({ handleDrawerOpen, handleDrawerClose, open, authState, LanguageComponent, SearchComponent, dashboardUrl, logos, bankLogo, profilePic, handleLogout, handleProfile, navigate, hideGreetings, menuIconPosition = "left", }) => {
|
|
2449
|
-
console.log(BecomePartnerImg);
|
|
2450
2449
|
const classes = useStyles$1();
|
|
2451
2450
|
const { t } = useTranslation();
|
|
2452
2451
|
const LightTooltip = styled(({ className, ...props }) => (jsx(Tooltip, { ...props, classes: { popper: className } })))(({ theme }) => ({
|
|
@@ -2478,7 +2477,7 @@ const AppbarWrapper = ({ handleDrawerOpen, handleDrawerClose, open, authState, L
|
|
|
2478
2477
|
}, children: [open ? (jsx(IconButton$1, { disableRipple: true, onClick: () => handleDrawerClose(), className: classes.DrawerClose_icon, children: jsx(MenuOutlinedIcon, { fontSize: "large" }) })) : (jsx(IconButton$1, { disableRipple: true, "aria-label": "open drawer", onClick: () => handleDrawerOpen(), className: classes.DrawerClose_icon, children: jsx(MenuOutlinedIcon, { fontSize: "large" }) })), jsxs("div", { children: [jsx("img", { src: Boolean(logos?.logo) ? logos?.logo : bankLogo, alt: "CbsEnfinity", className: classes.logo, onClick: (e) => {
|
|
2479
2478
|
e.preventDefault();
|
|
2480
2479
|
navigate(dashboardUrl ?? "./dashboard");
|
|
2481
|
-
} }), jsx("p", { className: classes.version01, children: logos?.version })] })] }), jsx(Stack, { direction: "row", spacing: 4, mx: 2, children: jsx(Box, { className: classes.heading_user_img_border, children: jsx(Avatar, { className: classes.heading_user_img, alt: "Remy Sharp", src: Boolean(logos?.bank) ? logos?.bank :
|
|
2480
|
+
} }), jsx("p", { className: classes.version01, children: logos?.version })] })] }), jsx(Stack, { direction: "row", spacing: 4, mx: 2, children: jsx(Box, { className: classes.heading_user_img_border, children: jsx(Avatar, { className: classes.heading_user_img, alt: "Remy Sharp", src: Boolean(logos?.bank) ? logos?.bank : bank_logo_default }) }) }), jsxs(Typography, { component: "h1", variant: "h6", color: "inherit", noWrap: true, className: classes.title, children: [jsx(Box, { style: {
|
|
2482
2481
|
marginBottom: "8px",
|
|
2483
2482
|
fontSize: "17px",
|
|
2484
2483
|
color: "var(--theme-color1)",
|