@npm_leadtech/legal-lib-components 3.7.5 → 3.7.7

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 (26) hide show
  1. package/dist/cjs/index.js +4 -4
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/legal-lib-components.css +64 -3
  4. package/dist/cjs/src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.d.ts +1 -0
  5. package/dist/cjs/src/components/atoms/Tag/Tag.d.ts +4 -0
  6. package/dist/cjs/src/components/atoms/Tag/TagProps.d.ts +5 -0
  7. package/dist/cjs/src/components/atoms/Tag/index.d.ts +2 -0
  8. package/dist/cjs/src/components/atoms/index.d.ts +1 -0
  9. package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +4 -0
  10. package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts +8 -0
  11. package/dist/cjs/src/components/organisms/CardFuncionality/index.d.ts +2 -0
  12. package/dist/cjs/src/components/organisms/index.d.ts +1 -0
  13. package/dist/esm/index.js +4 -4
  14. package/dist/esm/index.js.map +1 -1
  15. package/dist/esm/legal-lib-components.css +64 -3
  16. package/dist/esm/src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.d.ts +1 -0
  17. package/dist/esm/src/components/atoms/Tag/Tag.d.ts +4 -0
  18. package/dist/esm/src/components/atoms/Tag/TagProps.d.ts +5 -0
  19. package/dist/esm/src/components/atoms/Tag/index.d.ts +2 -0
  20. package/dist/esm/src/components/atoms/index.d.ts +1 -0
  21. package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +4 -0
  22. package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts +8 -0
  23. package/dist/esm/src/components/organisms/CardFuncionality/index.d.ts +2 -0
  24. package/dist/esm/src/components/organisms/index.d.ts +1 -0
  25. package/dist/index.d.ts +20 -1
  26. package/package.json +1 -1
@@ -1782,16 +1782,18 @@ h2.react-datepicker__current-month {
1782
1782
  .disclaimer-ratafia__text__text {
1783
1783
  margin-bottom: 0;
1784
1784
  padding: 0; } }
1785
- .disclaimer-ratafia__copyright {
1785
+ .disclaimer-ratafia__copyright, .disclaimer-ratafia__legal-advice {
1786
1786
  display: flex;
1787
1787
  justify-content: start;
1788
1788
  align-items: center;
1789
1789
  gap: 10px;
1790
1790
  align-self: stretch; }
1791
- .disclaimer-ratafia__copyright__text {
1791
+ .disclaimer-ratafia__copyright__text, .disclaimer-ratafia__legal-advice__text {
1792
1792
  color: var(--neutral-neutral-2); }
1793
- .disclaimer-ratafia__copyright__text a {
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;
@@ -1,6 +1,7 @@
1
1
  export interface DisclaimerRatafiaProps {
2
2
  icon?: React.ReactNode;
3
3
  text: string;
4
+ legalAdviceText?: React.ReactNode;
4
5
  copyrightText: React.ReactNode;
5
6
  ctaIcon?: React.ReactNode;
6
7
  ctaTextShowDisclaimer: {
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type TagProps } from './TagProps';
3
+ import './Tag.scss';
4
+ export declare const Tag: React.FC<TagProps>;
@@ -0,0 +1,5 @@
1
+ export interface TagProps {
2
+ id: string;
3
+ icon: React.ReactNode;
4
+ text: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ export * from './Tag';
2
+ export * from './TagProps';
@@ -46,6 +46,7 @@ export * from './ShowMoreBox';
46
46
  export * from './SidemenuTab';
47
47
  export * from './Spinner';
48
48
  export * from './StepRatafiaCard';
49
+ export * from './Tag';
49
50
  export * from './Tagline';
50
51
  export * from './TagRatafiaItem';
51
52
  export * from './TextArea';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { type CardFuncionalityProps } from './CardFuncionalityProps';
3
+ import './CardFuncionality.scss';
4
+ export declare const CardFuncionality: React.FC<CardFuncionalityProps>;
@@ -0,0 +1,8 @@
1
+ import { type ButtonProps, type TagProps } from '../../atoms';
2
+ export interface CardFuncionalityProps {
3
+ icon: React.ReactNode;
4
+ title: string;
5
+ text: string;
6
+ tags: TagProps[];
7
+ cta: ButtonProps;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './CardFuncionality';
2
+ export * from './CardFuncionalityProps';
@@ -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
@@ -184,6 +184,7 @@ declare const Disclaimer: FC<DisclaimerProps>;
184
184
  interface DisclaimerRatafiaProps {
185
185
  icon?: React.ReactNode;
186
186
  text: string;
187
+ legalAdviceText?: React.ReactNode;
187
188
  copyrightText: React.ReactNode;
188
189
  ctaIcon?: React.ReactNode;
189
190
  ctaTextShowDisclaimer: {
@@ -564,6 +565,14 @@ interface StepRatafiaCardProps {
564
565
 
565
566
  declare const StepRatafiaCard: React$1.FC<StepRatafiaCardProps>;
566
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
+
567
576
  interface TaglineProps {
568
577
  text: string;
569
578
  }
@@ -1186,6 +1195,16 @@ interface AsSeeInContentProps {
1186
1195
 
1187
1196
  declare const AsSeeInContent: FC<AsSeeInContentProps>;
1188
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
+
1189
1208
  interface ContactJumbotronProps {
1190
1209
  phoneBoxDesktopProps: PhoneContactBoxDesktopProps;
1191
1210
  emailContactBoxProps: EmailContactBoxProps;
@@ -1659,4 +1678,4 @@ interface UseIsMobileOrTablePropsReturn {
1659
1678
  }
1660
1679
  declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
1661
1680
 
1662
- 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "3.7.5",
3
+ "version": "3.7.7",
4
4
  "dependencies": {
5
5
  "@testing-library/jest-dom": "^6.4.6",
6
6
  "@tippyjs/react": "4.2.6",