@npm_leadtech/legal-lib-components 2.32.2 → 2.32.3

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 (61) hide show
  1. package/README.md +4 -2
  2. package/dist/cjs/images/componentsSvg/ChevronExpandLess.d.ts +2 -0
  3. package/dist/cjs/images/componentsSvg/ChevronExpandMore.d.ts +2 -0
  4. package/dist/cjs/index.js +3 -3
  5. package/dist/cjs/index.js.map +1 -1
  6. package/dist/cjs/legal-lib-components.css +281 -108
  7. package/dist/cjs/src/components/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +2 -0
  8. package/dist/cjs/src/components/atoms/ShowMoreBox/ShowMoreBox.d.ts +4 -0
  9. package/dist/cjs/src/components/atoms/ShowMoreBox/ShowMoreBoxProps.d.ts +6 -0
  10. package/dist/cjs/src/components/atoms/ShowMoreBox/index.d.ts +2 -0
  11. package/dist/cjs/src/components/atoms/index.d.ts +1 -0
  12. package/dist/cjs/src/components/molecules/FaqItem/FaqItem.d.ts +4 -0
  13. package/dist/cjs/src/components/molecules/FaqItem/FaqItemProps.d.ts +8 -0
  14. package/dist/cjs/src/components/molecules/FaqItem/index.d.ts +2 -0
  15. package/dist/cjs/src/components/molecules/index.d.ts +4 -3
  16. package/dist/cjs/src/components/organisms/FaqGroup/FaqGroup.d.ts +4 -0
  17. package/dist/cjs/src/components/organisms/FaqGroup/FaqGroupProps.d.ts +10 -0
  18. package/dist/cjs/src/components/organisms/FaqGroup/index.d.ts +2 -0
  19. package/dist/cjs/src/components/organisms/index.d.ts +1 -0
  20. package/dist/cjs/src/components/pages/FaqsPage/FaqsPage.d.ts +4 -0
  21. package/dist/cjs/src/components/pages/FaqsPage/FaqsPageProps.d.ts +7 -0
  22. package/dist/cjs/src/components/pages/FaqsPage/index.d.ts +2 -0
  23. package/dist/cjs/src/components/pages/index.d.ts +1 -0
  24. package/dist/cjs/src/components/sections/AsideMenuSection/AsideMenuSection.d.ts +4 -0
  25. package/dist/cjs/src/components/sections/AsideMenuSection/AsideMenuSectionProps.d.ts +9 -0
  26. package/dist/cjs/src/components/sections/AsideMenuSection/index.d.ts +2 -0
  27. package/dist/cjs/src/components/sections/FaqSection/FaqSection.d.ts +4 -0
  28. package/dist/cjs/src/components/sections/FaqSection/FaqSectionProps.d.ts +4 -0
  29. package/dist/cjs/src/components/sections/FaqSection/index.d.ts +2 -0
  30. package/dist/cjs/src/components/sections/index.d.ts +2 -0
  31. package/dist/esm/images/componentsSvg/ChevronExpandLess.d.ts +2 -0
  32. package/dist/esm/images/componentsSvg/ChevronExpandMore.d.ts +2 -0
  33. package/dist/esm/index.js +3 -3
  34. package/dist/esm/index.js.map +1 -1
  35. package/dist/esm/legal-lib-components.css +281 -108
  36. package/dist/esm/src/components/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +2 -0
  37. package/dist/esm/src/components/atoms/ShowMoreBox/ShowMoreBox.d.ts +4 -0
  38. package/dist/esm/src/components/atoms/ShowMoreBox/ShowMoreBoxProps.d.ts +6 -0
  39. package/dist/esm/src/components/atoms/ShowMoreBox/index.d.ts +2 -0
  40. package/dist/esm/src/components/atoms/index.d.ts +1 -0
  41. package/dist/esm/src/components/molecules/FaqItem/FaqItem.d.ts +4 -0
  42. package/dist/esm/src/components/molecules/FaqItem/FaqItemProps.d.ts +8 -0
  43. package/dist/esm/src/components/molecules/FaqItem/index.d.ts +2 -0
  44. package/dist/esm/src/components/molecules/index.d.ts +4 -3
  45. package/dist/esm/src/components/organisms/FaqGroup/FaqGroup.d.ts +4 -0
  46. package/dist/esm/src/components/organisms/FaqGroup/FaqGroupProps.d.ts +10 -0
  47. package/dist/esm/src/components/organisms/FaqGroup/index.d.ts +2 -0
  48. package/dist/esm/src/components/organisms/index.d.ts +1 -0
  49. package/dist/esm/src/components/pages/FaqsPage/FaqsPage.d.ts +4 -0
  50. package/dist/esm/src/components/pages/FaqsPage/FaqsPageProps.d.ts +7 -0
  51. package/dist/esm/src/components/pages/FaqsPage/index.d.ts +2 -0
  52. package/dist/esm/src/components/pages/index.d.ts +1 -0
  53. package/dist/esm/src/components/sections/AsideMenuSection/AsideMenuSection.d.ts +4 -0
  54. package/dist/esm/src/components/sections/AsideMenuSection/AsideMenuSectionProps.d.ts +9 -0
  55. package/dist/esm/src/components/sections/AsideMenuSection/index.d.ts +2 -0
  56. package/dist/esm/src/components/sections/FaqSection/FaqSection.d.ts +4 -0
  57. package/dist/esm/src/components/sections/FaqSection/FaqSectionProps.d.ts +4 -0
  58. package/dist/esm/src/components/sections/FaqSection/index.d.ts +2 -0
  59. package/dist/esm/src/components/sections/index.d.ts +2 -0
  60. package/dist/index.d.ts +81 -24
  61. package/package.json +1 -1
