@npm_leadtech/legal-lib-components 2.6.1 → 2.6.2
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 +14 -0
- package/dist/cjs/src/components/sections/AsSeeInSection/index.d.ts +2 -2
- 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 +14 -0
- package/dist/esm/src/components/sections/AsSeeInSection/index.d.ts +2 -2
- package/dist/esm/src/components/sections/index.d.ts +1 -0
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
|
@@ -3618,3 +3618,17 @@
|
|
|
3618
3618
|
@media (min-width: 720px) {
|
|
3619
3619
|
.guidelines-section {
|
|
3620
3620
|
flex-flow: row nowrap; } }
|
|
3621
|
+
|
|
3622
|
+
.as-seen-in-section {
|
|
3623
|
+
display: flex;
|
|
3624
|
+
flex-direction: column; }
|
|
3625
|
+
.as-seen-in-section__title {
|
|
3626
|
+
color: #3D4042;
|
|
3627
|
+
text-align: center;
|
|
3628
|
+
font-size: 32px;
|
|
3629
|
+
font-family: Lora;
|
|
3630
|
+
font-style: normal;
|
|
3631
|
+
font-weight: 400;
|
|
3632
|
+
line-height: 42px;
|
|
3633
|
+
letter-spacing: -0.3px;
|
|
3634
|
+
margin-bottom: 1rem; }
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { type
|
|
1
|
+
export { default as AsSeeInSection } from './AsSeeInSection';
|
|
2
|
+
export { type AsSeeInSectionProps } from './AsSeeInSectionProps.types';
|
package/dist/index.d.ts
CHANGED
|
@@ -701,4 +701,11 @@ interface GuidelinesSectionProps {
|
|
|
701
701
|
|
|
702
702
|
declare const GuidelinesSection: FC<GuidelinesSectionProps>;
|
|
703
703
|
|
|
704
|
-
|
|
704
|
+
interface AsSeeInSectionProps {
|
|
705
|
+
title: string;
|
|
706
|
+
contentAsSeeIn: AsSeeInContentProps;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
declare const AsSeeInSection: FC<AsSeeInSectionProps>;
|
|
710
|
+
|
|
711
|
+
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, 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, SearchSelect, SearchSelectProps, SideMenuTabProps, SidemenuTab, Snackbar, SnackbarProps, Spinner, SpinnerProps, StepGetForm, StepGetFormProps, TextArea, TextAreaProps, TextInput, TextInputProps, Toggle, ToggleProps, Tooltip, TooltipMenu, TooltipMenuProps, TooltipProps, TopBar, TopBarProps, TrustworthyWebsites, TrustworthyWebsitesProps, TryOurFreeLegalBlogsContent, TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, TryOurFreeLegalBlogsSectionProps };
|