@axos-web-dev/shared-components 0.0.42 → 0.0.44
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/Carousel/store.d.ts +1 -1
- package/dist/ContentBanner/index.d.ts +1 -1
- package/dist/ExecutiveBio/ExecutiveBio.d.ts +1 -1
- package/dist/ExecutiveBio/ExecutiveBioSet.d.ts +1 -1
- package/dist/FooterDisclosure/FooterDisclosure.css.d.ts +1 -1
- package/dist/Forms/Forms.css.d.ts +2 -0
- package/dist/Forms/Forms.css.js +13 -9
- package/dist/Forms/ScheduleCall.d.ts +2 -1
- package/dist/Forms/ScheduleCall.js +6 -2
- package/dist/Forms/index.js +3 -1
- package/dist/Hyperlink/Hyperlink.interface.d.ts +4 -0
- package/dist/Hyperlink/index.js +3 -1
- package/dist/IconBillboard/IconBillboardSet.d.ts +1 -1
- package/dist/ImageBillboard/ImageBillboard.d.ts +1 -1
- package/dist/ImageLink/ImageLink.css.d.ts +0 -0
- package/dist/ImageLink/ImageLink.css.js +1 -0
- package/dist/ImageLink/ImageLink.css.ts.vanilla.css.js +1 -0
- package/dist/ImageLink/ImageLink.d.ts +15 -0
- package/dist/ImageLink/ImageLink.js +64 -0
- package/dist/ImageLink/ImageLinkSet.d.ts +9 -0
- package/dist/ImageLink/ImageLinkSet.js +98 -0
- package/dist/ImageLink/index.d.ts +2 -0
- package/dist/ImageLink/index.js +54 -0
- package/dist/Input/Input.css.d.ts +1 -1
- package/dist/Input/Input.d.ts +1 -1
- package/dist/Input/InputPhone.d.ts +1 -1
- package/dist/Inputs/Input.css.d.ts +1 -1
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +53 -53
- package/dist/SetContainer/SetContainer.css.d.ts +1 -0
- package/dist/SetContainer/SetContainer.css.js +2 -0
- package/dist/SetContainer/SetContainer.js +1 -1
- package/dist/SetContainer/index.js +2 -1
- package/dist/StepItems/StepItems.d.ts +1 -1
- package/dist/StepItems/StepItemsSet.d.ts +1 -1
- package/dist/Table/Table.d.ts +162 -162
- package/dist/assets/Accordion/Accordion.css +1 -1
- package/dist/assets/Forms/Forms.css +46 -41
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +118 -116
- package/dist/assets/SetContainer/SetContainer.css +30 -1
- package/dist/main.d.ts +1 -0
- package/dist/main.js +9 -3
- package/package.json +39 -39
|
@@ -12,14 +12,43 @@
|
|
|
12
12
|
}
|
|
13
13
|
._18ygy9m5 {
|
|
14
14
|
display: grid;
|
|
15
|
-
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
15
|
+
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
|
|
16
16
|
gap: 24px;
|
|
17
17
|
}
|
|
18
18
|
._18ygy9m5 .containment {
|
|
19
19
|
width: 100%;
|
|
20
20
|
}
|
|
21
|
+
._18ygy9m6 {
|
|
22
|
+
display: flex;
|
|
23
|
+
place-items: center;
|
|
24
|
+
text-align: center;
|
|
25
|
+
margin-inline: auto;
|
|
26
|
+
}
|
|
27
|
+
._18ygy9m5:has(._18ygy9m6) {
|
|
28
|
+
grid-template-columns: repeat(3, minmax(min(300px, 100%), 1fr));
|
|
29
|
+
}
|
|
21
30
|
@media screen and (max-width: 1023px) {
|
|
22
31
|
._18ygy9m5 {
|
|
23
32
|
grid-template-columns: 1fr;
|
|
24
33
|
}
|
|
34
|
+
}
|
|
35
|
+
@media screen and (max-width:320px) {
|
|
36
|
+
._18ygy9m6 {
|
|
37
|
+
max-width: 100%;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
@media screen and (max-width:768px) {
|
|
41
|
+
._18ygy9m6 {
|
|
42
|
+
max-width: 100%;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
@media screen and (max-width:641px) {
|
|
46
|
+
._18ygy9m5:has(._18ygy9m6) {
|
|
47
|
+
grid-template-columns: 1fr 1fr;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
@media screen and (max-width:480px) {
|
|
51
|
+
._18ygy9m5:has(._18ygy9m6) {
|
|
52
|
+
grid-template-columns: 1fr;
|
|
53
|
+
}
|
|
25
54
|
}
|
package/dist/main.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export * from './HeroBanner';
|
|
|
17
17
|
export * from './Hyperlink';
|
|
18
18
|
export * from './IconBillboard';
|
|
19
19
|
export * from './ImageBillboard';
|
|
20
|
+
export * from './ImageLink';
|
|
20
21
|
export * from './Input';
|
|
21
22
|
export * from './LandingPageHeader';
|
|
22
23
|
export * from './MainHTML';
|
package/dist/main.js
CHANGED
|
@@ -19,7 +19,7 @@ import { ExecutiveBioSet } from "./ExecutiveBio/ExecutiveBioSet.js";
|
|
|
19
19
|
import { AccordionItem, AccordionItemContent, AccordionItemSummary, FaqAccordion } from "./FaqAccordion/index.js";
|
|
20
20
|
import { footerDisclosure, footerLink, footerParagraph, iconsContent } from "./FooterDisclosure/FooterDisclosure.css.js";
|
|
21
21
|
import { FooterContent, FooterDisclosure, FooterIcons, FooterParagraph } from "./FooterDisclosure/FooterDisclosure.js";
|
|
22
|
-
import { actions, disclosureForm, form, formContainer, formWrapper, headerForm, iconForm, succes_check_mark, success_circle, success_icon, success_wrap } from "./Forms/Forms.css.js";
|
|
22
|
+
import { actions, descriptionField, disclosureForm, form, formContainer, formWrapper, headerContainer, headerForm, iconForm, succes_check_mark, success_circle, success_icon, success_wrap } from "./Forms/Forms.css.js";
|
|
23
23
|
import { RenderWebForm, renderSwitch } from "./Forms/RenderForm.js";
|
|
24
24
|
import { SalesforceFieldsForm, SalesforceSchema } from "./Forms/SalesforceFieldsForm.js";
|
|
25
25
|
import { ScheduleCall } from "./Forms/ScheduleCall.js";
|
|
@@ -37,6 +37,10 @@ import { IconBillboardSet } from "./IconBillboard/IconBillboardSet.js";
|
|
|
37
37
|
import { ImageBillboardSet } from "./ImageBillboard/ImageBillboard.js";
|
|
38
38
|
import { apy_billboard, billboard, billboard_body, billboard_container, billboard_ctas, billboard_header_section, billboard_image, billboard_img, body, body_copy, header, imagePlacement, image_background, mh_330, rate_billboard, rate_container, rate_pad, section_text_ImageBillboard, single_container, sub_bullets, supertag, three_inline, two_inline, up_to } from "./ImageBillboard/ImageBillboard.css.js";
|
|
39
39
|
import { ImageBillboard } from "./ImageBillboard/ImageBillboardSet.js";
|
|
40
|
+
import { SetContainer } from "./SetContainer/SetContainer.js";
|
|
41
|
+
import { imageLinkContainer, inline_container, set_container } from "./SetContainer/SetContainer.css.js";
|
|
42
|
+
import "react";
|
|
43
|
+
import { ImageLinkSet } from "./ImageLink/ImageLinkSet.js";
|
|
40
44
|
import { Input } from "./Input/Input.js";
|
|
41
45
|
import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input/Input.css.js";
|
|
42
46
|
import { InputPhone } from "./Input/InputPhone.js";
|
|
@@ -47,8 +51,6 @@ import { GlobalContext, GlobalContextProvider, useGlobalContext } from "./Modal/
|
|
|
47
51
|
import { default as default2 } from "./NavigationMenu/AxosAdvisor/index.js";
|
|
48
52
|
import { default as default3 } from "./NavigationMenu/AxosFiduciary/index.js";
|
|
49
53
|
import { SecondaryFooter } from "./SecondaryFooter/index.js";
|
|
50
|
-
import { SetContainer } from "./SetContainer/SetContainer.js";
|
|
51
|
-
import { inline_container, set_container } from "./SetContainer/SetContainer.css.js";
|
|
52
54
|
import { SocialMediaBar } from "./SocialMediaBar/index.js";
|
|
53
55
|
import { StepItems } from "./StepItems/StepItems.js";
|
|
54
56
|
import { bs_add_details, bs_btns, bs_copy, bs_image, bs_section, bs_topic, bs_wrapper, bullet_details, li, line_points, modifier, ol, point, sec_subtitle, sec_title, step_num, steps_wrapper, svg_logo, tablet_col } from "./StepItems/StepItems.css.js";
|
|
@@ -128,6 +130,7 @@ export {
|
|
|
128
130
|
IconBillboardSet,
|
|
129
131
|
ImageBillboard,
|
|
130
132
|
ImageBillboardSet,
|
|
133
|
+
ImageLinkSet,
|
|
131
134
|
Input,
|
|
132
135
|
InputPhone,
|
|
133
136
|
LandingPageHeader,
|
|
@@ -200,6 +203,7 @@ export {
|
|
|
200
203
|
content,
|
|
201
204
|
copy,
|
|
202
205
|
description,
|
|
206
|
+
descriptionField,
|
|
203
207
|
details,
|
|
204
208
|
disclosureForm,
|
|
205
209
|
expand_icon,
|
|
@@ -215,6 +219,7 @@ export {
|
|
|
215
219
|
header,
|
|
216
220
|
headerAccordion,
|
|
217
221
|
headerCell,
|
|
222
|
+
headerContainer,
|
|
218
223
|
headerContent,
|
|
219
224
|
headerForm,
|
|
220
225
|
headerIconBillboard,
|
|
@@ -233,6 +238,7 @@ export {
|
|
|
233
238
|
iconForm,
|
|
234
239
|
iconInput,
|
|
235
240
|
iconsContent,
|
|
241
|
+
imageLinkContainer,
|
|
236
242
|
imagePlacement,
|
|
237
243
|
image_background,
|
|
238
244
|
img_area,
|
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.44",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/main.js",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
@@ -29,19 +29,19 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@hookform/resolvers": "^3.3.4",
|
|
32
|
-
"@react-input/mask": "^1.0
|
|
33
|
-
"@storybook/builder-vite": "^7.6.
|
|
34
|
-
"@storybook/preview-api": "^7.6.
|
|
35
|
-
"@vanilla-extract/css": "^1.
|
|
32
|
+
"@react-input/mask": "^1.2.0",
|
|
33
|
+
"@storybook/builder-vite": "^7.6.19",
|
|
34
|
+
"@storybook/preview-api": "^7.6.19",
|
|
35
|
+
"@vanilla-extract/css": "^1.15.1",
|
|
36
36
|
"@vanilla-extract/recipes": "^0.5.1",
|
|
37
|
-
"clsx": "^2.1.
|
|
38
|
-
"react-hook-form": "^7.51.
|
|
37
|
+
"clsx": "^2.1.1",
|
|
38
|
+
"react-hook-form": "^7.51.3",
|
|
39
39
|
"react-markdown": "^9.0.1",
|
|
40
40
|
"react-use": "^17.5.0",
|
|
41
41
|
"typed-css-modules": "^0.9.1",
|
|
42
42
|
"vite-plugin-svgr": "^4.2.0",
|
|
43
|
-
"zod": "^3.
|
|
44
|
-
"zustand": "^4.5.
|
|
43
|
+
"zod": "^3.23.5",
|
|
44
|
+
"zustand": "^4.5.2"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@vanilla-extract/css": "^1.14.1",
|
|
@@ -54,49 +54,49 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@rollup/plugin-alias": "^5.1.0",
|
|
57
|
-
"@storybook/addon-essentials": "^7.6.
|
|
58
|
-
"@storybook/addon-interactions": "^7.6.
|
|
59
|
-
"@storybook/addon-links": "^7.6.
|
|
60
|
-
"@storybook/addon-onboarding": "^
|
|
61
|
-
"@storybook/addon-themes": "^7.6.
|
|
62
|
-
"@storybook/blocks": "^7.6.
|
|
63
|
-
"@storybook/react": "^7.6.
|
|
64
|
-
"@storybook/react-vite": "^7.6.
|
|
65
|
-
"@storybook/test": "^7.6.
|
|
57
|
+
"@storybook/addon-essentials": "^7.6.19",
|
|
58
|
+
"@storybook/addon-interactions": "^7.6.19",
|
|
59
|
+
"@storybook/addon-links": "^7.6.19",
|
|
60
|
+
"@storybook/addon-onboarding": "^8.0.9",
|
|
61
|
+
"@storybook/addon-themes": "^7.6.19",
|
|
62
|
+
"@storybook/blocks": "^7.6.19",
|
|
63
|
+
"@storybook/react": "^7.6.19",
|
|
64
|
+
"@storybook/react-vite": "^7.6.19",
|
|
65
|
+
"@storybook/test": "^7.6.19",
|
|
66
66
|
"@svgr/core": "^8.1.0",
|
|
67
67
|
"@svgr/plugin-prettier": "^8.1.0",
|
|
68
68
|
"@svgr/plugin-svgo": "^8.1.0",
|
|
69
|
-
"@types/node": "^20.
|
|
70
|
-
"@types/react": "^18.
|
|
71
|
-
"@types/react-dom": "^18.
|
|
72
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
73
|
-
"@typescript-eslint/parser": "^
|
|
69
|
+
"@types/node": "^20.12.8",
|
|
70
|
+
"@types/react": "^18.3.1",
|
|
71
|
+
"@types/react-dom": "^18.3.0",
|
|
72
|
+
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
73
|
+
"@typescript-eslint/parser": "^7.8.0",
|
|
74
74
|
"@vanilla-extract/css-utils": "^0.1.3",
|
|
75
|
-
"@vanilla-extract/recipes": "^0.5.
|
|
76
|
-
"@vanilla-extract/vite-plugin": "^4.0.
|
|
77
|
-
"@vitejs/plugin-react-swc": "^3.
|
|
75
|
+
"@vanilla-extract/recipes": "^0.5.2",
|
|
76
|
+
"@vanilla-extract/vite-plugin": "^4.0.9",
|
|
77
|
+
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
78
78
|
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
79
|
-
"eslint": "^8.
|
|
80
|
-
"eslint-plugin-react-hooks": "^4.6.
|
|
81
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
82
|
-
"eslint-plugin-storybook": "^0.
|
|
83
|
-
"glob": "^10.3.
|
|
84
|
-
"husky": "^
|
|
79
|
+
"eslint": "^8.57.0",
|
|
80
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
81
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
82
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
83
|
+
"glob": "^10.3.12",
|
|
84
|
+
"husky": "^9.0.11",
|
|
85
85
|
"next": "^14.1.4",
|
|
86
86
|
"prettier": "3.2.5",
|
|
87
|
-
"react": "^18.
|
|
88
|
-
"react-dom": "^18.
|
|
87
|
+
"react": "^18.3.1",
|
|
88
|
+
"react-dom": "^18.3.1",
|
|
89
89
|
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
90
90
|
"rollup-plugin-svg-import": "^3.0.0",
|
|
91
91
|
"rollup-plugin-svgo": "^2.0.0",
|
|
92
|
-
"storybook": "^7.6.
|
|
92
|
+
"storybook": "^7.6.19",
|
|
93
93
|
"typescript": "^5.2.2",
|
|
94
94
|
"typescript-plugin-css-modules": "^5.1.0",
|
|
95
|
-
"vite": "^5.
|
|
96
|
-
"vite-plugin-dts": "^3.
|
|
97
|
-
"vite-plugin-lib-inject-css": "^
|
|
95
|
+
"vite": "^5.2.10",
|
|
96
|
+
"vite-plugin-dts": "^3.9.0",
|
|
97
|
+
"vite-plugin-lib-inject-css": "^2.0.1",
|
|
98
98
|
"vite-plugin-setting-css-module": "^1.1.4",
|
|
99
|
-
"vite-tsconfig-paths": "^4.3.
|
|
99
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
100
100
|
},
|
|
101
101
|
"main": "index.js",
|
|
102
102
|
"directories": {
|