@npm_leadtech/legal-lib-components 3.2.5 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +164 -107
- package/dist/cjs/src/components/atoms/IconTextInfoSection/IconTextInfoSection.d.ts +4 -0
- package/dist/cjs/src/components/atoms/IconTextInfoSection/IconTextInfoSection.types.d.ts +8 -0
- package/dist/cjs/src/components/atoms/IconTextInfoSection/index.d.ts +1 -0
- package/dist/cjs/src/components/atoms/index.d.ts +5 -4
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +164 -107
- package/dist/esm/src/components/atoms/IconTextInfoSection/IconTextInfoSection.d.ts +4 -0
- package/dist/esm/src/components/atoms/IconTextInfoSection/IconTextInfoSection.types.d.ts +8 -0
- package/dist/esm/src/components/atoms/IconTextInfoSection/index.d.ts +1 -0
- package/dist/esm/src/components/atoms/index.d.ts +5 -4
- package/dist/index.d.ts +38 -28
- package/package.json +1 -1
|
@@ -358,6 +358,27 @@ html[data-theme='lawdistrictonline'] {
|
|
|
358
358
|
padding-top: 0;
|
|
359
359
|
text-align: right; } }
|
|
360
360
|
|
|
361
|
+
.bottom-overlay-menu {
|
|
362
|
+
display: flex;
|
|
363
|
+
justify-content: space-between;
|
|
364
|
+
align-items: center;
|
|
365
|
+
width: 100%;
|
|
366
|
+
padding: 16px 24px;
|
|
367
|
+
background-color: var(--others-white);
|
|
368
|
+
box-shadow: 0 2px 6px 0 var(--primary-main-dark-1);
|
|
369
|
+
color: black; }
|
|
370
|
+
.bottom-overlay-menu .e-button {
|
|
371
|
+
width: 100%; }
|
|
372
|
+
.bottom-overlay-menu .e-searchselect {
|
|
373
|
+
width: 100%;
|
|
374
|
+
margin-bottom: 1rem; }
|
|
375
|
+
.bottom-overlay-menu .e-text {
|
|
376
|
+
width: 100%; }
|
|
377
|
+
.bottom-overlay-menu .desktop-radio-icons {
|
|
378
|
+
display: none; }
|
|
379
|
+
.bottom-overlay-menu ul li {
|
|
380
|
+
margin-bottom: 0; }
|
|
381
|
+
|
|
361
382
|
.inline-list {
|
|
362
383
|
display: flex;
|
|
363
384
|
align-items: center; }
|
|
@@ -586,27 +607,6 @@ html[data-theme='lawdistrict'] .e-button.--primary-3 {
|
|
|
586
607
|
transform: translate(-50%, 1rem);
|
|
587
608
|
transition: all 0.3s ease; }
|
|
588
609
|
|
|
589
|
-
.bottom-overlay-menu {
|
|
590
|
-
display: flex;
|
|
591
|
-
justify-content: space-between;
|
|
592
|
-
align-items: center;
|
|
593
|
-
width: 100%;
|
|
594
|
-
padding: 16px 24px;
|
|
595
|
-
background-color: var(--others-white);
|
|
596
|
-
box-shadow: 0 2px 6px 0 var(--primary-main-dark-1);
|
|
597
|
-
color: black; }
|
|
598
|
-
.bottom-overlay-menu .e-button {
|
|
599
|
-
width: 100%; }
|
|
600
|
-
.bottom-overlay-menu .e-searchselect {
|
|
601
|
-
width: 100%;
|
|
602
|
-
margin-bottom: 1rem; }
|
|
603
|
-
.bottom-overlay-menu .e-text {
|
|
604
|
-
width: 100%; }
|
|
605
|
-
.bottom-overlay-menu .desktop-radio-icons {
|
|
606
|
-
display: none; }
|
|
607
|
-
.bottom-overlay-menu ul li {
|
|
608
|
-
margin-bottom: 0; }
|
|
609
|
-
|
|
610
610
|
.marker {
|
|
611
611
|
display: inline-block;
|
|
612
612
|
margin-left: -10px; }
|
|
@@ -1957,6 +1957,63 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
1957
1957
|
display: block;
|
|
1958
1958
|
background-color: var(--primary-main); }
|
|
1959
1959
|
|
|
1960
|
+
.separator {
|
|
1961
|
+
background-color: var(--neutral-neutral-3);
|
|
1962
|
+
border-bottom: 1px var(--neutral-neutral-3) solid;
|
|
1963
|
+
display: none;
|
|
1964
|
+
height: 70px;
|
|
1965
|
+
padding-bottom: 40px;
|
|
1966
|
+
width: 1px; }
|
|
1967
|
+
@media (min-width: 960px) {
|
|
1968
|
+
.separator {
|
|
1969
|
+
margin: 0 32px; } }
|
|
1970
|
+
@media (min-width: 575px) {
|
|
1971
|
+
.separator {
|
|
1972
|
+
display: flex; } }
|
|
1973
|
+
@media (max-width: 575px) {
|
|
1974
|
+
.separator {
|
|
1975
|
+
margin: 19.2px 32px; } }
|
|
1976
|
+
|
|
1977
|
+
.messi-version.bottom-side {
|
|
1978
|
+
display: flex;
|
|
1979
|
+
flex-direction: column;
|
|
1980
|
+
background-color: var(--neutral-neutral-4);
|
|
1981
|
+
justify-content: center;
|
|
1982
|
+
padding: 1rem 3rem; }
|
|
1983
|
+
@media (min-width: 575px) {
|
|
1984
|
+
.messi-version.bottom-side {
|
|
1985
|
+
padding: 0;
|
|
1986
|
+
flex-direction: row; } }
|
|
1987
|
+
@media (min-width: 575px) {
|
|
1988
|
+
.messi-version.bottom-side {
|
|
1989
|
+
padding: 1rem 1rem; } }
|
|
1990
|
+
.messi-version.bottom-side .box {
|
|
1991
|
+
display: flex;
|
|
1992
|
+
flex-direction: row;
|
|
1993
|
+
align-items: center;
|
|
1994
|
+
margin: 0; }
|
|
1995
|
+
@media (max-width: 575px) {
|
|
1996
|
+
.messi-version.bottom-side .box {
|
|
1997
|
+
margin: 0.4rem; } }
|
|
1998
|
+
@media (min-width: 575px) {
|
|
1999
|
+
.messi-version.bottom-side .box {
|
|
2000
|
+
margin: 0 1rem; } }
|
|
2001
|
+
.messi-version.bottom-side .item-image {
|
|
2002
|
+
width: 2.5rem;
|
|
2003
|
+
margin-right: 1rem; }
|
|
2004
|
+
@media (max-width: 575px) {
|
|
2005
|
+
.messi-version.bottom-side .item-image {
|
|
2006
|
+
width: 1.5rem; } }
|
|
2007
|
+
.messi-version.bottom-side .item-image .image {
|
|
2008
|
+
width: 40px;
|
|
2009
|
+
height: 40px; }
|
|
2010
|
+
@media (max-width: 575px) {
|
|
2011
|
+
.messi-version.bottom-side .item-image .image {
|
|
2012
|
+
width: 24px;
|
|
2013
|
+
height: 24px; } }
|
|
2014
|
+
.messi-version.bottom-side .item-text {
|
|
2015
|
+
font-size: 16px; }
|
|
2016
|
+
|
|
1960
2017
|
.info-box {
|
|
1961
2018
|
border-radius: 4px;
|
|
1962
2019
|
border: 1px solid;
|
|
@@ -2081,6 +2138,38 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2081
2138
|
border-radius: 5px;
|
|
2082
2139
|
font-family: "Inter", sans-serif; }
|
|
2083
2140
|
|
|
2141
|
+
.message-information {
|
|
2142
|
+
display: flex;
|
|
2143
|
+
justify-content: center;
|
|
2144
|
+
border-radius: 4px;
|
|
2145
|
+
background: var(--secondary-main-light-4);
|
|
2146
|
+
padding: 8px; }
|
|
2147
|
+
@media (min-width: 960px) {
|
|
2148
|
+
.message-information {
|
|
2149
|
+
justify-content: flex-start; } }
|
|
2150
|
+
.message-information.text-center {
|
|
2151
|
+
justify-content: center; }
|
|
2152
|
+
.message-information__icon {
|
|
2153
|
+
width: 24px;
|
|
2154
|
+
fill: var(--secondary-main-dark-1);
|
|
2155
|
+
margin-right: 8px; }
|
|
2156
|
+
.message-information__icon.hide {
|
|
2157
|
+
display: none; }
|
|
2158
|
+
.message-information__icon svg {
|
|
2159
|
+
display: block; }
|
|
2160
|
+
.message-information__text {
|
|
2161
|
+
font-size: 0.875rem;
|
|
2162
|
+
letter-spacing: -0.3px;
|
|
2163
|
+
padding-top: 1px;
|
|
2164
|
+
text-align: left; }
|
|
2165
|
+
@media (min-width: 720px) {
|
|
2166
|
+
.message-information__text {
|
|
2167
|
+
text-align: center; } }
|
|
2168
|
+
.message-information__text__time {
|
|
2169
|
+
font-weight: 600; }
|
|
2170
|
+
.message-information__text__time.regular {
|
|
2171
|
+
font-weight: 400; }
|
|
2172
|
+
|
|
2084
2173
|
.more-docs-item {
|
|
2085
2174
|
display: flex;
|
|
2086
2175
|
flex-direction: row;
|
|
@@ -2748,6 +2837,39 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2748
2837
|
.width {
|
|
2749
2838
|
width: 60%; } }
|
|
2750
2839
|
|
|
2840
|
+
.show-more-box {
|
|
2841
|
+
display: flex;
|
|
2842
|
+
padding: 1rem;
|
|
2843
|
+
flex-direction: column;
|
|
2844
|
+
gap: 1rem;
|
|
2845
|
+
border-radius: 4px;
|
|
2846
|
+
background: var(--neutral-neutral-5); }
|
|
2847
|
+
.show-more-box .content {
|
|
2848
|
+
color: var(--neutral-neutral-1);
|
|
2849
|
+
font-size: 12px;
|
|
2850
|
+
line-height: 16px;
|
|
2851
|
+
letter-spacing: -0.3px; }
|
|
2852
|
+
.show-more-box .content.truncate {
|
|
2853
|
+
display: -webkit-box;
|
|
2854
|
+
-webkit-line-clamp: 4;
|
|
2855
|
+
-webkit-box-orient: vertical;
|
|
2856
|
+
overflow: hidden; }
|
|
2857
|
+
.show-more-box .button {
|
|
2858
|
+
display: flex;
|
|
2859
|
+
align-items: center;
|
|
2860
|
+
align-self: stretch;
|
|
2861
|
+
cursor: pointer; }
|
|
2862
|
+
.show-more-box .button div {
|
|
2863
|
+
color: var(--primary-main-light-1);
|
|
2864
|
+
font-size: 14px;
|
|
2865
|
+
line-height: 18px;
|
|
2866
|
+
letter-spacing: -0.3px; }
|
|
2867
|
+
.show-more-box .button svg {
|
|
2868
|
+
width: 20px;
|
|
2869
|
+
height: 20px; }
|
|
2870
|
+
.show-more-box .button svg path {
|
|
2871
|
+
fill: var(--primary-main-light-1); }
|
|
2872
|
+
|
|
2751
2873
|
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
|
|
2752
2874
|
.tippy-box {
|
|
2753
2875
|
background-color: var(--others-white);
|
|
@@ -2847,39 +2969,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
2847
2969
|
.sidemenu-tab--mobile svg g g use {
|
|
2848
2970
|
fill: var(--neutral-neutral-2); }
|
|
2849
2971
|
|
|
2850
|
-
.show-more-box {
|
|
2851
|
-
display: flex;
|
|
2852
|
-
padding: 1rem;
|
|
2853
|
-
flex-direction: column;
|
|
2854
|
-
gap: 1rem;
|
|
2855
|
-
border-radius: 4px;
|
|
2856
|
-
background: var(--neutral-neutral-5); }
|
|
2857
|
-
.show-more-box .content {
|
|
2858
|
-
color: var(--neutral-neutral-1);
|
|
2859
|
-
font-size: 12px;
|
|
2860
|
-
line-height: 16px;
|
|
2861
|
-
letter-spacing: -0.3px; }
|
|
2862
|
-
.show-more-box .content.truncate {
|
|
2863
|
-
display: -webkit-box;
|
|
2864
|
-
-webkit-line-clamp: 4;
|
|
2865
|
-
-webkit-box-orient: vertical;
|
|
2866
|
-
overflow: hidden; }
|
|
2867
|
-
.show-more-box .button {
|
|
2868
|
-
display: flex;
|
|
2869
|
-
align-items: center;
|
|
2870
|
-
align-self: stretch;
|
|
2871
|
-
cursor: pointer; }
|
|
2872
|
-
.show-more-box .button div {
|
|
2873
|
-
color: var(--primary-main-light-1);
|
|
2874
|
-
font-size: 14px;
|
|
2875
|
-
line-height: 18px;
|
|
2876
|
-
letter-spacing: -0.3px; }
|
|
2877
|
-
.show-more-box .button svg {
|
|
2878
|
-
width: 20px;
|
|
2879
|
-
height: 20px; }
|
|
2880
|
-
.show-more-box .button svg path {
|
|
2881
|
-
fill: var(--primary-main-light-1); }
|
|
2882
|
-
|
|
2883
2972
|
.e-spinner {
|
|
2884
2973
|
animation: rotate 2s linear infinite;
|
|
2885
2974
|
width: 24px;
|
|
@@ -3119,29 +3208,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3119
3208
|
.top-bar-mobile > b img {
|
|
3120
3209
|
margin-right: 8px; }
|
|
3121
3210
|
|
|
3122
|
-
.wide-info-bar {
|
|
3123
|
-
background-color: var(--neutral-neutral-6);
|
|
3124
|
-
font-family: "Inter", sans-serif;
|
|
3125
|
-
color: var(--neutral-neutral-1); }
|
|
3126
|
-
.wide-info-bar.green {
|
|
3127
|
-
background-color: var(--primary-main-light-6);
|
|
3128
|
-
color: var(--primary-main-dark-1); }
|
|
3129
|
-
.wide-info-bar__wrapper {
|
|
3130
|
-
display: flex;
|
|
3131
|
-
flex-flow: column nowrap;
|
|
3132
|
-
justify-content: space-between;
|
|
3133
|
-
max-width: 1200px;
|
|
3134
|
-
margin: auto;
|
|
3135
|
-
padding: 0.5rem 3.5rem 0.5rem 1.5rem; }
|
|
3136
|
-
@media (min-width: 720px) {
|
|
3137
|
-
.wide-info-bar__wrapper {
|
|
3138
|
-
flex-flow: row;
|
|
3139
|
-
font-size: 0.9rem;
|
|
3140
|
-
padding: 1rem 1.5rem; } }
|
|
3141
|
-
@media (min-width: 1200px) {
|
|
3142
|
-
.wide-info-bar__wrapper {
|
|
3143
|
-
padding: 0.5rem 2rem; } }
|
|
3144
|
-
|
|
3145
3211
|
.trustpilot {
|
|
3146
3212
|
margin: auto;
|
|
3147
3213
|
padding: 0 1rem; }
|
|
@@ -3175,37 +3241,28 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3175
3241
|
.whyLawDistrictItems__item:first-child {
|
|
3176
3242
|
margin-top: 0; } }
|
|
3177
3243
|
|
|
3178
|
-
.
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
justify-content:
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
margin-right: 8px; }
|
|
3193
|
-
.message-information__icon.hide {
|
|
3194
|
-
display: none; }
|
|
3195
|
-
.message-information__icon svg {
|
|
3196
|
-
display: block; }
|
|
3197
|
-
.message-information__text {
|
|
3198
|
-
font-size: 0.875rem;
|
|
3199
|
-
letter-spacing: -0.3px;
|
|
3200
|
-
padding-top: 1px;
|
|
3201
|
-
text-align: left; }
|
|
3244
|
+
.wide-info-bar {
|
|
3245
|
+
background-color: var(--neutral-neutral-6);
|
|
3246
|
+
font-family: "Inter", sans-serif;
|
|
3247
|
+
color: var(--neutral-neutral-1); }
|
|
3248
|
+
.wide-info-bar.green {
|
|
3249
|
+
background-color: var(--primary-main-light-6);
|
|
3250
|
+
color: var(--primary-main-dark-1); }
|
|
3251
|
+
.wide-info-bar__wrapper {
|
|
3252
|
+
display: flex;
|
|
3253
|
+
flex-flow: column nowrap;
|
|
3254
|
+
justify-content: space-between;
|
|
3255
|
+
max-width: 1200px;
|
|
3256
|
+
margin: auto;
|
|
3257
|
+
padding: 0.5rem 3.5rem 0.5rem 1.5rem; }
|
|
3202
3258
|
@media (min-width: 720px) {
|
|
3203
|
-
.
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3259
|
+
.wide-info-bar__wrapper {
|
|
3260
|
+
flex-flow: row;
|
|
3261
|
+
font-size: 0.9rem;
|
|
3262
|
+
padding: 1rem 1.5rem; } }
|
|
3263
|
+
@media (min-width: 1200px) {
|
|
3264
|
+
.wide-info-bar__wrapper {
|
|
3265
|
+
padding: 0.5rem 2rem; } }
|
|
3209
3266
|
|
|
3210
3267
|
.accordion__container {
|
|
3211
3268
|
overflow: hidden;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { IconTextInfoSection } from './IconTextInfoSection';
|
|
@@ -2,10 +2,10 @@ export * from './AddButton';
|
|
|
2
2
|
export * from './BaseBox';
|
|
3
3
|
export * from './BenefitRatafiaCard';
|
|
4
4
|
export * from './BillCard';
|
|
5
|
+
export * from './BottomOverlayMenu';
|
|
5
6
|
export * from './BreadcrumItem';
|
|
6
7
|
export * from './Button';
|
|
7
8
|
export * from './ButtonIcon';
|
|
8
|
-
export * from './BottomOverlayMenu';
|
|
9
9
|
export * from './CardPane';
|
|
10
10
|
export * from './Checkbox';
|
|
11
11
|
export * from './DatePickerCustom';
|
|
@@ -20,12 +20,14 @@ export * from './FormFaq';
|
|
|
20
20
|
export * from './GoogleButton';
|
|
21
21
|
export * from './IconImage';
|
|
22
22
|
export * from './IconSvgURLWithThemeColor';
|
|
23
|
+
export * from './IconTextInfoSection';
|
|
23
24
|
export * from './InfoBox';
|
|
24
25
|
export * from './JumbotronStatic';
|
|
25
26
|
export * from './Logo';
|
|
26
27
|
export * from './LogoText';
|
|
27
28
|
export * from './MenuItems';
|
|
28
29
|
export * from './Message';
|
|
30
|
+
export * from './MessageInformation';
|
|
29
31
|
export * from './MoreDocsItem';
|
|
30
32
|
export * from './NavMenuItem';
|
|
31
33
|
export * from './PaypalButton';
|
|
@@ -36,8 +38,8 @@ export * from './RemoveButton';
|
|
|
36
38
|
export * from './RichTextInner';
|
|
37
39
|
export * from './RichTextStrapi';
|
|
38
40
|
export * from './SearchSelect';
|
|
39
|
-
export * from './SidemenuTab';
|
|
40
41
|
export * from './ShowMoreBox';
|
|
42
|
+
export * from './SidemenuTab';
|
|
41
43
|
export * from './Spinner';
|
|
42
44
|
export * from './StepRatafiaCard';
|
|
43
45
|
export * from './Tagline';
|
|
@@ -47,7 +49,6 @@ export * from './Toggle';
|
|
|
47
49
|
export * from './Tooltip';
|
|
48
50
|
export * from './TopBar';
|
|
49
51
|
export * from './TopBarMobile';
|
|
50
|
-
export * from './WideInfoBar';
|
|
51
52
|
export * from './TrustPilot';
|
|
52
53
|
export * from './WhyLawDistrictItems';
|
|
53
|
-
export * from './
|
|
54
|
+
export * from './WideInfoBar';
|
package/dist/index.d.ts
CHANGED
|
@@ -46,6 +46,12 @@ interface BillCardProps {
|
|
|
46
46
|
|
|
47
47
|
declare const BillCard: FC<BillCardProps>;
|
|
48
48
|
|
|
49
|
+
interface BottomOverlayMenuProps {
|
|
50
|
+
children: React.ReactNode;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
declare const BottomOverlayMenu: FC<BottomOverlayMenuProps>;
|
|
54
|
+
|
|
49
55
|
interface BreadcrumItemProps {
|
|
50
56
|
text: string;
|
|
51
57
|
position: number;
|
|
@@ -95,12 +101,6 @@ interface ButtonIconProps {
|
|
|
95
101
|
|
|
96
102
|
declare const ButtonIcon: FC<ButtonIconProps>;
|
|
97
103
|
|
|
98
|
-
interface BottomOverlayMenuProps {
|
|
99
|
-
children: React.ReactNode;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
declare const BottomOverlayMenu: FC<BottomOverlayMenuProps>;
|
|
103
|
-
|
|
104
104
|
interface CardPaneProps {
|
|
105
105
|
data: CardPaneInfoProps[];
|
|
106
106
|
}
|
|
@@ -247,6 +247,16 @@ interface IconSvgURLWithThemeColorProps {
|
|
|
247
247
|
|
|
248
248
|
declare const IconSvgURLWithThemeColor: FC<IconSvgURLWithThemeColorProps>;
|
|
249
249
|
|
|
250
|
+
interface Items {
|
|
251
|
+
text: string;
|
|
252
|
+
src: string;
|
|
253
|
+
}
|
|
254
|
+
interface IconTextInfoSectionProps {
|
|
255
|
+
items: Items[];
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
declare const IconTextInfoSection: React$1.FC<IconTextInfoSectionProps>;
|
|
259
|
+
|
|
250
260
|
interface InfoBoxProps {
|
|
251
261
|
children: any;
|
|
252
262
|
type?: string;
|
|
@@ -303,6 +313,15 @@ interface MessageProps {
|
|
|
303
313
|
|
|
304
314
|
declare const Message: FC<MessageProps>;
|
|
305
315
|
|
|
316
|
+
interface MessageInformationProps {
|
|
317
|
+
noImg: boolean;
|
|
318
|
+
text: string | React.ReactNode;
|
|
319
|
+
time?: string;
|
|
320
|
+
centered: boolean;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
declare const MessageInformation: FC<MessageInformationProps>;
|
|
324
|
+
|
|
306
325
|
declare enum ProductCategory {
|
|
307
326
|
Business = "Business",
|
|
308
327
|
Employment = "Employment",
|
|
@@ -453,6 +472,14 @@ declare enum MenuPlacement {
|
|
|
453
472
|
}
|
|
454
473
|
declare const SearchSelect: FC<SearchSelectProps>;
|
|
455
474
|
|
|
475
|
+
interface ShowMoreBoxProps {
|
|
476
|
+
children: React.ReactNode;
|
|
477
|
+
collapsedButtonText?: string;
|
|
478
|
+
expandedButtonText?: string;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
declare const ShowMoreBox: React$1.FC<ShowMoreBoxProps>;
|
|
482
|
+
|
|
456
483
|
interface SideMenuTabProps {
|
|
457
484
|
text?: string;
|
|
458
485
|
active?: boolean;
|
|
@@ -465,14 +492,6 @@ interface SideMenuTabProps {
|
|
|
465
492
|
|
|
466
493
|
declare const SidemenuTab: React$1.FC<SideMenuTabProps>;
|
|
467
494
|
|
|
468
|
-
interface ShowMoreBoxProps {
|
|
469
|
-
children: React.ReactNode;
|
|
470
|
-
collapsedButtonText?: string;
|
|
471
|
-
expandedButtonText?: string;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
declare const ShowMoreBox: React$1.FC<ShowMoreBoxProps>;
|
|
475
|
-
|
|
476
495
|
interface SpinnerProps {
|
|
477
496
|
className?: string;
|
|
478
497
|
big?: boolean;
|
|
@@ -558,12 +577,6 @@ interface TopBarMobileProps {
|
|
|
558
577
|
}
|
|
559
578
|
declare const TopBarMobile: React$1.FC<TopBarMobileProps>;
|
|
560
579
|
|
|
561
|
-
interface WideInfoBarProps {
|
|
562
|
-
children?: React$1.ReactElement<any>;
|
|
563
|
-
color?: 'green';
|
|
564
|
-
}
|
|
565
|
-
declare const WideInfoBar: FC<WideInfoBarProps>;
|
|
566
|
-
|
|
567
580
|
interface TrustPilotProps {
|
|
568
581
|
children: React.ReactNode;
|
|
569
582
|
}
|
|
@@ -580,14 +593,11 @@ interface WhyLawDistrictItem {
|
|
|
580
593
|
|
|
581
594
|
declare const WhyLawDistrictItems: React$1.FC<WhyLawDistrictItemsProps>;
|
|
582
595
|
|
|
583
|
-
interface
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
time?: string;
|
|
587
|
-
centered: boolean;
|
|
596
|
+
interface WideInfoBarProps {
|
|
597
|
+
children?: React$1.ReactElement<any>;
|
|
598
|
+
color?: 'green';
|
|
588
599
|
}
|
|
589
|
-
|
|
590
|
-
declare const MessageInformation: FC<MessageInformationProps>;
|
|
600
|
+
declare const WideInfoBar: FC<WideInfoBarProps>;
|
|
591
601
|
|
|
592
602
|
interface AccordionItemProps {
|
|
593
603
|
accordionRightContent?: React.ReactNode;
|
|
@@ -1452,4 +1462,4 @@ interface UseIsMobileOrTablePropsReturn {
|
|
|
1452
1462
|
}
|
|
1453
1463
|
declare const useIsMobileOrTable: () => UseIsMobileOrTablePropsReturn;
|
|
1454
1464
|
|
|
1455
|
-
export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, Accordion, AccordionItem$1 as AccordionItem, AddButton, type AddButtonProps, AlsoKnownAs, type AlsoKnownAsProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, AsideMenuSection, type AsideMenuSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, BenefitRatafiaCard, BenefitRatafiaCardList, type BenefitRatafiaCardListProps, type BenefitRatafiaCardProps, BenefitsRatafiaSection, type BenefitsRatafiaSectionProps, BillCard, type BillCardProps, BlogSection, type BlogSectionProps, BottomFixedBar, type BottomFixedBarProps, BottomOverlay, BottomOverlayMenu, type BottomOverlayMenuProps, type BottomOverlayProps, BoxForm, type BoxFormProps, BreadcrumItem, type BreadcrumItemProps, Breadcrumb, type BreadcrumbProps, Button, ButtonIcon, type ButtonIconProps, type ButtonProps, CardPane, type CardPaneInfoProps, type CardPaneProps, Checkbox, type CheckboxProps, ContactBox, type ContactBoxProps, ContactJumbotron, type ContactJumbotronProps, ContactSection, type ContactSectionProps, ContactUsPage, type ContactUsPageProps, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, type DisclaimerProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, DocumentTag, type DocumentTagProps, EmailContactBox, type EmailContactBoxProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, FaqGroup, type FaqGroupProps, FaqItem, type FaqItemProps, FaqSection, type FaqSectionProps, FaqsPage, type FaqsPageProps, FeatureRatafiaCard, FeatureRatafiaCardList, type FeatureRatafiaCardListProps, type FeatureRatafiaCardProps, FeaturesRatafiaContent, type FeaturesRatafiaContentProps, FeaturesRatafiaSection, type FeaturesRatafiaSectionProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronRatafiaContent, type JumbotronRatafiaContentProps, JumbotronRatafiaSection, type JumbotronRatafiaSectionProps, JumbotronSimplifiedSection, type JumbotronSimplifiedSectionProps, JumbotronStatic, type JumbotronStaticProps, LanguageSelector, LanguageSelectorMobile, type LanguageSelectorProps, type LatestApplication, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, type LenguageSelectorItem, ListStepsGetForm, type ListStepsGetFormProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MidBannerRatafiaContent, type MidBannerRatafiaContentProps, MidBannerRatafiaSample, type MidBannerRatafiaSampleProps, MidBannerRatafiaSection, type MidBannerRatafiaSectionProps, MobileBottomBar, type MobileBottomBarProps, MoreDocsDesktop, type MoreDocsDesktopProps, MoreDocsItem, type MoreDocsItemProps, MoreDocsMobile, type MoreDocsMobileProps, MoreDocsSection, type MoreDocsSectionProps, NavBarDropDown, type NavBarDropDownProps, NavMenuItem, type NavMenuItemProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PhoneContactBoxDesktop, type PhoneContactBoxDesktopProps, PhoneContactBoxMobile, type PhoneContactBoxMobileProps, PopularDocs, PopularDocsItem, type PopularDocsItemProps, type PopularDocsProps, PricingCard, type PricingCardProps, ProductCategory, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RatafiaLandingPage, type RatafiaLandingPageProps, RemoveButton, type RemoveButtonProps, RichTextInner, type RichTextInnerProps, type RichTextMedia, RichTextStrapi, type RichTextStrapiProps, SearchSelect, type SearchSelectProps, ShowMoreBox, type ShowMoreBoxProps, type SideMenuTabProps, SidemenuTab, Snackbar, type SnackbarProps, Spinner, type SpinnerProps, StepGetForm, type StepGetFormProps, StepRatafiaCard, StepRatafiaCardList, type StepRatafiaCardListProps, type StepRatafiaCardProps, StepsRatafiaContent, type StepsRatafiaContentProps, StepsRatafiaSection, type StepsRatafiaSectionProps, TagRatafiaItem, type TagRatafiaItemProps, Tagline, type TaglineProps, TagsRatafiaList, type TagsRatafiaListProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, Toggle, type ToggleProps, Tooltip, TooltipMenu, type TooltipMenuProps, type TooltipProps, TopBar, TopBarMobile, type TopBarProps, Trustpilot as TrustPilot, type TrustPilotProps, TrustworthyWebsites, type TrustworthyWebsitesProps, TryItRatafiaSection, type TryItRatafiaSectionProps, TryOurFreeLegalBlogsContent, type TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, type TryOurFreeLegalBlogsSectionProps, TryUsSection, type TryUsSectionProps, TypeModulesList, type TypeModulesListProps, UnsubscribePage, type UnsubscribePageProps, UnsubscribeSection, type UnsubscribeSectionProps, UploadRatafiaZone, type UploadRatafiaZoneProps, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useDispatchDataAccordionItem, useIntersectionObserver, useIsMobileOrTable, useLanguageOptions, useLanguageSelected, useLanguagesSelector, useStateDataAccordionItem };
|
|
1465
|
+
export { AboutUsContent, type AboutUsContentProps, AboutUsPage, type AboutUsPageProps, AboutUsSection, type AboutUsSectionProps, Accordion, AccordionItem$1 as AccordionItem, AddButton, type AddButtonProps, AlsoKnownAs, type AlsoKnownAsProps, Article, type ArticleProps, ArticlesList, type ArticlesListProps, AsSeeInContent, type AsSeeInContentProps, AsSeeInSection, type AsSeeInSectionProps, AsideMenuSection, type AsideMenuSectionProps, BaseBox, BaseBoxList, type BaseBoxListProps, type BaseBoxProps, BenefitRatafiaCard, BenefitRatafiaCardList, type BenefitRatafiaCardListProps, type BenefitRatafiaCardProps, BenefitsRatafiaSection, type BenefitsRatafiaSectionProps, BillCard, type BillCardProps, BlogSection, type BlogSectionProps, BottomFixedBar, type BottomFixedBarProps, BottomOverlay, BottomOverlayMenu, type BottomOverlayMenuProps, type BottomOverlayProps, BoxForm, type BoxFormProps, BreadcrumItem, type BreadcrumItemProps, Breadcrumb, type BreadcrumbProps, Button, ButtonIcon, type ButtonIconProps, type ButtonProps, CardPane, type CardPaneInfoProps, type CardPaneProps, Checkbox, type CheckboxProps, ContactBox, type ContactBoxProps, ContactJumbotron, type ContactJumbotronProps, ContactSection, type ContactSectionProps, ContactUsPage, type ContactUsPageProps, ContinueEditingBanner, type ContinueEditingBannerProps, CookiePolicyBar, type CookiePolicyBarProps, CountDownMessage, type CountDownMessageProps, DatePickerCustom, type DatePickerCustomProps, DialogMenuIcon, type DialogMenuIconProps, Disclaimer, type DisclaimerProps, Divider, type DividerProps, DocumentStatus, type DocumentStatusProps, DocumentTag, type DocumentTagProps, EmailContactBox, type EmailContactBoxProps, ExpertCard, ExpertCardList, type ExpertCardListProps, type ExpertCardProps, ExpertsSection, type ExpertsSectionProps, FaqGroup, type FaqGroupProps, FaqItem, type FaqItemProps, FaqSection, type FaqSectionProps, FaqsPage, type FaqsPageProps, FeatureRatafiaCard, FeatureRatafiaCardList, type FeatureRatafiaCardListProps, type FeatureRatafiaCardProps, FeaturesRatafiaContent, type FeaturesRatafiaContentProps, FeaturesRatafiaSection, type FeaturesRatafiaSectionProps, Feedback, type FeedbackProps, FormFaq, type FormFaqProps, FreeDocModalContent, type FreeDocModalContentProps, GoogleButton, type GoogleButtonProps, GuidelinesContent, type GuidelinesContentProps, GuidelinesSection, type GuidelinesSectionProps, HowGetYourFormsSection, type HowGetYourFormsSectionProps, IconImage, type IconImageProps, IconSvgURLWithThemeColor, type IconSvgURLWithThemeColorProps, IconTextInfoSection, type ImageStructure, InfoBox, type InfoBoxProps, JumbotronRatafiaContent, type JumbotronRatafiaContentProps, JumbotronRatafiaSection, type JumbotronRatafiaSectionProps, JumbotronSimplifiedSection, type JumbotronSimplifiedSectionProps, JumbotronStatic, type JumbotronStaticProps, LanguageSelector, LanguageSelectorMobile, type LanguageSelectorProps, type LatestApplication, LearnMoreSection, type LearnMoreSectionProps, LegalPage, type LegalPageProps, LegalSection, type LegalSectionProps, type LenguageSelectorItem, ListStepsGetForm, type ListStepsGetFormProps, Logo, type LogoProps, LogoText, type LogoTextProps, type MenuItemProps, MenuItems, MenuItemsSection, type MenuItemsSectionProps, MenuPlacement, Message, MessageInformation, type MessageInformationProps, type MessageProps, MidBannerRatafiaContent, type MidBannerRatafiaContentProps, MidBannerRatafiaSample, type MidBannerRatafiaSampleProps, MidBannerRatafiaSection, type MidBannerRatafiaSectionProps, MobileBottomBar, type MobileBottomBarProps, MoreDocsDesktop, type MoreDocsDesktopProps, MoreDocsItem, type MoreDocsItemProps, MoreDocsMobile, type MoreDocsMobileProps, MoreDocsSection, type MoreDocsSectionProps, NavBarDropDown, type NavBarDropDownProps, NavMenuItem, type NavMenuItemProps, Pagination, type PaginationProps, PaypalButton, type PaypalButtonProps, PeopleSayAboutUsSection, type PeopleSayAboutUsSectionProps, PhoneContactBoxDesktop, type PhoneContactBoxDesktopProps, PhoneContactBoxMobile, type PhoneContactBoxMobileProps, PopularDocs, PopularDocsItem, type PopularDocsItemProps, type PopularDocsProps, PricingCard, type PricingCardProps, ProductCategory, ProgressBar, type ProgressBarProps, Radio, type RadioProps, RatafiaLandingPage, type RatafiaLandingPageProps, RemoveButton, type RemoveButtonProps, RichTextInner, type RichTextInnerProps, type RichTextMedia, RichTextStrapi, type RichTextStrapiProps, SearchSelect, type SearchSelectProps, ShowMoreBox, type ShowMoreBoxProps, type SideMenuTabProps, SidemenuTab, Snackbar, type SnackbarProps, Spinner, type SpinnerProps, StepGetForm, type StepGetFormProps, StepRatafiaCard, StepRatafiaCardList, type StepRatafiaCardListProps, type StepRatafiaCardProps, StepsRatafiaContent, type StepsRatafiaContentProps, StepsRatafiaSection, type StepsRatafiaSectionProps, TagRatafiaItem, type TagRatafiaItemProps, Tagline, type TaglineProps, TagsRatafiaList, type TagsRatafiaListProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, Toggle, type ToggleProps, Tooltip, TooltipMenu, type TooltipMenuProps, type TooltipProps, TopBar, TopBarMobile, type TopBarProps, Trustpilot as TrustPilot, type TrustPilotProps, TrustworthyWebsites, type TrustworthyWebsitesProps, TryItRatafiaSection, type TryItRatafiaSectionProps, TryOurFreeLegalBlogsContent, type TryOurFreeLegalBlogsContentProps, TryOurFreeLegalBlogsSection, type TryOurFreeLegalBlogsSectionProps, TryUsSection, type TryUsSectionProps, TypeModulesList, type TypeModulesListProps, UnsubscribePage, type UnsubscribePageProps, UnsubscribeSection, type UnsubscribeSectionProps, UploadRatafiaZone, type UploadRatafiaZoneProps, type WhyLawDistrictItem, WhyLawDistrictItems, type WhyLawDistrictItemsProps, WhyLawDistrictSection, type WhyLawDistrictSectionProps, WideInfoBar, useDispatchDataAccordionItem, useIntersectionObserver, useIsMobileOrTable, useLanguageOptions, useLanguageSelected, useLanguagesSelector, useStateDataAccordionItem };
|