@axos-web-dev/shared-components 0.0.61 → 0.0.63
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.css.d.ts +27 -0
- package/dist/Button/Button.css.js +1 -1
- package/dist/Button/Button.d.ts +1 -1
- package/dist/Button/Button.js +6 -2
- package/dist/Calculators/Calculator.d.ts +13 -0
- package/dist/Calculators/Calculator.js +120 -0
- package/dist/Calculators/calculator.css.d.ts +42 -0
- package/dist/Calculators/calculator.css.js +11 -0
- package/dist/Calculators/calculators.d.ts +7 -0
- package/dist/Calculators/calculators.js +83 -0
- package/dist/Calculators/index.d.ts +2 -0
- package/dist/Calculators/index.js +7 -0
- package/dist/Carousel/index.js +13 -10
- package/dist/Chevron/Chevron.interface.d.ts +4 -0
- package/dist/Chevron/index.js +14 -11
- package/dist/ExecutiveBio/ExecutiveBio.css.d.ts +24 -128
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +14 -11
- package/dist/Forms/ContactUsBusiness.js +8 -5
- package/dist/Forms/EmailOnly.js +9 -6
- package/dist/Forms/RenderForm.js +4 -1
- package/dist/Forms/SuccesForm.js +4 -1
- package/dist/HeroBanner/HeroBanner.css.d.ts +1 -1
- package/dist/HeroBanner/HeroBanner.css.js +4 -3
- package/dist/HeroBanner/HeroBanner.d.ts +3 -0
- package/dist/HeroBanner/HeroBanner.interface.d.ts +14 -4
- package/dist/HeroBanner/HeroBanner.js +155 -0
- package/dist/HeroBanner/SelectionBanner.css.d.ts +24 -0
- package/dist/HeroBanner/SelectionBanner.css.js +19 -0
- package/dist/HeroBanner/index.d.ts +4 -3
- package/dist/HeroBanner/index.js +20 -81
- package/dist/Hyperlink/index.js +14 -11
- package/dist/ImageLink/ImageLink.js +14 -11
- package/dist/ImageLink/ImageLinkSet.js +14 -11
- package/dist/ImageLink/index.js +14 -11
- package/dist/Modal/Modal.js +15 -12
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +53 -53
- package/dist/SetContainer/SetContainer.js +14 -11
- package/dist/StepItem/StepItem.d.ts +1 -0
- package/dist/StepItem/StepItem.js +2 -2
- package/dist/StepItemSet/StepItemSet.css.d.ts +30 -2
- package/dist/StepItemSet/StepItemSet.js +2 -1
- package/dist/assets/Button/Button.css +33 -8
- package/dist/assets/Calculators/calculator.css +47 -0
- package/dist/assets/ExecutiveBio/ExecutiveBio.css +28 -100
- package/dist/assets/HeroBanner/HeroBanner.css +5 -0
- package/dist/assets/HeroBanner/SelectionBanner.css +83 -0
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +116 -115
- package/dist/assets/StepItem/StepItem.css +2 -1
- package/dist/assets/StepItemSet/StepItemSet.css +15 -2
- package/dist/assets/TopicalNavItem/TopicalNavItem.css +1 -1
- package/dist/assets/themes/axos.css +1 -1
- package/dist/main.d.ts +2 -1
- package/dist/main.js +26 -3
- package/package.json +4 -1
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
--_1073cm8i: linear-gradient(45deg, #051A3F 14.64%, #1E3860 48.42%, #4D85B0 85.36%);
|
|
20
20
|
--_1073cm8j: #1E3860;
|
|
21
21
|
--_1073cm8k: #FAA74A;
|
|
22
|
-
--_1073cm8l: #
|
|
22
|
+
--_1073cm8l: #1E3860;
|
|
23
23
|
--_1073cm8m: linear-gradient(45deg, #051A3F 14.64%, #1E3860 48.42%, #4D85B0 85.36%);
|
|
24
24
|
--_1073cm8n: #FFFFFF;
|
|
25
25
|
--_1073cm8o: #FAA74A;
|
package/dist/main.d.ts
CHANGED
|
@@ -3,10 +3,11 @@ export * from './AlertBanner';
|
|
|
3
3
|
export * from './ApyCalculator';
|
|
4
4
|
export * from './Article';
|
|
5
5
|
export * from './ArticlesSet';
|
|
6
|
-
export * from './AwardsItem';
|
|
7
6
|
export * from './AwardsBanner';
|
|
7
|
+
export * from './AwardsItem';
|
|
8
8
|
export * from './BulletItem';
|
|
9
9
|
export * from './Button';
|
|
10
|
+
export * from './Calculators';
|
|
10
11
|
export * from './CallToActionBar';
|
|
11
12
|
export * from './Carousel';
|
|
12
13
|
export * from './Chevron';
|
package/dist/main.js
CHANGED
|
@@ -7,14 +7,16 @@ import { Article } from "./Article/Article.js";
|
|
|
7
7
|
import { ant_article, ant_card_body, ant_card_cta, ant_card_title, ant_content, ant_eyebrow, ant_img } from "./Article/Article.css.js";
|
|
8
8
|
import { ArticlesSet } from "./ArticlesSet/ArticlesSet.js";
|
|
9
9
|
import { ant_blog_cta, ant_grid, ant_header, ant_sec_body, ant_sec_title, ant_section, ant_svg_fill } from "./ArticlesSet/ArticlesSet.css.js";
|
|
10
|
-
import { award_company, award_item, award_name } from "./AwardsItem/AwardsItem.css.js";
|
|
11
|
-
import { AwardsItem } from "./AwardsItem/AwardsItem.js";
|
|
12
10
|
import { awards_row, awards_section } from "./AwardsBanner/AwardsBanner.css.js";
|
|
13
11
|
import { AwardsBanner } from "./AwardsBanner/AwardsBanner.js";
|
|
12
|
+
import { award_company, award_item, award_name } from "./AwardsItem/AwardsItem.css.js";
|
|
13
|
+
import { AwardsItem } from "./AwardsItem/AwardsItem.js";
|
|
14
14
|
import { BulletItem } from "./BulletItem/BulletItem.js";
|
|
15
15
|
import { Button } from "./Button/Button.js";
|
|
16
16
|
import { button } from "./Button/Button.css.js";
|
|
17
17
|
import { GoBackButton } from "./Button/GoBackButton.js";
|
|
18
|
+
import { Calculator } from "./Calculators/Calculator.js";
|
|
19
|
+
import { calculator_description, calculator_headline } from "./Calculators/calculator.css.js";
|
|
18
20
|
import { CallToActionBar } from "./CallToActionBar/index.js";
|
|
19
21
|
import { Carousel, CarouselSlide } from "./Carousel/index.js";
|
|
20
22
|
import { Chevron } from "./Chevron/index.js";
|
|
@@ -40,7 +42,9 @@ import { ScheduleCallPremier } from "./Forms/ScheduleCallPremier.js";
|
|
|
40
42
|
import { SuccesFormWrapper } from "./Forms/SuccesForm.js";
|
|
41
43
|
import { ContactCompany } from "./Forms/ContactCompany.js";
|
|
42
44
|
import { DealerServices } from "./Forms/DealerServices.js";
|
|
43
|
-
import { HeroBanner } from "./HeroBanner/
|
|
45
|
+
import { HeroBanner } from "./HeroBanner/HeroBanner.js";
|
|
46
|
+
import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_img, hero_text, hero_wrapper, logout, reversed } from "./HeroBanner/HeroBanner.css.js";
|
|
47
|
+
import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
|
|
44
48
|
import { Hyperlink } from "./Hyperlink/index.js";
|
|
45
49
|
import { IconBillboard } from "./IconBillboard/IconBillboard.js";
|
|
46
50
|
import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, list, listItem, section_body, section_container, section_text, title } from "./IconBillboard/IconBillboard.css.js";
|
|
@@ -131,6 +135,7 @@ export {
|
|
|
131
135
|
default7 as AxosXBlue,
|
|
132
136
|
BulletItem,
|
|
133
137
|
Button,
|
|
138
|
+
Calculator,
|
|
134
139
|
CallToActionBar,
|
|
135
140
|
Carousel,
|
|
136
141
|
CarouselSlide,
|
|
@@ -259,6 +264,8 @@ export {
|
|
|
259
264
|
bullet_details,
|
|
260
265
|
button,
|
|
261
266
|
buttons,
|
|
267
|
+
calculator_description,
|
|
268
|
+
calculator_headline,
|
|
262
269
|
components,
|
|
263
270
|
contact_col,
|
|
264
271
|
contact_entry,
|
|
@@ -302,8 +309,16 @@ export {
|
|
|
302
309
|
header_section,
|
|
303
310
|
header_theme,
|
|
304
311
|
headline_setting,
|
|
312
|
+
headline_text,
|
|
305
313
|
headshot,
|
|
306
314
|
helperText,
|
|
315
|
+
heroSupertag,
|
|
316
|
+
hero_banner,
|
|
317
|
+
hero_btns,
|
|
318
|
+
hero_content,
|
|
319
|
+
hero_img,
|
|
320
|
+
hero_text,
|
|
321
|
+
hero_wrapper,
|
|
307
322
|
hide,
|
|
308
323
|
hide_transcript,
|
|
309
324
|
highlight_first_row,
|
|
@@ -333,6 +348,7 @@ export {
|
|
|
333
348
|
line_points,
|
|
334
349
|
list,
|
|
335
350
|
listItem,
|
|
351
|
+
logout,
|
|
336
352
|
mb_8,
|
|
337
353
|
media,
|
|
338
354
|
mh_330,
|
|
@@ -356,6 +372,7 @@ export {
|
|
|
356
372
|
rate_container,
|
|
357
373
|
rate_pad,
|
|
358
374
|
renderSwitch,
|
|
375
|
+
reversed,
|
|
359
376
|
sec_subtitle,
|
|
360
377
|
sec_title,
|
|
361
378
|
section_body,
|
|
@@ -364,6 +381,12 @@ export {
|
|
|
364
381
|
section_text_ImageBillboard,
|
|
365
382
|
section_theme,
|
|
366
383
|
selectInput,
|
|
384
|
+
selection_headline_text,
|
|
385
|
+
selection_section,
|
|
386
|
+
selection_section_bg,
|
|
387
|
+
selection_section_content,
|
|
388
|
+
selection_section_icon,
|
|
389
|
+
selection_section_icon_img,
|
|
367
390
|
set_container,
|
|
368
391
|
shift,
|
|
369
392
|
shortUrl,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axos-web-dev/shared-components",
|
|
3
3
|
"description": "Axos shared components library for web.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.63",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/main.js",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
"@vanilla-extract/recipes": "^0.5.1",
|
|
38
38
|
"clsx": "^2.1.1",
|
|
39
39
|
"react-hook-form": "^7.51.5",
|
|
40
|
+
"@types/iframe-resizer": "3.5.13",
|
|
41
|
+
"iframe-resizer": "4.3.11",
|
|
40
42
|
"react-markdown": "^9.0.1",
|
|
41
43
|
"react-use": "^17.5.0",
|
|
42
44
|
"typed-css-modules": "^0.9.1",
|
|
@@ -68,6 +70,7 @@
|
|
|
68
70
|
"@svgr/plugin-svgo": "^8.1.0",
|
|
69
71
|
"@types/node": "^20.12.12",
|
|
70
72
|
"@types/react": "^18.3.2",
|
|
73
|
+
"@types/react-datepicker": "^6.2.0",
|
|
71
74
|
"@types/react-dom": "^18.3.0",
|
|
72
75
|
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
73
76
|
"@typescript-eslint/parser": "^7.9.0",
|