@axos-web-dev/shared-components 0.0.196 → 0.0.198
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/Button/Button.d.ts +1 -1
- package/dist/Button/Button.js +6 -4
- package/dist/Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.d.ts +16 -1
- package/dist/Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js +14 -14
- package/dist/Calculators/MonthlyPaymentLVFCalculator/index.js +40 -74
- package/dist/Chevron/Chevron.css.d.ts +1 -0
- package/dist/Chevron/Chevron.css.js +3 -1
- package/dist/Chevron/Chevron.interface.d.ts +8 -0
- package/dist/Chevron/index.js +20 -8
- package/dist/FaqAccordion/index.js +2 -2
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +1 -1
- package/dist/Forms/ApplyNow.d.ts +4 -0
- package/dist/Forms/ApplyNow.js +599 -0
- package/dist/Forms/ContactUsBusiness.js +3 -3
- package/dist/Forms/ContactUsNMLSId.js +3 -3
- package/dist/Forms/EmailOnly.js +3 -3
- package/dist/Forms/Forms.css.d.ts +5 -0
- package/dist/Forms/Forms.css.js +10 -0
- package/dist/Forms/index.d.ts +1 -0
- package/dist/Forms/index.js +9 -1
- package/dist/Hyperlink/index.js +1 -1
- package/dist/IconBillboard/IconBillboard.d.ts +2 -1
- package/dist/IconBillboard/IconBillboard.js +22 -4
- package/dist/IconBillboard/index.js +2 -1
- package/dist/ImageBillboard/ImageBillboardSet.js +1 -1
- package/dist/ImageLink/index.js +1 -1
- package/dist/Modal/Modal.js +3 -3
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/NavData.js +22 -11
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +63 -23
- package/dist/NavigationMenu/AxosBank/index.js +6 -6
- package/dist/NavigationMenu/LaVictoire/NavBar.module.js +37 -37
- package/dist/NavigationMenu/LaVictoire/NavData.js +1 -1
- package/dist/NavigationMenu/LaVictoire/index.js +4 -4
- package/dist/SocialMediaBar/iconsRepository.js +1 -1
- package/dist/VideoWrapper/index.js +1 -1
- package/dist/assets/Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css +64 -34
- package/dist/assets/Chevron/Chevron.css +6 -0
- package/dist/assets/Forms/Forms.css +26 -0
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +651 -658
- package/dist/assets/NavigationMenu/LaVictoire/NavBar.css.css +429 -429
- package/dist/assets/globals.css +1 -0
- package/dist/icons/ArrowIcon/index.d.ts +2 -2
- package/dist/icons/ArrowIcon/index.js +6 -1
- package/dist/main.js +11 -2
- package/dist/utils/allowedAxosDomains.js +2 -1
- package/package.json +130 -130
package/dist/assets/globals.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { CallToActionTypes } from '../../utils/variant.types';
|
|
2
|
-
import { FC } from 'react';
|
|
2
|
+
import { FC, SVGProps } from 'react';
|
|
3
3
|
|
|
4
4
|
export interface ArrowProps {
|
|
5
5
|
variant: CallToActionTypes;
|
|
6
6
|
className?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const SvgArrowIcon: FC<ArrowProps
|
|
8
|
+
declare const SvgArrowIcon: FC<ArrowProps & SVGProps<SVGSVGElement>>;
|
|
9
9
|
export default SvgArrowIcon;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Arrow } from "./ArrowIcon.css.js";
|
|
3
|
-
const SvgArrowIcon = ({
|
|
3
|
+
const SvgArrowIcon = ({
|
|
4
|
+
className,
|
|
5
|
+
variant,
|
|
6
|
+
style
|
|
7
|
+
}) => {
|
|
4
8
|
return /* @__PURE__ */ jsxs(
|
|
5
9
|
"svg",
|
|
6
10
|
{
|
|
@@ -10,6 +14,7 @@ const SvgArrowIcon = ({ className, variant }) => {
|
|
|
10
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11
15
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
12
16
|
className: className && className,
|
|
17
|
+
style,
|
|
13
18
|
children: [
|
|
14
19
|
/* @__PURE__ */ jsx("title", { children: "icon / arrow" }),
|
|
15
20
|
/* @__PURE__ */ jsx("desc", { children: "Created with Sketch." }),
|
package/dist/main.js
CHANGED
|
@@ -45,6 +45,7 @@ import { FooterContent, FooterDisclosure, FooterIcons, FooterParagraph } from ".
|
|
|
45
45
|
import { AxosFooterSiteMap } from "./FooterSiteMap/AxosBank/FooterSiteMap.js";
|
|
46
46
|
import { app_col, footer_mobile, footer_section, footer_wrapper, ft_col, ft_col_header, ft_col_subheader, ft_panel, ft_panel_group, nested_grid } from "./FooterSiteMap/AxosBank/FooterSiteMap.css.js";
|
|
47
47
|
import { ApplicationStart } from "./Forms/ApplicationStart.js";
|
|
48
|
+
import { ApplyNow, getLink } from "./Forms/ApplyNow.js";
|
|
48
49
|
import { ClearingForm } from "./Forms/ClearingForm.js";
|
|
49
50
|
import { CommercialDeposits } from "./Forms/CommercialDeposits.js";
|
|
50
51
|
import { CommercialLending } from "./Forms/CommercialLending.js";
|
|
@@ -58,7 +59,7 @@ import { CpraRequest } from "./Forms/CpraRequest.js";
|
|
|
58
59
|
import { DealerServices } from "./Forms/DealerServices.js";
|
|
59
60
|
import { EmailOnly } from "./Forms/EmailOnly.js";
|
|
60
61
|
import { EmailUs } from "./Forms/EmailUs.js";
|
|
61
|
-
import { actions, centerSelect, checkbox_group, descriptionField, disclosureForm, dropdown, dynPH, form, formBtns, formContainer, formWrapper, fullRowForm, fullRowSelect, headerContainer, headerForm, iconForm, modalCheckboxContainer, modalMobile, mt1Rem, mt2rem, mw24, na_cursor, one_row, pl_label, resposiveLabel, ro_input, section_title, succes_check_mark, success_circle, success_icon, success_wrap, threeColRow, x_input, xc_input } from "./Forms/Forms.css.js";
|
|
62
|
+
import { actions, back_btn_apply_now, centerSelect, checkbox_group, descriptionField, disclosureForm, dropdown, dynPH, form, formBtns, formContainer, formWrapper, form_nav_apply_now, fullRowForm, fullRowSelect, headerContainer, headerForm, hide_options, iconForm, iconbillboards_option_apply_now, modalCheckboxContainer, modalMobile, mt1Rem, mt2rem, mw24, na_cursor, one_row, pl_label, resposiveLabel, ro_input, section_title, show_options, succes_check_mark, success_circle, success_icon, success_wrap, threeColRow, x_input, xc_input } from "./Forms/Forms.css.js";
|
|
62
63
|
import { MortgageRate } from "./Forms/MortgageRate/MortgageRateForm.js";
|
|
63
64
|
import "react/jsx-runtime";
|
|
64
65
|
import { RateWatchForm } from "./Forms/MortgageRate/MortgageRateWatch.js";
|
|
@@ -78,7 +79,7 @@ import { HeroBanner } from "./HeroBanner/HeroBanner.js";
|
|
|
78
79
|
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";
|
|
79
80
|
import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
|
|
80
81
|
import { Hyperlink } from "./Hyperlink/index.js";
|
|
81
|
-
import { IconBillboard } from "./IconBillboard/IconBillboard.js";
|
|
82
|
+
import { Icon, IconBillboard } from "./IconBillboard/IconBillboard.js";
|
|
82
83
|
import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, list, listItem, section_body, section_container, section_text, title } from "./IconBillboard/IconBillboard.css.js";
|
|
83
84
|
import { IconBillboardSet } from "./IconBillboard/IconBillboardSet.js";
|
|
84
85
|
import { default as default2 } from "./icons/ArrowIcon/index.js";
|
|
@@ -193,6 +194,7 @@ export {
|
|
|
193
194
|
AlertBanner,
|
|
194
195
|
AnnualFeeCalculator,
|
|
195
196
|
ApplicationStart,
|
|
197
|
+
ApplyNow,
|
|
196
198
|
ApyCalculator,
|
|
197
199
|
default2 as ArrowIcon,
|
|
198
200
|
Article,
|
|
@@ -261,6 +263,7 @@ export {
|
|
|
261
263
|
GoBackButton,
|
|
262
264
|
HeroBanner,
|
|
263
265
|
Hyperlink,
|
|
266
|
+
Icon,
|
|
264
267
|
IconBillboard,
|
|
265
268
|
IconBillboardSet,
|
|
266
269
|
ImageBillboard,
|
|
@@ -355,6 +358,7 @@ export {
|
|
|
355
358
|
awards_row,
|
|
356
359
|
awards_section,
|
|
357
360
|
axosTheme,
|
|
361
|
+
back_btn_apply_now,
|
|
358
362
|
billboard,
|
|
359
363
|
billboard_body,
|
|
360
364
|
billboard_container,
|
|
@@ -436,6 +440,7 @@ export {
|
|
|
436
440
|
formBtns,
|
|
437
441
|
formContainer,
|
|
438
442
|
formWrapper,
|
|
443
|
+
form_nav_apply_now,
|
|
439
444
|
ft_col,
|
|
440
445
|
ft_col_header,
|
|
441
446
|
ft_col_subheader,
|
|
@@ -443,6 +448,7 @@ export {
|
|
|
443
448
|
ft_panel_group,
|
|
444
449
|
fullRowForm,
|
|
445
450
|
fullRowSelect,
|
|
451
|
+
getLink,
|
|
446
452
|
getVariant,
|
|
447
453
|
getVariantWithRegex,
|
|
448
454
|
header,
|
|
@@ -470,6 +476,7 @@ export {
|
|
|
470
476
|
hero_text,
|
|
471
477
|
hero_wrapper,
|
|
472
478
|
hide,
|
|
479
|
+
hide_options,
|
|
473
480
|
hide_transcript,
|
|
474
481
|
highlight_cell,
|
|
475
482
|
highlight_first_row,
|
|
@@ -480,6 +487,7 @@ export {
|
|
|
480
487
|
iconContainerBase,
|
|
481
488
|
iconForm,
|
|
482
489
|
iconInput,
|
|
490
|
+
iconbillboards_option_apply_now,
|
|
483
491
|
iconsContent,
|
|
484
492
|
imageLinkContainer,
|
|
485
493
|
imagePlacement,
|
|
@@ -574,6 +582,7 @@ export {
|
|
|
574
582
|
shift,
|
|
575
583
|
shortUrl,
|
|
576
584
|
show,
|
|
585
|
+
show_options,
|
|
577
586
|
single_container,
|
|
578
587
|
smb_section,
|
|
579
588
|
smb_wrapper,
|
|
@@ -36,7 +36,8 @@ const moreDomains = {
|
|
|
36
36
|
"{AXTPL}": process.env.AXOS_THIRD_PARTY_LENDING ?? "https://thirdpartylending.axosbank.com",
|
|
37
37
|
"{AXBHUBSVIDYARD}": process.env.AXBHUBSVIDYARD_URL || "https://www.axosbank.hubs.vidyard.com",
|
|
38
38
|
"{AUTOAX}": process.env.AUTO_AXOSBANK_URL || "https://auto.axosbank.com",
|
|
39
|
-
"{AFAST}": process.env.SECURE_FAST_URL || "https://secure.approvedfast.com"
|
|
39
|
+
"{AFAST}": process.env.SECURE_FAST_URL || "https://secure.approvedfast.com",
|
|
40
|
+
"{LVFMYSITE}": process.env.LVF_MYSITE_URL || "https://lavictoire-finance.my.site.com"
|
|
40
41
|
};
|
|
41
42
|
const isAllowedUrl = (url) => {
|
|
42
43
|
const uri = new URL(url, location.href);
|
package/package.json
CHANGED
|
@@ -1,130 +1,130 @@
|
|
|
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",
|
|
26
|
-
"storybook": "storybook dev -p 6006",
|
|
27
|
-
"build-storybook": "storybook build",
|
|
28
|
-
"npm:link": "npm run build && npm link"
|
|
29
|
-
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@headlessui/react": "^2.2.0",
|
|
32
|
-
"@hookform/resolvers": "^3.9.1",
|
|
33
|
-
"@react-input/mask": "^1.2.15",
|
|
34
|
-
"@react-input/number-format": "^1.1.3",
|
|
35
|
-
"@storybook/icons": "^1.3.0",
|
|
36
|
-
"@storybook/preview-api": "^8.4.7",
|
|
37
|
-
"@types/iframe-resizer": "3.5.13",
|
|
38
|
-
"@vanilla-extract/css": "^1.16.1",
|
|
39
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
40
|
-
"antd": "^5.22.5",
|
|
41
|
-
"clsx": "^2.1.1",
|
|
42
|
-
"iframe-resizer": "^3.6.6",
|
|
43
|
-
"lodash": "^4.17.21",
|
|
44
|
-
"moment": "^2.30.1",
|
|
45
|
-
"react-date-picker": "^11.0.0",
|
|
46
|
-
"react-date-range": "^2.0.1",
|
|
47
|
-
"react-hook-form": "^7.54.
|
|
48
|
-
"react-markdown": "^9.0.1",
|
|
49
|
-
"react-popper": "^2.3.0",
|
|
50
|
-
"react-slick": "^0.30.2",
|
|
51
|
-
"react-use": "^17.6.0",
|
|
52
|
-
"react-wrap-balancer": "^1.1.1",
|
|
53
|
-
"rsuite": "^5.75.0",
|
|
54
|
-
"slick-carousel": "^1.8.1",
|
|
55
|
-
"typed-css-modules": "^0.9.1",
|
|
56
|
-
"vite-plugin-svgr": "^4.3.0",
|
|
57
|
-
"zod": "^3.24.1",
|
|
58
|
-
"zustand": "^4.5.5"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"@vanilla-extract/css-utils": "^0.1.3",
|
|
62
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
63
|
-
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
64
|
-
"next": "^14.1.4",
|
|
65
|
-
"react": "^18.2.0",
|
|
66
|
-
"react-date-range": "^2.0.1",
|
|
67
|
-
"react-dom": "^18.2.0",
|
|
68
|
-
"react-popper": "^2.3.0",
|
|
69
|
-
"react-slick": "^0.30.2",
|
|
70
|
-
"slick-carousel": "^1.8.1"
|
|
71
|
-
},
|
|
72
|
-
"devDependencies": {
|
|
73
|
-
"@chromatic-com/storybook": "^1.9.0",
|
|
74
|
-
"@rollup/plugin-alias": "^5.1.1",
|
|
75
|
-
"@storybook/addon-essentials": "^8.4.7",
|
|
76
|
-
"@storybook/addon-interactions": "^8.4.7",
|
|
77
|
-
"@storybook/addon-links": "^8.4.7",
|
|
78
|
-
"@storybook/addon-mdx-gfm": "^8.4.7",
|
|
79
|
-
"@storybook/addon-onboarding": "^8.4.7",
|
|
80
|
-
"@storybook/addon-themes": "^8.4.7",
|
|
81
|
-
"@storybook/blocks": "^8.4.7",
|
|
82
|
-
"@storybook/react": "^8.4.7",
|
|
83
|
-
"@storybook/react-vite": "^8.4.7",
|
|
84
|
-
"@storybook/test": "^8.4.7",
|
|
85
|
-
"@svgr/core": "^8.1.0",
|
|
86
|
-
"@svgr/plugin-prettier": "^8.1.0",
|
|
87
|
-
"@svgr/plugin-svgo": "^8.1.0",
|
|
88
|
-
"@types/lodash": "^4.17.13",
|
|
89
|
-
"@types/node": "^20.17.10",
|
|
90
|
-
"@types/react": "^18.3.17",
|
|
91
|
-
"@types/react-date-range": "^1.4.9",
|
|
92
|
-
"@types/react-datepicker": "^6.2.0",
|
|
93
|
-
"@types/react-dom": "^18.3.5",
|
|
94
|
-
"@types/react-slick": "^0.23.13",
|
|
95
|
-
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
96
|
-
"@typescript-eslint/parser": "^7.18.0",
|
|
97
|
-
"@vanilla-extract/css-utils": "^0.1.4",
|
|
98
|
-
"@vanilla-extract/recipes": "^0.5.5",
|
|
99
|
-
"@vanilla-extract/vite-plugin": "^4.0.18",
|
|
100
|
-
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
101
|
-
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
102
|
-
"eslint": "^8.57.1",
|
|
103
|
-
"eslint-plugin-react-hooks": "^4.6.2",
|
|
104
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
105
|
-
"eslint-plugin-storybook": "^0.8.0",
|
|
106
|
-
"glob": "^10.4.5",
|
|
107
|
-
"husky": "^9.1.7",
|
|
108
|
-
"next": "^14.1.4",
|
|
109
|
-
"prettier": "3.2.5",
|
|
110
|
-
"react": "^18.3.1",
|
|
111
|
-
"react-dom": "^18.3.1",
|
|
112
|
-
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
113
|
-
"rollup-plugin-svg-import": "^3.0.0",
|
|
114
|
-
"rollup-plugin-svgo": "^2.0.0",
|
|
115
|
-
"storybook": "^8.4.7",
|
|
116
|
-
"typescript": "^5.7.2",
|
|
117
|
-
"typescript-plugin-css-modules": "^5.1.0",
|
|
118
|
-
"vite": "^5.4.11",
|
|
119
|
-
"vite-plugin-dts": "^3.9.1",
|
|
120
|
-
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
121
|
-
"vite-plugin-setting-css-module": "^1.1.4",
|
|
122
|
-
"vite-tsconfig-paths": "^4.3.2"
|
|
123
|
-
},
|
|
124
|
-
"main": "index.js",
|
|
125
|
-
"directories": {
|
|
126
|
-
"lib": "lib"
|
|
127
|
-
},
|
|
128
|
-
"author": "axos-web-dev",
|
|
129
|
-
"license": "ISC"
|
|
130
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@axos-web-dev/shared-components",
|
|
3
|
+
"description": "Axos shared components library for web.",
|
|
4
|
+
"version": "0.0.198",
|
|
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",
|
|
26
|
+
"storybook": "storybook dev -p 6006",
|
|
27
|
+
"build-storybook": "storybook build",
|
|
28
|
+
"npm:link": "npm run build && npm link"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@headlessui/react": "^2.2.0",
|
|
32
|
+
"@hookform/resolvers": "^3.9.1",
|
|
33
|
+
"@react-input/mask": "^1.2.15",
|
|
34
|
+
"@react-input/number-format": "^1.1.3",
|
|
35
|
+
"@storybook/icons": "^1.3.0",
|
|
36
|
+
"@storybook/preview-api": "^8.4.7",
|
|
37
|
+
"@types/iframe-resizer": "3.5.13",
|
|
38
|
+
"@vanilla-extract/css": "^1.16.1",
|
|
39
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
40
|
+
"antd": "^5.22.5",
|
|
41
|
+
"clsx": "^2.1.1",
|
|
42
|
+
"iframe-resizer": "^3.6.6",
|
|
43
|
+
"lodash": "^4.17.21",
|
|
44
|
+
"moment": "^2.30.1",
|
|
45
|
+
"react-date-picker": "^11.0.0",
|
|
46
|
+
"react-date-range": "^2.0.1",
|
|
47
|
+
"react-hook-form": "^7.54.2",
|
|
48
|
+
"react-markdown": "^9.0.1",
|
|
49
|
+
"react-popper": "^2.3.0",
|
|
50
|
+
"react-slick": "^0.30.2",
|
|
51
|
+
"react-use": "^17.6.0",
|
|
52
|
+
"react-wrap-balancer": "^1.1.1",
|
|
53
|
+
"rsuite": "^5.75.0",
|
|
54
|
+
"slick-carousel": "^1.8.1",
|
|
55
|
+
"typed-css-modules": "^0.9.1",
|
|
56
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
57
|
+
"zod": "^3.24.1",
|
|
58
|
+
"zustand": "^4.5.5"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"@vanilla-extract/css-utils": "^0.1.3",
|
|
62
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
63
|
+
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
64
|
+
"next": "^14.1.4",
|
|
65
|
+
"react": "^18.2.0",
|
|
66
|
+
"react-date-range": "^2.0.1",
|
|
67
|
+
"react-dom": "^18.2.0",
|
|
68
|
+
"react-popper": "^2.3.0",
|
|
69
|
+
"react-slick": "^0.30.2",
|
|
70
|
+
"slick-carousel": "^1.8.1"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@chromatic-com/storybook": "^1.9.0",
|
|
74
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
75
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
76
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
77
|
+
"@storybook/addon-links": "^8.4.7",
|
|
78
|
+
"@storybook/addon-mdx-gfm": "^8.4.7",
|
|
79
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
|
80
|
+
"@storybook/addon-themes": "^8.4.7",
|
|
81
|
+
"@storybook/blocks": "^8.4.7",
|
|
82
|
+
"@storybook/react": "^8.4.7",
|
|
83
|
+
"@storybook/react-vite": "^8.4.7",
|
|
84
|
+
"@storybook/test": "^8.4.7",
|
|
85
|
+
"@svgr/core": "^8.1.0",
|
|
86
|
+
"@svgr/plugin-prettier": "^8.1.0",
|
|
87
|
+
"@svgr/plugin-svgo": "^8.1.0",
|
|
88
|
+
"@types/lodash": "^4.17.13",
|
|
89
|
+
"@types/node": "^20.17.10",
|
|
90
|
+
"@types/react": "^18.3.17",
|
|
91
|
+
"@types/react-date-range": "^1.4.9",
|
|
92
|
+
"@types/react-datepicker": "^6.2.0",
|
|
93
|
+
"@types/react-dom": "^18.3.5",
|
|
94
|
+
"@types/react-slick": "^0.23.13",
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
96
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
97
|
+
"@vanilla-extract/css-utils": "^0.1.4",
|
|
98
|
+
"@vanilla-extract/recipes": "^0.5.5",
|
|
99
|
+
"@vanilla-extract/vite-plugin": "^4.0.18",
|
|
100
|
+
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
101
|
+
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
102
|
+
"eslint": "^8.57.1",
|
|
103
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
104
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
105
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
106
|
+
"glob": "^10.4.5",
|
|
107
|
+
"husky": "^9.1.7",
|
|
108
|
+
"next": "^14.1.4",
|
|
109
|
+
"prettier": "3.2.5",
|
|
110
|
+
"react": "^18.3.1",
|
|
111
|
+
"react-dom": "^18.3.1",
|
|
112
|
+
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
113
|
+
"rollup-plugin-svg-import": "^3.0.0",
|
|
114
|
+
"rollup-plugin-svgo": "^2.0.0",
|
|
115
|
+
"storybook": "^8.4.7",
|
|
116
|
+
"typescript": "^5.7.2",
|
|
117
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
118
|
+
"vite": "^5.4.11",
|
|
119
|
+
"vite-plugin-dts": "^3.9.1",
|
|
120
|
+
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
121
|
+
"vite-plugin-setting-css-module": "^1.1.4",
|
|
122
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
123
|
+
},
|
|
124
|
+
"main": "index.js",
|
|
125
|
+
"directories": {
|
|
126
|
+
"lib": "lib"
|
|
127
|
+
},
|
|
128
|
+
"author": "axos-web-dev",
|
|
129
|
+
"license": "ISC"
|
|
130
|
+
}
|