@npm_leadtech/legal-lib-components 5.2.21 → 5.2.24

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.
Files changed (36) hide show
  1. package/dist/css/styles.css +76 -34
  2. package/dist/src/components/molecules/Article/Article.js +2 -3
  3. package/dist/src/components/molecules/Article/Article.scss +0 -17
  4. package/dist/src/components/molecules/Article/Article.tsx +2 -17
  5. package/dist/src/components/molecules/Article/ArticleProps.types.d.ts +0 -1
  6. package/dist/src/components/molecules/Article/ArticleProps.types.ts +0 -1
  7. package/dist/src/components/molecules/FaqItem/FaqItem.scss +5 -0
  8. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.d.ts +4 -0
  9. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.js +11 -0
  10. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.scss +93 -0
  11. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.tsx +58 -0
  12. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.d.ts +24 -0
  13. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.js +1 -0
  14. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.ts +26 -0
  15. package/dist/src/components/molecules/RatafiaSubscriptionCard/index.d.ts +2 -0
  16. package/dist/src/components/molecules/RatafiaSubscriptionCard/index.js +1 -0
  17. package/dist/src/components/molecules/RatafiaSubscriptionCard/index.ts +2 -0
  18. package/dist/src/components/molecules/index.d.ts +1 -0
  19. package/dist/src/components/molecules/index.js +1 -0
  20. package/dist/src/components/molecules/index.ts +1 -0
  21. package/dist/src/components/organisms/ArticlesList/ArticlesList.js +2 -2
  22. package/dist/src/components/organisms/ArticlesList/ArticlesList.tsx +2 -2
  23. package/dist/src/components/organisms/ArticlesList/ArticlesListProps.types.d.ts +0 -1
  24. package/dist/src/components/organisms/ArticlesList/ArticlesListProps.types.ts +0 -1
  25. package/dist/src/components/sections/BlogSection/BlogSection.js +3 -4
  26. package/dist/src/components/sections/BlogSection/BlogSection.scss +0 -21
  27. package/dist/src/components/sections/BlogSection/BlogSection.tsx +5 -9
  28. package/dist/src/components/sections/BlogSection/BlogSectionProps.types.d.ts +1 -2
  29. package/dist/src/components/sections/BlogSection/BlogSectionProps.types.ts +1 -2
  30. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.js +1 -1
  31. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx +3 -1
  32. package/dist/src/custom.d.ts +1 -1
  33. package/dist/src/globalStyles/styles.scss +1 -0
  34. package/dist/tsconfig.build.tsbuildinfo +1 -1
  35. package/package.json +2 -1
  36. package/dist/images/svg/arrow-right-24px-outlined.svg +0 -3
@@ -4646,21 +4646,6 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
4646
4646
  margin-top: 0;
4647
4647
  }
4648
4648
  }
4649
- .article .information .button-image-container {
4650
- align-items: center;
4651
- margin: 1rem 0 2rem 0;
4652
- display: flex;
4653
- }
4654
- .article .information .button-image-container .thinner-letter {
4655
- font-family: "Inter", sans-serif;
4656
- font-size: 16px;
4657
- font-weight: 400;
4658
- line-height: 22px;
4659
- letter-spacing: -0.3px;
4660
- text-align: left;
4661
- margin: 0;
4662
- padding: 0 1rem 0 0;
4663
- }
4664
4649
  .base-box-group {
4665
4650
  display: block;
4666
4651
  }
@@ -5138,6 +5123,10 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
5138
5123
  letter-spacing: -0.3px;
5139
5124
  padding: 0 1rem 1rem;
5140
5125
  }
5126
+ .faqItem .content .answer ul {
5127
+ list-style: disc;
5128
+ margin-left: 2rem;
5129
+ }
5141
5130
  .faqItem.open .question svg {
5142
5131
  transform: rotate(90deg);
5143
5132
  }
@@ -5981,6 +5970,78 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
5981
5970
  .pricing-card__button {
5982
5971
  width: 100%;
5983
5972
  }
5973
+ .ratafia-card {
5974
+ display: flex;
5975
+ flex-flow: column nowrap;
5976
+ flex: 1;
5977
+ gap: 0.5rem;
5978
+ min-width: 320px;
5979
+ padding: 1rem;
5980
+ border-radius: 4px;
5981
+ }
5982
+ .ratafia-card__header {
5983
+ display: flex;
5984
+ flex-flow: row wrap;
5985
+ align-items: center;
5986
+ justify-content: space-between;
5987
+ gap: 0.5rem 1rem;
5988
+ }
5989
+ .ratafia-card__title {
5990
+ display: flex;
5991
+ flex-flow: row nowrap;
5992
+ align-items: center;
5993
+ gap: 0.8rem;
5994
+ font-weight: bold;
5995
+ }
5996
+ .ratafia-card hr {
5997
+ border: none;
5998
+ border-top: 1px solid var(--neutral-neutral-4);
5999
+ width: 100%;
6000
+ }
6001
+ .ratafia-card__body {
6002
+ display: flex;
6003
+ flex-flow: column;
6004
+ flex: 1;
6005
+ }
6006
+ .ratafia-card__feature {
6007
+ display: flex;
6008
+ flex-flow: row nowrap;
6009
+ justify-content: flex-start;
6010
+ gap: 0.5rem;
6011
+ color: var(--neutral-neutral-1);
6012
+ text-align: left;
6013
+ padding: 0.25rem 0;
6014
+ }
6015
+ .ratafia-card__feature .icon-svg-with-theme-color {
6016
+ flex-basis: 1rem;
6017
+ margin-top: 0.2rem;
6018
+ }
6019
+ .ratafia-card__feature.ratafia-card__ai-feature {
6020
+ background-color: var(--primary-main-light-6);
6021
+ padding-left: 0.5rem;
6022
+ }
6023
+ .ratafia-card__footer {
6024
+ display: flex;
6025
+ margin-top: 1.5rem;
6026
+ }
6027
+ .ratafia-card.primary {
6028
+ background-color: var(--neutral-neutral-6);
6029
+ }
6030
+ .ratafia-card.primary .icon-svg-with-theme-color {
6031
+ background-color: var(--primary-main-light-1);
6032
+ }
6033
+ .ratafia-card.primary .ratafia-card__feature.ratafia-card__ai-feature {
6034
+ background-color: var(--primary-main-light-6);
6035
+ }
6036
+ .ratafia-card.secondary {
6037
+ background-color: var(--secondary-main-light-4);
6038
+ }
6039
+ .ratafia-card.secondary .icon-svg-with-theme-color {
6040
+ background-color: var(--secondary-main-dark-2);
6041
+ }
6042
+ .ratafia-card.secondary .ratafia-card__feature.ratafia-card__ai-feature {
6043
+ background-color: var(--secondary-main-light-3);
6044
+ }
5984
6045
  .snackbar {
5985
6046
  color: var(--neutral-main);
5986
6047
  line-height: 1.5;
@@ -7674,16 +7735,6 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
7674
7735
  max-width: 1200px;
7675
7736
  }
7676
7737
  }
7677
- .blog .blog__description {
7678
- font-family: "Inter", sans-serif;
7679
- font-size: 16px;
7680
- font-weight: 400;
7681
- line-height: 22px;
7682
- letter-spacing: -0.3px;
7683
- text-align: left;
7684
- color: #6d7275;
7685
- margin: 1rem 0 1.5rem 0;
7686
- }
7687
7738
  .blog .blog__title {
7688
7739
  color: var(--primary-main-dark-1);
7689
7740
  }
@@ -7692,15 +7743,6 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
7692
7743
  margin-bottom: 3rem;
7693
7744
  }
7694
7745
  }
7695
- .blog .blog__title.category-product-title {
7696
- margin-bottom: 0;
7697
- font-family: "Inter", sans-serif;
7698
- font-size: 28px;
7699
- font-weight: 700;
7700
- line-height: 32px;
7701
- letter-spacing: -0.3px;
7702
- text-align: left;
7703
- }
7704
7746
  .blog .cta-button {
7705
7747
  width: 100%;
7706
7748
  margin-top: 3rem;
@@ -1,8 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import ArrowRight from '../../../../images/svg/arrow-right-24px-outlined.svg';
3
2
  import { Button } from '../../atoms';
4
3
  // import './Article.scss'
5
- const Article = ({ imageUrl, title, articleUrl, summary, isCategoryProductPage }) => {
6
- return (_jsxs("div", { className: 'article', children: [_jsx("img", { src: imageUrl, className: 'image', loading: 'lazy', alt: title }), _jsxs("div", { className: 'information', children: [_jsx("a", { href: articleUrl, target: '_blank', rel: 'noreferrer', children: _jsxs("p", { className: 'title sans-serif --big', children: [title, " "] }) }), _jsx("div", { className: 'summary', children: summary }), isCategoryProductPage ? (_jsxs("div", { className: 'button-image-container', children: [_jsx(Button, { givenClass: 'thinner-letter', color: 'tertiary', label: 'Read more', dataQa: 'article-read-more', link: articleUrl, isExternal: true }), _jsx("img", { className: 'article__arrow-right', src: ArrowRight, alt: '' })] })) : (_jsx(Button, { color: 'tertiary', label: 'Read more', dataQa: 'article-read-more', link: articleUrl, isExternal: true }))] })] }));
4
+ const Article = ({ imageUrl, title, articleUrl, summary }) => {
5
+ return (_jsxs("div", { className: 'article', children: [_jsx("img", { src: imageUrl, className: 'image', loading: 'lazy', alt: title }), _jsxs("div", { className: 'information', children: [_jsx("a", { href: articleUrl, target: '_blank', rel: 'noreferrer', children: _jsxs("p", { className: 'title sans-serif --big', children: [title, " "] }) }), _jsx("div", { className: 'summary', children: summary }), _jsx(Button, { color: 'tertiary', label: 'Read more', dataQa: 'article-read-more', link: articleUrl, isExternal: true })] })] }));
7
6
  };
8
7
  export default Article;
@@ -62,22 +62,5 @@
62
62
  margin-top: 0;
63
63
  }
64
64
  }
65
-
66
- .button-image-container {
67
- align-items: center;
68
- margin: 1rem 0 2rem 0;
69
- display: flex;
70
-
71
- .thinner-letter {
72
- font-family: $font-sans;
73
- font-size: 16px;
74
- font-weight: 400;
75
- line-height: 22px;
76
- letter-spacing: -0.3px;
77
- text-align: left;
78
- margin: 0;
79
- padding: 0 1rem 0 0;
80
- }
81
- }
82
65
  }
83
66
  }
@@ -1,11 +1,10 @@
1
1
  import React, { type FC } from 'react'
2
2
 
3
- import ArrowRight from '../../../../images/svg/arrow-right-24px-outlined.svg'
4
3
  import { type ArticleProps } from './ArticleProps.types'
5
4
  import { Button } from '../../atoms'
6
5
  // import './Article.scss'
7
6
 
