@axos-web-dev/shared-components 1.0.100-dev.88 → 1.0.100-dev.89

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.
Files changed (36) hide show
  1. package/dist/Accordion/Accordion.js +3 -3
  2. package/dist/AlertBanner/index.js +1 -1
  3. package/dist/Article/Article.js +1 -1
  4. package/dist/Calculators/AnnualFeeCalculator/index.js +1 -1
  5. package/dist/Calculators/ApyCalculator/index.js +1 -1
  6. package/dist/Calculators/BuyDownCalculator/index.js +1 -1
  7. package/dist/Calculators/MarginTradingCalculator/index.js +1 -1
  8. package/dist/Calculators/MarineLoanMonthlyPaymentCalculator/index.js +1 -1
  9. package/dist/Calculators/MaxLoanCalculator/index.js +1 -1
  10. package/dist/Calculators/MonthlyPaymentCalculator/index.js +1 -1
  11. package/dist/Calculators/MonthlyPaymentLVFCalculator/index.js +1 -1
  12. package/dist/Carousel/index.js +1 -1
  13. package/dist/ContentBanner/index.js +1 -1
  14. package/dist/ExecutiveBio/ExecutiveBio.js +1 -1
  15. package/dist/ExecutiveBio/ExecutiveBioSet.js +1 -1
  16. package/dist/FaqAccordion/index.js +1 -1
  17. package/dist/FooterDisclosure/FooterDisclosure.js +1 -1
  18. package/dist/Forms/MortgageRate/MortgageRateForm.js +1 -1
  19. package/dist/HeroBanner/HeroBanner.js +2 -2
  20. package/dist/IconBillboard/IconBillboardSet.js +1 -1
  21. package/dist/ImageBillboard/ImageBillboard.js +1 -1
  22. package/dist/Input/Checkbox.js +2 -2
  23. package/dist/Input/DownPaymentInput.js +1 -1
  24. package/dist/Input/Dropdown.js +1 -1
  25. package/dist/Input/Input.js +1 -1
  26. package/dist/Input/InputTextArea.js +1 -1
  27. package/dist/Insight/Featured/Featured.js +2 -2
  28. package/dist/LandingPageHeader/LandingPageHeader.js +1 -1
  29. package/dist/Modal/contextApi/store.js +1 -1
  30. package/dist/PageNavItem/PageNavItem.js +1 -1
  31. package/dist/SetContainer/SetContainer.js +1 -1
  32. package/dist/StepItem/StepItem.js +1 -1
  33. package/dist/StepItemSet/StepItemSet.js +1 -1
  34. package/dist/Table/Table.js +1 -1
  35. package/dist/Topic/Topic.js +1 -1
  36. package/package.json +136 -136
@@ -1,7 +1,7 @@
1
1
  "use client";
2
- import { jsxs, jsx } from "react/jsx-runtime";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
3
  import clsx from "clsx";
4
- import React, { createContext, useContext, useState } from "react";
4
+ import React, { createContext, useState, useContext } from "react";
5
5
  import "../icons/ArrowIcon/ArrowIcon.css.js";
6
6
  import "../icons/CheckIcon/CheckIcon.css.js";
7
7
  import SvgChevronDown from "../icons/ChevronDown.js";
@@ -12,7 +12,7 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
12
12
  /* empty css */
13
13
  /* empty css */
14
14
  /* empty css */
