@homefile/components-v2 2.8.25 → 2.8.26

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.
@@ -284,7 +284,7 @@
284
284
  "uploading": "Uploading"
285
285
  },
286
286
  "footer": {
287
- "copyright": "© 2024 HMFC, Inc. All Rights Reserved.",
287
+ "copyright": "© 2025 HMFC, Inc. All Rights Reserved.",
288
288
  "privacyLink": "Privacy Policy",
289
289
  "privacyUrl": "https://homefile.cloud/privacy",
290
290
  "termsLink": "Terms of Service",
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Button, Stack, Text } from '@chakra-ui/react';
3
3
  export const PartnerCallToAction = ({ buttonText, description, onClick, }) => {
4
- return (_jsxs(Stack, { px: "base", py: "4", align: "center", spacing: "base", children: [_jsx(Text, { fontSize: "sm", fontWeight: "light", lineHeight: "15px", textAlign: "center", children: description }), _jsx(Button, { variant: "secondaryFooter", bg: "neutral.white", boxShadow: "md", minW: "100%", borderRadius: "sm", onClick: onClick, children: buttonText })] }));
4
+ return (_jsxs(Stack, { px: "base", py: "4", align: "center", spacing: "base", children: [_jsx(Text, { fontSize: "sm", fontWeight: "light", lineHeight: "15px", textAlign: "center", children: description }), _jsx(Button, { variant: "secondaryFooter", bg: "neutral.white", boxShadow: "md", minW: "100%", borderRadius: "sm", onClick: onClick, fontSize: "lg", children: buttonText })] }));
5
5
  };
@@ -2,5 +2,5 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { Box } from '@chakra-ui/react';
3
3
  import { TileTooltip } from '..';
4
4
  export const PartnerTileWrapper = ({ children }) => {
5
- return (_jsx(TileTooltip, { label: "partner", children: _jsx(Box, { display: "flex", flexDir: "column", bg: "lightBlue.1", boxShadow: "lg", children: children }) }));
5
+ return (_jsx(TileTooltip, { label: "partner", children: _jsx(Box, { display: "flex", flexDir: "column", bg: "lightBlue.1", boxShadow: "base", children: children }) }));
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homefile/components-v2",
3
- "version": "2.8.25",
3
+ "version": "2.8.26",
4
4
  "author": "Homefile",
5
5
  "license": "UNLICENSED",
6
6
  "typings": "dist/index.d.ts",
@@ -284,7 +284,7 @@
284
284
  "uploading": "Uploading"
285
285
  },
286
286
  "footer": {
287
- "copyright": "© 2024 HMFC, Inc. All Rights Reserved.",
287
+ "copyright": "© 2025 HMFC, Inc. All Rights Reserved.",
288
288
  "privacyLink": "Privacy Policy",
289
289
  "privacyUrl": "https://homefile.cloud/privacy",
290
290
  "termsLink": "Terms of Service",
@@ -23,6 +23,7 @@ export const PartnerCallToAction = ({
23
23
  minW="100%"
24
24
  borderRadius="sm"
25
25
  onClick={onClick}
26
+ fontSize="lg"
26
27
  >
27
28
  {buttonText}
28
29
  </Button>
@@ -5,7 +5,7 @@ import { TileTooltip } from '@/components'
5
5
  export const PartnerTileWrapper = ({ children }: PropsWithChildren<{}>) => {
6
6
  return (
7
7
  <TileTooltip label="partner">
8
- <Box display="flex" flexDir="column" bg="lightBlue.1" boxShadow="lg">
8
+ <Box display="flex" flexDir="column" bg="lightBlue.1" boxShadow="base">
9
9
  {children}
10
10
  </Box>
11
11
  </TileTooltip>