@axos-web-dev/shared-components 0.0.109 → 0.0.111
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 +1 -1
- package/dist/Button/Button.js +2 -1
- package/dist/Calculators/BalanceAPYCalculator/index.js +7 -2
- package/dist/Calculators/Calculator.js +3 -2
- package/dist/Calculators/MonthlyPaymentCalculator/index.d.ts +2 -1
- package/dist/Calculators/MonthlyPaymentCalculator/index.js +22 -9
- package/dist/FaqAccordion/FaqAccordion.css.js +1 -1
- package/dist/FaqAccordion/index.d.ts +4 -0
- package/dist/FaqAccordion/index.js +113 -1
- package/dist/Forms/ClearingForm.js +26 -12
- package/dist/Forms/CpraRequest.d.ts +27 -0
- package/dist/Forms/CpraRequest.js +733 -0
- package/dist/Forms/Forms.css.d.ts +1 -0
- package/dist/Forms/Forms.css.js +2 -0
- package/dist/Forms/index.d.ts +1 -0
- package/dist/Forms/index.js +4 -1
- package/dist/Input/CheckboxGroup.js +1 -2
- package/dist/SocialMediaBar/SocialMediaBar.css.d.ts +1 -0
- package/dist/SocialMediaBar/SocialMediaBar.css.js +2 -0
- package/dist/SocialMediaBar/index.d.ts +7 -1
- package/dist/SocialMediaBar/index.js +17 -3
- package/dist/assets/FaqAccordion/FaqAccordion.css +6 -0
- package/dist/assets/Forms/Forms.css +4 -0
- package/dist/assets/Interstitial/Interstitial-variants.css +7 -0
- package/dist/assets/SocialMediaBar/SocialMediaBar.css +13 -0
- package/dist/assets/Table/Table.css +0 -1
- package/dist/main.js +10 -2
- package/dist/utils/allowedAxosDomains.js +2 -1
- package/package.json +118 -118
package/dist/Forms/Forms.css.js
CHANGED
|
@@ -23,6 +23,7 @@ var fullRowForm = "tfms6a19";
|
|
|
23
23
|
var one_row = "tfms6a1a";
|
|
24
24
|
var section_title = createRuntimeFn({ defaultClassName: "tfms6a1b", variantClassNames: { variant: { primary: "tfms6a1c", secondary: "tfms6a1d", tertiary: "tfms6a1e", quaternary: "tfms6a1f" } }, defaultVariants: {}, compoundVariants: [] });
|
|
25
25
|
var checkbox_group = "tfms6a1g";
|
|
26
|
+
var ro_input = "tfms6a1h";
|
|
26
27
|
export {
|
|
27
28
|
actions,
|
|
28
29
|
checkbox_group,
|
|
@@ -36,6 +37,7 @@ export {
|
|
|
36
37
|
headerForm,
|
|
37
38
|
iconForm,
|
|
38
39
|
one_row,
|
|
40
|
+
ro_input,
|
|
39
41
|
section_title,
|
|
40
42
|
succes_check_mark,
|
|
41
43
|
success_circle,
|
package/dist/Forms/index.d.ts
CHANGED
package/dist/Forms/index.js
CHANGED
|
@@ -8,7 +8,7 @@ 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, 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";
|
|
11
|
+
import { actions, checkbox_group, descriptionField, disclosureForm, form, formContainer, formWrapper, fullRowForm, headerContainer, headerForm, iconForm, one_row, ro_input, section_title, succes_check_mark, success_circle, success_icon, success_wrap } from "./Forms.css.js";
|
|
12
12
|
import { QuickPricer } from "./QuickPricer.js";
|
|
13
13
|
import { SalesforceFieldsForm, SalesforceSchema } from "./SalesforceFieldsForm.js";
|
|
14
14
|
import { ScheduleCall } from "./ScheduleCall.js";
|
|
@@ -16,6 +16,7 @@ import { ScheduleCallPremier } from "./ScheduleCallPremier.js";
|
|
|
16
16
|
import { SuccesFormWrapper } from "./SuccesForm.js";
|
|
17
17
|
import { WCPLSurvey } from "./WcplSurvey.js";
|
|
18
18
|
import { ClearingForm } from "./ClearingForm.js";
|
|
19
|
+
import { CpraRequest } from "./CpraRequest.js";
|
|
19
20
|
export {
|
|
20
21
|
ApplicationStart,
|
|
21
22
|
ClearingForm,
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
ContactUsAAS,
|
|
26
27
|
ContactUsBusiness,
|
|
27
28
|
ContactUsNMLSId,
|
|
29
|
+
CpraRequest,
|
|
28
30
|
DealerServices,
|
|
29
31
|
EmailOnly,
|
|
30
32
|
EmailUs,
|
|
@@ -47,6 +49,7 @@ export {
|
|
|
47
49
|
headerForm,
|
|
48
50
|
iconForm,
|
|
49
51
|
one_row,
|
|
52
|
+
ro_input,
|
|
50
53
|
section_title,
|
|
51
54
|
succes_check_mark,
|
|
52
55
|
success_circle,
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
|
|
3
|
+
export * from './SocialMediaBar.css';
|
|
4
|
+
export declare const SocialMediaBar: ({ className, style, }: {
|
|
5
|
+
className?: string;
|
|
6
|
+
style?: CSSProperties;
|
|
7
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Facebook, Instagram, Xtwitter, Youtube, LinkedIn, Pinterest } from "./iconsRepository.js";
|
|
3
3
|
import { smb_section, smb_wrapper } from "./SocialMediaBar.css.js";
|
|
4
|
-
|
|
4
|
+
import { padding_in_footer } from "./SocialMediaBar.css.js";
|
|
5
|
+
const SocialMediaBar = ({
|
|
6
|
+
className,
|
|
7
|
+
style
|
|
8
|
+
}) => {
|
|
5
9
|
const iconsToRender = [
|
|
6
10
|
Facebook,
|
|
7
11
|
Instagram,
|
|
@@ -16,8 +20,18 @@ const SocialMediaBar = () => {
|
|
|
16
20
|
// i.Libsyn,
|
|
17
21
|
// i.Spotify,
|
|
18
22
|
];
|
|
19
|
-
return /* @__PURE__ */ jsx("section", { role: "contentinfo", className: smb_section, children: /* @__PURE__ */ jsx(
|
|
23
|
+
return /* @__PURE__ */ jsx("section", { role: "contentinfo", className: smb_section, children: /* @__PURE__ */ jsx(
|
|
24
|
+
"div",
|
|
25
|
+
{
|
|
26
|
+
className: `containment flex center middle ${smb_wrapper} ${className}`,
|
|
27
|
+
style: { ...style },
|
|
28
|
+
children: iconsToRender.map((Icon, id) => /* @__PURE__ */ jsx(Icon, {}, id))
|
|
29
|
+
}
|
|
30
|
+
) });
|
|
20
31
|
};
|
|
21
32
|
export {
|
|
22
|
-
SocialMediaBar
|
|
33
|
+
SocialMediaBar,
|
|
34
|
+
padding_in_footer,
|
|
35
|
+
smb_section,
|
|
36
|
+
smb_wrapper
|
|
23
37
|
};
|
|
@@ -47,9 +47,15 @@ details[open] .ph6wj62 {
|
|
|
47
47
|
.ph6wj64 ol {
|
|
48
48
|
padding-bottom: 1rem;
|
|
49
49
|
}
|
|
50
|
+
.ph6wj64 ol ul {
|
|
51
|
+
padding-bottom: 0;
|
|
52
|
+
}
|
|
50
53
|
.ph6wj64 ul {
|
|
51
54
|
padding-bottom: 1rem;
|
|
52
55
|
}
|
|
56
|
+
.ph6wj64 ul ol {
|
|
57
|
+
padding-bottom: 0;
|
|
58
|
+
}
|
|
53
59
|
details summary::-webkit-details-marker {
|
|
54
60
|
display: none;
|
|
55
61
|
}
|
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
flex-wrap: wrap;
|
|
8
8
|
gap: 24px;
|
|
9
9
|
}
|
|
10
|
+
.nkpt492 {
|
|
11
|
+
padding: 16px 0 3.5rem 0;
|
|
12
|
+
}
|
|
10
13
|
.nkpt491 svg {
|
|
11
14
|
max-width: 100%;
|
|
12
15
|
height: auto;
|
|
@@ -32,4 +35,14 @@
|
|
|
32
35
|
.nkpt491 {
|
|
33
36
|
min-height: 104px;
|
|
34
37
|
}
|
|
38
|
+
}
|
|
39
|
+
@media screen and (max-width: 1023px) {
|
|
40
|
+
.nkpt492 {
|
|
41
|
+
padding-bottom: 50px;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
@media screen and (max-width: 768px) {
|
|
45
|
+
.nkpt492 {
|
|
46
|
+
padding-bottom: 30px;
|
|
47
|
+
}
|
|
35
48
|
}
|
package/dist/main.js
CHANGED
|
@@ -36,7 +36,7 @@ import { DownloadTile } from "./DownloadTile/index.js";
|
|
|
36
36
|
import { ExecutiveBio } from "./ExecutiveBio/ExecutiveBio.js";
|
|
37
37
|
import { bio_section_text, components, contact_col, contact_entry, contact_links, contacts, copy, description, details, header_theme, headline_setting, headshot, img_area, item_bio, job_title, media, padding, person, section_theme, shift, svg_icon } from "./ExecutiveBio/ExecutiveBio.css.js";
|
|
38
38
|
import { ExecutiveBioSet } from "./ExecutiveBio/ExecutiveBioSet.js";
|
|
39
|
-
import { AccordionItem, AccordionItemContent, AccordionItemSummary, FaqAccordion } from "./FaqAccordion/index.js";
|
|
39
|
+
import { AccordionCtas, AccordionItem, AccordionItemContent, AccordionItemSummary, FaqAccordion } from "./FaqAccordion/index.js";
|
|
40
40
|
import { footerDisclosure, footerLink, footerParagraph, iconsContent } from "./FooterDisclosure/FooterDisclosure.css.js";
|
|
41
41
|
import { FooterContent, FooterDisclosure, FooterIcons, FooterParagraph } from "./FooterDisclosure/FooterDisclosure.js";
|
|
42
42
|
import { AxosFooterSiteMap } from "./FooterSiteMap/AxosBank/FooterSiteMap.js";
|
|
@@ -51,7 +51,7 @@ import { ContactUsNMLSId } from "./Forms/ContactUsNMLSId.js";
|
|
|
51
51
|
import { DealerServices } from "./Forms/DealerServices.js";
|
|
52
52
|
import { EmailOnly } from "./Forms/EmailOnly.js";
|
|
53
53
|
import { EmailUs } from "./Forms/EmailUs.js";
|
|
54
|
-
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/Forms.css.js";
|
|
54
|
+
import { actions, checkbox_group, descriptionField, disclosureForm, form, formContainer, formWrapper, fullRowForm, headerContainer, headerForm, iconForm, one_row, ro_input, section_title, succes_check_mark, success_circle, success_icon, success_wrap } from "./Forms/Forms.css.js";
|
|
55
55
|
import { QuickPricer } from "./Forms/QuickPricer.js";
|
|
56
56
|
import { SalesforceFieldsForm, SalesforceSchema } from "./Forms/SalesforceFieldsForm.js";
|
|
57
57
|
import { ScheduleCall } from "./Forms/ScheduleCall.js";
|
|
@@ -59,6 +59,7 @@ import { ScheduleCallPremier } from "./Forms/ScheduleCallPremier.js";
|
|
|
59
59
|
import { SuccesFormWrapper } from "./Forms/SuccesForm.js";
|
|
60
60
|
import { WCPLSurvey } from "./Forms/WcplSurvey.js";
|
|
61
61
|
import { ClearingForm } from "./Forms/ClearingForm.js";
|
|
62
|
+
import { CpraRequest } from "./Forms/CpraRequest.js";
|
|
62
63
|
import { HeroBanner } from "./HeroBanner/HeroBanner.js";
|
|
63
64
|
import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_embedded_image, hero_img, hero_text, hero_wrapper, logout, reversed, reversed_lg_image } from "./HeroBanner/HeroBanner.css.js";
|
|
64
65
|
import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
|
|
@@ -153,6 +154,7 @@ import { associatedEmail } from "./utils/EverestValidity.js";
|
|
|
153
154
|
import { findMoreAxosDomains, isAllowedUrl } from "./utils/allowedAxosDomains.js";
|
|
154
155
|
import { getVariant, getVariantWithRegex } from "./utils/getVariant.js";
|
|
155
156
|
import { isAbsoluteUrl, isEmailLink, isPhoneLink, shortUrl, validateLink } from "./utils/validateExternalLinks.js";
|
|
157
|
+
import { padding_in_footer, smb_section, smb_wrapper } from "./SocialMediaBar/SocialMediaBar.css.js";
|
|
156
158
|
export {
|
|
157
159
|
default20 as AASLogo,
|
|
158
160
|
default21 as AFSLogo,
|
|
@@ -162,6 +164,7 @@ export {
|
|
|
162
164
|
default24 as AXILogo,
|
|
163
165
|
default25 as AXOS,
|
|
164
166
|
Accordion,
|
|
167
|
+
AccordionCtas,
|
|
165
168
|
AccordionCtx,
|
|
166
169
|
AccordionDetails,
|
|
167
170
|
AccordionHeader,
|
|
@@ -209,6 +212,7 @@ export {
|
|
|
209
212
|
ContactUsBusiness,
|
|
210
213
|
ContactUsNMLSId,
|
|
211
214
|
ContentBanner,
|
|
215
|
+
CpraRequest,
|
|
212
216
|
CurrencyInput,
|
|
213
217
|
DealerServices,
|
|
214
218
|
default11 as DownloadIcon,
|
|
@@ -465,6 +469,7 @@ export {
|
|
|
465
469
|
ol,
|
|
466
470
|
one_row,
|
|
467
471
|
padding,
|
|
472
|
+
padding_in_footer,
|
|
468
473
|
paragraph,
|
|
469
474
|
person,
|
|
470
475
|
picker_arrow,
|
|
@@ -484,6 +489,7 @@ export {
|
|
|
484
489
|
rate_pad,
|
|
485
490
|
reversed,
|
|
486
491
|
reversed_lg_image,
|
|
492
|
+
ro_input,
|
|
487
493
|
sec_subtitle,
|
|
488
494
|
sec_title,
|
|
489
495
|
section_body,
|
|
@@ -506,6 +512,8 @@ export {
|
|
|
506
512
|
shortUrl,
|
|
507
513
|
show,
|
|
508
514
|
single_container,
|
|
515
|
+
smb_section,
|
|
516
|
+
smb_wrapper,
|
|
509
517
|
step_num,
|
|
510
518
|
steps_wrapper,
|
|
511
519
|
sticky_nav,
|
|
@@ -16,7 +16,8 @@ const moreDomains = {
|
|
|
16
16
|
"{AFP}": process.env.AFP_URL || "https://afp.axosbank.com",
|
|
17
17
|
"{INVESTORS}": process.env.INVESTORS_URL || "https://investors.axosfinancial.com",
|
|
18
18
|
"{OBAXB}": process.env.ONLINEBANKING_URL || "https://onlinebanking.axosbank.com",
|
|
19
|
-
"{UNVENROLLMENT}": String(process.env.UNVENROLLMENT_URL) || "https://enroll.axosbank.com"
|
|
19
|
+
"{UNVENROLLMENT}": String(process.env.UNVENROLLMENT_URL) || "https://enroll.axosbank.com",
|
|
20
|
+
"{AUTOAXB}": "https://auto.axosbank.com/partner/axos-purchase/AU"
|
|
20
21
|
};
|
|
21
22
|
const isAllowedUrl = (url) => {
|
|
22
23
|
const uri = new URL(url, location.href);
|
package/package.json
CHANGED
|
@@ -1,118 +1,118 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@axos-web-dev/shared-components",
|
|
3
|
-
"description": "Axos shared components library for web.",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"module": "dist/main.js",
|
|
7
|
-
"types": "dist/main.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"sideEffects": [
|
|
12
|
-
"dist/assets/**/*.css"
|
|
13
|
-
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"dev": "vite",
|
|
16
|
-
"build": "tsc --p ./tsconfig.build.json && vite build",
|
|
17
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
18
|
-
"preview": "vite preview",
|
|
19
|
-
"prepublishOnly": "npm run build",
|
|
20
|
-
"check-types": "tsc --pretty --noEmit",
|
|
21
|
-
"check-format": "prettier --check .",
|
|
22
|
-
"check-lint": "eslint . --ext ts --ext tsx --ext js",
|
|
23
|
-
"format": "prettier --write .",
|
|
24
|
-
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
|
|
25
|
-
"prepare": "husky install",
|
|
26
|
-
"storybook": "storybook dev -p 6006",
|
|
27
|
-
"build-storybook": "storybook build",
|
|
28
|
-
"npm:link": "npm run build && npm link"
|
|
29
|
-
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@hookform/resolvers": "^3.9.0",
|
|
32
|
-
"@react-input/mask": "^1.2.5",
|
|
33
|
-
"@react-input/number-format": "^1.0.27",
|
|
34
|
-
"@storybook/builder-vite": "^7.6.19",
|
|
35
|
-
"@storybook/icons": "^1.2.9",
|
|
36
|
-
"@storybook/preview-api": "^7.6.19",
|
|
37
|
-
"@types/iframe-resizer": "3.5.13",
|
|
38
|
-
"@vanilla-extract/css": "^1.15.3",
|
|
39
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
40
|
-
"clsx": "^2.1.1",
|
|
41
|
-
"iframe-resizer": "4.3.11",
|
|
42
|
-
"lodash": "^4.17.21",
|
|
43
|
-
"moment": "^2.30.1",
|
|
44
|
-
"react-date-picker": "^11.0.0",
|
|
45
|
-
"react-hook-form": "^7.52.1",
|
|
46
|
-
"react-markdown": "^9.0.1",
|
|
47
|
-
"react-slick": "^0.30.2",
|
|
48
|
-
"react-use": "^17.5.1",
|
|
49
|
-
"slick-carousel": "^1.8.1",
|
|
50
|
-
"typed-css-modules": "^0.9.1",
|
|
51
|
-
"vite-plugin-svgr": "^4.2.0",
|
|
52
|
-
"zod": "^3.23.8",
|
|
53
|
-
"zustand": "^4.5.4"
|
|
54
|
-
},
|
|
55
|
-
"peerDependencies": {
|
|
56
|
-
"@vanilla-extract/css-utils": "^0.1.3",
|
|
57
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
58
|
-
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
59
|
-
"next": "^14.1.4",
|
|
60
|
-
"react": "^18.2.0",
|
|
61
|
-
"react-dom": "^18.2.0"
|
|
62
|
-
},
|
|
63
|
-
"devDependencies": {
|
|
64
|
-
"@rollup/plugin-alias": "^5.1.0",
|
|
65
|
-
"@storybook/addon-essentials": "^7.6.19",
|
|
66
|
-
"@storybook/addon-interactions": "^7.6.19",
|
|
67
|
-
"@storybook/addon-links": "^7.6.19",
|
|
68
|
-
"@storybook/addon-onboarding": "^8.1.0",
|
|
69
|
-
"@storybook/addon-themes": "^7.6.19",
|
|
70
|
-
"@storybook/blocks": "^7.6.19",
|
|
71
|
-
"@storybook/react": "^7.6.19",
|
|
72
|
-
"@storybook/react-vite": "^7.6.19",
|
|
73
|
-
"@storybook/test": "^7.6.19",
|
|
74
|
-
"@svgr/core": "^8.1.0",
|
|
75
|
-
"@svgr/plugin-prettier": "^8.1.0",
|
|
76
|
-
"@svgr/plugin-svgo": "^8.1.0",
|
|
77
|
-
"@types/lodash": "^4.17.7",
|
|
78
|
-
"@types/node": "^20.14.11",
|
|
79
|
-
"@types/react": "^18.3.3",
|
|
80
|
-
"@types/react-datepicker": "^6.2.0",
|
|
81
|
-
"@types/react-dom": "^18.3.0",
|
|
82
|
-
"@types/react-slick": "^0.23.13",
|
|
83
|
-
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
84
|
-
"@typescript-eslint/parser": "^7.9.0",
|
|
85
|
-
"@vanilla-extract/css-utils": "^0.1.3",
|
|
86
|
-
"@vanilla-extract/recipes": "^0.5.2",
|
|
87
|
-
"@vanilla-extract/vite-plugin": "^4.0.9",
|
|
88
|
-
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
89
|
-
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
90
|
-
"eslint": "^8.57.0",
|
|
91
|
-
"eslint-plugin-react-hooks": "^4.6.2",
|
|
92
|
-
"eslint-plugin-react-refresh": "^0.4.7",
|
|
93
|
-
"eslint-plugin-storybook": "^0.8.0",
|
|
94
|
-
"glob": "^10.4.5",
|
|
95
|
-
"husky": "^9.0.11",
|
|
96
|
-
"next": "^14.1.4",
|
|
97
|
-
"prettier": "3.2.5",
|
|
98
|
-
"react": "^18.3.1",
|
|
99
|
-
"react-dom": "^18.3.1",
|
|
100
|
-
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
101
|
-
"rollup-plugin-svg-import": "^3.0.0",
|
|
102
|
-
"rollup-plugin-svgo": "^2.0.0",
|
|
103
|
-
"storybook": "^7.6.19",
|
|
104
|
-
"typescript": "^5.4.5",
|
|
105
|
-
"typescript-plugin-css-modules": "^5.1.0",
|
|
106
|
-
"vite": "^5.3.4",
|
|
107
|
-
"vite-plugin-dts": "^3.9.1",
|
|
108
|
-
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
109
|
-
"vite-plugin-setting-css-module": "^1.1.4",
|
|
110
|
-
"vite-tsconfig-paths": "^4.3.2"
|
|
111
|
-
},
|
|
112
|
-
"main": "index.js",
|
|
113
|
-
"directories": {
|
|
114
|
-
"lib": "lib"
|
|
115
|
-
},
|
|
116
|
-
"author": "axos-web-dev",
|
|
117
|
-
"license": "ISC"
|
|
118
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@axos-web-dev/shared-components",
|
|
3
|
+
"description": "Axos shared components library for web.",
|
|
4
|
+
"version": "0.0.111",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "dist/main.js",
|
|
7
|
+
"types": "dist/main.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"sideEffects": [
|
|
12
|
+
"dist/assets/**/*.css"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "vite",
|
|
16
|
+
"build": "tsc --p ./tsconfig.build.json && vite build",
|
|
17
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"prepublishOnly": "npm run build",
|
|
20
|
+
"check-types": "tsc --pretty --noEmit",
|
|
21
|
+
"check-format": "prettier --check .",
|
|
22
|
+
"check-lint": "eslint . --ext ts --ext tsx --ext js",
|
|
23
|
+
"format": "prettier --write .",
|
|
24
|
+
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
|
|
25
|
+
"prepare": "husky install",
|
|
26
|
+
"storybook": "storybook dev -p 6006",
|
|
27
|
+
"build-storybook": "storybook build",
|
|
28
|
+
"npm:link": "npm run build && npm link"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@hookform/resolvers": "^3.9.0",
|
|
32
|
+
"@react-input/mask": "^1.2.5",
|
|
33
|
+
"@react-input/number-format": "^1.0.27",
|
|
34
|
+
"@storybook/builder-vite": "^7.6.19",
|
|
35
|
+
"@storybook/icons": "^1.2.9",
|
|
36
|
+
"@storybook/preview-api": "^7.6.19",
|
|
37
|
+
"@types/iframe-resizer": "3.5.13",
|
|
38
|
+
"@vanilla-extract/css": "^1.15.3",
|
|
39
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
40
|
+
"clsx": "^2.1.1",
|
|
41
|
+
"iframe-resizer": "4.3.11",
|
|
42
|
+
"lodash": "^4.17.21",
|
|
43
|
+
"moment": "^2.30.1",
|
|
44
|
+
"react-date-picker": "^11.0.0",
|
|
45
|
+
"react-hook-form": "^7.52.1",
|
|
46
|
+
"react-markdown": "^9.0.1",
|
|
47
|
+
"react-slick": "^0.30.2",
|
|
48
|
+
"react-use": "^17.5.1",
|
|
49
|
+
"slick-carousel": "^1.8.1",
|
|
50
|
+
"typed-css-modules": "^0.9.1",
|
|
51
|
+
"vite-plugin-svgr": "^4.2.0",
|
|
52
|
+
"zod": "^3.23.8",
|
|
53
|
+
"zustand": "^4.5.4"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"@vanilla-extract/css-utils": "^0.1.3",
|
|
57
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
58
|
+
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
59
|
+
"next": "^14.1.4",
|
|
60
|
+
"react": "^18.2.0",
|
|
61
|
+
"react-dom": "^18.2.0"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@rollup/plugin-alias": "^5.1.0",
|
|
65
|
+
"@storybook/addon-essentials": "^7.6.19",
|
|
66
|
+
"@storybook/addon-interactions": "^7.6.19",
|
|
67
|
+
"@storybook/addon-links": "^7.6.19",
|
|
68
|
+
"@storybook/addon-onboarding": "^8.1.0",
|
|
69
|
+
"@storybook/addon-themes": "^7.6.19",
|
|
70
|
+
"@storybook/blocks": "^7.6.19",
|
|
71
|
+
"@storybook/react": "^7.6.19",
|
|
72
|
+
"@storybook/react-vite": "^7.6.19",
|
|
73
|
+
"@storybook/test": "^7.6.19",
|
|
74
|
+
"@svgr/core": "^8.1.0",
|
|
75
|
+
"@svgr/plugin-prettier": "^8.1.0",
|
|
76
|
+
"@svgr/plugin-svgo": "^8.1.0",
|
|
77
|
+
"@types/lodash": "^4.17.7",
|
|
78
|
+
"@types/node": "^20.14.11",
|
|
79
|
+
"@types/react": "^18.3.3",
|
|
80
|
+
"@types/react-datepicker": "^6.2.0",
|
|
81
|
+
"@types/react-dom": "^18.3.0",
|
|
82
|
+
"@types/react-slick": "^0.23.13",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
84
|
+
"@typescript-eslint/parser": "^7.9.0",
|
|
85
|
+
"@vanilla-extract/css-utils": "^0.1.3",
|
|
86
|
+
"@vanilla-extract/recipes": "^0.5.2",
|
|
87
|
+
"@vanilla-extract/vite-plugin": "^4.0.9",
|
|
88
|
+
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
89
|
+
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
90
|
+
"eslint": "^8.57.0",
|
|
91
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
92
|
+
"eslint-plugin-react-refresh": "^0.4.7",
|
|
93
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
94
|
+
"glob": "^10.4.5",
|
|
95
|
+
"husky": "^9.0.11",
|
|
96
|
+
"next": "^14.1.4",
|
|
97
|
+
"prettier": "3.2.5",
|
|
98
|
+
"react": "^18.3.1",
|
|
99
|
+
"react-dom": "^18.3.1",
|
|
100
|
+
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
101
|
+
"rollup-plugin-svg-import": "^3.0.0",
|
|
102
|
+
"rollup-plugin-svgo": "^2.0.0",
|
|
103
|
+
"storybook": "^7.6.19",
|
|
104
|
+
"typescript": "^5.4.5",
|
|
105
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
106
|
+
"vite": "^5.3.4",
|
|
107
|
+
"vite-plugin-dts": "^3.9.1",
|
|
108
|
+
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
109
|
+
"vite-plugin-setting-css-module": "^1.1.4",
|
|
110
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
111
|
+
},
|
|
112
|
+
"main": "index.js",
|
|
113
|
+
"directories": {
|
|
114
|
+
"lib": "lib"
|
|
115
|
+
},
|
|
116
|
+
"author": "axos-web-dev",
|
|
117
|
+
"license": "ISC"
|
|
118
|
+
}
|