@npm_leadtech/legal-lib-components 3.7.8 → 3.7.9
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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +20 -10
- package/dist/cjs/src/components/organisms/CardFunctionality/CardFunctionality.d.ts +4 -0
- package/dist/{esm/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts → cjs/src/components/organisms/CardFunctionality/CardFunctionalityProps.d.ts} +2 -1
- package/dist/cjs/src/components/organisms/CardFunctionality/index.d.ts +2 -0
- package/dist/cjs/src/components/organisms/index.d.ts +1 -1
- package/dist/cjs/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.d.ts +4 -0
- package/dist/cjs/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.d.ts +4 -0
- package/dist/cjs/src/components/sections/FunctionalityCardsSection/index.d.ts +2 -0
- package/dist/cjs/src/components/sections/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +20 -10
- package/dist/esm/src/components/organisms/CardFunctionality/CardFunctionality.d.ts +4 -0
- package/dist/{cjs/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts → esm/src/components/organisms/CardFunctionality/CardFunctionalityProps.d.ts} +2 -1
- package/dist/esm/src/components/organisms/CardFunctionality/index.d.ts +2 -0
- package/dist/esm/src/components/organisms/index.d.ts +1 -1
- package/dist/esm/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.d.ts +4 -0
- package/dist/esm/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.d.ts +4 -0
- package/dist/esm/src/components/sections/FunctionalityCardsSection/index.d.ts +2 -0
- package/dist/esm/src/components/sections/index.d.ts +1 -0
- package/dist/index.d.ts +10 -3
- package/package.json +1 -1
- package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +0 -4
- package/dist/cjs/src/components/organisms/CardFuncionality/index.d.ts +0 -2
- package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +0 -4
- package/dist/esm/src/components/organisms/CardFuncionality/index.d.ts +0 -2
|
@@ -5186,33 +5186,34 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
5186
5186
|
color: var(--primary-main-light-1);
|
|
5187
5187
|
font-weight: 400 !important; }
|
|
5188
5188
|
|
|
5189
|
-
.card-
|
|
5189
|
+
.card-functionality {
|
|
5190
5190
|
border-radius: 4px;
|
|
5191
5191
|
box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1-rgb), 0.2);
|
|
5192
5192
|
display: flex;
|
|
5193
5193
|
flex-direction: column;
|
|
5194
5194
|
gap: 1rem;
|
|
5195
5195
|
padding: 1em; }
|
|
5196
|
-
.card-
|
|
5196
|
+
.card-functionality .content-tags {
|
|
5197
5197
|
display: flex;
|
|
5198
5198
|
flex-direction: column;
|
|
5199
5199
|
gap: 1rem; }
|
|
5200
|
-
.card-
|
|
5200
|
+
.card-functionality .content-tags .content {
|
|
5201
5201
|
display: flex;
|
|
5202
5202
|
flex-direction: column;
|
|
5203
5203
|
gap: 0.5rem; }
|
|
5204
|
-
.card-
|
|
5204
|
+
.card-functionality .content-tags .content .header {
|
|
5205
5205
|
display: flex;
|
|
5206
5206
|
align-items: center;
|
|
5207
|
-
gap: 10px;
|
|
5208
|
-
|
|
5207
|
+
gap: 10px;
|
|
5208
|
+
flex-direction: row; }
|
|
5209
|
+
.card-functionality .content-tags .content .header .icon {
|
|
5209
5210
|
padding: 2px;
|
|
5210
5211
|
border-radius: 4px;
|
|
5211
5212
|
background: var(--primary-main-light-5); }
|
|
5212
|
-
.card-
|
|
5213
|
+
.card-functionality .content-tags .content .header .title {
|
|
5213
5214
|
color: var(--neutral-neutral-1);
|
|
5214
5215
|
font-weight: 700; }
|
|
5215
|
-
.card-
|
|
5216
|
+
.card-functionality .content-tags .content .text {
|
|
5216
5217
|
overflow: hidden;
|
|
5217
5218
|
color: var(--neutral-neutral-1);
|
|
5218
5219
|
font-size: 14px;
|
|
@@ -5220,11 +5221,11 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
5220
5221
|
-webkit-line-clamp: 2;
|
|
5221
5222
|
line-clamp: 2;
|
|
5222
5223
|
-webkit-box-orient: vertical; }
|
|
5223
|
-
.card-
|
|
5224
|
+
.card-functionality .content-tags .tags {
|
|
5224
5225
|
display: flex;
|
|
5225
5226
|
gap: 2rem;
|
|
5226
5227
|
flex-wrap: wrap; }
|
|
5227
|
-
.card-
|
|
5228
|
+
.card-functionality .cta-card {
|
|
5228
5229
|
align-self: flex-start;
|
|
5229
5230
|
margin-top: 0; }
|
|
5230
5231
|
|
|
@@ -6064,6 +6065,15 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
6064
6065
|
.features-ratafia-section__wrapper__children img {
|
|
6065
6066
|
width: 100%; }
|
|
6066
6067
|
|
|
6068
|
+
.functionality-cards {
|
|
6069
|
+
display: flex;
|
|
6070
|
+
flex-direction: column;
|
|
6071
|
+
gap: 1rem;
|
|
6072
|
+
margin-bottom: 2rem; }
|
|
6073
|
+
@media (min-width: 960px) {
|
|
6074
|
+
.functionality-cards {
|
|
6075
|
+
flex-direction: row; } }
|
|
6076
|
+
|
|
6067
6077
|
.guidelines-section {
|
|
6068
6078
|
display: flex;
|
|
6069
6079
|
flex-direction: column; }
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { type ButtonProps, type TagProps } from '../../atoms';
|
|
2
|
-
export interface
|
|
2
|
+
export interface CardFunctionalityProps {
|
|
3
3
|
icon: React.ReactNode;
|
|
4
4
|
title: string;
|
|
5
5
|
text: string;
|
|
6
6
|
tags: TagProps[];
|
|
7
7
|
cta: ButtonProps;
|
|
8
|
+
id: string;
|
|
8
9
|
}
|
|
@@ -2,7 +2,7 @@ export * from './AboutUsContent';
|
|
|
2
2
|
export * from './Accordion';
|
|
3
3
|
export * from './ArticlesList';
|
|
4
4
|
export * from './AsSeeInContent';
|
|
5
|
-
export * from './
|
|
5
|
+
export * from './CardFunctionality';
|
|
6
6
|
export * from './ContactJumbotron';
|
|
7
7
|
export * from './CookiePolicyBar';
|
|
8
8
|
export * from './ErrorContentRatafia';
|
|
@@ -7,6 +7,7 @@ export * from './ContactSection';
|
|
|
7
7
|
export * from './ExpertsSection';
|
|
8
8
|
export * from './FaqSection';
|
|
9
9
|
export * from './FeaturesRatafiaSection';
|
|
10
|
+
export * from './FunctionalityCardsSection';
|
|
10
11
|
export * from './GuidelinesSection';
|
|
11
12
|
export * from './HowGetYourFormsSection';
|
|
12
13
|
export * from './JumbotronRatafiaSection';
|
package/dist/index.d.ts
CHANGED
|
@@ -1195,15 +1195,16 @@ interface AsSeeInContentProps {
|
|
|
1195
1195
|
|
|
1196
1196
|
declare const AsSeeInContent: FC<AsSeeInContentProps>;
|
|
1197
1197
|
|
|
1198
|
-
interface
|
|
1198
|
+
interface CardFunctionalityProps {
|
|
1199
1199
|
icon: React.ReactNode;
|
|
1200
1200
|
title: string;
|
|
1201
1201
|
text: string;
|
|
1202
1202
|
tags: TagProps[];
|
|
1203
1203
|
cta: ButtonProps;
|
|
1204
|
+
id: string;
|
|
1204
1205
|
}
|
|
1205
1206
|
|
|
1206
|
-
declare const
|
|
1207
|
+
declare const CardFunctionality: React$1.FC<CardFunctionalityProps>;
|
|
1207
1208
|
|
|
1208
1209
|
interface ContactJumbotronProps {
|
|
1209
1210
|
phoneBoxDesktopProps: PhoneContactBoxDesktopProps;
|
|
@@ -1430,6 +1431,12 @@ interface FeaturesRatafiaSectionProps {
|
|
|
1430
1431
|
|
|
1431
1432
|
declare const FeaturesRatafiaSection: FC<FeaturesRatafiaSectionProps>;
|
|
1432
1433
|
|
|
1434
|
+
interface FunctionalityCardsSectionProps {
|
|
1435
|
+
cards: CardFunctionalityProps[];
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
declare const FunctionalityCardsSection: React$1.FC<FunctionalityCardsSectionProps>;
|
|
1439
|
+
|
|
1433
1440
|
interface GuidelinesSectionProps {
|
|
1434
1441
|
contentGuidelines: GuidelinesContentProps;
|
|
1435
1442
|
}
|
|
@@ -1678,4 +1685,4 @@ interface UseIsMobileOrTablePropsReturn {
|
|
|
1678
1685
|
}
|
|
1679
1686
|
declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
|
|
1680
1687
|
|
|
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,
|
|
1688
|
+
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, CardFunctionality, type CardFunctionalityProps, 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, FunctionalityCardsSection, type FunctionalityCardsSectionProps, 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