@axos-web-dev/shared-components 0.0.100 → 0.0.102

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 (58) hide show
  1. package/dist/ATMLocator/ATMLocator.js +2 -1
  2. package/dist/Accordion/Accordion.css.d.ts +9 -9
  3. package/dist/Button/Button.js +3 -2
  4. package/dist/Calculators/Calculator.js +2 -1
  5. package/dist/Carousel/index.js +2 -1
  6. package/dist/Chevron/Chevron.interface.d.ts +1 -0
  7. package/dist/Chevron/index.js +6 -3
  8. package/dist/Comparison/Comparison.js +3 -2
  9. package/dist/Comparison/ComparisonSet.js +3 -2
  10. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -1
  11. package/dist/Forms/ApplicationStart.js +3 -2
  12. package/dist/Forms/CommercialLending.d.ts +12 -8
  13. package/dist/Forms/CommercialLending.js +177 -63
  14. package/dist/Forms/ContactCompany.js +3 -2
  15. package/dist/Forms/ContactUs.js +3 -2
  16. package/dist/Forms/ContactUsAAS.js +3 -2
  17. package/dist/Forms/ContactUsBusiness.js +4 -3
  18. package/dist/Forms/ContactUsNMLSId.js +4 -3
  19. package/dist/Forms/DealerServices.js +3 -2
  20. package/dist/Forms/EmailOnly.js +4 -3
  21. package/dist/Forms/SalesforceFieldsForm.d.ts +0 -1
  22. package/dist/Forms/ScheduleCall.js +7 -3
  23. package/dist/Forms/ScheduleCallPremier.js +3 -2
  24. package/dist/Forms/SuccesForm.js +2 -1
  25. package/dist/Forms/WcplSurvey.js +3 -2
  26. package/dist/Hyperlink/Hyperlink.interface.d.ts +1 -0
  27. package/dist/Hyperlink/index.js +5 -2
  28. package/dist/IconBillboard/IconBillboard.js +4 -1
  29. package/dist/IconBillboard/IconBillboardSet.js +4 -1
  30. package/dist/ImageBillboard/ImageBillboard.js +10 -6
  31. package/dist/ImageBillboard/ImageBillboardSet.js +10 -1
  32. package/dist/ImageLink/ImageLink.js +3 -2
  33. package/dist/ImageLink/ImageLinkSet.js +2 -1
  34. package/dist/ImageLink/index.js +2 -1
  35. package/dist/Input/Checkbox.d.ts +1 -1
  36. package/dist/Input/CurrencyInput.js +3 -2
  37. package/dist/Input/DatePicker.css.d.ts +1 -0
  38. package/dist/Input/DatePicker.css.js +6 -0
  39. package/dist/Input/Datepicker.d.ts +3 -0
  40. package/dist/Input/Datepicker.js +47 -0
  41. package/dist/Input/InputDate.css.d.ts +6 -0
  42. package/dist/Input/InputDate.css.js +15 -0
  43. package/dist/Input/InputDate.d.ts +3 -0
  44. package/dist/Input/InputDate.js +47 -0
  45. package/dist/Input/InputPhone.js +3 -2
  46. package/dist/Input/InputProps.d.ts +6 -0
  47. package/dist/Input/index.d.ts +3 -0
  48. package/dist/Input/index.js +6 -0
  49. package/dist/Modal/Modal.js +3 -2
  50. package/dist/NavigationMenu/AxosAdvisorServices/SubNavBar.js +1 -1
  51. package/dist/NavigationMenu/AxosAdvisorServices/index.js +7 -89
  52. package/dist/NavigationMenu/AxosBank/SubNavBar.js +2 -1
  53. package/dist/SetContainer/SetContainer.js +3 -2
  54. package/dist/Table/Table.d.ts +13 -13
  55. package/dist/assets/Input/DatePicker.css +95 -0
  56. package/dist/assets/Input/InputDate.css +39 -0
  57. package/dist/main.js +6 -0
  58. package/package.json +1 -1
@@ -25,11 +25,12 @@ import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
25
25
  import "@hookform/resolvers/zod";
26
26
  import "../Input/Checkbox.js";
27
27
  import "../Input/CurrencyInput.js";
28
- import "../Input/Dropdown.js";
28
+ import "../Input/Input.css.js";
29
29
  /* empty css */
30
+ /* empty css */
31
+ import "../Input/Dropdown.js";
30
32
  /* empty css */
31
33
  import "../Input/Input.js";
32
- import "../Input/Input.css.js";
33
34
  import "../Input/InputPhone.js";
34
35
  import "../Input/InputTextArea.js";
35
36
  import "react-hook-form";
