@npm_leadtech/legal-lib-components 5.2.0 → 5.2.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/css/styles.css +75 -26
- package/dist/src/components/atoms/Tag/Tag.scss +4 -0
- package/dist/src/components/molecules/ExpertCardList/ExpertCardList.scss +1 -1
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.scss +2 -0
- package/dist/src/components/organisms/CardFunctionality/CardFunctionality.d.ts +3 -0
- package/dist/src/components/organisms/CardFunctionality/CardFunctionality.js +6 -0
- package/dist/src/components/organisms/{CardFuncionality/CardFuncionality.scss → CardFunctionality/CardFunctionality.scss} +3 -2
- package/dist/src/components/organisms/{CardFuncionality/CardFuncionality.tsx → CardFunctionality/CardFunctionality.tsx} +4 -4
- package/dist/src/components/organisms/{CardFuncionality/CardFuncionalityProps.d.ts → CardFunctionality/CardFunctionalityProps.d.ts} +2 -1
- package/dist/src/components/organisms/{CardFuncionality/CardFuncionalityProps.ts → CardFunctionality/CardFunctionalityProps.ts} +2 -1
- package/dist/src/components/organisms/CardFunctionality/index.d.ts +2 -0
- package/dist/src/components/organisms/CardFunctionality/index.js +2 -0
- package/dist/src/components/organisms/CardFunctionality/index.ts +2 -0
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.js +2 -2
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.scss +37 -1
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.tsx +20 -6
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.d.ts +1 -0
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts +1 -0
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.scss +2 -1
- package/dist/src/components/organisms/index.d.ts +1 -1
- package/dist/src/components/organisms/index.js +1 -1
- package/dist/src/components/organisms/index.ts +1 -1
- package/dist/src/components/pages/AboutUsPage/AboutUsPage.js +3 -3
- package/dist/src/components/pages/AboutUsPage/AboutUsPage.tsx +4 -7
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.js +1 -1
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.scss +6 -8
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.tsx +1 -1
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.scss +2 -2
- package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.d.ts +3 -0
- package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.js +8 -0
- package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.scss +15 -0
- package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx +17 -0
- package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.d.ts +4 -0
- package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.js +1 -0
- package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.ts +5 -0
- package/dist/src/components/sections/FunctionalityCardsSection/index.d.ts +2 -0
- package/dist/src/components/sections/FunctionalityCardsSection/index.js +2 -0
- package/dist/src/components/sections/FunctionalityCardsSection/index.ts +2 -0
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.js +1 -1
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.scss +5 -4
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.tsx +6 -2
- package/dist/src/components/sections/index.d.ts +1 -0
- package/dist/src/components/sections/index.js +1 -0
- package/dist/src/components/sections/index.ts +1 -0
- package/dist/src/globalStyles/styles.scss +2 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/dist/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +0 -3
- package/dist/src/components/organisms/CardFuncionality/CardFuncionality.js +0 -6
- package/dist/src/components/organisms/CardFuncionality/index.d.ts +0 -2
- package/dist/src/components/organisms/CardFuncionality/index.js +0 -2
- package/dist/src/components/organisms/CardFuncionality/index.ts +0 -2
- /package/dist/src/components/organisms/{CardFuncionality/CardFuncionalityProps.js → CardFunctionality/CardFunctionalityProps.js} +0 -0
package/dist/css/styles.css
CHANGED
|
@@ -4079,6 +4079,9 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
4079
4079
|
.tag .icon {
|
|
4080
4080
|
display: flex;
|
|
4081
4081
|
}
|
|
4082
|
+
.tag .icon .icon-svg-with-theme-color {
|
|
4083
|
+
background-color: var(--secondary-main-dark-2);
|
|
4084
|
+
}
|
|
4082
4085
|
.tag .text {
|
|
4083
4086
|
color: var(--neutral-neutral-1);
|
|
4084
4087
|
font-size: 12px;
|
|
@@ -5070,7 +5073,7 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
5070
5073
|
display: flex;
|
|
5071
5074
|
flex-direction: column;
|
|
5072
5075
|
justify-content: center;
|
|
5073
|
-
|
|
5076
|
+
margin: 2rem 0 3rem 0;
|
|
5074
5077
|
}
|
|
5075
5078
|
@media (min-width: 720px) {
|
|
5076
5079
|
.expert-card-list {
|
|
@@ -6400,9 +6403,11 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6400
6403
|
display: flex;
|
|
6401
6404
|
flex-wrap: wrap;
|
|
6402
6405
|
justify-content: center;
|
|
6406
|
+
align-items: center;
|
|
6403
6407
|
}
|
|
6404
6408
|
.trustworthy-websites__image {
|
|
6405
6409
|
margin: 1.5rem;
|
|
6410
|
+
max-width: 8rem;
|
|
6406
6411
|
}
|
|
6407
6412
|
.type-modules-list {
|
|
6408
6413
|
display: flex;
|
|
@@ -6645,7 +6650,7 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6645
6650
|
color: var(--primary-main-light-1);
|
|
6646
6651
|
font-weight: 400 !important;
|
|
6647
6652
|
}
|
|
6648
|
-
.card-
|
|
6653
|
+
.card-functionality {
|
|
6649
6654
|
border-radius: 4px;
|
|
6650
6655
|
box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1-rgb), 0.2);
|
|
6651
6656
|
display: flex;
|
|
@@ -6653,31 +6658,32 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6653
6658
|
gap: 1rem;
|
|
6654
6659
|
padding: 1em;
|
|
6655
6660
|
}
|
|
6656
|
-
.card-
|
|
6661
|
+
.card-functionality .content-tags {
|
|
6657
6662
|
display: flex;
|
|
6658
6663
|
flex-direction: column;
|
|
6659
6664
|
gap: 1rem;
|
|
6660
6665
|
}
|
|
6661
|
-
.card-
|
|
6666
|
+
.card-functionality .content-tags .content {
|
|
6662
6667
|
display: flex;
|
|
6663
6668
|
flex-direction: column;
|
|
6664
6669
|
gap: 0.5rem;
|
|
6665
6670
|
}
|
|
6666
|
-
.card-
|
|
6671
|
+
.card-functionality .content-tags .content .header {
|
|
6667
6672
|
display: flex;
|
|
6668
6673
|
align-items: center;
|
|
6669
6674
|
gap: 10px;
|
|
6675
|
+
flex-direction: row;
|
|
6670
6676
|
}
|
|
6671
|
-
.card-
|
|
6677
|
+
.card-functionality .content-tags .content .header .icon {
|
|
6672
6678
|
padding: 2px;
|
|
6673
6679
|
border-radius: 4px;
|
|
6674
6680
|
background: var(--primary-main-light-5);
|
|
6675
6681
|
}
|
|
6676
|
-
.card-
|
|
6682
|
+
.card-functionality .content-tags .content .header .title {
|
|
6677
6683
|
color: var(--neutral-neutral-1);
|
|
6678
6684
|
font-weight: 700;
|
|
6679
6685
|
}
|
|
6680
|
-
.card-
|
|
6686
|
+
.card-functionality .content-tags .content .text {
|
|
6681
6687
|
overflow: hidden;
|
|
6682
6688
|
color: var(--neutral-neutral-1);
|
|
6683
6689
|
font-size: 14px;
|
|
@@ -6686,12 +6692,12 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6686
6692
|
line-clamp: 2;
|
|
6687
6693
|
-webkit-box-orient: vertical;
|
|
6688
6694
|
}
|
|
6689
|
-
.card-
|
|
6695
|
+
.card-functionality .content-tags .tags {
|
|
6690
6696
|
display: flex;
|
|
6691
6697
|
gap: 2rem;
|
|
6692
6698
|
flex-wrap: wrap;
|
|
6693
6699
|
}
|
|
6694
|
-
.card-
|
|
6700
|
+
.card-functionality .cta-card {
|
|
6695
6701
|
align-self: flex-start;
|
|
6696
6702
|
margin-top: 0;
|
|
6697
6703
|
}
|
|
@@ -6840,6 +6846,11 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6840
6846
|
align-self: stretch;
|
|
6841
6847
|
color: var(--neutral-neutral-1);
|
|
6842
6848
|
}
|
|
6849
|
+
.guidelines-section-main {
|
|
6850
|
+
display: flex;
|
|
6851
|
+
flex-direction: row;
|
|
6852
|
+
flex-wrap: nowrap;
|
|
6853
|
+
}
|
|
6843
6854
|
.guidelines-section__texts {
|
|
6844
6855
|
flex-basis: 50%;
|
|
6845
6856
|
display: flex;
|
|
@@ -6862,7 +6873,6 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6862
6873
|
font-family: "Lora", serif;
|
|
6863
6874
|
margin-bottom: 2rem;
|
|
6864
6875
|
text-align: center;
|
|
6865
|
-
color: var(--neutral-neutral-2);
|
|
6866
6876
|
font-size: 32px;
|
|
6867
6877
|
font-style: normal;
|
|
6868
6878
|
font-weight: 400;
|
|
@@ -6903,6 +6913,33 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6903
6913
|
display: none;
|
|
6904
6914
|
}
|
|
6905
6915
|
}
|
|
6916
|
+
.guidelines-section-detail {
|
|
6917
|
+
display: flex;
|
|
6918
|
+
gap: 1.5rem;
|
|
6919
|
+
margin: 2rem 0 1rem 0;
|
|
6920
|
+
}
|
|
6921
|
+
.guidelines-section-detail__item {
|
|
6922
|
+
display: flex;
|
|
6923
|
+
flex: 1;
|
|
6924
|
+
flex-direction: column;
|
|
6925
|
+
background: var(--others-white);
|
|
6926
|
+
border-radius: 0.5rem;
|
|
6927
|
+
padding: 1.5rem;
|
|
6928
|
+
}
|
|
6929
|
+
.guidelines-section-detail__item__image {
|
|
6930
|
+
width: 100%;
|
|
6931
|
+
border-radius: 0.5rem;
|
|
6932
|
+
}
|
|
6933
|
+
.guidelines-section-detail__item__title {
|
|
6934
|
+
font-family: "Lora", serif;
|
|
6935
|
+
font-style: normal;
|
|
6936
|
+
font-weight: 400;
|
|
6937
|
+
font-size: 24px;
|
|
6938
|
+
line-height: 32px;
|
|
6939
|
+
letter-spacing: -0.3px;
|
|
6940
|
+
color: var(--neutral-neutral-1);
|
|
6941
|
+
margin: 1.5rem 0 1rem 0;
|
|
6942
|
+
}
|
|
6906
6943
|
.jumbotron-ratafia-content {
|
|
6907
6944
|
display: flex;
|
|
6908
6945
|
flex-direction: column;
|
|
@@ -7321,10 +7358,11 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
7321
7358
|
}
|
|
7322
7359
|
.try-our-free-legal-blogs-section__texts__title {
|
|
7323
7360
|
font-family: "Lora", serif;
|
|
7324
|
-
font-size:
|
|
7361
|
+
font-size: 32px;
|
|
7325
7362
|
line-height: 42px;
|
|
7326
7363
|
margin-bottom: 2rem;
|
|
7327
7364
|
text-align: center;
|
|
7365
|
+
font-weight: 400;
|
|
7328
7366
|
}
|
|
7329
7367
|
@media (min-width: 720px) {
|
|
7330
7368
|
.try-our-free-legal-blogs-section__texts__title {
|
|
@@ -7434,24 +7472,22 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
7434
7472
|
}
|
|
7435
7473
|
.as-seen-in-section-box {
|
|
7436
7474
|
flex-shrink: 0;
|
|
7437
|
-
|
|
7438
|
-
background: #fff;
|
|
7439
|
-
box-shadow: 0px 2px 6px 0px rgba(2, 55, 74, 0.25);
|
|
7440
|
-
margin: 2rem;
|
|
7441
|
-
padding: 1rem;
|
|
7442
|
-
max-width: 1200px;
|
|
7475
|
+
background-color: var(--secondary-main-light-5);
|
|
7443
7476
|
}
|
|
7444
7477
|
@media (min-width: 960px) {
|
|
7445
7478
|
.as-seen-in-section-box {
|
|
7446
|
-
margin:
|
|
7479
|
+
margin-top: 12rem;
|
|
7447
7480
|
}
|
|
7448
7481
|
}
|
|
7449
7482
|
.as-seen-in-section-box .as-seen-in-section {
|
|
7450
7483
|
display: flex;
|
|
7451
7484
|
flex-direction: column;
|
|
7485
|
+
box-shadow: 0px 2px 6px 0px rgba(2, 55, 74, 0.25);
|
|
7486
|
+
background: var(--others-white);
|
|
7487
|
+
transform: translateY(-50%);
|
|
7488
|
+
padding: 1.5rem 0;
|
|
7452
7489
|
}
|
|
7453
7490
|
.as-seen-in-section-box .as-seen-in-section__title {
|
|
7454
|
-
color: var(--neutral-neutral-2);
|
|
7455
7491
|
text-align: center;
|
|
7456
7492
|
font-size: 32px;
|
|
7457
7493
|
font-family: "Lora", serif;
|
|
@@ -7632,8 +7668,8 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
7632
7668
|
display: flex;
|
|
7633
7669
|
justify-content: center;
|
|
7634
7670
|
flex-direction: column;
|
|
7635
|
-
background-color: var(--
|
|
7636
|
-
margin-bottom:
|
|
7671
|
+
background-color: var(--primary-main-light-6);
|
|
7672
|
+
margin-bottom: 4rem;
|
|
7637
7673
|
}
|
|
7638
7674
|
.experts-section__title {
|
|
7639
7675
|
font-family: "Lora", serif;
|
|
@@ -7737,15 +7773,28 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
7737
7773
|
.features-ratafia-section__wrapper__children img {
|
|
7738
7774
|
width: 100%;
|
|
7739
7775
|
}
|
|
7740
|
-
.
|
|
7776
|
+
.functionality-cards {
|
|
7741
7777
|
display: flex;
|
|
7742
7778
|
flex-direction: column;
|
|
7779
|
+
gap: 1rem;
|
|
7780
|
+
margin-bottom: 2rem;
|
|
7781
|
+
width: 100%;
|
|
7743
7782
|
}
|
|
7744
|
-
@media (min-width:
|
|
7745
|
-
.
|
|
7746
|
-
flex-
|
|
7783
|
+
@media (min-width: 960px) {
|
|
7784
|
+
.functionality-cards {
|
|
7785
|
+
flex-direction: row;
|
|
7786
|
+
width: 50%;
|
|
7747
7787
|
}
|
|
7748
7788
|
}
|
|
7789
|
+
.guidelines-section {
|
|
7790
|
+
display: flex;
|
|
7791
|
+
flex-direction: column;
|
|
7792
|
+
align-items: center;
|
|
7793
|
+
background: var(--neutral-neutral-6);
|
|
7794
|
+
padding-top: 2rem;
|
|
7795
|
+
padding-bottom: 2rem;
|
|
7796
|
+
margin-top: 3rem;
|
|
7797
|
+
}
|
|
7749
7798
|
.how-it-works-wrapper {
|
|
7750
7799
|
background-color: var(--neutral-neutral-6);
|
|
7751
7800
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Button, Tag } from '../../atoms';
|
|
3
|
+
// import './CardFunctionality.scss'
|
|
4
|
+
export const CardFunctionality = ({ icon, title, text, tags, cta }) => {
|
|
5
|
+
return (_jsxs("article", { className: 'card-functionality', children: [_jsxs("div", { className: 'content-tags', children: [_jsxs("div", { className: 'content', children: [_jsxs("div", { className: 'header', children: [_jsx("div", { className: 'icon', children: icon }), _jsx("p", { className: 'title', children: title })] }), _jsx("div", { title: text, className: 'text', children: text })] }), _jsx("div", { className: 'tags', children: tags.map((tag) => (_jsx(Tag, { ...tag }, tag.id))) })] }), _jsx(Button, { ...cta, givenClass: 'cta-card' })] }));
|
|
6
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@import '../../../globalStyles/variables.scss';
|
|
2
2
|
|
|
3
|
-
.card-
|
|
3
|
+
.card-functionality {
|
|
4
4
|
border-radius: $global-border-radius;
|
|
5
5
|
box-shadow: $box-shadow-medium;
|
|
6
6
|
display: flex;
|
|
@@ -16,12 +16,13 @@
|
|
|
16
16
|
.content {
|
|
17
17
|
display: flex;
|
|
18
18
|
flex-direction: column;
|
|
19
|
-
gap:
|
|
19
|
+
gap: $global-gap/2;
|
|
20
20
|
|
|
21
21
|
.header {
|
|
22
22
|
display: flex;
|
|
23
23
|
align-items: center;
|
|
24
24
|
gap: 10px;
|
|
25
|
+
flex-direction: row;
|
|
25
26
|
|
|
26
27
|
.icon {
|
|
27
28
|
padding: 2px;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
|
|
3
3
|
import { Button, Tag } from '../../atoms'
|
|
4
|
-
import { type
|
|
5
|
-
// import './
|
|
4
|
+
import { type CardFunctionalityProps } from './CardFunctionalityProps'
|
|
5
|
+
// import './CardFunctionality.scss'
|
|
6
6
|
|
|
7
|
-
export const
|
|
7
|
+
export const CardFunctionality: React.FC<CardFunctionalityProps> = ({ icon, title, text, tags, cta }) => {
|
|
8
8
|
return (
|
|
9
|
-
<article className='card-
|
|
9
|
+
<article className='card-functionality'>
|
|
10
10
|
<div className='content-tags'>
|
|
11
11
|
<div className='content'>
|
|
12
12
|
<div className='header'>
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { type ButtonProps, type TagProps } from '../../atoms';
|
|
2
|
-
export interface
|
|
2
|
+
export interface CardFunctionalityProps {
|
|
3
3
|
icon: React.ReactNode;
|
|
4
4
|
title: string;
|
|
5
5
|
text: string;
|
|
6
6
|
tags: TagProps[];
|
|
7
7
|
cta: ButtonProps;
|
|
8
|
+
id: string;
|
|
8
9
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { type ButtonProps, type TagProps } from '../../atoms'
|
|
2
2
|
|
|
3
|
-
export interface
|
|
3
|
+
export interface CardFunctionalityProps {
|
|
4
4
|
icon: React.ReactNode
|
|
5
5
|
title: string
|
|
6
6
|
text: string
|
|
7
7
|
tags: TagProps[]
|
|
8
8
|
cta: ButtonProps
|
|
9
|
+
id: string
|
|
9
10
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { RichTextInner } from '../../atoms';
|
|
3
3
|
// import './GuidelinesContent.scss'
|
|
4
|
-
const GuidelinesContent = ({ title, image, children }) => {
|
|
5
|
-
return (_jsxs(_Fragment, { children: [_jsx("div", { className: 'guidelines-section__image big-devices', children: image }), _jsxs("div", { className: 'guidelines-section__texts', children: [_jsx("h2", { className: 'guidelines-section__texts__title', children: title }), _jsx(RichTextInner, { customClass: 'guidelines-section__texts__body', children: children })] }), _jsx("div", { className: 'guidelines-section__image is-mobile', children: image })] }));
|
|
4
|
+
const GuidelinesContent = ({ title, image, detail, children }) => {
|
|
5
|
+
return (_jsxs(_Fragment, { children: [_jsxs("div", { className: 'guidelines-section-main wrapper', children: [_jsx("div", { className: 'guidelines-section__image big-devices', children: image }), _jsxs("div", { className: 'guidelines-section__texts', children: [_jsx("h2", { className: 'guidelines-section__texts__title', children: title }), _jsx(RichTextInner, { customClass: 'guidelines-section__texts__body', children: children })] }), _jsx("div", { className: 'guidelines-section__image is-mobile', children: image })] }), Array.isArray(detail) && (_jsx("div", { className: 'guidelines-section-detail wrapper', children: detail.map((item, index) => (_jsxs("div", { className: 'guidelines-section-detail__item', children: [_jsx("div", { className: 'guidelines-section-detail__item__image', children: item.image }), _jsx("div", { className: 'guidelines-section-detail__item__title', children: item.title }), _jsx(RichTextInner, { customClass: 'guidelines-section-detail__item__text', children: item.text })] }, index))) }))] }));
|
|
6
6
|
};
|
|
7
7
|
export default GuidelinesContent;
|
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
@import '../../../globalStyles/mediaqueries.scss';
|
|
3
3
|
|
|
4
4
|
.guidelines-section {
|
|
5
|
+
&-main {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: row;
|
|
8
|
+
flex-wrap: nowrap;
|
|
9
|
+
}
|
|
10
|
+
|
|
5
11
|
&__texts {
|
|
6
12
|
flex-basis: 50%;
|
|
7
13
|
display: flex;
|
|
@@ -23,7 +29,6 @@
|
|
|
23
29
|
font-family: $font-serif;
|
|
24
30
|
margin-bottom: 2rem;
|
|
25
31
|
text-align: center;
|
|
26
|
-
color: get-color(neutral, neutral-2);
|
|
27
32
|
font-size: 32px;
|
|
28
33
|
font-style: normal;
|
|
29
34
|
font-weight: 400;
|
|
@@ -67,4 +72,35 @@
|
|
|
67
72
|
}
|
|
68
73
|
}
|
|
69
74
|
}
|
|
75
|
+
|
|
76
|
+
&-detail {
|
|
77
|
+
display: flex;
|
|
78
|
+
gap: 1.5rem;
|
|
79
|
+
margin: 2rem 0 1rem 0;
|
|
80
|
+
|
|
81
|
+
&__item {
|
|
82
|
+
display: flex;
|
|
83
|
+
flex: 1;
|
|
84
|
+
flex-direction: column;
|
|
85
|
+
background: get-color(others, white);
|
|
86
|
+
border-radius: 0.5rem;
|
|
87
|
+
padding: 1.5rem;
|
|
88
|
+
|
|
89
|
+
&__image {
|
|
90
|
+
width: 100%;
|
|
91
|
+
border-radius: 0.5rem;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&__title {
|
|
95
|
+
font-family: $font-serif;
|
|
96
|
+
font-style: normal;
|
|
97
|
+
font-weight: 400;
|
|
98
|
+
font-size: 24px;
|
|
99
|
+
line-height: 32px;
|
|
100
|
+
letter-spacing: -0.3px;
|
|
101
|
+
color: get-color(neutral, neutral-1);
|
|
102
|
+
margin: 1.5rem 0 1rem 0;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
70
106
|
}
|
|
@@ -1,18 +1,32 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
1
2
|
import React, { type FC } from 'react'
|
|
2
3
|
|
|
3
4
|
import { type GuidelinesContentProps } from './GuidelinesContentProps.types'
|
|
4
5
|
import { RichTextInner } from '../../atoms'
|
|
5
6
|
// import './GuidelinesContent.scss'
|
|
6
7
|
|
|
7
|
-
const GuidelinesContent: FC<GuidelinesContentProps> = ({ title, image, children }) => {
|
|
8
|
+
const GuidelinesContent: FC<GuidelinesContentProps> = ({ title, image, detail, children }) => {
|
|
8
9
|
return (
|
|
9
10
|
<>
|
|
10
|
-
<div className='guidelines-
|
|
11
|
-
|
|
12
|
-
<
|
|
13
|
-
|
|
11
|
+
<div className='guidelines-section-main wrapper'>
|
|
12
|
+
<div className='guidelines-section__image big-devices'>{image}</div>
|
|
13
|
+
<div className='guidelines-section__texts'>
|
|
14
|
+
<h2 className='guidelines-section__texts__title'>{title}</h2>
|
|
15
|
+
<RichTextInner customClass='guidelines-section__texts__body'>{children}</RichTextInner>
|
|
16
|
+
</div>
|
|
17
|
+
<div className='guidelines-section__image is-mobile'>{image}</div>
|
|
14
18
|
</div>
|
|
15
|
-
|
|
19
|
+
{Array.isArray(detail) && (
|
|
20
|
+
<div className='guidelines-section-detail wrapper'>
|
|
21
|
+
{detail.map((item, index) => (
|
|
22
|
+
<div className='guidelines-section-detail__item' key={index}>
|
|
23
|
+
<div className='guidelines-section-detail__item__image'>{item.image}</div>
|
|
24
|
+
<div className='guidelines-section-detail__item__title'>{item.title}</div>
|
|
25
|
+
<RichTextInner customClass='guidelines-section-detail__item__text'>{item.text}</RichTextInner>
|
|
26
|
+
</div>
|
|
27
|
+
))}
|
|
28
|
+
</div>
|
|
29
|
+
)}
|
|
16
30
|
</>
|
|
17
31
|
)
|
|
18
32
|
}
|
|
@@ -2,7 +2,7 @@ export * from './AboutUsContent';
|
|
|
2
2
|
export * from './Accordion';
|
|
3
3
|
export * from './ArticlesList';
|
|
4
4
|
export * from './AsSeeInContent';
|
|
5
|
-
export * from './
|
|
5
|
+
export * from './CardFunctionality';
|
|
6
6
|
export * from './ContactJumbotron';
|
|
7
7
|
export * from './CookiePolicyBar';
|
|
8
8
|
export * from './ErrorContentRatafia';
|
|
@@ -2,7 +2,7 @@ export * from './AboutUsContent';
|
|
|
2
2
|
export * from './Accordion';
|
|
3
3
|
export * from './ArticlesList';
|
|
4
4
|
export * from './AsSeeInContent';
|
|
5
|
-
export * from './
|
|
5
|
+
export * from './CardFunctionality';
|
|
6
6
|
export * from './ContactJumbotron';
|
|
7
7
|
export * from './CookiePolicyBar';
|
|
8
8
|
export * from './ErrorContentRatafia';
|
|
@@ -2,7 +2,7 @@ export * from './AboutUsContent'
|
|
|
2
2
|
export * from './Accordion'
|
|
3
3
|
export * from './ArticlesList'
|
|
4
4
|
export * from './AsSeeInContent'
|
|
5
|
-
export * from './
|
|
5
|
+
export * from './CardFunctionality'
|
|
6
6
|
export * from './ContactJumbotron'
|
|
7
7
|
export * from './CookiePolicyBar'
|
|
8
8
|
export * from './ErrorContentRatafia'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { AboutUsSection, AsSeeInSection, ExpertsSection, GuidelinesSection, PeopleSayAboutUsSection, TryOurFreeLegalBlogsSection
|
|
3
|
-
export const AboutUsPage = ({ aboutUsSectionProps, tryOurFreeLegalBlogsSectionProps, peopleSayAboutUsSectionProps, guidelinesSectionProps,
|
|
4
|
-
return (_jsxs(_Fragment, { children: [aboutUsSectionProps != null && _jsx(AboutUsSection, { ...aboutUsSectionProps }), tryOurFreeLegalBlogsSectionProps != null && (_jsx(TryOurFreeLegalBlogsSection, { ...tryOurFreeLegalBlogsSectionProps })),
|
|
2
|
+
import { AboutUsSection, AsSeeInSection, ExpertsSection, GuidelinesSection, PeopleSayAboutUsSection, TryOurFreeLegalBlogsSection } from '../../sections';
|
|
3
|
+
export const AboutUsPage = ({ aboutUsSectionProps, tryOurFreeLegalBlogsSectionProps, peopleSayAboutUsSectionProps, guidelinesSectionProps, expertsSectionProps, asSeeInSectionProps, isJonSnow = false }) => {
|
|
4
|
+
return (_jsxs(_Fragment, { children: [aboutUsSectionProps != null && _jsx(AboutUsSection, { ...aboutUsSectionProps }), tryOurFreeLegalBlogsSectionProps != null && (_jsx(TryOurFreeLegalBlogsSection, { ...tryOurFreeLegalBlogsSectionProps })), guidelinesSectionProps != null && (_jsx(GuidelinesSection, { ...guidelinesSectionProps, children: guidelinesSectionProps.contentGuidelines?.children })), expertsSectionProps != null && _jsx(ExpertsSection, { ...expertsSectionProps }), !isJonSnow && peopleSayAboutUsSectionProps != null && (_jsx(PeopleSayAboutUsSection, { ...peopleSayAboutUsSectionProps })), !isJonSnow && asSeeInSectionProps != null && _jsx(AsSeeInSection, { ...asSeeInSectionProps })] }));
|
|
5
5
|
};
|
|
@@ -7,8 +7,7 @@ import {
|
|
|
7
7
|
ExpertsSection,
|
|
8
8
|
GuidelinesSection,
|
|
9
9
|
PeopleSayAboutUsSection,
|
|
10
|
-
TryOurFreeLegalBlogsSection
|
|
11
|
-
TryUsSection
|
|
10
|
+
TryOurFreeLegalBlogsSection
|
|
12
11
|
} from '../../sections'
|
|
13
12
|
import { type AboutUsPageProps } from './AboutUsPageProps'
|
|
14
13
|
|
|
@@ -17,7 +16,6 @@ export const AboutUsPage: React.FC<AboutUsPageProps> = ({
|
|
|
17
16
|
tryOurFreeLegalBlogsSectionProps,
|
|
18
17
|
peopleSayAboutUsSectionProps,
|
|
19
18
|
guidelinesSectionProps,
|
|
20
|
-
tryUsSectionProps,
|
|
21
19
|
expertsSectionProps,
|
|
22
20
|
asSeeInSectionProps,
|
|
23
21
|
isJonSnow = false
|
|
@@ -28,16 +26,15 @@ export const AboutUsPage: React.FC<AboutUsPageProps> = ({
|
|
|
28
26
|
{tryOurFreeLegalBlogsSectionProps != null && (
|
|
29
27
|
<TryOurFreeLegalBlogsSection {...tryOurFreeLegalBlogsSectionProps} />
|
|
30
28
|
)}
|
|
31
|
-
{!isJonSnow && peopleSayAboutUsSectionProps != null && (
|
|
32
|
-
<PeopleSayAboutUsSection {...peopleSayAboutUsSectionProps} />
|
|
33
|
-
)}
|
|
34
29
|
{guidelinesSectionProps != null && (
|
|
35
30
|
<GuidelinesSection {...guidelinesSectionProps}>
|
|
36
31
|
{guidelinesSectionProps.contentGuidelines?.children}
|
|
37
32
|
</GuidelinesSection>
|
|
38
33
|
)}
|
|
39
|
-
{tryUsSectionProps != null && <TryUsSection {...tryUsSectionProps}>{tryUsSectionProps.children}</TryUsSection>}
|
|
40
34
|
{expertsSectionProps != null && <ExpertsSection {...expertsSectionProps} />}
|
|
35
|
+
{!isJonSnow && peopleSayAboutUsSectionProps != null && (
|
|
36
|
+
<PeopleSayAboutUsSection {...peopleSayAboutUsSectionProps} />
|
|
37
|
+
)}
|
|
41
38
|
{!isJonSnow && asSeeInSectionProps != null && <AsSeeInSection {...asSeeInSectionProps} />}
|
|
42
39
|
</>
|
|
43
40
|
)
|
|
@@ -5,6 +5,6 @@ const AsSeeInSection = ({ title, contentAsSeeIn }) => {
|
|
|
5
5
|
if (contentAsSeeIn.trustWorthyImages.images.length === 0) {
|
|
6
6
|
return null;
|
|
7
7
|
}
|
|
8
|
-
return (_jsx("section", { className: 'as-seen-in-section-box', children: _jsxs("div", { className: 'as-seen-in-section', children: [_jsx("h2", { className: 'as-seen-in-section__title', children: title }), _jsx(AsSeeInContent, { trustWorthyImages: contentAsSeeIn.trustWorthyImages, children: contentAsSeeIn.children })] }) }));
|
|
8
|
+
return (_jsx("section", { className: 'as-seen-in-section-box', children: _jsxs("div", { className: 'as-seen-in-section wrapper', children: [_jsx("h2", { className: 'as-seen-in-section__title', children: title }), _jsx(AsSeeInContent, { trustWorthyImages: contentAsSeeIn.trustWorthyImages, children: contentAsSeeIn.children })] }) }));
|
|
9
9
|
};
|
|
10
10
|
export default AsSeeInSection;
|
|
@@ -3,23 +3,21 @@
|
|
|
3
3
|
|
|
4
4
|
.as-seen-in-section-box {
|
|
5
5
|
flex-shrink: 0;
|
|
6
|
-
|
|
7
|
-
background: #fff;
|
|
8
|
-
box-shadow: 0px 2px 6px 0px rgba(2, 55, 74, 0.25);
|
|
9
|
-
margin: 2rem;
|
|
10
|
-
padding: 1rem;
|
|
11
|
-
max-width: 1200px;
|
|
6
|
+
background-color: get-color(secondary, main-light-5);
|
|
12
7
|
|
|
13
8
|
@include laptop {
|
|
14
|
-
margin:
|
|
9
|
+
margin-top: 12rem;
|
|
15
10
|
}
|
|
16
11
|
|
|
17
12
|
.as-seen-in-section {
|
|
18
13
|
display: flex;
|
|
19
14
|
flex-direction: column;
|
|
15
|
+
box-shadow: 0px 2px 6px 0px rgba(2, 55, 74, 0.25);
|
|
16
|
+
background: get-color(others, white);
|
|
17
|
+
transform: translateY(-50%);
|
|
18
|
+
padding: 1.5rem 0;
|
|
20
19
|
|
|
21
20
|
&__title {
|
|
22
|
-
color: get-color(neutral, neutral-2);
|
|
23
21
|
text-align: center;
|
|
24
22
|
font-size: 32px;
|
|
25
23
|
font-family: $font-serif;
|
|
@@ -11,7 +11,7 @@ const AsSeeInSection: FC<AsSeeInSectionProps> = ({ title, contentAsSeeIn }) => {
|
|
|
11
11
|
|
|
12
12
|
return (
|
|
13
13
|
<section className='as-seen-in-section-box'>
|
|
14
|
-
<div className='as-seen-in-section'>
|
|
14
|
+
<div className='as-seen-in-section wrapper'>
|
|
15
15
|
<h2 className='as-seen-in-section__title'>{title}</h2>
|
|
16
16
|
<AsSeeInContent trustWorthyImages={contentAsSeeIn.trustWorthyImages}>{contentAsSeeIn.children}</AsSeeInContent>
|
|
17
17
|
</div>
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
display: flex;
|
|
6
6
|
justify-content: center;
|
|
7
7
|
flex-direction: column;
|
|
8
|
-
background-color: get-color(
|
|
9
|
-
margin-bottom:
|
|
8
|
+
background-color: get-color(primary, main-light-6);
|
|
9
|
+
margin-bottom: 4rem;
|
|
10
10
|
|
|
11
11
|
&__title {
|
|
12
12
|
font-family: $font-serif;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { CardFunctionality } from '../../organisms';
|
|
3
|
+
// import './FunctionalityCardsSection.scss'
|
|
4
|
+
export const FunctionalityCardsSection = ({ cards = [] }) => {
|
|
5
|
+
if (cards.length === 0)
|
|
6
|
+
return null;
|
|
7
|
+
return (_jsx("section", { className: 'functionality-cards', children: cards.map((card) => (_jsx(CardFunctionality, { ...card }, card.id))) }));
|
|
8
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@import '../../../globalStyles/variables.scss';
|
|
2
|
+
@import '../../../globalStyles/mediaqueries.scss';
|
|
3
|
+
|
|
4
|
+
.functionality-cards {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
gap: $global-gap;
|
|
8
|
+
margin-bottom: 2rem;
|
|
9
|
+
width: 100%;
|
|
10
|
+
|
|
11
|
+
@include laptop {
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
width: 50%;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { CardFunctionality } from '../../organisms'
|
|
4
|
+
import { type FunctionalityCardsSectionProps } from './FunctionalityCardsSectionProps'
|
|
5
|
+
// import './FunctionalityCardsSection.scss'
|
|
6
|
+
|
|
7
|
+
export const FunctionalityCardsSection: React.FC<FunctionalityCardsSectionProps> = ({ cards = [] }) => {
|
|
8
|
+
if (cards.length === 0) return null
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<section className='functionality-cards'>
|
|
12
|
+
{cards.map((card) => (
|
|
13
|
+
<CardFunctionality key={card.id} {...card} />
|
|
14
|
+
))}
|
|
15
|
+
</section>
|
|
16
|
+
)
|
|
17
|
+
}
|
package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,6 +2,6 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { GuidelinesContent } from '../../organisms/GuidelinesContent';
|
|
3
3
|
// import './GuidelinesSection.scss'
|
|
4
4
|
const GuidelinesSection = ({ contentGuidelines }) => {
|
|
5
|
-
return (_jsx("section", { className: 'guidelines-section
|
|
5
|
+
return (_jsx("section", { className: 'guidelines-section', children: _jsx(GuidelinesContent, { title: contentGuidelines.title, image: contentGuidelines.image, detail: contentGuidelines.detail, children: contentGuidelines.children }) }));
|
|
6
6
|
};
|
|
7
7
|
export default GuidelinesSection;
|
|
@@ -4,8 +4,9 @@
|
|
|
4
4
|
.guidelines-section {
|
|
5
5
|
display: flex;
|
|
6
6
|
flex-direction: column;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
align-items: center;
|
|
8
|
+
background: get-color(neutral, neutral-6);
|
|
9
|
+
padding-top: 2rem;
|
|
10
|
+
padding-bottom: 2rem;
|
|
11
|
+
margin-top: 3rem;
|
|
11
12
|
}
|
|
@@ -6,8 +6,12 @@ import { type GuidelinesSectionProps } from './GuidelinesSectionProps.types'
|
|
|
6
6
|
|
|
7
7
|
const GuidelinesSection: FC<GuidelinesSectionProps> = ({ contentGuidelines }) => {
|
|
8
8
|
return (
|
|
9
|
-
<section className='guidelines-section
|
|
10
|
-
<GuidelinesContent
|
|
9
|
+
<section className='guidelines-section'>
|
|
10
|
+
<GuidelinesContent
|
|
11
|
+
title={contentGuidelines.title}
|
|
12
|
+
image={contentGuidelines.image}
|
|
13
|
+
detail={contentGuidelines.detail}
|
|
14
|
+
>
|
|
11
15
|
{contentGuidelines.children}
|
|
12
16
|
</GuidelinesContent>
|
|
13
17
|
</section>
|
|
@@ -7,6 +7,7 @@ export * from './ContactSection';
|
|
|
7
7
|
export * from './ExpertsSection';
|
|
8
8
|
export * from './FaqSection';
|
|
9
9
|
export * from './FeaturesRatafiaSection';
|
|
10
|
+
export * from './FunctionalityCardsSection';
|
|
10
11
|
export * from './GuidelinesSection';
|
|
11
12
|
export * from './HowGetYourFormsSection';
|
|
12
13
|
export * from './JumbotronRatafiaSection';
|
|
@@ -7,6 +7,7 @@ export * from './ContactSection';
|
|
|
7
7
|
export * from './ExpertsSection';
|
|
8
8
|
export * from './FaqSection';
|
|
9
9
|
export * from './FeaturesRatafiaSection';
|
|
10
|
+
export * from './FunctionalityCardsSection';
|
|
10
11
|
export * from './GuidelinesSection';
|
|
11
12
|
export * from './HowGetYourFormsSection';
|
|
12
13
|
export * from './JumbotronRatafiaSection';
|
|
@@ -7,6 +7,7 @@ export * from './ContactSection'
|
|
|
7
7
|
export * from './ExpertsSection'
|
|
8
8
|
export * from './FaqSection'
|
|
9
9
|
export * from './FeaturesRatafiaSection'
|
|
10
|
+
export * from './FunctionalityCardsSection'
|
|
10
11
|
export * from './GuidelinesSection'
|
|
11
12
|
export * from './HowGetYourFormsSection'
|
|
12
13
|
export * from './JumbotronRatafiaSection'
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
@import '../components/organisms/Accordion/Accordion.scss';
|
|
114
114
|
@import '../components/organisms/ArticlesList/ArticlesList.scss';
|
|
115
115
|
@import '../components/organisms/AsSeeInContent/AsSeeInContent.scss';
|
|
116
|
-
@import '../components/organisms/
|
|
116
|
+
@import '../components/organisms/CardFunctionality/CardFunctionality.scss';
|
|
117
117
|
@import '../components/organisms/ContactJumbotron/ContactJumbotron.scss';
|
|
118
118
|
@import '../components/organisms/CookiePolicyBar/CookiePolicyBar.scss';
|
|
119
119
|
@import '../components/organisms/ErrorContentRatafia/ErrorContentRatafia.scss';
|
|
@@ -140,6 +140,7 @@
|
|
|
140
140
|
@import '../components/sections/ExpertsSection/ExpertsSection.scss';
|
|
141
141
|
@import '../components/sections/FaqSection/FaqSection.scss';
|
|
142
142
|
@import '../components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.scss';
|
|
143
|
+
@import '../components/sections/FunctionalityCardsSection/FunctionalityCardsSection.scss';
|
|
143
144
|
@import '../components/sections/GuidelinesSection/GuidelinesSection.scss';
|
|
144
145
|
@import '../components/sections/HowGetYourFormsSection/HowGetYourFormsSection.scss';
|
|
145
146
|
@import '../components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.scss';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/custom.d.ts","../src/index.ts","../src/components/atoms/index.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCard.tsx","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCardProps.types.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/index.ts","../src/components/atoms/AddButton/AddButton.tsx","../src/components/atoms/AddButton/AddButtonProps.types.ts","../src/components/atoms/AddButton/index.ts","../src/components/atoms/BaseBox/BaseBox.styled.ts","../src/components/atoms/BaseBox/BaseBox.tsx","../src/components/atoms/BaseBox/BaseBoxProps.types.ts","../src/components/atoms/BaseBox/index.ts","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCard.tsx","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCardProps.types.ts","../src/components/atoms/BenefitRatafiaCard/index.ts","../src/components/atoms/BillCard/BillCard.tsx","../src/components/atoms/BillCard/BillCardProps.types.ts","../src/components/atoms/BillCard/index.ts","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenu.tsx","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenuProps.types.ts","../src/components/atoms/BottomOverlayMenu/index.ts","../src/components/atoms/BreadcrumItem/BreadcrumItem.tsx","../src/components/atoms/BreadcrumItem/BreadcrumItemProps.types.ts","../src/components/atoms/BreadcrumItem/index.ts","../src/components/atoms/Button/Button.tsx","../src/components/atoms/Button/ButtonProps.types.ts","../src/components/atoms/Button/index.ts","../src/components/atoms/ButtonIcon/ButtonIcon.tsx","../src/components/atoms/ButtonIcon/ButtonIconProps.types.ts","../src/components/atoms/ButtonIcon/index.ts","../src/components/atoms/CardPane/CardPane.tsx","../src/components/atoms/CardPane/CardPaneInfo.tsx","../src/components/atoms/CardPane/CardPaneProps.types.ts","../src/components/atoms/CardPane/index.ts","../src/components/atoms/Checkbox/Checkbox.tsx","../src/components/atoms/Checkbox/CheckboxProps.types.ts","../src/components/atoms/Checkbox/index.ts","../src/components/atoms/DatePickerCustom/DatePickerCustom.tsx","../src/components/atoms/DatePickerCustom/DatePickerCustomProps.types.ts","../src/components/atoms/DatePickerCustom/index.ts","../src/components/atoms/DialogMenuIcon/DialogMenuIcon.tsx","../src/components/atoms/DialogMenuIcon/DialogMenuIconProps.types.ts","../src/components/atoms/DialogMenuIcon/index.ts","../src/components/atoms/Disclaimer/Disclaimer.tsx","../src/components/atoms/Disclaimer/DisclaimerProps.types.ts","../src/components/atoms/Disclaimer/index.ts","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafia.tsx","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.ts","../src/components/atoms/DisclaimerRatafia/index.ts","../src/components/atoms/Divider/Divider.tsx","../src/components/atoms/Divider/DividerProps.types.ts","../src/components/atoms/Divider/index.ts","../src/components/atoms/DocumentStatus/DocumentStatus.tsx","../src/components/atoms/DocumentStatus/DocumentStatusProps.types.ts","../src/components/atoms/DocumentStatus/index.ts","../src/components/atoms/DocumentTag/DocumentTag.tsx","../src/components/atoms/DocumentTag/DocumentTagProps.ts","../src/components/atoms/DocumentTag/index.ts","../src/components/atoms/ExpertCard/ExpertCard.tsx","../src/components/atoms/ExpertCard/ExpertCardProps.types.ts","../src/components/atoms/ExpertCard/index.ts","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCard.tsx","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCardProps.types.ts","../src/components/atoms/FeatureRatafiaCard/index.ts","../src/components/atoms/FormFaq/FormFaq.tsx","../src/components/atoms/FormFaq/FormFaqProps.types.ts","../src/components/atoms/FormFaq/index.ts","../src/components/atoms/GoogleButton/GoogleButton.tsx","../src/components/atoms/GoogleButton/GoogleButtonProps.types.ts","../src/components/atoms/GoogleButton/index.ts","../src/components/atoms/IconImage/IconImage.tsx","../src/components/atoms/IconImage/IconImageProps.types.ts","../src/components/atoms/IconImage/index.ts","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColor.tsx","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColorProps.types.ts","../src/components/atoms/IconSvgURLWithThemeColor/index.ts","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.tsx","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.types.ts","../src/components/atoms/IconTextInfoSection/index.ts","../src/components/atoms/InfoBox/InfoBox.tsx","../src/components/atoms/InfoBox/InfoBoxProps.types.ts","../src/components/atoms/InfoBox/index.ts","../src/components/atoms/JumbotronStatic/JumbotronStatic.tsx","../src/components/atoms/JumbotronStatic/JumbotronStaticProps.types.ts","../src/components/atoms/JumbotronStatic/index.ts","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCard.tsx","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCardProps.types.ts","../src/components/atoms/KeyFactRatafiaCard/index.ts","../src/components/atoms/Logo/Logo.tsx","../src/components/atoms/Logo/LogoProps.types.ts","../src/components/atoms/Logo/index.ts","../src/components/atoms/LogoText/LogoText.tsx","../src/components/atoms/LogoText/LogoTextProps.types.ts","../src/components/atoms/LogoText/index.ts","../src/components/atoms/MenuItems/MenuItemProps.types.ts","../src/components/atoms/MenuItems/MenuItems.tsx","../src/components/atoms/MenuItems/index.ts","../src/components/atoms/Message/Message.tsx","../src/components/atoms/Message/MessageProps.types.ts","../src/components/atoms/Message/index.ts","../src/components/atoms/MessageInformation/MessageInformation.tsx","../src/components/atoms/MessageInformation/MessageInformationProps.types.ts","../src/components/atoms/MessageInformation/index.ts","../src/components/atoms/MoreDocsItem/MoreDocsItem.tsx","../src/components/atoms/MoreDocsItem/MoreDocsItemProps.ts","../src/components/atoms/MoreDocsItem/index.ts","../src/components/atoms/NavMenuItem/NavMenuItem.tsx","../src/components/atoms/NavMenuItem/NavMenuItemProps.ts","../src/components/atoms/NavMenuItem/index.ts","../src/components/atoms/PaypalButton/PaypalButton.tsx","../src/components/atoms/PaypalButton/PaypalButtonProps.types.ts","../src/components/atoms/PaypalButton/index.ts","../src/components/atoms/PopularDocsItem/PopularDocsItem.tsx","../src/components/atoms/PopularDocsItem/PopularDocsItemProps.ts","../src/components/atoms/PopularDocsItem/index.ts","../src/components/atoms/ProgressBar/ProgressBar.tsx","../src/components/atoms/ProgressBar/ProgressBarProps.types.ts","../src/components/atoms/ProgressBar/index.ts","../src/components/atoms/Radio/Radio.tsx","../src/components/atoms/Radio/RadioProps.types.ts","../src/components/atoms/Radio/index.ts","../src/components/atoms/RemoveButton/RemoveButton.tsx","../src/components/atoms/RemoveButton/RemoveButtonProps.types.ts","../src/components/atoms/RemoveButton/index.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafia.tsx","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafiaProps.types.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/index.ts","../src/components/atoms/RichTextInner/RichTextInner.tsx","../src/components/atoms/RichTextInner/RichTextInnerProps.types.ts","../src/components/atoms/RichTextInner/index.ts","../src/components/atoms/RichTextStrapi/RichTextMedia.ts","../src/components/atoms/RichTextStrapi/RichTextStrapi.tsx","../src/components/atoms/RichTextStrapi/RichTextStrapiProps.ts","../src/components/atoms/RichTextStrapi/index.ts","../src/components/atoms/RichTextStrapi/useFormattedText.tsx","../src/components/atoms/SearchSelect/SearchSelect.tsx","../src/components/atoms/SearchSelect/SearchSelectProps.types.ts","../src/components/atoms/SearchSelect/index.ts","../src/components/atoms/ShowMoreBox/ShowMoreBox.tsx","../src/components/atoms/ShowMoreBox/ShowMoreBoxProps.ts","../src/components/atoms/ShowMoreBox/index.ts","../src/components/atoms/SidemenuTab/SideMenuTabProps.types.ts","../src/components/atoms/SidemenuTab/SidemenuTab.tsx","../src/components/atoms/SidemenuTab/index.ts","../src/components/atoms/Spinner/Spinner.tsx","../src/components/atoms/Spinner/SpinnerProps.types.ts","../src/components/atoms/Spinner/index.ts","../src/components/atoms/StepRatafiaCard/StepRatafiaCard.tsx","../src/components/atoms/StepRatafiaCard/StepRatafiaCardProps.types.ts","../src/components/atoms/StepRatafiaCard/index.ts","../src/components/atoms/Tag/Tag.tsx","../src/components/atoms/Tag/TagProps.ts","../src/components/atoms/Tag/index.ts","../src/components/atoms/TagRatafiaItem/TagRatafiaItem.tsx","../src/components/atoms/TagRatafiaItem/TagRatafiaItemProps.types.ts","../src/components/atoms/TagRatafiaItem/index.ts","../src/components/atoms/Tagline/Tagline.tsx","../src/components/atoms/Tagline/TaglineProps.types.ts","../src/components/atoms/Tagline/index.ts","../src/components/atoms/TestAB/TestAB.tsx","../src/components/atoms/TextArea/TextArea.tsx","../src/components/atoms/TextArea/TextAreaProps.types.ts","../src/components/atoms/TextArea/index.ts","../src/components/atoms/Toggle/Toggle.tsx","../src/components/atoms/Toggle/ToggleProps.types.ts","../src/components/atoms/Toggle/index.ts","../src/components/atoms/Tooltip/Tooltip.tsx","../src/components/atoms/Tooltip/TooltipProps.types.ts","../src/components/atoms/Tooltip/index.ts","../src/components/atoms/TopBar/TopBar.tsx","../src/components/atoms/TopBar/TopBarProps.types.ts","../src/components/atoms/TopBar/index.ts","../src/components/atoms/TopBarMobile/TopBarMobile.tsx","../src/components/atoms/TopBarMobile/index.ts","../src/components/atoms/TrustPilot/TrustPilot.tsx","../src/components/atoms/TrustPilot/TrustPilotProps.types.ts","../src/components/atoms/TrustPilot/index.ts","../src/components/atoms/Video/Video.tsx","../src/components/atoms/Video/VideoProps.types.ts","../src/components/atoms/Video/index.ts","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItems.tsx","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItemsProps.types.ts","../src/components/atoms/WhyLawDistrictItems/index.ts","../src/components/atoms/WideInfoBar/WideInfoBar.tsx","../src/components/atoms/WideInfoBar/index.ts","../src/components/molecules/index.ts","../src/components/molecules/AccordionItem/AccordionItem.tsx","../src/components/molecules/AccordionItem/AccordionItemProps.types.ts","../src/components/molecules/AccordionItem/index.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardList.tsx","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardListProps.types.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/index.ts","../src/components/molecules/AlsoKnownAs/AlsoKnownAs.tsx","../src/components/molecules/AlsoKnownAs/AlsoKnownAsProps.types.ts","../src/components/molecules/AlsoKnownAs/index.ts","../src/components/molecules/Article/Article.tsx","../src/components/molecules/Article/ArticleProps.types.ts","../src/components/molecules/Article/index.ts","../src/components/molecules/BaseBoxList/BaseBoxList.tsx","../src/components/molecules/BaseBoxList/BaseBoxListProps.types.ts","../src/components/molecules/BaseBoxList/index.ts","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardList.tsx","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardListProps.types.ts","../src/components/molecules/BenefitRatafiaCardList/index.ts","../src/components/molecules/BottomFixedBar/BottomFixedBar.tsx","../src/components/molecules/BottomFixedBar/BottomFixedBarProps.types.ts","../src/components/molecules/BottomFixedBar/index.ts","../src/components/molecules/BottomOverlay/BottomOverlay.tsx","../src/components/molecules/BottomOverlay/BottomOverlayProps.types.ts","../src/components/molecules/BottomOverlay/index.ts","../src/components/molecules/BoxForm/BoxForm.tsx","../src/components/molecules/BoxForm/BoxFormProps.types.ts","../src/components/molecules/BoxForm/index.ts","../src/components/molecules/Breadcrumb/Breadcrumb.tsx","../src/components/molecules/Breadcrumb/BreadcrumbProps.types.ts","../src/components/molecules/Breadcrumb/index.ts","../src/components/molecules/ContactBox/ContactBox.tsx","../src/components/molecules/ContactBox/ContactBoxProps.types.ts","../src/components/molecules/ContactBox/index.ts","../src/components/molecules/ContinueEditingBanner/ContinueEditingBanner.tsx","../src/components/molecules/ContinueEditingBanner/ContinueEditingBannerProps.types.ts","../src/components/molecules/ContinueEditingBanner/index.ts","../src/components/molecules/CountDownMessage/CountDownMessage.tsx","../src/components/molecules/CountDownMessage/CountDownMessageProps.types.ts","../src/components/molecules/CountDownMessage/index.ts","../src/components/molecules/EmailContactBox/EmailContactBox.tsx","../src/components/molecules/EmailContactBox/EmailContactBoxProps.ts","../src/components/molecules/EmailContactBox/index.ts","../src/components/molecules/ExpertCardList/ExpertCardList.tsx","../src/components/molecules/ExpertCardList/ExpertCardListProps.types.ts","../src/components/molecules/ExpertCardList/index.ts","../src/components/molecules/FaqItem/FaqItem.tsx","../src/components/molecules/FaqItem/FaqItemProps.ts","../src/components/molecules/FaqItem/index.ts","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardList.tsx","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardListProps.types.ts","../src/components/molecules/FeatureRatafiaCardList/index.ts","../src/components/molecules/Feedback/Feedback.tsx","../src/components/molecules/Feedback/FeedbackProps.types.ts","../src/components/molecules/Feedback/index.ts","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.tsx","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.types.ts","../src/components/molecules/FreeDocModalContent/index.ts","../src/components/molecules/HeaderRatafia/HeaderRatafia.tsx","../src/components/molecules/HeaderRatafia/HeaderRatafiaProps.types.ts","../src/components/molecules/HeaderRatafia/index.ts","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.tsx","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafiaProps.types.ts","../src/components/molecules/KeyFactCardListRatafia/index.ts","../src/components/molecules/MenuItemsSection/MenuItemsSection.tsx","../src/components/molecules/MenuItemsSection/MenuItemsSectionProps.types.ts","../src/components/molecules/MenuItemsSection/index.ts","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContent.tsx","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContentProps.types.ts","../src/components/molecules/MidBannerRatafiaContent/index.ts","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.tsx","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSampleProps.types.ts","../src/components/molecules/MidBannerRatafiaSample/index.ts","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktop.tsx","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktopProps.ts","../src/components/molecules/MoreDocsDesktop/index.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.tsx","../src/components/molecules/MoreDocsMobile/MoreDocsMobileProps.ts","../src/components/molecules/MoreDocsMobile/index.ts","../src/components/molecules/NavBarDropDown/NavBarDropDown.tsx","../src/components/molecules/NavBarDropDown/NavBarDropDownProps.types.ts","../src/components/molecules/NavBarDropDown/index.ts","../src/components/molecules/Pagination/PageStepControl.tsx","../src/components/molecules/Pagination/PageStepControlProps.types.ts","../src/components/molecules/Pagination/PageSteps.tsx","../src/components/molecules/Pagination/Pagination.tsx","../src/components/molecules/Pagination/PaginationProps.types.ts","../src/components/molecules/Pagination/index.ts","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktop.tsx","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktopProps.types.ts","../src/components/molecules/PhoneContactBoxDesktop/index.ts","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobile.tsx","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobileProps.types.ts","../src/components/molecules/PhoneContactBoxMobile/index.ts","../src/components/molecules/PopularDocs/PopularDocs.tsx","../src/components/molecules/PopularDocs/PopularDocsProps.ts","../src/components/molecules/PopularDocs/index.ts","../src/components/molecules/PricingCard/PricingCard.tsx","../src/components/molecules/PricingCard/PricingCardProps.types.ts","../src/components/molecules/PricingCard/index.ts","../src/components/molecules/Snackbar/Snackbar.tsx","../src/components/molecules/Snackbar/SnackbarProps.types.ts","../src/components/molecules/Snackbar/index.ts","../src/components/molecules/StepGetForm/StepGetForm.tsx","../src/components/molecules/StepGetForm/StepGetFormProps.types.ts","../src/components/molecules/StepGetForm/index.ts","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardList.tsx","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardListProps.types.ts","../src/components/molecules/StepRatafiaCardList/index.ts","../src/components/molecules/TagsRatafiaList/TagsRatafiaList.tsx","../src/components/molecules/TagsRatafiaList/TagsRatafiaListProps.types.ts","../src/components/molecules/TagsRatafiaList/index.ts","../src/components/molecules/TextInput/Input.tsx","../src/components/molecules/TextInput/TextInput.tsx","../src/components/molecules/TextInput/TextInputLabel.tsx","../src/components/molecules/TextInput/TextInputMessage.tsx","../src/components/molecules/TextInput/TextInputProps.types.ts","../src/components/molecules/TextInput/TextInputTooltip.tsx","../src/components/molecules/TextInput/index.ts","../src/components/molecules/TooltipMenu/TooltipMenu.tsx","../src/components/molecules/TooltipMenu/TooltipMenuProps.types.ts","../src/components/molecules/TooltipMenu/index.ts","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.tsx","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsitesProps.types.ts","../src/components/molecules/TrustworthyWebsites/index.ts","../src/components/molecules/TypeModulesList/TypeModulesList.tsx","../src/components/molecules/TypeModulesList/TypeModulesListProps.types.ts","../src/components/molecules/TypeModulesList/index.ts","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZone.tsx","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZoneProps.types.ts","../src/components/molecules/UploadRatafiaZone/index.ts","../src/components/organisms/index.ts","../src/components/organisms/AboutUsContent/AboutUsContent.tsx","../src/components/organisms/AboutUsContent/AboutUsContentProps.types.ts","../src/components/organisms/AboutUsContent/index.ts","../src/components/organisms/Accordion/Accordion.context.tsx","../src/components/organisms/Accordion/Accordion.tsx","../src/components/organisms/Accordion/AccordionProps.types.ts","../src/components/organisms/Accordion/index.ts","../src/components/organisms/ArticlesList/ArticlesList.tsx","../src/components/organisms/ArticlesList/ArticlesListProps.types.ts","../src/components/organisms/ArticlesList/index.ts","../src/components/organisms/AsSeeInContent/AsSeeInContent.tsx","../src/components/organisms/AsSeeInContent/AsSeeInContentProps.types.ts","../src/components/organisms/AsSeeInContent/index.ts","../src/components/organisms/CardFuncionality/CardFuncionality.tsx","../src/components/organisms/CardFuncionality/CardFuncionalityProps.ts","../src/components/organisms/CardFuncionality/index.ts","../src/components/organisms/ContactJumbotron/ContactJumbotron.tsx","../src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.ts","../src/components/organisms/ContactJumbotron/index.ts","../src/components/organisms/CookiePolicyBar/CookiePolicyBar.tsx","../src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.ts","../src/components/organisms/CookiePolicyBar/index.ts","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafia.tsx","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafiaProps.types.ts","../src/components/organisms/ErrorContentRatafia/index.ts","../src/components/organisms/FaqGroup/FaqGroup.tsx","../src/components/organisms/FaqGroup/FaqGroupProps.ts","../src/components/organisms/FaqGroup/index.ts","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContent.tsx","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContentProps.types.ts","../src/components/organisms/FeaturesRatafiaContent/index.ts","../src/components/organisms/GuidelinesContent/GuidelinesContent.tsx","../src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts","../src/components/organisms/GuidelinesContent/index.ts","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.tsx","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContentProps.types.ts","../src/components/organisms/JumbotronRatafiaContent/index.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafia.tsx","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/index.ts","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafia.tsx","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsResultContentRatafia/index.ts","../src/components/organisms/LanguageSelector/LanguageSelector.tsx","../src/components/organisms/LanguageSelector/LanguageSelectorProps.ts","../src/components/organisms/LanguageSelector/LenguageSelectorItem.ts","../src/components/organisms/LanguageSelector/index.ts","../src/components/organisms/LanguageSelector/useLanguageOptions.tsx","../src/components/organisms/LanguageSelector/useLanguageSelected.tsx","../src/components/organisms/LanguageSelector/useLanguagesSelector.tsx","../src/components/organisms/LanguageSelectorMobile/LanguageSelectorMobile.tsx","../src/components/organisms/LanguageSelectorMobile/index.ts","../src/components/organisms/LayoutRatafia/LayoutRatafia.tsx","../src/components/organisms/LayoutRatafia/LayoutRatafiaProps.types.ts","../src/components/organisms/LayoutRatafia/index.ts","../src/components/organisms/ListStepsGetForm/ListStepsGetForm.tsx","../src/components/organisms/ListStepsGetForm/ListStepsGetFormProps.types.ts","../src/components/organisms/ListStepsGetForm/index.ts","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContent.tsx","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContentProps.types.ts","../src/components/organisms/LoginRatafiaContent/index.ts","../src/components/organisms/MobileBottomBar/MobileBottomBar.tsx","../src/components/organisms/MobileBottomBar/MobileBottomBarProps.types.ts","../src/components/organisms/MobileBottomBar/index.ts","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContent.tsx","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContentProps.types.ts","../src/components/organisms/StepsRatafiaContent/index.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.tsx","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContentProps.types.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/index.ts","../src/components/pages/index.ts","../src/components/pages/AboutUsPage/AboutUsPage.tsx","../src/components/pages/AboutUsPage/AboutUsPageProps.ts","../src/components/pages/AboutUsPage/index.ts","../src/components/pages/ContactUsPage/ContactUsPage.tsx","../src/components/pages/ContactUsPage/ContactUsPageProps.ts","../src/components/pages/ContactUsPage/index.ts","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.tsx","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPageProps.types.ts","../src/components/pages/ErrorRatafiaPage/index.ts","../src/components/pages/FaqsPage/FaqsPage.tsx","../src/components/pages/FaqsPage/FaqsPageProps.ts","../src/components/pages/FaqsPage/index.ts","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.tsx","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPageProps.types.ts","../src/components/pages/KeyFactsResultRatafiaPage/index.ts","../src/components/pages/LegalPage/LegalPage.tsx","../src/components/pages/LegalPage/LegalPageProps.ts","../src/components/pages/LegalPage/index.ts","../src/components/pages/LoginRatafiaPage/LoginRatafiaPage.tsx","../src/components/pages/LoginRatafiaPage/LoginRatafiaPageProps.ts","../src/components/pages/LoginRatafiaPage/index.ts","../src/components/pages/RatafiaLandingPage/RatafiaLandingPage.tsx","../src/components/pages/RatafiaLandingPage/RatafiaLandingPageProps.types.ts","../src/components/pages/RatafiaLandingPage/index.ts","../src/components/pages/UnsubscribePage/UnsubscribePage.tsx","../src/components/pages/UnsubscribePage/UnsubscribePageProps.ts","../src/components/pages/UnsubscribePage/index.ts","../src/components/sections/index.ts","../src/components/sections/AboutUsSection/AboutUsSection.tsx","../src/components/sections/AboutUsSection/AboutUsSectionProps.types.ts","../src/components/sections/AboutUsSection/index.ts","../src/components/sections/AsSeeInSection/AsSeeInSection.tsx","../src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts","../src/components/sections/AsSeeInSection/index.ts","../src/components/sections/AsideMenuSection/AsideMenuSection.tsx","../src/components/sections/AsideMenuSection/AsideMenuSectionProps.ts","../src/components/sections/AsideMenuSection/index.ts","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.ts","../src/components/sections/BenefitsRatafiaSection/index.ts","../src/components/sections/BlogSection/BlogSection.tsx","../src/components/sections/BlogSection/BlogSectionProps.types.ts","../src/components/sections/BlogSection/index.ts","../src/components/sections/ContactSection/ContactSection.tsx","../src/components/sections/ContactSection/ContactSectionProps.ts","../src/components/sections/ContactSection/index.ts","../src/components/sections/ExpertsSection/ExpertsSection.tsx","../src/components/sections/ExpertsSection/ExpertsSectionProps.types.ts","../src/components/sections/ExpertsSection/index.ts","../src/components/sections/FaqSection/FaqSection.tsx","../src/components/sections/FaqSection/FaqSectionProps.ts","../src/components/sections/FaqSection/index.ts","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.tsx","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSectionProps.types.ts","../src/components/sections/FeaturesRatafiaSection/index.ts","../src/components/sections/GuidelinesSection/GuidelinesSection.tsx","../src/components/sections/GuidelinesSection/GuidelinesSectionProps.types.ts","../src/components/sections/GuidelinesSection/index.ts","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSectionProps.types.ts","../src/components/sections/HowGetYourFormsSection/index.ts","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSectionProps.types.ts","../src/components/sections/JumbotronRatafiaSection/index.ts","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.tsx","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSectionProps.types.ts","../src/components/sections/JumbotronSimplifiedSection/index.ts","../src/components/sections/LearnMoreSection/LearnMoreSection.tsx","../src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.ts","../src/components/sections/LearnMoreSection/index.ts","../src/components/sections/LegalSection/LegalSection.tsx","../src/components/sections/LegalSection/LegalSectionProps.ts","../src/components/sections/LegalSection/index.ts","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSectionProps.types.ts","../src/components/sections/MidBannerRatafiaSection/index.ts","../src/components/sections/MoreDocsSection/MoreDocsSection.tsx","../src/components/sections/MoreDocsSection/MoreDocsSectionProps.ts","../src/components/sections/MoreDocsSection/index.ts","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.ts","../src/components/sections/PeopleSayAboutUsSection/index.ts","../src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx","../src/components/sections/StepsRatafiaSection/StepsRatafiaSectionProps.types.ts","../src/components/sections/StepsRatafiaSection/index.ts","../src/components/sections/TryItRatafiaSection/TryItRatafiaSection.tsx","../src/components/sections/TryItRatafiaSection/TryItRatafiaSectionProps.types.ts","../src/components/sections/TryItRatafiaSection/index.ts","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSectionProps.types.ts","../src/components/sections/TryOurFreeLegalBlogsSection/index.ts","../src/components/sections/TryUsSection/TryUsSection.tsx","../src/components/sections/TryUsSection/TryUsSectionProps.ts","../src/components/sections/TryUsSection/index.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx","../src/components/sections/UnsubscribeSection/UnsubscribeSectionProps.ts","../src/components/sections/UnsubscribeSection/index.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSectionProps.types.ts","../src/components/sections/WhyLawDistrictSection/index.ts","../src/hooks/index.ts","../src/hooks/useIntersectionObserver.tsx","../src/hooks/useIsMobileOrTable.tsx","../src/utils/ProductCategory.ts","../src/utils/getCategoryIcons.tsx","../src/utils/getDateFormatMMMMYYYY.ts","../src/utils/getGatsbyImageSkeleton.tsx","../src/utils/getRichTextSkeleton.tsx","../src/utils/index.ts","../src/utils/replaceAll.ts","../src/utils/stringSlugify.ts"],"version":"5.6.3"}
|
|
1
|
+
{"root":["../src/custom.d.ts","../src/index.ts","../src/components/atoms/index.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCard.tsx","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCardProps.types.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/index.ts","../src/components/atoms/AddButton/AddButton.tsx","../src/components/atoms/AddButton/AddButtonProps.types.ts","../src/components/atoms/AddButton/index.ts","../src/components/atoms/BaseBox/BaseBox.styled.ts","../src/components/atoms/BaseBox/BaseBox.tsx","../src/components/atoms/BaseBox/BaseBoxProps.types.ts","../src/components/atoms/BaseBox/index.ts","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCard.tsx","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCardProps.types.ts","../src/components/atoms/BenefitRatafiaCard/index.ts","../src/components/atoms/BillCard/BillCard.tsx","../src/components/atoms/BillCard/BillCardProps.types.ts","../src/components/atoms/BillCard/index.ts","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenu.tsx","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenuProps.types.ts","../src/components/atoms/BottomOverlayMenu/index.ts","../src/components/atoms/BreadcrumItem/BreadcrumItem.tsx","../src/components/atoms/BreadcrumItem/BreadcrumItemProps.types.ts","../src/components/atoms/BreadcrumItem/index.ts","../src/components/atoms/Button/Button.tsx","../src/components/atoms/Button/ButtonProps.types.ts","../src/components/atoms/Button/index.ts","../src/components/atoms/ButtonIcon/ButtonIcon.tsx","../src/components/atoms/ButtonIcon/ButtonIconProps.types.ts","../src/components/atoms/ButtonIcon/index.ts","../src/components/atoms/CardPane/CardPane.tsx","../src/components/atoms/CardPane/CardPaneInfo.tsx","../src/components/atoms/CardPane/CardPaneProps.types.ts","../src/components/atoms/CardPane/index.ts","../src/components/atoms/Checkbox/Checkbox.tsx","../src/components/atoms/Checkbox/CheckboxProps.types.ts","../src/components/atoms/Checkbox/index.ts","../src/components/atoms/DatePickerCustom/DatePickerCustom.tsx","../src/components/atoms/DatePickerCustom/DatePickerCustomProps.types.ts","../src/components/atoms/DatePickerCustom/index.ts","../src/components/atoms/DialogMenuIcon/DialogMenuIcon.tsx","../src/components/atoms/DialogMenuIcon/DialogMenuIconProps.types.ts","../src/components/atoms/DialogMenuIcon/index.ts","../src/components/atoms/Disclaimer/Disclaimer.tsx","../src/components/atoms/Disclaimer/DisclaimerProps.types.ts","../src/components/atoms/Disclaimer/index.ts","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafia.tsx","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.ts","../src/components/atoms/DisclaimerRatafia/index.ts","../src/components/atoms/Divider/Divider.tsx","../src/components/atoms/Divider/DividerProps.types.ts","../src/components/atoms/Divider/index.ts","../src/components/atoms/DocumentStatus/DocumentStatus.tsx","../src/components/atoms/DocumentStatus/DocumentStatusProps.types.ts","../src/components/atoms/DocumentStatus/index.ts","../src/components/atoms/DocumentTag/DocumentTag.tsx","../src/components/atoms/DocumentTag/DocumentTagProps.ts","../src/components/atoms/DocumentTag/index.ts","../src/components/atoms/ExpertCard/ExpertCard.tsx","../src/components/atoms/ExpertCard/ExpertCardProps.types.ts","../src/components/atoms/ExpertCard/index.ts","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCard.tsx","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCardProps.types.ts","../src/components/atoms/FeatureRatafiaCard/index.ts","../src/components/atoms/FormFaq/FormFaq.tsx","../src/components/atoms/FormFaq/FormFaqProps.types.ts","../src/components/atoms/FormFaq/index.ts","../src/components/atoms/GoogleButton/GoogleButton.tsx","../src/components/atoms/GoogleButton/GoogleButtonProps.types.ts","../src/components/atoms/GoogleButton/index.ts","../src/components/atoms/IconImage/IconImage.tsx","../src/components/atoms/IconImage/IconImageProps.types.ts","../src/components/atoms/IconImage/index.ts","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColor.tsx","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColorProps.types.ts","../src/components/atoms/IconSvgURLWithThemeColor/index.ts","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.tsx","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.types.ts","../src/components/atoms/IconTextInfoSection/index.ts","../src/components/atoms/InfoBox/InfoBox.tsx","../src/components/atoms/InfoBox/InfoBoxProps.types.ts","../src/components/atoms/InfoBox/index.ts","../src/components/atoms/JumbotronStatic/JumbotronStatic.tsx","../src/components/atoms/JumbotronStatic/JumbotronStaticProps.types.ts","../src/components/atoms/JumbotronStatic/index.ts","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCard.tsx","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCardProps.types.ts","../src/components/atoms/KeyFactRatafiaCard/index.ts","../src/components/atoms/Logo/Logo.tsx","../src/components/atoms/Logo/LogoProps.types.ts","../src/components/atoms/Logo/index.ts","../src/components/atoms/LogoText/LogoText.tsx","../src/components/atoms/LogoText/LogoTextProps.types.ts","../src/components/atoms/LogoText/index.ts","../src/components/atoms/MenuItems/MenuItemProps.types.ts","../src/components/atoms/MenuItems/MenuItems.tsx","../src/components/atoms/MenuItems/index.ts","../src/components/atoms/Message/Message.tsx","../src/components/atoms/Message/MessageProps.types.ts","../src/components/atoms/Message/index.ts","../src/components/atoms/MessageInformation/MessageInformation.tsx","../src/components/atoms/MessageInformation/MessageInformationProps.types.ts","../src/components/atoms/MessageInformation/index.ts","../src/components/atoms/MoreDocsItem/MoreDocsItem.tsx","../src/components/atoms/MoreDocsItem/MoreDocsItemProps.ts","../src/components/atoms/MoreDocsItem/index.ts","../src/components/atoms/NavMenuItem/NavMenuItem.tsx","../src/components/atoms/NavMenuItem/NavMenuItemProps.ts","../src/components/atoms/NavMenuItem/index.ts","../src/components/atoms/PaypalButton/PaypalButton.tsx","../src/components/atoms/PaypalButton/PaypalButtonProps.types.ts","../src/components/atoms/PaypalButton/index.ts","../src/components/atoms/PopularDocsItem/PopularDocsItem.tsx","../src/components/atoms/PopularDocsItem/PopularDocsItemProps.ts","../src/components/atoms/PopularDocsItem/index.ts","../src/components/atoms/ProgressBar/ProgressBar.tsx","../src/components/atoms/ProgressBar/ProgressBarProps.types.ts","../src/components/atoms/ProgressBar/index.ts","../src/components/atoms/Radio/Radio.tsx","../src/components/atoms/Radio/RadioProps.types.ts","../src/components/atoms/Radio/index.ts","../src/components/atoms/RemoveButton/RemoveButton.tsx","../src/components/atoms/RemoveButton/RemoveButtonProps.types.ts","../src/components/atoms/RemoveButton/index.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafia.tsx","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafiaProps.types.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/index.ts","../src/components/atoms/RichTextInner/RichTextInner.tsx","../src/components/atoms/RichTextInner/RichTextInnerProps.types.ts","../src/components/atoms/RichTextInner/index.ts","../src/components/atoms/RichTextStrapi/RichTextMedia.ts","../src/components/atoms/RichTextStrapi/RichTextStrapi.tsx","../src/components/atoms/RichTextStrapi/RichTextStrapiProps.ts","../src/components/atoms/RichTextStrapi/index.ts","../src/components/atoms/RichTextStrapi/useFormattedText.tsx","../src/components/atoms/SearchSelect/SearchSelect.tsx","../src/components/atoms/SearchSelect/SearchSelectProps.types.ts","../src/components/atoms/SearchSelect/index.ts","../src/components/atoms/ShowMoreBox/ShowMoreBox.tsx","../src/components/atoms/ShowMoreBox/ShowMoreBoxProps.ts","../src/components/atoms/ShowMoreBox/index.ts","../src/components/atoms/SidemenuTab/SideMenuTabProps.types.ts","../src/components/atoms/SidemenuTab/SidemenuTab.tsx","../src/components/atoms/SidemenuTab/index.ts","../src/components/atoms/Spinner/Spinner.tsx","../src/components/atoms/Spinner/SpinnerProps.types.ts","../src/components/atoms/Spinner/index.ts","../src/components/atoms/StepRatafiaCard/StepRatafiaCard.tsx","../src/components/atoms/StepRatafiaCard/StepRatafiaCardProps.types.ts","../src/components/atoms/StepRatafiaCard/index.ts","../src/components/atoms/Tag/Tag.tsx","../src/components/atoms/Tag/TagProps.ts","../src/components/atoms/Tag/index.ts","../src/components/atoms/TagRatafiaItem/TagRatafiaItem.tsx","../src/components/atoms/TagRatafiaItem/TagRatafiaItemProps.types.ts","../src/components/atoms/TagRatafiaItem/index.ts","../src/components/atoms/Tagline/Tagline.tsx","../src/components/atoms/Tagline/TaglineProps.types.ts","../src/components/atoms/Tagline/index.ts","../src/components/atoms/TestAB/TestAB.tsx","../src/components/atoms/TextArea/TextArea.tsx","../src/components/atoms/TextArea/TextAreaProps.types.ts","../src/components/atoms/TextArea/index.ts","../src/components/atoms/Toggle/Toggle.tsx","../src/components/atoms/Toggle/ToggleProps.types.ts","../src/components/atoms/Toggle/index.ts","../src/components/atoms/Tooltip/Tooltip.tsx","../src/components/atoms/Tooltip/TooltipProps.types.ts","../src/components/atoms/Tooltip/index.ts","../src/components/atoms/TopBar/TopBar.tsx","../src/components/atoms/TopBar/TopBarProps.types.ts","../src/components/atoms/TopBar/index.ts","../src/components/atoms/TopBarMobile/TopBarMobile.tsx","../src/components/atoms/TopBarMobile/index.ts","../src/components/atoms/TrustPilot/TrustPilot.tsx","../src/components/atoms/TrustPilot/TrustPilotProps.types.ts","../src/components/atoms/TrustPilot/index.ts","../src/components/atoms/Video/Video.tsx","../src/components/atoms/Video/VideoProps.types.ts","../src/components/atoms/Video/index.ts","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItems.tsx","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItemsProps.types.ts","../src/components/atoms/WhyLawDistrictItems/index.ts","../src/components/atoms/WideInfoBar/WideInfoBar.tsx","../src/components/atoms/WideInfoBar/index.ts","../src/components/molecules/index.ts","../src/components/molecules/AccordionItem/AccordionItem.tsx","../src/components/molecules/AccordionItem/AccordionItemProps.types.ts","../src/components/molecules/AccordionItem/index.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardList.tsx","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardListProps.types.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/index.ts","../src/components/molecules/AlsoKnownAs/AlsoKnownAs.tsx","../src/components/molecules/AlsoKnownAs/AlsoKnownAsProps.types.ts","../src/components/molecules/AlsoKnownAs/index.ts","../src/components/molecules/Article/Article.tsx","../src/components/molecules/Article/ArticleProps.types.ts","../src/components/molecules/Article/index.ts","../src/components/molecules/BaseBoxList/BaseBoxList.tsx","../src/components/molecules/BaseBoxList/BaseBoxListProps.types.ts","../src/components/molecules/BaseBoxList/index.ts","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardList.tsx","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardListProps.types.ts","../src/components/molecules/BenefitRatafiaCardList/index.ts","../src/components/molecules/BottomFixedBar/BottomFixedBar.tsx","../src/components/molecules/BottomFixedBar/BottomFixedBarProps.types.ts","../src/components/molecules/BottomFixedBar/index.ts","../src/components/molecules/BottomOverlay/BottomOverlay.tsx","../src/components/molecules/BottomOverlay/BottomOverlayProps.types.ts","../src/components/molecules/BottomOverlay/index.ts","../src/components/molecules/BoxForm/BoxForm.tsx","../src/components/molecules/BoxForm/BoxFormProps.types.ts","../src/components/molecules/BoxForm/index.ts","../src/components/molecules/Breadcrumb/Breadcrumb.tsx","../src/components/molecules/Breadcrumb/BreadcrumbProps.types.ts","../src/components/molecules/Breadcrumb/index.ts","../src/components/molecules/ContactBox/ContactBox.tsx","../src/components/molecules/ContactBox/ContactBoxProps.types.ts","../src/components/molecules/ContactBox/index.ts","../src/components/molecules/ContinueEditingBanner/ContinueEditingBanner.tsx","../src/components/molecules/ContinueEditingBanner/ContinueEditingBannerProps.types.ts","../src/components/molecules/ContinueEditingBanner/index.ts","../src/components/molecules/CountDownMessage/CountDownMessage.tsx","../src/components/molecules/CountDownMessage/CountDownMessageProps.types.ts","../src/components/molecules/CountDownMessage/index.ts","../src/components/molecules/EmailContactBox/EmailContactBox.tsx","../src/components/molecules/EmailContactBox/EmailContactBoxProps.ts","../src/components/molecules/EmailContactBox/index.ts","../src/components/molecules/ExpertCardList/ExpertCardList.tsx","../src/components/molecules/ExpertCardList/ExpertCardListProps.types.ts","../src/components/molecules/ExpertCardList/index.ts","../src/components/molecules/FaqItem/FaqItem.tsx","../src/components/molecules/FaqItem/FaqItemProps.ts","../src/components/molecules/FaqItem/index.ts","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardList.tsx","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardListProps.types.ts","../src/components/molecules/FeatureRatafiaCardList/index.ts","../src/components/molecules/Feedback/Feedback.tsx","../src/components/molecules/Feedback/FeedbackProps.types.ts","../src/components/molecules/Feedback/index.ts","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.tsx","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.types.ts","../src/components/molecules/FreeDocModalContent/index.ts","../src/components/molecules/HeaderRatafia/HeaderRatafia.tsx","../src/components/molecules/HeaderRatafia/HeaderRatafiaProps.types.ts","../src/components/molecules/HeaderRatafia/index.ts","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.tsx","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafiaProps.types.ts","../src/components/molecules/KeyFactCardListRatafia/index.ts","../src/components/molecules/MenuItemsSection/MenuItemsSection.tsx","../src/components/molecules/MenuItemsSection/MenuItemsSectionProps.types.ts","../src/components/molecules/MenuItemsSection/index.ts","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContent.tsx","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContentProps.types.ts","../src/components/molecules/MidBannerRatafiaContent/index.ts","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.tsx","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSampleProps.types.ts","../src/components/molecules/MidBannerRatafiaSample/index.ts","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktop.tsx","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktopProps.ts","../src/components/molecules/MoreDocsDesktop/index.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.tsx","../src/components/molecules/MoreDocsMobile/MoreDocsMobileProps.ts","../src/components/molecules/MoreDocsMobile/index.ts","../src/components/molecules/NavBarDropDown/NavBarDropDown.tsx","../src/components/molecules/NavBarDropDown/NavBarDropDownProps.types.ts","../src/components/molecules/NavBarDropDown/index.ts","../src/components/molecules/Pagination/PageStepControl.tsx","../src/components/molecules/Pagination/PageStepControlProps.types.ts","../src/components/molecules/Pagination/PageSteps.tsx","../src/components/molecules/Pagination/Pagination.tsx","../src/components/molecules/Pagination/PaginationProps.types.ts","../src/components/molecules/Pagination/index.ts","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktop.tsx","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktopProps.types.ts","../src/components/molecules/PhoneContactBoxDesktop/index.ts","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobile.tsx","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobileProps.types.ts","../src/components/molecules/PhoneContactBoxMobile/index.ts","../src/components/molecules/PopularDocs/PopularDocs.tsx","../src/components/molecules/PopularDocs/PopularDocsProps.ts","../src/components/molecules/PopularDocs/index.ts","../src/components/molecules/PricingCard/PricingCard.tsx","../src/components/molecules/PricingCard/PricingCardProps.types.ts","../src/components/molecules/PricingCard/index.ts","../src/components/molecules/Snackbar/Snackbar.tsx","../src/components/molecules/Snackbar/SnackbarProps.types.ts","../src/components/molecules/Snackbar/index.ts","../src/components/molecules/StepGetForm/StepGetForm.tsx","../src/components/molecules/StepGetForm/StepGetFormProps.types.ts","../src/components/molecules/StepGetForm/index.ts","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardList.tsx","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardListProps.types.ts","../src/components/molecules/StepRatafiaCardList/index.ts","../src/components/molecules/TagsRatafiaList/TagsRatafiaList.tsx","../src/components/molecules/TagsRatafiaList/TagsRatafiaListProps.types.ts","../src/components/molecules/TagsRatafiaList/index.ts","../src/components/molecules/TextInput/Input.tsx","../src/components/molecules/TextInput/TextInput.tsx","../src/components/molecules/TextInput/TextInputLabel.tsx","../src/components/molecules/TextInput/TextInputMessage.tsx","../src/components/molecules/TextInput/TextInputProps.types.ts","../src/components/molecules/TextInput/TextInputTooltip.tsx","../src/components/molecules/TextInput/index.ts","../src/components/molecules/TooltipMenu/TooltipMenu.tsx","../src/components/molecules/TooltipMenu/TooltipMenuProps.types.ts","../src/components/molecules/TooltipMenu/index.ts","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.tsx","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsitesProps.types.ts","../src/components/molecules/TrustworthyWebsites/index.ts","../src/components/molecules/TypeModulesList/TypeModulesList.tsx","../src/components/molecules/TypeModulesList/TypeModulesListProps.types.ts","../src/components/molecules/TypeModulesList/index.ts","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZone.tsx","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZoneProps.types.ts","../src/components/molecules/UploadRatafiaZone/index.ts","../src/components/organisms/index.ts","../src/components/organisms/AboutUsContent/AboutUsContent.tsx","../src/components/organisms/AboutUsContent/AboutUsContentProps.types.ts","../src/components/organisms/AboutUsContent/index.ts","../src/components/organisms/Accordion/Accordion.context.tsx","../src/components/organisms/Accordion/Accordion.tsx","../src/components/organisms/Accordion/AccordionProps.types.ts","../src/components/organisms/Accordion/index.ts","../src/components/organisms/ArticlesList/ArticlesList.tsx","../src/components/organisms/ArticlesList/ArticlesListProps.types.ts","../src/components/organisms/ArticlesList/index.ts","../src/components/organisms/AsSeeInContent/AsSeeInContent.tsx","../src/components/organisms/AsSeeInContent/AsSeeInContentProps.types.ts","../src/components/organisms/AsSeeInContent/index.ts","../src/components/organisms/CardFunctionality/CardFunctionality.tsx","../src/components/organisms/CardFunctionality/CardFunctionalityProps.ts","../src/components/organisms/CardFunctionality/index.ts","../src/components/organisms/ContactJumbotron/ContactJumbotron.tsx","../src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.ts","../src/components/organisms/ContactJumbotron/index.ts","../src/components/organisms/CookiePolicyBar/CookiePolicyBar.tsx","../src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.ts","../src/components/organisms/CookiePolicyBar/index.ts","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafia.tsx","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafiaProps.types.ts","../src/components/organisms/ErrorContentRatafia/index.ts","../src/components/organisms/FaqGroup/FaqGroup.tsx","../src/components/organisms/FaqGroup/FaqGroupProps.ts","../src/components/organisms/FaqGroup/index.ts","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContent.tsx","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContentProps.types.ts","../src/components/organisms/FeaturesRatafiaContent/index.ts","../src/components/organisms/GuidelinesContent/GuidelinesContent.tsx","../src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts","../src/components/organisms/GuidelinesContent/index.ts","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.tsx","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContentProps.types.ts","../src/components/organisms/JumbotronRatafiaContent/index.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafia.tsx","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/index.ts","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafia.tsx","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsResultContentRatafia/index.ts","../src/components/organisms/LanguageSelector/LanguageSelector.tsx","../src/components/organisms/LanguageSelector/LanguageSelectorProps.ts","../src/components/organisms/LanguageSelector/LenguageSelectorItem.ts","../src/components/organisms/LanguageSelector/index.ts","../src/components/organisms/LanguageSelector/useLanguageOptions.tsx","../src/components/organisms/LanguageSelector/useLanguageSelected.tsx","../src/components/organisms/LanguageSelector/useLanguagesSelector.tsx","../src/components/organisms/LanguageSelectorMobile/LanguageSelectorMobile.tsx","../src/components/organisms/LanguageSelectorMobile/index.ts","../src/components/organisms/LayoutRatafia/LayoutRatafia.tsx","../src/components/organisms/LayoutRatafia/LayoutRatafiaProps.types.ts","../src/components/organisms/LayoutRatafia/index.ts","../src/components/organisms/ListStepsGetForm/ListStepsGetForm.tsx","../src/components/organisms/ListStepsGetForm/ListStepsGetFormProps.types.ts","../src/components/organisms/ListStepsGetForm/index.ts","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContent.tsx","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContentProps.types.ts","../src/components/organisms/LoginRatafiaContent/index.ts","../src/components/organisms/MobileBottomBar/MobileBottomBar.tsx","../src/components/organisms/MobileBottomBar/MobileBottomBarProps.types.ts","../src/components/organisms/MobileBottomBar/index.ts","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContent.tsx","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContentProps.types.ts","../src/components/organisms/StepsRatafiaContent/index.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.tsx","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContentProps.types.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/index.ts","../src/components/pages/index.ts","../src/components/pages/AboutUsPage/AboutUsPage.tsx","../src/components/pages/AboutUsPage/AboutUsPageProps.ts","../src/components/pages/AboutUsPage/index.ts","../src/components/pages/ContactUsPage/ContactUsPage.tsx","../src/components/pages/ContactUsPage/ContactUsPageProps.ts","../src/components/pages/ContactUsPage/index.ts","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.tsx","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPageProps.types.ts","../src/components/pages/ErrorRatafiaPage/index.ts","../src/components/pages/FaqsPage/FaqsPage.tsx","../src/components/pages/FaqsPage/FaqsPageProps.ts","../src/components/pages/FaqsPage/index.ts","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.tsx","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPageProps.types.ts","../src/components/pages/KeyFactsResultRatafiaPage/index.ts","../src/components/pages/LegalPage/LegalPage.tsx","../src/components/pages/LegalPage/LegalPageProps.ts","../src/components/pages/LegalPage/index.ts","../src/components/pages/LoginRatafiaPage/LoginRatafiaPage.tsx","../src/components/pages/LoginRatafiaPage/LoginRatafiaPageProps.ts","../src/components/pages/LoginRatafiaPage/index.ts","../src/components/pages/RatafiaLandingPage/RatafiaLandingPage.tsx","../src/components/pages/RatafiaLandingPage/RatafiaLandingPageProps.types.ts","../src/components/pages/RatafiaLandingPage/index.ts","../src/components/pages/UnsubscribePage/UnsubscribePage.tsx","../src/components/pages/UnsubscribePage/UnsubscribePageProps.ts","../src/components/pages/UnsubscribePage/index.ts","../src/components/sections/index.ts","../src/components/sections/AboutUsSection/AboutUsSection.tsx","../src/components/sections/AboutUsSection/AboutUsSectionProps.types.ts","../src/components/sections/AboutUsSection/index.ts","../src/components/sections/AsSeeInSection/AsSeeInSection.tsx","../src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts","../src/components/sections/AsSeeInSection/index.ts","../src/components/sections/AsideMenuSection/AsideMenuSection.tsx","../src/components/sections/AsideMenuSection/AsideMenuSectionProps.ts","../src/components/sections/AsideMenuSection/index.ts","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.ts","../src/components/sections/BenefitsRatafiaSection/index.ts","../src/components/sections/BlogSection/BlogSection.tsx","../src/components/sections/BlogSection/BlogSectionProps.types.ts","../src/components/sections/BlogSection/index.ts","../src/components/sections/ContactSection/ContactSection.tsx","../src/components/sections/ContactSection/ContactSectionProps.ts","../src/components/sections/ContactSection/index.ts","../src/components/sections/ExpertsSection/ExpertsSection.tsx","../src/components/sections/ExpertsSection/ExpertsSectionProps.types.ts","../src/components/sections/ExpertsSection/index.ts","../src/components/sections/FaqSection/FaqSection.tsx","../src/components/sections/FaqSection/FaqSectionProps.ts","../src/components/sections/FaqSection/index.ts","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.tsx","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSectionProps.types.ts","../src/components/sections/FeaturesRatafiaSection/index.ts","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.ts","../src/components/sections/FunctionalityCardsSection/index.ts","../src/components/sections/GuidelinesSection/GuidelinesSection.tsx","../src/components/sections/GuidelinesSection/GuidelinesSectionProps.types.ts","../src/components/sections/GuidelinesSection/index.ts","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSectionProps.types.ts","../src/components/sections/HowGetYourFormsSection/index.ts","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSectionProps.types.ts","../src/components/sections/JumbotronRatafiaSection/index.ts","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.tsx","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSectionProps.types.ts","../src/components/sections/JumbotronSimplifiedSection/index.ts","../src/components/sections/LearnMoreSection/LearnMoreSection.tsx","../src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.ts","../src/components/sections/LearnMoreSection/index.ts","../src/components/sections/LegalSection/LegalSection.tsx","../src/components/sections/LegalSection/LegalSectionProps.ts","../src/components/sections/LegalSection/index.ts","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSectionProps.types.ts","../src/components/sections/MidBannerRatafiaSection/index.ts","../src/components/sections/MoreDocsSection/MoreDocsSection.tsx","../src/components/sections/MoreDocsSection/MoreDocsSectionProps.ts","../src/components/sections/MoreDocsSection/index.ts","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.ts","../src/components/sections/PeopleSayAboutUsSection/index.ts","../src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx","../src/components/sections/StepsRatafiaSection/StepsRatafiaSectionProps.types.ts","../src/components/sections/StepsRatafiaSection/index.ts","../src/components/sections/TryItRatafiaSection/TryItRatafiaSection.tsx","../src/components/sections/TryItRatafiaSection/TryItRatafiaSectionProps.types.ts","../src/components/sections/TryItRatafiaSection/index.ts","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSectionProps.types.ts","../src/components/sections/TryOurFreeLegalBlogsSection/index.ts","../src/components/sections/TryUsSection/TryUsSection.tsx","../src/components/sections/TryUsSection/TryUsSectionProps.ts","../src/components/sections/TryUsSection/index.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx","../src/components/sections/UnsubscribeSection/UnsubscribeSectionProps.ts","../src/components/sections/UnsubscribeSection/index.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSectionProps.types.ts","../src/components/sections/WhyLawDistrictSection/index.ts","../src/hooks/index.ts","../src/hooks/useIntersectionObserver.tsx","../src/hooks/useIsMobileOrTable.tsx","../src/utils/ProductCategory.ts","../src/utils/getCategoryIcons.tsx","../src/utils/getDateFormatMMMMYYYY.ts","../src/utils/getGatsbyImageSkeleton.tsx","../src/utils/getRichTextSkeleton.tsx","../src/utils/index.ts","../src/utils/replaceAll.ts","../src/utils/stringSlugify.ts"],"version":"5.6.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm_leadtech/legal-lib-components",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
"./Accordion": "./dist/src/components/organisms/Accordion/index.js",
|
|
229
229
|
"./ArticlesList": "./dist/src/components/organisms/ArticlesList/index.js",
|
|
230
230
|
"./AsSeeInContent": "./dist/src/components/organisms/AsSeeInContent/index.js",
|
|
231
|
-
"./
|
|
231
|
+
"./CardFunctionality": "./dist/src/components/organisms/CardFunctionality/index.js",
|
|
232
232
|
"./ContactJumbotron": "./dist/src/components/organisms/ContactJumbotron/index.js",
|
|
233
233
|
"./CookiePolicyBar": "./dist/src/components/organisms/CookiePolicyBar/index.js",
|
|
234
234
|
"./ErrorContentRatafia": "./dist/src/components/organisms/ErrorContentRatafia/index.js",
|
|
@@ -264,6 +264,7 @@
|
|
|
264
264
|
"./ExpertsSection": "./dist/src/components/sections/ExpertsSection/index.js",
|
|
265
265
|
"./FaqSection": "./dist/src/components/sections/FaqSection/index.js",
|
|
266
266
|
"./FeaturesRatafiaSection": "./dist/src/components/sections/FeaturesRatafiaSection/index.js",
|
|
267
|
+
"./FunctionalityCardsSection": "./dist/src/components/sections/FunctionalityCardsSection/index.js",
|
|
267
268
|
"./GuidelinesSection": "./dist/src/components/sections/GuidelinesSection/index.js",
|
|
268
269
|
"./HowGetYourFormsSection": "./dist/src/components/sections/HowGetYourFormsSection/index.js",
|
|
269
270
|
"./JumbotronRatafiaSection": "./dist/src/components/sections/JumbotronRatafiaSection/index.js",
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { Button, Tag } from '../../atoms';
|
|
3
|
-
// import './CardFuncionality.scss'
|
|
4
|
-
export const CardFuncionality = ({ icon, title, text, tags, cta }) => {
|
|
5
|
-
return (_jsxs("article", { className: 'card-funcionality', children: [_jsxs("div", { className: 'content-tags', children: [_jsxs("div", { className: 'content', children: [_jsxs("div", { className: 'header', children: [_jsx("div", { className: 'icon', children: icon }), _jsx("p", { className: 'title', children: title })] }), _jsx("div", { title: text, className: 'text', children: text })] }), _jsx("div", { className: 'tags', children: tags.map((tag) => (_jsx(Tag, { ...tag }, tag.id))) })] }), _jsx(Button, { ...cta, givenClass: 'cta-card' })] }));
|
|
6
|
-
};
|