@npm_leadtech/legal-contracts-ui 0.17.1 → 0.17.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.
@@ -57,14 +57,14 @@ export interface HeroSectionProps {
57
57
  export declare const HomeTemplate: FC<HomeTemplateProps>;
58
58
 
59
59
  export declare interface HomeTemplateProps {
60
- hero: HeroSectionProps;
61
- moreTemplates: MoreTemplatesSectionProps;
62
- process: ProcessSectionProps;
63
- categories: CategoriesSectionProps;
64
- ratafia: RatafiaSectionProps;
65
- trust: TrustSectionProps;
66
- faqTeaser: FaqTeaserSectionProps;
67
- articles: ArticlesSectionProps;
60
+ hero?: HeroSectionProps;
61
+ moreTemplates?: MoreTemplatesSectionProps;
62
+ process?: ProcessSectionProps;
63
+ categories?: CategoriesSectionProps;
64
+ ratafia?: RatafiaSectionProps;
65
+ trust?: TrustSectionProps;
66
+ faqTeaser?: FaqTeaserSectionProps;
67
+ articles?: ArticlesSectionProps;
68
68
  }
69
69
 
70
70
  export type IconPosition = 'left' | 'right' | 'top';
@@ -1,32 +1,32 @@
1
- import { jsxs as n, jsx as o } from "react/jsx-runtime";
1
+ import { jsxs as f, jsx as o } from "react/jsx-runtime";
2
2
  import "react";
3
- import { HeroSection as a } from "./HeroSection.js";
4
- import { MoreTemplatesSection as f } from "./MoreTemplatesSection.js";
5
- import { ProcessSection as S } from "./ProcessSection.js";
6
- import { CategoriesSection as l } from "./CategoriesSection.js";
7
- import { RatafiaSection as x } from "./RatafiaSection.js";
8
- import { TrustSection as T } from "./TrustSection.js";
9
- import { FaqTeaserSection as j } from "./FaqTeaserSection.js";
10
- import { ArticlesSection as u } from "./ArticlesSection.js";
11
- const P = ({
12
- hero: r,
13
- moreTemplates: t,
14
- process: e,
15
- categories: m,
16
- ratafia: i,
17
- trust: c,
3
+ import { HeroSection as S } from "./HeroSection.js";
4
+ import { MoreTemplatesSection as s } from "./MoreTemplatesSection.js";
5
+ import { ProcessSection as l } from "./ProcessSection.js";
6
+ import { CategoriesSection as x } from "./CategoriesSection.js";
7
+ import { RatafiaSection as a } from "./RatafiaSection.js";
8
+ import { TrustSection as j } from "./TrustSection.js";
9
+ import { FaqTeaserSection as H } from "./FaqTeaserSection.js";
10
+ import { ArticlesSection as T } from "./ArticlesSection.js";
11
+ const g = ({
12
+ hero: m,
13
+ moreTemplates: r,
14
+ process: t,
15
+ categories: i,
16
+ ratafia: e,
17
+ trust: n,
18
18
  faqTeaser: p,
19
- articles: s
20
- }) => /* @__PURE__ */ n("main", { className: "flex-1", children: [
21
- /* @__PURE__ */ o(a, { ...r }),
22
- /* @__PURE__ */ o(f, { ...t }),
23
- /* @__PURE__ */ o(S, { ...e }),
24
- /* @__PURE__ */ o(l, { ...m }),
25
- /* @__PURE__ */ o(x, { ...i }),
26
- /* @__PURE__ */ o(T, { ...c }),
27
- /* @__PURE__ */ o(j, { ...p }),
28
- /* @__PURE__ */ o(u, { ...s })
19
+ articles: c
20
+ }) => /* @__PURE__ */ f("main", { className: "flex-1", children: [
21
+ m && /* @__PURE__ */ o(S, { ...m }),
22
+ r && /* @__PURE__ */ o(s, { ...r }),
23
+ t && /* @__PURE__ */ o(l, { ...t }),
24
+ i && /* @__PURE__ */ o(x, { ...i }),
25
+ e && /* @__PURE__ */ o(a, { ...e }),
26
+ n && /* @__PURE__ */ o(j, { ...n }),
27
+ p && /* @__PURE__ */ o(H, { ...p }),
28
+ c && /* @__PURE__ */ o(T, { ...c })
29
29
  ] });
30
30
  export {
31
- P as HomeTemplate
31
+ g as HomeTemplate
32
32
  };
@@ -0,0 +1,656 @@
1
+ import { ComponentPropsWithRef } from '../../../node_modules/.pnpm/react@19.2.3/node_modules/react';
2
+ import { default as default_2 } from '../../../node_modules/.pnpm/react@19.2.3/node_modules/react';
3
+ import { default as default_3 } from '../../../../node_modules/.pnpm/react@19.2.3/node_modules/react';
4
+ import { FC } from '../../../node_modules/.pnpm/react@19.2.3/node_modules/react';
5
+ import { JSX } from 'react/jsx-runtime';
6
+ import * as React_2 from 'react';
7
+ import { ReactNode } from '../../../node_modules/.pnpm/react@19.2.3/node_modules/react';
8
+
9
+ export declare const ArticlesSection: FC<ArticlesSectionProps>;
10
+
11
+ export declare interface ArticlesSectionProps {
12
+ header: SectionHeadingProps;
13
+ articles?: Array<{
14
+ title: string;
15
+ image: ReactNode;
16
+ excerpt: string;
17
+ cta: ReactNode;
18
+ }>;
19
+ cta: ButtonProps;
20
+ }
21
+
22
+ export declare const AsideNavMenu: FC<AsideNavMenuProps>;
23
+
24
+ export declare interface AsideNavMenuProps {
25
+ menuItems: Array<{
26
+ label: string;
27
+ href: string;
28
+ }>;
29
+ }
30
+
31
+ export declare const Badge: FC<BadgeProps>;
32
+
33
+ export declare interface BadgeProps {
34
+ children?: ReactNode;
35
+ color?: 'primary' | 'secondary';
36
+ }
37
+
38
+ export declare const BenefitsBar: FC<BenefitsBarProps>;
39
+
40
+ export declare interface BenefitsBarProps {
41
+ benefits: {
42
+ icon: ReactNode;
43
+ label: string;
44
+ }[];
45
+ }
46
+
47
+ export declare const Breadcrumb: FC<BreadcrumbProps>;
48
+
49
+ export declare interface BreadcrumbProps {
50
+ breadcrumbs?: Array<{
51
+ label: string;
52
+ href?: string;
53
+ }>;
54
+ className?: string;
55
+ }
56
+
57
+ export declare const BusinessIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
58
+
59
+ export declare const Button: ({ children, type, size, variant, iconPosition, className, disabled, ref, ...props }: ButtonProps) => JSX.Element;
60
+
61
+ export declare interface ButtonProps extends Omit<ComponentPropsWithRef<'button'>, 'children'> {
62
+ children: ReactNode;
63
+ size?: ButtonSize;
64
+ variant?: ButtonVariant;
65
+ iconPosition?: IconPosition;
66
+ }
67
+
68
+ export declare type ButtonSize = 'small' | 'default' | 'large';
69
+
70
+ export declare type ButtonVariant = 'primary-green' | 'primary-darkgreen' | 'primary-yellow' | 'primary-white' | 'secondary-green' | 'secondary-yellow' | 'secondary-red' | 'tertiary-bold' | 'tertiary-thin' | 'tertiary-icon' | 'tertiary-link' | 'icon-black' | 'icon-grey' | 'icon-mobile';
71
+
72
+ export declare const CategoriesSection: FC<CategoriesSectionProps>;
73
+
74
+ export declare interface CategoriesSectionProps {
75
+ header: SectionHeadingProps;
76
+ categories?: Array<{
77
+ title: string;
78
+ description: string;
79
+ icon: ReactNode;
80
+ cta: ButtonProps;
81
+ }>;
82
+ cta: ButtonProps;
83
+ }
84
+
85
+ export declare const ChevronDownIcon: ({ fill, ...props }: React_2.SVGProps<SVGSVGElement>) => JSX.Element;
86
+
87
+ export declare const ChevronRightIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
88
+
89
+ export declare const CloseIcon: ({ fill, ...props }: React_2.SVGProps<SVGSVGElement>) => JSX.Element;
90
+
91
+ export declare const CommunicationIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
92
+
93
+ export declare const ContactBanner: FC<ContactBannerProps>;
94
+
95
+ export declare interface ContactBannerProps {
96
+ contactText?: string;
97
+ phoneNumber?: string;
98
+ contactHoursText?: string;
99
+ contactHours?: string;
100
+ }
101
+
102
+ export declare const ContactUsSection: FC<ContactUsSectionProps>;
103
+
104
+ export declare interface ContactUsSectionProps {
105
+ header: SectionHeadingProps;
106
+ contactOptions: Array<{
107
+ title: string;
108
+ description: string;
109
+ icon: ReactNode;
110
+ helper?: string;
111
+ }>;
112
+ }
113
+
114
+ export declare const ContentItem: FC;
115
+
116
+ export declare const CtaSection: FC<CtaSectionProps>;
117
+
118
+ export declare interface CtaSectionProps {
119
+ title: string;
120
+ cta: ButtonProps;
121
+ children: ReactNode;
122
+ }
123
+
124
+ export declare const DocEditFillIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
125
+
126
+ export declare const DocumentCard: FC<DocumentCardProps>;
127
+
128
+ export declare interface DocumentCardProps {
129
+ title: string;
130
+ description: string;
131
+ featured?: boolean;
132
+ className?: string;
133
+ }
134
+
135
+ export declare const DocumentCategories: FC<DocumentCategoriesProps>;
136
+
137
+ export declare interface DocumentCategoriesProps {
138
+ title: string;
139
+ categories: Array<{
140
+ id: string;
141
+ title: string;
142
+ icon: ReactNode;
143
+ }>;
144
+ }
145
+
146
+ export declare const DocumentSection: FC<DocumentSectionProps>;
147
+
148
+ export declare interface DocumentSectionProps {
149
+ id: string;
150
+ title: string;
151
+ description: string;
152
+ icon: ReactNode;
153
+ documents: DocumentCardProps[];
154
+ }
155
+
156
+ export declare const DoneCircleIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
157
+
158
+ export declare const EmploymentIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
159
+
160
+ export declare const EstatePlanningIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
161
+
162
+ export declare const ExpertsSection: FC<ExpertsSectionProps>;
163
+
164
+ export declare interface ExpertsSectionProps {
165
+ header: SectionHeadingProps;
166
+ experts: Array<{
167
+ name: string;
168
+ title: string;
169
+ image: ReactNode;
170
+ }>;
171
+ }
172
+
173
+ export declare const FacebookIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
174
+
175
+ export declare const FamilyIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
176
+
177
+ export declare const FaqItem: FC<FaqItemProps>;
178
+
179
+ export declare interface FaqItemProps {
180
+ question: string;
181
+ answer?: string;
182
+ extra?: string;
183
+ }
184
+
185
+ export declare const FaqSection: FC<FaqSectionProps>;
186
+
187
+ export declare interface FaqSectionProps {
188
+ title?: string;
189
+ description?: ReactNode;
190
+ faqItems: FaqItemProps[];
191
+ className?: string;
192
+ }
193
+
194
+ export declare const FaqTeaserSection: FC<FaqTeaserSectionProps>;
195
+
196
+ export declare interface FaqTeaserSectionProps {
197
+ header: SectionHeadingProps;
198
+ questions?: Array<{
199
+ id: string;
200
+ content: ReactNode;
201
+ }>;
202
+ cta: ButtonProps;
203
+ }
204
+
205
+ export declare const FinanceIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
206
+
207
+ export declare const Footer: FC<FooterProps>;
208
+
209
+ export declare const FooterNav: FC<FooterNavProps>;
210
+
211
+ export declare interface FooterNavProps {
212
+ title: string;
213
+ links: ReactNode[];
214
+ }
215
+
216
+ export declare interface FooterProps {
217
+ nav: Array<FooterNavProps>;
218
+ contactInfo: {
219
+ phoneNumber: string;
220
+ contactHoursText: string;
221
+ contactHours: string;
222
+ };
223
+ logoGray?: ReactNode;
224
+ socialLinks?: ReactNode[];
225
+ legalLinks?: ReactNode[];
226
+ disclaimerText?: string;
227
+ copyrightText?: string;
228
+ trustPilotWidget?: ReactNode;
229
+ languageSelector?: ReactNode;
230
+ }
231
+
232
+ export declare interface FormattedLanguageItem {
233
+ code: string;
234
+ name: string;
235
+ url?: string;
236
+ flag: default_2.ReactNode;
237
+ }
238
+
239
+ export declare const GuidelinesSection: FC<GuidelinesSectionProps>;
240
+
241
+ export declare interface GuidelinesSectionProps {
242
+ header: SectionHeadingProps;
243
+ guidelineCards: Array<{
244
+ title: string;
245
+ image: ReactNode;
246
+ content: ReactNode;
247
+ }>;
248
+ footerCard: {
249
+ title: string;
250
+ image: ReactNode;
251
+ content: ReactNode;
252
+ cta: ButtonProps;
253
+ };
254
+ }
255
+
256
+ export declare const HamburgerIcon: ({ fill, ...props }: React_2.SVGProps<SVGSVGElement>) => JSX.Element;
257
+
258
+ export declare const Header: FC<HeaderProps>;
259
+
260
+ export declare interface HeaderProps {
261
+ logo: ReactNode;
262
+ navMenu: NavMenuProps;
263
+ isMobileMenuOpen?: boolean;
264
+ onOpenMobileMenu?: () => void;
265
+ onCloseMobileMenu?: () => void;
266
+ mobileMenuSections?: MobileMenuSection[];
267
+ mobileContactInfo?: MobileContactInfo;
268
+ seeAllDocumentsLabel?: string;
269
+ seeAllDocumentsHref?: string;
270
+ userActions?: ReactNode;
271
+ languageSelectorProps?: LanguageSelectorProps;
272
+ searchBarProps: SearchBarProps;
273
+ }
274
+
275
+ export declare const HelpGuideIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
276
+
277
+ export declare const HeroSection: FC<HeroSectionProps>;
278
+
279
+ export declare interface HeroSectionProps {
280
+ title: string;
281
+ description?: string;
282
+ cta: ButtonProps;
283
+ heroDocuments?: ItemProps[];
284
+ listTitle?: string;
285
+ listNote?: string;
286
+ backgroundImage?: string;
287
+ }
288
+
289
+ export declare const HighlightedText: React_2.FC<{
290
+ text: string;
291
+ highlight: string;
292
+ }>;
293
+
294
+ export declare type IconPosition = 'left' | 'right' | 'top';
295
+
296
+ export declare const InfoIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
297
+
298
+ export declare const InstagramIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
299
+
300
+ export declare const IntroSection: FC<IntroSectionProps>;
301
+
302
+ export declare interface IntroSectionProps {
303
+ image: ReactNode;
304
+ children: ReactNode;
305
+ cta: ButtonProps;
306
+ }
307
+
308
+ export declare const Item: FC<ItemProps>;
309
+
310
+ export declare interface ItemProps {
311
+ image: ReactNode;
312
+ title: string;
313
+ description: string;
314
+ documentUrl?: string;
315
+ actions?: ReactNode;
316
+ variant?: 'default' | 'card';
317
+ className?: string;
318
+ }
319
+
320
+ export declare const JumboCard: FC<JumboCardProps>;
321
+
322
+ export declare interface JumboCardProps {
323
+ title: string;
324
+ description: string;
325
+ subtitle: string;
326
+ image: ReactNode;
327
+ }
328
+
329
+ export declare const Jumbotron: FC<JumbotronProps>;
330
+
331
+ export declare const Jumbotron2: FC<Jumbotron2Props>;
332
+
333
+ export declare interface Jumbotron2Props {
334
+ title: string;
335
+ subtitle?: string;
336
+ className?: string;
337
+ }
338
+
339
+ export declare const Jumbotron3: FC<Jumbotron3Props>;
340
+
341
+ export declare interface Jumbotron3Props {
342
+ title: string;
343
+ }
344
+
345
+ export declare interface JumbotronProps {
346
+ title: string;
347
+ description: string;
348
+ bgImage: ReactNode;
349
+ }
350
+
351
+ export declare const LanguageSelector: default_2.FC<LanguageSelectorProps>;
352
+
353
+ export declare interface LanguageSelectorProps {
354
+ currentLanguage: FormattedLanguageItem;
355
+ availableLanguages: FormattedLanguageItem[];
356
+ variant?: LanguageSelectorVariant;
357
+ isOpen?: boolean;
358
+ onToggle?: () => void;
359
+ }
360
+
361
+ export declare type LanguageSelectorVariant = 'default' | 'compact';
362
+
363
+ export declare const LegalSection: FC<LegalSectionProps>;
364
+
365
+ export declare interface LegalSectionProps {
366
+ children: ReactNode;
367
+ }
368
+
369
+ export declare const LinkedinIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
370
+
371
+ export declare const MailFillIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
372
+
373
+ export declare const Markdown: default_3.FC<MarkdownProps>;
374
+
375
+ export declare interface MarkdownProps {
376
+ content: string;
377
+ className: string;
378
+ }
379
+
380
+ export declare const MarkdownSection: FC<MarkdownSectionProps>;
381
+
382
+ export declare interface MarkdownSectionProps {
383
+ header: SectionHeadingProps;
384
+ children: ReactNode;
385
+ }
386
+
387
+ export declare const MissionSection: FC<MissionSectionProps>;
388
+
389
+ export declare interface MissionSectionProps {
390
+ title: string;
391
+ children: ReactNode;
392
+ image: ReactNode;
393
+ }
394
+
395
+ export declare interface MobileContactInfo {
396
+ phoneNumber: string;
397
+ contactHoursLabel?: string;
398
+ contactHours?: string;
399
+ }
400
+
401
+ export declare interface MobileMenuSection {
402
+ title?: string;
403
+ icon?: ReactNode;
404
+ items: {
405
+ label: string;
406
+ href?: string;
407
+ }[];
408
+ seeAllLabel?: string;
409
+ seeAllHref?: string;
410
+ }
411
+
412
+ export declare const MoreTemplatesSection: FC<MoreTemplatesSectionProps>;
413
+
414
+ export declare interface MoreTemplatesSectionProps {
415
+ header: SectionHeadingProps;
416
+ moreDocuments?: ItemProps[];
417
+ }
418
+
419
+ export declare const NavMenu: FC<NavMenuProps>;
420
+
421
+ export declare const NavMenuItem: FC<NavMenuItemProps>;
422
+
423
+ export declare interface NavMenuItemProps {
424
+ label: string;
425
+ href?: string;
426
+ hasDropdown?: boolean;
427
+ dropdownItems?: NavMenuItemProps[];
428
+ dropdownContent?: ReactNode;
429
+ tag?: string;
430
+ isNested?: boolean;
431
+ }
432
+
433
+ export declare interface NavMenuProps {
434
+ navItems: NavMenuItemProps[];
435
+ }
436
+
437
+ export declare const Note: FC<NoteProps>;
438
+
439
+ export interface NoteProps {
440
+ children: ReactNode;
441
+ }
442
+
443
+ export declare const PartnersSection: FC<PartnersSectionProps>;
444
+
445
+ export declare interface PartnersSectionProps {
446
+ header: SectionHeadingProps;
447
+ children: ReactNode;
448
+ partners: Array<{
449
+ name: string;
450
+ logo: ReactNode;
451
+ }>;
452
+ }
453
+
454
+ export declare const PersonalIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
455
+
456
+ export declare const PhoneTalkIcon: ({ fill, ...props }: React_2.SVGProps<SVGSVGElement>) => JSX.Element;
457
+
458
+ export declare const Preform: FC<PreformProps>;
459
+
460
+ export declare const PreformOption: FC<PreformOptionProps>;
461
+
462
+ export declare interface PreformOptionProps {
463
+ label: string;
464
+ selected: boolean;
465
+ icon: ReactNode;
466
+ }
467
+
468
+ export declare interface PreformProps {
469
+ trustedBadge?: TrustedBadgeProps;
470
+ title?: string;
471
+ options: PreformOptionProps[];
472
+ cta: ButtonProps;
473
+ }
474
+
475
+ export declare const PreviewDownload: FC<PreviewDownloadProps>;
476
+
477
+ export declare interface PreviewDownloadProps {
478
+ title: string;
479
+ preview?: ReactNode;
480
+ cta: ButtonProps;
481
+ footerText: string;
482
+ pdfDownload: ButtonProps;
483
+ wordDownload: ButtonProps;
484
+ }
485
+
486
+ export declare const PreviewSection: FC<PreviewSectionProps>;
487
+
488
+ export declare interface PreviewSectionProps {
489
+ title?: string;
490
+ documentPreview?: ReactNode;
491
+ cta: ButtonProps;
492
+ }
493
+
494
+ export declare const PrivateIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
495
+
496
+ export declare const ProcessSection: FC<ProcessSectionProps>;
497
+
498
+ export declare interface ProcessSectionProps {
499
+ image: ReactNode;
500
+ header: SectionHeadingProps;
501
+ steps: Array<{
502
+ title: string;
503
+ description: string;
504
+ image: ReactNode;
505
+ }>;
506
+ }
507
+
508
+ export declare const ProductInfo: FC<ProductInfoProps>;
509
+
510
+ export declare interface ProductInfoProps {
511
+ lastUpdate: ReactNode;
512
+ reviewer?: ReactNode;
513
+ alsoKnownAs?: ReactNode;
514
+ }
515
+
516
+ export declare const RatafiaSection: FC<RatafiaSectionProps>;
517
+
518
+ export declare interface RatafiaSectionProps {
519
+ title: string;
520
+ content: ReactNode;
521
+ benefits: Array<{
522
+ label: string;
523
+ icon: ReactNode;
524
+ }>;
525
+ cta: ButtonProps;
526
+ }
527
+
528
+ export declare const RealStateIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
529
+
530
+ export declare const SaveIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
531
+
532
+ export declare const SearchBar: React_2.FC<SearchBarProps>;
533
+
534
+ export declare interface SearchBarProps {
535
+ items: SearchItem[];
536
+ placeholder?: string;
537
+ isOpen?: boolean;
538
+ onToggle?: () => void;
539
+ searchValue?: string;
540
+ onInputChange?: (e: React_2.ChangeEvent<HTMLInputElement>) => void;
541
+ onClear?: () => void;
542
+ noResultsText?: string;
543
+ allDocumentsItem?: SearchItem;
544
+ }
545
+
546
+ export declare const SearchIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
547
+
548
+ export declare interface SearchItem {
549
+ label: string;
550
+ href: string;
551
+ }
552
+
553
+ export declare const SectionHeading: FC<SectionHeadingProps>;
554
+
555
+ export declare interface SectionHeadingProps {
556
+ title: string;
557
+ description?: string;
558
+ align?: 'start' | 'center';
559
+ }
560
+
561
+ export declare const StarsIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
562
+
563
+ export declare const Storyline: FC<StorylineProps>;
564
+
565
+ export declare interface StorylineProps {
566
+ title: string;
567
+ text: string;
568
+ storyItems: {
569
+ title: string;
570
+ description: string;
571
+ icon: ReactNode;
572
+ }[];
573
+ }
574
+
575
+ export declare const TableOfContents: FC<TableOfContentsProps>;
576
+
577
+ export declare interface TableOfContentsProps {
578
+ title: string;
579
+ contents?: Array<{
580
+ title: string;
581
+ link: string;
582
+ }>;
583
+ }
584
+
585
+ export declare const TikTokIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
586
+
587
+ export declare const TrustedBadge: FC<TrustedBadgeProps>;
588
+
589
+ export declare interface TrustedBadgeProps {
590
+ children?: ReactNode;
591
+ }
592
+
593
+ export declare const TrustedIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
594
+
595
+ export declare const TrustpilotSection: FC<TrustpilotSectionProps>;
596
+
597
+ export declare interface TrustpilotSectionProps {
598
+ header: SectionHeadingProps;
599
+ children: ReactNode;
600
+ }
601
+
602
+ export declare const TrustSection: FC<TrustSectionProps>;
603
+
604
+ export declare interface TrustSectionProps {
605
+ header: SectionHeadingProps;
606
+ trustReasons?: Array<{
607
+ label: string;
608
+ icon: ReactNode;
609
+ }>;
610
+ cta: ButtonProps;
611
+ }
612
+
613
+ export declare const TryNowSection: FC<TryNowSectionProps>;
614
+
615
+ export declare interface TryNowSectionProps {
616
+ title?: string;
617
+ benefits?: string[];
618
+ cta: ButtonProps;
619
+ }
620
+
621
+ export declare const TwoColumnSection: FC<TwoColumnSectionProps>;
622
+
623
+ export declare interface TwoColumnSectionProps {
624
+ firstColumn: ReactNode;
625
+ secondColumn: ReactNode;
626
+ className?: string;
627
+ containerClassName?: string;
628
+ }
629
+
630
+ export declare const UnsubscribeSection: FC<UnsubscribeSectionProps>;
631
+
632
+ export declare interface UnsubscribeSectionProps {
633
+ children: ReactNode;
634
+ }
635
+
636
+ export declare const UsFlagIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
637
+
638
+ export declare const ValuesSection: FC<ValuesSectionProps>;
639
+
640
+ export declare interface ValuesSectionProps {
641
+ title: string;
642
+ children: ReactNode;
643
+ image: ReactNode;
644
+ }
645
+
646
+ export declare const VerifiedIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
647
+
648
+ export declare const WeHelpSection: FC<WeHelpSectionProps>;
649
+
650
+ export declare interface WeHelpSectionProps {
651
+ title: string;
652
+ children: ReactNode;
653
+ image: ReactNode;
654
+ cta: ButtonProps;
655
+ }
656
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-contracts-ui",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",