@@ -1,6 +1,8 @@
1
1
  import { type RichTextMedia } from './RichTextMedia';
2
2
  export interface RichTextStrapiProps {
3
3
  html?: string;
4
+ showMoreTextShortResponse?: string;
5
+ showMoreTextCompleteResponse?: string;
4
6
  className?: string;
5
7
  medias?: RichTextMedia[];
6
8
  }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type ShowMoreBoxProps } from './ShowMoreBoxProps';
3
+ import './ShowMoreBox.scss';
4
+ export declare const ShowMoreBox: React.FC<ShowMoreBoxProps>;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export interface ShowMoreBoxProps {
3
+ children: React.ReactNode;
4
+ collapsedButtonText?: string;
5
+ expandedButtonText?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ export { ShowMoreBox } from './ShowMoreBox';
2
+ export type { ShowMoreBoxProps } from './ShowMoreBoxProps';
@@ -31,6 +31,7 @@ export * from './RichTextInner';
31
31
  export * from './RichTextStrapi';
32
32
  export * from './SearchSelect';
33
33
  export * from './SidemenuTab';
34
+ export * from './ShowMoreBox';
34
35
  export * from './Spinner';
35
36
  export * from './TextArea';
36
37
  export * from './Toggle';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type FaqItemProps } from './FaqItemProps';
3
+ import './FaqItem.scss';
4
+ export declare const FaqItem: React.FC<FaqItemProps>;
@@ -0,0 +1,8 @@
1
+ import type React from 'react';
2
+ export interface FaqItemProps {
3
+ id: string;
4
+ slug: string;
5
+ title: string;
6
+ children: React.ReactNode;
7
+ index?: number;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './FaqItem';
2
+ export * from './FaqItemProps';
@@ -6,7 +6,11 @@ export * from './BoxForm';
6
6
  export * from './Breadcrumb';
7
7
  export * from './ContactBox';
8
8
  export * from './ContinueEditingBanner';
9
+ export * from './CountDownMessage';
10
+ export * from './ExpertCardList';
11
+ export * from './FaqItem';
9
12
  export * from './Feedback';
13
+ export * from './FreeDocModalContent';
10
14
  export * from './MenuItemsSection';
11
15
  export * from './NavBarDropDown';
12
16
  export * from './Pagination';
@@ -16,6 +20,3 @@ export * from './StepGetForm';
16
20
  export * from './TextInput';
17
21
  export * from './TooltipMenu';
18
22
  export * from './TrustworthyWebsites';
19
- export * from './ExpertCardList';
20
- export * from './FreeDocModalContent';
21
- export * from './CountDownMessage';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type FaqGroupProps } from './FaqGroupProps';
3
+ import './FaqGroup.scss';
4
+ export declare const FaqGroup: React.FC<FaqGroupProps>;
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import { type FaqItemProps } from '../../molecules';
3
+ export interface FaqGroupProps {
4
+ id: string;
5
+ title: string;
6
+ slug: string;
7
+ faqs: FaqItemProps[];
8
+ hasAllClosed?: boolean;
9
+ children?: React.ReactNode;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './FaqGroup';
2
+ export * from './FaqGroupProps';
@@ -2,6 +2,7 @@ export * from './AboutUsContent';
2
2
  export * from './ArticlesList';
3
3
  export * from './AsSeeInContent';
4
4
  export * from './CookiePolicyBar';
5
+ export * from './FaqGroup';
5
6
  export * from './GuidelinesContent';
6
7
  export * from './ListStepsGetForm';
7
8
  export * from './MobileBottomBar';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type FaqsPageProps } from './FaqsPageProps';
