@axos-web-dev/shared-components 0.0.106 → 0.0.107
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 +3 -2
- package/dist/Accordion/Accordion.css.d.ts +9 -9
- package/dist/BulletItem/BulletItem.d.ts +1 -1
- package/dist/BulletItem/BulletItem.js +5 -39
- package/dist/Button/Button.js +1 -0
- package/dist/Calculators/Calculator.js +3 -2
- package/dist/Carousel/index.js +3 -2
- package/dist/Chevron/index.js +1 -0
- package/dist/Comparison/Comparison.css.js +1 -0
- package/dist/Comparison/Comparison.js +1 -0
- package/dist/Comparison/ComparisonSet.d.ts +1 -1
- package/dist/Comparison/ComparisonSet.js +7 -119
- package/dist/DownloadTile/index.js +1 -1
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -1
- package/dist/Forms/ApplicationStart.js +1 -0
- package/dist/Forms/CommercialLending.js +1 -0
- package/dist/Forms/ContactCompany.js +1 -0
- package/dist/Forms/ContactUs.js +1 -0
- package/dist/Forms/ContactUsAAS.js +1 -0
- package/dist/Forms/ContactUsBusiness.js +1 -0
- package/dist/Forms/ContactUsNMLSId.js +1 -0
- package/dist/Forms/DealerServices.js +1 -0
- package/dist/Forms/EmailOnly.js +1 -0
- package/dist/Forms/FormEnums.d.ts +14 -0
- package/dist/Forms/FormEnums.js +94 -0
- package/dist/Forms/Forms.css.d.ts +17 -0
- package/dist/Forms/Forms.css.js +7 -0
- package/dist/Forms/QuickPricer.d.ts +30 -0
- package/dist/Forms/QuickPricer.js +759 -0
- package/dist/Forms/SalesforceFieldsForm.d.ts +0 -1
- package/dist/Forms/ScheduleCall.js +5 -1
- package/dist/Forms/ScheduleCallPremier.js +1 -0
- package/dist/Forms/SuccesForm.js +1 -0
- package/dist/Forms/WcplSurvey.js +1 -0
- package/dist/Forms/index.d.ts +1 -0
- package/dist/Forms/index.js +5 -1
- package/dist/Hyperlink/index.js +3 -2
- package/dist/ImageBillboard/ImageBillboard.js +1 -0
- package/dist/ImageBillboard/ImageBillboardSet.js +1 -0
- package/dist/ImageLink/ImageLink.js +2 -1
- package/dist/ImageLink/ImageLinkSet.js +3 -2
- package/dist/ImageLink/index.js +2 -1
- package/dist/Input/Checkbox.d.ts +1 -1
- package/dist/Input/CurrencyInput.js +1 -0
- 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/InputAmount.d.ts +3 -0
- package/dist/Input/InputAmount.js +31 -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 +1 -0
- package/dist/Input/InputProps.d.ts +6 -0
- package/dist/Input/index.d.ts +1 -0
- package/dist/Input/index.js +2 -0
- package/dist/Interstitial/Interstitial.js +1 -1
- package/dist/Modal/Modal.js +1 -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/CallToActionBar/CallToActionBar.css +0 -4
- package/dist/assets/Comparison/Comparison.css +6 -0
- package/dist/assets/Forms/Forms.css +39 -0
- package/dist/assets/Input/DatePicker.css +95 -0
- package/dist/assets/Input/InputDate.css +39 -0
- package/dist/assets/SetContainer/SetContainer.css +1 -1
- package/dist/assets/Table/Table.css +2 -2
- package/dist/assets/themes/axos.css +2 -0
- package/dist/assets/themes/premier.css +2 -0
- package/dist/icons/CheckCircle.d.ts +2 -1
- package/dist/icons/CheckCircle.js +2 -0
- package/dist/main.js +7 -1
- package/dist/themes/axos.css.d.ts +4 -0
- package/dist/themes/axos.css.js +1 -1
- package/package.json +1 -1
|
@@ -12,8 +12,10 @@ import { Dropdown } from "../Input/Dropdown.js";
|
|
|
12
12
|
/* empty css */
|
|
13
13
|
import { Input } from "../Input/Input.js";
|
|
14
14
|
import "../Input/Input.css.js";
|
|
15
|
+
import "../Input/InputAmount.js";
|
|
15
16
|
import { InputPhone } from "../Input/InputPhone.js";
|
|
16
17
|
import "../Input/InputTextArea.js";
|
|
18
|
+
import { InputDate } from "../Input/InputDate.js";
|
|
17
19
|
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
18
20
|
import SvgAxosX from "../icons/AxosX/index.js";
|
|
19
21
|
import SvgComponent from "../icons/AxosX/Blue.js";
|
|
@@ -219,7 +221,9 @@ const ScheduleCall = ({
|
|
|
219
221
|
/* @__PURE__ */ jsx("option", { value: "5:00 pm", children: "5:00 pm" })
|
|
220
222
|
]
|
|
221
223
|
}
|
|
222
|
-
) })
|
|
224
|
+
) }),
|
|
225
|
+
/* @__PURE__ */ jsx(InputDate, { onDateChange: () => {
|
|
226
|
+
} })
|
|
223
227
|
] }),
|
|
224
228
|
children,
|
|
225
229
|
/* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
|
|
@@ -12,6 +12,7 @@ import { Dropdown } from "../Input/Dropdown.js";
|
|
|
12
12
|
/* empty css */
|
|
13
13
|
import { Input } from "../Input/Input.js";
|
|
14
14
|
import "../Input/Input.css.js";
|
|
15
|
+
import "../Input/InputAmount.js";
|
|
15
16
|
import { InputPhone } from "../Input/InputPhone.js";
|
|
16
17
|
import "../Input/InputTextArea.js";
|
|
17
18
|
import { LoadingIndicator } from "../LoadingIndicator/index.js";
|
package/dist/Forms/SuccesForm.js
CHANGED
|
@@ -54,6 +54,7 @@ import "../Input/Dropdown.js";
|
|
|
54
54
|
/* empty css */
|
|
55
55
|
import "../Input/Input.js";
|
|
56
56
|
import "../Input/Input.css.js";
|
|
57
|
+
import "../Input/InputAmount.js";
|
|
57
58
|
import "../Input/InputPhone.js";
|
|
58
59
|
import "../Input/InputTextArea.js";
|
|
59
60
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
package/dist/Forms/WcplSurvey.js
CHANGED
|
@@ -12,6 +12,7 @@ import "../Input/Dropdown.js";
|
|
|
12
12
|
/* empty css */
|
|
13
13
|
import "../Input/Input.js";
|
|
14
14
|
import "../Input/Input.css.js";
|
|
15
|
+
import "../Input/InputAmount.js";
|
|
15
16
|
import { InputPhone } from "../Input/InputPhone.js";
|
|
16
17
|
import { InputTextArea } from "../Input/InputTextArea.js";
|
|
17
18
|
import { RadioButtonSet, RadioButton } from "../Input/RadioButton.js";
|
package/dist/Forms/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './EmailOnly';
|
|
|
10
10
|
export * from './EmailUs';
|
|
11
11
|
export * from './FormProps';
|
|
12
12
|
export * from './Forms.css';
|
|
13
|
+
export * from './QuickPricer';
|
|
13
14
|
export * from './SalesforceFieldsForm';
|
|
14
15
|
export * from './ScheduleCall';
|
|
15
16
|
export * from './ScheduleCallPremier';
|
package/dist/Forms/index.js
CHANGED
|
@@ -8,7 +8,8 @@ import { ContactUsNMLSId } from "./ContactUsNMLSId.js";
|
|
|
8
8
|
import { DealerServices } from "./DealerServices.js";
|
|
9
9
|
import { EmailOnly } from "./EmailOnly.js";
|
|
10
10
|
import { EmailUs } from "./EmailUs.js";
|
|
11
|
-
import { actions, descriptionField, disclosureForm, form, formContainer, formWrapper, fullRowForm, headerContainer, headerForm, iconForm, one_row, succes_check_mark, success_circle, success_icon, success_wrap } from "./Forms.css.js";
|
|
11
|
+
import { actions, checkbox_group, descriptionField, disclosureForm, form, formContainer, formWrapper, fullRowForm, headerContainer, headerForm, iconForm, one_row, section_title, succes_check_mark, success_circle, success_icon, success_wrap } from "./Forms.css.js";
|
|
12
|
+
import { QuickPricer } from "./QuickPricer.js";
|
|
12
13
|
import { SalesforceFieldsForm, SalesforceSchema } from "./SalesforceFieldsForm.js";
|
|
13
14
|
import { ScheduleCall } from "./ScheduleCall.js";
|
|
14
15
|
import { ScheduleCallPremier } from "./ScheduleCallPremier.js";
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
DealerServices,
|
|
26
27
|
EmailOnly,
|
|
27
28
|
EmailUs,
|
|
29
|
+
QuickPricer,
|
|
28
30
|
SalesforceFieldsForm,
|
|
29
31
|
SalesforceSchema,
|
|
30
32
|
ScheduleCall,
|
|
@@ -32,6 +34,7 @@ export {
|
|
|
32
34
|
SuccesFormWrapper,
|
|
33
35
|
WCPLSurvey,
|
|
34
36
|
actions,
|
|
37
|
+
checkbox_group,
|
|
35
38
|
descriptionField,
|
|
36
39
|
disclosureForm,
|
|
37
40
|
form,
|
|
@@ -42,6 +45,7 @@ export {
|
|
|
42
45
|
headerForm,
|
|
43
46
|
iconForm,
|
|
44
47
|
one_row,
|
|
48
|
+
section_title,
|
|
45
49
|
succes_check_mark,
|
|
46
50
|
success_circle,
|
|
47
51
|
success_icon,
|
package/dist/Hyperlink/index.js
CHANGED
|
@@ -14,10 +14,10 @@ import "../AlertBanner/AlertBanner.css.js";
|
|
|
14
14
|
import "../Article/Article.css.js";
|
|
15
15
|
import "../ArticlesSet/ArticlesSet.css.js";
|
|
16
16
|
import "../IconBillboard/IconBillboard.css.js";
|
|
17
|
-
/* empty css */
|
|
18
|
-
/* empty css */
|
|
19
17
|
import { findMoreAxosDomains } from "../utils/allowedAxosDomains.js";
|
|
20
18
|
import { validateLink } from "../utils/validateExternalLinks.js";
|
|
19
|
+
/* empty css */
|
|
20
|
+
/* empty css */
|
|
21
21
|
import "../Button/Button.css.js";
|
|
22
22
|
import "react-use";
|
|
23
23
|
import "../Interstitial/Interstitial-variants.css.js";
|
|
@@ -35,6 +35,7 @@ import "../Input/Dropdown.js";
|
|
|
35
35
|
/* empty css */
|
|
36
36
|
import "../Input/Input.js";
|
|
37
37
|
import "../Input/Input.css.js";
|
|
38
|
+
import "../Input/InputAmount.js";
|
|
38
39
|
import "../Input/InputPhone.js";
|
|
39
40
|
import "../Input/InputTextArea.js";
|
|
40
41
|
import "react-hook-form";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { Chevron } from "../Chevron/index.js";
|
|
3
3
|
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
4
|
+
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
4
5
|
import SvgCheckIcon from "../icons/CheckIcon/index.js";
|
|
5
6
|
/* empty css */
|
|
6
7
|
/* empty css */
|
|
@@ -5,6 +5,7 @@ import "react";
|
|
|
5
5
|
import "react-use";
|
|
6
6
|
import { Chevron } from "../Chevron/index.js";
|
|
7
7
|
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
8
|
+
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
8
9
|
import SvgCheckIcon from "../icons/CheckIcon/index.js";
|
|
9
10
|
/* empty css */
|
|
10
11
|
/* empty css */
|
|
@@ -7,9 +7,9 @@ import "../icons/CheckIcon/CheckIcon.css.js";
|
|
|
7
7
|
/* empty css */
|
|
8
8
|
/* empty css */
|
|
9
9
|
/* empty css */
|
|
10
|
+
import "../utils/allowedAxosDomains.js";
|
|
10
11
|
/* empty css */
|
|
11
12
|
/* empty css */
|
|
12
|
-
import "../utils/allowedAxosDomains.js";
|
|
13
13
|
import "../Accordion/Accordion.js";
|
|
14
14
|
import "../Accordion/Accordion.css.js";
|
|
15
15
|
import "../AlertBanner/AlertBanner.css.js";
|
|
@@ -29,6 +29,7 @@ import "../Input/Dropdown.js";
|
|
|
29
29
|
/* empty css */
|
|
30
30
|
import "../Input/Input.js";
|
|
31
31
|
import "../Input/Input.css.js";
|
|
32
|
+
import "../Input/InputAmount.js";
|
|
32
33
|
import "../Input/InputPhone.js";
|
|
33
34
|
import "../Input/InputTextArea.js";
|
|
34
35
|
import "react-hook-form";
|
|
@@ -6,10 +6,10 @@ import "../icons/CheckIcon/CheckIcon.css.js";
|
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
8
|
/* empty css */
|
|
9
|
-
/* empty css */
|
|
10
|
-
/* empty css */
|
|
11
9
|
import "../utils/allowedAxosDomains.js";
|
|
12
10
|
import { getVariant } from "../utils/getVariant.js";
|
|
11
|
+
/* empty css */
|
|
12
|
+
/* empty css */
|
|
13
13
|
import { Chevron } from "../Chevron/index.js";
|
|
14
14
|
import "clsx";
|
|
15
15
|
import { Button } from "../Button/Button.js";
|
|
@@ -34,6 +34,7 @@ import "../Input/Dropdown.js";
|
|
|
34
34
|
/* empty css */
|
|
35
35
|
import "../Input/Input.js";
|
|
36
36
|
import "../Input/Input.css.js";
|
|
37
|
+
import "../Input/InputAmount.js";
|
|
37
38
|
import "../Input/InputPhone.js";
|
|
38
39
|
import "../Input/InputTextArea.js";
|
|
39
40
|
import "react-hook-form";
|
package/dist/ImageLink/index.js
CHANGED
|
@@ -13,9 +13,9 @@ import "../AlertBanner/AlertBanner.css.js";
|
|
|
13
13
|
import "../Article/Article.css.js";
|
|
14
14
|
import "../ArticlesSet/ArticlesSet.css.js";
|
|
15
15
|
import "../IconBillboard/IconBillboard.css.js";
|
|
16
|
+
import "../utils/allowedAxosDomains.js";
|
|
16
17
|
/* empty css */
|
|
17
18
|
/* empty css */
|
|
18
|
-
import "../utils/allowedAxosDomains.js";
|
|
19
19
|
import "../Button/Button.css.js";
|
|
20
20
|
import "react-use";
|
|
21
21
|
import "../Interstitial/Interstitial-variants.css.js";
|
|
@@ -33,6 +33,7 @@ import "../Input/Dropdown.js";
|
|
|
33
33
|
/* empty css */
|
|
34
34
|
import "../Input/Input.js";
|
|
35
35
|
import "../Input/Input.css.js";
|
|
36
|
+
import "../Input/InputAmount.js";
|
|
36
37
|
import "../Input/InputPhone.js";
|
|
37
38
|
import "../Input/InputTextArea.js";
|
|
38
39
|
import "react-hook-form";
|
package/dist/Input/Checkbox.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InputProps } from './InputProps';
|
|
2
2
|
|
|
3
3
|
export declare const Checkbox: import('react').ForwardRefExoticComponent<InputProps & {
|
|
4
|
-
children?: import('react').ReactNode;
|
|
4
|
+
children?: import('react').ReactNode | undefined;
|
|
5
5
|
} & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const datePicker: string;
|
|
@@ -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 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
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { InputMask } from "@react-input/mask";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import "./Checkbox.js";
|
|
5
|
+
import "./CurrencyInput.js";
|
|
6
|
+
import "./Dropdown.js";
|
|
7
|
+
/* empty css */
|
|
8
|
+
/* empty css */
|
|
9
|
+
import { Input } from "./Input.js";
|
|
10
|
+
import "./Input.css.js";
|
|
11
|
+
import "./InputPhone.js";
|
|
12
|
+
import "./InputTextArea.js";
|
|
13
|
+
const InputAmount = forwardRef(
|
|
14
|
+
(props, ref) => {
|
|
15
|
+
return /* @__PURE__ */ jsx(
|
|
16
|
+
InputMask,
|
|
17
|
+
{
|
|
18
|
+
ref,
|
|
19
|
+
...props,
|
|
20
|
+
component: Input,
|
|
21
|
+
mask: "___,___,___,___",
|
|
22
|
+
replacement: {
|
|
23
|
+
_: /\d/
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
export {
|
|
30
|
+
InputAmount
|
|
31
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
};
|
|
@@ -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
|
+
};
|
package/dist/Input/InputPhone.js
CHANGED
|
@@ -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
|
+
}
|
package/dist/Input/index.d.ts
CHANGED
package/dist/Input/index.js
CHANGED
|
@@ -4,6 +4,7 @@ import { Dropdown } from "./Dropdown.js";
|
|
|
4
4
|
import { selectInput } from "./Dropdown.css.js";
|
|
5
5
|
import { Input } from "./Input.js";
|
|
6
6
|
import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input.css.js";
|
|
7
|
+
import { InputAmount } from "./InputAmount.js";
|
|
7
8
|
import { InputPhone } from "./InputPhone.js";
|
|
8
9
|
import { InputTextArea } from "./InputTextArea.js";
|
|
9
10
|
export {
|
|
@@ -11,6 +12,7 @@ export {
|
|
|
11
12
|
CurrencyInput,
|
|
12
13
|
Dropdown,
|
|
13
14
|
Input,
|
|
15
|
+
InputAmount,
|
|
14
16
|
InputPhone,
|
|
15
17
|
InputTextArea,
|
|
16
18
|
container,
|
|
@@ -55,7 +55,7 @@ const Interstitial = ({
|
|
|
55
55
|
/* @__PURE__ */ jsxs("div", { className: `${css.modal_content} text_center`, children: [
|
|
56
56
|
headline && /* @__PURE__ */ jsx("h2", { className: `header_3 ${int_headline({ variant })}`, children: headline }),
|
|
57
57
|
bodyCopy && /* @__PURE__ */ jsx("div", { className: css.body_copy, children: bodyCopy }),
|
|
58
|
-
bullets && bullets.length > 0 && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: interstitial_list, children: bullets.map(
|
|
58
|
+
bullets && bullets.length > 0 && /* @__PURE__ */ jsx("div", { className: "push_up", children: /* @__PURE__ */ jsx("ul", { className: interstitial_list, children: bullets.map(
|
|
59
59
|
(item) => Object.hasOwn(item, "variant") ? /* @__PURE__ */ jsx(
|
|
60
60
|
BulletItem,
|
|
61
61
|
{
|
package/dist/Modal/Modal.js
CHANGED
|
@@ -14,9 +14,9 @@ import "../../AlertBanner/AlertBanner.css.js";
|
|
|
14
14
|
import "../../Article/Article.css.js";
|
|
15
15
|
import "../../ArticlesSet/ArticlesSet.css.js";
|
|
16
16
|
import "../../IconBillboard/IconBillboard.css.js";
|
|
17
|
+
import { findMoreAxosDomains } from "../../utils/allowedAxosDomains.js";
|
|
17
18
|
/* empty css */
|
|
18
19
|
/* empty css */
|
|
19
|
-
import { findMoreAxosDomains } from "../../utils/allowedAxosDomains.js";
|
|
20
20
|
import "../../Button/Button.css.js";
|
|
21
21
|
import "react-use";
|
|
22
22
|
import "../../Interstitial/Interstitial-variants.css.js";
|
|
@@ -34,6 +34,7 @@ import "../../Input/Dropdown.js";
|
|
|
34
34
|
/* empty css */
|
|
35
35
|
import "../../Input/Input.js";
|
|
36
36
|
import "../../Input/Input.css.js";
|
|
37
|
+
import "../../Input/InputAmount.js";
|
|
37
38
|
import "../../Input/InputPhone.js";
|
|
38
39
|
import "../../Input/InputTextArea.js";
|
|
39
40
|
import "react-hook-form";
|
|
@@ -8,10 +8,10 @@ import "../icons/CheckIcon/CheckIcon.css.js";
|
|
|
8
8
|
/* empty css */
|
|
9
9
|
/* empty css */
|
|
10
10
|
/* empty css */
|
|
11
|
-
/* empty css */
|
|
12
|
-
/* empty css */
|
|
13
11
|
import "../utils/allowedAxosDomains.js";
|
|
14
12
|
import { getVariant } from "../utils/getVariant.js";
|
|
13
|
+
/* empty css */
|
|
14
|
+
/* empty css */
|
|
15
15
|
import "../Accordion/Accordion.js";
|
|
16
16
|
import "../Accordion/Accordion.css.js";
|
|
17
17
|
import "../AlertBanner/AlertBanner.css.js";
|
|
@@ -31,6 +31,7 @@ import "../Input/Dropdown.js";
|
|
|
31
31
|
/* empty css */
|
|
32
32
|
import "../Input/Input.js";
|
|
33
33
|
import "../Input/Input.css.js";
|
|
34
|
+
import "../Input/InputAmount.js";
|
|
34
35
|
import "../Input/InputPhone.js";
|
|
35
36
|
import "../Input/InputTextArea.js";
|
|
36
37
|
import "react-hook-form";
|
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;
|
|
@@ -107,7 +107,6 @@
|
|
|
107
107
|
z-index: 999;
|
|
108
108
|
animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
|
|
109
109
|
margin: -10px 0;
|
|
110
|
-
padding: 1rem 0;
|
|
111
110
|
}
|
|
112
111
|
._1tdyl741 > img {
|
|
113
112
|
position: unset;
|
|
@@ -118,9 +117,6 @@
|
|
|
118
117
|
justify-content: center;
|
|
119
118
|
padding: 24px 0 0 0;
|
|
120
119
|
}
|
|
121
|
-
._1tdyl74e {
|
|
122
|
-
margin-top: 1rem;
|
|
123
|
-
}
|
|
124
120
|
._1tdyl740 .containment {
|
|
125
121
|
padding: 1.5rem 0;
|
|
126
122
|
}
|