@npm_leadtech/legal-lib-components 3.7.6 → 3.7.8
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 +61 -0
- package/dist/cjs/src/components/atoms/Tag/Tag.d.ts +4 -0
- package/dist/cjs/src/components/atoms/Tag/TagProps.d.ts +5 -0
- package/dist/cjs/src/components/atoms/Tag/index.d.ts +2 -0
- package/dist/cjs/src/components/atoms/index.d.ts +1 -0
- package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +4 -0
- package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts +8 -0
- package/dist/cjs/src/components/organisms/CardFuncionality/index.d.ts +2 -0
- package/dist/cjs/src/components/organisms/index.d.ts +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +61 -0
- package/dist/esm/src/components/atoms/Tag/Tag.d.ts +4 -0
- package/dist/esm/src/components/atoms/Tag/TagProps.d.ts +5 -0
- package/dist/esm/src/components/atoms/Tag/index.d.ts +2 -0
- package/dist/esm/src/components/atoms/index.d.ts +1 -0
- package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +4 -0
- package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts +8 -0
- package/dist/esm/src/components/organisms/CardFuncionality/index.d.ts +2 -0
- package/dist/esm/src/components/organisms/index.d.ts +1 -0
- package/dist/index.d.ts +19 -1
- package/package.json +1 -1
|
@@ -1792,6 +1792,8 @@ h2.react-datepicker__current-month {
|
|
|
1792
1792
|
color: var(--neutral-neutral-2); }
|
|
1793
1793
|
.disclaimer-ratafia__copyright__text a, .disclaimer-ratafia__legal-advice__text a {
|
|
1794
1794
|
color: var(--neutral-neutral-2); }
|
|
1795
|
+
.disclaimer-ratafia__legal-advice {
|
|
1796
|
+
margin-bottom: 16px; }
|
|
1795
1797
|
.disclaimer-ratafia__disclaimer-fixed {
|
|
1796
1798
|
border-radius: 5px 5px 0 0;
|
|
1797
1799
|
position: fixed;
|
|
@@ -3199,6 +3201,23 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3199
3201
|
width: 20px;
|
|
3200
3202
|
height: 20px; }
|
|
3201
3203
|
|
|
3204
|
+
.tag {
|
|
3205
|
+
align-items: center;
|
|
3206
|
+
background: var(--secondary-main-light-4);
|
|
3207
|
+
border-radius: 4px;
|
|
3208
|
+
display: flex;
|
|
3209
|
+
gap: 4px;
|
|
3210
|
+
justify-content: center;
|
|
3211
|
+
padding: 4px;
|
|
3212
|
+
width: fit-content; }
|
|
3213
|
+
.tag .icon {
|
|
3214
|
+
display: flex; }
|
|
3215
|
+
.tag .text {
|
|
3216
|
+
color: var(--neutral-neutral-1);
|
|
3217
|
+
font-size: 12px;
|
|
3218
|
+
font-weight: 700;
|
|
3219
|
+
line-height: 16px; }
|
|
3220
|
+
|
|
3202
3221
|
.tagline {
|
|
3203
3222
|
margin-bottom: 1rem; }
|
|
3204
3223
|
|
|
@@ -5167,6 +5186,48 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
5167
5186
|
color: var(--primary-main-light-1);
|
|
5168
5187
|
font-weight: 400 !important; }
|
|
5169
5188
|
|
|
5189
|
+
.card-funcionality {
|
|
5190
|
+
border-radius: 4px;
|
|
5191
|
+
box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1-rgb), 0.2);
|
|
5192
|
+
display: flex;
|
|
5193
|
+
flex-direction: column;
|
|
5194
|
+
gap: 1rem;
|
|
5195
|
+
padding: 1em; }
|
|
5196
|
+
.card-funcionality .content-tags {
|
|
5197
|
+
display: flex;
|
|
5198
|
+
flex-direction: column;
|
|
5199
|
+
gap: 1rem; }
|
|
5200
|
+
.card-funcionality .content-tags .content {
|
|
5201
|
+
display: flex;
|
|
5202
|
+
flex-direction: column;
|
|
5203
|
+
gap: 0.5rem; }
|
|
5204
|
+
.card-funcionality .content-tags .content .header {
|
|
5205
|
+
display: flex;
|
|
5206
|
+
align-items: center;
|
|
5207
|
+
gap: 10px; }
|
|
5208
|
+
.card-funcionality .content-tags .content .header .icon {
|
|
5209
|
+
padding: 2px;
|
|
5210
|
+
border-radius: 4px;
|
|
5211
|
+
background: var(--primary-main-light-5); }
|
|
5212
|
+
.card-funcionality .content-tags .content .header .title {
|
|
5213
|
+
color: var(--neutral-neutral-1);
|
|
5214
|
+
font-weight: 700; }
|
|
5215
|
+
.card-funcionality .content-tags .content .text {
|
|
5216
|
+
overflow: hidden;
|
|
5217
|
+
color: var(--neutral-neutral-1);
|
|
5218
|
+
font-size: 14px;
|
|
5219
|
+
display: -webkit-box;
|
|
5220
|
+
-webkit-line-clamp: 2;
|
|
5221
|
+
line-clamp: 2;
|
|
5222
|
+
-webkit-box-orient: vertical; }
|
|
5223
|
+
.card-funcionality .content-tags .tags {
|
|
5224
|
+
display: flex;
|
|
5225
|
+
gap: 2rem;
|
|
5226
|
+
flex-wrap: wrap; }
|
|
5227
|
+
.card-funcionality .cta-card {
|
|
5228
|
+
align-self: flex-start;
|
|
5229
|
+
margin-top: 0; }
|
|
5230
|
+
|
|
5170
5231
|
.contact__text .contact__text__title {
|
|
5171
5232
|
color: var(--primary-main-dark-1);
|
|
5172
5233
|
margin-bottom: 2rem;
|
|
@@ -2,6 +2,7 @@ export * from './AboutUsContent';
|
|
|
2
2
|
export * from './Accordion';
|
|
3
3
|
export * from './ArticlesList';
|
|
4
4
|
export * from './AsSeeInContent';
|
|
5
|
+
export * from './CardFuncionality';
|
|
5
6
|
export * from './ContactJumbotron';
|
|
6
7
|
export * from './CookiePolicyBar';
|
|
7
8
|
export * from './ErrorContentRatafia';
|
package/dist/index.d.ts
CHANGED
|
@@ -565,6 +565,14 @@ interface StepRatafiaCardProps {
|
|
|
565
565
|
|
|
566
566
|
declare const StepRatafiaCard: React$1.FC<StepRatafiaCardProps>;
|
|
567
567
|
|
|
568
|
+
interface TagProps {
|
|
569
|
+
id: string;
|
|
570
|
+
icon: React.ReactNode;
|
|
571
|
+
text: string;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
declare const Tag: React$1.FC<TagProps>;
|
|
575
|
+
|
|
568
576
|
interface TaglineProps {
|
|
569
577
|
text: string;
|
|
570
578
|
}
|
|
@@ -1187,6 +1195,16 @@ interface AsSeeInContentProps {
|
|
|
1187
1195
|
|
|
1188
1196
|
declare const AsSeeInContent: FC<AsSeeInContentProps>;
|
|
1189
1197
|
|
|
1198
|
+
interface CardFuncionalityProps {
|
|
1199
|
+
icon: React.ReactNode;
|
|
1200
|
+
title: string;
|
|
1201
|
+
text: string;
|
|
1202
|
+
tags: TagProps[];
|
|
1203
|
+
cta: ButtonProps;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
declare const CardFuncionality: React$1.FC<CardFuncionalityProps>;
|
|
1207
|
+
|
|
1190
1208
|
interface ContactJumbotronProps {
|
|
1191
1209
|
phoneBoxDesktopProps: PhoneContactBoxDesktopProps;
|
|
1192
1210
|
emailContactBoxProps: EmailContactBoxProps;
|
|
@@ -1660,4 +1678,4 @@ interface UseIsMobileOrTablePropsReturn {
|
|
|
1660
1678
|
}
|
|
1661
1679
|
declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
|
|
1662
1680
|
|
|
1663
|
-
export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, Accordion, AccordionItem$1 as AccordionItem, ActionButtonHeaderRatafiaCard, ActionButtonHeaderRatafiaCardList, type ActionButtonHeaderRatafiaCardListProps, type ActionButtonHeaderRatafiaCardProps, AddButton, type AddButtonProps, AlsoKnownAs, type AlsoKnownAsProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, AsideMenuSection, type AsideMenuSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, BenefitRatafiaCard, BenefitRatafiaCardList, type BenefitRatafiaCardListProps, type BenefitRatafiaCardProps, BenefitsRatafiaSection, type BenefitsRatafiaSectionProps, 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, ContactJumbotron, type ContactJumbotronProps, ContactSection, type ContactSectionProps, ContactUsPage, type ContactUsPageProps, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, DisclaimerRatafia as DisclaimerKeyFactsResultRatafia, type DisclaimerProps, type DisclaimerRatafiaProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, DocumentTag, type DocumentTagProps, EmailContactBox, type EmailContactBoxProps, ErrorContentRatafia, type ErrorContentRatafiaProps, ErrorRatafiaPage, type ErrorRatafiaPageProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, FaqGroup, type FaqGroupProps, FaqItem, type FaqItemProps, FaqSection, type FaqSectionProps, FaqsPage, type FaqsPageProps, FeatureRatafiaCard, FeatureRatafiaCardList, type FeatureRatafiaCardListProps, type FeatureRatafiaCardProps, FeaturesRatafiaContent, type FeaturesRatafiaContentProps, FeaturesRatafiaSection, type FeaturesRatafiaSectionProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HeaderRatafia, type HeaderRatafiaProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, IconTextInfoSection, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronRatafiaContent, type JumbotronRatafiaContentProps, JumbotronRatafiaSection, type JumbotronRatafiaSectionProps, JumbotronSimplifiedSection, type JumbotronSimplifiedSectionProps, JumbotronStatic, type JumbotronStaticProps, KeyFactCardListRatafia, type KeyFactCardListRatafiaProps, KeyFactRatafiaCard, type KeyFactRatafiaCardProps, KeyFactsLoadingContentRatafia, type KeyFactsLoadingContentRatafiaProps, KeyFactsResultContentRatafia, type KeyFactsResultContentRatafiaProps, type KeyFactsResultProps, KeyFactsResultRatafiaPage, type KeyFactsResultRatafiaPageProps, LanguageSelector, LanguageSelectorMobile, type LanguageSelectorProps, type LatestApplication, LayoutRatafia, type LayoutRatafiaProps, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, type LenguageSelectorItem, ListStepsGetForm, type ListStepsGetFormProps, LoginRatafiaContent, type LoginRatafiaContentProps, LoginRatafiaPage, type LoginRatafiaPageProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MidBannerRatafiaContent, type MidBannerRatafiaContentProps, MidBannerRatafiaSample, type MidBannerRatafiaSampleProps, MidBannerRatafiaSection, type MidBannerRatafiaSectionProps, MobileBottomBar, type MobileBottomBarProps, MoreDocsDesktop, type MoreDocsDesktopProps, MoreDocsItem, type MoreDocsItemProps, MoreDocsMobile, type MoreDocsMobileProps, MoreDocsSection, type MoreDocsSectionProps, NavBarDropDown, type NavBarDropDownProps, NavMenuItem, type NavMenuItemProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PhoneContactBoxDesktop, type PhoneContactBoxDesktopProps, PhoneContactBoxMobile, type PhoneContactBoxMobileProps, PopularDocs, PopularDocsItem, type PopularDocsItemProps, type PopularDocsProps, PricingCard, type PricingCardProps, ProductCategory, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RatafiaLandingPage, type RatafiaLandingPageProps, RemoveButton, type RemoveButtonProps, ReviewKeyFactsResultRatafia, type ReviewKeyFactsResultRatafiaProps, 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, StepRatafiaCard, StepRatafiaCardList, type StepRatafiaCardListProps, type StepRatafiaCardProps, StepsRatafiaContent, type StepsRatafiaContentProps, StepsRatafiaSection, type StepsRatafiaSectionProps, TagRatafiaItem, type TagRatafiaItemProps, Tagline, type TaglineProps, TagsRatafiaList, type TagsRatafiaListProps, 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, TryItRatafiaSection, type TryItRatafiaSectionProps, TryOurFreeLegalBlogsContent, type TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, type TryOurFreeLegalBlogsSectionProps, TryUsSection, type TryUsSectionProps, TypeModulesList, type TypeModulesListProps, UnsubscribePage, type UnsubscribePageProps, UnsubscribeSection, type UnsubscribeSectionProps, UploadRatafiaZone, type UploadRatafiaZoneProps, Video, type VideoProps, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useDispatchDataAccordionItem, useIntersectionObserver, useIsMobileOrTable, useLanguageOptions, useLanguageSelected, useLanguagesSelector, useStateDataAccordionItem };
|
|
1681
|
+
export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, Accordion, AccordionItem$1 as AccordionItem, ActionButtonHeaderRatafiaCard, ActionButtonHeaderRatafiaCardList, type ActionButtonHeaderRatafiaCardListProps, type ActionButtonHeaderRatafiaCardProps, AddButton, type AddButtonProps, AlsoKnownAs, type AlsoKnownAsProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, AsideMenuSection, type AsideMenuSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, BenefitRatafiaCard, BenefitRatafiaCardList, type BenefitRatafiaCardListProps, type BenefitRatafiaCardProps, BenefitsRatafiaSection, type BenefitsRatafiaSectionProps, 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, CardFuncionality, type CardFuncionalityProps, CardPane, type CardPaneInfoProps, type CardPaneProps, Checkbox, type CheckboxProps, ContactBox, type ContactBoxProps, ContactJumbotron, type ContactJumbotronProps, ContactSection, type ContactSectionProps, ContactUsPage, type ContactUsPageProps, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, DisclaimerRatafia as DisclaimerKeyFactsResultRatafia, type DisclaimerProps, type DisclaimerRatafiaProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, DocumentTag, type DocumentTagProps, EmailContactBox, type EmailContactBoxProps, ErrorContentRatafia, type ErrorContentRatafiaProps, ErrorRatafiaPage, type ErrorRatafiaPageProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, FaqGroup, type FaqGroupProps, FaqItem, type FaqItemProps, FaqSection, type FaqSectionProps, FaqsPage, type FaqsPageProps, FeatureRatafiaCard, FeatureRatafiaCardList, type FeatureRatafiaCardListProps, type FeatureRatafiaCardProps, FeaturesRatafiaContent, type FeaturesRatafiaContentProps, FeaturesRatafiaSection, type FeaturesRatafiaSectionProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HeaderRatafia, type HeaderRatafiaProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, IconTextInfoSection, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronRatafiaContent, type JumbotronRatafiaContentProps, JumbotronRatafiaSection, type JumbotronRatafiaSectionProps, JumbotronSimplifiedSection, type JumbotronSimplifiedSectionProps, JumbotronStatic, type JumbotronStaticProps, KeyFactCardListRatafia, type KeyFactCardListRatafiaProps, KeyFactRatafiaCard, type KeyFactRatafiaCardProps, KeyFactsLoadingContentRatafia, type KeyFactsLoadingContentRatafiaProps, KeyFactsResultContentRatafia, type KeyFactsResultContentRatafiaProps, type KeyFactsResultProps, KeyFactsResultRatafiaPage, type KeyFactsResultRatafiaPageProps, LanguageSelector, LanguageSelectorMobile, type LanguageSelectorProps, type LatestApplication, LayoutRatafia, type LayoutRatafiaProps, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, type LenguageSelectorItem, ListStepsGetForm, type ListStepsGetFormProps, LoginRatafiaContent, type LoginRatafiaContentProps, LoginRatafiaPage, type LoginRatafiaPageProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MidBannerRatafiaContent, type MidBannerRatafiaContentProps, MidBannerRatafiaSample, type MidBannerRatafiaSampleProps, MidBannerRatafiaSection, type MidBannerRatafiaSectionProps, MobileBottomBar, type MobileBottomBarProps, MoreDocsDesktop, type MoreDocsDesktopProps, MoreDocsItem, type MoreDocsItemProps, MoreDocsMobile, type MoreDocsMobileProps, MoreDocsSection, type MoreDocsSectionProps, NavBarDropDown, type NavBarDropDownProps, NavMenuItem, type NavMenuItemProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PhoneContactBoxDesktop, type PhoneContactBoxDesktopProps, PhoneContactBoxMobile, type PhoneContactBoxMobileProps, PopularDocs, PopularDocsItem, type PopularDocsItemProps, type PopularDocsProps, PricingCard, type PricingCardProps, ProductCategory, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RatafiaLandingPage, type RatafiaLandingPageProps, RemoveButton, type RemoveButtonProps, ReviewKeyFactsResultRatafia, type ReviewKeyFactsResultRatafiaProps, 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, StepRatafiaCard, StepRatafiaCardList, type StepRatafiaCardListProps, type StepRatafiaCardProps, StepsRatafiaContent, type StepsRatafiaContentProps, StepsRatafiaSection, type StepsRatafiaSectionProps, Tag, type TagProps, TagRatafiaItem, type TagRatafiaItemProps, Tagline, type TaglineProps, TagsRatafiaList, type TagsRatafiaListProps, 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, TryItRatafiaSection, type TryItRatafiaSectionProps, TryOurFreeLegalBlogsContent, type TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, type TryOurFreeLegalBlogsSectionProps, TryUsSection, type TryUsSectionProps, TypeModulesList, type TypeModulesListProps, UnsubscribePage, type UnsubscribePageProps, UnsubscribeSection, type UnsubscribeSectionProps, UploadRatafiaZone, type UploadRatafiaZoneProps, Video, type VideoProps, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useDispatchDataAccordionItem, useIntersectionObserver, useIsMobileOrTable, useLanguageOptions, useLanguageSelected, useLanguagesSelector, useStateDataAccordionItem };
|