3
+ import './FaqsPage.scss';
4
+ export declare const FaqsPage: React.FC<FaqsPageProps>;
@@ -0,0 +1,7 @@
1
+ import { type AsideMenuSectionProps, type FaqSectionProps } from '../../sections';
2
+ export interface FaqsPageProps {
3
+ title: string;
4
+ subtitle: string;
5
+ asideMenuSectionProps: AsideMenuSectionProps;
6
+ faqSectionProps: FaqSectionProps;
7
+ }
@@ -0,0 +1,2 @@
1
+ export * from './FaqsPage';
2
+ export * from './FaqsPageProps';
@@ -1,3 +1,4 @@
1
1
  export * from './AboutUsPage';
2
+ export * from './FaqsPage';
2
3
  export * from './LegalPage';
3
4
  export * from './UnsubscribePage';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type AsideMenuSectionProps } from './AsideMenuSectionProps';
3
+ import './AsideMenuSection.scss';
4
+ export declare const AsideMenuSection: React.FC<AsideMenuSectionProps>;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ export interface AsideMenuSectionProps {
3
+ items: Array<{
4
+ id: string;
5
+ text: string;
6
+ slug: string;
7
+ }>;
8
+ onClickHandler?: React.MouseEventHandler<HTMLLIElement>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './AsideMenuSection';
2
+ export * from './AsideMenuSectionProps';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type FaqSectionProps } from './FaqSectionProps';
3
+ import './FaqSection.scss';
4
+ export declare const FaqSection: React.FC<FaqSectionProps>;
@@ -0,0 +1,4 @@
1
+ import { type FaqGroupProps } from '../../organisms';
2
+ export interface FaqSectionProps {
3
+ groups: FaqGroupProps[];
4
+ }
@@ -0,0 +1,2 @@
1
+ export * from './FaqSection';
2
+ export * from './FaqSectionProps';
@@ -1,7 +1,9 @@
1
1
  export * from './AboutUsSection';
2
+ export * from './AsideMenuSection';
2
3
  export * from './AsSeeInSection';
3
4
  export * from './BlogSection';
4
5
  export * from './ExpertsSection';
6
+ export * from './FaqSection';
5
7
  export * from './GuidelinesSection';
6
8
  export * from './HowGetYourFormsSection';
7
9
  export * from './LegalSection';
