@npm_leadtech/legal-lib-components 2.23.5 → 2.24.1

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 (24) hide show
  1. package/dist/cjs/index.js +3 -3
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/legal-lib-components.css +144 -111
  4. package/dist/cjs/src/components/organisms/index.d.ts +3 -4
  5. package/dist/cjs/src/components/sections/LearnMoreSection/LearnMoreSection.d.ts +5 -0
  6. package/dist/cjs/src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.d.ts +7 -0
  7. package/dist/cjs/src/components/sections/LearnMoreSection/index.d.ts +2 -0
  8. package/dist/cjs/src/components/sections/index.d.ts +1 -0
  9. package/dist/esm/index.js +2 -2
  10. package/dist/esm/index.js.map +1 -1
  11. package/dist/esm/legal-lib-components.css +144 -111
  12. package/dist/esm/src/components/organisms/index.d.ts +3 -4
  13. package/dist/esm/src/components/sections/LearnMoreSection/LearnMoreSection.d.ts +5 -0
  14. package/dist/esm/src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.d.ts +7 -0
  15. package/dist/esm/src/components/sections/LearnMoreSection/index.d.ts +2 -0
  16. package/dist/esm/src/components/sections/index.d.ts +1 -0
  17. package/dist/index.d.ts +30 -28
  18. package/package.json +1 -1
  19. package/dist/cjs/src/components/organisms/CookiePolicyBar/CookiePolicyBar.d.ts +0 -4
  20. package/dist/cjs/src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.d.ts +0 -4
  21. package/dist/cjs/src/components/organisms/CookiePolicyBar/index.d.ts +0 -2
  22. package/dist/esm/src/components/organisms/CookiePolicyBar/CookiePolicyBar.d.ts +0 -4
  23. package/dist/esm/src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.d.ts +0 -4
  24. package/dist/esm/src/components/organisms/CookiePolicyBar/index.d.ts +0 -2
package/dist/index.d.ts CHANGED
@@ -751,6 +751,26 @@ interface CountDownMessageProps {
751
751
 
752
752
  declare const CountDownMessage: FC<CountDownMessageProps>;
753
753
 
754
+ interface ArticlesListProps {
755
+ articles: ArticleProps[];
756
+ }
757
+
758
+ declare const ArticlesList: FC<ArticlesListProps>;
759
+
760
+ interface ListStepsGetFormProps {
761
+ steps: StepGetFormProps[];
762
+ }
763
+
764
+ declare const ListStepsGetForm: FC<ListStepsGetFormProps>;
765
+
766
+ interface MobileBottomBarProps {
767
+ active?: boolean;
768
+ list?: any[];
769
+ children?: React.ReactNode;
770
+ }
771
+
772
+ declare const MobileBottomBar: FC<MobileBottomBarProps>;
773
+
754
774
  interface AboutUsContentProps {
755
775
  children: React.ReactNode;
756
776
  image: React.ReactNode;
@@ -759,12 +779,6 @@ interface AboutUsContentProps {
759
779
 
760
780
  declare const AboutUsContent: FC<AboutUsContentProps>;
761
781
 
762
- interface ArticlesListProps {
763
- articles: ArticleProps[];
764
- }
765
-
766
- declare const ArticlesList: FC<ArticlesListProps>;
767
-
768
782
  interface AsSeeInContentProps {
769
783
  children: React.ReactNode;
770
784
  trustWorthyImages: TrustworthyWebsitesProps;
@@ -772,13 +786,6 @@ interface AsSeeInContentProps {
772
786
 
773
787
  declare const AsSeeInContent: FC<AsSeeInContentProps>;
774
788
 
775
- interface CookiePolicyBarProps {
776
- clickFunc: () => void;
777
- text: string;
778
- }
779
-
780
- declare const CookiePolicyBar: FC<CookiePolicyBarProps>;
781
-
782
789
  interface GuidelinesContentProps {
783
790
  title: string;
784
791
  image: React.ReactNode;
@@ -787,20 +794,6 @@ interface GuidelinesContentProps {
787
794
 
788
795
  declare const GuidelinesContent: FC<GuidelinesContentProps>;
789
796
 
790
- interface ListStepsGetFormProps {
791
- steps: StepGetFormProps[];
792
- }
793
-
794
- declare const ListStepsGetForm: FC<ListStepsGetFormProps>;
795
-
796
- interface MobileBottomBarProps {
797
- active?: boolean;
798
- list?: any[];
799
- children?: React.ReactNode;
800
- }
801
-
802
- declare const MobileBottomBar: FC<MobileBottomBarProps>;
803
-
804
797
  interface TryOurFreeLegalBlogsContentProps {
805
798
  title: string;
806
799
  image: React.ReactNode;
@@ -880,6 +873,15 @@ interface WhyLawDistrictSectionProps {
880
873
 
881
874
  declare const WhyLawDistrictSection: React$1.FC<WhyLawDistrictSectionProps>;
882
875
 
876
+ interface LearnMoreSectionProps {
877
+ title: string;
878
+ description: string;
879
+ cta: string;
880
+ faqs: React.ReactNode;
881
+ }
882
+
883
+ declare const LearnMoreSection: FC<LearnMoreSectionProps>;
884
+
883
885
  declare function useIntersectionObserver({ options, defaultIntersecting }: {
884
886
  options?: {} | undefined;
885
887
  defaultIntersecting?: boolean | undefined;
@@ -892,4 +894,4 @@ interface UseIsMobileOrTablePropsReturn {
892
894
  }
893
895
  declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
894
896
 
895
- export { AboutUsContent, type AboutUsContentProps, 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, type LatestApplication, 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, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useIntersectionObserver, useIsMobileOrTable };
897
+ export { AboutUsContent, type AboutUsContentProps, 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, 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, type LatestApplication, LearnMoreSection, type LearnMoreSectionProps, 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, 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.23.5",
3
+ "version": "2.24.1",
4
4
  "dependencies": {
5
5
  "@testing-library/jest-dom": "^6.1.4",
6
6
  "@tippyjs/react": "4.2.6",
@@ -1,4 +0,0 @@
1
- import { type FC } from 'react';
2
- import { type CookiePolicyBarProps } from './CookiePolicyBarProps';
3
- import './CookiePolicyBar.scss';
4
- export declare const CookiePolicyBar: FC<CookiePolicyBarProps>;
@@ -1,4 +0,0 @@
1
- export interface CookiePolicyBarProps {
2
- clickFunc: () => void;
3
- text: string;
4
- }
@@ -1,2 +0,0 @@
1
- export * from './CookiePolicyBar';
2
- export * from './CookiePolicyBarProps';
@@ -1,4 +0,0 @@
1
- import { type FC } from 'react';
2
- import { type CookiePolicyBarProps } from './CookiePolicyBarProps';
3
- import './CookiePolicyBar.scss';
4
- export declare const CookiePolicyBar: FC<CookiePolicyBarProps>;
@@ -1,4 +0,0 @@
1
- export interface CookiePolicyBarProps {
2
- clickFunc: () => void;
3
- text: string;
4
- }
@@ -1,2 +0,0 @@
1
- export * from './CookiePolicyBar';
2
- export * from './CookiePolicyBarProps';