@axos-web-dev/shared-components 0.0.50 → 0.0.52
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/GoBackButton.js +1 -1
- package/dist/CallToActionBar/index.js +2 -3
- package/dist/Carousel/index.js +2 -3
- package/dist/Chevron/index.js +6 -2
- package/dist/ContentBanner/index.js +1 -1
- package/dist/DownloadTile/index.js +2 -2
- package/dist/ExecutiveBio/ExecutiveBio.js +1 -1
- package/dist/ExecutiveBio/ExecutiveBioSet.js +1 -1
- package/dist/FaqAccordion/index.js +6 -3
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +6 -2
- package/dist/Forms/ApplicationStart.d.ts +10 -0
- package/dist/Forms/ApplicationStart.js +191 -0
- package/dist/Forms/ContactUsBusiness.d.ts +11 -0
- package/dist/Forms/ContactUsBusiness.js +246 -0
- package/dist/Forms/EmailOnly.d.ts +6 -0
- package/dist/Forms/EmailOnly.js +160 -0
- package/dist/Forms/Forms.css.d.ts +22 -1
- package/dist/Forms/Forms.css.js +11 -9
- package/dist/Forms/RenderForm.js +52 -1
- package/dist/Forms/SalesforceFieldsForm.js +11 -11
- package/dist/Forms/ScheduleCall.d.ts +1 -1
- package/dist/Forms/ScheduleCall.js +11 -7
- package/dist/Forms/ScheduleCallPremier.d.ts +12 -0
- package/dist/Forms/ScheduleCallPremier.js +255 -0
- package/dist/Forms/SuccesForm.d.ts +1 -1
- package/dist/Forms/SuccesForm.js +39 -3
- package/dist/Forms/index.d.ts +4 -0
- package/dist/Forms/index.js +12 -3
- package/dist/Hyperlink/index.js +6 -2
- package/dist/IconBillboard/IconBillboard.js +2 -2
- package/dist/IconBillboard/IconBillboardSet.js +2 -2
- package/dist/ImageBillboard/ImageBillboard.js +2 -2
- package/dist/ImageBillboard/ImageBillboardSet.js +6 -6
- package/dist/ImageLink/ImageLink.js +6 -2
- package/dist/ImageLink/ImageLinkSet.js +8 -4
- package/dist/ImageLink/index.js +6 -2
- package/dist/Input/Checkbox.css.d.ts +10 -0
- package/dist/Input/Checkbox.css.js +8 -0
- package/dist/Input/Checkbox.d.ts +5 -0
- package/dist/Input/Checkbox.js +48 -0
- package/dist/Input/CurrencyInput.d.ts +3 -0
- package/dist/Input/CurrencyInput.js +27 -0
- package/dist/Input/Dropdown.css.d.ts +1 -0
- package/dist/Input/Dropdown.css.js +6 -0
- package/dist/Input/Dropdown.d.ts +3 -0
- package/dist/Input/Dropdown.js +55 -0
- package/dist/Input/Input.css.d.ts +7 -0
- package/dist/Input/Input.css.js +8 -7
- package/dist/Input/InputPhone.js +5 -0
- package/dist/Input/InputProps.d.ts +29 -0
- package/dist/Input/InputProps.js +1 -0
- package/dist/Input/index.d.ts +4 -0
- package/dist/Input/index.js +8 -0
- package/dist/Modal/Modal.js +6 -2
- package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +5 -4
- package/dist/NavigationMenu/AxosAdvisor/index.js +1 -2
- package/dist/SecondaryFooter/index.js +1 -1
- package/dist/SetContainer/SetContainer.js +7 -3
- package/dist/StepItems/StepItemsSet.js +1 -1
- package/dist/Table/Table.js +2 -2
- package/dist/VideoWrapper/index.js +7 -7
- package/dist/assets/Button/Button.css +1 -1
- package/dist/assets/Forms/Forms.css +52 -29
- package/dist/assets/Input/Checkbox.css +6 -0
- package/dist/assets/Input/Dropdown.css +10 -0
- package/dist/assets/Input/Input.css +51 -30
- package/dist/assets/globals.css +1 -1
- package/dist/icons/CheckIcon/index.js +1 -1
- package/dist/main.d.ts +1 -1
- package/dist/main.js +25 -7
- package/package.json +3 -2
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { InputNumberFormat } from "@react-input/number-format";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import "./Checkbox.js";
|
|
5
|
+
import "./Dropdown.js";
|
|
6
|
+
/* empty css */
|
|
7
|
+
/* empty css */
|
|
8
|
+
import { Input } from "./Input.js";
|
|
9
|
+
import "./Input.css.js";
|
|
10
|
+
import "./InputPhone.js";
|
|
11
|
+
const CurrencyInput = forwardRef(
|
|
12
|
+
(props, ref) => {
|
|
13
|
+
return /* @__PURE__ */ jsx(
|
|
14
|
+
InputNumberFormat,
|
|
15
|
+
{
|
|
16
|
+
component: Input,
|
|
17
|
+
ref,
|
|
18
|
+
format: "currency",
|
|
19
|
+
currency: "USD",
|
|
20
|
+
...props
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
export {
|
|
26
|
+
CurrencyInput
|
|
27
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const selectInput: string;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import { selectInput } from "./Dropdown.css.js";
|
|
5
|
+
import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
|
|
6
|
+
const Dropdown = forwardRef(
|
|
7
|
+
(props, ref) => {
|
|
8
|
+
const {
|
|
9
|
+
disabled,
|
|
10
|
+
label,
|
|
11
|
+
iconLeft,
|
|
12
|
+
iconRight,
|
|
13
|
+
sizes,
|
|
14
|
+
error = false,
|
|
15
|
+
helperText: helper,
|
|
16
|
+
variant,
|
|
17
|
+
children,
|
|
18
|
+
...rest
|
|
19
|
+
} = props;
|
|
20
|
+
return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
|
|
21
|
+
label && /* @__PURE__ */ jsx(
|
|
22
|
+
"label",
|
|
23
|
+
{
|
|
24
|
+
className: labelClassName({ error, variant }),
|
|
25
|
+
htmlFor: props.name,
|
|
26
|
+
children: label
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
|
|
30
|
+
iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
|
|
31
|
+
/* @__PURE__ */ jsxs(
|
|
32
|
+
"select",
|
|
33
|
+
{
|
|
34
|
+
...rest,
|
|
35
|
+
className: clsx(
|
|
36
|
+
props.className,
|
|
37
|
+
input({ size: sizes }),
|
|
38
|
+
selectInput
|
|
39
|
+
),
|
|
40
|
+
ref,
|
|
41
|
+
children: [
|
|
42
|
+
props.options && props.options?.map((option) => /* @__PURE__ */ jsx("option", { value: option.value, children: option.text })),
|
|
43
|
+
children
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
),
|
|
47
|
+
iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
|
|
48
|
+
] }),
|
|
49
|
+
/* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
|
|
50
|
+
] });
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
export {
|
|
54
|
+
Dropdown
|
|
55
|
+
};
|
|
@@ -36,6 +36,13 @@ export declare const labelClassName: import('@vanilla-extract/recipes').RuntimeF
|
|
|
36
36
|
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
37
37
|
};
|
|
38
38
|
};
|
|
39
|
+
isCheckbox: {
|
|
40
|
+
true: {
|
|
41
|
+
display: "grid";
|
|
42
|
+
gridTemplateColumns: "24px auto";
|
|
43
|
+
gap: ".5rem";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
39
46
|
}>;
|
|
40
47
|
export declare const iconContainerBase: string;
|
|
41
48
|
export declare const iconContainer: Record<"left" | "right", string>;
|
package/dist/Input/Input.css.js
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
+
/* empty css */
|
|
1
2
|
/* empty css */
|
|
2
3
|
/* empty css */
|
|
3
4
|
/* empty css */
|
|
4
5
|
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
5
6
|
var iconInput = createRuntimeFn({ defaultClassName: "_18du0la0", variantClassNames: { size: { small: "_18du0la1", medium: "_18du0la2", large: "_18du0la3" } }, defaultVariants: {}, compoundVariants: [] });
|
|
6
|
-
var labelClassName = createRuntimeFn({ defaultClassName: "_18du0la4", variantClassNames: { variant: { primary: "_18du0la5", secondary: "_18du0la6", tertiary: "_18du0la7", quaternary: "_18du0la8" }, error: { true: "_18du0la9" }, disabled: { true: "_18du0laa" } }, defaultVariants: {}, compoundVariants: [] });
|
|
7
|
-
var iconContainerBase = "
|
|
8
|
-
var iconContainer = { left: "_18du0lac
|
|
9
|
-
var container = createRuntimeFn({ defaultClassName: "
|
|
10
|
-
var input = createRuntimeFn({ defaultClassName: "
|
|
11
|
-
var wrapper = createRuntimeFn({ defaultClassName: "
|
|
12
|
-
var helperText = createRuntimeFn({ defaultClassName: "
|
|
7
|
+
var labelClassName = createRuntimeFn({ defaultClassName: "_18du0la4", variantClassNames: { variant: { primary: "_18du0la5", secondary: "_18du0la6", tertiary: "_18du0la7", quaternary: "_18du0la8" }, error: { true: "_18du0la9" }, disabled: { true: "_18du0laa" }, isCheckbox: { true: "_18du0lab" } }, defaultVariants: {}, compoundVariants: [] });
|
|
8
|
+
var iconContainerBase = "_18du0lac";
|
|
9
|
+
var iconContainer = { left: "_18du0lad _18du0lac", right: "_18du0lae _18du0lac" };
|
|
10
|
+
var container = createRuntimeFn({ defaultClassName: "_18du0laf", variantClassNames: { size: { small: "_18du0lag", medium: "_18du0lah", large: "_18du0lai" }, error: { true: "_18du0laj" }, disabled: { true: "_18du0lak" } }, defaultVariants: {}, compoundVariants: [] });
|
|
11
|
+
var input = createRuntimeFn({ defaultClassName: "_18du0lal", variantClassNames: { size: { small: "_18du0lam", medium: "_18du0lan", large: "_18du0lao" }, error: { true: "_18du0lap" }, disabled: { true: "_18du0laq" } }, defaultVariants: {}, compoundVariants: [] });
|
|
12
|
+
var wrapper = createRuntimeFn({ defaultClassName: "_18du0lar", variantClassNames: {}, defaultVariants: {}, compoundVariants: [] });
|
|
13
|
+
var helperText = createRuntimeFn({ defaultClassName: "_18du0las", variantClassNames: { disabled: { true: "_18du0lat" }, error: { true: "_18du0lau" } }, defaultVariants: {}, compoundVariants: [] });
|
|
13
14
|
export {
|
|
14
15
|
container,
|
|
15
16
|
helperText,
|
package/dist/Input/InputPhone.js
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { InputMask } from "@react-input/mask";
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
|
+
import "./Checkbox.js";
|
|
5
|
+
import "./CurrencyInput.js";
|
|
6
|
+
import "./Dropdown.js";
|
|
7
|
+
/* empty css */
|
|
8
|
+
/* empty css */
|
|
4
9
|
import { Input } from "./Input.js";
|
|
5
10
|
import "./Input.css.js";
|
|
6
11
|
const InputPhone = forwardRef(
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { InputHTMLAttributes, PropsWithChildren, ReactNode, SelectHTMLAttributes } from 'react';
|
|
2
|
+
import { QuaternaryTypes } from '../utils';
|
|
3
|
+
|
|
4
|
+
export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
5
|
+
label?: ReactNode;
|
|
6
|
+
iconLeft?: ReactNode;
|
|
7
|
+
iconRight?: ReactNode;
|
|
8
|
+
sizes?: "small" | "medium" | "large" | undefined;
|
|
9
|
+
error?: boolean | undefined;
|
|
10
|
+
skeleton?: boolean | undefined;
|
|
11
|
+
helperText?: ReactNode;
|
|
12
|
+
variant?: QuaternaryTypes;
|
|
13
|
+
type?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface DropdownProps extends SelectHTMLAttributes<HTMLSelectElement>, PropsWithChildren {
|
|
16
|
+
label?: ReactNode;
|
|
17
|
+
iconLeft?: ReactNode;
|
|
18
|
+
iconRight?: ReactNode;
|
|
19
|
+
sizes?: "small" | "medium" | "large" | undefined;
|
|
20
|
+
error?: boolean | undefined;
|
|
21
|
+
skeleton?: boolean | undefined;
|
|
22
|
+
helperText?: ReactNode;
|
|
23
|
+
variant?: QuaternaryTypes;
|
|
24
|
+
type?: string;
|
|
25
|
+
options?: {
|
|
26
|
+
value: string | number;
|
|
27
|
+
text: string;
|
|
28
|
+
}[];
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/dist/Input/index.d.ts
CHANGED
package/dist/Input/index.js
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
+
import { Checkbox } from "./Checkbox.js";
|
|
2
|
+
import { CurrencyInput } from "./CurrencyInput.js";
|
|
3
|
+
import { Dropdown } from "./Dropdown.js";
|
|
4
|
+
import { selectInput } from "./Dropdown.css.js";
|
|
1
5
|
import { Input } from "./Input.js";
|
|
2
6
|
import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input.css.js";
|
|
3
7
|
import { InputPhone } from "./InputPhone.js";
|
|
4
8
|
export {
|
|
9
|
+
Checkbox,
|
|
10
|
+
CurrencyInput,
|
|
11
|
+
Dropdown,
|
|
5
12
|
Input,
|
|
6
13
|
InputPhone,
|
|
7
14
|
container,
|
|
@@ -11,5 +18,6 @@ export {
|
|
|
11
18
|
iconInput,
|
|
12
19
|
input,
|
|
13
20
|
labelClassName,
|
|
21
|
+
selectInput,
|
|
14
22
|
wrapper
|
|
15
23
|
};
|
package/dist/Modal/Modal.js
CHANGED
|
@@ -28,13 +28,17 @@ import "../ExecutiveBio/ExecutiveBio.css.js";
|
|
|
28
28
|
import "../FaqAccordion/index.js";
|
|
29
29
|
import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
30
30
|
/* empty css */
|
|
31
|
-
import "../Forms/Forms.css.js";
|
|
32
|
-
import "../Forms/SalesforceFieldsForm.js";
|
|
33
31
|
import "@hookform/resolvers/zod";
|
|
32
|
+
import "../Input/Checkbox.js";
|
|
33
|
+
import "../Input/CurrencyInput.js";
|
|
34
|
+
import "../Input/Dropdown.js";
|
|
35
|
+
/* empty css */
|
|
34
36
|
import "../Input/Input.js";
|
|
35
37
|
import "../Input/Input.css.js";
|
|
36
38
|
import "../Input/InputPhone.js";
|
|
37
39
|
import "react-hook-form";
|
|
40
|
+
import "../Forms/Forms.css.js";
|
|
41
|
+
import "../Forms/SalesforceFieldsForm.js";
|
|
38
42
|
import "../SetContainer/SetContainer.css.js";
|
|
39
43
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
40
44
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
@@ -4,6 +4,7 @@ import { Button } from "../../Button/Button.js";
|
|
|
4
4
|
import "../../Button/Button.css.js";
|
|
5
5
|
import { useRef, useState, useEffect } from "react";
|
|
6
6
|
import { useLocation } from "react-use";
|
|
7
|
+
import clsx from "clsx";
|
|
7
8
|
import styles from "./NavBar.module.js";
|
|
8
9
|
import { sub_nav, absoule, dd_media, dd_media_btn } from "./SubNavbar.css.js";
|
|
9
10
|
function SubNavBar() {
|
|
@@ -21,18 +22,18 @@ function SubNavBar() {
|
|
|
21
22
|
setIsMouseOver(!isMouseOver);
|
|
22
23
|
};
|
|
23
24
|
useEffect(() => {
|
|
24
|
-
|
|
25
|
-
}, [
|
|
25
|
+
pathname?.includes("/products") ? setIsrender(true) : setIsrender(false);
|
|
26
|
+
}, [pathname]);
|
|
26
27
|
const date = /* @__PURE__ */ new Date();
|
|
27
28
|
const day = date.getDate();
|
|
28
29
|
const month = date.getMonth() + 1;
|
|
29
30
|
const year = date.getFullYear();
|
|
30
31
|
const currentDate = `${month}/${day}/${year}`;
|
|
31
|
-
return /* @__PURE__ */ jsx(Fragment, { children:
|
|
32
|
+
return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
32
33
|
/* @__PURE__ */ jsx(
|
|
33
34
|
"div",
|
|
34
35
|
{
|
|
35
|
-
className: `${styles.sub_nav} ${sub_nav} ${styles.desktop_only}`,
|
|
36
|
+
className: `${styles.sub_nav} ${sub_nav} ${styles.desktop_only} ${clsx(!render && "hide")}`,
|
|
36
37
|
children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsx("div", { className: styles.header_sub_row, children: /* @__PURE__ */ jsx("div", { className: "list_unstyled flex_row middle", children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
|
|
37
38
|
/* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsxs(
|
|
38
39
|
"a",
|
|
@@ -37,8 +37,7 @@ function NavBar() {
|
|
|
37
37
|
setLastNavItem(navItems[navItems.length - 1]);
|
|
38
38
|
}, [navItems]);
|
|
39
39
|
useClickAway(ref, (e) => {
|
|
40
|
-
|
|
41
|
-
if (((_a = e == null ? void 0 : e.target) == null ? void 0 : _a.tagName) !== "A") {
|
|
40
|
+
if (e?.target?.tagName !== "A") {
|
|
42
41
|
setisOpenSignIn(false);
|
|
43
42
|
}
|
|
44
43
|
});
|
|
@@ -4,7 +4,7 @@ import clsx from "clsx";
|
|
|
4
4
|
import { secondary_footer, footer_items_wrapper, footer_item, footer_link } from "./SecondaryFooter.css.js";
|
|
5
5
|
const SecondaryFooter = (props) => {
|
|
6
6
|
const { items } = props;
|
|
7
|
-
return /* @__PURE__ */ jsx("div", { className: clsx(secondary_footer, "containment section_spacer"), children: /* @__PURE__ */ jsx("div", { className: footer_items_wrapper, children: items
|
|
7
|
+
return /* @__PURE__ */ jsx("div", { className: clsx(secondary_footer, "containment section_spacer"), children: /* @__PURE__ */ jsx("div", { className: footer_items_wrapper, children: items?.map((item) => /* @__PURE__ */ jsx("div", { className: footer_item, children: /* @__PURE__ */ jsx(Hyperlink, { targetUrl: item.targetURL, className: footer_link, children: item.displayText }) }, item.id)) }) });
|
|
8
8
|
};
|
|
9
9
|
export {
|
|
10
10
|
SecondaryFooter
|
|
@@ -28,13 +28,17 @@ import "../ExecutiveBio/ExecutiveBio.css.js";
|
|
|
28
28
|
import "../FaqAccordion/index.js";
|
|
29
29
|
import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
30
30
|
/* empty css */
|
|
31
|
-
import "../Forms/Forms.css.js";
|
|
32
|
-
import "../Forms/SalesforceFieldsForm.js";
|
|
33
31
|
import "@hookform/resolvers/zod";
|
|
32
|
+
import "../Input/Checkbox.js";
|
|
33
|
+
import "../Input/CurrencyInput.js";
|
|
34
|
+
import "../Input/Dropdown.js";
|
|
35
|
+
/* empty css */
|
|
34
36
|
import "../Input/Input.js";
|
|
35
37
|
import "../Input/Input.css.js";
|
|
36
38
|
import "../Input/InputPhone.js";
|
|
37
39
|
import "react-hook-form";
|
|
40
|
+
import "../Forms/Forms.css.js";
|
|
41
|
+
import "../Forms/SalesforceFieldsForm.js";
|
|
38
42
|
import { set_container, inline_container } from "./SetContainer.css.js";
|
|
39
43
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
40
44
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
@@ -63,7 +67,7 @@ const SetContainer = ({
|
|
|
63
67
|
return /* @__PURE__ */ jsx(
|
|
64
68
|
"section",
|
|
65
69
|
{
|
|
66
|
-
id: internalName ? internalName
|
|
70
|
+
id: internalName ? internalName?.replace(/ /g, "-") : "",
|
|
67
71
|
className: clsx(set_container({ variant: getVariant(variant) })),
|
|
68
72
|
children: /* @__PURE__ */ jsxs("div", { className: "containment", children: [
|
|
69
73
|
(headline || bodyCopy) && /* @__PURE__ */ jsxs("div", { className: section_text, children: [
|
package/dist/Table/Table.js
CHANGED
|
@@ -12,7 +12,7 @@ const TableContainer = ({
|
|
|
12
12
|
internalName,
|
|
13
13
|
id
|
|
14
14
|
}) => {
|
|
15
|
-
return /* @__PURE__ */ jsx("section", { id: internalName
|
|
15
|
+
return /* @__PURE__ */ jsx("section", { id: internalName?.replace(/ /g, "-"), children: /* @__PURE__ */ jsxs(
|
|
16
16
|
"div",
|
|
17
17
|
{
|
|
18
18
|
className: clsx(
|
|
@@ -79,7 +79,7 @@ const TableCell = ({
|
|
|
79
79
|
...props,
|
|
80
80
|
className: clsx(
|
|
81
81
|
as == "td" ? td({ variant: getVariant(variant), highlighted }) : th({ variant: getVariant(variant), highlighted }),
|
|
82
|
-
props
|
|
82
|
+
props?.className
|
|
83
83
|
)
|
|
84
84
|
},
|
|
85
85
|
children
|
|
@@ -23,17 +23,17 @@ const VideoWrapper = ({
|
|
|
23
23
|
"div",
|
|
24
24
|
{
|
|
25
25
|
className: `${grid_wrapper} ${videoTiles.length % 3 === 0 ? grid_3 : grid_2}`,
|
|
26
|
-
children: videoTiles
|
|
26
|
+
children: videoTiles?.map((videoItem, index) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
|
|
27
27
|
VideoTile,
|
|
28
28
|
{
|
|
29
29
|
id: videoItem.id,
|
|
30
|
-
title: videoItem
|
|
31
|
-
videoId: videoItem
|
|
32
|
-
thumbnailImage: videoItem
|
|
33
|
-
displayType: videoItem
|
|
34
|
-
maxWidth:
|
|
30
|
+
title: videoItem?.title,
|
|
31
|
+
videoId: videoItem?.videoId,
|
|
32
|
+
thumbnailImage: videoItem?.thumbnailImage,
|
|
33
|
+
displayType: videoItem?.displayType,
|
|
34
|
+
maxWidth: videoItem?.maxWidth || "588px",
|
|
35
35
|
videoPlayer: videoItem.displayType,
|
|
36
|
-
transcript: videoItem
|
|
36
|
+
transcript: videoItem?.transcript
|
|
37
37
|
},
|
|
38
38
|
index
|
|
39
39
|
) }))
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes
|
|
1
|
+
@keyframes tfms6ap {
|
|
2
2
|
from {
|
|
3
3
|
stroke-dashoffset: 1;
|
|
4
4
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
opacity: 100;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
@keyframes
|
|
9
|
+
@keyframes tfms6aq {
|
|
10
10
|
0% {
|
|
11
11
|
stroke-dashoffset: -1000;
|
|
12
12
|
}
|
|
@@ -86,48 +86,51 @@
|
|
|
86
86
|
color: var(--_1073cm8n);
|
|
87
87
|
}
|
|
88
88
|
.tfms6ah {
|
|
89
|
+
grid-template-columns: 1fr;
|
|
90
|
+
}
|
|
91
|
+
.tfms6ai {
|
|
89
92
|
margin-top: 1.5rem;
|
|
90
93
|
text-align: center;
|
|
91
94
|
}
|
|
92
|
-
.
|
|
95
|
+
.tfms6aj {
|
|
93
96
|
margin-top: 16px;
|
|
94
97
|
}
|
|
95
|
-
.
|
|
98
|
+
.tfms6ak {
|
|
96
99
|
color: var(--_1073cm82);
|
|
97
100
|
}
|
|
98
|
-
.
|
|
101
|
+
.tfms6al {
|
|
99
102
|
color: var(--_1073cm89);
|
|
100
103
|
}
|
|
101
|
-
.
|
|
104
|
+
.tfms6am {
|
|
102
105
|
color: var(--_1073cm8g);
|
|
103
106
|
}
|
|
104
|
-
.
|
|
107
|
+
.tfms6an {
|
|
105
108
|
color: var(--_1073cm8n);
|
|
106
109
|
}
|
|
107
|
-
.
|
|
110
|
+
.tfms6ao {
|
|
108
111
|
max-width: 860px;
|
|
109
112
|
margin-inline: auto;
|
|
110
113
|
}
|
|
111
|
-
.
|
|
114
|
+
.tfms6ar {
|
|
112
115
|
padding: 2.5rem 0;
|
|
113
116
|
}
|
|
114
|
-
.
|
|
117
|
+
.tfms6as {
|
|
115
118
|
color: var(--_1073cm83);
|
|
116
119
|
background: var(--_1073cm81);
|
|
117
120
|
}
|
|
118
|
-
.
|
|
121
|
+
.tfms6at {
|
|
119
122
|
color: var(--_1073cm8a);
|
|
120
123
|
background: var(--_1073cm88);
|
|
121
124
|
}
|
|
122
|
-
.
|
|
125
|
+
.tfms6au {
|
|
123
126
|
color: var(--_1073cm8g);
|
|
124
127
|
background: var(--_1073cm8f);
|
|
125
128
|
}
|
|
126
|
-
.
|
|
129
|
+
.tfms6av {
|
|
127
130
|
color: var(--_1073cm8n);
|
|
128
131
|
background: var(--_1073cm8m);
|
|
129
132
|
}
|
|
130
|
-
.
|
|
133
|
+
.tfms6ar h1 {
|
|
131
134
|
font-size: 43px;
|
|
132
135
|
font-weight: 600;
|
|
133
136
|
letter-spacing: 1px;
|
|
@@ -135,29 +138,29 @@
|
|
|
135
138
|
margin-bottom: 0.7rem;
|
|
136
139
|
font-family: var(--header-font-family);
|
|
137
140
|
}
|
|
138
|
-
.
|
|
141
|
+
.tfms6ar p {
|
|
139
142
|
margin-bottom: 0;
|
|
140
143
|
}
|
|
141
|
-
.
|
|
144
|
+
.tfms6aw {
|
|
142
145
|
margin: 0 auto;
|
|
143
146
|
display: block;
|
|
144
147
|
}
|
|
145
|
-
.
|
|
148
|
+
.tfms6ax {
|
|
146
149
|
fill: none;
|
|
147
150
|
stroke: #faa74a;
|
|
148
151
|
stroke-width: 4;
|
|
149
152
|
stroke-dasharray: 100px;
|
|
150
153
|
stroke-dashoffset: 100;
|
|
151
|
-
animation:
|
|
154
|
+
animation: tfms6ap 0.5s ease-in-out forwards reverse;
|
|
152
155
|
-webkit-animation-delay: 0.7s;
|
|
153
156
|
}
|
|
154
|
-
.
|
|
157
|
+
.tfms6ay {
|
|
155
158
|
fill: none;
|
|
156
159
|
stroke-width: 4;
|
|
157
160
|
stroke-dasharray: 1000px;
|
|
158
161
|
stroke-dashoffset: 1000;
|
|
159
|
-
-webkit-animation:
|
|
160
|
-
animation:
|
|
162
|
+
-webkit-animation: tfms6aq 0.8s ease-in-out forwards;
|
|
163
|
+
animation: tfms6aq 0.8s ease-in-out forwards;
|
|
161
164
|
-webkit-transform-origin: center;
|
|
162
165
|
-ms-transform-origin: center;
|
|
163
166
|
transform-origin: center;
|
|
@@ -165,21 +168,37 @@
|
|
|
165
168
|
-ms-transform: rotate(-40deg);
|
|
166
169
|
transform: rotate(-40deg);
|
|
167
170
|
}
|
|
168
|
-
.
|
|
171
|
+
.tfms6az {
|
|
169
172
|
stroke: var(--_1073cm83);
|
|
170
173
|
}
|
|
171
|
-
.
|
|
174
|
+
.tfms6a10 {
|
|
172
175
|
stroke: var(--_1073cm8a);
|
|
173
176
|
}
|
|
174
|
-
.
|
|
177
|
+
.tfms6a11 {
|
|
175
178
|
stroke: var(--_1073cm8g);
|
|
176
179
|
}
|
|
177
|
-
.
|
|
180
|
+
.tfms6a12 {
|
|
178
181
|
stroke: var(--_1073cm8n);
|
|
179
182
|
}
|
|
180
|
-
.
|
|
183
|
+
.tfms6a13 {
|
|
181
184
|
margin-top: 1rem;
|
|
182
185
|
}
|
|
186
|
+
.tfms6a14 {
|
|
187
|
+
color: var(--_1073cm82);
|
|
188
|
+
}
|
|
189
|
+
.tfms6a15 {
|
|
190
|
+
color: var(--_1073cm89);
|
|
191
|
+
}
|
|
192
|
+
.tfms6a16 {
|
|
193
|
+
color: var(--_1073cm8g);
|
|
194
|
+
}
|
|
195
|
+
.tfms6a17 {
|
|
196
|
+
color: var(--_1073cm8n);
|
|
197
|
+
}
|
|
198
|
+
.tfms6ac .tfms6a18 {
|
|
199
|
+
grid-column-start: 1;
|
|
200
|
+
grid-column-end: 3;
|
|
201
|
+
}
|
|
183
202
|
@media screen and (max-width:1023px) {
|
|
184
203
|
.tfms6a0 {
|
|
185
204
|
padding-inline: 0;
|
|
@@ -189,22 +208,26 @@
|
|
|
189
208
|
.tfms6ac {
|
|
190
209
|
grid-template-columns: 1fr;
|
|
191
210
|
}
|
|
211
|
+
.tfms6ac .tfms6a18 {
|
|
212
|
+
grid-column-start: 1;
|
|
213
|
+
grid-column-end: 2;
|
|
214
|
+
}
|
|
192
215
|
}
|
|
193
216
|
@media screen and (max-width: 992px) {
|
|
194
|
-
.
|
|
217
|
+
.tfms6ar h1 {
|
|
195
218
|
font-size: 37px;
|
|
196
219
|
line-height: 1.29;
|
|
197
220
|
margin-bottom: 0.4rem;
|
|
198
221
|
}
|
|
199
222
|
}
|
|
200
223
|
@media screen and (maxwidth: 767px) {
|
|
201
|
-
.
|
|
224
|
+
.tfms6ar h1 {
|
|
202
225
|
font-size: 32px;
|
|
203
226
|
font-weight: 600;
|
|
204
227
|
margin-top: 0;
|
|
205
228
|
margin-bottom: 0.4rem;
|
|
206
229
|
}
|
|
207
|
-
.
|
|
230
|
+
.tfms6aw {
|
|
208
231
|
max-width: 69px;
|
|
209
232
|
}
|
|
210
233
|
}
|