@axos-web-dev/shared-components 0.0.119 → 0.0.120

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 (53) hide show
  1. package/dist/ATMLocator/ATMLocator.js +1 -0
  2. package/dist/Article/Article.js +8 -4
  3. package/dist/Button/Button.js +3 -2
  4. package/dist/Calculators/Calculator.js +1 -0
  5. package/dist/Carousel/index.js +5 -4
  6. package/dist/Chevron/index.js +3 -2
  7. package/dist/Comparison/Comparison.js +1 -0
  8. package/dist/FaqAccordion/index.js +1 -0
  9. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +4 -3
  10. package/dist/Forms/ContactUsBusiness.js +4 -3
  11. package/dist/Forms/ContactUsNMLSId.js +4 -3
  12. package/dist/Forms/DealerServices.d.ts +1 -1
  13. package/dist/Forms/DealerServices.js +12 -8
  14. package/dist/Forms/EmailOnly.js +4 -3
  15. package/dist/Forms/ScheduleCall.js +1 -0
  16. package/dist/Forms/ScheduleCallPremier.js +1 -0
  17. package/dist/Forms/SuccesForm.js +1 -0
  18. package/dist/Hyperlink/index.js +4 -3
  19. package/dist/ImageLink/ImageLink.js +1 -0
  20. package/dist/ImageLink/ImageLinkSet.d.ts +1 -0
  21. package/dist/ImageLink/ImageLinkSet.js +3 -1
  22. package/dist/ImageLink/index.js +4 -3
  23. package/dist/Input/InputProps.d.ts +0 -6
  24. package/dist/Insight/Featured/CategorySelector.js +1 -0
  25. package/dist/Insight/Featured/Featured.js +5 -4
  26. package/dist/Modal/Modal.js +4 -3
  27. package/dist/NavigationMenu/AxosBank/NavData.js +4 -3
  28. package/dist/NavigationMenu/AxosBank/SubNavBar.js +4 -3
  29. package/dist/NavigationMenu/AxosBank/index.js +1 -0
  30. package/dist/SetContainer/SetContainer.js +1 -0
  31. package/dist/VideoTile/VideoInit.js +2 -1
  32. package/dist/VideoWrapper/index.js +1 -0
  33. package/dist/assets/PageNavItem/PageNavItem.css +1 -0
  34. package/dist/assets/PageNavSet/PageNavigationSet.css +1 -1
  35. package/dist/assets/SetContainer/SetContainer.css +0 -1
  36. package/dist/assets/Table/Table.css +8 -4
  37. package/dist/assets/VideoTile/VideoTile.css +5 -0
  38. package/dist/utils/allowedAxosDomains.js +2 -1
  39. package/package.json +17 -17
  40. package/dist/Forms/BlendPurchase.d.ts +0 -11
  41. package/dist/Forms/BlendPurchase.js +0 -215
  42. package/dist/Forms/BlendRefinance.d.ts +0 -11
  43. package/dist/Forms/BlendRefinance.js +0 -215
  44. package/dist/Input/DatePicker.css.d.ts +0 -1
  45. package/dist/Input/DatePicker.css.js +0 -6
  46. package/dist/Input/Datepicker.d.ts +0 -3
  47. package/dist/Input/Datepicker.js +0 -47
  48. package/dist/Input/InputDate.css.d.ts +0 -6
  49. package/dist/Input/InputDate.css.js +0 -15
  50. package/dist/Input/InputDate.d.ts +0 -3
  51. package/dist/Input/InputDate.js +0 -47
  52. package/dist/assets/Input/DatePicker.css +0 -95
  53. package/dist/assets/Input/InputDate.css +0 -39
@@ -1,47 +0,0 @@
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 DatePickerInput = (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
- DatePickerInput
47
- };
@@ -1,6 +0,0 @@
1
- export declare const calendarContainer: string;
2
- export declare const calendarIcon: string;
3
- export declare const inputDate: string;
4
- export declare const verticalCenter: string;
5
- export declare const calendar: string;
6
- export declare const headerCalendar: string;
@@ -1,15 +0,0 @@
1
- /* empty css */
2
- var calendarContainer = "skzved0";
3
- var calendarIcon = "skzved1";
4
- var inputDate = "skzved2";
5
- var verticalCenter = "skzved3";
6
- var calendar = "skzved4";
7
- var headerCalendar = "skzved5";
8
- export {
9
- calendar,
10
- calendarContainer,
11
- calendarIcon,
12
- headerCalendar,
13
- inputDate,
14
- verticalCenter
15
- };
@@ -1,3 +0,0 @@
1
- import { DatepickerInputProps } from './InputProps';
2
-
3
- export declare const InputDate: (props: DatepickerInputProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,47 +0,0 @@
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
- };
@@ -1,95 +0,0 @@
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
- }
@@ -1,39 +0,0 @@
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
- }