@npm_leadtech/legal-lib-components 2.11.18 → 2.12.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 +7 -0
- package/dist/cjs/src/components/atoms/Disclaimer/DisclaimerProps.types.d.ts +1 -2
- package/dist/cjs/src/components/atoms/TrustPilot/TrustPilot.d.ts +5 -0
- package/dist/cjs/src/components/atoms/TrustPilot/TrustPilotProps.types.d.ts +4 -0
- package/dist/cjs/src/components/atoms/TrustPilot/__stories__/Trustpilot.stories.d.ts +6 -0
- package/dist/cjs/src/components/atoms/TrustPilot/index.d.ts +2 -0
- package/dist/cjs/src/components/atoms/index.d.ts +1 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.d.ts +5 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.d.ts +5 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/__stories__/PeopleSayAboutUsSection.stories.d.ts +6 -0
- package/dist/cjs/src/components/sections/PeopleSayAboutUsSection/index.d.ts +2 -0
- package/dist/cjs/src/utils/envVariables.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +7 -0
- package/dist/esm/src/components/atoms/Disclaimer/DisclaimerProps.types.d.ts +1 -2
- package/dist/esm/src/components/atoms/TrustPilot/TrustPilot.d.ts +5 -0
- package/dist/esm/src/components/atoms/TrustPilot/TrustPilotProps.types.d.ts +4 -0
- package/dist/esm/src/components/atoms/TrustPilot/__stories__/Trustpilot.stories.d.ts +6 -0
- package/dist/esm/src/components/atoms/TrustPilot/index.d.ts +2 -0
- package/dist/esm/src/components/atoms/index.d.ts +1 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.d.ts +5 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.d.ts +5 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/__stories__/PeopleSayAboutUsSection.stories.d.ts +6 -0
- package/dist/esm/src/components/sections/PeopleSayAboutUsSection/index.d.ts +2 -0
- package/dist/esm/src/utils/envVariables.d.ts +1 -0
- package/dist/index.d.ts +8 -3
- package/package.json +1 -1
|
@@ -2791,6 +2791,13 @@ html[data-theme='lawdistrict'] .e-button.--primary-3 {
|
|
|
2791
2791
|
.wide-info-bar__wrapper {
|
|
2792
2792
|
padding: 0.5rem 2rem; } }
|
|
2793
2793
|
|
|
2794
|
+
.trustpilot {
|
|
2795
|
+
margin: auto;
|
|
2796
|
+
padding: 0 1rem; }
|
|
2797
|
+
@media (min-width: 720px) {
|
|
2798
|
+
.trustpilot {
|
|
2799
|
+
margin: 3rem auto; } }
|
|
2800
|
+
|
|
2794
2801
|
.article {
|
|
2795
2802
|
display: flex;
|
|
2796
2803
|
flex-flow: row wrap;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type FC } from 'react';
|
|
2
|
+
import { type PeopleSayAboutUsSectionProps } from './PeopleSayAboutUsSectionProps.types';
|
|
3
|
+
import './PeopleSayAboutUsSection.scss';
|
|
4
|
+
declare const PeopleSayAboutUsSection: FC<PeopleSayAboutUsSectionProps>;
|
|
5
|
+
export default PeopleSayAboutUsSection;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import PeopleSayAboutUsSection from '../PeopleSayAboutUsSection';
|
|
3
|
+
declare const meta: Meta<typeof PeopleSayAboutUsSection>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof PeopleSayAboutUsSection>;
|
|
6
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const envVar = "lawdistrict.com";
|
package/dist/index.d.ts
CHANGED
|
@@ -149,9 +149,8 @@ declare const DialogMenuIcon: FC<DialogMenuIconProps>;
|
|
|
149
149
|
interface DisclaimerProps {
|
|
150
150
|
text?: string;
|
|
151
151
|
disclaimerLinks?: boolean;
|
|
152
|
-
|
|
152
|
+
environment?: string;
|
|
153
153
|
givenClass?: string;
|
|
154
|
-
siteUrl?: string;
|
|
155
154
|
}
|
|
156
155
|
|
|
157
156
|
declare const Disclaimer: FC<DisclaimerProps>;
|
|
@@ -434,6 +433,12 @@ interface WideInfoBarProps {
|
|
|
434
433
|
}
|
|
435
434
|
declare const WideInfoBar: FC<WideInfoBarProps>;
|
|
436
435
|
|
|
436
|
+
interface TrustPilotProps {
|
|
437
|
+
children: React.ReactNode;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
declare const Trustpilot: FC<TrustPilotProps>;
|
|
441
|
+
|
|
437
442
|
interface ArticleProps {
|
|
438
443
|
imageUrl: string;
|
|
439
444
|
title: string;
|
|
@@ -773,4 +778,4 @@ declare function useIntersectionObserver({ options, defaultIntersecting }: {
|
|
|
773
778
|
defaultIntersecting?: boolean | undefined;
|
|
774
779
|
}): [RefObject<HTMLDivElement | HTMLHeadElement>, boolean];
|
|
775
780
|
|
|
776
|
-
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, ExpertsSection, ExpertsSectionProps, Feedback, FeedbackProps, FormFaq, FormFaqProps, GoogleButton, GoogleButtonProps, GuidelinesContent, GuidelinesContentProps, GuidelinesSection, GuidelinesSectionProps, HowGetYourFormsSection, HowGetYourFormsSectionProps, IconImage, IconImageProps, ImageStructure, InfoBox, InfoBoxProps, ListStepsGetForm, ListStepsGetFormProps, Logo, LogoProps, 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 };
|
|
781
|
+
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, ExpertsSection, ExpertsSectionProps, Feedback, FeedbackProps, FormFaq, FormFaqProps, GoogleButton, GoogleButtonProps, GuidelinesContent, GuidelinesContentProps, GuidelinesSection, GuidelinesSectionProps, HowGetYourFormsSection, HowGetYourFormsSectionProps, IconImage, IconImageProps, ImageStructure, InfoBox, InfoBoxProps, ListStepsGetForm, ListStepsGetFormProps, Logo, LogoProps, 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, Trustpilot as TrustPilot, TrustPilotProps, TrustworthyWebsites, TrustworthyWebsitesProps, TryOurFreeLegalBlogsContent, TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, TryOurFreeLegalBlogsSectionProps, WideInfoBar, useIntersectionObserver };
|