@npm_leadtech/legal-lib-components 2.11.1 → 2.11.3
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 +42 -0
- package/dist/cjs/src/components/atoms/ExpertCard/ExpertCard.d.ts +5 -0
- package/dist/cjs/src/components/atoms/ExpertCard/ExpertCardProps.types.d.ts +6 -0
- package/dist/cjs/src/components/atoms/ExpertCard/__stories__/ExpertCard.stories.d.ts +6 -0
- package/dist/cjs/src/components/atoms/ExpertCard/index.d.ts +2 -0
- package/dist/cjs/src/components/atoms/index.d.ts +1 -0
- package/dist/cjs/src/components/molecules/ExpertCardList/ExpertCardList.d.ts +5 -0
- package/dist/cjs/src/components/molecules/ExpertCardList/ExpertCardListProps.types.d.ts +4 -0
- package/dist/cjs/src/components/molecules/ExpertCardList/__stories__/ExpertCardList.stories.d.ts +6 -0
- package/dist/cjs/src/components/molecules/ExpertCardList/index.d.ts +2 -0
- package/dist/cjs/src/components/molecules/index.d.ts +1 -0
- package/dist/cjs/src/components/sections/ExpertsSection/ExpertsSection.d.ts +5 -0
- package/dist/cjs/src/components/sections/ExpertsSection/ExpertsSectionProps.types.d.ts +5 -0
- package/dist/cjs/src/components/sections/ExpertsSection/__stories__/ExpertsSection.stories.d.ts +6 -0
- package/dist/cjs/src/components/sections/ExpertsSection/index.d.ts +2 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +42 -0
- package/dist/esm/src/components/atoms/ExpertCard/ExpertCard.d.ts +5 -0
- package/dist/esm/src/components/atoms/ExpertCard/ExpertCardProps.types.d.ts +6 -0
- package/dist/esm/src/components/atoms/ExpertCard/__stories__/ExpertCard.stories.d.ts +6 -0
- package/dist/esm/src/components/atoms/ExpertCard/index.d.ts +2 -0
- package/dist/esm/src/components/atoms/index.d.ts +1 -0
- package/dist/esm/src/components/molecules/ExpertCardList/ExpertCardList.d.ts +5 -0
- package/dist/esm/src/components/molecules/ExpertCardList/ExpertCardListProps.types.d.ts +4 -0
- package/dist/esm/src/components/molecules/ExpertCardList/__stories__/ExpertCardList.stories.d.ts +6 -0
- package/dist/esm/src/components/molecules/ExpertCardList/index.d.ts +2 -0
- package/dist/esm/src/components/molecules/index.d.ts +1 -0
- package/dist/esm/src/components/sections/ExpertsSection/ExpertsSection.d.ts +5 -0
- package/dist/esm/src/components/sections/ExpertsSection/ExpertsSectionProps.types.d.ts +5 -0
- package/dist/esm/src/components/sections/ExpertsSection/__stories__/ExpertsSection.stories.d.ts +6 -0
- package/dist/esm/src/components/sections/ExpertsSection/index.d.ts +2 -0
- package/dist/index.d.ts +15 -1
- package/package.json +1 -1
|
@@ -1685,6 +1685,43 @@ html[data-theme='uslawdistricts'] {
|
|
|
1685
1685
|
.document-status.--is-new .icon {
|
|
1686
1686
|
margin-right: 1.4rem; }
|
|
1687
1687
|
|
|
1688
|
+
.expert-card {
|
|
1689
|
+
display: flex;
|
|
1690
|
+
align-items: center;
|
|
1691
|
+
justify-content: center;
|
|
1692
|
+
margin-top: 5rem; }
|
|
1693
|
+
.expert-card__box {
|
|
1694
|
+
background-color: white;
|
|
1695
|
+
border-radius: 0.3rem;
|
|
1696
|
+
box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1), 0.2);
|
|
1697
|
+
padding: 7rem 2rem 0 2rem;
|
|
1698
|
+
min-height: 13rem;
|
|
1699
|
+
display: flex;
|
|
1700
|
+
flex-direction: column;
|
|
1701
|
+
align-items: center;
|
|
1702
|
+
justify-content: flex-start;
|
|
1703
|
+
width: 17.625rem;
|
|
1704
|
+
margin-left: 2rem; }
|
|
1705
|
+
.expert-card__image {
|
|
1706
|
+
position: absolute;
|
|
1707
|
+
transform: translateY(-115%); }
|
|
1708
|
+
.expert-card__title {
|
|
1709
|
+
font-family: Inter;
|
|
1710
|
+
font-size: 18px;
|
|
1711
|
+
font-weight: 700;
|
|
1712
|
+
line-height: 24px;
|
|
1713
|
+
letter-spacing: -0.3px;
|
|
1714
|
+
text-align: center;
|
|
1715
|
+
width: 75%; }
|
|
1716
|
+
.expert-card__description {
|
|
1717
|
+
font-family: Inter;
|
|
1718
|
+
font-size: 16px;
|
|
1719
|
+
font-weight: 400;
|
|
1720
|
+
line-height: 22px;
|
|
1721
|
+
letter-spacing: -0.30000001192092896px;
|
|
1722
|
+
text-align: center;
|
|
1723
|
+
width: 75%; }
|
|
1724
|
+
|
|
1688
1725
|
.form-faq {
|
|
1689
1726
|
display: flex;
|
|
1690
1727
|
position: relative;
|
|
@@ -3629,6 +3666,11 @@ html[data-theme='uslawdistricts'] {
|
|
|
3629
3666
|
.trustworthy-websites__image {
|
|
3630
3667
|
margin: 1.5rem; }
|
|
3631
3668
|
|
|
3669
|
+
.expert-card-list {
|
|
3670
|
+
display: flex;
|
|
3671
|
+
flex-direction: row;
|
|
3672
|
+
justify-content: center; }
|
|
3673
|
+
|
|
3632
3674
|
.articles_wrapper {
|
|
3633
3675
|
display: flex;
|
|
3634
3676
|
flex-direction: column;
|
|
@@ -12,6 +12,7 @@ export * from './DialogMenuIcon';
|
|
|
12
12
|
export * from './Disclaimer';
|
|
13
13
|
export * from './Divider';
|
|
14
14
|
export * from './DocumentStatus';
|
|
15
|
+
export * from './ExpertCard';
|
|
15
16
|
export * from './FormFaq';
|
|
16
17
|
export * from './GoogleButton';
|
|
17
18
|
export * from './IconImage';
|
package/dist/index.d.ts
CHANGED
|
@@ -170,6 +170,14 @@ interface DocumentStatusProps {
|
|
|
170
170
|
|
|
171
171
|
declare const DocumentStatus: FC<DocumentStatusProps>;
|
|
172
172
|
|
|
173
|
+
interface ExpertCardProps {
|
|
174
|
+
title: string;
|
|
175
|
+
description: string;
|
|
176
|
+
image: React.ReactNode;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
declare const ExpertCard: FC<ExpertCardProps>;
|
|
180
|
+
|
|
173
181
|
interface FormFaqProps {
|
|
174
182
|
title: string;
|
|
175
183
|
answer: string;
|
|
@@ -640,6 +648,12 @@ interface ImageStructure {
|
|
|
640
648
|
|
|
641
649
|
declare const TrustworthyWebsites: FC<TrustworthyWebsitesProps>;
|
|
642
650
|
|
|
651
|
+
interface ExpertCardListProps {
|
|
652
|
+
contentExpertCard: ExpertCardProps[];
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
declare const ExpertCardList: FC<ExpertCardListProps>;
|
|
656
|
+
|
|
643
657
|
interface ArticlesListProps {
|
|
644
658
|
articles: ArticleProps[];
|
|
645
659
|
}
|
|
@@ -738,4 +752,4 @@ declare function useIntersectionObserver({ options, defaultIntersecting }: {
|
|
|
738
752
|
defaultIntersecting?: boolean | undefined;
|
|
739
753
|
}): [RefObject<HTMLDivElement | HTMLHeadElement>, boolean];
|
|
740
754
|
|
|
741
|
-
export { AboutUsContent, AboutUsContentProps, AboutUsSection, AboutUsSectionProps, AddButton, AddButtonProps, Article, ArticleProps, ArticlesList, ArticlesListProps, AsSeeInContent, AsSeeInContentProps, AsSeeInSection, AsSeeInSectionProps, BaseBox, BaseBoxList, BaseBoxListProps, BaseBoxProps, BillCard, BillCardProps, BlogSection, BlogSectionProps, BottomFixedBar, BottomFixedBarProps, BottomOverlay, BottomOverlayMenu, BottomOverlayMenuProps, BottomOverlayProps, BoxForm, BoxFormProps, BreadcrumItem, BreadcrumItemProps, Breadcrumb, BreadcrumbProps, Button, ButtonIcon, ButtonIconProps, ButtonProps, CardPane, CardPaneInfoProps, CardPaneProps, Checkbox, CheckboxProps, ContactBox, ContactBoxProps, DatePickerCustom, DatePickerCustomProps, DialogMenuIcon, DialogMenuIconProps, Disclaimer, DisclaimerProps, Divider, DividerProps, DocumentStatus, DocumentStatusProps, Feedback, FeedbackProps, FormFaq, FormFaqProps, GoogleButton, GoogleButtonProps, GuidelinesContent, GuidelinesContentProps, GuidelinesSection, GuidelinesSectionProps, HowGetYourFormsSection, HowGetYourFormsSectionProps, IconImage, IconImageProps, ImageStructure, InfoBox, InfoBoxProps, ListStepsGetForm, ListStepsGetFormProps, LogoText, LogoTextProps, MenuItemProps, MenuItems, MenuItemsSection, MenuItemsSectionProps, Message, MessageProps, MobileBottomBar, MobileBottomBarProps, NavBarDropDown, NavBarDropDownProps, Pagination, PaginationProps, PaypalButton, PaypalButtonProps, PricingCard, PricingCardProps, ProgressBar, ProgressBarProps, Radio, RadioProps, RemoveButton, RemoveButtonProps, RichTextInner, RichTextInnerProps, RichTextMedia, RichTextStrapi, RichTextStrapiProps, SearchSelect, SearchSelectProps, SideMenuTabProps, SidemenuTab, Snackbar, SnackbarProps, Spinner, SpinnerProps, StepGetForm, StepGetFormProps, TextArea, TextAreaProps, TextInput, TextInputProps, Toggle, ToggleProps, Tooltip, TooltipMenu, TooltipMenuProps, TooltipProps, TopBar, TopBarMobile, TopBarProps, TrustworthyWebsites, TrustworthyWebsitesProps, TryOurFreeLegalBlogsContent, TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, TryOurFreeLegalBlogsSectionProps, WideInfoBar, useIntersectionObserver };
|
|
755
|
+
export { AboutUsContent, AboutUsContentProps, AboutUsSection, AboutUsSectionProps, AddButton, AddButtonProps, Article, ArticleProps, ArticlesList, ArticlesListProps, AsSeeInContent, AsSeeInContentProps, AsSeeInSection, AsSeeInSectionProps, BaseBox, BaseBoxList, BaseBoxListProps, BaseBoxProps, BillCard, BillCardProps, BlogSection, BlogSectionProps, BottomFixedBar, BottomFixedBarProps, BottomOverlay, BottomOverlayMenu, BottomOverlayMenuProps, BottomOverlayProps, BoxForm, BoxFormProps, BreadcrumItem, BreadcrumItemProps, Breadcrumb, BreadcrumbProps, Button, ButtonIcon, ButtonIconProps, ButtonProps, CardPane, CardPaneInfoProps, CardPaneProps, Checkbox, CheckboxProps, ContactBox, ContactBoxProps, DatePickerCustom, DatePickerCustomProps, DialogMenuIcon, DialogMenuIconProps, Disclaimer, DisclaimerProps, Divider, DividerProps, DocumentStatus, DocumentStatusProps, ExpertCard, ExpertCardList, ExpertCardListProps, ExpertCardProps, Feedback, FeedbackProps, FormFaq, FormFaqProps, GoogleButton, GoogleButtonProps, GuidelinesContent, GuidelinesContentProps, GuidelinesSection, GuidelinesSectionProps, HowGetYourFormsSection, HowGetYourFormsSectionProps, IconImage, IconImageProps, ImageStructure, InfoBox, InfoBoxProps, ListStepsGetForm, ListStepsGetFormProps, LogoText, LogoTextProps, MenuItemProps, MenuItems, MenuItemsSection, MenuItemsSectionProps, Message, MessageProps, MobileBottomBar, MobileBottomBarProps, NavBarDropDown, NavBarDropDownProps, Pagination, PaginationProps, PaypalButton, PaypalButtonProps, PricingCard, PricingCardProps, ProgressBar, ProgressBarProps, Radio, RadioProps, RemoveButton, RemoveButtonProps, RichTextInner, RichTextInnerProps, RichTextMedia, RichTextStrapi, RichTextStrapiProps, SearchSelect, SearchSelectProps, SideMenuTabProps, SidemenuTab, Snackbar, SnackbarProps, Spinner, SpinnerProps, StepGetForm, StepGetFormProps, TextArea, TextAreaProps, TextInput, TextInputProps, Toggle, ToggleProps, Tooltip, TooltipMenu, TooltipMenuProps, TooltipProps, TopBar, TopBarMobile, TopBarProps, TrustworthyWebsites, TrustworthyWebsitesProps, TryOurFreeLegalBlogsContent, TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, TryOurFreeLegalBlogsSectionProps, WideInfoBar, useIntersectionObserver };
|