8
- const Article: FC<ArticleProps> = ({ imageUrl, title, articleUrl, summary, isCategoryProductPage }) => {
7
+ const Article: FC<ArticleProps> = ({ imageUrl, title, articleUrl, summary }) => {
9
8
  return (
10
9
  <div className='article'>
11
10
  <img src={imageUrl} className='image' loading='lazy' alt={title} />
@@ -14,21 +13,7 @@ const Article: FC<ArticleProps> = ({ imageUrl, title, articleUrl, summary, isCat
14
13
  <p className='title sans-serif --big'>{title} </p>
15
14
  </a>
16
15
  <div className='summary'>{summary}</div>
17
- {isCategoryProductPage ? (
18
- <div className='button-image-container'>
19
- <Button
20
- givenClass='thinner-letter'
21
- color='tertiary'
22
- label={'Read more'}
23
- dataQa='article-read-more'
24
- link={articleUrl}
25
- isExternal
26
- />
27
- <img className='article__arrow-right' src={ArrowRight} alt=''></img>
28
- </div>
29
- ) : (
30
- <Button color='tertiary' label={'Read more'} dataQa='article-read-more' link={articleUrl} isExternal />
31
- )}
16
+ <Button color='tertiary' label={'Read more'} dataQa='article-read-more' link={articleUrl} isExternal />
32
17
  </div>
33
18
  </div>
34
19
  )
@@ -4,5 +4,4 @@ export interface ArticleProps {
4
4
  articleUrl: string;
5
5
  summary: string;
6
6
  id: string;
7
- isCategoryProductPage: boolean;
8
7
  }
@@ -4,5 +4,4 @@ export interface ArticleProps {
4
4
  articleUrl: string
5
5
  summary: string
6
6
  id: string
7
- isCategoryProductPage: boolean
8
7
  }
@@ -45,6 +45,11 @@
45
45
  line-height: 22px;
46
46
  letter-spacing: -0.3px;
47
47
  padding: 0 1rem 1rem;
48
+
49
+ ul {
50
+ list-style: disc;
51
+ margin-left: 2rem;
52
+ }
48
53
  }
49
54
  }
50
55
 
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { RatafiaSubscriptionCardProps } from './RatafiaSubscriptionCardProps.types';
3
+ declare const RatafiaSubscriptionCard: FC<RatafiaSubscriptionCardProps>;
4
+ export default RatafiaSubscriptionCard;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Button, IconSvgURLWithThemeColor, RichTextStrapi } from '../../atoms';
3
+ import { stringSlugify } from '../../../utils/stringSlugify';
4
+ const RatafiaSubscriptionCard = ({ cardStyle, iconTitle, title, priceText, mainFeatures, AIFeatures, buttonText, linkText }) => {
5
+ if (!title)
6
+ return null;
7
+ const buttonStyle = cardStyle === 'Secondary' ? 'primary3' : 'primary';
8
+ const renderFeatures = (features, className) => features.map((feature) => (_jsxs("div", { className: `ratafia-card__feature ${className ?? ''}`, children: [feature.image?.url && _jsx(IconSvgURLWithThemeColor, { url: feature.image.url, height: '16', width: '16' }), _jsx(RichTextStrapi, { html: feature.title })] }, feature.title)));
9
+ return (_jsxs("div", { className: `ratafia-card ${cardStyle ? stringSlugify(cardStyle) : 'primary'}`, children: [_jsxs("div", { className: 'ratafia-card__header', children: [title && (_jsxs("div", { className: 'ratafia-card__title', children: [iconTitle?.url && _jsx(IconSvgURLWithThemeColor, { url: iconTitle.url, height: '26', width: '26' }), _jsx(RichTextStrapi, { html: title })] })), priceText && _jsx("div", { className: 'ratafia-card__price-text', children: priceText })] }), _jsx("hr", {}), _jsxs("div", { className: 'ratafia-card__body', children: [mainFeatures && renderFeatures(mainFeatures, 'main-feature'), AIFeatures && renderFeatures(AIFeatures, 'ai-feature')] }), buttonText && (_jsx("div", { className: 'ratafia-card__footer', children: _jsx(Button, { dataQa: 'ratafia-card-button', givenClass: 'ratafia-card__button', color: buttonStyle, label: buttonText, link: linkText ?? '#' }) }))] }));
10
+ };
11
+ export default RatafiaSubscriptionCard;
@@ -0,0 +1,93 @@
1
+ @import '../../../globalStyles/variables.scss';
2
+ @import '../../../globalStyles/mediaqueries.scss';
3
+
4
+ .ratafia-card {
5
+ display: flex;
6
+ flex-flow: column nowrap;
7
+ flex: 1;
8
+ gap: 0.5rem;
9
+ min-width: 320px;
10
+ padding: 1rem;
11
+ border-radius: $global-border-radius;
12
+
13
+ &__header {
14
+ display: flex;
15
+ flex-flow: row wrap;
16
+ align-items: center;
17
+ justify-content: space-between;
18
+ gap: 0.5rem 1rem;
19
+ }
20
+
21
+ &__title {
22
+ display: flex;
23
+ flex-flow: row nowrap;
24
+ align-items: center;
25
+ gap: 0.8rem;
26
+ font-weight: bold;
27
+ }
28
+
29
+ hr {
30
+ border: none;
31
+ border-top: 1px solid get-color(neutral, neutral-4);
32
+ width: 100%;
33
+ }
34
+
35
+ &__body {
36
+ display: flex;
37
+ flex-flow: column;
38
+ flex: 1;
39
+ }
40
+
41
+ &__feature {
42
+ display: flex;
43
+ flex-flow: row nowrap;
44
+ justify-content: flex-start;
45
+ gap: 0.5rem;
46
+ color: get-color(neutral, neutral-1);
47
+ text-align: left;
48
+ padding: 0.25rem 0;
49
+
50
+ .icon-svg-with-theme-color {
51
+ flex-basis: 1rem;
52
+ margin-top: 0.2rem;
53
+ }
54
+
55
+ &.ratafia-card__ai-feature {
56
+ background-color: get-color(primary, main-light-6);
57
+ padding-left: 0.5rem;
58
+ }
59
+ }
60
+
61
+ &__footer {
62
+ display: flex;
63
+ margin-top: 1.5rem;
64
+ }
65
+
66
+ &.primary {
67
+ background-color: get-color(neutral, neutral-6);
68
+
69
+ .icon-svg-with-theme-color {
70
+ background-color: get-color(primary, main-light-1);
71
+ }
72
+
73
+ .ratafia-card__feature {
74
+ &.ratafia-card__ai-feature {
75
+ background-color: get-color(primary, main-light-6);
76
+ }
77
+ }
78
+ }
79
+
80
+ &.secondary {
81
+ background-color: get-color(secondary, main-light-4);
82
+
83
+ .icon-svg-with-theme-color {
84
+ background-color: get-color(secondary, main-dark-2);
85
+ }
86
+
87
+ .ratafia-card__feature {
88
+ &.ratafia-card__ai-feature {
89
+ background-color: get-color(secondary, main-light-3);
90
+ }
91
+ }
92
+ }
93
+ }
@@ -0,0 +1,58 @@
1
+ import React, { FC, ReactNode } from 'react'
2
+
3
+ import { BenefitProps, RatafiaSubscriptionCardProps } from './RatafiaSubscriptionCardProps.types'
4
+ import { Button, IconSvgURLWithThemeColor, RichTextStrapi } from '../../atoms'
5
+ import { stringSlugify } from '../../../utils/stringSlugify'
6
+
7
+ const RatafiaSubscriptionCard: FC<RatafiaSubscriptionCardProps> = ({
8
+ cardStyle,
9
+ iconTitle,
10
+ title,
11
+ priceText,
12
+ mainFeatures,
13
+ AIFeatures,
14
+ buttonText,
15
+ linkText
16
+ }) => {
17
+ if (!title) return null
18
+ const buttonStyle = cardStyle === 'Secondary' ? 'primary3' : 'primary'
19
+ const renderFeatures = (features: BenefitProps[], className?: string): ReactNode =>
20
+ features.map((feature) => (
21
+ <div key={feature.title} className={`ratafia-card__feature ${className ?? ''}`}>
22
+ {feature.image?.url && <IconSvgURLWithThemeColor url={feature.image.url} height='16' width='16' />}
23
+ <RichTextStrapi html={feature.title} />
24
+ </div>
25
+ ))
26
+
27
+ return (
28
+ <div className={`ratafia-card ${cardStyle ? stringSlugify(cardStyle) : 'primary'}`}>
29
+ <div className='ratafia-card__header'>
30
+ {title && (
31
+ <div className='ratafia-card__title'>
32
+ {iconTitle?.url && <IconSvgURLWithThemeColor url={iconTitle.url} height='26' width='26' />}
33
+ <RichTextStrapi html={title} />
34
+ </div>
35
+ )}
36
+ {priceText && <div className='ratafia-card__price-text'>{priceText}</div>}
37
+ </div>
38
+ <hr />
39
+ <div className='ratafia-card__body'>
40
+ {mainFeatures && renderFeatures(mainFeatures as unknown as BenefitProps[], 'main-feature')}
41
+ {AIFeatures && renderFeatures(AIFeatures as unknown as BenefitProps[], 'ai-feature')}
42
+ </div>
43
+ {buttonText && (
44
+ <div className='ratafia-card__footer'>
45
+ <Button
46
+ dataQa='ratafia-card-button'
47
+ givenClass='ratafia-card__button'
48
+ color={buttonStyle}
49
+ label={buttonText}
50
+ link={linkText ?? '#'}
51
+ />
52
+ </div>
53
+ )}
54
+ </div>
55
+ )
56
+ }
57
+
58
+ export default RatafiaSubscriptionCard
@@ -0,0 +1,24 @@
1
+ export interface RatafiaSubscriptionCardProps {
2
+ cardStyle?: CardStyleType;
3
+ iconTitle?: IconTitleProps;
4
+ title?: string;
5
+ priceText?: string;
6
+ mainFeatures?: BenefitProps[];
7
+ AIFeatures?: BenefitProps[];
8
+ buttonText?: string;
9
+ linkText?: string;
10
+ }
11
+ interface IconTitleProps {
12
+ name?: string;
13
+ url: string;
14
+ }
15
+ export interface BenefitProps {
16
+ title?: string;
17
+ description: string;
18
+ image?: {
19
+ name: string;
20
+ url: string;
21
+ };
22
+ }
23
+ export type CardStyleType = 'Primary' | 'Secondary';
24
+ export {};
@@ -0,0 +1,26 @@
1
+ export interface RatafiaSubscriptionCardProps {
2
+ cardStyle?: CardStyleType
3
+ iconTitle?: IconTitleProps
4
+ title?: string
5
+ priceText?: string
6
+ mainFeatures?: BenefitProps[]
7
+ AIFeatures?: BenefitProps[]
8
+ buttonText?: string
9
+ linkText?: string
10
+ }
11
+
12
+ interface IconTitleProps {
13
+ name?: string
14
+ url: string
15
+ }
16
+
17
+ export interface BenefitProps {
18
+ title?: string
19
+ description: string
20
+ image?: {
21
+ name: string
22
+ url: string
23
+ }
24
+ }
25
+
26
+ export type CardStyleType = 'Primary' | 'Secondary'
@@ -0,0 +1,2 @@
1
+ export { default as RatafiaSubscriptionCard } from './RatafiaSubscriptionCard';
2
+ export { type RatafiaSubscriptionCardProps } from './RatafiaSubscriptionCardProps.types';
@@ -0,0 +1 @@
1
+ export { default as RatafiaSubscriptionCard } from './RatafiaSubscriptionCard';
@@ -0,0 +1,2 @@
1
+ export { default as RatafiaSubscriptionCard } from './RatafiaSubscriptionCard'
2
+ export { type RatafiaSubscriptionCardProps } from './RatafiaSubscriptionCardProps.types'
@@ -30,6 +30,7 @@ export * from './PhoneContactBoxDesktop';
30
30
  export * from './PhoneContactBoxMobile';
31
31
  export * from './PopularDocs';
32
32
  export * from './PricingCard';
33
+ export * from './RatafiaSubscriptionCard';
33
34
  export * from './Snackbar';
34
35
  export * from './StepGetForm';
35
36
  export * from './StepRatafiaCardList';
@@ -30,6 +30,7 @@ export * from './PhoneContactBoxDesktop';
30
30
  export * from './PhoneContactBoxMobile';
31
31
  export * from './PopularDocs';
32
32
  export * from './PricingCard';
33
+ export * from './RatafiaSubscriptionCard';
33
34
  export * from './Snackbar';
34
35
  export * from './StepGetForm';
35
36
  export * from './StepRatafiaCardList';
@@ -30,6 +30,7 @@ export * from './PhoneContactBoxDesktop'
30
30
  export * from './PhoneContactBoxMobile'
31
31
  export * from './PopularDocs'
32
32
  export * from './PricingCard'
33
+ export * from './RatafiaSubscriptionCard'
33
34
  export * from './Snackbar'
34
35
  export * from './StepGetForm'
35
36
  export * from './StepRatafiaCardList'
@@ -1,9 +1,9 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { Article } from '../../molecules';
3
3
  // import './ArticlesList.scss'
4
- const ArticlesList = ({ articles = [], isCategoryProductPage = false }) => {
4
+ const ArticlesList = ({ articles = [] }) => {
5
5
  if (articles?.length === 0)
6
6
  return null;
7
- return (_jsx("div", { className: 'articles_wrapper', children: articles.map((article) => (_jsx(Article, { ...article, isCategoryProductPage: isCategoryProductPage }, `article_${article?.id}`))) }));
7
+ return (_jsx("div", { className: 'articles_wrapper', children: articles.map((article) => (_jsx(Article, { ...article }, `article_${article?.id}`))) }));
8
8
  };
9
9
  export default ArticlesList;
@@ -5,13 +5,13 @@ import { Article, type ArticleProps } from '../../molecules'
5
5
  import { type ArticlesListProps } from './ArticlesListProps.types'
6
6
  // import './ArticlesList.scss'
7
7
 
8
- const ArticlesList: FC<ArticlesListProps> = ({ articles = [], isCategoryProductPage = false }) => {
8
+ const ArticlesList: FC<ArticlesListProps> = ({ articles = [] }) => {
9
9
  if (articles?.length === 0) return null
10
10
 
11
11
  return (
12
12
  <div className='articles_wrapper'>
13
13
  {articles.map((article: ArticleProps) => (
14
- <Article key={`article_${article?.id}`} {...article} isCategoryProductPage={isCategoryProductPage} />
14
+ <Article key={`article_${article?.id}`} {...article} />
15
15
  ))}
16
16
  </div>
17
17
  )
@@ -1,5 +1,4 @@
1
1
  import { type ArticleProps } from '../../molecules';
2
2
  export interface ArticlesListProps {
3
3
  articles: ArticleProps[];
4
- isCategoryProductPage?: boolean;
5
4
  }
@@ -2,5 +2,4 @@ import { type ArticleProps } from '../../molecules'
2
2
 
3
3
  export interface ArticlesListProps {
4
4
  articles: ArticleProps[]
5
- isCategoryProductPage?: boolean
6
5
  }
@@ -2,10 +2,9 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { ArticlesList } from '../../organisms';
3
3
  import { Button } from '../../atoms';
4
4
  // import './BlogSection.scss'
5
- const BlogSection = ({ blogTitle, blogCta = null, blogDescription = null, articles }) => {
5
+ const BlogSection = ({ blogTitle, blogCta, articles }) => {
6
6
  if (articles.articles?.length === 0)
7
- return;
8
- const categoryProductTitle = !!blogDescription;
9
- return (_jsxs("div", { className: 'blog', children: [_jsx("h2", { className: `serif --super-large blog__title ${categoryProductTitle ? 'category-product-title' : ''}`, children: blogTitle }), blogDescription && _jsx("p", { className: 'blog__description', children: blogDescription }), _jsx(ArticlesList, { articles: articles.articles, isCategoryProductPage: categoryProductTitle }), blogCta && _jsx(Button, { dataQa: '', color: 'secondary', label: blogCta, givenClass: 'cta-button', link: '/articles' })] }));
7
+ return null;
8
+ return (_jsxs("div", { className: 'blog', children: [_jsx("h2", { className: 'serif --super-large blog__title', children: blogTitle }), _jsx(ArticlesList, { articles: articles.articles }), _jsx(Button, { dataQa: '', color: 'secondary', label: blogCta, givenClass: 'cta-button', link: '/articles' })] }));
10
9
  };
11
10
  export default BlogSection;
@@ -14,33 +14,12 @@
14
14
  max-width: $lg;
15
15
  }
16
16
 
17
- .blog__description {
18
- font-family: $font-sans;
19
- font-size: 16px;
20
- font-weight: 400;
21
- line-height: 22px;
22
- letter-spacing: -0.3px;
23
- text-align: left;
24
- color: #6d7275;
25
- margin: 1rem 0 1.5rem 0;
26
- }
27
-
28
17
  .blog__title {
29
18
  color: get-color(primary, main-dark-1);
30
19
 
31
20
  @include laptop {
32
21
  margin-bottom: 3rem;
33
22
  }
34
-
35
- &.category-product-title {
36
- margin-bottom: 0;
37
- font-family: $font-sans;
38
- font-size: 28px;
39
- font-weight: 700;
40
- line-height: 32px;
41
- letter-spacing: -0.3px;
42
- text-align: left;
43
- }
44
23
  }
45
24
 
46
25
  .cta-button {
@@ -6,18 +6,14 @@ import { type BlogSectionProps } from './BlogSectionProps.types'
6
6
  import { Button } from '../../atoms'
7
7
  // import './BlogSection.scss'
8
8
 
9
- const BlogSection: FC<BlogSectionProps> = ({ blogTitle, blogCta = null, blogDescription = null, articles }) => {
10
- if (articles.articles?.length === 0) return
11
- const categoryProductTitle = !!blogDescription
9
+ const BlogSection: FC<BlogSectionProps> = ({ blogTitle, blogCta, articles }) => {
10
+ if (articles.articles?.length === 0) return null
12
11
 
13
12
  return (
14
13
  <div className={'blog'}>
15
- <h2 className={`serif --super-large blog__title ${categoryProductTitle ? 'category-product-title' : ''}`}>
16
- {blogTitle}
17
- </h2>
18
- {blogDescription && <p className='blog__description'>{blogDescription}</p>}
19
- <ArticlesList articles={articles.articles} isCategoryProductPage={categoryProductTitle} />
20
- {blogCta && <Button dataQa='' color='secondary' label={blogCta} givenClass='cta-button' link={'/articles'} />}
14
+ <h2 className={'serif --super-large blog__title'}>{blogTitle}</h2>
15
+ <ArticlesList articles={articles.articles} />
16
+ <Button dataQa='' color='secondary' label={blogCta} givenClass='cta-button' link={'/articles'} />
21
17
  </div>
22
18
  )
23
19
  }
@@ -1,7 +1,6 @@
1
1
  import { type ArticlesListProps } from '../../organisms';
2
2
  export interface BlogSectionProps {
3
3
  blogTitle: string;
4
- blogCta?: string | null;
5
- blogDescription?: string | null;
4
+ blogCta: string;
6
5
  articles: ArticlesListProps;
7
6
  }
@@ -2,7 +2,6 @@ import { type ArticlesListProps } from '../../organisms'
2
2
 
3
3
  export interface BlogSectionProps {
4
4
  blogTitle: string
5
- blogCta?: string | null
6
- blogDescription?: string | null
5
+ blogCta: string
7
6
  articles: ArticlesListProps
8
7
  }
@@ -2,6 +2,6 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { TrustPilot } from '../../atoms';
3
3
  // import './PeopleSayAboutUsSection.scss'
4
4
  const PeopleSayAboutUsSection = ({ title, testimonialsSectionContent, contentTrustPilot }) => {
5
- return (_jsxs("section", { className: 'people-say', children: [Boolean(title) && _jsx("h2", { className: 'people-say__title', children: title }), testimonialsSectionContent, _jsx(TrustPilot, { children: contentTrustPilot.children })] }));
5
+ return (_jsxs("section", { className: 'people-say', children: [Boolean(title) && _jsx("h2", { className: 'people-say__title', children: title }), testimonialsSectionContent, contentTrustPilot && _jsx(TrustPilot, { children: contentTrustPilot.children })] }));
6
6
  };
7
7
  export default PeopleSayAboutUsSection;
@@ -1,3 +1,5 @@
1
+ /* eslint-disable @typescript-eslint/strict-boolean-expressions */
2
+ /* eslint-disable @typescript-eslint/no-unnecessary-condition */
1
3
  import React, { type FC } from 'react'
2
4
 
3
5
  import { type PeopleSayAboutUsSectionProps } from './PeopleSayAboutUsSectionProps.types'
@@ -13,7 +15,7 @@ const PeopleSayAboutUsSection: FC<PeopleSayAboutUsSectionProps> = ({
13
15
  <section className='people-say'>
14
16
  {Boolean(title) && <h2 className='people-say__title'>{title}</h2>}
15
17
  {testimonialsSectionContent}
16
- <TrustPilot>{contentTrustPilot.children}</TrustPilot>
18
+ {contentTrustPilot && <TrustPilot>{contentTrustPilot.children}</TrustPilot>}
17
19
  </section>
18
20
  )
19
21
  }
@@ -1,6 +1,6 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
2
  declare module '*.svg' {
3
- const content: string
3
+ const content: any
4
4
  export default content
5
5
  }
6
6
 
@@ -99,6 +99,7 @@
99
99
  @import '../components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobile.scss';
100
100
  @import '../components/molecules/PopularDocs/PopularDocs.scss';
101
101
  @import '../components/molecules/PricingCard/PricingCard.scss';
102
+ @import '../components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.scss';
102
103
  @import '../components/molecules/Snackbar/Snackbar.scss';
103
104
  @import '../components/molecules/StepGetForm/StepGetForm.scss';
104
105
  @import '../components/molecules/StepRatafiaCardList/StepRatafiaCardList.scss';
@@ -1 +1 @@
1
- {"root":["../src/custom.d.ts","../src/index.ts","../src/components/atoms/index.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCard.tsx","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCardProps.types.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/index.ts","../src/components/atoms/AddButton/AddButton.tsx","../src/components/atoms/AddButton/AddButtonProps.types.ts","../src/components/atoms/AddButton/index.ts","../src/components/atoms/BaseBox/BaseBox.styled.ts","../src/components/atoms/BaseBox/BaseBox.tsx","../src/components/atoms/BaseBox/BaseBoxProps.types.ts","../src/components/atoms/BaseBox/index.ts","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCard.tsx","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCardProps.types.ts","../src/components/atoms/BenefitRatafiaCard/index.ts","../src/components/atoms/BillCard/BillCard.tsx","../src/components/atoms/BillCard/BillCardProps.types.ts","../src/components/atoms/BillCard/index.ts","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenu.tsx","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenuProps.types.ts","../src/components/atoms/BottomOverlayMenu/index.ts","../src/components/atoms/BreadcrumItem/BreadcrumItem.tsx","../src/components/atoms/BreadcrumItem/BreadcrumItemProps.types.ts","../src/components/atoms/BreadcrumItem/index.ts","../src/components/atoms/Button/Button.tsx","../src/components/atoms/Button/ButtonProps.types.ts","../src/components/atoms/Button/index.ts","../src/components/atoms/ButtonIcon/ButtonIcon.tsx","../src/components/atoms/ButtonIcon/ButtonIconProps.types.ts","../src/components/atoms/ButtonIcon/index.ts","../src/components/atoms/CardPane/CardPane.tsx","../src/components/atoms/CardPane/CardPaneInfo.tsx","../src/components/atoms/CardPane/CardPaneProps.types.ts","../src/components/atoms/CardPane/index.ts","../src/components/atoms/Checkbox/Checkbox.tsx","../src/components/atoms/Checkbox/CheckboxProps.types.ts","../src/components/atoms/Checkbox/index.ts","../src/components/atoms/DatePickerCustom/DatePickerCustom.tsx","../src/components/atoms/DatePickerCustom/DatePickerCustomProps.types.ts","../src/components/atoms/DatePickerCustom/index.ts","../src/components/atoms/DialogMenuIcon/DialogMenuIcon.tsx","../src/components/atoms/DialogMenuIcon/DialogMenuIconProps.types.ts","../src/components/atoms/DialogMenuIcon/index.ts","../src/components/atoms/Disclaimer/Disclaimer.tsx","../src/components/atoms/Disclaimer/DisclaimerProps.types.ts","../src/components/atoms/Disclaimer/index.ts","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafia.tsx","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.ts","../src/components/atoms/DisclaimerRatafia/index.ts","../src/components/atoms/Divider/Divider.tsx","../src/components/atoms/Divider/DividerProps.types.ts","../src/components/atoms/Divider/index.ts","../src/components/atoms/DocumentStatus/DocumentStatus.tsx","../src/components/atoms/DocumentStatus/DocumentStatusProps.types.ts","../src/components/atoms/DocumentStatus/index.ts","../src/components/atoms/DocumentTag/DocumentTag.tsx","../src/components/atoms/DocumentTag/DocumentTagProps.ts","../src/components/atoms/DocumentTag/index.ts","../src/components/atoms/ExpertCard/ExpertCard.tsx","../src/components/atoms/ExpertCard/ExpertCardProps.types.ts","../src/components/atoms/ExpertCard/index.ts","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCard.tsx","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCardProps.types.ts","../src/components/atoms/FeatureRatafiaCard/index.ts","../src/components/atoms/FormFaq/FormFaq.tsx","../src/components/atoms/FormFaq/FormFaqProps.types.ts","../src/components/atoms/FormFaq/index.ts","../src/components/atoms/GoogleButton/GoogleButton.tsx","../src/components/atoms/GoogleButton/GoogleButtonProps.types.ts","../src/components/atoms/GoogleButton/index.ts","../src/components/atoms/IconImage/IconImage.tsx","../src/components/atoms/IconImage/IconImageProps.types.ts","../src/components/atoms/IconImage/index.ts","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColor.tsx","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColorProps.types.ts","../src/components/atoms/IconSvgURLWithThemeColor/index.ts","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.tsx","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.types.ts","../src/components/atoms/IconTextInfoSection/index.ts","../src/components/atoms/InfoBox/InfoBox.tsx","../src/components/atoms/InfoBox/InfoBoxProps.types.ts","../src/components/atoms/InfoBox/index.ts","../src/components/atoms/JumbotronStatic/JumbotronStatic.tsx","../src/components/atoms/JumbotronStatic/JumbotronStaticProps.types.ts","../src/components/atoms/JumbotronStatic/index.ts","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCard.tsx","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCardProps.types.ts","../src/components/atoms/KeyFactRatafiaCard/index.ts","../src/components/atoms/Logo/Logo.tsx","../src/components/atoms/Logo/LogoProps.types.ts","../src/components/atoms/Logo/index.ts","../src/components/atoms/LogoText/LogoText.tsx","../src/components/atoms/LogoText/LogoTextProps.types.ts","../src/components/atoms/LogoText/index.ts","../src/components/atoms/MenuItems/MenuItemProps.types.ts","../src/components/atoms/MenuItems/MenuItems.tsx","../src/components/atoms/MenuItems/index.ts","../src/components/atoms/Message/Message.tsx","../src/components/atoms/Message/MessageProps.types.ts","../src/components/atoms/Message/index.ts","../src/components/atoms/MessageInformation/MessageInformation.tsx","../src/components/atoms/MessageInformation/MessageInformationProps.types.ts","../src/components/atoms/MessageInformation/index.ts","../src/components/atoms/MoreDocsItem/MoreDocsItem.tsx","../src/components/atoms/MoreDocsItem/MoreDocsItemProps.ts","../src/components/atoms/MoreDocsItem/index.ts","../src/components/atoms/NavMenuItem/NavMenuItem.tsx","../src/components/atoms/NavMenuItem/NavMenuItemProps.ts","../src/components/atoms/NavMenuItem/index.ts","../src/components/atoms/PaypalButton/PaypalButton.tsx","../src/components/atoms/PaypalButton/PaypalButtonProps.types.ts","../src/components/atoms/PaypalButton/index.ts","../src/components/atoms/PopularDocsItem/PopularDocsItem.tsx","../src/components/atoms/PopularDocsItem/PopularDocsItemProps.ts","../src/components/atoms/PopularDocsItem/index.ts","../src/components/atoms/ProgressBar/ProgressBar.tsx","../src/components/atoms/ProgressBar/ProgressBarProps.types.ts","../src/components/atoms/ProgressBar/index.ts","../src/components/atoms/Radio/Radio.tsx","../src/components/atoms/Radio/RadioProps.types.ts","../src/components/atoms/Radio/index.ts","../src/components/atoms/RemoveButton/RemoveButton.tsx","../src/components/atoms/RemoveButton/RemoveButtonProps.types.ts","../src/components/atoms/RemoveButton/index.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafia.tsx","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafiaProps.types.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/index.ts","../src/components/atoms/RichTextInner/RichTextInner.tsx","../src/components/atoms/RichTextInner/RichTextInnerProps.types.ts","../src/components/atoms/RichTextInner/index.ts","../src/components/atoms/RichTextStrapi/RichTextMedia.ts","../src/components/atoms/RichTextStrapi/RichTextStrapi.tsx","../src/components/atoms/RichTextStrapi/RichTextStrapiProps.ts","../src/components/atoms/RichTextStrapi/index.ts","../src/components/atoms/RichTextStrapi/useFormattedText.tsx","../src/components/atoms/SearchSelect/SearchSelect.tsx","../src/components/atoms/SearchSelect/SearchSelectProps.types.ts","../src/components/atoms/SearchSelect/index.ts","../src/components/atoms/ShowMoreBox/ShowMoreBox.tsx","../src/components/atoms/ShowMoreBox/ShowMoreBoxProps.ts","../src/components/atoms/ShowMoreBox/index.ts","../src/components/atoms/SidemenuTab/SideMenuTabProps.types.ts","../src/components/atoms/SidemenuTab/SidemenuTab.tsx","../src/components/atoms/SidemenuTab/index.ts","../src/components/atoms/Spinner/Spinner.tsx","../src/components/atoms/Spinner/SpinnerProps.types.ts","../src/components/atoms/Spinner/index.ts","../src/components/atoms/StepRatafiaCard/StepRatafiaCard.tsx","../src/components/atoms/StepRatafiaCard/StepRatafiaCardProps.types.ts","../src/components/atoms/StepRatafiaCard/index.ts","../src/components/atoms/Tag/Tag.tsx","../src/components/atoms/Tag/TagProps.ts","../src/components/atoms/Tag/index.ts","../src/components/atoms/TagRatafiaItem/TagRatafiaItem.tsx","../src/components/atoms/TagRatafiaItem/TagRatafiaItemProps.types.ts","../src/components/atoms/TagRatafiaItem/index.ts","../src/components/atoms/Tagline/Tagline.tsx","../src/components/atoms/Tagline/TaglineProps.types.ts","../src/components/atoms/Tagline/index.ts","../src/components/atoms/TestAB/TestAB.tsx","../src/components/atoms/TextArea/TextArea.tsx","../src/components/atoms/TextArea/TextAreaProps.types.ts","../src/components/atoms/TextArea/index.ts","../src/components/atoms/Toggle/Toggle.tsx","../src/components/atoms/Toggle/ToggleProps.types.ts","../src/components/atoms/Toggle/index.ts","../src/components/atoms/Tooltip/Tooltip.tsx","../src/components/atoms/Tooltip/TooltipProps.types.ts","../src/components/atoms/Tooltip/index.ts","../src/components/atoms/TopBar/TopBar.tsx","../src/components/atoms/TopBar/TopBarProps.types.ts","../src/components/atoms/TopBar/index.ts","../src/components/atoms/TopBarMobile/TopBarMobile.tsx","../src/components/atoms/TopBarMobile/index.ts","../src/components/atoms/TrustPilot/TrustPilot.tsx","../src/components/atoms/TrustPilot/TrustPilotProps.types.ts","../src/components/atoms/TrustPilot/index.ts","../src/components/atoms/Video/Video.tsx","../src/components/atoms/Video/VideoProps.types.ts","../src/components/atoms/Video/index.ts","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItems.tsx","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItemsProps.types.ts","../src/components/atoms/WhyLawDistrictItems/index.ts","../src/components/atoms/WideInfoBar/WideInfoBar.tsx","../src/components/atoms/WideInfoBar/index.ts","../src/components/molecules/index.ts","../src/components/molecules/AccordionItem/AccordionItem.tsx","../src/components/molecules/AccordionItem/AccordionItemProps.types.ts","../src/components/molecules/AccordionItem/index.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardList.tsx","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardListProps.types.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/index.ts","../src/components/molecules/AlsoKnownAs/AlsoKnownAs.tsx","../src/components/molecules/AlsoKnownAs/AlsoKnownAsProps.types.ts","../src/components/molecules/AlsoKnownAs/index.ts","../src/components/molecules/Article/Article.tsx","../src/components/molecules/Article/ArticleProps.types.ts","../src/components/molecules/Article/index.ts","../src/components/molecules/BaseBoxList/BaseBoxList.tsx","../src/components/molecules/BaseBoxList/BaseBoxListProps.types.ts","../src/components/molecules/BaseBoxList/index.ts","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardList.tsx","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardListProps.types.ts","../src/components/molecules/BenefitRatafiaCardList/index.ts","../src/components/molecules/BottomFixedBar/BottomFixedBar.tsx","../src/components/molecules/BottomFixedBar/BottomFixedBarProps.types.ts","../src/components/molecules/BottomFixedBar/index.ts","../src/components/molecules/BottomOverlay/BottomOverlay.tsx","../src/components/molecules/BottomOverlay/BottomOverlayProps.types.ts","../src/components/molecules/BottomOverlay/index.ts","../src/components/molecules/BoxForm/BoxForm.tsx","../src/components/molecules/BoxForm/BoxFormProps.types.ts","../src/components/molecules/BoxForm/index.ts","../src/components/molecules/Breadcrumb/Breadcrumb.tsx","../src/components/molecules/Breadcrumb/BreadcrumbProps.types.ts","../src/components/molecules/Breadcrumb/index.ts","../src/components/molecules/ContactBox/ContactBox.tsx","../src/components/molecules/ContactBox/ContactBoxProps.types.ts","../src/components/molecules/ContactBox/index.ts","../src/components/molecules/ContinueEditingBanner/ContinueEditingBanner.tsx","../src/components/molecules/ContinueEditingBanner/ContinueEditingBannerProps.types.ts","../src/components/molecules/ContinueEditingBanner/index.ts","../src/components/molecules/CountDownMessage/CountDownMessage.tsx","../src/components/molecules/CountDownMessage/CountDownMessageProps.types.ts","../src/components/molecules/CountDownMessage/index.ts","../src/components/molecules/EmailContactBox/EmailContactBox.tsx","../src/components/molecules/EmailContactBox/EmailContactBoxProps.ts","../src/components/molecules/EmailContactBox/index.ts","../src/components/molecules/ExpertCardList/ExpertCardList.tsx","../src/components/molecules/ExpertCardList/ExpertCardListProps.types.ts","../src/components/molecules/ExpertCardList/index.ts","../src/components/molecules/FaqItem/FaqItem.tsx","../src/components/molecules/FaqItem/FaqItemProps.ts","../src/components/molecules/FaqItem/index.ts","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardList.tsx","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardListProps.types.ts","../src/components/molecules/FeatureRatafiaCardList/index.ts","../src/components/molecules/Feedback/Feedback.tsx","../src/components/molecules/Feedback/FeedbackProps.types.ts","../src/components/molecules/Feedback/index.ts","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.tsx","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.types.ts","../src/components/molecules/FreeDocModalContent/index.ts","../src/components/molecules/HeaderRatafia/HeaderRatafia.tsx","../src/components/molecules/HeaderRatafia/HeaderRatafiaProps.types.ts","../src/components/molecules/HeaderRatafia/index.ts","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.tsx","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafiaProps.types.ts","../src/components/molecules/KeyFactCardListRatafia/index.ts","../src/components/molecules/MenuItemsSection/MenuItemsSection.tsx","../src/components/molecules/MenuItemsSection/MenuItemsSectionProps.types.ts","../src/components/molecules/MenuItemsSection/index.ts","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContent.tsx","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContentProps.types.ts","../src/components/molecules/MidBannerRatafiaContent/index.ts","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.tsx","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSampleProps.types.ts","../src/components/molecules/MidBannerRatafiaSample/index.ts","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktop.tsx","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktopProps.ts","../src/components/molecules/MoreDocsDesktop/index.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.tsx","../src/components/molecules/MoreDocsMobile/MoreDocsMobileProps.ts","../src/components/molecules/MoreDocsMobile/index.ts","../src/components/molecules/NavBarDropDown/NavBarDropDown.tsx","../src/components/molecules/NavBarDropDown/NavBarDropDownProps.types.ts","../src/components/molecules/NavBarDropDown/index.ts","../src/components/molecules/Pagination/PageStepControl.tsx","../src/components/molecules/Pagination/PageStepControlProps.types.ts","../src/components/molecules/Pagination/PageSteps.tsx","../src/components/molecules/Pagination/Pagination.tsx","../src/components/molecules/Pagination/PaginationProps.types.ts","../src/components/molecules/Pagination/index.ts","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktop.tsx","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktopProps.types.ts","../src/components/molecules/PhoneContactBoxDesktop/index.ts","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobile.tsx","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobileProps.types.ts","../src/components/molecules/PhoneContactBoxMobile/index.ts","../src/components/molecules/PopularDocs/PopularDocs.tsx","../src/components/molecules/PopularDocs/PopularDocsProps.ts","../src/components/molecules/PopularDocs/index.ts","../src/components/molecules/PricingCard/PricingCard.tsx","../src/components/molecules/PricingCard/PricingCardProps.types.ts","../src/components/molecules/PricingCard/index.ts","../src/components/molecules/Snackbar/Snackbar.tsx","../src/components/molecules/Snackbar/SnackbarProps.types.ts","../src/components/molecules/Snackbar/index.ts","../src/components/molecules/StepGetForm/StepGetForm.tsx","../src/components/molecules/StepGetForm/StepGetFormProps.types.ts","../src/components/molecules/StepGetForm/index.ts","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardList.tsx","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardListProps.types.ts","../src/components/molecules/StepRatafiaCardList/index.ts","../src/components/molecules/TagsRatafiaList/TagsRatafiaList.tsx","../src/components/molecules/TagsRatafiaList/TagsRatafiaListProps.types.ts","../src/components/molecules/TagsRatafiaList/index.ts","../src/components/molecules/TextInput/Input.tsx","../src/components/molecules/TextInput/TextInput.tsx","../src/components/molecules/TextInput/TextInputLabel.tsx","../src/components/molecules/TextInput/TextInputMessage.tsx","../src/components/molecules/TextInput/TextInputProps.types.ts","../src/components/molecules/TextInput/TextInputTooltip.tsx","../src/components/molecules/TextInput/index.ts","../src/components/molecules/TooltipMenu/TooltipMenu.tsx","../src/components/molecules/TooltipMenu/TooltipMenuProps.types.ts","../src/components/molecules/TooltipMenu/index.ts","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.tsx","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsitesProps.types.ts","../src/components/molecules/TrustworthyWebsites/index.ts","../src/components/molecules/TypeModulesList/TypeModulesList.tsx","../src/components/molecules/TypeModulesList/TypeModulesListProps.types.ts","../src/components/molecules/TypeModulesList/index.ts","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZone.tsx","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZoneProps.types.ts","../src/components/molecules/UploadRatafiaZone/index.ts","../src/components/organisms/index.ts","../src/components/organisms/AboutUsContent/AboutUsContent.tsx","../src/components/organisms/AboutUsContent/AboutUsContentProps.types.ts","../src/components/organisms/AboutUsContent/index.ts","../src/components/organisms/Accordion/Accordion.context.tsx","../src/components/organisms/Accordion/Accordion.tsx","../src/components/organisms/Accordion/AccordionProps.types.ts","../src/components/organisms/Accordion/index.ts","../src/components/organisms/ArticlesList/ArticlesList.tsx","../src/components/organisms/ArticlesList/ArticlesListProps.types.ts","../src/components/organisms/ArticlesList/index.ts","../src/components/organisms/AsSeeInContent/AsSeeInContent.tsx","../src/components/organisms/AsSeeInContent/AsSeeInContentProps.types.ts","../src/components/organisms/AsSeeInContent/index.ts","../src/components/organisms/CardFunctionality/CardFunctionality.tsx","../src/components/organisms/CardFunctionality/CardFunctionalityProps.ts","../src/components/organisms/CardFunctionality/index.ts","../src/components/organisms/ContactJumbotron/ContactJumbotron.tsx","../src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.ts","../src/components/organisms/ContactJumbotron/index.ts","../src/components/organisms/CookiePolicyBar/CookiePolicyBar.tsx","../src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.ts","../src/components/organisms/CookiePolicyBar/index.ts","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafia.tsx","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafiaProps.types.ts","../src/components/organisms/ErrorContentRatafia/index.ts","../src/components/organisms/FaqGroup/FaqGroup.tsx","../src/components/organisms/FaqGroup/FaqGroupProps.ts","../src/components/organisms/FaqGroup/index.ts","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContent.tsx","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContentProps.types.ts","../src/components/organisms/FeaturesRatafiaContent/index.ts","../src/components/organisms/GuidelinesContent/GuidelinesContent.tsx","../src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts","../src/components/organisms/GuidelinesContent/index.ts","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.tsx","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContentProps.types.ts","../src/components/organisms/JumbotronRatafiaContent/index.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafia.tsx","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/index.ts","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafia.tsx","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsResultContentRatafia/index.ts","../src/components/organisms/LanguageSelector/LanguageSelector.tsx","../src/components/organisms/LanguageSelector/LanguageSelectorProps.ts","../src/components/organisms/LanguageSelector/LenguageSelectorItem.ts","../src/components/organisms/LanguageSelector/index.ts","../src/components/organisms/LanguageSelector/useLanguageOptions.tsx","../src/components/organisms/LanguageSelector/useLanguageSelected.tsx","../src/components/organisms/LanguageSelector/useLanguagesSelector.tsx","../src/components/organisms/LanguageSelectorMobile/LanguageSelectorMobile.tsx","../src/components/organisms/LanguageSelectorMobile/index.ts","../src/components/organisms/LayoutRatafia/LayoutRatafia.tsx","../src/components/organisms/LayoutRatafia/LayoutRatafiaProps.types.ts","../src/components/organisms/LayoutRatafia/index.ts","../src/components/organisms/ListStepsGetForm/ListStepsGetForm.tsx","../src/components/organisms/ListStepsGetForm/ListStepsGetFormProps.types.ts","../src/components/organisms/ListStepsGetForm/index.ts","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContent.tsx","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContentProps.types.ts","../src/components/organisms/LoginRatafiaContent/index.ts","../src/components/organisms/MobileBottomBar/MobileBottomBar.tsx","../src/components/organisms/MobileBottomBar/MobileBottomBarProps.types.ts","../src/components/organisms/MobileBottomBar/index.ts","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContent.tsx","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContentProps.types.ts","../src/components/organisms/StepsRatafiaContent/index.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.tsx","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContentProps.types.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/index.ts","../src/components/pages/index.ts","../src/components/pages/AboutUsPage/AboutUsPage.tsx","../src/components/pages/AboutUsPage/AboutUsPageProps.ts","../src/components/pages/AboutUsPage/index.ts","../src/components/pages/ContactUsPage/ContactUsPage.tsx","../src/components/pages/ContactUsPage/ContactUsPageProps.ts","../src/components/pages/ContactUsPage/index.ts","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.tsx","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPageProps.types.ts","../src/components/pages/ErrorRatafiaPage/index.ts","../src/components/pages/FaqsPage/FaqsPage.tsx","../src/components/pages/FaqsPage/FaqsPageProps.ts","../src/components/pages/FaqsPage/index.ts","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.tsx","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPageProps.types.ts","../src/components/pages/KeyFactsResultRatafiaPage/index.ts","../src/components/pages/LegalPage/LegalPage.tsx","../src/components/pages/LegalPage/LegalPageProps.ts","../src/components/pages/LegalPage/index.ts","../src/components/pages/LoginRatafiaPage/LoginRatafiaPage.tsx","../src/components/pages/LoginRatafiaPage/LoginRatafiaPageProps.ts","../src/components/pages/LoginRatafiaPage/index.ts","../src/components/pages/RatafiaLandingPage/RatafiaLandingPage.tsx","../src/components/pages/RatafiaLandingPage/RatafiaLandingPageProps.types.ts","../src/components/pages/RatafiaLandingPage/index.ts","../src/components/pages/UnsubscribePage/UnsubscribePage.tsx","../src/components/pages/UnsubscribePage/UnsubscribePageProps.ts","../src/components/pages/UnsubscribePage/index.ts","../src/components/sections/index.ts","../src/components/sections/AboutUsSection/AboutUsSection.tsx","../src/components/sections/AboutUsSection/AboutUsSectionProps.types.ts","../src/components/sections/AboutUsSection/index.ts","../src/components/sections/AsSeeInSection/AsSeeInSection.tsx","../src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts","../src/components/sections/AsSeeInSection/index.ts","../src/components/sections/AsideMenuSection/AsideMenuSection.tsx","../src/components/sections/AsideMenuSection/AsideMenuSectionProps.ts","../src/components/sections/AsideMenuSection/index.ts","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.ts","../src/components/sections/BenefitsRatafiaSection/index.ts","../src/components/sections/BlogSection/BlogSection.tsx","../src/components/sections/BlogSection/BlogSectionProps.types.ts","../src/components/sections/BlogSection/index.ts","../src/components/sections/ContactSection/ContactSection.tsx","../src/components/sections/ContactSection/ContactSectionProps.ts","../src/components/sections/ContactSection/index.ts","../src/components/sections/ExpertsSection/ExpertsSection.tsx","../src/components/sections/ExpertsSection/ExpertsSectionProps.types.ts","../src/components/sections/ExpertsSection/index.ts","../src/components/sections/FaqSection/FaqSection.tsx","../src/components/sections/FaqSection/FaqSectionProps.ts","../src/components/sections/FaqSection/index.ts","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.tsx","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSectionProps.types.ts","../src/components/sections/FeaturesRatafiaSection/index.ts","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.ts","../src/components/sections/FunctionalityCardsSection/index.ts","../src/components/sections/GuidelinesSection/GuidelinesSection.tsx","../src/components/sections/GuidelinesSection/GuidelinesSectionProps.types.ts","../src/components/sections/GuidelinesSection/index.ts","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSectionProps.types.ts","../src/components/sections/HowGetYourFormsSection/index.ts","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSectionProps.types.ts","../src/components/sections/JumbotronRatafiaSection/index.ts","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.tsx","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSectionProps.types.ts","../src/components/sections/JumbotronSimplifiedSection/index.ts","../src/components/sections/LearnMoreSection/LearnMoreSection.tsx","../src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.ts","../src/components/sections/LearnMoreSection/index.ts","../src/components/sections/LegalSection/LegalSection.tsx","../src/components/sections/LegalSection/LegalSectionProps.ts","../src/components/sections/LegalSection/index.ts","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSectionProps.types.ts","../src/components/sections/MidBannerRatafiaSection/index.ts","../src/components/sections/MoreDocsSection/MoreDocsSection.tsx","../src/components/sections/MoreDocsSection/MoreDocsSectionProps.ts","../src/components/sections/MoreDocsSection/index.ts","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.ts","../src/components/sections/PeopleSayAboutUsSection/index.ts","../src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx","../src/components/sections/StepsRatafiaSection/StepsRatafiaSectionProps.types.ts","../src/components/sections/StepsRatafiaSection/index.ts","../src/components/sections/TryItRatafiaSection/TryItRatafiaSection.tsx","../src/components/sections/TryItRatafiaSection/TryItRatafiaSectionProps.types.ts","../src/components/sections/TryItRatafiaSection/index.ts","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSectionProps.types.ts","../src/components/sections/TryOurFreeLegalBlogsSection/index.ts","../src/components/sections/TryUsSection/TryUsSection.tsx","../src/components/sections/TryUsSection/TryUsSectionProps.ts","../src/components/sections/TryUsSection/index.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx","../src/components/sections/UnsubscribeSection/UnsubscribeSectionProps.ts","../src/components/sections/UnsubscribeSection/index.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSectionProps.types.ts","../src/components/sections/WhyLawDistrictSection/index.ts","../src/hooks/index.ts","../src/hooks/useIntersectionObserver.tsx","../src/hooks/useIsMobileOrTable.tsx","../src/utils/ProductCategory.ts","../src/utils/getCategoryIcons.tsx","../src/utils/getDateFormatMMMMYYYY.ts","../src/utils/getGatsbyImageSkeleton.tsx","../src/utils/getRichTextSkeleton.tsx","../src/utils/index.ts","../src/utils/replaceAll.ts","../src/utils/stringSlugify.ts"],"version":"5.6.3"}
1
+ {"root":["../src/custom.d.ts","../src/index.ts","../src/components/atoms/index.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCard.tsx","../src/components/atoms/ActionButtonHeaderRatafiaCard/ActionButtonHeaderRatafiaCardProps.types.ts","../src/components/atoms/ActionButtonHeaderRatafiaCard/index.ts","../src/components/atoms/AddButton/AddButton.tsx","../src/components/atoms/AddButton/AddButtonProps.types.ts","../src/components/atoms/AddButton/index.ts","../src/components/atoms/BaseBox/BaseBox.styled.ts","../src/components/atoms/BaseBox/BaseBox.tsx","../src/components/atoms/BaseBox/BaseBoxProps.types.ts","../src/components/atoms/BaseBox/index.ts","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCard.tsx","../src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCardProps.types.ts","../src/components/atoms/BenefitRatafiaCard/index.ts","../src/components/atoms/BillCard/BillCard.tsx","../src/components/atoms/BillCard/BillCardProps.types.ts","../src/components/atoms/BillCard/index.ts","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenu.tsx","../src/components/atoms/BottomOverlayMenu/BottomOverlayMenuProps.types.ts","../src/components/atoms/BottomOverlayMenu/index.ts","../src/components/atoms/BreadcrumItem/BreadcrumItem.tsx","../src/components/atoms/BreadcrumItem/BreadcrumItemProps.types.ts","../src/components/atoms/BreadcrumItem/index.ts","../src/components/atoms/Button/Button.tsx","../src/components/atoms/Button/ButtonProps.types.ts","../src/components/atoms/Button/index.ts","../src/components/atoms/ButtonIcon/ButtonIcon.tsx","../src/components/atoms/ButtonIcon/ButtonIconProps.types.ts","../src/components/atoms/ButtonIcon/index.ts","../src/components/atoms/CardPane/CardPane.tsx","../src/components/atoms/CardPane/CardPaneInfo.tsx","../src/components/atoms/CardPane/CardPaneProps.types.ts","../src/components/atoms/CardPane/index.ts","../src/components/atoms/Checkbox/Checkbox.tsx","../src/components/atoms/Checkbox/CheckboxProps.types.ts","../src/components/atoms/Checkbox/index.ts","../src/components/atoms/DatePickerCustom/DatePickerCustom.tsx","../src/components/atoms/DatePickerCustom/DatePickerCustomProps.types.ts","../src/components/atoms/DatePickerCustom/index.ts","../src/components/atoms/DialogMenuIcon/DialogMenuIcon.tsx","../src/components/atoms/DialogMenuIcon/DialogMenuIconProps.types.ts","../src/components/atoms/DialogMenuIcon/index.ts","../src/components/atoms/Disclaimer/Disclaimer.tsx","../src/components/atoms/Disclaimer/DisclaimerProps.types.ts","../src/components/atoms/Disclaimer/index.ts","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafia.tsx","../src/components/atoms/DisclaimerRatafia/DisclaimerRatafiaProps.ts","../src/components/atoms/DisclaimerRatafia/index.ts","../src/components/atoms/Divider/Divider.tsx","../src/components/atoms/Divider/DividerProps.types.ts","../src/components/atoms/Divider/index.ts","../src/components/atoms/DocumentStatus/DocumentStatus.tsx","../src/components/atoms/DocumentStatus/DocumentStatusProps.types.ts","../src/components/atoms/DocumentStatus/index.ts","../src/components/atoms/DocumentTag/DocumentTag.tsx","../src/components/atoms/DocumentTag/DocumentTagProps.ts","../src/components/atoms/DocumentTag/index.ts","../src/components/atoms/ExpertCard/ExpertCard.tsx","../src/components/atoms/ExpertCard/ExpertCardProps.types.ts","../src/components/atoms/ExpertCard/index.ts","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCard.tsx","../src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCardProps.types.ts","../src/components/atoms/FeatureRatafiaCard/index.ts","../src/components/atoms/FormFaq/FormFaq.tsx","../src/components/atoms/FormFaq/FormFaqProps.types.ts","../src/components/atoms/FormFaq/index.ts","../src/components/atoms/GoogleButton/GoogleButton.tsx","../src/components/atoms/GoogleButton/GoogleButtonProps.types.ts","../src/components/atoms/GoogleButton/index.ts","../src/components/atoms/IconImage/IconImage.tsx","../src/components/atoms/IconImage/IconImageProps.types.ts","../src/components/atoms/IconImage/index.ts","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColor.tsx","../src/components/atoms/IconSvgURLWithThemeColor/IconSvgURLWithThemeColorProps.types.ts","../src/components/atoms/IconSvgURLWithThemeColor/index.ts","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.tsx","../src/components/atoms/IconTextInfoSection/IconTextInfoSection.types.ts","../src/components/atoms/IconTextInfoSection/index.ts","../src/components/atoms/InfoBox/InfoBox.tsx","../src/components/atoms/InfoBox/InfoBoxProps.types.ts","../src/components/atoms/InfoBox/index.ts","../src/components/atoms/JumbotronStatic/JumbotronStatic.tsx","../src/components/atoms/JumbotronStatic/JumbotronStaticProps.types.ts","../src/components/atoms/JumbotronStatic/index.ts","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCard.tsx","../src/components/atoms/KeyFactRatafiaCard/KeyFactRatafiaCardProps.types.ts","../src/components/atoms/KeyFactRatafiaCard/index.ts","../src/components/atoms/Logo/Logo.tsx","../src/components/atoms/Logo/LogoProps.types.ts","../src/components/atoms/Logo/index.ts","../src/components/atoms/LogoText/LogoText.tsx","../src/components/atoms/LogoText/LogoTextProps.types.ts","../src/components/atoms/LogoText/index.ts","../src/components/atoms/MenuItems/MenuItemProps.types.ts","../src/components/atoms/MenuItems/MenuItems.tsx","../src/components/atoms/MenuItems/index.ts","../src/components/atoms/Message/Message.tsx","../src/components/atoms/Message/MessageProps.types.ts","../src/components/atoms/Message/index.ts","../src/components/atoms/MessageInformation/MessageInformation.tsx","../src/components/atoms/MessageInformation/MessageInformationProps.types.ts","../src/components/atoms/MessageInformation/index.ts","../src/components/atoms/MoreDocsItem/MoreDocsItem.tsx","../src/components/atoms/MoreDocsItem/MoreDocsItemProps.ts","../src/components/atoms/MoreDocsItem/index.ts","../src/components/atoms/NavMenuItem/NavMenuItem.tsx","../src/components/atoms/NavMenuItem/NavMenuItemProps.ts","../src/components/atoms/NavMenuItem/index.ts","../src/components/atoms/PaypalButton/PaypalButton.tsx","../src/components/atoms/PaypalButton/PaypalButtonProps.types.ts","../src/components/atoms/PaypalButton/index.ts","../src/components/atoms/PopularDocsItem/PopularDocsItem.tsx","../src/components/atoms/PopularDocsItem/PopularDocsItemProps.ts","../src/components/atoms/PopularDocsItem/index.ts","../src/components/atoms/ProgressBar/ProgressBar.tsx","../src/components/atoms/ProgressBar/ProgressBarProps.types.ts","../src/components/atoms/ProgressBar/index.ts","../src/components/atoms/Radio/Radio.tsx","../src/components/atoms/Radio/RadioProps.types.ts","../src/components/atoms/Radio/index.ts","../src/components/atoms/RemoveButton/RemoveButton.tsx","../src/components/atoms/RemoveButton/RemoveButtonProps.types.ts","../src/components/atoms/RemoveButton/index.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafia.tsx","../src/components/atoms/ReviewKeyFactsResultRatafia/ReviewKeyFactsResultRatafiaProps.types.ts","../src/components/atoms/ReviewKeyFactsResultRatafia/index.ts","../src/components/atoms/RichTextInner/RichTextInner.tsx","../src/components/atoms/RichTextInner/RichTextInnerProps.types.ts","../src/components/atoms/RichTextInner/index.ts","../src/components/atoms/RichTextStrapi/RichTextMedia.ts","../src/components/atoms/RichTextStrapi/RichTextStrapi.tsx","../src/components/atoms/RichTextStrapi/RichTextStrapiProps.ts","../src/components/atoms/RichTextStrapi/index.ts","../src/components/atoms/RichTextStrapi/useFormattedText.tsx","../src/components/atoms/SearchSelect/SearchSelect.tsx","../src/components/atoms/SearchSelect/SearchSelectProps.types.ts","../src/components/atoms/SearchSelect/index.ts","../src/components/atoms/ShowMoreBox/ShowMoreBox.tsx","../src/components/atoms/ShowMoreBox/ShowMoreBoxProps.ts","../src/components/atoms/ShowMoreBox/index.ts","../src/components/atoms/SidemenuTab/SideMenuTabProps.types.ts","../src/components/atoms/SidemenuTab/SidemenuTab.tsx","../src/components/atoms/SidemenuTab/index.ts","../src/components/atoms/Spinner/Spinner.tsx","../src/components/atoms/Spinner/SpinnerProps.types.ts","../src/components/atoms/Spinner/index.ts","../src/components/atoms/StepRatafiaCard/StepRatafiaCard.tsx","../src/components/atoms/StepRatafiaCard/StepRatafiaCardProps.types.ts","../src/components/atoms/StepRatafiaCard/index.ts","../src/components/atoms/Tag/Tag.tsx","../src/components/atoms/Tag/TagProps.ts","../src/components/atoms/Tag/index.ts","../src/components/atoms/TagRatafiaItem/TagRatafiaItem.tsx","../src/components/atoms/TagRatafiaItem/TagRatafiaItemProps.types.ts","../src/components/atoms/TagRatafiaItem/index.ts","../src/components/atoms/Tagline/Tagline.tsx","../src/components/atoms/Tagline/TaglineProps.types.ts","../src/components/atoms/Tagline/index.ts","../src/components/atoms/TestAB/TestAB.tsx","../src/components/atoms/TextArea/TextArea.tsx","../src/components/atoms/TextArea/TextAreaProps.types.ts","../src/components/atoms/TextArea/index.ts","../src/components/atoms/Toggle/Toggle.tsx","../src/components/atoms/Toggle/ToggleProps.types.ts","../src/components/atoms/Toggle/index.ts","../src/components/atoms/Tooltip/Tooltip.tsx","../src/components/atoms/Tooltip/TooltipProps.types.ts","../src/components/atoms/Tooltip/index.ts","../src/components/atoms/TopBar/TopBar.tsx","../src/components/atoms/TopBar/TopBarProps.types.ts","../src/components/atoms/TopBar/index.ts","../src/components/atoms/TopBarMobile/TopBarMobile.tsx","../src/components/atoms/TopBarMobile/index.ts","../src/components/atoms/TrustPilot/TrustPilot.tsx","../src/components/atoms/TrustPilot/TrustPilotProps.types.ts","../src/components/atoms/TrustPilot/index.ts","../src/components/atoms/Video/Video.tsx","../src/components/atoms/Video/VideoProps.types.ts","../src/components/atoms/Video/index.ts","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItems.tsx","../src/components/atoms/WhyLawDistrictItems/WhyLawDistrictItemsProps.types.ts","../src/components/atoms/WhyLawDistrictItems/index.ts","../src/components/atoms/WideInfoBar/WideInfoBar.tsx","../src/components/atoms/WideInfoBar/index.ts","../src/components/molecules/index.ts","../src/components/molecules/AccordionItem/AccordionItem.tsx","../src/components/molecules/AccordionItem/AccordionItemProps.types.ts","../src/components/molecules/AccordionItem/index.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardList.tsx","../src/components/molecules/ActionButtonHeaderRatafiaCardList/ActionButtonHeaderRatafiaCardListProps.types.ts","../src/components/molecules/ActionButtonHeaderRatafiaCardList/index.ts","../src/components/molecules/AlsoKnownAs/AlsoKnownAs.tsx","../src/components/molecules/AlsoKnownAs/AlsoKnownAsProps.types.ts","../src/components/molecules/AlsoKnownAs/index.ts","../src/components/molecules/Article/Article.tsx","../src/components/molecules/Article/ArticleProps.types.ts","../src/components/molecules/Article/index.ts","../src/components/molecules/BaseBoxList/BaseBoxList.tsx","../src/components/molecules/BaseBoxList/BaseBoxListProps.types.ts","../src/components/molecules/BaseBoxList/index.ts","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardList.tsx","../src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardListProps.types.ts","../src/components/molecules/BenefitRatafiaCardList/index.ts","../src/components/molecules/BottomFixedBar/BottomFixedBar.tsx","../src/components/molecules/BottomFixedBar/BottomFixedBarProps.types.ts","../src/components/molecules/BottomFixedBar/index.ts","../src/components/molecules/BottomOverlay/BottomOverlay.tsx","../src/components/molecules/BottomOverlay/BottomOverlayProps.types.ts","../src/components/molecules/BottomOverlay/index.ts","../src/components/molecules/BoxForm/BoxForm.tsx","../src/components/molecules/BoxForm/BoxFormProps.types.ts","../src/components/molecules/BoxForm/index.ts","../src/components/molecules/Breadcrumb/Breadcrumb.tsx","../src/components/molecules/Breadcrumb/BreadcrumbProps.types.ts","../src/components/molecules/Breadcrumb/index.ts","../src/components/molecules/ContactBox/ContactBox.tsx","../src/components/molecules/ContactBox/ContactBoxProps.types.ts","../src/components/molecules/ContactBox/index.ts","../src/components/molecules/ContinueEditingBanner/ContinueEditingBanner.tsx","../src/components/molecules/ContinueEditingBanner/ContinueEditingBannerProps.types.ts","../src/components/molecules/ContinueEditingBanner/index.ts","../src/components/molecules/CountDownMessage/CountDownMessage.tsx","../src/components/molecules/CountDownMessage/CountDownMessageProps.types.ts","../src/components/molecules/CountDownMessage/index.ts","../src/components/molecules/EmailContactBox/EmailContactBox.tsx","../src/components/molecules/EmailContactBox/EmailContactBoxProps.ts","../src/components/molecules/EmailContactBox/index.ts","../src/components/molecules/ExpertCardList/ExpertCardList.tsx","../src/components/molecules/ExpertCardList/ExpertCardListProps.types.ts","../src/components/molecules/ExpertCardList/index.ts","../src/components/molecules/FaqItem/FaqItem.tsx","../src/components/molecules/FaqItem/FaqItemProps.ts","../src/components/molecules/FaqItem/index.ts","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardList.tsx","../src/components/molecules/FeatureRatafiaCardList/FeatureRatafiaCardListProps.types.ts","../src/components/molecules/FeatureRatafiaCardList/index.ts","../src/components/molecules/Feedback/Feedback.tsx","../src/components/molecules/Feedback/FeedbackProps.types.ts","../src/components/molecules/Feedback/index.ts","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.tsx","../src/components/molecules/FreeDocModalContent/FreeDocModalContent.types.ts","../src/components/molecules/FreeDocModalContent/index.ts","../src/components/molecules/HeaderRatafia/HeaderRatafia.tsx","../src/components/molecules/HeaderRatafia/HeaderRatafiaProps.types.ts","../src/components/molecules/HeaderRatafia/index.ts","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.tsx","../src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafiaProps.types.ts","../src/components/molecules/KeyFactCardListRatafia/index.ts","../src/components/molecules/MenuItemsSection/MenuItemsSection.tsx","../src/components/molecules/MenuItemsSection/MenuItemsSectionProps.types.ts","../src/components/molecules/MenuItemsSection/index.ts","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContent.tsx","../src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContentProps.types.ts","../src/components/molecules/MidBannerRatafiaContent/index.ts","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.tsx","../src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSampleProps.types.ts","../src/components/molecules/MidBannerRatafiaSample/index.ts","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktop.tsx","../src/components/molecules/MoreDocsDesktop/MoreDocsDesktopProps.ts","../src/components/molecules/MoreDocsDesktop/index.ts","../src/components/molecules/MoreDocsMobile/MoreDocsMobile.tsx","../src/components/molecules/MoreDocsMobile/MoreDocsMobileProps.ts","../src/components/molecules/MoreDocsMobile/index.ts","../src/components/molecules/NavBarDropDown/NavBarDropDown.tsx","../src/components/molecules/NavBarDropDown/NavBarDropDownProps.types.ts","../src/components/molecules/NavBarDropDown/index.ts","../src/components/molecules/Pagination/PageStepControl.tsx","../src/components/molecules/Pagination/PageStepControlProps.types.ts","../src/components/molecules/Pagination/PageSteps.tsx","../src/components/molecules/Pagination/Pagination.tsx","../src/components/molecules/Pagination/PaginationProps.types.ts","../src/components/molecules/Pagination/index.ts","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktop.tsx","../src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktopProps.types.ts","../src/components/molecules/PhoneContactBoxDesktop/index.ts","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobile.tsx","../src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobileProps.types.ts","../src/components/molecules/PhoneContactBoxMobile/index.ts","../src/components/molecules/PopularDocs/PopularDocs.tsx","../src/components/molecules/PopularDocs/PopularDocsProps.ts","../src/components/molecules/PopularDocs/index.ts","../src/components/molecules/PricingCard/PricingCard.tsx","../src/components/molecules/PricingCard/PricingCardProps.types.ts","../src/components/molecules/PricingCard/index.ts","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.tsx","../src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.ts","../src/components/molecules/RatafiaSubscriptionCard/index.ts","../src/components/molecules/Snackbar/Snackbar.tsx","../src/components/molecules/Snackbar/SnackbarProps.types.ts","../src/components/molecules/Snackbar/index.ts","../src/components/molecules/StepGetForm/StepGetForm.tsx","../src/components/molecules/StepGetForm/StepGetFormProps.types.ts","../src/components/molecules/StepGetForm/index.ts","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardList.tsx","../src/components/molecules/StepRatafiaCardList/StepRatafiaCardListProps.types.ts","../src/components/molecules/StepRatafiaCardList/index.ts","../src/components/molecules/TagsRatafiaList/TagsRatafiaList.tsx","../src/components/molecules/TagsRatafiaList/TagsRatafiaListProps.types.ts","../src/components/molecules/TagsRatafiaList/index.ts","../src/components/molecules/TextInput/Input.tsx","../src/components/molecules/TextInput/TextInput.tsx","../src/components/molecules/TextInput/TextInputLabel.tsx","../src/components/molecules/TextInput/TextInputMessage.tsx","../src/components/molecules/TextInput/TextInputProps.types.ts","../src/components/molecules/TextInput/TextInputTooltip.tsx","../src/components/molecules/TextInput/index.ts","../src/components/molecules/TooltipMenu/TooltipMenu.tsx","../src/components/molecules/TooltipMenu/TooltipMenuProps.types.ts","../src/components/molecules/TooltipMenu/index.ts","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.tsx","../src/components/molecules/TrustworthyWebsites/TrustworthyWebsitesProps.types.ts","../src/components/molecules/TrustworthyWebsites/index.ts","../src/components/molecules/TypeModulesList/TypeModulesList.tsx","../src/components/molecules/TypeModulesList/TypeModulesListProps.types.ts","../src/components/molecules/TypeModulesList/index.ts","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZone.tsx","../src/components/molecules/UploadRatafiaZone/UploadRatafiaZoneProps.types.ts","../src/components/molecules/UploadRatafiaZone/index.ts","../src/components/organisms/index.ts","../src/components/organisms/AboutUsContent/AboutUsContent.tsx","../src/components/organisms/AboutUsContent/AboutUsContentProps.types.ts","../src/components/organisms/AboutUsContent/index.ts","../src/components/organisms/Accordion/Accordion.context.tsx","../src/components/organisms/Accordion/Accordion.tsx","../src/components/organisms/Accordion/AccordionProps.types.ts","../src/components/organisms/Accordion/index.ts","../src/components/organisms/ArticlesList/ArticlesList.tsx","../src/components/organisms/ArticlesList/ArticlesListProps.types.ts","../src/components/organisms/ArticlesList/index.ts","../src/components/organisms/AsSeeInContent/AsSeeInContent.tsx","../src/components/organisms/AsSeeInContent/AsSeeInContentProps.types.ts","../src/components/organisms/AsSeeInContent/index.ts","../src/components/organisms/CardFunctionality/CardFunctionality.tsx","../src/components/organisms/CardFunctionality/CardFunctionalityProps.ts","../src/components/organisms/CardFunctionality/index.ts","../src/components/organisms/ContactJumbotron/ContactJumbotron.tsx","../src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.ts","../src/components/organisms/ContactJumbotron/index.ts","../src/components/organisms/CookiePolicyBar/CookiePolicyBar.tsx","../src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.ts","../src/components/organisms/CookiePolicyBar/index.ts","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafia.tsx","../src/components/organisms/ErrorContentRatafia/ErrorContentRatafiaProps.types.ts","../src/components/organisms/ErrorContentRatafia/index.ts","../src/components/organisms/FaqGroup/FaqGroup.tsx","../src/components/organisms/FaqGroup/FaqGroupProps.ts","../src/components/organisms/FaqGroup/index.ts","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContent.tsx","../src/components/organisms/FeaturesRatafiaContent/FeaturesRatafiaContentProps.types.ts","../src/components/organisms/FeaturesRatafiaContent/index.ts","../src/components/organisms/GuidelinesContent/GuidelinesContent.tsx","../src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts","../src/components/organisms/GuidelinesContent/index.ts","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContent.tsx","../src/components/organisms/JumbotronRatafiaContent/JumbotronRatafiaContentProps.types.ts","../src/components/organisms/JumbotronRatafiaContent/index.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafia.tsx","../src/components/organisms/KeyFactsLoadingContentRatafia/KeyFactsLoadingContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsLoadingContentRatafia/index.ts","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafia.tsx","../src/components/organisms/KeyFactsResultContentRatafia/KeyFactsResultContentRatafiaProps.types.ts","../src/components/organisms/KeyFactsResultContentRatafia/index.ts","../src/components/organisms/LanguageSelector/LanguageSelector.tsx","../src/components/organisms/LanguageSelector/LanguageSelectorProps.ts","../src/components/organisms/LanguageSelector/LenguageSelectorItem.ts","../src/components/organisms/LanguageSelector/index.ts","../src/components/organisms/LanguageSelector/useLanguageOptions.tsx","../src/components/organisms/LanguageSelector/useLanguageSelected.tsx","../src/components/organisms/LanguageSelector/useLanguagesSelector.tsx","../src/components/organisms/LanguageSelectorMobile/LanguageSelectorMobile.tsx","../src/components/organisms/LanguageSelectorMobile/index.ts","../src/components/organisms/LayoutRatafia/LayoutRatafia.tsx","../src/components/organisms/LayoutRatafia/LayoutRatafiaProps.types.ts","../src/components/organisms/LayoutRatafia/index.ts","../src/components/organisms/ListStepsGetForm/ListStepsGetForm.tsx","../src/components/organisms/ListStepsGetForm/ListStepsGetFormProps.types.ts","../src/components/organisms/ListStepsGetForm/index.ts","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContent.tsx","../src/components/organisms/LoginRatafiaContent/LoginRatafiaContentProps.types.ts","../src/components/organisms/LoginRatafiaContent/index.ts","../src/components/organisms/MobileBottomBar/MobileBottomBar.tsx","../src/components/organisms/MobileBottomBar/MobileBottomBarProps.types.ts","../src/components/organisms/MobileBottomBar/index.ts","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContent.tsx","../src/components/organisms/StepsRatafiaContent/StepsRatafiaContentProps.types.ts","../src/components/organisms/StepsRatafiaContent/index.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.tsx","../src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContentProps.types.ts","../src/components/organisms/TryOurFreeLegalBlogsContent/index.ts","../src/components/pages/index.ts","../src/components/pages/AboutUsPage/AboutUsPage.tsx","../src/components/pages/AboutUsPage/AboutUsPageProps.ts","../src/components/pages/AboutUsPage/index.ts","../src/components/pages/ContactUsPage/ContactUsPage.tsx","../src/components/pages/ContactUsPage/ContactUsPageProps.ts","../src/components/pages/ContactUsPage/index.ts","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.tsx","../src/components/pages/ErrorRatafiaPage/ErrorRatafiaPageProps.types.ts","../src/components/pages/ErrorRatafiaPage/index.ts","../src/components/pages/FaqsPage/FaqsPage.tsx","../src/components/pages/FaqsPage/FaqsPageProps.ts","../src/components/pages/FaqsPage/index.ts","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.tsx","../src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPageProps.types.ts","../src/components/pages/KeyFactsResultRatafiaPage/index.ts","../src/components/pages/LegalPage/LegalPage.tsx","../src/components/pages/LegalPage/LegalPageProps.ts","../src/components/pages/LegalPage/index.ts","../src/components/pages/LoginRatafiaPage/LoginRatafiaPage.tsx","../src/components/pages/LoginRatafiaPage/LoginRatafiaPageProps.ts","../src/components/pages/LoginRatafiaPage/index.ts","../src/components/pages/RatafiaLandingPage/RatafiaLandingPage.tsx","../src/components/pages/RatafiaLandingPage/RatafiaLandingPageProps.types.ts","../src/components/pages/RatafiaLandingPage/index.ts","../src/components/pages/UnsubscribePage/UnsubscribePage.tsx","../src/components/pages/UnsubscribePage/UnsubscribePageProps.ts","../src/components/pages/UnsubscribePage/index.ts","../src/components/sections/index.ts","../src/components/sections/AboutUsSection/AboutUsSection.tsx","../src/components/sections/AboutUsSection/AboutUsSectionProps.types.ts","../src/components/sections/AboutUsSection/index.ts","../src/components/sections/AsSeeInSection/AsSeeInSection.tsx","../src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts","../src/components/sections/AsSeeInSection/index.ts","../src/components/sections/AsideMenuSection/AsideMenuSection.tsx","../src/components/sections/AsideMenuSection/AsideMenuSectionProps.ts","../src/components/sections/AsideMenuSection/index.ts","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx","../src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.ts","../src/components/sections/BenefitsRatafiaSection/index.ts","../src/components/sections/BlogSection/BlogSection.tsx","../src/components/sections/BlogSection/BlogSectionProps.types.ts","../src/components/sections/BlogSection/index.ts","../src/components/sections/ContactSection/ContactSection.tsx","../src/components/sections/ContactSection/ContactSectionProps.ts","../src/components/sections/ContactSection/index.ts","../src/components/sections/ExpertsSection/ExpertsSection.tsx","../src/components/sections/ExpertsSection/ExpertsSectionProps.types.ts","../src/components/sections/ExpertsSection/index.ts","../src/components/sections/FaqSection/FaqSection.tsx","../src/components/sections/FaqSection/FaqSectionProps.ts","../src/components/sections/FaqSection/index.ts","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.tsx","../src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSectionProps.types.ts","../src/components/sections/FeaturesRatafiaSection/index.ts","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx","../src/components/sections/FunctionalityCardsSection/FunctionalityCardsSectionProps.ts","../src/components/sections/FunctionalityCardsSection/index.ts","../src/components/sections/GuidelinesSection/GuidelinesSection.tsx","../src/components/sections/GuidelinesSection/GuidelinesSectionProps.types.ts","../src/components/sections/GuidelinesSection/index.ts","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx","../src/components/sections/HowGetYourFormsSection/HowGetYourFormsSectionProps.types.ts","../src/components/sections/HowGetYourFormsSection/index.ts","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx","../src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSectionProps.types.ts","../src/components/sections/JumbotronRatafiaSection/index.ts","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.tsx","../src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSectionProps.types.ts","../src/components/sections/JumbotronSimplifiedSection/index.ts","../src/components/sections/LearnMoreSection/LearnMoreSection.tsx","../src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.ts","../src/components/sections/LearnMoreSection/index.ts","../src/components/sections/LegalSection/LegalSection.tsx","../src/components/sections/LegalSection/LegalSectionProps.ts","../src/components/sections/LegalSection/index.ts","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx","../src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSectionProps.types.ts","../src/components/sections/MidBannerRatafiaSection/index.ts","../src/components/sections/MoreDocsSection/MoreDocsSection.tsx","../src/components/sections/MoreDocsSection/MoreDocsSectionProps.ts","../src/components/sections/MoreDocsSection/index.ts","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx","../src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.ts","../src/components/sections/PeopleSayAboutUsSection/index.ts","../src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx","../src/components/sections/StepsRatafiaSection/StepsRatafiaSectionProps.types.ts","../src/components/sections/StepsRatafiaSection/index.ts","../src/components/sections/TryItRatafiaSection/TryItRatafiaSection.tsx","../src/components/sections/TryItRatafiaSection/TryItRatafiaSectionProps.types.ts","../src/components/sections/TryItRatafiaSection/index.ts","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx","../src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSectionProps.types.ts","../src/components/sections/TryOurFreeLegalBlogsSection/index.ts","../src/components/sections/TryUsSection/TryUsSection.tsx","../src/components/sections/TryUsSection/TryUsSectionProps.ts","../src/components/sections/TryUsSection/index.ts","../src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx","../src/components/sections/UnsubscribeSection/UnsubscribeSectionProps.ts","../src/components/sections/UnsubscribeSection/index.ts","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx","../src/components/sections/WhyLawDistrictSection/WhyLawDistrictSectionProps.types.ts","../src/components/sections/WhyLawDistrictSection/index.ts","../src/hooks/index.ts","../src/hooks/useIntersectionObserver.tsx","../src/hooks/useIsMobileOrTable.tsx","../src/utils/ProductCategory.ts","../src/utils/getCategoryIcons.tsx","../src/utils/getDateFormatMMMMYYYY.ts","../src/utils/getGatsbyImageSkeleton.tsx","../src/utils/getRichTextSkeleton.tsx","../src/utils/index.ts","../src/utils/replaceAll.ts","../src/utils/stringSlugify.ts"],"version":"5.6.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "5.2.21",
3
+ "version": "5.2.24",
4
4
  "license": "ISC",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -215,6 +215,7 @@
215
215
  "./PhoneContactBoxMobile": "./dist/src/components/molecules/PhoneContactBoxMobile/index.js",
216
216
  "./PopularDocs": "./dist/src/components/molecules/PopularDocs/index.js",
217
217
  "./PricingCard": "./dist/src/components/molecules/PricingCard/index.js",
218
+ "./RatafiaSubscriptionCard": "./dist/src/components/molecules/RatafiaSubscriptionCard/index.js",
218
219
  "./Snackbar": "./dist/src/components/molecules/Snackbar/index.js",
219
220
  "./StepGetForm": "./dist/src/components/molecules/StepGetForm/index.js",
220
221
  "./StepRatafiaCardList": "./dist/src/components/molecules/StepRatafiaCardList/index.js",
@@ -1,3 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8.70531 0.705315C8.31578 0.31578 7.68422 0.31578 7.29468 0.705316C6.9054 1.0946 6.90511 1.72568 7.29405 2.11531L12.17 7H0.999999C0.447714 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H12.17L7.29405 13.8847C6.90511 14.2743 6.9054 14.9054 7.29468 15.2947C7.68422 15.6842 8.31578 15.6842 8.70532 15.2947L15.2929 8.70711C15.6834 8.31658 15.6834 7.68342 15.2929 7.29289L8.70531 0.705315Z" fill="#078080"/>
3
- </svg>