@axos-web-dev/shared-components 0.0.108 → 0.0.110

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.
Files changed (62) hide show
  1. package/dist/ATMLocator/ATMLocator.js +3 -1
  2. package/dist/Accordion/Accordion.css.d.ts +9 -9
  3. package/dist/Button/Button.js +2 -0
  4. package/dist/Calculators/BalanceAPYCalculator/index.js +7 -2
  5. package/dist/Calculators/Calculator.js +5 -2
  6. package/dist/Calculators/MonthlyPaymentCalculator/index.d.ts +2 -1
  7. package/dist/Calculators/MonthlyPaymentCalculator/index.js +22 -9
  8. package/dist/Carousel/index.js +2 -0
  9. package/dist/Chevron/index.js +2 -0
  10. package/dist/Comparison/Comparison.js +2 -0
  11. package/dist/FaqAccordion/FaqAccordion.css.js +1 -1
  12. package/dist/FaqAccordion/index.d.ts +4 -0
  13. package/dist/FaqAccordion/index.js +113 -1
  14. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -0
  15. package/dist/Forms/ClearingForm.d.ts +14 -0
  16. package/dist/Forms/ClearingForm.js +334 -0
  17. package/dist/Forms/ContactUsBusiness.js +2 -0
  18. package/dist/Forms/ContactUsNMLSId.js +2 -0
  19. package/dist/Forms/EmailOnly.js +2 -0
  20. package/dist/Forms/SalesforceFieldsForm.d.ts +0 -1
  21. package/dist/Forms/ScheduleCall.js +4 -1
  22. package/dist/Forms/SuccesForm.js +2 -0
  23. package/dist/Forms/index.d.ts +1 -0
  24. package/dist/Forms/index.js +2 -0
  25. package/dist/Hyperlink/index.js +2 -0
  26. package/dist/ImageLink/ImageLink.js +2 -0
  27. package/dist/ImageLink/ImageLinkSet.js +2 -0
  28. package/dist/ImageLink/index.js +2 -0
  29. package/dist/Input/Checkbox.css.d.ts +2 -0
  30. package/dist/Input/Checkbox.css.js +5 -1
  31. package/dist/Input/Checkbox.d.ts +1 -1
  32. package/dist/Input/CheckboxGroup.d.ts +20 -0
  33. package/dist/Input/CheckboxGroup.js +39 -0
  34. package/dist/Input/DatePicker.css.d.ts +1 -0
  35. package/dist/Input/DatePicker.css.js +6 -0
  36. package/dist/Input/Datepicker.d.ts +3 -0
  37. package/dist/Input/Datepicker.js +47 -0
  38. package/dist/Input/InputDate.css.d.ts +6 -0
  39. package/dist/Input/InputDate.css.js +15 -0
  40. package/dist/Input/InputDate.d.ts +3 -0
  41. package/dist/Input/InputDate.js +47 -0
  42. package/dist/Input/InputProps.d.ts +6 -0
  43. package/dist/Insight/Featured/CategorySelector.js +2 -0
  44. package/dist/Insight/Featured/Featured.js +2 -0
  45. package/dist/Modal/Modal.js +2 -0
  46. package/dist/NavigationMenu/AxosBank/SubNavBar.js +2 -0
  47. package/dist/SetContainer/SetContainer.js +2 -0
  48. package/dist/SocialMediaBar/SocialMediaBar.css.d.ts +1 -0
  49. package/dist/SocialMediaBar/SocialMediaBar.css.js +2 -0
  50. package/dist/SocialMediaBar/index.d.ts +7 -1
  51. package/dist/SocialMediaBar/index.js +17 -3
  52. package/dist/Table/Table.d.ts +13 -13
  53. package/dist/assets/FaqAccordion/FaqAccordion.css +6 -0
  54. package/dist/assets/Input/Checkbox.css +7 -0
  55. package/dist/assets/Input/DatePicker.css +95 -0
  56. package/dist/assets/Input/InputDate.css +39 -0
  57. package/dist/assets/Interstitial/Interstitial-variants.css +7 -0
  58. package/dist/assets/SocialMediaBar/SocialMediaBar.css +13 -0
  59. package/dist/assets/Table/Table.css +0 -1
  60. package/dist/main.js +8 -1
  61. package/dist/utils/allowedAxosDomains.js +2 -1
  62. package/package.json +1 -1