package/dist/index.d.ts CHANGED
@@ -343,6 +343,8 @@ interface RichTextMedia {
343
343
 
344
344
  interface RichTextStrapiProps {
345
345
  html?: string;
346
+ showMoreTextShortResponse?: string;
347
+ showMoreTextCompleteResponse?: string;
346
348
  className?: string;
347
349
  medias?: RichTextMedia[];
348
350
  }
@@ -393,6 +395,14 @@ interface SideMenuTabProps {
393
395
 
394
396
  declare const SidemenuTab: React$1.FC<SideMenuTabProps>;
395
397
 
398
+ interface ShowMoreBoxProps {
399
+ children: React.ReactNode;
400
+ collapsedButtonText?: string;
401
+ expandedButtonText?: string;
402
+ }
403
+
404
+ declare const ShowMoreBox: React$1.FC<ShowMoreBoxProps>;
405
+
396
406
  interface SpinnerProps {
397
407
  className?: string;
398
408
  big?: boolean;
@@ -577,6 +587,29 @@ interface ContinueEditingBannerProps {
577
587
 
578
588
  declare const ContinueEditingBanner: React$1.FC<ContinueEditingBannerProps>;
579
589
 
590
+ interface CountDownMessageProps {
591
+ text: string | React.ReactNode;
592
+ time?: string;
593
+ }
594
+
595
+ declare const CountDownMessage: FC<CountDownMessageProps>;
596
+
597
+ interface ExpertCardListProps {
598
+ contentExpertCard: ExpertCardProps[];
599
+ }
600
+
601
+ declare const ExpertCardList: FC<ExpertCardListProps>;
602
+
603
+ interface FaqItemProps {
604
+ id: string;
605
+ slug: string;
606
+ title: string;
607
+ children: React$1.ReactNode;
608
+ index?: number;
609
+ }
610
+
611
+ declare const FaqItem: React$1.FC<FaqItemProps>;
612
+
580
613
  interface FeedbackProps {
581
614
  theme?: 'success' | 'error';
582
615
  title?: string;
@@ -593,6 +626,16 @@ interface FeedbackProps {
593
626
 
594
627
  declare const Feedback: FC<FeedbackProps>;
595
628
 
629
+ interface FreeDocModalContentProps {
630
+ bodyTitle: string;
631
+ bodyText: string;
632
+ closeModal: () => void;
633
+ clickGoToFormInApp: (arg0: null, arg1: string, arg2?: boolean) => void;
634
+ isActiveDocument: boolean;
635
+ }
636
+
637
+ declare const FreeDocModalContent: FC<FreeDocModalContentProps>;
638
+
596
639
  interface MenuItemsSectionProps {
597
640
  icon?: React.ReactNode;
598
641
  title?: string;
@@ -727,29 +770,6 @@ interface ImageStructure {
727
770
 
728
771
  declare const TrustworthyWebsites: FC<TrustworthyWebsitesProps>;
729
772
 
730
- interface ExpertCardListProps {
731
- contentExpertCard: ExpertCardProps[];
732
- }
733
-
734
- declare const ExpertCardList: FC<ExpertCardListProps>;
735
-
736
- interface FreeDocModalContentProps {
737
- bodyTitle: string;
738
- bodyText: string;
739
- closeModal: () => void;
740
- clickGoToFormInApp: (arg0: null, arg1: string, arg2?: boolean) => void;
741
- isActiveDocument: boolean;
742
- }
743
-
744
- declare const FreeDocModalContent: FC<FreeDocModalContentProps>;
745
-
746
- interface CountDownMessageProps {
747
- text: string | React.ReactNode;
748
- time?: string;
749
- }
750
-
751
- declare const CountDownMessage: FC<CountDownMessageProps>;
752
-
753
773
  interface AboutUsContentProps {
754
774
  children: React.ReactNode;
755
775
  image: React.ReactNode;
@@ -778,6 +798,17 @@ interface CookiePolicyBarProps {
778
798
 
779
799
  declare const CookiePolicyBar: FC<CookiePolicyBarProps>;
780
800
 
801
+ interface FaqGroupProps {
802
+ id: string;
803
+ title: string;
804
+ slug: string;
805
+ faqs: FaqItemProps[];
806
+ hasAllClosed?: boolean;
807
+ children?: React.ReactNode;
808
+ }
809
+
810
+ declare const FaqGroup: React$1.FC<FaqGroupProps>;
811
+
781
812
  interface GuidelinesContentProps {
782
813
  title: string;
783
814
  image: React.ReactNode;
@@ -816,6 +847,17 @@ interface AboutUsSectionProps {
816
847
 
817
848
  declare const AboutUsSection: FC<AboutUsSectionProps>;
818
849
 
850
+ interface AsideMenuSectionProps {
851
+ items: Array<{
852
+ id: string;
853
+ text: string;
854
+ slug: string;
855
+ }>;
856
+ onClickHandler?: React.MouseEventHandler<HTMLLIElement>;
857
+ }
858
+
859
+ declare const AsideMenuSection: React$1.FC<AsideMenuSectionProps>;
860
+
819
861
  interface AsSeeInSectionProps {
820
862
  title: string;
821
863
  contentAsSeeIn: AsSeeInContentProps;
@@ -838,6 +880,12 @@ interface ExpertsSectionProps {
838
880
 
839
881
  declare const ExpertsSection: FC<ExpertsSectionProps>;
840
882
 
883
+ interface FaqSectionProps {
884
+ groups: FaqGroupProps[];
885
+ }
886
+
887
+ declare const FaqSection: React$1.FC<FaqSectionProps>;
888
+
841
889
  interface GuidelinesSectionProps {
842
890
  contentGuidelines: GuidelinesContentProps;
843
891
  }
@@ -921,6 +969,15 @@ interface AboutUsPageProps {
921
969
 
922
970
  declare const AboutUsPage: React$1.FC<AboutUsPageProps>;
923
971
 
972
+ interface FaqsPageProps {
973
+ title: string;
974
+ subtitle: string;
975
+ asideMenuSectionProps: AsideMenuSectionProps;
976
+ faqSectionProps: FaqSectionProps;
977
+ }
978
+
979
+ declare const FaqsPage: React$1.FC<FaqsPageProps>;
980
+
924
981
  interface LegalPageProps {
925
982
  jumbotron: JumbotronStaticProps;
926
983
  legalSection: LegalSectionProps;
@@ -947,4 +1004,4 @@ interface UseIsMobileOrTablePropsReturn {
947
1004
  }
948
1005
  declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
949
1006
 
950
- export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, AddButton, type AddButtonProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, BillCard, type BillCardProps, BlogSection, type BlogSectionProps, BottomFixedBar, type BottomFixedBarProps, BottomOverlay, BottomOverlayMenu, type BottomOverlayMenuProps, type BottomOverlayProps, BoxForm, type BoxFormProps, BreadcrumItem, type BreadcrumItemProps, Breadcrumb, type BreadcrumbProps, Button, ButtonIcon, type ButtonIconProps, type ButtonProps, CardPane, type CardPaneInfoProps, type CardPaneProps, Checkbox, type CheckboxProps, ContactBox, type ContactBoxProps, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, type DisclaimerProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronStatic, type JumbotronStaticProps, type LatestApplication, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, ListStepsGetForm, type ListStepsGetFormProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MobileBottomBar, type MobileBottomBarProps, NavBarDropDown, type NavBarDropDownProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PricingCard, type PricingCardProps, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RemoveButton, type RemoveButtonProps, RichTextInner, type RichTextInnerProps, type RichTextMedia, RichTextStrapi, type RichTextStrapiProps, SearchSelect, type SearchSelectProps, type SideMenuTabProps, SidemenuTab, Snackbar, type SnackbarProps, Spinner, type SpinnerProps, StepGetForm, type StepGetFormProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, Toggle, type ToggleProps, Tooltip, TooltipMenu, type TooltipMenuProps, type TooltipProps, TopBar, TopBarMobile, type TopBarProps, Trustpilot as TrustPilot, type TrustPilotProps, TrustworthyWebsites, type TrustworthyWebsitesProps, TryOurFreeLegalBlogsContent, type TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, type TryOurFreeLegalBlogsSectionProps, TryUsSection, type TryUsSectionProps, UnsubscribePage, type UnsubscribePageProps, UnsubscribeSection, type UnsubscribeSectionProps, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useIntersectionObserver, useIsMobileOrTable };
1007
+ export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, AddButton, type AddButtonProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, AsideMenuSection, type AsideMenuSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, BillCard, type BillCardProps, BlogSection, type BlogSectionProps, BottomFixedBar, type BottomFixedBarProps, BottomOverlay, BottomOverlayMenu, type BottomOverlayMenuProps, type BottomOverlayProps, BoxForm, type BoxFormProps, BreadcrumItem, type BreadcrumItemProps, Breadcrumb, type BreadcrumbProps, Button, ButtonIcon, type ButtonIconProps, type ButtonProps, CardPane, type CardPaneInfoProps, type CardPaneProps, Checkbox, type CheckboxProps, ContactBox, type ContactBoxProps, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, type DisclaimerProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, FaqGroup, type FaqGroupProps, FaqItem, type FaqItemProps, FaqSection, type FaqSectionProps, FaqsPage, type FaqsPageProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronStatic, type JumbotronStaticProps, type LatestApplication, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, ListStepsGetForm, type ListStepsGetFormProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MobileBottomBar, type MobileBottomBarProps, NavBarDropDown, type NavBarDropDownProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PricingCard, type PricingCardProps, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RemoveButton, type RemoveButtonProps, RichTextInner, type RichTextInnerProps, type RichTextMedia, RichTextStrapi, type RichTextStrapiProps, SearchSelect, type SearchSelectProps, ShowMoreBox, type ShowMoreBoxProps, type SideMenuTabProps, SidemenuTab, Snackbar, type SnackbarProps, Spinner, type SpinnerProps, StepGetForm, type StepGetFormProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, Toggle, type ToggleProps, Tooltip, TooltipMenu, type TooltipMenuProps, type TooltipProps, TopBar, TopBarMobile, type TopBarProps, Trustpilot as TrustPilot, type TrustPilotProps, TrustworthyWebsites, type TrustworthyWebsitesProps, TryOurFreeLegalBlogsContent, type TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, type TryOurFreeLegalBlogsSectionProps, TryUsSection, type TryUsSectionProps, UnsubscribePage, type UnsubscribePageProps, UnsubscribeSection, type UnsubscribeSectionProps, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useIntersectionObserver, useIsMobileOrTable };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "2.32.2",
3
+ "version": "2.32.3",
4
4
  "dependencies": {
5
5
  "@testing-library/jest-dom": "^6.1.4",
6
6
  "@tippyjs/react": "4.2.6",