@axos-web-dev/shared-components 0.0.103 → 0.0.104
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/ATMLocator/ATMLocator.js +2 -1
- package/dist/Accordion/Accordion.css.d.ts +9 -9
- package/dist/Button/Button.js +3 -2
- package/dist/Calculators/Calculator.js +2 -1
- package/dist/Carousel/index.js +2 -1
- package/dist/Chevron/index.js +3 -2
- package/dist/Comparison/Comparison.js +3 -2
- package/dist/Comparison/ComparisonSet.js +3 -2
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -1
- package/dist/Forms/ApplicationStart.js +3 -2
- package/dist/Forms/CommercialLending.d.ts +12 -8
- package/dist/Forms/CommercialLending.js +177 -63
- package/dist/Forms/ContactCompany.js +3 -2
- package/dist/Forms/ContactUs.js +3 -2
- package/dist/Forms/ContactUsAAS.js +3 -2
- package/dist/Forms/ContactUsBusiness.js +4 -3
- package/dist/Forms/ContactUsNMLSId.js +4 -3
- package/dist/Forms/DealerServices.js +3 -2
- package/dist/Forms/EmailOnly.js +4 -3
- package/dist/Forms/SalesforceFieldsForm.d.ts +0 -1
- package/dist/Forms/ScheduleCall.js +7 -3
- package/dist/Forms/ScheduleCallPremier.js +3 -2
- package/dist/Forms/SuccesForm.js +2 -1
- package/dist/Forms/WcplSurvey.js +3 -2
- package/dist/Hyperlink/index.js +2 -1
- package/dist/ImageLink/ImageLink.js +3 -2
- package/dist/ImageLink/ImageLinkSet.js +2 -1
- package/dist/ImageLink/index.js +2 -1
- package/dist/Input/Checkbox.d.ts +1 -1
- package/dist/Input/CurrencyInput.js +3 -2
- package/dist/Input/DatePicker.css.d.ts +1 -0
- package/dist/Input/DatePicker.css.js +6 -0
- package/dist/Input/Datepicker.d.ts +3 -0
- package/dist/Input/Datepicker.js +47 -0
- package/dist/Input/InputDate.css.d.ts +6 -0
- package/dist/Input/InputDate.css.js +15 -0
- package/dist/Input/InputDate.d.ts +3 -0
- package/dist/Input/InputDate.js +47 -0
- package/dist/Input/InputPhone.js +3 -2
- package/dist/Input/InputProps.d.ts +6 -0
- package/dist/Input/index.d.ts +3 -0
- package/dist/Input/index.js +6 -0
- package/dist/Modal/Modal.js +3 -2
- package/dist/NavigationMenu/AxosAdvisorServices/index.js +3 -0
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +2 -1
- package/dist/SetContainer/SetContainer.js +3 -2
- package/dist/Table/Table.d.ts +13 -13
- package/dist/assets/Input/DatePicker.css +95 -0
- package/dist/assets/Input/InputDate.css +39 -0
- package/dist/main.js +6 -0
- package/package.json +1 -1
package/dist/Table/Table.d.ts
CHANGED
|
@@ -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
|
|
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?:
|
|
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?: "
|
|
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?: "
|
|
58
|
-
inputMode?: "
|
|
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?: "
|
|
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" | "
|
|
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 | "
|
|
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 | "
|
|
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"?: "
|
|
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 | "
|
|
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 | "
|
|
103
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
104
104
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
105
|
-
"aria-relevant"?: "
|
|
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,
|