15
- import { headerContent, icon, headerAccordion, bodyAccordion, hide, paragraph, accordion } from "./Accordion.css.js";
15
+ import { bodyAccordion, hide, paragraph, accordion, headerContent, icon, headerAccordion } from "./Accordion.css.js";
16
16
  const AccordionCtx = createContext({
17
17
  isOpen: false,
18
18
  onclick: () => {
@@ -10,7 +10,7 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
10
10
  /* empty css */
11
11
  import SvgLockIcon from "../icons/LockIcon/index.js";
12
12
  import { SvgWarningIcon } from "../icons/WarningIcon/index.js";
13
- import { alertBanner, alertBanner_img_section, alertBanner_body, alertBanner_cta } from "./AlertBanner.css.js";
13
+ import { alertBanner_img_section, alertBanner_body, alertBanner_cta, alertBanner } from "./AlertBanner.css.js";
14
14
  const AlertBanner = ({
15
15
  alertType,
16
16
  message,
@@ -1,7 +1,7 @@
1
1
  import { jsxs, jsx, Fragment } from "react/jsx-runtime";
2
2
  import { getVariant } from "../utils/getVariant.js";
3
3
  import { OptimizeImage } from "../utils/optimizeImage/OptimizeImage.js";
4
- import { ant_article, ant_img, ant_content, ant_eyebrow, ant_card_title, ant_card_body, ant_card_cta } from "./Article.css.js";
4
+ import { ant_img, ant_content, ant_eyebrow, ant_card_title, ant_card_body, ant_card_cta, ant_article } from "./Article.css.js";
5
5
  import { Button } from "../Button/Button.js";
6
6
  import "../Button/Button.css.js";
7
7
  import "react";
@@ -7,7 +7,7 @@ import { getVariant } from "../../utils/getVariant.js";
7
7
  import { useRef, useState, useEffect } from "react";
8
8
  import clsx from "clsx";
9
9
  import { calculator } from "../calculator.css.js";
10
- import { container, calc_container, calc_block, pb0_1023, slider_block_wrapper, w100, stat_row, balance_wrapper, fb50, stat, slider_wrapper, slider, pt0_1023, text_block } from "./AnnualFeeCalculator.css.js";
10
+ import { calc_container, calc_block, pb0_1023, slider_block_wrapper, w100, stat_row, balance_wrapper, fb50, stat, slider_wrapper, slider, pt0_1023, text_block, container } from "./AnnualFeeCalculator.css.js";
11
11
  const AnnualFeeCalculator = ({
12
12
  marketingTiles,
13
13
  variant: fullVariant = "primary"
@@ -8,7 +8,7 @@ import { Chevron } from "../../Chevron/index.js";
8
8
  import { section_container, content, headerIconBillboard, buttons } from "../../IconBillboard/IconBillboard.css.js";
9
9
  import { useGlobalContext } from "../../Modal/contextApi/store.js";
10
10
  import { getVariant } from "../../utils/getVariant.js";
11
- import { container, apy_calculator, calculator_section, section_header, header_theme, mt_8, apy_calculator_form, pis_0, errorTag, fieldset, field_row, relative, label_symbol, cash, prefix_pad, percent, submit_section, span_12, form_disclosure, marketing, marketingTile, bodyContent } from "./ApyCalculator.css.js";
11
+ import { apy_calculator, calculator_section, section_header, header_theme, mt_8, apy_calculator_form, pis_0, errorTag, fieldset, field_row, relative, label_symbol, cash, prefix_pad, percent, submit_section, span_12, form_disclosure, marketing, marketingTile, bodyContent, container } from "./ApyCalculator.css.js";
12
12
  const ApyCalculator = ({
13
13
  header,
14
14
  body,
@@ -22,7 +22,7 @@ import { z } from "zod";
22
22
  import { getVariant } from "../../utils/getVariant.js";
23
23
  import clsx from "clsx";
24
24
  import { useForm, FormProvider } from "react-hook-form";
25
- import { calc_container, calculator_section, section_header, theme_header, mt_8, buydown_calculator_form, row_form, calculate_row, form_wrapper, form_disclosure } from "./BuyDownCalculator.css.js";
25
+ import { calculator_section, section_header, theme_header, mt_8, buydown_calculator_form, row_form, calculate_row, form_wrapper, form_disclosure, calc_container } from "./BuyDownCalculator.css.js";
26
26
  const BuyDownCalculator = ({
27
27
  header,
28
28
  body,
@@ -4,7 +4,7 @@ import { Button } from "../../Button/Button.js";
4
4
  import { button } from "../../Button/Button.css.js";
5
5
  import { useEffect } from "react";
6
6
  import "react-use";
7
- import { container, field_row, errorTag, marketingTile, bodyContent, header_theme } from "../ApyCalculator/ApyCalculator.css.js";
7
+ import { field_row, errorTag, marketingTile, bodyContent, header_theme, container } from "../ApyCalculator/ApyCalculator.css.js";
8
8
  import { Chevron } from "../../Chevron/index.js";
9
9
  import { content, headerIconBillboard, buttons } from "../../IconBillboard/IconBillboard.css.js";
10
10
  import { getVariant } from "../../utils/getVariant.js";
@@ -7,7 +7,7 @@ import { useState } from "react";
7
7
  import clsx from "clsx";
8
8
  import { calc_text, description_text, calc_disclosure } from "../BalanceAPYCalculator/BalanceAPYCalculator.css.js";
9
9
  import { calculator } from "../calculator.css.js";
10
- import { calc_container, container, h2i, inputs_container, input_container, input_box, error_message, hide_select_arrow, calculation_header, payment_results } from "../MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
10
+ import { calc_container, h2i, inputs_container, input_container, input_box, error_message, hide_select_arrow, calculation_header, payment_results, container } from "../MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
11
11
  const MarineLoanMonthlyPaymentCalculator = ({ variant, header, disclosure, bodyCopy = true }) => {
12
12
  const fullVariant = getVariant(variant);
13
13
  const [loanAmountDisplay, setLoanAmountDisplay] = useState("$75,000");
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import { jsx, jsxs } from "react/jsx-runtime";
3
3
  import { button } from "../../Button/Button.css.js";
4
- import { calc_container, container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results } from "../MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
4
+ import { calc_container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results, container } from "../MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
5
5
  import { title } from "../../IconBillboard/IconBillboard.css.js";
6
6
  import { getVariant } from "../../utils/getVariant.js";
7
7
  import { useState } from "react";
@@ -7,7 +7,7 @@ import { useState } from "react";
7
7
  import clsx from "clsx";
8
8
  import { calc_text, description_text, calc_disclosure } from "../BalanceAPYCalculator/BalanceAPYCalculator.css.js";
9
9
  import { calculator } from "../calculator.css.js";
10
- import { calc_container, container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results } from "./MonthlyPaymentCalculator.css.js";
10
+ import { calc_container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results, container } from "./MonthlyPaymentCalculator.css.js";
11
11
  const MonthlyPaymentCalculator = ({
12
12
  variant,
13
13
  header,
@@ -4,7 +4,7 @@ import { button } from "../../Button/Button.css.js";
4
4
  import { getVariant } from "../../utils/getVariant.js";
5
5
  import { useState } from "react";
6
6
  import { calc_disclosure } from "../BalanceAPYCalculator/BalanceAPYCalculator.css.js";
7
- import { bg_vars, calc_content_area, calc_h2, calc_bodycopy, lvf_calc_wrapper, lvf_calc_header, calc_wrapper_inner, calc_input_wrap, rounded_cell, calc_input_styles, error_dialog, results_wrap, result_header, result_value, waves, parallax } from "./MonthlyPaymentCalculator.css.js";
7
+ import { calc_content_area, calc_h2, calc_bodycopy, lvf_calc_wrapper, lvf_calc_header, calc_wrapper_inner, calc_input_wrap, rounded_cell, calc_input_styles, error_dialog, results_wrap, result_header, result_value, waves, parallax, bg_vars } from "./MonthlyPaymentCalculator.css.js";
8
8
  const MonthlyPaymentLVFCalculator = ({ variant, header, bodyCopy, disclosure }) => {
9
9
  const theme = getVariant(variant);
10
10
  const [loanAmountMasked, setLoanAmountMasked] = useState("50,000");
@@ -128,7 +128,7 @@ import "../StepItemSet/StepItemSet.css.js";
128
128
  /* empty css */
129
129
  /* empty css */
130
130
  /* empty css */
131
- import { icon, slide, authorLocation, author, quoteSetContainer, headerCarousel, descriptionCarousel, slides, carousel, dots, dot } from "./Carousel.css.js";
131
+ import { icon, quoteSetContainer, headerCarousel, descriptionCarousel, slides, carousel, slide, authorLocation, author, dots, dot } from "./Carousel.css.js";
132
132
  import { useCarousel } from "./store.js";
133
133
  const iconVarints = /* @__PURE__ */ new Map([
134
134
  [
@@ -7,7 +7,7 @@ import { getVariant } from "../utils/getVariant.js";
7
7
  import { Button } from "../Button/Button.js";
8
8
  import "../Button/Button.css.js";
9
9
  import "react-use";
10
- import { content_banner, section_pad, section_min_pad, push_down_24, cb_eyebrow, body_copy, call_to_action_row, link } from "./ContentBanner.css.js";
10
+ import { section_pad, section_min_pad, push_down_24, cb_eyebrow, body_copy, call_to_action_row, link, content_banner } from "./ContentBanner.css.js";
11
11
  const ContentBanner = ({
12
12
  variant,
13
13
  icon,
@@ -4,7 +4,7 @@ import { getVariant } from "../utils/getVariant.js";
4
4
  import { Chevron } from "../Chevron/index.js";
5
5
  import { OptimizeImage } from "../utils/optimizeImage/OptimizeImage.js";
6
6
  import { Overlay } from "./Overlay.js";
7
- import { executive_bio, compact, padding, item_bio, shift, media, headshot, img_area, description, person, headline_setting, job_title, copy, contacts, contact_col, svg_icon, contact_entry, url_row, ceoSection, ceoContainer, ceoWrapper, ceoMedia, ceoImgWrapper, imgAlignment, highlights, bulletsHeadline, bulletsWrapper, ceoContent, ceoHeader, ceoPersonalInfo, ceo_name, ceo_title, ceo_contacts, social, hover, svg_color, tooltip, ceo_quote, ceo_body, order_3, overlay } from "./ExecutiveBio.css.js";
7
+ import { executive_bio, compact, padding, shift, media, headshot, img_area, description, person, headline_setting, job_title, copy, contacts, contact_col, svg_icon, contact_entry, url_row, item_bio, ceoContainer, ceoWrapper, ceoMedia, ceoImgWrapper, imgAlignment, highlights, bulletsHeadline, bulletsWrapper, ceoContent, ceoHeader, ceoPersonalInfo, ceo_name, ceo_title, ceo_contacts, social, hover, svg_color, tooltip, ceo_quote, ceo_body, order_3, overlay, ceoSection } from "./ExecutiveBio.css.js";
8
8
  import "../Accordion/Accordion.js";
9
9
  import "../Accordion/Accordion.css.js";
10
10
  import "../icons/ArrowIcon/ArrowIcon.css.js";
@@ -1,7 +1,7 @@
1
1
  import { jsxs, jsx, Fragment } from "react/jsx-runtime";
2
2
  import { getVariant } from "../utils/getVariant.js";
3
3
  import { ExecutiveBio } from "./ExecutiveBio.js";
4
- import { section_theme, bio_section_text, header_theme, components, details } from "./ExecutiveBio.css.js";
4
+ import { bio_section_text, header_theme, components, details, section_theme } from "./ExecutiveBio.css.js";
5
5
  import "react";
6
6
  import { columnValues } from "../utils/variant.types.js";
7
7
  import { getNumOfColumns } from "../utils/getNumber.js";
@@ -130,7 +130,7 @@ import "../StepItemSet/StepItemSet.css.js";
130
130
  /* empty css */
131
131
  import { getLevelNumber } from "../utils/faqAccordionOptions.js";
132
132
  import { create } from "zustand";
133
- import { summary, summaryHeader, content, header, faqAccordion, faqAccordion_section } from "./FaqAccordion.css.js";
133
+ import { content, summary, summaryHeader, header, faqAccordion, faqAccordion_section } from "./FaqAccordion.css.js";
134
134
  const useAccordion = create()((set) => ({
135
135
  itemsOpened: [],
136
136
  addItem: (id) => {
@@ -1,6 +1,6 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
- import { footerParagraph, iconsContent, footerDisclosure } from "./FooterDisclosure.css.js";
3
+ import { footerDisclosure, iconsContent, footerParagraph } from "./FooterDisclosure.css.js";
4
4
  const FooterContent = (props) => {
5
5
  return /* @__PURE__ */ jsx(
6
6
  "div",
@@ -47,7 +47,7 @@ import "../../Input/RadioButton.js";
47
47
  import "../../Input/PercentageInput.js";
48
48
  import { useForm, FormProvider } from "react-hook-form";
49
49
  import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
50
- import { iconForm, headerForm, form, descriptionField, headerContainer, fullRowSelect, formWrapper, centerSelect, mt2rem, fullRowForm, disclosureForm, actions, formBtns, na_cursor, formContainer } from "../Forms.css.js";
50
+ import { iconForm, headerForm, form, descriptionField, headerContainer, fullRowSelect, centerSelect, formWrapper, mt2rem, fullRowForm, disclosureForm, actions, formBtns, na_cursor, formContainer } from "../Forms.css.js";
51
51
  import { honeyPotSchema, isValidHoneyPot, HoneyPot } from "../HoneyPot/index.js";
52
52
  import { SalesforceSchema } from "../SalesforceFieldsForm.js";
53
53
  import "../../Input/RadioButton.css.js";
@@ -16,8 +16,8 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
16
16
  import { getVariant } from "../utils/getVariant.js";
17
17
  import Image from "next/image.js";
18
18
  import clsx from "clsx";
19
- import { logout, hero_banner, hero_wrapper, hero_content, reversed, hero_text, heroSupertag, headline_text, hero_bullet_item, hero_sub_bullets, hero_btns, hero_img, img_contents, reversed_lg_image } from "./HeroBanner.css.js";
20
- import { lg_hero_banner, lg_hero_content, lg_hero_text, lg_hero_eyebrow, lg_headline_text, lg_hero_img, lg_hero_sizing } from "./LargeBanner.css.js";
19
+ import { logout, hero_wrapper, hero_content, reversed, hero_text, heroSupertag, headline_text, hero_bullet_item, hero_sub_bullets, hero_btns, hero_img, img_contents, hero_banner, reversed_lg_image } from "./HeroBanner.css.js";
20
+ import { lg_hero_content, lg_hero_eyebrow, lg_headline_text, lg_hero_text, lg_hero_img, lg_hero_sizing, lg_hero_banner } from "./LargeBanner.css.js";
21
21
  import { selection_section_icon_img, selection_section_icon, selection_section, selection_section_bg, selection_section_content, selection_headline_text } from "./SelectionBanner.css.js";
22
22
  const HeroBanner = ({
23
23
  id,
@@ -7,7 +7,7 @@ import { Button } from "../Button/Button.js";
7
7
  import "../Button/Button.css.js";
8
8
  import "react";
9
9
  import "react-use";
10
- import { section_text, header_section, section_body, 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, billboard_icon, content, headerIconBillboard, title, list, layout, buttons, containerIconBillboard } from "./IconBillboard.css.js";
11
11
  const IconBillboardSet = ({
12
12
  variant,
13
13
  side = false,
@@ -15,7 +15,7 @@ import "../Button/Button.css.js";
15
15
  import "react";
16
16
  import "react-use";
17
17
  import { inline_container } from "../SetContainer/SetContainer.css.js";
18
- import { section_text_ImageBillboard, header, billboard, billboard_container, body, billboard_body, billboard_header_section, supertag, billboard_ctas } from "./ImageBillboard.css.js";
18
+ import { section_text_ImageBillboard, header, billboard_container, body, billboard_body, billboard_header_section, supertag, billboard_ctas, billboard } from "./ImageBillboard.css.js";
19
19
  const ImageBillboardSet = ({
20
20
  id,
21
21
  variant,
@@ -1,8 +1,8 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
3
  import { forwardRef } from "react";
4
- import { checkboxContainer, checkbox } from "./Checkbox.css.js";
5
- import { wrapper, container, labelClassName, input, helperText } from "./Input.css.js";
4
+ import { checkbox, checkboxContainer } from "./Checkbox.css.js";
5
+ import { input, labelClassName, container, helperText, wrapper } from "./Input.css.js";
6
6
  const Checkbox = forwardRef((props, ref) => {
7
7
  const {
8
8
  disabled,
@@ -2,7 +2,7 @@
2
2
  import { jsxs, jsx } from "react/jsx-runtime";
3
3
  import clsx from "clsx";
4
4
  import { forwardRef, useState, useEffect } from "react";
5
- import { wrapper, labelClassName, container, input, helperText } from "./Input.css.js";
5
+ import { labelClassName, input, container, helperText, wrapper } from "./Input.css.js";
6
6
  import { dp_input } from "./Dropdown.css.js";
7
7
  const DownPaymentInput = forwardRef(
8
8
  ({
@@ -2,7 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
3
  import { forwardRef } from "react";
4
4
  import { selectInput } from "./Dropdown.css.js";
5
- import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
5
+ import { labelClassName, iconContainer, iconInput, input, container, helperText, wrapper } from "./Input.css.js";
6
6
  const Dropdown = forwardRef(
7
7
  (props, ref) => {
8
8
  const {
@@ -1,7 +1,7 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
3
  import { forwardRef } from "react";
4
- import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
4
+ import { labelClassName, iconContainer, iconInput, input, container, helperText, wrapper } from "./Input.css.js";
5
5
  const Input = forwardRef((props, ref) => {
6
6
  const {
7
7
  disabled,
@@ -1,7 +1,7 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
3
  import { forwardRef } from "react";
4
- import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
4
+ import { labelClassName, iconContainer, iconInput, input, container, helperText, wrapper } from "./Input.css.js";
5
5
  const InputTextArea = forwardRef((props, ref) => {
6
6
  const {
7
7
  disabled,
@@ -1,4 +1,4 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
3
  import { Fragment } from "react";
4
4
  import { getVariant } from "../../utils/getVariant.js";
@@ -100,7 +100,7 @@ import "next/script.js";
100
100
  /* empty css */
101
101
  /* empty css */
102
102
  /* empty css */
103
- import { featured_subgrid_item, featured_supertag, featured_subgrid_title, featured_center_vertical, featured_title, featured_maingrid_img, featured_maingrid_title, featured_maingrid_item, featured_maingrid, featured_hero, featured_subgrid_divider, featured_subgrid, featured_grid, featured_section } from "./Featured.css.js";
103
+ import { featured_title, featured_maingrid_img, featured_maingrid_title, featured_center_vertical, featured_maingrid_item, featured_maingrid, featured_hero, featured_subgrid_divider, featured_subgrid, featured_grid, featured_section, featured_subgrid_item, featured_supertag, featured_subgrid_title } from "./Featured.css.js";
104
104
  /* empty css */
105
105
  import "../../LandingPageHeader/LandingPageHeader.css.js";
106
106
  /* empty css */
@@ -16,7 +16,7 @@ import SvgComponent$5 from "../icons/Logos/AXOS.js";
16
16
  import SvgComponent$6 from "../icons/Logos/GBLVF.js";
17
17
  import SvgComponent$7 from "../icons/Logos/SPB.js";
18
18
  import { getVariant } from "../utils/getVariant.js";
19
- import { svg_fill, lp_theme, spb_container, lp_container, spb_hover, lp_hover } from "./LandingPageHeader.css.js";
19
+ import { svg_fill, spb_container, lp_container, spb_hover, lp_hover, lp_theme } from "./LandingPageHeader.css.js";
20
20
  const LandingPageHeader = ({
21
21
  id,
22
22
  variant: fullVariant = "primary",
@@ -2,7 +2,7 @@
2
2
  import { jsxs, jsx } from "react/jsx-runtime";
3
3
  import { Modal } from "../Modal.js";
4
4
  import { findMoreAxosDomains, isAllowedUrl } from "../../utils/allowedAxosDomains.js";
5
- import { createContext, useContext, useState, useCallback } from "react";
5
+ import { createContext, useState, useCallback, useContext } from "react";
6
6
  import { validateLink, shortUrl } from "../../utils/validateExternalLinks.js";
7
7
  const noopResolver = (url) => url;
8
8
  const GlobalContext = createContext({
@@ -1,6 +1,6 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { getVariant } from "../utils/getVariant.js";
3
- import { pn_btn, pn_link } from "./PageNavItem.css.js";
3
+ import { pn_link, pn_btn } from "./PageNavItem.css.js";
4
4
  const PageNavItem = ({
5
5
  id,
6
6
  addClassName,
@@ -81,7 +81,7 @@ import "../Chatbot/Chatbot.js";
81
81
  import "../Chatbot/store/messages.js";
82
82
  /* empty css */
83
83
  import "../Comparison/Comparison.css.js";
84
- import { setcontainer_section_text, set_container_cols, inline_container, set_container, isolate_container } from "./SetContainer.css.js";
84
+ import { setcontainer_section_text, inline_container, set_container_cols, set_container, isolate_container } from "./SetContainer.css.js";
85
85
  import "../Tab/Tab.css.js";
86
86
  import "../icons/Star/Star.css.js";
87
87
  import { heroSupertag } from "../HeroBanner/HeroBanner.css.js";
@@ -1,6 +1,6 @@
1
1
  import { jsxs, jsx, Fragment } from "react/jsx-runtime";
2
2
  import { getVariant } from "../utils/getVariant.js";
3
- import { li, line_points, point, step_num, bullet_details, bs_topic, bs_copy } from "./StepItem.css.js";
3
+ import { li, point, step_num, line_points, bullet_details, bs_topic, bs_copy } from "./StepItem.css.js";
4
4
  const StepItem = ({
5
5
  id,
6
6
  counter,
@@ -16,7 +16,7 @@ import '../assets/VideoTile/VideoTile.css';import '../assets/themes/victorie.css
16
16
  /* empty css */
17
17
  /* empty css */
18
18
  /* empty css */
19
- import { bs_section, bs_wrapper, svg_logo, modifier, sec_title, sec_subtitle, tablet_col, bs_image, bs_video, steps_wrapper, ol, ul, bs_btns, bs_add_details } from "./StepItemSet.css.js";
19
+ import { bs_wrapper, svg_logo, modifier, sec_title, sec_subtitle, tablet_col, bs_image, bs_video, steps_wrapper, ol, ul, bs_btns, bs_add_details, bs_section } from "./StepItemSet.css.js";
20
20
  const StepItemSet = ({
21
21
  id,
22
22
  variant: fullVariant = "primary",
@@ -11,7 +11,7 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
11
11
  /* empty css */
12
12
  import { getVariant } from "../utils/getVariant.js";
13
13
  import { createElement } from "react";
14
- import { table_section, table_container_text, table_headline, table_description_text, table_container, table, highlight_first_row, highlight_last_row, alternate_color_rows, apy_table, tableWrapper, td, th } from "./Table.css.js";
14
+ import { table, highlight_first_row, highlight_last_row, alternate_color_rows, apy_table, tableWrapper, td, th, table_section, table_container_text, table_headline, table_description_text, table_container } from "./Table.css.js";
15
15
  const TableContainer = ({
16
16
  tableTitle,
17
17
  tableBody,
@@ -1,6 +1,6 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
- import { topic_container, topic_header, topic_columns, topic_item } from "./Topic.css.js";
3
+ import { topic_container, topic_columns, topic_header, topic_item } from "./Topic.css.js";
4
4
  const Topic = ({ children }) => {
5
5
  return /* @__PURE__ */ jsx("div", { className: clsx(topic_container), children });
6
6
  };
package/package.json CHANGED
@@ -1,136 +1,136 @@
1
- {
2
- "name": "@axos-web-dev/shared-components",
3
- "description": "Axos shared components library for web.",
4
- "version": "1.0.100-dev.88",
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.10.0",
33
- "@next-safe-action/adapter-react-hook-form": "^2.0.0",
34
- "@react-input/mask": "^1.2.15",
35
- "@react-input/number-format": "^1.1.3",
36
- "@storybook/icons": "^1.3.0",
37
- "@storybook/preview-api": "^8.4.7",
38
- "@ts-stack/markdown": "^1.5.0",
39
- "@types/iframe-resizer": "3.5.13",
40
- "@ujet/websdk-headless": "^3.41.4",
41
- "@vanilla-extract/css": "^1.16.1",
42
- "@vanilla-extract/recipes": "^0.5.1",
43
- "antd": "^5.22.5",
44
- "clsx": "^2.1.1",
45
- "framer-motion": "^12.9.2",
46
- "iframe-resizer": "^3.6.6",
47
- "lodash": "^4.17.21",
48
- "moment": "^2.30.1",
49
- "next-safe-action": "^8.0.2",
50
- "react-date-picker": "^11.0.0",
51
- "react-date-range": "^2.0.1",
52
- "react-hook-form": "^7.54.2",
53
- "react-markdown": "^9.1.0",
54
- "react-popper": "^2.3.0",
55
- "react-slick": "^0.30.2",
56
- "react-use": "^17.6.0",
57
- "react-wrap-balancer": "^1.1.1",
58
- "remark-gfm": "^4.0.1",
59
- "rsuite": "^5.75.0",
60
- "slick-carousel": "^1.8.1",
61
- "typed-css-modules": "^0.9.1",
62
- "vite-plugin-svgr": "^4.3.0",
63
- "zod": "^3.24.1",
64
- "zustand": "^4.5.5"
65
- },
66
- "peerDependencies": {
67
- "@vanilla-extract/css-utils": "^0.1.3",
68
- "@vanilla-extract/recipes": "^0.5.1",
69
- "@vanilla-extract/vite-plugin": "^4.0.3",
70
- "next": "^14.1.4",
71
- "react": "^18.2.0",
72
- "react-date-range": "^2.0.1",
73
- "react-dom": "^18.2.0",
74
- "react-popper": "^2.3.0",
75
- "react-slick": "^0.30.2",
76
- "slick-carousel": "^1.8.1"
77
- },
78
- "devDependencies": {
79
- "@chromatic-com/storybook": "^1.9.0",
80
- "@rollup/plugin-alias": "^5.1.1",
81
- "@storybook/addon-essentials": "^8.4.7",
82
- "@storybook/addon-interactions": "^8.4.7",
83
- "@storybook/addon-links": "^8.4.7",
84
- "@storybook/addon-mdx-gfm": "^8.4.7",
85
- "@storybook/addon-onboarding": "^8.4.7",
86
- "@storybook/addon-themes": "^8.4.7",
87
- "@storybook/blocks": "^8.4.7",
88
- "@storybook/react": "^8.6.14",
89
- "@storybook/react-vite": "^8.4.7",
90
- "@storybook/test": "^8.6.14",
91
- "@svgr/core": "^8.1.0",
92
- "@svgr/plugin-prettier": "^8.1.0",
93
- "@svgr/plugin-svgo": "^8.1.0",
94
- "@types/lodash": "^4.17.17",
95
- "@types/node": "^20.19.0",
96
- "@types/react": "^18.3.23",
97
- "@types/react-date-range": "^1.4.9",
98
- "@types/react-datepicker": "^6.2.0",
99
- "@types/react-dom": "^18.3.7",
100
- "@types/react-slick": "^0.23.13",
101
- "@typescript-eslint/eslint-plugin": "^7.18.0",
102
- "@typescript-eslint/parser": "^7.18.0",
103
- "@vanilla-extract/css-utils": "^0.1.4",
104
- "@vanilla-extract/recipes": "^0.5.5",
105
- "@vanilla-extract/vite-plugin": "^4.0.18",
106
- "@vitejs/plugin-react-swc": "^3.7.2",
107
- "esbuild-vanilla-image-loader": "^0.1.3",
108
- "eslint": "^8.57.1",
109
- "eslint-plugin-react-hooks": "^4.6.2",
110
- "eslint-plugin-react-refresh": "^0.4.16",
111
- "eslint-plugin-storybook": "^0.8.0",
112
- "glob": "^10.4.5",
113
- "husky": "^9.1.7",
114
- "next": "^14.1.4",
115
- "prettier": "3.2.5",
116
- "react": "^18.3.1",
117
- "react-dom": "^18.3.1",
118
- "rollup-plugin-preserve-directives": "^0.4.0",
119
- "rollup-plugin-svg-import": "^3.0.0",
120
- "rollup-plugin-svgo": "^2.0.0",
121
- "storybook": "^8.4.7",
122
- "typescript": "^5.7.2",
123
- "typescript-plugin-css-modules": "^5.1.0",
124
- "vite": "^5.4.11",
125
- "vite-plugin-dts": "^3.9.1",
126
- "vite-plugin-lib-inject-css": "^2.1.1",
127
- "vite-plugin-setting-css-module": "^1.1.4",
128
- "vite-tsconfig-paths": "^4.3.2"
129
- },
130
- "main": "index.js",
131
- "directories": {
132
- "lib": "lib"
133
- },
134
- "author": "axos-web-dev",
135
- "license": "ISC"
136
- }
1
+ {
2
+ "name": "@axos-web-dev/shared-components",
3
+ "description": "Axos shared components library for web.",
4
+ "version": "1.0.100-dev.89",
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.10.0",
33
+ "@next-safe-action/adapter-react-hook-form": "^2.0.0",
34
+ "@react-input/mask": "^1.2.15",
35
+ "@react-input/number-format": "^1.1.3",
36
+ "@storybook/icons": "^1.3.0",
37
+ "@storybook/preview-api": "^8.4.7",
38
+ "@ts-stack/markdown": "^1.5.0",
39
+ "@types/iframe-resizer": "3.5.13",
40
+ "@ujet/websdk-headless": "^3.41.4",
41
+ "@vanilla-extract/css": "^1.16.1",
42
+ "@vanilla-extract/recipes": "^0.5.1",
43
+ "antd": "^5.22.5",
44
+ "clsx": "^2.1.1",
45
+ "framer-motion": "^12.9.2",
46
+ "iframe-resizer": "^3.6.6",
47
+ "lodash": "^4.17.21",
48
+ "moment": "^2.30.1",
49
+ "next-safe-action": "8.0.2",
50
+ "react-date-picker": "^11.0.0",
51
+ "react-date-range": "^2.0.1",
52
+ "react-hook-form": "^7.54.2",
53
+ "react-markdown": "^9.1.0",
54
+ "react-popper": "^2.3.0",
55
+ "react-slick": "^0.30.2",
56
+ "react-use": "^17.6.0",
57
+ "react-wrap-balancer": "^1.1.1",
58
+ "remark-gfm": "^4.0.1",
59
+ "rsuite": "^5.75.0",
60
+ "slick-carousel": "^1.8.1",
61
+ "typed-css-modules": "^0.9.1",
62
+ "vite-plugin-svgr": "^4.3.0",
63
+ "zod": "^3.24.1",
64
+ "zustand": "^4.5.5"
65
+ },
66
+ "peerDependencies": {
67
+ "@vanilla-extract/css-utils": "^0.1.3",
68
+ "@vanilla-extract/recipes": "^0.5.1",
69
+ "@vanilla-extract/vite-plugin": "^4.0.3",
70
+ "next": "^14.1.4",
71
+ "react": "^18.2.0",
72
+ "react-date-range": "^2.0.1",
73
+ "react-dom": "^18.2.0",
74
+ "react-popper": "^2.3.0",
75
+ "react-slick": "^0.30.2",
76
+ "slick-carousel": "^1.8.1"
77
+ },
78
+ "devDependencies": {
79
+ "@chromatic-com/storybook": "^1.9.0",
80
+ "@rollup/plugin-alias": "^5.1.1",
81
+ "@storybook/addon-essentials": "^8.4.7",
82
+ "@storybook/addon-interactions": "^8.4.7",
83
+ "@storybook/addon-links": "^8.4.7",
84
+ "@storybook/addon-mdx-gfm": "^8.4.7",
85
+ "@storybook/addon-onboarding": "^8.4.7",
86
+ "@storybook/addon-themes": "^8.4.7",
87
+ "@storybook/blocks": "^8.4.7",
88
+ "@storybook/react": "^8.6.14",
89
+ "@storybook/react-vite": "^8.4.7",
90
+ "@storybook/test": "^8.6.14",
91
+ "@svgr/core": "^8.1.0",
92
+ "@svgr/plugin-prettier": "^8.1.0",
93
+ "@svgr/plugin-svgo": "^8.1.0",
94
+ "@types/lodash": "^4.17.17",
95
+ "@types/node": "^20.19.0",
96
+ "@types/react": "^18.3.23",
97
+ "@types/react-date-range": "^1.4.9",
98
+ "@types/react-datepicker": "^6.2.0",
99
+ "@types/react-dom": "^18.3.7",
100
+ "@types/react-slick": "^0.23.13",
101
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
102
+ "@typescript-eslint/parser": "^7.18.0",
103
+ "@vanilla-extract/css-utils": "^0.1.4",
104
+ "@vanilla-extract/recipes": "^0.5.5",
105
+ "@vanilla-extract/vite-plugin": "^4.0.18",
106
+ "@vitejs/plugin-react-swc": "^3.7.2",
107
+ "esbuild-vanilla-image-loader": "^0.1.3",
108
+ "eslint": "^8.57.1",
109
+ "eslint-plugin-react-hooks": "^4.6.2",
110
+ "eslint-plugin-react-refresh": "^0.4.16",
111
+ "eslint-plugin-storybook": "^0.8.0",
112
+ "glob": "^10.4.5",
113
+ "husky": "^9.1.7",
114
+ "next": "^14.1.4",
115
+ "prettier": "3.2.5",
116
+ "react": "^18.3.1",
117
+ "react-dom": "^18.3.1",
118
+ "rollup-plugin-preserve-directives": "^0.4.0",
119
+ "rollup-plugin-svg-import": "^3.0.0",
120
+ "rollup-plugin-svgo": "^2.0.0",
121
+ "storybook": "^8.4.7",
122
+ "typescript": "^5.7.2",
123
+ "typescript-plugin-css-modules": "^5.1.0",
124
+ "vite": "^5.4.11",
125
+ "vite-plugin-dts": "^3.9.1",
126
+ "vite-plugin-lib-inject-css": "^2.1.1",
127
+ "vite-plugin-setting-css-module": "^1.1.4",
128
+ "vite-tsconfig-paths": "^4.3.2"
129
+ },
130
+ "main": "index.js",
131
+ "directories": {
132
+ "lib": "lib"
133
+ },
134
+ "author": "axos-web-dev",
135
+ "license": "ISC"
136
+ }