@@ -0,0 +1,47 @@
1
+ "use client";
2
+ import { jsxs, jsx } from "react/jsx-runtime";
3
+ import { useState } from "react";
4
+ import DatePicker from "react-date-picker";
5
+ import { wrapper, labelClassName, container, iconContainer, iconInput, helperText } from "./Input.css.js";
6
+ const InputDate = (props) => {
7
+ const {
8
+ disabled,
9
+ label,
10
+ iconLeft,
11
+ iconRight,
12
+ sizes,
13
+ error = false,
14
+ helperText: helper,
15
+ variant
16
+ } = props;
17
+ const [value, onChange] = useState();
18
+ return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
19
+ label && /* @__PURE__ */ jsx(
20
+ "label",
21
+ {
22
+ className: labelClassName({ error, variant }),
23
+ htmlFor: props.name,
24
+ children: label
25
+ }
26
+ ),
27
+ /* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
28
+ iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
29
+ /* @__PURE__ */ jsx(
30
+ DatePicker,
31
+ {
32
+ dayPlaceholder: "dd",
33
+ monthPlaceholder: "mm",
34
+ yearPlaceholder: "yyyy",
35
+ minDate: /* @__PURE__ */ new Date(),
36
+ onChange,
37
+ value
38
+ }
39
+ ),
40
+ iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
41
+ ] }),
42
+ /* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
43
+ ] });
44
+ };
45
+ export {
46
+ InputDate
47
+ };
@@ -36,3 +36,9 @@ export interface RadioButtonProps extends InputProps {
36
36
  value: string | number;
37
37
  groupName: string;
38
38
  }
39
+ export interface DatepickerInputProps extends InputProps {
40
+ month?: string;
41
+ selected?: string;
42
+ show?: boolean;
43
+ onDateChange: (day: string) => void;
44
+ }
@@ -41,6 +41,8 @@ import "../../Forms/SalesforceFieldsForm.js";
41
41
  import "../../LoadingIndicator/LoadingIndicator.css.js";
42
42
  import "react-use";
43
43
  import "../../Input/RadioButton.js";
44
+ import "../../Input/RadioButton.css.js";
45
+ import "../../Input/Checkbox.css.js";
44
46
  import "iframe-resizer";
45
47
  import "../../Calculators/calculator.css.js";
46
48
  /* empty css */
@@ -43,6 +43,8 @@ import "../../Forms/Forms.css.js";
43
43
  import "../../Forms/SalesforceFieldsForm.js";
44
44
  import "../../LoadingIndicator/LoadingIndicator.css.js";
45
45
  import "../../Input/RadioButton.js";
46
+ import "../../Input/RadioButton.css.js";
47
+ import "../../Input/Checkbox.css.js";
46
48
  import "iframe-resizer";
47
49
  import "../../Calculators/calculator.css.js";
48
50
  /* empty css */
@@ -38,6 +38,8 @@ import "../Forms/Forms.css.js";
38
38
  import "../Forms/SalesforceFieldsForm.js";
39
39
  import "../LoadingIndicator/LoadingIndicator.css.js";
40
40
  import "../Input/RadioButton.js";
41
+ import "../Input/RadioButton.css.js";
42
+ import "../Input/Checkbox.css.js";
41
43
  import "iframe-resizer";
42
44
  import "../Calculators/calculator.css.js";
43
45
  /* empty css */
@@ -42,6 +42,8 @@ import "../../Forms/Forms.css.js";
42
42
  import "../../Forms/SalesforceFieldsForm.js";
