@npm_leadtech/legal-lib-components 5.47.0 → 5.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/styles.css +243 -157
- package/dist/src/components/atoms/IconImage/IconImage.d.ts +2 -2
- package/dist/src/components/atoms/IconImage/IconImage.js +5 -1
- package/dist/src/components/atoms/IconImage/IconImage.tsx +8 -10
- package/dist/src/components/atoms/Radio/Radio.scss +158 -190
- package/dist/src/components/atoms/Radio/Radio.tsx +1 -1
- package/dist/src/components/atoms/Radio/RadioProps.types.d.ts +2 -3
- package/dist/src/components/atoms/Radio/RadioProps.types.js +2 -3
- package/dist/src/components/atoms/Radio/RadioProps.types.ts +2 -3
- package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPage.js +3 -3
- package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPage.tsx +9 -1
- package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPageProps.types.d.ts +3 -2
- package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPageProps.types.ts +8 -2
- package/package.json +1 -1
package/dist/css/styles.css
CHANGED
|
@@ -1770,207 +1770,293 @@ h2.react-datepicker__current-month {
|
|
|
1770
1770
|
}
|
|
1771
1771
|
.e-radio .label {
|
|
1772
1772
|
color: var(--neutral-neutral-1);
|
|
1773
|
-
display: block;
|
|
1774
1773
|
margin-bottom: 1rem;
|
|
1774
|
+
display: block;
|
|
1775
1775
|
}
|
|
1776
1776
|
.e-radio.default .e-radio__inner {
|
|
1777
1777
|
display: flex;
|
|
1778
1778
|
flex-direction: column;
|
|
1779
1779
|
gap: 1rem;
|
|
1780
1780
|
}
|
|
1781
|
-
.e-radio.default .e-radio__inner .radio-item-container .e-radio-label
|
|
1782
|
-
cursor: pointer;
|
|
1783
|
-
}
|
|
1784
|
-
.e-radio.default .e-radio__inner .radio-item-container.active .e-radio-label .e-radio-label__label {
|
|
1785
|
-
color: var(--primary-main);
|
|
1786
|
-
}
|
|
1787
|
-
@media (min-width: 575px) {
|
|
1788
|
-
.e-radio.default .e-radio__inner {
|
|
1789
|
-
gap: 0.5rem;
|
|
1790
|
-
}
|
|
1791
|
-
}
|
|
1792
|
-
.e-radio.icons .e-radio__inner {
|
|
1781
|
+
.e-radio.default .e-radio__inner .radio-item-container .e-radio-label {
|
|
1793
1782
|
display: flex;
|
|
1794
|
-
|
|
1783
|
+
align-items: center;
|
|
1795
1784
|
gap: 0.5rem;
|
|
1796
|
-
width: 100%;
|
|
1797
1785
|
}
|
|
1798
|
-
.e-radio.
|
|
1799
|
-
|
|
1786
|
+
.e-radio.default .e-radio__inner .radio-item-container .e-radio-label .radio-item-input {
|
|
1787
|
+
visibility: hidden;
|
|
1800
1788
|
}
|
|
1801
|
-
.e-radio.
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
border:
|
|
1805
|
-
|
|
1789
|
+
.e-radio.default .e-radio__inner .radio-item-container .e-radio-label input[type=radio]:after {
|
|
1790
|
+
width: 16px;
|
|
1791
|
+
height: 16px;
|
|
1792
|
+
border-radius: 16px;
|
|
1793
|
+
top: -4px;
|
|
1794
|
+
left: -2px;
|
|
1795
|
+
position: relative;
|
|
1796
|
+
background-color: var(--others-white);
|
|
1797
|
+
content: "";
|
|
1798
|
+
display: inline-block;
|
|
1799
|
+
visibility: visible;
|
|
1800
|
+
border: 1px solid var(--neutral-neutral-1);
|
|
1806
1801
|
cursor: pointer;
|
|
1807
|
-
display: flex;
|
|
1808
|
-
gap: 16px;
|
|
1809
|
-
padding: 8px 15px;
|
|
1810
1802
|
}
|
|
1811
|
-
.e-radio.
|
|
1812
|
-
background: var(--neutral-neutral-5);
|
|
1813
|
-
}
|
|
1814
|
-
.e-radio.icons .e-radio__inner .radio-item-container .e-radio-label .radio-icon {
|
|
1815
|
-
height: 24px;
|
|
1816
|
-
padding: 1px;
|
|
1817
|
-
width: 24px;
|
|
1818
|
-
}
|
|
1819
|
-
.e-radio.icons .e-radio__inner .radio-item-container .e-radio-label .radio-item-input {
|
|
1820
|
-
position: absolute;
|
|
1821
|
-
visibility: hidden;
|
|
1822
|
-
}
|
|
1823
|
-
.e-radio.icons .e-radio__inner .radio-item-container .e-radio-label .e-radio-label__label {
|
|
1824
|
-
font-size: 14px;
|
|
1803
|
+
.e-radio.default .e-radio__inner .radio-item-container .e-radio-label .e-radio-label__label {
|
|
1825
1804
|
cursor: pointer;
|
|
1826
1805
|
}
|
|
1827
|
-
.e-radio.
|
|
1828
|
-
|
|
1829
|
-
border: 2px solid var(--primary-main-dark-2);
|
|
1806
|
+
.e-radio.default .e-radio__inner .radio-item-container.active .e-radio-label input[type=radio]:after {
|
|
1807
|
+
border: 5px solid var(--primary-main);
|
|
1830
1808
|
}
|
|
1831
|
-
.e-radio.
|
|
1832
|
-
|
|
1809
|
+
.e-radio.default .e-radio__inner .radio-item-container.active .e-radio-label .e-radio-label__label {
|
|
1810
|
+
color: var(--primary-main);
|
|
1811
|
+
}
|
|
1812
|
+
.e-radio.default .e-radio__inner .radio-item-container:hover .e-radio-label input[type=radio]:after {
|
|
1813
|
+
background-color: var(--primary-main-light-5);
|
|
1833
1814
|
}
|
|
1834
1815
|
@media (min-width: 575px) {
|
|
1835
|
-
.e-radio.
|
|
1836
|
-
|
|
1837
|
-
}
|
|
1838
|
-
.e-radio.icons .e-radio__inner .radio-item-container .e-radio-label {
|
|
1839
|
-
padding: 16px 15px;
|
|
1816
|
+
.e-radio.default .e-radio__inner {
|
|
1817
|
+
gap: 0.5rem;
|
|
1840
1818
|
}
|
|
1841
1819
|
}
|
|
1842
|
-
.e-radio
|
|
1843
|
-
display: flex;
|
|
1844
|
-
}
|
|
1845
|
-
.e-radio.tabs .e-radio__inner .radio-item-container {
|
|
1846
|
-
align-items: center;
|
|
1847
|
-
background: var(--neutral-neutral-6);
|
|
1848
|
-
border: 1px solid var(--neutral-neutral-3);
|
|
1849
|
-
border-left-width: 0;
|
|
1850
|
-
border-right-width: 0;
|
|
1851
|
-
cursor: pointer;
|
|
1852
|
-
display: flex;
|
|
1853
|
-
height: 42px;
|
|
1854
|
-
justify-content: center;
|
|
1855
|
-
width: 80px;
|
|
1856
|
-
}
|
|
1857
|
-
.e-radio.tabs .e-radio__inner .radio-item-container:hover {
|
|
1858
|
-
background: var(--neutral-neutral-4);
|
|
1859
|
-
}
|
|
1860
|
-
.e-radio.tabs .e-radio__inner .radio-item-container.active {
|
|
1861
|
-
background: var(--primary-main);
|
|
1862
|
-
color: var(--others-white);
|
|
1863
|
-
}
|
|
1864
|
-
.e-radio.tabs .e-radio__inner .radio-item-container.active .e-radio-label .e-radio-label__label {
|
|
1820
|
+
.e-radio label:first-child:not(.e-radio-label) {
|
|
1865
1821
|
font-weight: bold;
|
|
1866
1822
|
}
|
|
1867
|
-
.e-radio
|
|
1868
|
-
position: absolute;
|
|
1869
|
-
visibility: hidden;
|
|
1870
|
-
}
|
|
1871
|
-
.e-radio.tabs .e-radio__inner .radio-item-container .e-radio-label .e-radio-label__label {
|
|
1872
|
-
cursor: pointer;
|
|
1873
|
-
display: inline-block;
|
|
1874
|
-
font-size: 14px;
|
|
1875
|
-
min-width: 80px;
|
|
1876
|
-
padding: 10px;
|
|
1877
|
-
text-align: center;
|
|
1878
|
-
}
|
|
1879
|
-
.e-radio.tabs .e-radio__inner :first-child {
|
|
1880
|
-
border-radius: 4px 0 0 4px;
|
|
1881
|
-
border-left-width: 1px;
|
|
1882
|
-
}
|
|
1883
|
-
.e-radio.tabs .e-radio__inner :last-child {
|
|
1884
|
-
border-radius: 0 4px 4px 0;
|
|
1885
|
-
border-right-width: 1px;
|
|
1886
|
-
}
|
|
1887
|
-
.e-radio.tabs .e-radio__inner :not(:first-child) {
|
|
1888
|
-
border-left-width: 1px;
|
|
1889
|
-
}
|
|
1890
|
-
.e-radio.box .e-radio__inner {
|
|
1891
|
-
display: flex;
|
|
1892
|
-
flex-wrap: wrap;
|
|
1893
|
-
gap: 0.5rem;
|
|
1894
|
-
}
|
|
1895
|
-
.e-radio.box .e-radio__inner .radio-item-container {
|
|
1823
|
+
.e-radio .radio-item-container {
|
|
1896
1824
|
width: 100%;
|
|
1897
1825
|
}
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1826
|
+
@media (max-width: 575px) {
|
|
1827
|
+
.e-radio.--tabs .e-radio__inner {
|
|
1828
|
+
display: flex;
|
|
1829
|
+
flex-flow: row nowrap;
|
|
1830
|
+
margin-bottom: 2rem;
|
|
1831
|
+
width: 10rem;
|
|
1832
|
+
margin-top: 1rem;
|
|
1833
|
+
border: 1px solid var(--neutral-neutral-3);
|
|
1834
|
+
background: var(--neutral-neutral-6);
|
|
1835
|
+
border-radius: var(--global-border-radius);
|
|
1836
|
+
transition: all 0.3s ease;
|
|
1837
|
+
}
|
|
1838
|
+
.e-radio.--tabs .e-radio__inner .e-radio-label {
|
|
1839
|
+
width: 100%;
|
|
1840
|
+
display: flex;
|
|
1841
|
+
border-right: 1px solid var(--neutral-neutral-3);
|
|
1842
|
+
border-top-left-radius: var(--global-border-radius);
|
|
1843
|
+
border-bottom-left-radius: var(--global-border-radius);
|
|
1844
|
+
}
|
|
1845
|
+
.e-radio.--tabs .e-radio__inner .e-radio-label:last-child {
|
|
1846
|
+
border-right: none;
|
|
1847
|
+
}
|
|
1848
|
+
.e-radio.--tabs input {
|
|
1849
|
+
position: absolute;
|
|
1850
|
+
left: -9999px;
|
|
1851
|
+
}
|
|
1852
|
+
.e-radio.--tabs input + label {
|
|
1853
|
+
cursor: pointer;
|
|
1854
|
+
font-size: 14px;
|
|
1855
|
+
transition: all 0.3s ease;
|
|
1856
|
+
}
|
|
1857
|
+
.e-radio.--tabs input + label:hover {
|
|
1858
|
+
background: var(--neutral-neutral-4);
|
|
1859
|
+
}
|
|
1860
|
+
.e-radio.--tabs input:checked + label {
|
|
1861
|
+
font-weight: bold;
|
|
1862
|
+
color: var(--others-white);
|
|
1863
|
+
width: 100%;
|
|
1864
|
+
cursor: pointer;
|
|
1865
|
+
transition: all 0.3s ease;
|
|
1866
|
+
background-color: var(--primary-main);
|
|
1867
|
+
text-align: center;
|
|
1868
|
+
padding: 10px;
|
|
1869
|
+
}
|
|
1870
|
+
.e-radio.--tabs input:checked + label:hover {
|
|
1871
|
+
background-color: var(--primary-main);
|
|
1872
|
+
}
|
|
1873
|
+
.e-radio.--tabs input:not(:checked) + label {
|
|
1874
|
+
text-align: center;
|
|
1875
|
+
width: 100%;
|
|
1876
|
+
color: var(--neutral-neutral-1);
|
|
1877
|
+
font-weight: bold;
|
|
1878
|
+
padding: 10px;
|
|
1879
|
+
}
|
|
1880
|
+
.e-radio.--tabs input:hover:not(:checked) + label {
|
|
1881
|
+
width: 100%;
|
|
1882
|
+
}
|
|
1918
1883
|
}
|
|
1919
1884
|
@media (min-width: 575px) {
|
|
1920
|
-
.e-radio
|
|
1921
|
-
|
|
1885
|
+
.e-radio.--tabs:not(.--icons) .e-radio__inner {
|
|
1886
|
+
display: flex;
|
|
1887
|
+
flex-flow: row nowrap;
|
|
1888
|
+
margin-bottom: 2rem;
|
|
1889
|
+
width: 10rem;
|
|
1890
|
+
margin-top: 1rem;
|
|
1891
|
+
border: 1px solid var(--neutral-neutral-3);
|
|
1892
|
+
background: var(--neutral-neutral-6);
|
|
1893
|
+
border-radius: var(--global-border-radius);
|
|
1894
|
+
transition: all 0.3s ease;
|
|
1895
|
+
}
|
|
1896
|
+
.e-radio.--tabs:not(.--icons) .e-radio__inner .e-radio-label {
|
|
1897
|
+
width: 100%;
|
|
1898
|
+
display: flex;
|
|
1899
|
+
border-right: 1px solid var(--neutral-neutral-3);
|
|
1900
|
+
border-top-left-radius: var(--global-border-radius);
|
|
1901
|
+
border-bottom-left-radius: var(--global-border-radius);
|
|
1902
|
+
}
|
|
1903
|
+
.e-radio.--tabs:not(.--icons) .e-radio__inner .e-radio-label:last-child {
|
|
1904
|
+
border-right: none;
|
|
1905
|
+
}
|
|
1906
|
+
.e-radio.--tabs:not(.--icons) input {
|
|
1907
|
+
position: absolute;
|
|
1908
|
+
left: -9999px;
|
|
1909
|
+
}
|
|
1910
|
+
.e-radio.--tabs:not(.--icons) input + label {
|
|
1911
|
+
cursor: pointer;
|
|
1912
|
+
font-size: 14px;
|
|
1913
|
+
transition: all 0.3s ease;
|
|
1914
|
+
}
|
|
1915
|
+
.e-radio.--tabs:not(.--icons) input + label:hover {
|
|
1916
|
+
background: var(--neutral-neutral-4);
|
|
1917
|
+
}
|
|
1918
|
+
.e-radio.--tabs:not(.--icons) input:checked + label {
|
|
1919
|
+
font-weight: bold;
|
|
1920
|
+
color: var(--others-white);
|
|
1921
|
+
width: 100%;
|
|
1922
|
+
cursor: pointer;
|
|
1923
|
+
transition: all 0.3s ease;
|
|
1924
|
+
background-color: var(--primary-main);
|
|
1925
|
+
text-align: center;
|
|
1926
|
+
padding: 10px;
|
|
1927
|
+
}
|
|
1928
|
+
.e-radio.--tabs:not(.--icons) input:checked + label:hover {
|
|
1929
|
+
background-color: var(--primary-main);
|
|
1930
|
+
}
|
|
1931
|
+
.e-radio.--tabs:not(.--icons) input:not(:checked) + label {
|
|
1932
|
+
text-align: center;
|
|
1933
|
+
width: 100%;
|
|
1934
|
+
color: var(--neutral-neutral-1);
|
|
1935
|
+
font-weight: bold;
|
|
1936
|
+
padding: 10px;
|
|
1937
|
+
}
|
|
1938
|
+
.e-radio.--tabs:not(.--icons) input:hover:not(:checked) + label {
|
|
1939
|
+
width: 100%;
|
|
1922
1940
|
}
|
|
1923
1941
|
}
|
|
1924
|
-
|
|
1925
|
-
.e-radio
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
}
|
|
1930
|
-
.e-radio
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1942
|
+
@media (max-width: 575px) {
|
|
1943
|
+
.e-radio.--icons .e-radio__inner {
|
|
1944
|
+
display: flex;
|
|
1945
|
+
flex-direction: column;
|
|
1946
|
+
gap: 1rem;
|
|
1947
|
+
}
|
|
1948
|
+
.e-radio.--icons .e-radio__inner .radio-item-container .e-radio-label {
|
|
1949
|
+
display: flex;
|
|
1950
|
+
align-items: center;
|
|
1951
|
+
gap: 0.5rem;
|
|
1952
|
+
}
|
|
1953
|
+
.e-radio.--icons .e-radio__inner .radio-item-container .e-radio-label .radio-item-input {
|
|
1954
|
+
visibility: hidden;
|
|
1955
|
+
}
|
|
1956
|
+
.e-radio.--icons .e-radio__inner .radio-item-container .e-radio-label input[type=radio]:after {
|
|
1957
|
+
width: 16px;
|
|
1958
|
+
height: 16px;
|
|
1959
|
+
border-radius: 16px;
|
|
1960
|
+
top: -4px;
|
|
1961
|
+
left: -2px;
|
|
1962
|
+
position: relative;
|
|
1963
|
+
background-color: var(--others-white);
|
|
1964
|
+
content: "";
|
|
1965
|
+
display: inline-block;
|
|
1966
|
+
visibility: visible;
|
|
1967
|
+
border: 1px solid var(--neutral-neutral-1);
|
|
1968
|
+
cursor: pointer;
|
|
1969
|
+
}
|
|
1970
|
+
.e-radio.--icons .e-radio__inner .radio-item-container .e-radio-label .e-radio-label__label {
|
|
1971
|
+
cursor: pointer;
|
|
1972
|
+
}
|
|
1973
|
+
.e-radio.--icons .e-radio__inner .radio-item-container.active .e-radio-label input[type=radio]:after {
|
|
1974
|
+
border: 5px solid var(--primary-main);
|
|
1975
|
+
}
|
|
1976
|
+
.e-radio.--icons .e-radio__inner .radio-item-container.active .e-radio-label .e-radio-label__label {
|
|
1977
|
+
color: var(--primary-main);
|
|
1978
|
+
}
|
|
1979
|
+
.e-radio.--icons .e-radio__inner .radio-item-container:hover .e-radio-label input[type=radio]:after {
|
|
1980
|
+
background-color: var(--primary-main-light-5);
|
|
1981
|
+
}
|
|
1944
1982
|
}
|
|
1945
|
-
|
|
1946
|
-
.e-radio
|
|
1947
|
-
|
|
1983
|
+
@media (max-width: 575px) and (min-width: 575px) {
|
|
1984
|
+
.e-radio.--icons .e-radio__inner {
|
|
1985
|
+
gap: 0.5rem;
|
|
1986
|
+
}
|
|
1948
1987
|
}
|
|
1949
|
-
.e-radio
|
|
1950
|
-
|
|
1951
|
-
background-color: var(--primary-main-light-5);
|
|
1988
|
+
.e-radio.--icons .radio-icon {
|
|
1989
|
+
display: none;
|
|
1952
1990
|
}
|
|
1953
|
-
|
|
1954
|
-
|
|
1991
|
+
@media (min-width: 575px) {
|
|
1992
|
+
.e-radio.--icons .e-radio__inner {
|
|
1993
|
+
display: flex;
|
|
1994
|
+
flex-flow: row wrap;
|
|
1995
|
+
margin-top: 1.5rem;
|
|
1996
|
+
}
|
|
1997
|
+
.e-radio.--icons .radio-item-container {
|
|
1998
|
+
display: flex;
|
|
1999
|
+
width: 47%;
|
|
2000
|
+
border: 1px solid black;
|
|
2001
|
+
min-width: 80px;
|
|
2002
|
+
min-height: 3.5rem;
|
|
2003
|
+
margin-bottom: 0.5rem;
|
|
2004
|
+
border-radius: var(--global-border-radius);
|
|
2005
|
+
border-color: var(--neutral-neutral-4);
|
|
2006
|
+
cursor: pointer;
|
|
2007
|
+
}
|
|
2008
|
+
.e-radio.--icons .radio-item-container:not(:nth-child(2n+0)) {
|
|
2009
|
+
margin-right: 0.5rem;
|
|
2010
|
+
}
|
|
2011
|
+
.e-radio.--icons .radio-item-input {
|
|
2012
|
+
position: absolute;
|
|
2013
|
+
visibility: hidden;
|
|
2014
|
+
}
|
|
2015
|
+
.e-radio.--icons .radio-item-container.active {
|
|
2016
|
+
border: 2px solid var(--primary-main-dark-1);
|
|
2017
|
+
background-color: var(--neutral-neutral-5);
|
|
2018
|
+
}
|
|
2019
|
+
.e-radio.--icons .radio-item-container:hover {
|
|
2020
|
+
background-color: var(--neutral-neutral-5);
|
|
2021
|
+
font-weight: bold;
|
|
2022
|
+
}
|
|
2023
|
+
.e-radio.--icons .e-radio-label {
|
|
2024
|
+
display: flex;
|
|
2025
|
+
align-items: center;
|
|
2026
|
+
padding: 0.25rem 1rem;
|
|
2027
|
+
width: 100%;
|
|
2028
|
+
}
|
|
2029
|
+
.e-radio.--icons .radio-icon {
|
|
2030
|
+
display: block;
|
|
2031
|
+
margin-right: 1rem;
|
|
2032
|
+
}
|
|
1955
2033
|
}
|
|
1956
|
-
.e-radio.--is-invalid
|
|
2034
|
+
.e-radio.--is-invalid.--tabs .e-radio__inner,
|
|
1957
2035
|
.e-radio.--is-invalid.--group-invalid .e-radio__inner,
|
|
1958
|
-
.e-radio.--group-invalid
|
|
2036
|
+
.e-radio.--group-invalid.--tabs .e-radio__inner,
|
|
1959
2037
|
.e-radio.--group-invalid.--group-invalid .e-radio__inner {
|
|
1960
2038
|
border: 1px solid var(--error-main);
|
|
1961
2039
|
}
|
|
1962
|
-
.e-radio.--is-invalid
|
|
2040
|
+
.e-radio.--is-invalid.--tabs .e-radio__inner label label,
|
|
1963
2041
|
.e-radio.--is-invalid.--group-invalid .e-radio__inner label label,
|
|
1964
|
-
.e-radio.--group-invalid
|
|
2042
|
+
.e-radio.--group-invalid.--tabs .e-radio__inner label label,
|
|
1965
2043
|
.e-radio.--group-invalid.--group-invalid .e-radio__inner label label {
|
|
1966
2044
|
border-right: 1px solid var(--error-main);
|
|
1967
2045
|
}
|
|
1968
|
-
.e-radio.--is-invalid
|
|
2046
|
+
.e-radio.--is-invalid.--tabs .e-radio__inner label:last-child label,
|
|
1969
2047
|
.e-radio.--is-invalid.--group-invalid .e-radio__inner label:last-child label,
|
|
1970
|
-
.e-radio.--group-invalid
|
|
2048
|
+
.e-radio.--group-invalid.--tabs .e-radio__inner label:last-child label,
|
|
1971
2049
|
.e-radio.--group-invalid.--group-invalid .e-radio__inner label:last-child label {
|
|
1972
2050
|
border-right: none;
|
|
1973
2051
|
}
|
|
2052
|
+
.e-radio.radio--small.--tabs input + label {
|
|
2053
|
+
font-size: 0.875rem;
|
|
2054
|
+
padding: 0.75rem;
|
|
2055
|
+
}
|
|
2056
|
+
.e-radio.radio--small.--tabs .e-radio__inner {
|
|
2057
|
+
margin-top: 0;
|
|
2058
|
+
margin-bottom: 0;
|
|
2059
|
+
}
|
|
1974
2060
|
.tippy-box {
|
|
1975
2061
|
background-color: var(--others-white);
|
|
1976
2062
|
border-radius: var(--global-border-radius);
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
const IconImage = ({ iconName, baseSrcUrl = undefined, givenClass, iconFormat = 'svg' }) => {
|
|
3
|
-
|
|
3
|
+
if (baseSrcUrl === undefined) {
|
|
4
|
+
baseSrcUrl = `${process.env.ASSETS_URL}/`;
|
|
5
|
+
}
|
|
6
|
+
const iconUrl = `${baseSrcUrl}${iconName}.${iconFormat}`;
|
|
7
|
+
return _jsx("img", { className: givenClass, src: iconUrl, alt: '', role: 'img' });
|
|
4
8
|
};
|
|
5
9
|
export default IconImage;
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import React from 'react'
|
|
1
|
+
import React, { type FC } from 'react'
|
|
2
2
|
|
|
3
3
|
import { type IconImageProps } from './IconImageProps.types'
|
|
4
4
|
|
|
5
|
-
const IconImage:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
/>
|
|
13
|
-
)
|
|
5
|
+
const IconImage: FC<IconImageProps> = ({ iconName, baseSrcUrl = undefined, givenClass, iconFormat = 'svg' }) => {
|
|
6
|
+
if (baseSrcUrl === undefined) {
|
|
7
|
+
baseSrcUrl = `${process.env.ASSETS_URL}/`
|
|
8
|
+
}
|
|
9
|
+
const iconUrl = `${baseSrcUrl}${iconName}.${iconFormat}`
|
|
10
|
+
|
|
11
|
+
return <img className={givenClass} src={iconUrl} alt='' role='img' />
|
|
14
12
|
}
|
|
15
13
|
|
|
16
14
|
export default IconImage
|
|
@@ -8,6 +8,29 @@
|
|
|
8
8
|
gap: 1rem;
|
|
9
9
|
.radio-item-container {
|
|
10
10
|
.e-radio-label {
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
gap: 0.5rem;
|
|
14
|
+
|
|
15
|
+
.radio-item-input {
|
|
16
|
+
visibility: hidden;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
input[type='radio']:after {
|
|
20
|
+
width: 16px;
|
|
21
|
+
height: 16px;
|
|
22
|
+
border-radius: 16px;
|
|
23
|
+
top: -4px;
|
|
24
|
+
left: -2px;
|
|
25
|
+
position: relative;
|
|
26
|
+
background-color: var(--others-white);
|
|
27
|
+
content: '';
|
|
28
|
+
display: inline-block;
|
|
29
|
+
visibility: visible;
|
|
30
|
+
border: 1px solid var(--neutral-neutral-1);
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
}
|
|
33
|
+
|
|
11
34
|
.e-radio-label__label {
|
|
12
35
|
cursor: pointer;
|
|
13
36
|
}
|
|
@@ -15,11 +38,22 @@
|
|
|
15
38
|
|
|
16
39
|
&.active {
|
|
17
40
|
.e-radio-label {
|
|
41
|
+
input[type='radio']:after {
|
|
42
|
+
border: 5px solid var(--primary-main);
|
|
43
|
+
}
|
|
18
44
|
.e-radio-label__label {
|
|
19
45
|
color: var(--primary-main);
|
|
20
46
|
}
|
|
21
47
|
}
|
|
22
48
|
}
|
|
49
|
+
|
|
50
|
+
&:hover {
|
|
51
|
+
.e-radio-label {
|
|
52
|
+
input[type='radio']:after {
|
|
53
|
+
background-color: var(--primary-main-light-5);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
23
57
|
}
|
|
24
58
|
|
|
25
59
|
@include portrait-tablets {
|
|
@@ -31,247 +65,169 @@
|
|
|
31
65
|
@mixin tabsStyles {
|
|
32
66
|
.e-radio__inner {
|
|
33
67
|
display: flex;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
68
|
+
flex-flow: row nowrap;
|
|
69
|
+
margin-bottom: 2rem;
|
|
70
|
+
width: 10rem;
|
|
71
|
+
margin-top: 1rem;
|
|
72
|
+
border: 1px solid var(--neutral-neutral-3);
|
|
73
|
+
background: var(--neutral-neutral-6);
|
|
74
|
+
border-radius: var(--global-border-radius);
|
|
75
|
+
transition: all 0.3s ease;
|
|
76
|
+
|
|
77
|
+
.e-radio-label {
|
|
78
|
+
width: 100%;
|
|
41
79
|
display: flex;
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
80
|
+
border-right: 1px solid var(--neutral-neutral-3);
|
|
81
|
+
border-top-left-radius: var(--global-border-radius);
|
|
82
|
+
border-bottom-left-radius: var(--global-border-radius);
|
|
45
83
|
|
|
46
|
-
&:
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
&.active {
|
|
51
|
-
background: var(--primary-main);
|
|
52
|
-
color: var(--others-white);
|
|
53
|
-
.e-radio-label {
|
|
54
|
-
.e-radio-label__label {
|
|
55
|
-
font-weight: bold;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.e-radio-label {
|
|
61
|
-
.radio-item-input {
|
|
62
|
-
position: absolute;
|
|
63
|
-
visibility: hidden;
|
|
64
|
-
}
|
|
65
|
-
.e-radio-label__label {
|
|
66
|
-
cursor: pointer;
|
|
67
|
-
display: inline-block;
|
|
68
|
-
font-size: 14px;
|
|
69
|
-
min-width: 80px;
|
|
70
|
-
padding: 10px;
|
|
71
|
-
text-align: center;
|
|
72
|
-
}
|
|
84
|
+
&:last-child {
|
|
85
|
+
border-right: none;
|
|
73
86
|
}
|
|
74
87
|
}
|
|
75
|
-
:first-child {
|
|
76
|
-
border-radius: 4px 0 0 4px;
|
|
77
|
-
border-left-width: 1px;
|
|
78
|
-
}
|
|
79
|
-
:last-child {
|
|
80
|
-
border-radius: 0 4px 4px 0;
|
|
81
|
-
border-right-width: 1px;
|
|
82
|
-
}
|
|
83
|
-
:not(:first-child) {
|
|
84
|
-
border-left-width: 1px;
|
|
85
|
-
}
|
|
86
88
|
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
@mixin iconStyles {
|
|
90
|
-
.e-radio__inner {
|
|
91
|
-
display: flex;
|
|
92
|
-
flex-wrap: wrap;
|
|
93
|
-
gap: 0.5rem;
|
|
94
|
-
width: 100%;
|
|
95
|
-
.radio-item-container {
|
|
96
|
-
width: 100%;
|
|
97
|
-
.e-radio-label {
|
|
98
|
-
align-items: center;
|
|
99
|
-
background: var(--others-white);
|
|
100
|
-
border: 1px solid var(--neutral-neutral-4);
|
|
101
|
-
border-radius: 4px;
|
|
102
|
-
cursor: pointer;
|
|
103
|
-
display: flex;
|
|
104
|
-
gap: 16px;
|
|
105
|
-
padding: 8px 15px;
|
|
106
89
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
.radio-icon {
|
|
112
|
-
height: 24px;
|
|
113
|
-
padding: 1px;
|
|
114
|
-
width: 24px;
|
|
115
|
-
}
|
|
90
|
+
input {
|
|
91
|
+
position: absolute;
|
|
92
|
+
left: -9999px;
|
|
116
93
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
94
|
+
+ label {
|
|
95
|
+
cursor: pointer;
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
transition: all 0.3s ease;
|
|
121
98
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
cursor: pointer;
|
|
125
|
-
}
|
|
99
|
+
&:hover {
|
|
100
|
+
background: var(--neutral-neutral-4);
|
|
126
101
|
}
|
|
102
|
+
}
|
|
127
103
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
104
|
+
&:checked + label {
|
|
105
|
+
font-weight: bold;
|
|
106
|
+
color: var(--others-white);
|
|
107
|
+
width: 100%;
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
transition: all 0.3s ease;
|
|
110
|
+
background-color: var(--primary-main);
|
|
111
|
+
text-align: center;
|
|
112
|
+
padding: 10px;
|
|
132
113
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
}
|
|
136
|
-
}
|
|
114
|
+
&:hover {
|
|
115
|
+
background-color: var(--primary-main);
|
|
137
116
|
}
|
|
138
117
|
}
|
|
139
118
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
}
|
|
119
|
+
&:not(:checked) + label {
|
|
120
|
+
text-align: center;
|
|
121
|
+
width: 100%;
|
|
122
|
+
color: var(--neutral-neutral-1);
|
|
123
|
+
font-weight: bold;
|
|
124
|
+
padding: 10px;
|
|
147
125
|
}
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
@mixin normalRadioStyles {
|
|
152
|
-
.e-radio__inner {
|
|
153
|
-
.radio-item-container {
|
|
154
|
-
.e-radio-label {
|
|
155
|
-
align-items: center;
|
|
156
|
-
display: flex;
|
|
157
|
-
gap: 0.5rem;
|
|
158
|
-
|
|
159
|
-
input[type='radio']:after {
|
|
160
|
-
background-color: var(--others-white);
|
|
161
|
-
border: 1px solid var(--neutral-neutral-1);
|
|
162
|
-
border-radius: 16px;
|
|
163
|
-
content: '';
|
|
164
|
-
cursor: pointer;
|
|
165
|
-
display: inline-block;
|
|
166
|
-
height: 16px;
|
|
167
|
-
left: -2px;
|
|
168
|
-
position: relative;
|
|
169
|
-
top: -5px;
|
|
170
|
-
visibility: visible;
|
|
171
|
-
width: 16px;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
&.active {
|
|
176
|
-
.e-radio-label {
|
|
177
|
-
input[type='radio']:after {
|
|
178
|
-
border: 5px solid var(--primary-main);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
126
|
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
input[type='radio']:after {
|
|
186
|
-
background-color: var(--primary-main-light-5);
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
}
|
|
127
|
+
&:hover:not(:checked) + label {
|
|
128
|
+
width: 100%;
|
|
190
129
|
}
|
|
191
130
|
}
|
|
192
131
|
}
|
|
193
132
|
|
|
194
|
-
@mixin
|
|
133
|
+
@mixin iconStyles {
|
|
195
134
|
.e-radio__inner {
|
|
196
135
|
display: flex;
|
|
197
|
-
flex-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
width: 100%;
|
|
136
|
+
flex-flow: row wrap;
|
|
137
|
+
margin-top: 1.5rem;
|
|
138
|
+
}
|
|
201
139
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
140
|
+
.radio-item-container {
|
|
141
|
+
display: flex;
|
|
142
|
+
width: 47%;
|
|
143
|
+
border: 1px solid black;
|
|
144
|
+
min-width: 80px;
|
|
145
|
+
min-height: 3.5rem;
|
|
146
|
+
margin-bottom: 0.5rem;
|
|
147
|
+
border-radius: var(--global-border-radius);
|
|
148
|
+
border-color: var(--neutral-neutral-4);
|
|
149
|
+
cursor: pointer;
|
|
150
|
+
}
|
|
207
151
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
cursor: pointer;
|
|
212
|
-
}
|
|
213
|
-
}
|
|
152
|
+
.radio-item-container:not(:nth-child(2n + 0)) {
|
|
153
|
+
margin-right: 0.5rem;
|
|
154
|
+
}
|
|
214
155
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
.e-radio-label__label {
|
|
220
|
-
font-weight: bold;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
}
|
|
156
|
+
.radio-item-input {
|
|
157
|
+
position: absolute;
|
|
158
|
+
visibility: hidden;
|
|
159
|
+
}
|
|
224
160
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
}
|
|
161
|
+
.radio-item-container.active {
|
|
162
|
+
border: 2px solid var(--primary-main-dark-1);
|
|
163
|
+
background-color: var(--neutral-neutral-5);
|
|
164
|
+
}
|
|
231
165
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
166
|
+
.radio-item-container:hover {
|
|
167
|
+
background-color: var(--neutral-neutral-5);
|
|
168
|
+
font-weight: bold;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-radio-label {
|
|
172
|
+
display: flex;
|
|
173
|
+
align-items: center;
|
|
174
|
+
padding: 0.25rem 1rem;
|
|
175
|
+
width: 100%;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.radio-icon {
|
|
179
|
+
display: block;
|
|
180
|
+
margin-right: 1rem;
|
|
237
181
|
}
|
|
238
182
|
}
|
|
239
183
|
|
|
240
184
|
.e-radio {
|
|
241
185
|
.label {
|
|
242
186
|
color: var(--neutral-neutral-1);
|
|
243
|
-
display: block;
|
|
244
187
|
margin-bottom: 1rem;
|
|
188
|
+
display: block;
|
|
245
189
|
}
|
|
246
190
|
|
|
247
191
|
&.default {
|
|
248
192
|
@include defaultStyles;
|
|
249
193
|
}
|
|
250
194
|
|
|
251
|
-
|
|
252
|
-
@include iconStyles;
|
|
253
|
-
}
|
|
195
|
+
// por aqui
|
|
254
196
|
|
|
255
|
-
|
|
256
|
-
|
|
197
|
+
label:first-child:not(.e-radio-label) {
|
|
198
|
+
font-weight: bold;
|
|
257
199
|
}
|
|
258
200
|
|
|
259
|
-
|
|
260
|
-
|
|
201
|
+
.radio-item-container {
|
|
202
|
+
width: 100%;
|
|
261
203
|
}
|
|
262
204
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
205
|
+
&.--tabs {
|
|
206
|
+
@media (max-width: #{$xs}) {
|
|
207
|
+
@include tabsStyles;
|
|
208
|
+
}
|
|
209
|
+
&:not(.--icons) {
|
|
210
|
+
@media (min-width: #{$xs}) {
|
|
211
|
+
@include tabsStyles;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
266
214
|
}
|
|
267
215
|
|
|
268
|
-
|
|
269
|
-
|
|
216
|
+
&.--icons {
|
|
217
|
+
@include mobile {
|
|
218
|
+
@include defaultStyles();
|
|
219
|
+
}
|
|
220
|
+
.radio-icon {
|
|
221
|
+
display: none;
|
|
222
|
+
}
|
|
223
|
+
@include portrait-tablets {
|
|
224
|
+
@include iconStyles;
|
|
225
|
+
}
|
|
270
226
|
}
|
|
271
227
|
|
|
272
228
|
&.--is-invalid,
|
|
273
229
|
&.--group-invalid {
|
|
274
|
-
|
|
230
|
+
&.--tabs,
|
|
275
231
|
&.--group-invalid {
|
|
276
232
|
.e-radio__inner {
|
|
277
233
|
border: 1px solid var(--error-main);
|
|
@@ -291,3 +247,15 @@
|
|
|
291
247
|
}
|
|
292
248
|
}
|
|
293
249
|
}
|
|
250
|
+
|
|
251
|
+
.e-radio.radio--small.--tabs {
|
|
252
|
+
input + label {
|
|
253
|
+
font-size: 0.875rem;
|
|
254
|
+
padding: 0.75rem;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.e-radio__inner {
|
|
258
|
+
margin-top: 0;
|
|
259
|
+
margin-bottom: 0;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
@@ -30,7 +30,7 @@ const Radio: React.FC<RadioProps> = ({
|
|
|
30
30
|
<label htmlFor={name} className='sans-serif --medium --bold-weight label'>
|
|
31
31
|
{label}
|
|
32
32
|
</label>
|
|
33
|
-
<div className='e-radio__inner'>
|
|
33
|
+
<div className={'e-radio__inner'}>
|
|
34
34
|
{items.map((radio) => {
|
|
35
35
|
return (
|
|
36
36
|
<div className={`radio-item-container ${radio.value === value ? 'active' : ''}`} key={radio.value}>
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export var RadioFormat;
|
|
2
2
|
(function (RadioFormat) {
|
|
3
3
|
RadioFormat["Default"] = "default";
|
|
4
|
-
RadioFormat["Tabs"] = "tabs";
|
|
5
|
-
RadioFormat["Icons"] = "icons";
|
|
6
|
-
RadioFormat["Box"] = "box";
|
|
4
|
+
RadioFormat["Tabs"] = "--tabs";
|
|
5
|
+
RadioFormat["Icons"] = "--icons";
|
|
7
6
|
})(RadioFormat || (RadioFormat = {}));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { BenefitsRatafiaSection, FaqSection, JumbotronRatafiaSection, StepsRatafiaSection } from '../../sections';
|
|
3
|
-
export const EsignatureLandingPage = ({ jumbotronSectionProps, stepsSectionProps, benefitsSectionProps, trustPilotBox, faqGroupProps }) => {
|
|
4
|
-
return (_jsxs(_Fragment, { children: [_jsx(JumbotronRatafiaSection, { content: jumbotronSectionProps.content, alternativeStyles: jumbotronSectionProps.alternativeStyles, children: jumbotronSectionProps.children }), _jsx(StepsRatafiaSection, { ...stepsSectionProps }), _jsx(BenefitsRatafiaSection, { ...benefitsSectionProps }), trustPilotBox ?? trustPilotBox, _jsx(FaqSection, { groups: faqGroupProps, givenClass: 'faq-ratafia-section' })] }));
|
|
2
|
+
import { BenefitsRatafiaSection, FaqSection, JumbotronRatafiaSection, MidBannerRatafiaSection, StepsRatafiaSection } from '../../sections';
|
|
3
|
+
export const EsignatureLandingPage = ({ jumbotronSectionProps, stepsSectionProps, benefitsSectionProps, trustPilotBox, midBannerRatafiaSectionProps, faqGroupProps }) => {
|
|
4
|
+
return (_jsxs(_Fragment, { children: [_jsx(JumbotronRatafiaSection, { content: jumbotronSectionProps.content, alternativeStyles: jumbotronSectionProps.alternativeStyles, children: jumbotronSectionProps.children }), _jsx(StepsRatafiaSection, { ...stepsSectionProps }), _jsx(BenefitsRatafiaSection, { ...benefitsSectionProps }), trustPilotBox ?? trustPilotBox, _jsx(MidBannerRatafiaSection, { ...midBannerRatafiaSectionProps }), _jsx(FaqSection, { groups: faqGroupProps, givenClass: 'faq-ratafia-section' })] }));
|
|
5
5
|
};
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
BenefitsRatafiaSection,
|
|
5
|
+
FaqSection,
|
|
6
|
+
JumbotronRatafiaSection,
|
|
7
|
+
MidBannerRatafiaSection,
|
|
8
|
+
StepsRatafiaSection
|
|
9
|
+
} from '../../sections'
|
|
4
10
|
import { type EsignatureLandingPageProps } from './EsignatureLandingPageProps.types'
|
|
5
11
|
|
|
6
12
|
export const EsignatureLandingPage: React.FC<EsignatureLandingPageProps> = ({
|
|
@@ -8,6 +14,7 @@ export const EsignatureLandingPage: React.FC<EsignatureLandingPageProps> = ({
|
|
|
8
14
|
stepsSectionProps,
|
|
9
15
|
benefitsSectionProps,
|
|
10
16
|
trustPilotBox,
|
|
17
|
+
midBannerRatafiaSectionProps,
|
|
11
18
|
faqGroupProps
|
|
12
19
|
}) => {
|
|
13
20
|
return (
|
|
@@ -21,6 +28,7 @@ export const EsignatureLandingPage: React.FC<EsignatureLandingPageProps> = ({
|
|
|
21
28
|
<StepsRatafiaSection {...stepsSectionProps} />
|
|
22
29
|
<BenefitsRatafiaSection {...benefitsSectionProps} />
|
|
23
30
|
{trustPilotBox ?? trustPilotBox}
|
|
31
|
+
<MidBannerRatafiaSection {...midBannerRatafiaSectionProps} />
|
|
24
32
|
<FaqSection groups={faqGroupProps} givenClass='faq-ratafia-section' />
|
|
25
33
|
</>
|
|
26
34
|
)
|
package/dist/src/components/pages/EsignatureLandingPage/EsignatureLandingPageProps.types.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { BenefitsRatafiaSectionProps, JumbotronRatafiaSectionProps, StepsRatafiaSectionProps } from '../../sections';
|
|
1
|
+
import { BenefitsRatafiaSectionProps, JumbotronRatafiaSectionProps, MidBannerRatafiaSectionProps, StepsRatafiaSectionProps } from '../../sections';
|
|
2
2
|
import type { FaqGroupProps } from '../../organisms';
|
|
3
3
|
export interface EsignatureLandingPageProps {
|
|
4
4
|
jumbotronSectionProps: JumbotronRatafiaSectionProps;
|
|
5
5
|
stepsSectionProps: StepsRatafiaSectionProps;
|
|
6
6
|
benefitsSectionProps: BenefitsRatafiaSectionProps;
|
|
7
|
-
faqGroupProps: FaqGroupProps[];
|
|
8
7
|
trustPilotBox?: React.ReactNode;
|
|
8
|
+
midBannerRatafiaSectionProps: MidBannerRatafiaSectionProps;
|
|
9
|
+
faqGroupProps: FaqGroupProps[];
|
|
9
10
|
}
|
|
@@ -1,10 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
BenefitsRatafiaSectionProps,
|
|
3
|
+
JumbotronRatafiaSectionProps,
|
|
4
|
+
MidBannerRatafiaSectionProps,
|
|
5
|
+
StepsRatafiaSectionProps
|
|
6
|
+
} from '../../sections'
|
|
2
7
|
import type { FaqGroupProps } from '../../organisms'
|
|
3
8
|
|
|
4
9
|
export interface EsignatureLandingPageProps {
|
|
5
10
|
jumbotronSectionProps: JumbotronRatafiaSectionProps
|
|
6
11
|
stepsSectionProps: StepsRatafiaSectionProps
|
|
7
12
|
benefitsSectionProps: BenefitsRatafiaSectionProps
|
|
8
|
-
faqGroupProps: FaqGroupProps[]
|
|
9
13
|
trustPilotBox?: React.ReactNode
|
|
14
|
+
midBannerRatafiaSectionProps: MidBannerRatafiaSectionProps
|
|
15
|
+
faqGroupProps: FaqGroupProps[]
|
|
10
16
|
}
|