@thecb/components 4.1.25 → 4.1.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.
package/dist/index.cjs.js CHANGED
@@ -20484,6 +20484,9 @@ var hoverFocusStyles$1 = {
20484
20484
  "default": "color: #0E506D; outline: none; text-decoration: underline; ",
20485
20485
  disabled: "color: #6E727E;"
20486
20486
  };
20487
+ var formFooterPanel = {
20488
+ "default": "".concat(INFO_BLUE)
20489
+ };
20487
20490
  var fallbackValues$h = {
20488
20491
  linkColor: linkColor$2,
20489
20492
  formBackgroundColor: formBackgroundColor$1,
@@ -20495,7 +20498,8 @@ var fallbackValues$h = {
20495
20498
  fontSize: fontSize$6,
20496
20499
  errorFontSize: errorFontSize$1,
20497
20500
  fontWeight: fontWeight$3,
20498
- hoverFocusStyles: hoverFocusStyles$1
20501
+ hoverFocusStyles: hoverFocusStyles$1,
20502
+ formFooterPanel: formFooterPanel
20499
20503
  };
20500
20504
 
20501
20505
  function _templateObject4$3() {
@@ -20765,6 +20769,30 @@ var FormContainer = function FormContainer(_ref) {
20765
20769
 
20766
20770
  var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$h, "default");
20767
20771
 
20772
+ var FormFooterPanel = function FormFooterPanel(_ref) {
20773
+ var themeValues = _ref.themeValues,
20774
+ link = _ref.link,
20775
+ linkText = _ref.linkText;
20776
+
20777
+ var _useContext = React.useContext(styled.ThemeContext),
20778
+ isMobile = _useContext.isMobile;
20779
+
20780
+ return /*#__PURE__*/React__default.createElement(Box, {
20781
+ background: themeValues.formFooterPanel,
20782
+ minWidth: "100%",
20783
+ padding: isMobile ? "1.5rem" : "2rem"
20784
+ }, /*#__PURE__*/React__default.createElement(Cluster, {
20785
+ justify: "center",
20786
+ align: "center"
20787
+ }, /*#__PURE__*/React__default.createElement(ButtonWithLink, {
20788
+ url: link,
20789
+ variant: "smallGhost",
20790
+ text: linkText
20791
+ })));
20792
+ };
20793
+
20794
+ var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$h, "default");
20795
+
20768
20796
  var fontSize$7 = {
20769
20797
  "default": "1rem",
20770
20798
  radio: "1.0625rem"
@@ -40598,6 +40626,7 @@ exports.FailedIcon = FailedIcon;
40598
40626
  exports.ForgotPasswordForm = ForgotPasswordForm;
40599
40627
  exports.ForgotPasswordIcon = ForgotPasswordIcon$1;
40600
40628
  exports.FormContainer = FormContainer$1;
40629
+ exports.FormFooterPanel = FormFooterPanel$1;
40601
40630
  exports.FormInput = FormInput$1;
40602
40631
  exports.FormInputColumn = FormInputColumn;
40603
40632
  exports.FormInputRow = FormInputRow;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "4.1.25",
3
+ "version": "4.1.26",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -0,0 +1,29 @@
1
+ import React, { useContext } from "react";
2
+ import { ThemeContext } from "styled-components";
3
+ import { fallbackValues } from "./FormLayouts.theme.js";
4
+ import { themeComponent } from "../../../util/themeUtils";
5
+ import { Box, Cluster } from "../layouts";
6
+ import ButtonWithLink from "../button-with-link";
7
+ import withWindowSize from "../../withWindowSize";
8
+
9
+ const FormFooterPanel = ({ themeValues, link, linkText }) => {
10
+ const { isMobile } = useContext(ThemeContext);
11
+ return (
12
+ <Box
13
+ background={themeValues.formFooterPanel}
14
+ minWidth="100%"
15
+ padding={isMobile ? "1.5rem" : "2rem"}
16
+ >
17
+ <Cluster justify="center" align="center">
18
+ <ButtonWithLink url={link} variant="smallGhost" text={linkText} />
19
+ </Cluster>
20
+ </Box>
21
+ );
22
+ };
23
+
24
+ export default themeComponent(
25
+ withWindowSize(FormFooterPanel),
26
+ "FormFooterPanel",
27
+ fallbackValues,
28
+ "default"
29
+ );
@@ -6,7 +6,8 @@ import {
6
6
  MINESHAFT_GREY,
7
7
  DUSTY_GREY,
8
8
  GREY_CHATEAU,
9
- ATHENS_GREY
9
+ ATHENS_GREY,
10
+ INFO_BLUE
10
11
  } from "../../../constants/colors";
11
12
  import { FONT_WEIGHT_REGULAR } from "../../../constants/style_constants";
12
13
 
@@ -36,6 +37,9 @@ const hoverFocusStyles = {
36
37
  default: `color: #0E506D; outline: none; text-decoration: underline; `,
37
38
  disabled: `color: #6E727E;`
38
39
  };
40
+ const formFooterPanel = {
41
+ default: `${INFO_BLUE}`
42
+ };
39
43
 
40
44
  export const fallbackValues = {
41
45
  linkColor,
@@ -48,5 +52,6 @@ export const fallbackValues = {
48
52
  fontSize,
49
53
  errorFontSize,
50
54
  fontWeight,
51
- hoverFocusStyles
55
+ hoverFocusStyles,
56
+ formFooterPanel
52
57
  };
@@ -2,5 +2,12 @@ import FormInput from "./FormInput";
2
2
  import FormInputRow from "./FormInputRow";
3
3
  import FormInputColumn from "./FormInputColumn";
4
4
  import FormContainer from "./FormContainer";
5
+ import FormFooterPanel from "./FormFooterPanel";
5
6
 
6
- export { FormInput, FormInputRow, FormInputColumn, FormContainer };
7
+ export {
8
+ FormInput,
9
+ FormInputRow,
10
+ FormInputColumn,
11
+ FormContainer,
12
+ FormFooterPanel
13
+ };