@axos-web-dev/shared-components 0.0.58 → 0.0.60
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/Article/Article.css.d.ts +48 -120
- package/dist/Article/Article.css.js +1 -1
- package/dist/ArticlesSet/ArticlesSet.css.d.ts +10 -34
- package/dist/ArticlesSet/ArticlesSet.css.js +1 -1
- package/dist/ExecutiveBio/ExecutiveBio.css.d.ts +154 -34
- package/dist/ExecutiveBio/ExecutiveBio.css.js +2 -2
- package/dist/ExecutiveBio/ExecutiveBio.js +18 -4
- package/dist/ExecutiveBio/ExecutiveBioSet.d.ts +1 -1
- package/dist/ExecutiveBio/ExecutiveBioSet.js +4 -5
- package/dist/ExecutiveBio/index.js +2 -2
- package/dist/IconBillboard/IconBillboard.css.d.ts +19 -0
- package/dist/IconBillboard/IconBillboard.css.js +2 -0
- package/dist/IconBillboard/IconBillboardSet.js +3 -2
- package/dist/IconBillboard/index.js +2 -1
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosAdvisorServices/NavData.js +1 -1
- package/dist/assets/Article/Article.css +43 -99
- package/dist/assets/ArticlesSet/ArticlesSet.css +10 -109
- package/dist/assets/ExecutiveBio/ExecutiveBio.css +129 -34
- package/dist/assets/IconBillboard/IconBillboard.css +18 -0
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +116 -116
- package/dist/assets/SetContainer/SetContainer.css +0 -3
- package/dist/assets/StepItems/StepItems.css +1 -27
- package/dist/main.js +4 -3
- package/package.json +4 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { getVariant } from "../utils/getVariant.js";
|
|
3
|
-
import { padding, item_bio, shift, media, headshot, img_area, description, person,
|
|
3
|
+
import { padding, item_bio, shift, media, headshot, img_area, description, person, headline_setting, job_title, copy, contacts, contact_col, svg_icon, contact_entry, contact_links } from "./ExecutiveBio.css.js";
|
|
4
4
|
const ExecutiveBio = ({
|
|
5
5
|
id,
|
|
6
6
|
executiveName,
|
|
@@ -28,7 +28,7 @@ const ExecutiveBio = ({
|
|
|
28
28
|
) }) }),
|
|
29
29
|
/* @__PURE__ */ jsxs("div", { className: `${description} flex_col between`, children: [
|
|
30
30
|
/* @__PURE__ */ jsxs("div", { className: person, children: [
|
|
31
|
-
/* @__PURE__ */ jsx("h2", { className: `${
|
|
31
|
+
/* @__PURE__ */ jsx("h2", { className: `${headline_setting({ variant })} header_3`, children: executiveName }),
|
|
32
32
|
/* @__PURE__ */ jsx("h3", { className: `${job_title({ variant })}`, children: executiveTitle }),
|
|
33
33
|
/* @__PURE__ */ jsx("div", { className: copy, children: executiveBodyCopy })
|
|
34
34
|
] }),
|
|
@@ -87,7 +87,14 @@ const ExecutiveBio = ({
|
|
|
87
87
|
className: `${contact_col} ${contact_links} flex_col between`,
|
|
88
88
|
children: [
|
|
89
89
|
executiveLinkedIn && /* @__PURE__ */ jsxs("div", { className: "flex middle", children: [
|
|
90
|
-
/* @__PURE__ */ jsx(
|
|
90
|
+
/* @__PURE__ */ jsx(
|
|
91
|
+
"a",
|
|
92
|
+
{
|
|
93
|
+
href: `${executiveLinkedIn}`,
|
|
94
|
+
className: `${headline_setting({ variant })} btn_link`,
|
|
95
|
+
children: "LinkedIn"
|
|
96
|
+
}
|
|
97
|
+
),
|
|
91
98
|
/* @__PURE__ */ jsx(
|
|
92
99
|
"svg",
|
|
93
100
|
{
|
|
@@ -109,7 +116,14 @@ const ExecutiveBio = ({
|
|
|
109
116
|
)
|
|
110
117
|
] }),
|
|
111
118
|
executiveWebsite && /* @__PURE__ */ jsxs("div", { className: "flex middle", children: [
|
|
112
|
-
/* @__PURE__ */ jsx(
|
|
119
|
+
/* @__PURE__ */ jsx(
|
|
120
|
+
"a",
|
|
121
|
+
{
|
|
122
|
+
href: `${executiveWebsite}`,
|
|
123
|
+
className: `${headline_setting({ variant })} btn_link`,
|
|
124
|
+
children: "Website"
|
|
125
|
+
}
|
|
126
|
+
),
|
|
113
127
|
/* @__PURE__ */ jsx(
|
|
114
128
|
"svg",
|
|
115
129
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { SetContainerProps } from '../SetContainer';
|
|
2
2
|
import { ExecutiveBioSetProps as Props } from './ExecutiveBio.interface';
|
|
3
3
|
|
|
4
|
-
export declare const ExecutiveBioSet: ({ id, title, description, executiveBios, additionalDetails,
|
|
4
|
+
export declare const ExecutiveBioSet: ({ id, title, description, executiveBios, additionalDetails, variant: fullVariant, }: Props & SetContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -8,16 +8,15 @@ const ExecutiveBioSet = ({
|
|
|
8
8
|
description,
|
|
9
9
|
executiveBios,
|
|
10
10
|
additionalDetails,
|
|
11
|
-
headline,
|
|
12
11
|
variant: fullVariant = "primary"
|
|
13
12
|
}) => {
|
|
14
13
|
const variant = getVariant(fullVariant);
|
|
15
14
|
return /* @__PURE__ */ jsxs("section", { id, className: section_theme({ variant }), children: [
|
|
16
15
|
/* @__PURE__ */ jsx("div", { className: "containment", children: (title || description) && /* @__PURE__ */ jsxs("div", { className: bio_section_text, children: [
|
|
17
|
-
|
|
16
|
+
title && /* @__PURE__ */ jsx("h2", { className: `header_1 ${header_theme({ variant })}`, children: title }),
|
|
18
17
|
description && /* @__PURE__ */ jsx(Fragment, { children: description })
|
|
19
18
|
] }) }),
|
|
20
|
-
/* @__PURE__ */ jsx("div", { className: components, children: executiveBios.map((bio
|
|
19
|
+
/* @__PURE__ */ jsx("div", { className: components, children: executiveBios.map((bio) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
|
|
21
20
|
ExecutiveBio,
|
|
22
21
|
{
|
|
23
22
|
id: `id_${bio.id}`,
|
|
@@ -28,10 +27,10 @@ const ExecutiveBioSet = ({
|
|
|
28
27
|
executivePhoneNumber: bio?.executivePhoneNumber,
|
|
29
28
|
executiveLinkedIn: bio?.executiveLinkedIn,
|
|
30
29
|
executiveWebsite: bio?.executiveWebsite,
|
|
31
|
-
executiveHeadshot: bio?.executiveHeadshot,
|
|
30
|
+
executiveHeadshot: { src: bio?.executiveHeadshot?.src || "" },
|
|
32
31
|
variant: bio?.variant
|
|
33
32
|
},
|
|
34
|
-
|
|
33
|
+
bio.id
|
|
35
34
|
) })) }),
|
|
36
35
|
additionalDetails && /* @__PURE__ */ jsx("div", { className: "containment", children: /* @__PURE__ */ jsx("div", { className: details, children: /* @__PURE__ */ jsx(Fragment, { children: additionalDetails }) }) })
|
|
37
36
|
] });
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { ExecutiveBio } from "./ExecutiveBio.js";
|
|
2
|
-
import {
|
|
2
|
+
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.css.js";
|
|
3
3
|
import { ExecutiveBioSet } from "./ExecutiveBioSet.js";
|
|
4
4
|
export {
|
|
5
5
|
ExecutiveBio,
|
|
6
6
|
ExecutiveBioSet,
|
|
7
|
-
bio_name,
|
|
8
7
|
bio_section_text,
|
|
9
8
|
components,
|
|
10
9
|
contact_col,
|
|
@@ -15,6 +14,7 @@ export {
|
|
|
15
14
|
description,
|
|
16
15
|
details,
|
|
17
16
|
header_theme,
|
|
17
|
+
headline_setting,
|
|
18
18
|
headshot,
|
|
19
19
|
img_area,
|
|
20
20
|
item_bio,
|
|
@@ -100,5 +100,24 @@ export declare const header_section: import('@vanilla-extract/recipes').RuntimeF
|
|
|
100
100
|
};
|
|
101
101
|
}>;
|
|
102
102
|
export declare const section_container: string;
|
|
103
|
+
export declare const section_body: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
104
|
+
variant: {
|
|
105
|
+
primary: {
|
|
106
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
107
|
+
border: "1px solid #D4D4D4";
|
|
108
|
+
};
|
|
109
|
+
secondary: {
|
|
110
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
111
|
+
};
|
|
112
|
+
tertiary: {
|
|
113
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
114
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
115
|
+
};
|
|
116
|
+
quaternary: {
|
|
117
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
118
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
}>;
|
|
103
122
|
export type ContainerVariants = RecipeVariants<typeof containerIconBillboard>;
|
|
104
123
|
export type LayoutVariants = RecipeVariants<typeof layout>;
|
|
@@ -15,6 +15,7 @@ var buttons = "_1r4ovbuh";
|
|
|
15
15
|
var section_text = "_1r4ovbui";
|
|
16
16
|
var header_section = createRuntimeFn({ defaultClassName: "_1r4ovbuj", variantClassNames: { variant: { primary: "_1r4ovbuk", secondary: "_1r4ovbul", tertiary: "_1r4ovbum", quaternary: "_1r4ovbun" } }, defaultVariants: {}, compoundVariants: [] });
|
|
17
17
|
var section_container = "_1r4ovbuo";
|
|
18
|
+
var section_body = createRuntimeFn({ defaultClassName: "_1r4ovbup", variantClassNames: { variant: { primary: "_1r4ovbuq", secondary: "_1r4ovbur", tertiary: "_1r4ovbus", quaternary: "_1r4ovbut" } }, defaultVariants: {}, compoundVariants: [] });
|
|
18
19
|
export {
|
|
19
20
|
billboard_icon,
|
|
20
21
|
buttons,
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
layout,
|
|
26
27
|
list,
|
|
27
28
|
listItem,
|
|
29
|
+
section_body,
|
|
28
30
|
section_container,
|
|
29
31
|
section_text,
|
|
30
32
|
title
|
|
@@ -2,11 +2,12 @@ import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
|
2
2
|
import { BulletItem } from "../BulletItem/BulletItem.js";
|
|
3
3
|
import { Chevron } from "../Chevron/index.js";
|
|
4
4
|
import { getVariant } from "../utils/getVariant.js";
|
|
5
|
+
import clsx from "clsx";
|
|
5
6
|
import { Button } from "../Button/Button.js";
|
|
6
7
|
import "../Button/Button.css.js";
|
|
7
8
|
import "react";
|
|
8
9
|
import "react-use";
|
|
9
|
-
import { section_text, header_section, section_container, containerIconBillboard, layout, billboard_icon, content, headerIconBillboard, title, list, buttons } from "./IconBillboard.css.js";
|
|
10
|
+
import { section_text, header_section, section_body, section_container, containerIconBillboard, layout, billboard_icon, content, headerIconBillboard, title, list, buttons } from "./IconBillboard.css.js";
|
|
10
11
|
const IconBillboardSet = ({
|
|
11
12
|
variant,
|
|
12
13
|
side = false,
|
|
@@ -25,7 +26,7 @@ const IconBillboardSet = ({
|
|
|
25
26
|
children: headline
|
|
26
27
|
}
|
|
27
28
|
),
|
|
28
|
-
bodyCopy && /* @__PURE__ */ jsx(
|
|
29
|
+
bodyCopy && /* @__PURE__ */ jsx("div", { className: clsx(section_body({ variant })), children: bodyCopy })
|
|
29
30
|
] }),
|
|
30
31
|
/* @__PURE__ */ jsx("div", { className: section_container, children: iconBillboards.map(
|
|
31
32
|
({ id, icon, headline: headline2, bodyCopy: bodyCopy2, bullets, callToActionRow }) => /* @__PURE__ */ jsxs("div", { className: containerIconBillboard({ variant }), children: [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconBillboard } from "./IconBillboard.js";
|
|
2
|
-
import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, list, listItem, section_container, section_text, title } from "./IconBillboard.css.js";
|
|
2
|
+
import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, list, listItem, section_body, section_container, section_text, title } from "./IconBillboard.css.js";
|
|
3
3
|
import { IconBillboardSet } from "./IconBillboardSet.js";
|
|
4
4
|
export {
|
|
5
5
|
IconBillboard,
|
|
@@ -13,6 +13,7 @@ export {
|
|
|
13
13
|
layout,
|
|
14
14
|
list,
|
|
15
15
|
listItem,
|
|
16
|
+
section_body,
|
|
16
17
|
section_container,
|
|
17
18
|
section_text,
|
|
18
19
|
title
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const mobile_header = "
|
|
5
|
-
const logo_wrap = "
|
|
6
|
-
const primary_links = "
|
|
7
|
-
const main_nav_link = "
|
|
8
|
-
const sub_nav_link = "
|
|
9
|
-
const signin_wrap = "
|
|
10
|
-
const signin_btn = "
|
|
11
|
-
const sub_nav = "
|
|
12
|
-
const header_sub_row = "
|
|
13
|
-
const signin_dropdown = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const signin_header = "
|
|
16
|
-
const signin_subheader = "
|
|
17
|
-
const opacity = "
|
|
18
|
-
const fadeInDown = "
|
|
19
|
-
const footer = "
|
|
20
|
-
const open = "
|
|
21
|
-
const dd_wrapper = "
|
|
22
|
-
const dd_media = "
|
|
23
|
-
const dd_media_img = "
|
|
24
|
-
const dd_site_navs = "
|
|
25
|
-
const dd_media_header = "
|
|
26
|
-
const mt_8 = "
|
|
27
|
-
const mt_16 = "
|
|
28
|
-
const ml_8 = "
|
|
29
|
-
const dd_media_cta = "
|
|
30
|
-
const reversed_row = "
|
|
31
|
-
const headline = "
|
|
32
|
-
const nav_anchor = "
|
|
33
|
-
const headline_cta = "
|
|
34
|
-
const site_lists = "
|
|
35
|
-
const hamburger = "
|
|
36
|
-
const mobile_only = "
|
|
37
|
-
const mobile_logo = "
|
|
38
|
-
const highlight = "
|
|
39
|
-
const mobile_nav = "
|
|
40
|
-
const mobile_opened = "
|
|
41
|
-
const mobile_nav_item = "
|
|
42
|
-
const has_dropdown = "
|
|
43
|
-
const icon_wrap = "
|
|
44
|
-
const mobile_footer = "
|
|
45
|
-
const mobile_footer_content = "
|
|
46
|
-
const mobile_footer_media = "
|
|
47
|
-
const footer_cta = "
|
|
48
|
-
const inner_wrapper = "
|
|
49
|
-
const btn = "
|
|
50
|
-
const sub_menu = "
|
|
51
|
-
const main = "
|
|
52
|
-
const dd_footer = "
|
|
53
|
-
const desktop_only = "
|
|
1
|
+
const header = "_header_1i6pg_1";
|
|
2
|
+
const wrapper = "_wrapper_1i6pg_5";
|
|
3
|
+
const header_main_row = "_header_main_row_1i6pg_11";
|
|
4
|
+
const mobile_header = "_mobile_header_1i6pg_12";
|
|
5
|
+
const logo_wrap = "_logo_wrap_1i6pg_18";
|
|
6
|
+
const primary_links = "_primary_links_1i6pg_22";
|
|
7
|
+
const main_nav_link = "_main_nav_link_1i6pg_26";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_1i6pg_48";
|
|
9
|
+
const signin_wrap = "_signin_wrap_1i6pg_50";
|
|
10
|
+
const signin_btn = "_signin_btn_1i6pg_51";
|
|
11
|
+
const sub_nav = "_sub_nav_1i6pg_48";
|
|
12
|
+
const header_sub_row = "_header_sub_row_1i6pg_93";
|
|
13
|
+
const signin_dropdown = "_signin_dropdown_1i6pg_109";
|
|
14
|
+
const shadow = "_shadow_1i6pg_119";
|
|
15
|
+
const signin_header = "_signin_header_1i6pg_127";
|
|
16
|
+
const signin_subheader = "_signin_subheader_1i6pg_134";
|
|
17
|
+
const opacity = "_opacity_1i6pg_156";
|
|
18
|
+
const fadeInDown = "_fadeInDown_1i6pg_1";
|
|
19
|
+
const footer = "_footer_1i6pg_162";
|
|
20
|
+
const open = "_open_1i6pg_178";
|
|
21
|
+
const dd_wrapper = "_dd_wrapper_1i6pg_190";
|
|
22
|
+
const dd_media = "_dd_media_1i6pg_195";
|
|
23
|
+
const dd_media_img = "_dd_media_img_1i6pg_200";
|
|
24
|
+
const dd_site_navs = "_dd_site_navs_1i6pg_204";
|
|
25
|
+
const dd_media_header = "_dd_media_header_1i6pg_211";
|
|
26
|
+
const mt_8 = "_mt_8_1i6pg_220";
|
|
27
|
+
const mt_16 = "_mt_16_1i6pg_224";
|
|
28
|
+
const ml_8 = "_ml_8_1i6pg_228";
|
|
29
|
+
const dd_media_cta = "_dd_media_cta_1i6pg_232";
|
|
30
|
+
const reversed_row = "_reversed_row_1i6pg_246";
|
|
31
|
+
const headline = "_headline_1i6pg_262";
|
|
32
|
+
const nav_anchor = "_nav_anchor_1i6pg_268";
|
|
33
|
+
const headline_cta = "_headline_cta_1i6pg_276";
|
|
34
|
+
const site_lists = "_site_lists_1i6pg_291";
|
|
35
|
+
const hamburger = "_hamburger_1i6pg_326";
|
|
36
|
+
const mobile_only = "_mobile_only_1i6pg_340";
|
|
37
|
+
const mobile_logo = "_mobile_logo_1i6pg_346";
|
|
38
|
+
const highlight = "_highlight_1i6pg_351";
|
|
39
|
+
const mobile_nav = "_mobile_nav_1i6pg_387";
|
|
40
|
+
const mobile_opened = "_mobile_opened_1i6pg_398";
|
|
41
|
+
const mobile_nav_item = "_mobile_nav_item_1i6pg_402";
|
|
42
|
+
const has_dropdown = "_has_dropdown_1i6pg_417";
|
|
43
|
+
const icon_wrap = "_icon_wrap_1i6pg_438";
|
|
44
|
+
const mobile_footer = "_mobile_footer_1i6pg_443";
|
|
45
|
+
const mobile_footer_content = "_mobile_footer_content_1i6pg_448";
|
|
46
|
+
const mobile_footer_media = "_mobile_footer_media_1i6pg_462";
|
|
47
|
+
const footer_cta = "_footer_cta_1i6pg_468";
|
|
48
|
+
const inner_wrapper = "_inner_wrapper_1i6pg_496";
|
|
49
|
+
const btn = "_btn_1i6pg_501";
|
|
50
|
+
const sub_menu = "_sub_menu_1i6pg_506";
|
|
51
|
+
const main = "_main_1i6pg_26";
|
|
52
|
+
const dd_footer = "_dd_footer_1i6pg_531";
|
|
53
|
+
const desktop_only = "_desktop_only_1i6pg_550";
|
|
54
54
|
const styles = {
|
|
55
55
|
header,
|
|
56
56
|
wrapper,
|
|
@@ -1,25 +1,13 @@
|
|
|
1
|
-
.
|
|
1
|
+
.n5hj5p1 {
|
|
2
2
|
border: 1px solid #d4d4d4;
|
|
3
3
|
}
|
|
4
|
-
.
|
|
5
|
-
border: 1px solid #d4d4d4;
|
|
6
|
-
}
|
|
7
|
-
._1073cm80 .n5hj5p2 {
|
|
8
|
-
border: none;
|
|
9
|
-
}
|
|
10
|
-
._1es6o1h0 .n5hj5p2 {
|
|
11
|
-
border: none;
|
|
12
|
-
}
|
|
13
|
-
._1073cm80 .n5hj5p3 {
|
|
4
|
+
.n5hj5p2 {
|
|
14
5
|
border: none;
|
|
15
6
|
}
|
|
16
|
-
.
|
|
7
|
+
.n5hj5p3 {
|
|
17
8
|
border: none;
|
|
18
9
|
}
|
|
19
|
-
.
|
|
20
|
-
border: none;
|
|
21
|
-
}
|
|
22
|
-
._1es6o1h0 .n5hj5p4 {
|
|
10
|
+
.n5hj5p4 {
|
|
23
11
|
border: none;
|
|
24
12
|
}
|
|
25
13
|
.n5hj5p5 {
|
|
@@ -36,28 +24,16 @@
|
|
|
36
24
|
font: 700 18px / 1.44 var(--main-font-family);
|
|
37
25
|
display: block;
|
|
38
26
|
}
|
|
39
|
-
.
|
|
27
|
+
.n5hj5p8 {
|
|
40
28
|
color: var(--_1073cm83);
|
|
41
29
|
}
|
|
42
|
-
.
|
|
43
|
-
color: var(--_1073cm83);
|
|
44
|
-
}
|
|
45
|
-
._1073cm80 .n5hj5p9 {
|
|
30
|
+
.n5hj5p9 {
|
|
46
31
|
color: var(--_1073cm8a);
|
|
47
32
|
}
|
|
48
|
-
.
|
|
49
|
-
color: var(--_1073cm8a);
|
|
50
|
-
}
|
|
51
|
-
._1073cm80 .n5hj5pa {
|
|
52
|
-
color: #FAA74A;
|
|
53
|
-
}
|
|
54
|
-
._1es6o1h0 .n5hj5pa {
|
|
33
|
+
.n5hj5pa {
|
|
55
34
|
color: #FAA74A;
|
|
56
35
|
}
|
|
57
|
-
.
|
|
58
|
-
color: var(--_1073cm8o);
|
|
59
|
-
}
|
|
60
|
-
._1es6o1h0 .n5hj5pb {
|
|
36
|
+
.n5hj5pb {
|
|
61
37
|
color: var(--_1073cm8o);
|
|
62
38
|
}
|
|
63
39
|
.n5hj5pc {
|
|
@@ -81,47 +57,25 @@
|
|
|
81
57
|
._1es6o1h0 .n5hj5pe {
|
|
82
58
|
color: var(--_1073cm8a);
|
|
83
59
|
}
|
|
84
|
-
.
|
|
60
|
+
.n5hj5pf {
|
|
85
61
|
color: var(--_1073cm8h);
|
|
86
62
|
}
|
|
87
|
-
.
|
|
88
|
-
color: var(--_1073cm8h);
|
|
89
|
-
}
|
|
90
|
-
._1073cm80 .n5hj5pg {
|
|
63
|
+
.n5hj5pg {
|
|
91
64
|
color: var(--_1073cm8o);
|
|
92
65
|
}
|
|
93
|
-
.
|
|
94
|
-
color: var(--_1073cm8o);
|
|
95
|
-
}
|
|
96
|
-
._1073cm80 .n5hj5pi {
|
|
66
|
+
.n5hj5pi {
|
|
97
67
|
color: var(--_1073cm82);
|
|
98
68
|
background: var(--_1073cm81);
|
|
99
69
|
}
|
|
100
|
-
.
|
|
101
|
-
color: var(--_1073cm82);
|
|
102
|
-
background: var(--_1073cm81);
|
|
103
|
-
}
|
|
104
|
-
._1073cm80 .n5hj5pj {
|
|
105
|
-
color: var(--_1073cm89);
|
|
106
|
-
background: var(--_1073cm88);
|
|
107
|
-
}
|
|
108
|
-
._1es6o1h0 .n5hj5pj {
|
|
70
|
+
.n5hj5pj {
|
|
109
71
|
color: var(--_1073cm89);
|
|
110
72
|
background: var(--_1073cm88);
|
|
111
73
|
}
|
|
112
|
-
.
|
|
74
|
+
.n5hj5pk {
|
|
113
75
|
color: var(--_1073cm8g);
|
|
114
76
|
background: var(--_1073cm8f);
|
|
115
77
|
}
|
|
116
|
-
.
|
|
117
|
-
color: var(--_1073cm8g);
|
|
118
|
-
background: var(--_1073cm8f);
|
|
119
|
-
}
|
|
120
|
-
._1073cm80 .n5hj5pl {
|
|
121
|
-
color: var(--_1073cm8n);
|
|
122
|
-
background: var(--_1073cm8m);
|
|
123
|
-
}
|
|
124
|
-
._1es6o1h0 .n5hj5pl {
|
|
78
|
+
.n5hj5pl {
|
|
125
79
|
color: var(--_1073cm8n);
|
|
126
80
|
background: var(--_1073cm8m);
|
|
127
81
|
}
|
|
@@ -145,35 +99,51 @@
|
|
|
145
99
|
.n5hj5pm:hover {
|
|
146
100
|
background-color: transparent;
|
|
147
101
|
}
|
|
148
|
-
.
|
|
102
|
+
.n5hj5pn {
|
|
149
103
|
background: var(--_1073cm86);
|
|
150
104
|
color: var(--_1073cm85);
|
|
151
105
|
}
|
|
152
|
-
.
|
|
153
|
-
|
|
154
|
-
color: var(--
|
|
106
|
+
.n5hj5pn:hover {
|
|
107
|
+
border-color: var(--_1073cm86);
|
|
108
|
+
color: var(--_1073cm86);
|
|
109
|
+
}
|
|
110
|
+
.n5hj5pn:active {
|
|
111
|
+
background-color: var(--_1073cm86);
|
|
112
|
+
color: var(--_1073cm86);
|
|
155
113
|
}
|
|
156
|
-
.
|
|
114
|
+
.n5hj5po {
|
|
157
115
|
background: var(--_1073cm8d);
|
|
158
116
|
color: var(--_1073cm8c);
|
|
159
117
|
}
|
|
160
|
-
.
|
|
161
|
-
|
|
118
|
+
.n5hj5po:hover {
|
|
119
|
+
border-color: var(--_1073cm8d);
|
|
120
|
+
color: var(--_1073cm8d);
|
|
121
|
+
}
|
|
122
|
+
.n5hj5po:active {
|
|
123
|
+
background-color: var(--_1073cm8d);
|
|
162
124
|
color: var(--_1073cm8c);
|
|
163
125
|
}
|
|
164
|
-
.
|
|
126
|
+
.n5hj5pp {
|
|
165
127
|
color: var(--_1073cm8j);
|
|
166
128
|
background-color: var(--_1073cm86);
|
|
167
129
|
}
|
|
168
|
-
.
|
|
130
|
+
.n5hj5pp:hover {
|
|
131
|
+
border-color: var(--_1073cm8k);
|
|
132
|
+
color: var(--_1073cm86);
|
|
133
|
+
}
|
|
134
|
+
.n5hj5pp:active {
|
|
169
135
|
color: var(--_1073cm8j);
|
|
170
|
-
background-color: var(--
|
|
136
|
+
background-color: var(--_1073cm86);
|
|
171
137
|
}
|
|
172
|
-
.
|
|
138
|
+
.n5hj5pq {
|
|
173
139
|
color: var(--_1073cm8q);
|
|
174
140
|
background-color: var(--_1073cm8r);
|
|
175
141
|
}
|
|
176
|
-
.
|
|
142
|
+
.n5hj5pq:hover {
|
|
143
|
+
border-color: var(--_1073cm8r);
|
|
144
|
+
color: var(--_1073cm8r);
|
|
145
|
+
}
|
|
146
|
+
.n5hj5pq:active {
|
|
177
147
|
color: var(--_1073cm8q);
|
|
178
148
|
background-color: var(--_1073cm8r);
|
|
179
149
|
}
|
|
@@ -200,33 +170,7 @@
|
|
|
200
170
|
font-size: 1.5rem;
|
|
201
171
|
line-height: 1.28;
|
|
202
172
|
}
|
|
203
|
-
|
|
204
|
-
var className = config.defaultClassName;
|
|
205
|
-
var selections = _objectSpread2(_objectSpread2({}, config.defaultVariants), options);
|
|
206
|
-
for (var variantName in selections) {
|
|
207
|
-
var _selections$variantNa;
|
|
208
|
-
var variantSelection = (_selections$variantNa = selections[variantName]) !== null && _selections$variantNa !== void 0 ? _selections$variantNa : config.defaultVariants[variantName];
|
|
209
|
-
if (variantSelection != null) {
|
|
210
|
-
var selection = variantSelection;
|
|
211
|
-
if (typeof selection === 'boolean') {
|
|
212
|
-
// @ts-expect-error
|
|
213
|
-
selection = selection === true ? 'true' : 'false';
|
|
214
|
-
}
|
|
215
|
-
var selectionClassName =
|
|
216
|
-
// @ts-expect-error
|
|
217
|
-
config.variantClassNames[variantName][selection];
|
|
218
|
-
if (selectionClassName) {
|
|
219
|
-
className += ' ' + selectionClassName;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
for (var [compoundCheck, compoundClassName] of config.compoundVariants) {
|
|
224
|
-
if (shouldApplyCompound(compoundCheck, selections, config.defaultVariants)) {
|
|
225
|
-
className += ' ' + compoundClassName;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
return className;
|
|
229
|
-
} > * {
|
|
173
|
+
.n5hj5ph > * {
|
|
230
174
|
font-size: 15px;
|
|
231
175
|
line-height: 1.4;
|
|
232
176
|
}
|