@@ -22,7 +22,7 @@ function SubNavBar() {
22
22
  ].some((el) => pathname?.includes(el))
23
23
  );
24
24
  }, [pathname]);
25
- return showNavbar ? /* @__PURE__ */ jsx("div", { className: `${styles.sub_nav} ${sub_nav}`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsx("div", { className: styles.header_sub_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
25
+ return showNavbar ? /* @__PURE__ */ jsx("div", { className: `${styles.sub_nav} ${sub_nav} ${styles.desktop_only}`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsx("div", { className: styles.header_sub_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
26
26
  pathname?.includes("/scale-your-business") && scaleYourBusiness.length > 0 && scaleYourBusiness?.map(
27
27
  (item) => /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx("a", { href: item.url, role: "menuitem", children: item.name }) }, `snb-${item.id}`)
28
28
  ),
@@ -21,11 +21,9 @@ function NavBar() {
21
21
  const signInToggle = () => setisOpenSignInToggle(!isOpenSignInToggle);
22
22
  const mobileToggle = () => setisOpenMobile(!isOpenMobile);
23
23
  const handleClick = (index) => setActiveIndex(index);
24
- const [isOpenProducts1, setisOpenProducts1] = useState(false);
25
24
  const [isOpenProducts2, setisOpenProducts2] = useState(false);
26
25
  const [isOpenProducts3, setisOpenProducts3] = useState(false);
27
26
  const [isOpenProducts4, setisOpenProducts4] = useState(false);
28
- const toggleProducts1 = () => setisOpenProducts1(!isOpenProducts1);
29
27
  const toggleProducts2 = () => setisOpenProducts2(!isOpenProducts2);
30
28
  const toggleProducts3 = () => setisOpenProducts3(!isOpenProducts3);
31
29
  const toggleProducts4 = () => setisOpenProducts4(!isOpenProducts4);
@@ -228,68 +226,15 @@ function NavBar() {
228
226
  ) })
229
227
  ] }),
230
228
  /* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded": isOpenMobile, children: [
231
- /* @__PURE__ */ jsxs(
232
- "li",
229
+ /* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx(
230
+ "a",
233
231
  {
234
- className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
235
- id: "dd_1",
236
- children: [
237
- /* @__PURE__ */ jsxs(
238
- "a",
239
- {
240
- href: "#",
241
- onClick: toggleProducts1,
242
- role: "button",
243
- className: clsx("flex_row", "between"),
244
- children: [
245
- "Scale Your Business",
246
- /* @__PURE__ */ jsx(
247
- "span",
248
- {
249
- className: clsx(
250
- styles.icon_wrap,
251
- isOpenProducts1 && styles.open
252
- ),
253
- children: /* @__PURE__ */ jsx(
254
- "svg",
255
- {
256
- xmlns: "http://www.w3.org/2000/svg",
257
- width: "24",
258
- height: "24",
259
- viewBox: "0 0 24 24",
260
- fill: "none",
261
- children: /* @__PURE__ */ jsx(
262
- "path",
263
- {
264
- d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
265
- fill: "#4A5560"
266
- }
267
- )
268
- }
269
- )
270
- }
271
- )
272
- ]
273
- }
274
- ),
275
- /* @__PURE__ */ jsx(
276
- "div",
277
- {
278
- className: clsx(styles.sub_menu, isOpenProducts1 && expand),
279
- children: /* @__PURE__ */ jsx(
280
- "a",
281
- {
282
- href: "/scale-your-business",
283
- className: styles.main,
284
- role: "heading",
285
- children: "Scale Your Business Home"
286
- }
287
- )
288
- }
289
- )
290
- ]
232
+ href: "/scale-your-business",
233
+ role: "button",
234
+ className: "flex_row between",
235
+ children: "Scale Your Business"
291
236
  }
292
- ),
237
+ ) }),
293
238
  /* @__PURE__ */ jsxs(
294
239
  "li",
295
240
  {
@@ -339,15 +284,6 @@ function NavBar() {
339
284
  {
340
285
  className: clsx(styles.sub_menu, isOpenProducts2 && expand),
341
286
  children: [
342
- /* @__PURE__ */ jsx(
343
- "a",
344
- {
345
- href: "/serve-your-clients",
346
- className: styles.main,
347
- role: "heading",
348
- children: "Serve Your Clients Home"
349
- }
350
- ),
351
287
  /* @__PURE__ */ jsx("a", { href: "/cash-management-solutions", role: "menuitem", children: "Cash Management Solutions" }),
352
288
  /* @__PURE__ */ jsx(
353
289
  "a",
@@ -420,15 +356,6 @@ function NavBar() {
420
356
  {
421
357
  className: clsx(styles.sub_menu, isOpenProducts3 && expand),
422
358
  children: [
423
- /* @__PURE__ */ jsx(
424
- "a",
425
- {
426
- href: "/optimize-operations",
427
- className: styles.main,
428
- role: "heading",
429
- children: "Optimize Operations Home"
430
- }
431
- ),
432
359
  /* @__PURE__ */ jsx(
433
360
  "a",
434
361
  {
@@ -500,15 +427,6 @@ function NavBar() {
500
427
  {
501
428
  className: clsx(styles.sub_menu, isOpenProducts4 && expand),
502
429
  children: [
503
- /* @__PURE__ */ jsx(
504
- "a",
505
- {
506
- href: "/axos-advantage",
507
- className: styles.main,
508
- role: "heading",
509
- children: "Axos Advantage Home"
510
- }
511
- ),
512
430
  /* @__PURE__ */ jsx("a", { href: "/axos-advantage/about-axos", role: "menuitem", children: "About AXOS" }),
513
431
  /* @__PURE__ */ jsx(
514
432
  "a",
@@ -30,10 +30,11 @@ import "../../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
30
30
  import "@hookform/resolvers/zod";
31
31
  import "../../Input/Checkbox.js";
32
32
  import "../../Input/CurrencyInput.js";
33
+ import "../../Input/Input.css.js";
34
+ /* empty css */
33
35
  import "../../Input/Dropdown.js";
34
36
  /* empty css */
35
37
  import "../../Input/Input.js";
36
- import "../../Input/Input.css.js";
37
38
  import "../../Input/InputPhone.js";
38
39
  import "../../Input/InputTextArea.js";
39
40
  import "react-hook-form";
@@ -27,15 +27,17 @@ import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
27
27
  import "@hookform/resolvers/zod";
28
28
  import "../Input/Checkbox.js";
29
29
  import "../Input/CurrencyInput.js";
30
+ import "../Input/Input.css.js";
31
+ /* empty css */
30
32
  import "../Input/Dropdown.js";
31
33
  /* empty css */
32
34
  import "../Input/Input.js";
33
- import "../Input/Input.css.js";
34
35
  import "../Input/InputPhone.js";
35
36
  import "../Input/InputTextArea.js";
36
37
  import "react-hook-form";
37
38
  import "../Forms/Forms.css.js";
38
39
  import "../Forms/SalesforceFieldsForm.js";
40
+ import "react-use";
39
41
  import "../LoadingIndicator/LoadingIndicator.css.js";
40
42
  import "../Input/RadioButton.js";
41
43
  import "iframe-resizer";
@@ -65,7 +67,6 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
65
67
  import "../Chevron/Chevron.css.js";
66
68
  /* empty css */
67
69
  import "../Modal/contextApi/store.js";
68
- import "react-use";
69
70
  /* empty css */
70
71
  /* empty css */
71
72
  /* empty css */
@@ -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;
@@ -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
+ }
package/dist/main.js CHANGED
@@ -99,10 +99,13 @@ import "react";
99
99
  import { ImageLinkSet } from "./ImageLink/ImageLinkSet.js";
100
100
  import { Checkbox } from "./Input/Checkbox.js";
101
101
  import { CurrencyInput } from "./Input/CurrencyInput.js";
102
+ import { DatePickerInput } from "./Input/Datepicker.js";
103
+ import { datePicker } from "./Input/DatePicker.css.js";
102
104
  import { Dropdown } from "./Input/Dropdown.js";
103
105
  import { selectInput } from "./Input/Dropdown.css.js";
104
106
  import { Input } from "./Input/Input.js";
105
107
  import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input/Input.css.js";
108
+ import { InputDate } from "./Input/InputDate.js";
106
109
  import { InputPhone } from "./Input/InputPhone.js";
107
110
  import { InputTextArea } from "./Input/InputTextArea.js";
108
111
  import { Interstitial } from "./Interstitial/Interstitial.js";
@@ -202,6 +205,7 @@ export {
202
205
  ContactUsNMLSId,
203
206
  ContentBanner,
204
207
  CurrencyInput,
208
+ DatePickerInput,
205
209
  DealerServices,
206
210
  default11 as DownloadIcon,
207
211
  DownloadTile,
@@ -228,6 +232,7 @@ export {
228
232
  ImageBillboardSet,
229
233
  ImageLinkSet,
230
234
  Input,
235
+ InputDate,
231
236
  InputPhone,
232
237
  InputTextArea,
233
238
  Interstitial,
@@ -345,6 +350,7 @@ export {
345
350
  containment,
346
351
  content,
347
352
  copy,
353
+ datePicker,
348
354
  description,
349
355
  descriptionField,
350
356
  details,
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.100",
4
+ "version": "0.0.102",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",