@npm_leadtech/legal-lib-components 2.31.5 → 2.31.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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +4 -16
- package/dist/cjs/src/components/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +2 -1
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/ShowMoreStrapi.d.ts +4 -0
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/ShowMoreStrapiProps.d.ts +5 -0
- package/dist/cjs/src/components/atoms/ShowMoreStrapi/index.d.ts +2 -0
- package/dist/cjs/src/components/atoms/index.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 +4 -16
- package/dist/esm/src/components/atoms/RichTextStrapi/RichTextStrapiProps.d.ts +2 -1
- package/dist/esm/src/components/atoms/ShowMoreStrapi/ShowMoreStrapi.d.ts +4 -0
- package/dist/esm/src/components/atoms/ShowMoreStrapi/ShowMoreStrapiProps.d.ts +5 -0
- package/dist/esm/src/components/atoms/ShowMoreStrapi/index.d.ts +2 -0
- package/dist/esm/src/components/atoms/index.d.ts +1 -0
- package/dist/index.d.ts +10 -2
- package/package.json +1 -1
|
@@ -2453,22 +2453,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2453
2453
|
.richt-text-strapi ol li {
|
|
2454
2454
|
margin-bottom: 1rem; }
|
|
2455
2455
|
|
|
2456
|
-
.richt-text-strapi.--short-text {
|
|
2457
|
-
background-color: var(--primary-main-light-5);
|
|
2458
|
-
padding: 1rem;
|
|
2459
|
-
border-radius: 0.4rem; }
|
|
2460
|
-
|
|
2461
|
-
.richt-text-strapi .expand-box {
|
|
2462
|
-
display: flex;
|
|
2463
|
-
cursor: pointer;
|
|
2464
|
-
color: var(--primary-main-light-1);
|
|
2465
|
-
font-family: "Inter", sans-serif;
|
|
2466
|
-
font-size: 14px;
|
|
2467
|
-
font-weight: 400;
|
|
2468
|
-
line-height: 18px;
|
|
2469
|
-
letter-spacing: -0.3px;
|
|
2470
|
-
text-align: left; }
|
|
2471
|
-
|
|
2472
2456
|
.e-searchselect {
|
|
2473
2457
|
display: flex;
|
|
2474
2458
|
flex-direction: column-reverse;
|
|
@@ -2973,6 +2957,10 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2973
2957
|
.message-information__text__time {
|
|
2974
2958
|
font-weight: bold; }
|
|
2975
2959
|
|
|
2960
|
+
.show-more-strapi ul li,
|
|
2961
|
+
.show-more-strapi ol li {
|
|
2962
|
+
margin-bottom: 1rem; }
|
|
2963
|
+
|
|
2976
2964
|
.article {
|
|
2977
2965
|
display: flex;
|
|
2978
2966
|
flex-flow: row wrap;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { type RichTextMedia } from './RichTextMedia';
|
|
2
2
|
export interface RichTextStrapiProps {
|
|
3
3
|
html?: string;
|
|
4
|
-
|
|
4
|
+
showMoreTextShortResponse?: string;
|
|
5
|
+
showMoreTextCompleteResponse?: string;
|
|
5
6
|
className?: string;
|
|
6
7
|
medias?: RichTextMedia[];
|
|
7
8
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -343,7 +343,8 @@ interface RichTextMedia {
|
|
|
343
343
|
|
|
344
344
|
interface RichTextStrapiProps {
|
|
345
345
|
html?: string;
|
|
346
|
-
|
|
346
|
+
showMoreTextShortResponse?: string;
|
|
347
|
+
showMoreTextCompleteResponse?: string;
|
|
347
348
|
className?: string;
|
|
348
349
|
medias?: RichTextMedia[];
|
|
349
350
|
}
|
|
@@ -484,6 +485,13 @@ interface MessageInformationProps {
|
|
|
484
485
|
|
|
485
486
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
486
487
|
|
|
488
|
+
interface ShowMoreStrapiProps {
|
|
489
|
+
children: React.ReactNode;
|
|
490
|
+
className?: string;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
declare const ShowMoreStrapi: FC<ShowMoreStrapiProps>;
|
|
494
|
+
|
|
487
495
|
interface ArticleProps {
|
|
488
496
|
imageUrl: string;
|
|
489
497
|
title: string;
|
|
@@ -948,4 +956,4 @@ interface UseIsMobileOrTablePropsReturn {
|
|
|
948
956
|
}
|
|
949
957
|
declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
|
|
950
958
|
|
|
951
|
-
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 };
|
|
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, ShowMoreStrapi, type ShowMoreStrapiProps, 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 };
|