43
43
  import "../../LoadingIndicator/LoadingIndicator.css.js";
44
44
  import "../../Input/RadioButton.js";
45
+ import "../../Input/RadioButton.css.js";
46
+ import "../../Input/Checkbox.css.js";
45
47
  import "iframe-resizer";
46
48
  import "../../Calculators/calculator.css.js";
47
49
  /* empty css */
@@ -40,6 +40,8 @@ import "../Forms/SalesforceFieldsForm.js";
40
40
  import "../LoadingIndicator/LoadingIndicator.css.js";
41
41
  import "react-use";
42
42
  import "../Input/RadioButton.js";
43
+ import "../Input/RadioButton.css.js";
44
+ import "../Input/Checkbox.css.js";
43
45
  import "iframe-resizer";
44
46
  import "../Calculators/calculator.css.js";
45
47
  /* empty css */
@@ -1,2 +1,3 @@
1
1
  export declare const smb_section: string;
2
2
  export declare const smb_wrapper: string;
3
+ export declare const padding_in_footer: string;
@@ -1,7 +1,9 @@
1
1
  /* empty css */
2
2
  var smb_section = "nkpt490";
3
3
  var smb_wrapper = "nkpt491";
4
+ var padding_in_footer = "nkpt492";
4
5
  export {
6
+ padding_in_footer,
5
7
  smb_section,
6
8
  smb_wrapper
7
9
  };
