@npm_leadtech/legal-lib-components 5.18.3 → 5.18.5
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/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.js +1 -12
- package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.ts +1 -12
- package/dist/src/components/organisms/LayoutRatafia/LayoutRatafia.styled.js +5 -0
- package/dist/src/components/organisms/LayoutRatafia/LayoutRatafia.styled.ts +5 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.d.ts +3 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.js +5 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.styled.d.ts +1 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.styled.js +41 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.styled.ts +42 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.tsx +16 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafiaProps.types.d.ts +5 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafiaProps.types.ts +5 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/index.d.ts +2 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/index.js +1 -0
- package/dist/src/components/organisms/LimitReachedContentRatafia/index.ts +2 -0
- package/dist/src/components/organisms/index.d.ts +1 -0
- package/dist/src/components/organisms/index.js +1 -0
- package/dist/src/components/organisms/index.ts +1 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPage.d.ts +3 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPage.js +13 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPage.styled.d.ts +1 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPage.styled.js +22 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPage.styled.ts +23 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPage.tsx +56 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPageProps.types.d.ts +15 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPageProps.types.js +1 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPageProps.types.ts +16 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/index.d.ts +2 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/index.js +1 -0
- package/dist/src/components/pages/LimitReachedRatafiaPage/index.ts +2 -0
- package/dist/src/components/pages/index.d.ts +1 -1
- package/dist/src/components/pages/index.js +1 -1
- package/dist/src/components/pages/index.ts +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPage.d.ts +0 -3
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPage.js +0 -12
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPage.styled.d.ts +0 -1
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPage.styled.js +0 -28
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPage.styled.ts +0 -29
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPage.tsx +0 -38
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPageProps.d.ts +0 -33
- package/dist/src/components/pages/PricingRatafiaPage/PricingRatafiaPageProps.ts +0 -38
- package/dist/src/components/pages/PricingRatafiaPage/index.d.ts +0 -2
- package/dist/src/components/pages/PricingRatafiaPage/index.js +0 -2
- package/dist/src/components/pages/PricingRatafiaPage/index.ts +0 -2
- /package/dist/src/components/{pages/PricingRatafiaPage/PricingRatafiaPageProps.js → organisms/LimitReachedContentRatafia/LimitReachedContentRatafiaProps.types.js} +0 -0
package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.js
CHANGED
|
@@ -44,26 +44,16 @@ export const RatafiaSubscriptionCardStyled = styled.div `
|
|
|
44
44
|
align-items: center;
|
|
45
45
|
justify-content: space-between;
|
|
46
46
|
gap: 0.5rem 1rem;
|
|
47
|
-
|
|
48
|
-
@media ${device.mobile} {
|
|
49
|
-
flex-direction: column;
|
|
50
|
-
align-items: start;
|
|
51
|
-
}
|
|
52
47
|
}
|
|
53
48
|
|
|
54
49
|
&__title {
|
|
55
50
|
display: flex;
|
|
56
51
|
flex-flow: row nowrap;
|
|
57
52
|
align-items: center;
|
|
58
|
-
gap: 0.
|
|
59
|
-
color: var(--neutral-neutral-1);
|
|
53
|
+
gap: 0.8rem;
|
|
60
54
|
font-weight: bold;
|
|
61
55
|
}
|
|
62
56
|
|
|
63
|
-
&__price-text {
|
|
64
|
-
font-size: 0.875rem;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
57
|
hr {
|
|
68
58
|
border: none;
|
|
69
59
|
border-top: 1px solid var(--neutral-neutral-4);
|
|
@@ -82,7 +72,6 @@ export const RatafiaSubscriptionCardStyled = styled.div `
|
|
|
82
72
|
justify-content: flex-start;
|
|
83
73
|
gap: 0.5rem;
|
|
84
74
|
color: var(--neutral-neutral-1);
|
|
85
|
-
font-size: 0.875rem;
|
|
86
75
|
text-align: left;
|
|
87
76
|
padding: 0.25rem 0;
|
|
88
77
|
|
package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.ts
CHANGED
|
@@ -45,26 +45,16 @@ export const RatafiaSubscriptionCardStyled = styled.div`
|
|
|
45
45
|
align-items: center;
|
|
46
46
|
justify-content: space-between;
|
|
47
47
|
gap: 0.5rem 1rem;
|
|
48
|
-
|
|
49
|
-
@media ${device.mobile} {
|
|
50
|
-
flex-direction: column;
|
|
51
|
-
align-items: start;
|
|
52
|
-
}
|
|
53
48
|
}
|
|
54
49
|
|
|
55
50
|
&__title {
|
|
56
51
|
display: flex;
|
|
57
52
|
flex-flow: row nowrap;
|
|
58
53
|
align-items: center;
|
|
59
|
-
gap: 0.
|
|
60
|
-
color: var(--neutral-neutral-1);
|
|
54
|
+
gap: 0.8rem;
|
|
61
55
|
font-weight: bold;
|
|
62
56
|
}
|
|
63
57
|
|
|
64
|
-
&__price-text {
|
|
65
|
-
font-size: 0.875rem;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
58
|
hr {
|
|
69
59
|
border: none;
|
|
70
60
|
border-top: 1px solid var(--neutral-neutral-4);
|
|
@@ -83,7 +73,6 @@ export const RatafiaSubscriptionCardStyled = styled.div`
|
|
|
83
73
|
justify-content: flex-start;
|
|
84
74
|
gap: 0.5rem;
|
|
85
75
|
color: var(--neutral-neutral-1);
|
|
86
|
-
font-size: 0.875rem;
|
|
87
76
|
text-align: left;
|
|
88
77
|
padding: 0.25rem 0;
|
|
89
78
|
|
|
@@ -15,8 +15,12 @@ export const LayoutRatafiaStyled = styled.div `
|
|
|
15
15
|
flex-direction: column;
|
|
16
16
|
align-items: center;
|
|
17
17
|
justify-content: space-between;
|
|
18
|
+
|
|
18
19
|
padding: 1.5rem 1.5rem 0 1.5rem;
|
|
20
|
+
|
|
19
21
|
width: 100%;
|
|
22
|
+
height: calc(100vh - 5.125rem);
|
|
23
|
+
|
|
20
24
|
border-radius: 16px 16px 0 0;
|
|
21
25
|
background: var(--others-white);
|
|
22
26
|
box-shadow: var(--box-shadow-small);
|
|
@@ -26,6 +30,7 @@ export const LayoutRatafiaStyled = styled.div `
|
|
|
26
30
|
}
|
|
27
31
|
@media ${device['portrait-tablets']} {
|
|
28
32
|
width: 800px;
|
|
33
|
+
height: 890px;
|
|
29
34
|
}
|
|
30
35
|
|
|
31
36
|
&__header {
|
|
@@ -16,8 +16,12 @@ export const LayoutRatafiaStyled = styled.div`
|
|
|
16
16
|
flex-direction: column;
|
|
17
17
|
align-items: center;
|
|
18
18
|
justify-content: space-between;
|
|
19
|
+
|
|
19
20
|
padding: 1.5rem 1.5rem 0 1.5rem;
|
|
21
|
+
|
|
20
22
|
width: 100%;
|
|
23
|
+
height: calc(100vh - 5.125rem);
|
|
24
|
+
|
|
21
25
|
border-radius: 16px 16px 0 0;
|
|
22
26
|
background: var(--others-white);
|
|
23
27
|
box-shadow: var(--box-shadow-small);
|
|
@@ -27,6 +31,7 @@ export const LayoutRatafiaStyled = styled.div`
|
|
|
27
31
|
}
|
|
28
32
|
@media ${device['portrait-tablets']} {
|
|
29
33
|
width: 800px;
|
|
34
|
+
height: 890px;
|
|
30
35
|
}
|
|
31
36
|
|
|
32
37
|
&__header {
|
package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { LimitReachedContentRatafiaStyled } from './LimitReachedContentRatafia.styled';
|
|
3
|
+
export const LimitReachedContentRatafia = ({ title, message, icon }) => {
|
|
4
|
+
return (_jsxs(LimitReachedContentRatafiaStyled, { className: 'limit-reached-content-ratafia', children: [_jsx("h2", { className: 'limit-reached-content-ratafia__title sans-serif --bold-weight', children: title }), _jsxs("div", { className: 'limit-reached-content-ratafia__message', children: [_jsx("div", { className: 'limit-reached-content-ratafia__message__icon', children: icon }), _jsx("div", { className: 'limit-reached-content-ratafia__message__text sans-serif --small', children: message })] })] }));
|
|
5
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LimitReachedContentRatafiaStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
export const LimitReachedContentRatafiaStyled = styled.div `
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
align-items: flex-start;
|
|
7
|
+
gap: 1rem;
|
|
8
|
+
align-self: stretch;
|
|
9
|
+
@media ${device['portrait-tablets']} {
|
|
10
|
+
gap: 2rem;
|
|
11
|
+
}
|
|
12
|
+
.limit-reached-content-ratafia {
|
|
13
|
+
&__title {
|
|
14
|
+
color: var(--neutral-neutral-2);
|
|
15
|
+
font-size: 1rem;
|
|
16
|
+
@media ${device['portrait-tablets']} {
|
|
17
|
+
font-size: 1.125rem;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
&__message {
|
|
21
|
+
display: flex;
|
|
22
|
+
padding: 0.5rem;
|
|
23
|
+
align-items: flex-start;
|
|
24
|
+
gap: 0.5rem;
|
|
25
|
+
@media ${device['portrait-tablets']} {
|
|
26
|
+
align-items: center;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
border-radius: 0.25rem;
|
|
30
|
+
background: var(--neutral-neutral-6);
|
|
31
|
+
&__icon {
|
|
32
|
+
width: 0.875rem;
|
|
33
|
+
height: 0.875rem;
|
|
34
|
+
flex-shrink: 0;
|
|
35
|
+
}
|
|
36
|
+
&__text {
|
|
37
|
+
color: var(--neutral-neutral-2);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
`;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints'
|
|
2
|
+
import styled from 'styled-components'
|
|
3
|
+
|
|
4
|
+
export const LimitReachedContentRatafiaStyled = styled.div`
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
align-items: flex-start;
|
|
8
|
+
gap: 1rem;
|
|
9
|
+
align-self: stretch;
|
|
10
|
+
@media ${device['portrait-tablets']} {
|
|
11
|
+
gap: 2rem;
|
|
12
|
+
}
|
|
13
|
+
.limit-reached-content-ratafia {
|
|
14
|
+
&__title {
|
|
15
|
+
color: var(--neutral-neutral-2);
|
|
16
|
+
font-size: 1rem;
|
|
17
|
+
@media ${device['portrait-tablets']} {
|
|
18
|
+
font-size: 1.125rem;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
&__message {
|
|
22
|
+
display: flex;
|
|
23
|
+
padding: 0.5rem;
|
|
24
|
+
align-items: flex-start;
|
|
25
|
+
gap: 0.5rem;
|
|
26
|
+
@media ${device['portrait-tablets']} {
|
|
27
|
+
align-items: center;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
border-radius: 0.25rem;
|
|
31
|
+
background: var(--neutral-neutral-6);
|
|
32
|
+
&__icon {
|
|
33
|
+
width: 0.875rem;
|
|
34
|
+
height: 0.875rem;
|
|
35
|
+
flex-shrink: 0;
|
|
36
|
+
}
|
|
37
|
+
&__text {
|
|
38
|
+
color: var(--neutral-neutral-2);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
`
|
package/dist/src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.tsx
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React, { type FC } from 'react'
|
|
2
|
+
|
|
3
|
+
import { LimitReachedContentRatafiaProps } from '../LimitReachedContentRatafia'
|
|
4
|
+
import { LimitReachedContentRatafiaStyled } from './LimitReachedContentRatafia.styled'
|
|
5
|
+
|
|
6
|
+
export const LimitReachedContentRatafia: FC<LimitReachedContentRatafiaProps> = ({ title, message, icon }) => {
|
|
7
|
+
return (
|
|
8
|
+
<LimitReachedContentRatafiaStyled className='limit-reached-content-ratafia'>
|
|
9
|
+
<h2 className='limit-reached-content-ratafia__title sans-serif --bold-weight'>{title}</h2>
|
|
10
|
+
<div className='limit-reached-content-ratafia__message'>
|
|
11
|
+
<div className='limit-reached-content-ratafia__message__icon'>{icon}</div>
|
|
12
|
+
<div className='limit-reached-content-ratafia__message__text sans-serif --small'>{message}</div>
|
|
13
|
+
</div>
|
|
14
|
+
</LimitReachedContentRatafiaStyled>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LimitReachedContentRatafia } from './LimitReachedContentRatafia';
|
|
@@ -16,6 +16,7 @@ export * from './KeyFactsResultContentRatafia';
|
|
|
16
16
|
export * from './LanguageSelector';
|
|
17
17
|
export * from './LanguageSelectorMobile';
|
|
18
18
|
export * from './LayoutRatafia';
|
|
19
|
+
export * from './LimitReachedContentRatafia';
|
|
19
20
|
export * from './ListStepsGetForm';
|
|
20
21
|
export * from './LoginRatafiaContent';
|
|
21
22
|
export * from './MobileBottomBar';
|
|
@@ -16,6 +16,7 @@ export * from './KeyFactsResultContentRatafia';
|
|
|
16
16
|
export * from './LanguageSelector';
|
|
17
17
|
export * from './LanguageSelectorMobile';
|
|
18
18
|
export * from './LayoutRatafia';
|
|
19
|
+
export * from './LimitReachedContentRatafia';
|
|
19
20
|
export * from './ListStepsGetForm';
|
|
20
21
|
export * from './LoginRatafiaContent';
|
|
21
22
|
export * from './MobileBottomBar';
|
|
@@ -16,6 +16,7 @@ export * from './KeyFactsResultContentRatafia'
|
|
|
16
16
|
export * from './LanguageSelector'
|
|
17
17
|
export * from './LanguageSelectorMobile'
|
|
18
18
|
export * from './LayoutRatafia'
|
|
19
|
+
export * from './LimitReachedContentRatafia'
|
|
19
20
|
export * from './ListStepsGetForm'
|
|
20
21
|
export * from './LoginRatafiaContent'
|
|
21
22
|
export * from './MobileBottomBar'
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Button } from '../../atoms';
|
|
3
|
+
import DisclaimerRatafia from '../../atoms/DisclaimerRatafia/DisclaimerRatafia';
|
|
4
|
+
import { LayoutRatafia } from '../../organisms/LayoutRatafia';
|
|
5
|
+
import { LimitReachedContentRatafia } from '../../organisms';
|
|
6
|
+
import { LimitReachedRatafiaPageStyled } from './LimitReachedRatafiaPage.styled';
|
|
7
|
+
export const LimitReachedRatafiaPage = ({ header, limitReachedContent, disclaimer, goToDashboardCta }) => {
|
|
8
|
+
const ctaButton = (_jsx(Button, { givenClass: 'limit-reached-ratafia-page__cta', dataQa: goToDashboardCta.dataQa, color: 'primary', label: goToDashboardCta.label, link: goToDashboardCta.link }));
|
|
9
|
+
const content = _jsx(LimitReachedContentRatafia, { ...limitReachedContent });
|
|
10
|
+
const footerDesktop = (_jsx(DisclaimerRatafia, { icon: disclaimer.icon, text: disclaimer.text, copyrightText: disclaimer.copyrightText, ctaTextShowDisclaimer: disclaimer.ctaTextShowDisclaimer, ctaTextCloseDisclaimer: disclaimer.ctaTextCloseDisclaimer }));
|
|
11
|
+
const footerMobile = (_jsxs(_Fragment, { children: [footerDesktop, ctaButton] }));
|
|
12
|
+
return (_jsx(LimitReachedRatafiaPageStyled, { className: 'limit-reached-ratafia-page', children: _jsx(LayoutRatafia, { header: header, content: content, cta: ctaButton, footerDesktop: footerDesktop, footerMobile: footerMobile }) }));
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LimitReachedRatafiaPageStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
export const LimitReachedRatafiaPageStyled = styled.div `
|
|
4
|
+
background-color: var(--neutral-neutral-6);
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
align-items: flex-start;
|
|
8
|
+
flex: 1 0 0;
|
|
9
|
+
align-self: stretch;
|
|
10
|
+
gap: 1.5rem;
|
|
11
|
+
.limit-reached-ratafia-page {
|
|
12
|
+
&__cta {
|
|
13
|
+
align-self: start;
|
|
14
|
+
display: block;
|
|
15
|
+
width: 100%;
|
|
16
|
+
margin-top: 0.5rem;
|
|
17
|
+
@media ${device['portrait-tablets']} {
|
|
18
|
+
display: inline-block;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
`;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints'
|
|
2
|
+
import styled from 'styled-components'
|
|
3
|
+
|
|
4
|
+
export const LimitReachedRatafiaPageStyled = styled.div`
|
|
5
|
+
background-color: var(--neutral-neutral-6);
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
align-items: flex-start;
|
|
9
|
+
flex: 1 0 0;
|
|
10
|
+
align-self: stretch;
|
|
11
|
+
gap: 1.5rem;
|
|
12
|
+
.limit-reached-ratafia-page {
|
|
13
|
+
&__cta {
|
|
14
|
+
align-self: start;
|
|
15
|
+
display: block;
|
|
16
|
+
width: 100%;
|
|
17
|
+
margin-top: 0.5rem;
|
|
18
|
+
@media ${device['portrait-tablets']} {
|
|
19
|
+
display: inline-block;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
`
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Button } from '../../atoms'
|
|
4
|
+
import DisclaimerRatafia from '../../atoms/DisclaimerRatafia/DisclaimerRatafia'
|
|
5
|
+
import { LayoutRatafia } from '../../organisms/LayoutRatafia'
|
|
6
|
+
import { LimitReachedContentRatafia } from '../../organisms'
|
|
7
|
+
import { LimitReachedRatafiaPageProps } from './LimitReachedRatafiaPageProps.types'
|
|
8
|
+
import { LimitReachedRatafiaPageStyled } from './LimitReachedRatafiaPage.styled'
|
|
9
|
+
|
|
10
|
+
export const LimitReachedRatafiaPage: React.FC<LimitReachedRatafiaPageProps> = ({
|
|
11
|
+
header,
|
|
12
|
+
limitReachedContent,
|
|
13
|
+
disclaimer,
|
|
14
|
+
goToDashboardCta
|
|
15
|
+
}) => {
|
|
16
|
+
const ctaButton = (
|
|
17
|
+
<Button
|
|
18
|
+
givenClass='limit-reached-ratafia-page__cta'
|
|
19
|
+
dataQa={goToDashboardCta.dataQa}
|
|
20
|
+
color='primary'
|
|
21
|
+
label={goToDashboardCta.label}
|
|
22
|
+
link={goToDashboardCta.link}
|
|
23
|
+
/>
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
const content = <LimitReachedContentRatafia {...limitReachedContent} />
|
|
27
|
+
|
|
28
|
+
const footerDesktop = (
|
|
29
|
+
<DisclaimerRatafia
|
|
30
|
+
icon={disclaimer.icon}
|
|
31
|
+
text={disclaimer.text}
|
|
32
|
+
copyrightText={disclaimer.copyrightText}
|
|
33
|
+
ctaTextShowDisclaimer={disclaimer.ctaTextShowDisclaimer}
|
|
34
|
+
ctaTextCloseDisclaimer={disclaimer.ctaTextCloseDisclaimer}
|
|
35
|
+
/>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
const footerMobile = (
|
|
39
|
+
<>
|
|
40
|
+
{footerDesktop}
|
|
41
|
+
{ctaButton}
|
|
42
|
+
</>
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
return (
|
|
46
|
+
<LimitReachedRatafiaPageStyled className='limit-reached-ratafia-page'>
|
|
47
|
+
<LayoutRatafia
|
|
48
|
+
header={header}
|
|
49
|
+
content={content}
|
|
50
|
+
cta={ctaButton}
|
|
51
|
+
footerDesktop={footerDesktop}
|
|
52
|
+
footerMobile={footerMobile}
|
|
53
|
+
/>
|
|
54
|
+
</LimitReachedRatafiaPageStyled>
|
|
55
|
+
)
|
|
56
|
+
}
|
package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPageProps.types.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DisclaimerRatafiaProps } from '../../atoms';
|
|
2
|
+
import { type HeaderRatafiaProps } from '../../molecules';
|
|
3
|
+
import { LimitReachedContentRatafiaProps } from '../../organisms';
|
|
4
|
+
export interface LimitReachedRatafiaPageProps {
|
|
5
|
+
header: HeaderRatafiaProps;
|
|
6
|
+
limitReachedContent: LimitReachedContentRatafiaProps;
|
|
7
|
+
disclaimer: DisclaimerRatafiaProps;
|
|
8
|
+
goToDashboardCta: cta;
|
|
9
|
+
}
|
|
10
|
+
interface cta {
|
|
11
|
+
label: string;
|
|
12
|
+
link?: string;
|
|
13
|
+
dataQa: string;
|
|
14
|
+
}
|
|
15
|
+
export {};
|
package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPageProps.types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPageProps.types.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { DisclaimerRatafiaProps } from '../../atoms'
|
|
2
|
+
import { type HeaderRatafiaProps } from '../../molecules'
|
|
3
|
+
import { LimitReachedContentRatafiaProps } from '../../organisms'
|
|
4
|
+
|
|
5
|
+
export interface LimitReachedRatafiaPageProps {
|
|
6
|
+
header: HeaderRatafiaProps
|
|
7
|
+
limitReachedContent: LimitReachedContentRatafiaProps
|
|
8
|
+
disclaimer: DisclaimerRatafiaProps
|
|
9
|
+
goToDashboardCta: cta
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface cta {
|
|
13
|
+
label: string
|
|
14
|
+
link?: string
|
|
15
|
+
dataQa: string
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LimitReachedRatafiaPage } from './LimitReachedRatafiaPage';
|
|
@@ -4,7 +4,7 @@ export * from './ErrorRatafiaPage';
|
|
|
4
4
|
export * from './FaqsPage';
|
|
5
5
|
export * from './KeyFactsResultRatafiaPage';
|
|
6
6
|
export * from './LegalPage';
|
|
7
|
+
export * from './LimitReachedRatafiaPage';
|
|
7
8
|
export * from './RatafiaLandingPage';
|
|
8
9
|
export * from './UnsubscribePage';
|
|
9
10
|
export * from './LoginRatafiaPage';
|
|
10
|
-
export * from './PricingRatafiaPage';
|
|
@@ -4,7 +4,7 @@ export * from './ErrorRatafiaPage';
|
|
|
4
4
|
export * from './FaqsPage';
|
|
5
5
|
export * from './KeyFactsResultRatafiaPage';
|
|
6
6
|
export * from './LegalPage';
|
|
7
|
+
export * from './LimitReachedRatafiaPage';
|
|
7
8
|
export * from './RatafiaLandingPage';
|
|
8
9
|
export * from './UnsubscribePage';
|
|
9
10
|
export * from './LoginRatafiaPage';
|
|
10
|
-
export * from './PricingRatafiaPage';
|
|
@@ -4,7 +4,7 @@ export * from './ErrorRatafiaPage'
|
|
|
4
4
|
export * from './FaqsPage'
|
|
5
5
|
export * from './KeyFactsResultRatafiaPage'
|
|
6
6
|
export * from './LegalPage'
|
|
7
|
+
export * from './LimitReachedRatafiaPage'
|
|
7
8
|
export * from './RatafiaLandingPage'
|
|
8
9
|
export * from './UnsubscribePage'
|
|
9
10
|
export * from './LoginRatafiaPage'
|
|
10
|
-
export * from './PricingRatafiaPage'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/custom.d.ts","../src/index.ts","../src/components/atoms/index.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCard.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/Checkbox/Checkbox.tsx","../src/components/atoms/Checkbox/CheckboxProps.types.ts","../src/components/atoms/Checkbox/index.ts","../src/components/atoms/ContactCard/ContactCard.styled.ts","../src/components/atoms/ContactCard/ContactCard.tsx","../src/components/atoms/ContactCard/ContactCardProps.types.ts","../src/components/atoms/ContactCard/index.ts","../src/components/atoms/DatePickerCustom/DatePickerCustom.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafia.tsx","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.ts","../src/components/atoms/DisclaimerRatafia/index.ts","../src/components/atoms/Divider/Divider.styled.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.styled.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.styled.ts","../src/components/atoms/DocumentTag/DocumentTag.tsx","../src/components/atoms/DocumentTag/DocumentTagProps.ts","../src/components/atoms/DocumentTag/index.ts","../src/components/atoms/ExpertCard/ExpertCard.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/MenuItems/MenuItems.tsx","../src/components/atoms/MenuItems/index.ts","../src/components/atoms/Message/Message.styled.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.styled.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.styled.ts","../src/components/atoms/MoreDocsItem/MoreDocsItem.tsx","../src/components/atoms/MoreDocsItem/MoreDocsItemProps.ts","../src/components/atoms/MoreDocsItem/index.ts","../src/components/atoms/NavMenuItem/NavMenuItem.styled.ts","../src/components/atoms/NavMenuItem/NavMenuItem.tsx","../src/components/atoms/NavMenuItem/NavMenuItemProps.ts","../src/components/atoms/NavMenuItem/index.ts","../src/components/atoms/PaypalButton/PaypalButton.styled.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.styled.ts","../src/components/atoms/PopularDocsItem/PopularDocsItem.tsx","../src/components/atoms/PopularDocsItem/PopularDocsItemProps.ts","../src/components/atoms/PopularDocsItem/index.ts","../src/components/atoms/ProgressBar/ProgressBar.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/SearchSelect/SearchSelect.tsx","../src/components/atoms/SearchSelect/SearchSelectProps.types.ts","../src/components/atoms/SearchSelect/index.ts","../src/components/atoms/ShowMoreBox/ShowMoreBox.styled.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.styled.ts","../src/components/atoms/SidemenuTab/SidemenuTab.tsx","../src/components/atoms/SidemenuTab/index.ts","../src/components/atoms/Spinner/Spinner.styled.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.styled.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.styled.ts","../src/components/atoms/Tag/Tag.tsx","../src/components/atoms/Tag/TagProps.ts","../src/components/atoms/Tag/index.ts","../src/components/atoms/TagRatafiaItem/TagRatafiaItem.styled.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.styled.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.styled.ts","../src/components/atoms/TextArea/TextArea.tsx","../src/components/atoms/TextArea/TextAreaProps.types.ts","../src/components/atoms/TextArea/index.ts","../src/components/atoms/Toggle/Toggle.styled.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.styled.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.styled.ts","../src/components/atoms/TopBarMobile/TopBarMobile.tsx","../src/components/atoms/TopBarMobile/index.ts","../src/components/atoms/TrustPilot/TrustPilot.styled.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.styled.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.styled.ts","../src/components/atoms/WideInfoBar/WideInfoBar.tsx","../src/components/atoms/WideInfoBar/index.ts","../src/components/molecules/index.ts","../src/components/molecules/AccordionItem/AccordionItem.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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/ContactCardList/ContactCardList.styled.ts","../src/components/molecules/ContactCardList/ContactCardList.tsx","../src/components/molecules/ContactCardList/ContactCardListProps.types.ts","../src/components/molecules/ContactCardList/index.ts","../src/components/molecules/ContinueEditingBanner/ContinueEditingBanner.styled.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.styled.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.styled.ts","../src/components/molecules/EmailContactBox/EmailContactBox.tsx","../src/components/molecules/EmailContactBox/EmailContactBoxProps.ts","../src/components/molecules/EmailContactBox/index.ts","../src/components/molecules/ExpertCardList/ExpertCardList.styled.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.styled.ts","../src/components/molecules/FaqItem/FaqItem.tsx","../src/components/molecules/FaqItem/FaqItemProps.ts","../src/components/molecules/FaqItem/index.ts","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardList.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktop.tsx","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktopProps.ts","../src/components/molecules/MoreDocsDesktop/index.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.styled.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.tsx","../src/components/molecules/MoreDocsMobile/MoreDocsMobileProps.ts","../src/components/molecules/MoreDocsMobile/index.ts","../src/components/molecules/NavBarDropDown/NavBarDropDown.styled.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.styled.ts","../src/components/molecules/Pagination/Pagination.tsx","../src/components/molecules/Pagination/PaginationProps.types.ts","../src/components/molecules/Pagination/index.ts","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktop.styled.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.styled.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.styled.ts","../src/components/molecules/PopularDocs/PopularDocs.tsx","../src/components/molecules/PopularDocs/PopularDocsProps.ts","../src/components/molecules/PopularDocs/index.ts","../src/components/molecules/PricingCard/PricingCard.styled.ts","../src/components/molecules/PricingCard/PricingCard.tsx","../src/components/molecules/PricingCard/PricingCardProps.types.ts","../src/components/molecules/PricingCard/index.ts","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.ts","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.tsx","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.ts","../src/components/molecules/RatafiaSubscriptionCard/index.ts","../src/components/molecules/Snackbar/Snackbar.styled.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.styled.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.styled.ts","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardList.tsx","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardListProps.types.ts","../src/components/molecules/StepRatafiaCardList/index.ts","../src/components/molecules/SubtypeDocumentCard/SubtypeDocumentCard.styled.ts","../src/components/molecules/SubtypeDocumentCard/SubtypeDocumentCard.tsx","../src/components/molecules/SubtypeDocumentCard/SubtypeDocumentCardProps.types.ts","../src/components/molecules/SubtypeDocumentCard/index.ts","../src/components/molecules/TagsRatafiaList/TagsRatafiaList.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/organisms/Accordion/Accordion.tsx","../src/components/organisms/Accordion/AccordionProps.types.ts","../src/components/organisms/Accordion/index.ts","../src/components/organisms/ArticlesList/ArticlesList.styled.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.styled.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.styled.ts","../src/components/organisms/CardFunctionality/CardFunctionality.tsx","../src/components/organisms/CardFunctionality/CardFunctionalityProps.ts","../src/components/organisms/CardFunctionality/index.ts","../src/components/organisms/ContactContent/ContactContent.styled.ts","../src/components/organisms/ContactContent/ContactContent.tsx","../src/components/organisms/ContactContent/ContactContentProps.types.ts","../src/components/organisms/ContactContent/index.ts","../src/components/organisms/ContactJumbotron/ContactJumbotron.styled.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.styled.ts","../src/components/organisms/CookiePolicyBar/CookiePolicyBar.tsx","../src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.ts","../src/components/organisms/CookiePolicyBar/index.ts","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafia.styled.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.styled.ts","../src/components/organisms/FaqGroup/FaqGroup.tsx","../src/components/organisms/FaqGroup/FaqGroupProps.ts","../src/components/organisms/FaqGroup/index.ts","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContent.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/organisms/LanguageSelectorMobile/LanguageSelectorMobile.tsx","../src/components/organisms/LanguageSelectorMobile/index.ts","../src/components/organisms/LayoutRatafia/LayoutRatafia.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/pages/FaqsPage/FaqsPage.tsx","../src/components/pages/FaqsPage/FaqsPageProps.ts","../src/components/pages/FaqsPage/index.ts","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.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.styled.ts","../src/components/pages/LoginRatafiaPage/LoginRatafiaPage.tsx","../src/components/pages/LoginRatafiaPage/LoginRatafiaPageProps.ts","../src/components/pages/LoginRatafiaPage/index.ts","../src/components/pages/PricingRatafiaPage/PricingRatafiaPage.styled.ts","../src/components/pages/PricingRatafiaPage/PricingRatafiaPage.tsx","../src/components/pages/PricingRatafiaPage/PricingRatafiaPageProps.ts","../src/components/pages/PricingRatafiaPage/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.styled.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.styled.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.styled.ts","../src/components/sections/AsideMenuSection/AsideMenuSection.tsx","../src/components/sections/AsideMenuSection/AsideMenuSectionProps.ts","../src/components/sections/AsideMenuSection/index.ts","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.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.styled.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.styled.ts","../src/components/sections/ContactSection/ContactSection.tsx","../src/components/sections/ContactSection/ContactSectionProps.ts","../src/components/sections/ContactSection/index.ts","../src/components/sections/ExpertsSection/ExpertsSection.styled.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.styled.ts","../src/components/sections/FaqSection/FaqSection.tsx","../src/components/sections/FaqSection/FaqSectionProps.ts","../src/components/sections/FaqSection/index.ts","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.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.styled.ts","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.ts","../src/components/sections/FunctionalityCardsSection/index.ts","../src/components/sections/GuidelinesSection/GuidelinesSection.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/sections/LegalSection/LegalSection.tsx","../src/components/sections/LegalSection/LegalSectionProps.ts","../src/components/sections/LegalSection/index.ts","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/sections/TryUsSection/TryUsSection.tsx","../src/components/sections/TryUsSection/TryUsSectionProps.ts","../src/components/sections/TryUsSection/index.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx","../src/components/sections/UnsubscribeSection/UnsubscribeSectionProps.ts","../src/components/sections/UnsubscribeSection/index.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSectionProps.types.ts","../src/components/sections/WhyLawDistrictSection/index.ts","../src/globalStyles/breakpoints.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/Checkbox/Checkbox.tsx","../src/components/atoms/Checkbox/CheckboxProps.types.ts","../src/components/atoms/Checkbox/index.ts","../src/components/atoms/ContactCard/ContactCard.styled.ts","../src/components/atoms/ContactCard/ContactCard.tsx","../src/components/atoms/ContactCard/ContactCardProps.types.ts","../src/components/atoms/ContactCard/index.ts","../src/components/atoms/DatePickerCustom/DatePickerCustom.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafia.tsx","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.ts","../src/components/atoms/DisclaimerRatafia/index.ts","../src/components/atoms/Divider/Divider.styled.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.styled.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.styled.ts","../src/components/atoms/DocumentTag/DocumentTag.tsx","../src/components/atoms/DocumentTag/DocumentTagProps.ts","../src/components/atoms/DocumentTag/index.ts","../src/components/atoms/ExpertCard/ExpertCard.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/MenuItems/MenuItems.tsx","../src/components/atoms/MenuItems/index.ts","../src/components/atoms/Message/Message.styled.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.styled.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.styled.ts","../src/components/atoms/MoreDocsItem/MoreDocsItem.tsx","../src/components/atoms/MoreDocsItem/MoreDocsItemProps.ts","../src/components/atoms/MoreDocsItem/index.ts","../src/components/atoms/NavMenuItem/NavMenuItem.styled.ts","../src/components/atoms/NavMenuItem/NavMenuItem.tsx","../src/components/atoms/NavMenuItem/NavMenuItemProps.ts","../src/components/atoms/NavMenuItem/index.ts","../src/components/atoms/PaypalButton/PaypalButton.styled.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.styled.ts","../src/components/atoms/PopularDocsItem/PopularDocsItem.tsx","../src/components/atoms/PopularDocsItem/PopularDocsItemProps.ts","../src/components/atoms/PopularDocsItem/index.ts","../src/components/atoms/ProgressBar/ProgressBar.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/atoms/SearchSelect/SearchSelect.tsx","../src/components/atoms/SearchSelect/SearchSelectProps.types.ts","../src/components/atoms/SearchSelect/index.ts","../src/components/atoms/ShowMoreBox/ShowMoreBox.styled.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.styled.ts","../src/components/atoms/SidemenuTab/SidemenuTab.tsx","../src/components/atoms/SidemenuTab/index.ts","../src/components/atoms/Spinner/Spinner.styled.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.styled.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.styled.ts","../src/components/atoms/Tag/Tag.tsx","../src/components/atoms/Tag/TagProps.ts","../src/components/atoms/Tag/index.ts","../src/components/atoms/TagRatafiaItem/TagRatafiaItem.styled.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.styled.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.styled.ts","../src/components/atoms/TextArea/TextArea.tsx","../src/components/atoms/TextArea/TextAreaProps.types.ts","../src/components/atoms/TextArea/index.ts","../src/components/atoms/Toggle/Toggle.styled.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.styled.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.styled.ts","../src/components/atoms/TopBarMobile/TopBarMobile.tsx","../src/components/atoms/TopBarMobile/index.ts","../src/components/atoms/TrustPilot/TrustPilot.styled.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.styled.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.styled.ts","../src/components/atoms/WideInfoBar/WideInfoBar.tsx","../src/components/atoms/WideInfoBar/index.ts","../src/components/molecules/index.ts","../src/components/molecules/AccordionItem/AccordionItem.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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/ContactCardList/ContactCardList.styled.ts","../src/components/molecules/ContactCardList/ContactCardList.tsx","../src/components/molecules/ContactCardList/ContactCardListProps.types.ts","../src/components/molecules/ContactCardList/index.ts","../src/components/molecules/ContinueEditingBanner/ContinueEditingBanner.styled.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.styled.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.styled.ts","../src/components/molecules/EmailContactBox/EmailContactBox.tsx","../src/components/molecules/EmailContactBox/EmailContactBoxProps.ts","../src/components/molecules/EmailContactBox/index.ts","../src/components/molecules/ExpertCardList/ExpertCardList.styled.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.styled.ts","../src/components/molecules/FaqItem/FaqItem.tsx","../src/components/molecules/FaqItem/FaqItemProps.ts","../src/components/molecules/FaqItem/index.ts","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardList.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktop.tsx","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktopProps.ts","../src/components/molecules/MoreDocsDesktop/index.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.styled.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.tsx","../src/components/molecules/MoreDocsMobile/MoreDocsMobileProps.ts","../src/components/molecules/MoreDocsMobile/index.ts","../src/components/molecules/NavBarDropDown/NavBarDropDown.styled.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.styled.ts","../src/components/molecules/Pagination/Pagination.tsx","../src/components/molecules/Pagination/PaginationProps.types.ts","../src/components/molecules/Pagination/index.ts","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktop.styled.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.styled.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.styled.ts","../src/components/molecules/PopularDocs/PopularDocs.tsx","../src/components/molecules/PopularDocs/PopularDocsProps.ts","../src/components/molecules/PopularDocs/index.ts","../src/components/molecules/PricingCard/PricingCard.styled.ts","../src/components/molecules/PricingCard/PricingCard.tsx","../src/components/molecules/PricingCard/PricingCardProps.types.ts","../src/components/molecules/PricingCard/index.ts","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.ts","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.tsx","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.ts","../src/components/molecules/RatafiaSubscriptionCard/index.ts","../src/components/molecules/Snackbar/Snackbar.styled.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.styled.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.styled.ts","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardList.tsx","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardListProps.types.ts","../src/components/molecules/StepRatafiaCardList/index.ts","../src/components/molecules/SubtypeDocumentCard/SubtypeDocumentCard.styled.ts","../src/components/molecules/SubtypeDocumentCard/SubtypeDocumentCard.tsx","../src/components/molecules/SubtypeDocumentCard/SubtypeDocumentCardProps.types.ts","../src/components/molecules/SubtypeDocumentCard/index.ts","../src/components/molecules/TagsRatafiaList/TagsRatafiaList.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/organisms/Accordion/Accordion.tsx","../src/components/organisms/Accordion/AccordionProps.types.ts","../src/components/organisms/Accordion/index.ts","../src/components/organisms/ArticlesList/ArticlesList.styled.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.styled.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.styled.ts","../src/components/organisms/CardFunctionality/CardFunctionality.tsx","../src/components/organisms/CardFunctionality/CardFunctionalityProps.ts","../src/components/organisms/CardFunctionality/index.ts","../src/components/organisms/ContactContent/ContactContent.styled.ts","../src/components/organisms/ContactContent/ContactContent.tsx","../src/components/organisms/ContactContent/ContactContentProps.types.ts","../src/components/organisms/ContactContent/index.ts","../src/components/organisms/ContactJumbotron/ContactJumbotron.styled.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.styled.ts","../src/components/organisms/CookiePolicyBar/CookiePolicyBar.tsx","../src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.ts","../src/components/organisms/CookiePolicyBar/index.ts","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafia.styled.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.styled.ts","../src/components/organisms/FaqGroup/FaqGroup.tsx","../src/components/organisms/FaqGroup/FaqGroupProps.ts","../src/components/organisms/FaqGroup/index.ts","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContent.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/organisms/LanguageSelectorMobile/LanguageSelectorMobile.tsx","../src/components/organisms/LanguageSelectorMobile/index.ts","../src/components/organisms/LayoutRatafia/LayoutRatafia.styled.ts","../src/components/organisms/LayoutRatafia/LayoutRatafia.tsx","../src/components/organisms/LayoutRatafia/LayoutRatafiaProps.types.ts","../src/components/organisms/LayoutRatafia/index.ts","../src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.styled.ts","../src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafia.tsx","../src/components/organisms/LimitReachedContentRatafia/LimitReachedContentRatafiaProps.types.ts","../src/components/organisms/LimitReachedContentRatafia/index.ts","../src/components/organisms/ListStepsGetForm/ListStepsGetForm.styled.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.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/pages/FaqsPage/FaqsPage.tsx","../src/components/pages/FaqsPage/FaqsPageProps.ts","../src/components/pages/FaqsPage/index.ts","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.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/LimitReachedRatafiaPage/LimitReachedRatafiaPage.styled.ts","../src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPage.tsx","../src/components/pages/LimitReachedRatafiaPage/LimitReachedRatafiaPageProps.types.ts","../src/components/pages/LimitReachedRatafiaPage/index.ts","../src/components/pages/LoginRatafiaPage/LoginRatafiaPage.styled.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.styled.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.styled.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.styled.ts","../src/components/sections/AsideMenuSection/AsideMenuSection.tsx","../src/components/sections/AsideMenuSection/AsideMenuSectionProps.ts","../src/components/sections/AsideMenuSection/index.ts","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.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.styled.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.styled.ts","../src/components/sections/ContactSection/ContactSection.tsx","../src/components/sections/ContactSection/ContactSectionProps.ts","../src/components/sections/ContactSection/index.ts","../src/components/sections/ExpertsSection/ExpertsSection.styled.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.styled.ts","../src/components/sections/FaqSection/FaqSection.tsx","../src/components/sections/FaqSection/FaqSectionProps.ts","../src/components/sections/FaqSection/index.ts","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.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.styled.ts","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.ts","../src/components/sections/FunctionalityCardsSection/index.ts","../src/components/sections/GuidelinesSection/GuidelinesSection.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/sections/LegalSection/LegalSection.tsx","../src/components/sections/LegalSection/LegalSectionProps.ts","../src/components/sections/LegalSection/index.ts","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.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.styled.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.styled.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.styled.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.styled.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.styled.ts","../src/components/sections/TryUsSection/TryUsSection.tsx","../src/components/sections/TryUsSection/TryUsSectionProps.ts","../src/components/sections/TryUsSection/index.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx","../src/components/sections/UnsubscribeSection/UnsubscribeSectionProps.ts","../src/components/sections/UnsubscribeSection/index.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSectionProps.types.ts","../src/components/sections/WhyLawDistrictSection/index.ts","../src/globalStyles/breakpoints.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.18.
|
|
3
|
+
"version": "5.18.5",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -246,6 +246,7 @@
|
|
|
246
246
|
"./LanguageSelector": "./dist/src/components/organisms/LanguageSelector/index.js",
|
|
247
247
|
"./LanguageSelectorMobile": "./dist/src/components/organisms/LanguageSelectorMobile/index.js",
|
|
248
248
|
"./LayoutRatafia": "./dist/src/components/organisms/LayoutRatafia/index.js",
|
|
249
|
+
"./LimitReachedContentRatafia": "./dist/src/components/organisms/LimitReachedContentRatafia/index.js",
|
|
249
250
|
"./ListStepsGetForm": "./dist/src/components/organisms/ListStepsGetForm/index.js",
|
|
250
251
|
"./LoginRatafiaContent": "./dist/src/components/organisms/LoginRatafiaContent/index.js",
|
|
251
252
|
"./MobileBottomBar": "./dist/src/components/organisms/MobileBottomBar/index.js",
|
|
@@ -257,8 +258,8 @@
|
|
|
257
258
|
"./FaqsPage": "./dist/src/components/pages/FaqsPage/index.js",
|
|
258
259
|
"./KeyFactsResultRatafiaPage": "./dist/src/components/pages/KeyFactsResultRatafiaPage/index.js",
|
|
259
260
|
"./LegalPage": "./dist/src/components/pages/LegalPage/index.js",
|
|
261
|
+
"./LimitReachedRatafiaPage": "./dist/src/components/pages/LimitReachedRatafiaPage/index.js",
|
|
260
262
|
"./LoginRatafiaPage": "./dist/src/components/pages/LoginRatafiaPage/index.js",
|
|
261
|
-
"./PricingRatafiaPage": "./dist/src/components/pages/PricingRatafiaPage/index.js",
|
|
262
263
|
"./RatafiaLandingPage": "./dist/src/components/pages/RatafiaLandingPage/index.js",
|
|
263
264
|
"./UnsubscribePage": "./dist/src/components/pages/UnsubscribePage/index.js",
|
|
264
265
|
"./AboutUsSection": "./dist/src/components/sections/AboutUsSection/index.js",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import DisclaimerRatafia from '../../atoms/DisclaimerRatafia/DisclaimerRatafia';
|
|
3
|
-
import { LayoutRatafia } from '../../organisms';
|
|
4
|
-
import { RatafiaSubscriptionCard } from '../../molecules';
|
|
5
|
-
import { PricingRatafiaPageStyled } from './PricingRatafiaPage.styled';
|
|
6
|
-
export const PricingRatafiaPage = ({ header, disclaimer, pricingPage }) => {
|
|
7
|
-
const footerDesktop = (_jsx(DisclaimerRatafia, { icon: disclaimer.icon, text: disclaimer.text, copyrightText: disclaimer.copyrightText, ctaTextShowDisclaimer: disclaimer.ctaTextShowDisclaimer, ctaTextCloseDisclaimer: disclaimer.ctaTextCloseDisclaimer }));
|
|
8
|
-
const footerMobile = _jsx(_Fragment, { children: footerDesktop });
|
|
9
|
-
const content = (_jsxs("div", { className: 'pricing-ratafia-page__content', children: [_jsx("div", { className: 'pricing-ratafia-page__content__title', children: pricingPage.title }), _jsx("div", { className: 'pricing-ratafia-page__content__cards', children: pricingPage.cardSubscription?.length > 0 &&
|
|
10
|
-
pricingPage.cardSubscription.map((card) => _jsx(RatafiaSubscriptionCard, { ...card }, card.id)) })] }));
|
|
11
|
-
return (_jsx(PricingRatafiaPageStyled, { className: 'pricing-ratafia-page', children: _jsx(LayoutRatafia, { header: header, content: content, footerDesktop: footerDesktop, footerMobile: footerMobile }) }));
|
|
12
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const PricingRatafiaPageStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { device } from '../../../globalStyles/breakpoints';
|
|
2
|
-
import styled from 'styled-components';
|
|
3
|
-
export const PricingRatafiaPageStyled = styled.div `
|
|
4
|
-
background-color: var(--neutral-neutral-6);
|
|
5
|
-
|
|
6
|
-
.pricing-ratafia-page__content {
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-flow: column nowrap;
|
|
9
|
-
gap: 2rem;
|
|
10
|
-
width: 100%;
|
|
11
|
-
|
|
12
|
-
&__title {
|
|
13
|
-
font-size: 18px;
|
|
14
|
-
font-weight: bold;
|
|
15
|
-
color: var(--neutral-neutral-2);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
&__cards {
|
|
19
|
-
display: flex;
|
|
20
|
-
flex-direction: row;
|
|
21
|
-
gap: 1rem;
|
|
22
|
-
|
|
23
|
-
@media ${device.mobile} {
|
|
24
|
-
flex-direction: column;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
`;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { device } from '../../../globalStyles/breakpoints'
|
|
2
|
-
import styled from 'styled-components'
|
|
3
|
-
|
|
4
|
-
export const PricingRatafiaPageStyled = styled.div`
|
|
5
|
-
background-color: var(--neutral-neutral-6);
|
|
6
|
-
|
|
7
|
-
.pricing-ratafia-page__content {
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-flow: column nowrap;
|
|
10
|
-
gap: 2rem;
|
|
11
|
-
width: 100%;
|
|
12
|
-
|
|
13
|
-
&__title {
|
|
14
|
-
font-size: 18px;
|
|
15
|
-
font-weight: bold;
|
|
16
|
-
color: var(--neutral-neutral-2);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&__cards {
|
|
20
|
-
display: flex;
|
|
21
|
-
flex-direction: row;
|
|
22
|
-
gap: 1rem;
|
|
23
|
-
|
|
24
|
-
@media ${device.mobile} {
|
|
25
|
-
flex-direction: column;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
`
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
|
|
3
|
-
import DisclaimerRatafia from '../../atoms/DisclaimerRatafia/DisclaimerRatafia'
|
|
4
|
-
import { LayoutRatafia } from '../../organisms'
|
|
5
|
-
import { type PricingRatafiaPageProps } from './PricingRatafiaPageProps'
|
|
6
|
-
import { RatafiaSubscriptionCard } from '../../molecules'
|
|
7
|
-
|
|
8
|
-
import { PricingRatafiaPageStyled } from './PricingRatafiaPage.styled'
|
|
9
|
-
|
|
10
|
-
export const PricingRatafiaPage: React.FC<PricingRatafiaPageProps> = ({ header, disclaimer, pricingPage }) => {
|
|
11
|
-
const footerDesktop = (
|
|
12
|
-
<DisclaimerRatafia
|
|
13
|
-
icon={disclaimer.icon}
|
|
14
|
-
text={disclaimer.text}
|
|
15
|
-
copyrightText={disclaimer.copyrightText}
|
|
16
|
-
ctaTextShowDisclaimer={disclaimer.ctaTextShowDisclaimer}
|
|
17
|
-
ctaTextCloseDisclaimer={disclaimer.ctaTextCloseDisclaimer}
|
|
18
|
-
/>
|
|
19
|
-
)
|
|
20
|
-
|
|
21
|
-
const footerMobile = <>{footerDesktop}</>
|
|
22
|
-
|
|
23
|
-
const content = (
|
|
24
|
-
<div className='pricing-ratafia-page__content'>
|
|
25
|
-
<div className='pricing-ratafia-page__content__title'>{pricingPage.title}</div>
|
|
26
|
-
<div className='pricing-ratafia-page__content__cards'>
|
|
27
|
-
{pricingPage.cardSubscription?.length > 0 &&
|
|
28
|
-
pricingPage.cardSubscription.map((card) => <RatafiaSubscriptionCard key={card.id} {...card} />)}
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
)
|
|
32
|
-
|
|
33
|
-
return (
|
|
34
|
-
<PricingRatafiaPageStyled className='pricing-ratafia-page'>
|
|
35
|
-
<LayoutRatafia header={header} content={content} footerDesktop={footerDesktop} footerMobile={footerMobile} />
|
|
36
|
-
</PricingRatafiaPageStyled>
|
|
37
|
-
)
|
|
38
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { type DisclaimerRatafiaProps } from '../../atoms';
|
|
2
|
-
import { type HeaderRatafiaProps } from '../../molecules';
|
|
3
|
-
export interface PricingRatafiaPageProps {
|
|
4
|
-
header: HeaderRatafiaProps;
|
|
5
|
-
disclaimer: DisclaimerRatafiaProps;
|
|
6
|
-
pricingPage: PricingPageProps;
|
|
7
|
-
}
|
|
8
|
-
export interface PricingPageProps {
|
|
9
|
-
title: string;
|
|
10
|
-
cardSubscription: SubscriptionCardProps[] | [];
|
|
11
|
-
}
|
|
12
|
-
export interface SubscriptionCardProps {
|
|
13
|
-
id: string;
|
|
14
|
-
cardStyle: CardStyleType;
|
|
15
|
-
iconTitle: FeatureImageProps;
|
|
16
|
-
title: string;
|
|
17
|
-
priceText: string;
|
|
18
|
-
mainFeatures: FeatureProps[] | [];
|
|
19
|
-
AIFeatures: FeatureProps[] | [];
|
|
20
|
-
buttonText: string;
|
|
21
|
-
linkText: string;
|
|
22
|
-
}
|
|
23
|
-
export type CardStyleType = 'Primary' | 'Secondary';
|
|
24
|
-
interface FeatureProps {
|
|
25
|
-
description: string;
|
|
26
|
-
image: FeatureImageProps;
|
|
27
|
-
title: string;
|
|
28
|
-
}
|
|
29
|
-
interface FeatureImageProps {
|
|
30
|
-
name: string;
|
|
31
|
-
url: string;
|
|
32
|
-
}
|
|
33
|
-
export {};
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { type DisclaimerRatafiaProps } from '../../atoms'
|
|
2
|
-
import { type HeaderRatafiaProps } from '../../molecules'
|
|
3
|
-
|
|
4
|
-
export interface PricingRatafiaPageProps {
|
|
5
|
-
header: HeaderRatafiaProps
|
|
6
|
-
disclaimer: DisclaimerRatafiaProps
|
|
7
|
-
pricingPage: PricingPageProps
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface PricingPageProps {
|
|
11
|
-
title: string
|
|
12
|
-
cardSubscription: SubscriptionCardProps[] | []
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface SubscriptionCardProps {
|
|
16
|
-
id: string
|
|
17
|
-
cardStyle: CardStyleType
|
|
18
|
-
iconTitle: FeatureImageProps
|
|
19
|
-
title: string
|
|
20
|
-
priceText: string
|
|
21
|
-
mainFeatures: FeatureProps[] | []
|
|
22
|
-
AIFeatures: FeatureProps[] | []
|
|
23
|
-
buttonText: string
|
|
24
|
-
linkText: string
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export type CardStyleType = 'Primary' | 'Secondary'
|
|
28
|
-
|
|
29
|
-
interface FeatureProps {
|
|
30
|
-
description: string
|
|
31
|
-
image: FeatureImageProps
|
|
32
|
-
title: string
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
interface FeatureImageProps {
|
|
36
|
-
name: string
|
|
37
|
-
url: string
|
|
38
|
-
}
|