@axos-web-dev/shared-components 0.0.90 → 0.0.92
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.d.ts +4 -2
- package/dist/ATMLocator/ATMLocator.js +124 -18
- package/dist/Accordion/Accordion.css.d.ts +9 -9
- package/dist/Calculators/Calculator.js +14 -4
- package/dist/CallToActionBar/index.js +47 -30
- package/dist/Carousel/index.js +12 -11
- package/dist/Chevron/index.js +17 -16
- package/dist/Comparison/Comparison.js +15 -14
- package/dist/Comparison/ComparisonSet.js +20 -19
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +19 -18
- package/dist/Forms/ApplicationStart.js +2 -3
- package/dist/Forms/CommercialLending.js +2 -3
- package/dist/Forms/ContactCompany.js +2 -3
- package/dist/Forms/ContactUs.js +2 -3
- package/dist/Forms/ContactUsAAS.js +2 -3
- package/dist/Forms/ContactUsBusiness.js +17 -16
- package/dist/Forms/ContactUsNMLSId.js +17 -16
- package/dist/Forms/DealerServices.js +2 -3
- package/dist/Forms/EmailOnly.js +17 -16
- package/dist/Forms/SalesforceFieldsForm.d.ts +1 -0
- package/dist/Forms/ScheduleCall.js +3 -7
- package/dist/Forms/ScheduleCallPremier.js +2 -3
- package/dist/Forms/SuccesForm.js +13 -12
- package/dist/Forms/WcplSurvey.js +2 -3
- package/dist/Hyperlink/index.js +20 -19
- package/dist/ImageLink/ImageLink.js +13 -12
- package/dist/ImageLink/ImageLinkSet.js +11 -10
- package/dist/ImageLink/index.js +18 -17
- package/dist/Input/Checkbox.d.ts +1 -1
- package/dist/Input/CurrencyInput.js +2 -3
- package/dist/Input/InputPhone.js +2 -3
- package/dist/Input/InputProps.d.ts +0 -6
- package/dist/Input/index.d.ts +0 -3
- package/dist/Input/index.js +0 -6
- package/dist/Modal/Modal.js +16 -15
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1927 -1755
- package/dist/NavigationMenu/AxosBank/index.js +8 -15
- package/dist/NavigationMenu/AxosClearing/NavBar.css.d.ts +1 -0
- package/dist/NavigationMenu/AxosClearing/NavBar.css.js +5 -0
- package/dist/NavigationMenu/AxosClearing/NavBar.module.js +98 -0
- package/dist/NavigationMenu/AxosClearing/NavData.d.ts +21 -0
- package/dist/NavigationMenu/AxosClearing/NavData.js +63 -0
- package/dist/NavigationMenu/AxosClearing/SubNavBar.d.ts +1 -0
- package/dist/NavigationMenu/AxosClearing/SubNavBar.js +56 -0
- package/dist/NavigationMenu/AxosClearing/index.d.ts +2 -0
- package/dist/NavigationMenu/AxosClearing/index.js +470 -0
- package/dist/NavigationMenu/index.d.ts +1 -0
- package/dist/NavigationMenu/index.js +5 -3
- package/dist/SetContainer/SetContainer.js +13 -12
- package/dist/Table/Table.d.ts +22 -9
- package/dist/TopicalNavSet/TopicalNavSet.js +3 -3
- package/dist/assets/CallToActionBar/CallToActionBar.css +3 -1
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +126 -124
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css +4 -0
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +405 -0
- package/dist/assets/Table/Table.css +1 -1
- package/dist/assets/globals.css +71 -0
- package/dist/icons/Clock/index.d.ts +4 -0
- package/dist/icons/Clock/index.js +22 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +14 -12
- package/dist/main.js +52 -54
- package/dist/utils/allowedAxosDomains.js +3 -1
- package/package.json +1 -1
- package/dist/Input/DatePicker.css.d.ts +0 -1
- package/dist/Input/DatePicker.css.js +0 -6
- package/dist/Input/Datepicker.d.ts +0 -3
- package/dist/Input/Datepicker.js +0 -47
- package/dist/Input/InputDate.css.d.ts +0 -6
- package/dist/Input/InputDate.css.js +0 -15
- package/dist/Input/InputDate.d.ts +0 -3
- package/dist/Input/InputDate.js +0 -47
- package/dist/assets/Input/DatePicker.css +0 -95
- package/dist/assets/Input/InputDate.css +0 -39
package/dist/main.js
CHANGED
|
@@ -74,13 +74,10 @@ import "react";
|
|
|
74
74
|
import { ImageLinkSet } from "./ImageLink/ImageLinkSet.js";
|
|
75
75
|
import { Checkbox } from "./Input/Checkbox.js";
|
|
76
76
|
import { CurrencyInput } from "./Input/CurrencyInput.js";
|
|
77
|
-
import { DatePickerInput } from "./Input/Datepicker.js";
|
|
78
|
-
import { datePicker } from "./Input/DatePicker.css.js";
|
|
79
77
|
import { Dropdown } from "./Input/Dropdown.js";
|
|
80
78
|
import { selectInput } from "./Input/Dropdown.css.js";
|
|
81
79
|
import { Input } from "./Input/Input.js";
|
|
82
80
|
import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input/Input.css.js";
|
|
83
|
-
import { InputDate } from "./Input/InputDate.js";
|
|
84
81
|
import { InputPhone } from "./Input/InputPhone.js";
|
|
85
82
|
import { InputTextArea } from "./Input/InputTextArea.js";
|
|
86
83
|
import { Interstitial } from "./Interstitial/index.js";
|
|
@@ -93,7 +90,8 @@ import { GlobalContext, GlobalContextProvider, useGlobalContext } from "./Modal/
|
|
|
93
90
|
import { default as default2 } from "./NavigationMenu/AxosAdvisor/index.js";
|
|
94
91
|
import { default as default3 } from "./NavigationMenu/AxosAdvisorServices/index.js";
|
|
95
92
|
import { default as default4 } from "./NavigationMenu/AxosBank/index.js";
|
|
96
|
-
import { default as default5 } from "./NavigationMenu/
|
|
93
|
+
import { default as default5 } from "./NavigationMenu/AxosClearing/index.js";
|
|
94
|
+
import { default as default6 } from "./NavigationMenu/AxosFiduciary/index.js";
|
|
97
95
|
import { SecondaryFooter } from "./SecondaryFooter/index.js";
|
|
98
96
|
import { SocialMediaBar } from "./SocialMediaBar/index.js";
|
|
99
97
|
import { StepItem } from "./StepItem/StepItem.js";
|
|
@@ -112,30 +110,31 @@ import { VideoInit } from "./VideoTile/VideoInit.js";
|
|
|
112
110
|
import { VideoTile } from "./VideoTile/VideoTile.js";
|
|
113
111
|
import { expand_icon, hide_transcript, item, mb_8, show, toggle_container, transcript_btn, transcript_container, transcript_content, video_container, video_title, vidyard_height, w_100 } from "./VideoTile/VideoTile.css.js";
|
|
114
112
|
import { VideoWrapper } from "./VideoWrapper/index.js";
|
|
115
|
-
import { default as
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
118
|
-
import { default as
|
|
119
|
-
import { default as
|
|
120
|
-
import { default as
|
|
121
|
-
import { default as
|
|
122
|
-
import { default as
|
|
123
|
-
import { default as
|
|
124
|
-
import { default as
|
|
125
|
-
import { default as
|
|
126
|
-
import { default as
|
|
127
|
-
import { default as
|
|
128
|
-
import { default as
|
|
129
|
-
import { default as
|
|
130
|
-
import { default as
|
|
131
|
-
import { default as
|
|
113
|
+
import { default as default7 } from "./icons/ArrowIcon/index.js";
|
|
114
|
+
import { default as default8 } from "./icons/AxosX/index.js";
|
|
115
|
+
import { default as default9 } from "./icons/AxosX/Blue.js";
|
|
116
|
+
import { default as default10 } from "./icons/CheckCircle.js";
|
|
117
|
+
import { default as default11 } from "./icons/CheckCircleLight.js";
|
|
118
|
+
import { default as default12 } from "./icons/CheckIcon/index.js";
|
|
119
|
+
import { default as default13 } from "./icons/ChevronDown.js";
|
|
120
|
+
import { default as default14 } from "./icons/ChevronUp.js";
|
|
121
|
+
import { default as default15 } from "./icons/CloseIcon/index.js";
|
|
122
|
+
import { default as default16 } from "./icons/DownloadIcon/index.js";
|
|
123
|
+
import { default as default17 } from "./icons/EqualHousingLender.js";
|
|
124
|
+
import { default as default18 } from "./icons/FollowIcon/index.js";
|
|
125
|
+
import { default as default19 } from "./icons/LockIcon/index.js";
|
|
126
|
+
import { default as default20 } from "./icons/MemberFdicLogo.js";
|
|
127
|
+
import { default as default21 } from "./icons/QuoteIconGrey.js";
|
|
128
|
+
import { default as default22 } from "./icons/QuoteIconWhite.js";
|
|
129
|
+
import { default as default23 } from "./icons/QuoteIconYellow.js";
|
|
132
130
|
import { SvgWarningIcon } from "./icons/WarningIcon/index.js";
|
|
133
|
-
import { default as
|
|
134
|
-
import { default as
|
|
135
|
-
import { default as
|
|
136
|
-
import { default as
|
|
137
|
-
import { default as
|
|
138
|
-
import { default as
|
|
131
|
+
import { default as default24 } from "./icons/Clock/index.js";
|
|
132
|
+
import { default as default25 } from "./icons/Logos/AAS.js";
|
|
133
|
+
import { default as default26 } from "./icons/Logos/AFS.js";
|
|
134
|
+
import { default as default27 } from "./icons/Logos/AXA.js";
|
|
135
|
+
import { default as default28 } from "./icons/Logos/AXC.js";
|
|
136
|
+
import { default as default29 } from "./icons/Logos/AXI.js";
|
|
137
|
+
import { default as default30 } from "./icons/Logos/AXOS.js";
|
|
139
138
|
import { axosTheme, vars } from "./themes/axos.css.js";
|
|
140
139
|
import { premierTheme } from "./themes/premier.css.js";
|
|
141
140
|
import { Tab } from "./Tab/Tab.js";
|
|
@@ -145,13 +144,13 @@ import { findMoreAxosDomains, isAllowedUrl } from "./utils/allowedAxosDomains.js
|
|
|
145
144
|
import { getVariant, getVariantWithRegex } from "./utils/getVariant.js";
|
|
146
145
|
import { isAbsoluteUrl, isEmailLink, isPhoneLink, shortUrl, validateLink } from "./utils/validateExternalLinks.js";
|
|
147
146
|
export {
|
|
148
|
-
|
|
149
|
-
|
|
147
|
+
default25 as AASLogo,
|
|
148
|
+
default26 as AFSLogo,
|
|
150
149
|
ATMLocator,
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
150
|
+
default27 as AXALogo,
|
|
151
|
+
default28 as AXCLogo,
|
|
152
|
+
default29 as AXILogo,
|
|
153
|
+
default30 as AXOS,
|
|
155
154
|
Accordion,
|
|
156
155
|
AccordionCtx,
|
|
157
156
|
AccordionDetails,
|
|
@@ -163,15 +162,15 @@ export {
|
|
|
163
162
|
AnnualFeeCalculator,
|
|
164
163
|
ApplicationStart,
|
|
165
164
|
ApyCalculator,
|
|
166
|
-
|
|
165
|
+
default7 as ArrowIcon,
|
|
167
166
|
Article,
|
|
168
167
|
ArticlesSet,
|
|
169
168
|
Avatar,
|
|
170
169
|
AwardsBanner,
|
|
171
170
|
AwardsItem,
|
|
172
171
|
AxosFooterSiteMap,
|
|
173
|
-
|
|
174
|
-
|
|
172
|
+
default8 as AxosX,
|
|
173
|
+
default9 as AxosXBlue,
|
|
175
174
|
BalanceAPYCalculator,
|
|
176
175
|
Blockquote,
|
|
177
176
|
BulletItem,
|
|
@@ -180,14 +179,15 @@ export {
|
|
|
180
179
|
CallToActionBar,
|
|
181
180
|
Carousel,
|
|
182
181
|
CarouselSlide,
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
182
|
+
default10 as CheckCircle,
|
|
183
|
+
default11 as CheckCircleLight,
|
|
184
|
+
default12 as CheckIcon,
|
|
186
185
|
Checkbox,
|
|
187
186
|
Chevron,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
187
|
+
default13 as ChevronDown,
|
|
188
|
+
default14 as ChevronUp,
|
|
189
|
+
default24 as ClockIcon,
|
|
190
|
+
default15 as CloseIcon,
|
|
191
191
|
CollectInformationAlert,
|
|
192
192
|
CommercialLending,
|
|
193
193
|
ComparisonSet,
|
|
@@ -198,18 +198,17 @@ export {
|
|
|
198
198
|
ContactUsNMLSId,
|
|
199
199
|
ContentBanner,
|
|
200
200
|
CurrencyInput,
|
|
201
|
-
DatePickerInput,
|
|
202
201
|
DealerServices,
|
|
203
|
-
|
|
202
|
+
default16 as DownloadIcon,
|
|
204
203
|
DownloadTile,
|
|
205
204
|
Dropdown,
|
|
206
205
|
EmailOnly,
|
|
207
206
|
EmailUs,
|
|
208
|
-
|
|
207
|
+
default17 as EqualHousingLender,
|
|
209
208
|
ExecutiveBio,
|
|
210
209
|
ExecutiveBioSet,
|
|
211
210
|
FaqAccordion,
|
|
212
|
-
|
|
211
|
+
default18 as FollowIcon,
|
|
213
212
|
FooterContent,
|
|
214
213
|
FooterDisclosure,
|
|
215
214
|
FooterIcons,
|
|
@@ -225,26 +224,26 @@ export {
|
|
|
225
224
|
ImageBillboardSet,
|
|
226
225
|
ImageLinkSet,
|
|
227
226
|
Input,
|
|
228
|
-
InputDate,
|
|
229
227
|
InputPhone,
|
|
230
228
|
InputTextArea,
|
|
231
229
|
Interstitial,
|
|
232
230
|
LandingPageHeader,
|
|
233
231
|
LoadingIndicator,
|
|
234
|
-
|
|
232
|
+
default19 as LockIcon,
|
|
235
233
|
MainHTML,
|
|
236
234
|
MarginTradingCalculator,
|
|
237
235
|
MaxLoanCalculator,
|
|
238
|
-
|
|
236
|
+
default20 as MemberFdicLogo,
|
|
239
237
|
Modal,
|
|
240
238
|
MonthlyPaymentCalculator,
|
|
241
239
|
default3 as NavBarAAS,
|
|
242
|
-
|
|
240
|
+
default6 as NavBarAFS,
|
|
243
241
|
default2 as NavBarAXA,
|
|
244
242
|
default4 as NavBarAXB,
|
|
245
|
-
|
|
246
|
-
default21 as
|
|
247
|
-
default22 as
|
|
243
|
+
default5 as NavBarAXC,
|
|
244
|
+
default21 as QuoteIconGrey,
|
|
245
|
+
default22 as QuoteIconWhite,
|
|
246
|
+
default23 as QuoteIconYellow,
|
|
248
247
|
SalesforceFieldsForm,
|
|
249
248
|
SalesforceSchema,
|
|
250
249
|
ScheduleCall,
|
|
@@ -339,7 +338,6 @@ export {
|
|
|
339
338
|
containerIconBillboard,
|
|
340
339
|
content,
|
|
341
340
|
copy,
|
|
342
|
-
datePicker,
|
|
343
341
|
description,
|
|
344
342
|
descriptionField,
|
|
345
343
|
details,
|
|
@@ -3,6 +3,7 @@ const moreDomains = {
|
|
|
3
3
|
"{AXOSBANK}": "https://www.axosbank.com",
|
|
4
4
|
"{AXOSCLEARING}": "https://axosclearing.com",
|
|
5
5
|
"{AAS}": "https://www.axosadvisorservices.com",
|
|
6
|
+
"{AFS}": "https://www.axosfiduciaryservices.com",
|
|
6
7
|
"{NATIONWIDE}": "https://www.nationwide.axosbank.com",
|
|
7
8
|
"{ENROLLMENT}": "https://enrollment.axosbank.com",
|
|
8
9
|
"{ASSETSURL}": "https://assets.axos.com",
|
|
@@ -12,7 +13,8 @@ const moreDomains = {
|
|
|
12
13
|
"{ARMS}": "https://arms.axosadvisor.com",
|
|
13
14
|
"{APPS}": "https://apps.axosbank.com",
|
|
14
15
|
"{AFP}": "https://afp.axosbank.com",
|
|
15
|
-
"{INVESTORS}": "https://investors.axosfinancial.com"
|
|
16
|
+
"{INVESTORS}": "https://investors.axosfinancial.com",
|
|
17
|
+
"{OBAXB}": "https://onlinebanking.axosbank.com"
|
|
16
18
|
// "assets.axos.com": "https://assets.axos.com",
|
|
17
19
|
// "images.axos.com": "https://images.axos.com",
|
|
18
20
|
};
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const datePicker: string;
|
package/dist/Input/Datepicker.js
DELETED
|
@@ -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,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
|
-
};
|
package/dist/Input/InputDate.js
DELETED
|
@@ -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
|
-
}
|