@@ -1 +1,7 @@
1
- export declare const SocialMediaBar: () => import("react/jsx-runtime").JSX.Element;
1
+ import { CSSProperties } from 'react';
2
+
3
+ export * from './SocialMediaBar.css';
4
+ export declare const SocialMediaBar: ({ className, style, }: {
5
+ className?: string;
6
+ style?: CSSProperties;
7
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,11 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { Facebook, Instagram, Xtwitter, Youtube, LinkedIn, Pinterest } from "./iconsRepository.js";
3
3
  import { smb_section, smb_wrapper } from "./SocialMediaBar.css.js";
4
- const SocialMediaBar = () => {
4
+ import { padding_in_footer } from "./SocialMediaBar.css.js";
5
+ const SocialMediaBar = ({
6
+ className,
7
+ style
8
+ }) => {
5
9
  const iconsToRender = [
6
10
  Facebook,
7
11
  Instagram,
@@ -16,8 +20,18 @@ const SocialMediaBar = () => {
16
20
  // i.Libsyn,
17
21
  // i.Spotify,
18
22
  ];
19
- return /* @__PURE__ */ jsx("section", { role: "contentinfo", className: smb_section, children: /* @__PURE__ */ jsx("div", { className: `containment flex center middle ${smb_wrapper}`, children: iconsToRender.map((Icon, id) => /* @__PURE__ */ jsx(Icon, {}, id)) }) });
23
+ return /* @__PURE__ */ jsx("section", { role: "contentinfo", className: smb_section, children: /* @__PURE__ */ jsx(
24
+ "div",
25
+ {
26
+ className: `containment flex center middle ${smb_wrapper} ${className}`,
27
+ style: { ...style },
28
+ children: iconsToRender.map((Icon, id) => /* @__PURE__ */ jsx(Icon, {}, id))
29
+ }
30
+ ) });
20
31
  };
21
32
  export {
22
- SocialMediaBar
33
+ SocialMediaBar,
34
+ padding_in_footer,
35
+ smb_section,
36
+ smb_wrapper
23
37
  };
@@ -9,14 +9,14 @@ export declare const TableBody: ({ children }: PropsWithChildren) => import("rea
9
9
  export declare const TableCell: ({ children, as, variant, highlighted, ...props }: CellProps) => import('react').DetailedReactHTMLElement<{
10
10
  className: string;
11
11
  manifest?: string | undefined;
12
- amp?: string | undefined;
12
+ amp?: string;
13
13
  defaultChecked?: boolean | undefined;
14
14
  defaultValue?: string | number | readonly string[] | undefined;
15
15
  suppressContentEditableWarning?: boolean | undefined;
16
16
  suppressHydrationWarning?: boolean | undefined;
17
17
  accessKey?: string | undefined;
18
18
  autoFocus?: boolean | undefined;
19
- contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
19
+ contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
20
20
  contextMenu?: string | undefined;
21
21
  dir?: string | undefined;
22
22
  draggable?: (boolean | "false" | "true") | undefined;
@@ -29,7 +29,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
29
29
  style?: import('react').CSSProperties | undefined;
30
30
  tabIndex?: number | undefined;
31
31
  title?: string | undefined;
32
- translate?: "no" | "yes" | undefined;
32
+ translate?: "yes" | "no" | undefined;
33
33
  radioGroup?: string | undefined;
34
34
  role?: import('react').AriaRole | undefined;
35
35
  about?: string | undefined;
@@ -54,38 +54,38 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
54
54
  itemRef?: string | undefined;
55
55
  results?: number | undefined;
56
56
  security?: string | undefined;
57
- unselectable?: "off" | "on" | undefined;
58
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
57
+ unselectable?: "on" | "off" | undefined;
58
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
59
59
  is?: string | undefined;
60
60
  popover?: "" | "auto" | "manual" | undefined;
61
- popoverTargetAction?: "hide" | "show" | "toggle" | undefined;
61
+ popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
62
62
  popoverTarget?: string | undefined;
63
63
  onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
64
64
  onBeforeToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
65
65
  inert?: boolean | undefined;
66
66
  "aria-activedescendant"?: string | undefined;
67
67
  "aria-atomic"?: (boolean | "false" | "true") | undefined;
68
- "aria-autocomplete"?: "none" | "both" | "inline" | "list" | undefined;
68
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
69
69
  "aria-braillelabel"?: string | undefined;
70
70
  "aria-brailleroledescription"?: string | undefined;
71
71
  "aria-busy"?: (boolean | "false" | "true") | undefined;
72
- "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
72
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
73
73
  "aria-colcount"?: number | undefined;
74
74
  "aria-colindex"?: number | undefined;
75
75
  "aria-colindextext"?: string | undefined;
76
76
  "aria-colspan"?: number | undefined;
77
77
  "aria-controls"?: string | undefined;
78
- "aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
78
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
79
79
  "aria-describedby"?: string | undefined;
80
80
  "aria-description"?: string | undefined;
81
81
  "aria-details"?: string | undefined;
82
82
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
83
- "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
83
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
84
84
  "aria-errormessage"?: string | undefined;
85
85
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
86
86
  "aria-flowto"?: string | undefined;
87
87
  "aria-grabbed"?: (boolean | "false" | "true") | undefined;
88
- "aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
88
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
89
89
  "aria-hidden"?: (boolean | "false" | "true") | undefined;
90
90
  "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
91
91
  "aria-keyshortcuts"?: string | undefined;
@@ -100,9 +100,9 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
100
100
  "aria-owns"?: string | undefined;
101
101
  "aria-placeholder"?: string | undefined;
102
102
  "aria-posinset"?: number | undefined;
103
- "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
103
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
104
104
  "aria-readonly"?: (boolean | "false" | "true") | undefined;
105
- "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
105
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
106
106
  "aria-required"?: (boolean | "false" | "true") | undefined;
107
107
  "aria-roledescription"?: string | undefined;
108
108
  "aria-rowcount"?: number | undefined;
@@ -47,9 +47,15 @@ details[open] .ph6wj62 {
47
47
  .ph6wj64 ol {
48
48
  padding-bottom: 1rem;
49
49
  }
50
+ .ph6wj64 ol ul {
51
+ padding-bottom: 0;
52
+ }
50
53
  .ph6wj64 ul {
51
54
  padding-bottom: 1rem;
52
55
  }
56
+ .ph6wj64 ul ol {
57
+ padding-bottom: 0;
58
+ }
53
59
  details summary::-webkit-details-marker {
54
60
  display: none;
55
61
  }
@@ -3,4 +3,11 @@
3
3
  height: 20px;
4
4
  border: 2px solid #8F8F8F;
5
5
  border-radius: 2px;
6
+ }
7
+ ._3tjom73 {
8
+ border: 1px solid #d4d4d4;
9
+ border-radius: 4px;
10
+ }
11
+ ._3tjom74 {
12
+ border: none;
6
13
  }
@@ -0,0 +1,95 @@
1
+ .react-date-picker {
2
+ width: 100%;
3
+ }
4
+ .react-date-picker__wrapper {
5
+ border: none !important;
6
+ }
7
+ .react-calendar__month-view__weekdays__weekday {
8
+ width: 45px;
9
+ height: 22px;
10
+ margin: 0;
11
+ display: inline-flex;
12
+ align-items: center;
13
+ font-family: var(--main-font-family);
14
+ font-weight: 500;
15
+ letter-spacing: 0.2px;
16
+ justify-content: center;
17
+ }
18
+ .react-calendar__month-view__weekdays__weekday {
19
+ font-size: 12px;
20
+ line-height: 16;
21
+ color: #2F5B88;
22
+ }
23
+ .react-calendar__month-view__weekdays__weekday > abbr {
24
+ text-decoration: none;
25
+ }
26
+ .react-calendar__month-view__days__day {
27
+ width: 49px;
28
+ height: 49px;
29
+ margin: 0;
30
+ display: inline-flex;
31
+ align-items: center;
32
+ justify-content: center;
33
+ }
34
+ .react-calendar__month-view__days__day > abbr {
35
+ font-family: var(--main-font-family) !important;
36
+ font-weight: 500;
37
+ letter-spacing: 0.2px;
38
+ color: #051A3F;
39
+ }
40
+ .react-date-picker__inputGroup__input, .react-date-picker__inputGroup__divider {
41
+ color: #5E6A74 !important;
42
+ }
43
+ .react-date-picker__clear-button {
44
+ display: none;
45
+ }
46
+ .react-calendar__navigation__label__labelText {
47
+ font-weight: 600;
48
+ font-size: 24px;
49
+ line-height: 36px;
50
+ letter-spacing: 0.2px;
51
+ color: #1E3860;
52
+ font-family: var(--header-font-family);
53
+ }
54
+ .react-datepicker-popper {
55
+ transform: translateY(40px)!important;
56
+ }
57
+ .react-calendar__month-view__days__day--neighboringMonth {
58
+ background-color: #F4F4F4 !important;
59
+ opacity: 50%;
60
+ }
61
+ .react-calendar__month-view__days__day--neighboringMonth > abbr {
62
+ color: #5E6A74;
63
+ }
64
+ .react-calendar__tile--active > abbr {
65
+ color: white;
66
+ }
67
+ .react-calendar {
68
+ border: 12px solid #FFFFFF4D !important;
69
+ border-radius: 4px;
70
+ }
71
+ .react-calendar__navigation__prev2-button, .react-calendar__navigation__next2-button {
72
+ display: none;
73
+ }
74
+ .react-date-picker__calendar {
75
+ max-width: 100% !important;
76
+ }
77
+ .react-date-picker__inputGroup__input:focus-visible {
78
+ outline: none;
79
+ }
80
+ .react-date-picker__inputGroup__input:invalid {
81
+ background: transparent !important;
82
+ }
83
+ @media screen and (max-width:320px) {
84
+ .react-calendar__month-view__weekdays__weekday {
85
+ width: 43.5px;
86
+ }
87
+ .react-calendar__month-view__days__day {
88
+ width: 43.5px;
89
+ }
90
+ }
91
+ @media screen and (max-width:400px) {
92
+ .react-calendar__navigation .react-calendar__navigation__prev-button, .react-calendar__navigation .react-calendar__navigation__next-button {
93
+ min-width: auto;
94
+ }
95
+ }
@@ -0,0 +1,39 @@
1
+ .skzved0 {
2
+ position: relative;
3
+ }
4
+ .skzved1 {
5
+ position: relative;
6
+ top: 5px;
7
+ left: 5px;
8
+ }
9
+ .skzved2 {
10
+ width: 100px;
11
+ padding-left: 5px;
12
+ padding-right: 5px;
13
+ line-height: 28px;
14
+ font-size: 14pt;
15
+ }
16
+ .skzved3 {
17
+ display: flex;
18
+ justify-content: center;
19
+ align-items: center;
20
+ }
21
+ .skzved4 {
22
+ display: block;
23
+ background: #FFFFFF;
24
+ width: 300px;
25
+ border: solid 1px #CCCCCC;
26
+ margin: 10px auto;
27
+ box-shadow: 0 0 15px 0 #C0C0C0;
28
+ font-size: 1.3rem;
29
+ text-align: center;
30
+ z-index: 999;
31
+ }
32
+ .skzved4 .skzved5 {
33
+ display: flex;
34
+ justify-content: center;
35
+ align-items: center;
36
+ color: #FFFFFF;
37
+ cursor: default;
38
+ font-weight: bold;
39
+ }
@@ -15,4 +15,11 @@
15
15
  flex-direction: column;
16
16
  gap: 1em;
17
17
  list-style: none;
18
+ }
19
+ @media screen and (max-width:400px) {
20
+ .ep91dm4 {
21
+ -webkit-padding-start: 0;
22
+ padding-inline-start: 0;
23
+ text-align: left;
24
+ }
18
25
  }
@@ -7,6 +7,9 @@
7
7
  flex-wrap: wrap;
8
8
  gap: 24px;
9
9
  }
10
+ .nkpt492 {
11
+ padding: 16px 0 3.5rem 0;
12
+ }
10
13
  .nkpt491 svg {
11
14
  max-width: 100%;
12
15
  height: auto;
@@ -32,4 +35,14 @@
32
35
  .nkpt491 {
33
36
  min-height: 104px;
34
37
  }
38
+ }
39
+ @media screen and (max-width: 1023px) {
40
+ .nkpt492 {
41
+ padding-bottom: 50px;
42
+ }
43
+ }
44
+ @media screen and (max-width: 768px) {
45
+ .nkpt492 {
46
+ padding-bottom: 30px;
47
+ }
35
48
  }
@@ -148,7 +148,6 @@ tr:last-child td {
148
148
  overflow: hidden;
149
149
  margin: auto;
150
150
  border-radius: 1rem;
151
- height: 100%;
152
151
  }
153
152
  ._1nivbwes {
154
153
  border: 1px solid var(--_1073cm87);
package/dist/main.js CHANGED
@@ -36,7 +36,7 @@ import { DownloadTile } from "./DownloadTile/index.js";
36
36
  import { ExecutiveBio } from "./ExecutiveBio/ExecutiveBio.js";
37
37
  import { bio_section_text, components, contact_col, contact_entry, contact_links, contacts, copy, description, details, header_theme, headline_setting, headshot, img_area, item_bio, job_title, media, padding, person, section_theme, shift, svg_icon } from "./ExecutiveBio/ExecutiveBio.css.js";
38
38
  import { ExecutiveBioSet } from "./ExecutiveBio/ExecutiveBioSet.js";
39
- import { AccordionItem, AccordionItemContent, AccordionItemSummary, FaqAccordion } from "./FaqAccordion/index.js";
39
+ import { AccordionCtas, AccordionItem, AccordionItemContent, AccordionItemSummary, FaqAccordion } from "./FaqAccordion/index.js";
40
40
  import { footerDisclosure, footerLink, footerParagraph, iconsContent } from "./FooterDisclosure/FooterDisclosure.css.js";
41
41
  import { FooterContent, FooterDisclosure, FooterIcons, FooterParagraph } from "./FooterDisclosure/FooterDisclosure.js";
42
42
  import { AxosFooterSiteMap } from "./FooterSiteMap/AxosBank/FooterSiteMap.js";
@@ -58,6 +58,7 @@ import { ScheduleCall } from "./Forms/ScheduleCall.js";
58
58
  import { ScheduleCallPremier } from "./Forms/ScheduleCallPremier.js";
59
59
  import { SuccesFormWrapper } from "./Forms/SuccesForm.js";
60
60
  import { WCPLSurvey } from "./Forms/WcplSurvey.js";
61
+ import { ClearingForm } from "./Forms/ClearingForm.js";
61
62
  import { HeroBanner } from "./HeroBanner/HeroBanner.js";
62
63
  import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_embedded_image, hero_img, hero_text, hero_wrapper, logout, reversed, reversed_lg_image } from "./HeroBanner/HeroBanner.css.js";
63
64
  import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
@@ -152,6 +153,7 @@ import { associatedEmail } from "./utils/EverestValidity.js";
152
153
  import { findMoreAxosDomains, isAllowedUrl } from "./utils/allowedAxosDomains.js";
153
154
  import { getVariant, getVariantWithRegex } from "./utils/getVariant.js";
154
155
  import { isAbsoluteUrl, isEmailLink, isPhoneLink, shortUrl, validateLink } from "./utils/validateExternalLinks.js";
156
+ import { padding_in_footer, smb_section, smb_wrapper } from "./SocialMediaBar/SocialMediaBar.css.js";
155
157
  export {
156
158
  default20 as AASLogo,
157
159
  default21 as AFSLogo,
@@ -161,6 +163,7 @@ export {
161
163
  default24 as AXILogo,
162
164
  default25 as AXOS,
163
165
  Accordion,
166
+ AccordionCtas,
164
167
  AccordionCtx,
165
168
  AccordionDetails,
166
169
  AccordionHeader,
@@ -196,6 +199,7 @@ export {
196
199
  Chevron,
197
200
  default8 as ChevronDown,
198
201
  default9 as ChevronUp,
202
+ ClearingForm,
199
203
  default19 as ClockIcon,
200
204
  default10 as CloseIcon,
201
205
  CollectInformationAlert,
@@ -463,6 +467,7 @@ export {
463
467
  ol,
464
468
  one_row,
465
469
  padding,
470
+ padding_in_footer,
466
471
  paragraph,
467
472
  person,
468
473
  picker_arrow,
@@ -504,6 +509,8 @@ export {
504
509
  shortUrl,
505
510
  show,
506
511
  single_container,
512
+ smb_section,
513
+ smb_wrapper,
507
514
  step_num,
508
515
  steps_wrapper,
509
516
  sticky_nav,
@@ -16,7 +16,8 @@ const moreDomains = {
16
16
  "{AFP}": process.env.AFP_URL || "https://afp.axosbank.com",
17
17
  "{INVESTORS}": process.env.INVESTORS_URL || "https://investors.axosfinancial.com",
18
18
  "{OBAXB}": process.env.ONLINEBANKING_URL || "https://onlinebanking.axosbank.com",
19
- "{UNVENROLLMENT}": String(process.env.UNVENROLLMENT_URL) || "https://enroll.axosbank.com"
19
+ "{UNVENROLLMENT}": String(process.env.UNVENROLLMENT_URL) || "https://enroll.axosbank.com",
20
+ "{AUTOAXB}": "https://auto.axosbank.com/partner/axos-purchase/AU"
20
21
  };
21
22
  const isAllowedUrl = (url) => {
22
23
  const uri = new URL(url, location.href);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axos-web-dev/shared-components",
3
3
  "description": "Axos shared components library for web.",
4
- "version": "0.0.108",
4
+ "version": "0.0.110",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",