@npm_leadtech/legal-lib-components 2.31.7 → 2.32.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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +0 -4
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformation.d.ts +1 -1
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +5 -0
- package/dist/cjs/src/components/atoms/MessageInformation/index.d.ts +1 -1
- package/dist/cjs/src/components/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +0 -2
- package/dist/cjs/src/components/atoms/index.d.ts +0 -1
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessage.d.ts +1 -1
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +5 -0
- package/dist/cjs/src/components/molecules/CountDownMessage/index.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +0 -4
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformation.d.ts +1 -1
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +5 -0
- package/dist/esm/src/components/atoms/MessageInformation/index.d.ts +1 -1
- package/dist/esm/src/components/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +0 -2
- package/dist/esm/src/components/atoms/index.d.ts +0 -1
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessage.d.ts +1 -1
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +5 -0
- package/dist/esm/src/components/molecules/CountDownMessage/index.d.ts +1 -1
- package/dist/index.d.ts +3 -12
- package/package.json +1 -1
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformation.types.d.ts +0 -4
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/ShowMoreStrapi.d.ts +0 -4
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/ShowMoreStrapiProps.d.ts +0 -5
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/index.d.ts +0 -2
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessage.types.d.ts +0 -4
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformation.types.d.ts +0 -4
- package/dist/esm/src/components/atoms/ShowMoreStrapi/ShowMoreStrapi.d.ts +0 -4
- package/dist/esm/src/components/atoms/ShowMoreStrapi/ShowMoreStrapiProps.d.ts +0 -5
- package/dist/esm/src/components/atoms/ShowMoreStrapi/index.d.ts +0 -2
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessage.types.d.ts +0 -4
|
@@ -2957,10 +2957,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2957
2957
|
.message-information__text__time {
|
|
2958
2958
|
font-weight: bold; }
|
|
2959
2959
|
|
|
2960
|
-
.show-more-strapi ul li,
|
|
2961
|
-
.show-more-strapi ol li {
|
|
2962
|
-
margin-bottom: 1rem; }
|
|
2963
|
-
|
|
2964
2960
|
.article {
|
|
2965
2961
|
display: flex;
|
|
2966
2962
|
flex-flow: row wrap;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type FC } from 'react';
|
|
2
|
-
import { type MessageInformationProps } from './
|
|
2
|
+
import { type MessageInformationProps } from './MessageInformationProps.types';
|
|
3
3
|
import './MessageInformation.scss';
|
|
4
4
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
5
5
|
export default MessageInformation;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as MessageInformation } from './MessageInformation';
|
|
2
|
-
export { type MessageInformationProps } from './
|
|
2
|
+
export { type MessageInformationProps } from './MessageInformationProps.types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type FC } from 'react';
|
|
2
|
-
import { type CountDownMessageProps } from './
|
|
2
|
+
import { type CountDownMessageProps } from './CountDownMessageProps.types';
|
|
3
3
|
import './CountDownMessage.scss';
|
|
4
4
|
declare const CountDownMessage: FC<CountDownMessageProps>;
|
|
5
5
|
export default CountDownMessage;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as CountDownMessage } from './CountDownMessage';
|
|
2
|
-
export { type CountDownMessageProps } from './
|
|
2
|
+
export { type CountDownMessageProps } from './CountDownMessageProps.types';
|
package/dist/index.d.ts
CHANGED
|
@@ -343,8 +343,6 @@ interface RichTextMedia {
|
|
|
343
343
|
|
|
344
344
|
interface RichTextStrapiProps {
|
|
345
345
|
html?: string;
|
|
346
|
-
showMoreTextShortResponse?: string;
|
|
347
|
-
showMoreTextCompleteResponse?: string;
|
|
348
346
|
className?: string;
|
|
349
347
|
medias?: RichTextMedia[];
|
|
350
348
|
}
|
|
@@ -479,19 +477,12 @@ interface WhyLawDistrictItem {
|
|
|
479
477
|
declare const WhyLawDistrictItems: React$1.FC<WhyLawDistrictItemsProps>;
|
|
480
478
|
|
|
481
479
|
interface MessageInformationProps {
|
|
482
|
-
text: string;
|
|
480
|
+
text: string | React.ReactNode;
|
|
483
481
|
time?: string;
|
|
484
482
|
}
|
|
485
483
|
|
|
486
484
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
487
485
|
|
|
488
|
-
interface ShowMoreStrapiProps {
|
|
489
|
-
children: React.ReactNode;
|
|
490
|
-
className?: string;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
declare const ShowMoreStrapi: FC<ShowMoreStrapiProps>;
|
|
494
|
-
|
|
495
486
|
interface ArticleProps {
|
|
496
487
|
imageUrl: string;
|
|
497
488
|
title: string;
|
|
@@ -753,7 +744,7 @@ interface FreeDocModalContentProps {
|
|
|
753
744
|
declare const FreeDocModalContent: FC<FreeDocModalContentProps>;
|
|
754
745
|
|
|
755
746
|
interface CountDownMessageProps {
|
|
756
|
-
text: string;
|
|
747
|
+
text: string | React.ReactNode;
|
|
757
748
|
time?: string;
|
|
758
749
|
}
|
|
759
750
|
|
|
@@ -956,4 +947,4 @@ interface UseIsMobileOrTablePropsReturn {
|
|
|
956
947
|
}
|
|
957
948
|
declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
|
|
958
949
|
|
|
959
|
-
export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, AddButton, type AddButtonProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, 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, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, type DisclaimerProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronStatic, type JumbotronStaticProps, type LatestApplication, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, ListStepsGetForm, type ListStepsGetFormProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MobileBottomBar, type MobileBottomBarProps, NavBarDropDown, type NavBarDropDownProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PricingCard, type PricingCardProps, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RemoveButton, type RemoveButtonProps, RichTextInner, type RichTextInnerProps, type RichTextMedia, RichTextStrapi, type RichTextStrapiProps, SearchSelect, type SearchSelectProps,
|
|
950
|
+
export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, AddButton, type AddButtonProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, 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, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, type DisclaimerProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronStatic, type JumbotronStaticProps, type LatestApplication, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, ListStepsGetForm, type ListStepsGetFormProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MobileBottomBar, type MobileBottomBarProps, NavBarDropDown, type NavBarDropDownProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PricingCard, type PricingCardProps, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RemoveButton, type RemoveButtonProps, RichTextInner, type RichTextInnerProps, type RichTextMedia, RichTextStrapi, type RichTextStrapiProps, SearchSelect, type SearchSelectProps, type SideMenuTabProps, SidemenuTab, Snackbar, type SnackbarProps, Spinner, type SpinnerProps, StepGetForm, type StepGetFormProps, 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, TryOurFreeLegalBlogsContent, type TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, type TryOurFreeLegalBlogsSectionProps, TryUsSection, type TryUsSectionProps, UnsubscribePage, type UnsubscribePageProps, UnsubscribeSection, type UnsubscribeSectionProps, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useIntersectionObserver, useIsMobileOrTable };
|
package/package.json
CHANGED