@npm_leadtech/legal-lib-components 2.24.3 → 2.25.0
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +69 -186
- package/dist/cjs/src/components/organisms/index.d.ts +3 -4
- package/dist/cjs/src/components/sections/index.d.ts +0 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +69 -186
- package/dist/esm/src/components/organisms/index.d.ts +3 -4
- package/dist/esm/src/components/sections/index.d.ts +0 -1
- package/dist/index.d.ts +21 -37
- package/package.json +1 -1
- package/dist/cjs/src/components/organisms/CookiePolicyBar/CookiePolicyBar.d.ts +0 -4
- package/dist/cjs/src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.d.ts +0 -4
- package/dist/cjs/src/components/organisms/CookiePolicyBar/index.d.ts +0 -2
- package/dist/cjs/src/components/sections/LearnMoreSection/LearnMoreSection.d.ts +0 -5
- package/dist/cjs/src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.d.ts +0 -7
- package/dist/cjs/src/components/sections/LearnMoreSection/index.d.ts +0 -2
- package/dist/esm/src/components/organisms/CookiePolicyBar/CookiePolicyBar.d.ts +0 -4
- package/dist/esm/src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.d.ts +0 -4
- package/dist/esm/src/components/organisms/CookiePolicyBar/index.d.ts +0 -2
- package/dist/esm/src/components/sections/LearnMoreSection/LearnMoreSection.d.ts +0 -5
- package/dist/esm/src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.d.ts +0 -7
- package/dist/esm/src/components/sections/LearnMoreSection/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,15 +873,6 @@ interface WhyLawDistrictSectionProps {
|
|
|
880
873
|
|
|
881
874
|
declare const WhyLawDistrictSection: React$1.FC<WhyLawDistrictSectionProps>;
|
|
882
875
|
|
|
883
|
-
interface LearnMoreSectionProps {
|
|
884
|
-
title: string;
|
|
885
|
-
description: string;
|
|
886
|
-
cta: string;
|
|
887
|
-
faqs: React.ReactNode;
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
declare const LearnMoreSection: FC<LearnMoreSectionProps>;
|
|
891
|
-
|
|
892
876
|
declare function useIntersectionObserver({ options, defaultIntersecting }: {
|
|
893
877
|
options?: {} | undefined;
|
|
894
878
|
defaultIntersecting?: boolean | undefined;
|
|
@@ -901,4 +885,4 @@ interface UseIsMobileOrTablePropsReturn {
|
|
|
901
885
|
}
|
|
902
886
|
declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
|
|
903
887
|
|
|
904
|
-
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,
|
|
888
|
+
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, 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