@asantemedia-org/edwardsvacuum-design-system 1.6.40 → 1.6.41
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/index.css +54 -7
- package/dist/index.d.ts +4 -3
- package/dist/index.esm.css +54 -7
- package/dist/index.esm.js +15 -11
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +14 -11
- package/dist/index.js.map +1 -1
- package/dist/index.scss +54 -7
- package/dist/stories/components/Card/card.d.ts +1 -1
- package/dist/stories/components/Card/card.types.d.ts +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -338,9 +338,15 @@
|
|
|
338
338
|
margin-bottom: 1rem;
|
|
339
339
|
}
|
|
340
340
|
.card-module__cmp-card--type-product_details__header__title___4KSqX {
|
|
341
|
-
font-size: 1.5rem;
|
|
342
|
-
font-weight:
|
|
341
|
+
font-size: clamp(1.5rem, 2vw, 28px);
|
|
342
|
+
font-weight: 100;
|
|
343
343
|
margin-bottom: 0.5rem;
|
|
344
|
+
color: #2d363a;
|
|
345
|
+
}
|
|
346
|
+
@media (min-width: 768px) {
|
|
347
|
+
.card-module__cmp-card--type-product_details__header__title___4KSqX {
|
|
348
|
+
max-width: 325px;
|
|
349
|
+
}
|
|
344
350
|
}
|
|
345
351
|
.card-module__cmp-card--type-product_details__header__product-code___zf7yq {
|
|
346
352
|
font-size: 0.875rem;
|
|
@@ -406,6 +412,8 @@
|
|
|
406
412
|
}
|
|
407
413
|
.accordion-section__title {
|
|
408
414
|
flex: 1;
|
|
415
|
+
font-weight: 100;
|
|
416
|
+
color: #2d363a;
|
|
409
417
|
}
|
|
410
418
|
.accordion-section__icon {
|
|
411
419
|
transition: transform 0.3s ease;
|
|
@@ -1428,10 +1436,10 @@
|
|
|
1428
1436
|
font-size: 18px;
|
|
1429
1437
|
}
|
|
1430
1438
|
.qr-journey-form-wrapper h1 {
|
|
1431
|
-
font-size:
|
|
1439
|
+
font-size: 28px;
|
|
1432
1440
|
font-family: "Calibri W05 Light", "Calibri", sans-serif;
|
|
1433
1441
|
color: rgb(87, 94, 97);
|
|
1434
|
-
font-weight:
|
|
1442
|
+
font-weight: 100;
|
|
1435
1443
|
margin-bottom: 2em;
|
|
1436
1444
|
position: relative;
|
|
1437
1445
|
}
|
|
@@ -1635,29 +1643,49 @@
|
|
|
1635
1643
|
}
|
|
1636
1644
|
.qr-journey-form-wrapper .disabled-product-fields-section {
|
|
1637
1645
|
background-color: rgb(243, 243, 243);
|
|
1638
|
-
padding:
|
|
1646
|
+
padding: 1rem;
|
|
1639
1647
|
margin: 1em 0;
|
|
1648
|
+
display: flex;
|
|
1649
|
+
flex-direction: column;
|
|
1650
|
+
gap: 1.5rem;
|
|
1640
1651
|
}
|
|
1641
1652
|
.qr-journey-form-wrapper .disabled-product-fields-section h2 {
|
|
1642
1653
|
color: rgb(87, 94, 97);
|
|
1643
1654
|
padding-left: 1.5em;
|
|
1644
1655
|
position: relative;
|
|
1656
|
+
font-weight: 400;
|
|
1657
|
+
margin: 0;
|
|
1645
1658
|
}
|
|
1646
1659
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields {
|
|
1647
1660
|
display: flex;
|
|
1648
1661
|
flex-wrap: wrap;
|
|
1649
1662
|
}
|
|
1663
|
+
@media (min-width: 768px) {
|
|
1664
|
+
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields {
|
|
1665
|
+
flex-direction: row;
|
|
1666
|
+
flex-wrap: nowrap;
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1650
1669
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper {
|
|
1651
1670
|
flex: 0.5 1;
|
|
1652
1671
|
min-width: 50%;
|
|
1653
1672
|
}
|
|
1673
|
+
@media (min-width: 768px) {
|
|
1674
|
+
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper {
|
|
1675
|
+
flex: 0 1;
|
|
1676
|
+
min-width: 25%;
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1654
1679
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper label .label {
|
|
1655
1680
|
height: 1em;
|
|
1656
1681
|
opacity: 1;
|
|
1657
1682
|
font-weight: 900;
|
|
1683
|
+
font-size: 16px;
|
|
1658
1684
|
}
|
|
1659
1685
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper label input {
|
|
1660
1686
|
border: 0;
|
|
1687
|
+
font-size: 16px;
|
|
1688
|
+
font-weight: 100;
|
|
1661
1689
|
background-color: transparent;
|
|
1662
1690
|
padding: 0;
|
|
1663
1691
|
}
|
|
@@ -1732,9 +1760,20 @@
|
|
|
1732
1760
|
justify-content: space-between;
|
|
1733
1761
|
gap: 1em;
|
|
1734
1762
|
max-width: 1200px;
|
|
1763
|
+
margin: 0 auto;
|
|
1764
|
+
padding: 0 1em;
|
|
1765
|
+
}
|
|
1766
|
+
.qr-journey-form-wrapper.desktop-true h1 {
|
|
1767
|
+
margin: 0;
|
|
1768
|
+
}
|
|
1769
|
+
.qr-journey-form-wrapper.desktop-true h1:after {
|
|
1770
|
+
display: none;
|
|
1735
1771
|
}
|
|
1736
1772
|
.qr-journey-form-wrapper.desktop-true .form-progress {
|
|
1737
1773
|
max-width: 400px;
|
|
1774
|
+
display: flex;
|
|
1775
|
+
flex-direction: column;
|
|
1776
|
+
gap: 2rem;
|
|
1738
1777
|
}
|
|
1739
1778
|
.qr-journey-form-wrapper.desktop-true form {
|
|
1740
1779
|
flex: 1;
|
|
@@ -1743,6 +1782,10 @@
|
|
|
1743
1782
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop {
|
|
1744
1783
|
padding: 0;
|
|
1745
1784
|
}
|
|
1785
|
+
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop.first-page {
|
|
1786
|
+
padding: 2.5rem 0 0 0;
|
|
1787
|
+
border-top: 1px solid rgb(233, 233, 233);
|
|
1788
|
+
}
|
|
1746
1789
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li {
|
|
1747
1790
|
list-style: none;
|
|
1748
1791
|
display: flex;
|
|
@@ -1762,7 +1805,7 @@
|
|
|
1762
1805
|
}
|
|
1763
1806
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li .bullet-point:after {
|
|
1764
1807
|
content: "";
|
|
1765
|
-
width:
|
|
1808
|
+
width: 1.25px;
|
|
1766
1809
|
height: 25px;
|
|
1767
1810
|
background-color: rgb(130, 134, 136);
|
|
1768
1811
|
position: absolute;
|
|
@@ -1780,18 +1823,21 @@
|
|
|
1780
1823
|
text-align: left;
|
|
1781
1824
|
flex: 2;
|
|
1782
1825
|
color: rgb(130, 134, 136);
|
|
1826
|
+
font-size: 1.25rem;
|
|
1827
|
+
font-weight: 400;
|
|
1783
1828
|
}
|
|
1784
1829
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li span {
|
|
1785
1830
|
position: absolute;
|
|
1786
1831
|
left: 0;
|
|
1787
1832
|
right: 0;
|
|
1788
|
-
top:
|
|
1833
|
+
top: 2px;
|
|
1789
1834
|
bottom: 0;
|
|
1790
1835
|
height: 1em;
|
|
1791
1836
|
width: 1em;
|
|
1792
1837
|
text-align: center;
|
|
1793
1838
|
line-height: 1em;
|
|
1794
1839
|
margin: auto;
|
|
1840
|
+
font-weight: 400;
|
|
1795
1841
|
}
|
|
1796
1842
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li.checked .bullet-point {
|
|
1797
1843
|
background-color: rgb(196, 38, 46);
|
|
@@ -1799,6 +1845,7 @@
|
|
|
1799
1845
|
}
|
|
1800
1846
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li.checked h3 {
|
|
1801
1847
|
color: black;
|
|
1848
|
+
font-weight: 700;
|
|
1802
1849
|
}
|
|
1803
1850
|
.qr-journey-form-wrapper.desktop-true .qr-form-thank-you-page {
|
|
1804
1851
|
max-width: 400px;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { AlgoliaDynamicSearchRaw, AlgoliaDynamicSearchEdwards as AlgoliaDynamicSearch } from "@stories/experiences/Algolia-dynamic-search/algolia-dynamic-search";
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
2
|
+
export { QrForm } from "@stories/experiences/QRFormJourney/Qr-form/Qr-form";
|
|
3
|
+
export type { allQrFromProps } from "@stories/experiences/QRFormJourney/Qr-form/Qr-form";
|
|
4
|
+
export type { FormFieldType } from "@stories/experiences/QRFormJourney/FormFieldType";
|
|
5
|
+
export { AccordionSection } from "@stories/components/AccordionSection";
|
|
5
6
|
import "@stories/experiences/QRFormJourney/Qr-form/Qr-form";
|
package/dist/index.esm.css
CHANGED
|
@@ -338,9 +338,15 @@
|
|
|
338
338
|
margin-bottom: 1rem;
|
|
339
339
|
}
|
|
340
340
|
.card-module__cmp-card--type-product_details__header__title___4KSqX {
|
|
341
|
-
font-size: 1.5rem;
|
|
342
|
-
font-weight:
|
|
341
|
+
font-size: clamp(1.5rem, 2vw, 28px);
|
|
342
|
+
font-weight: 100;
|
|
343
343
|
margin-bottom: 0.5rem;
|
|
344
|
+
color: #2d363a;
|
|
345
|
+
}
|
|
346
|
+
@media (min-width: 768px) {
|
|
347
|
+
.card-module__cmp-card--type-product_details__header__title___4KSqX {
|
|
348
|
+
max-width: 325px;
|
|
349
|
+
}
|
|
344
350
|
}
|
|
345
351
|
.card-module__cmp-card--type-product_details__header__product-code___zf7yq {
|
|
346
352
|
font-size: 0.875rem;
|
|
@@ -406,6 +412,8 @@
|
|
|
406
412
|
}
|
|
407
413
|
.accordion-section__title {
|
|
408
414
|
flex: 1;
|
|
415
|
+
font-weight: 100;
|
|
416
|
+
color: #2d363a;
|
|
409
417
|
}
|
|
410
418
|
.accordion-section__icon {
|
|
411
419
|
transition: transform 0.3s ease;
|
|
@@ -1428,10 +1436,10 @@
|
|
|
1428
1436
|
font-size: 18px;
|
|
1429
1437
|
}
|
|
1430
1438
|
.qr-journey-form-wrapper h1 {
|
|
1431
|
-
font-size:
|
|
1439
|
+
font-size: 28px;
|
|
1432
1440
|
font-family: "Calibri W05 Light", "Calibri", sans-serif;
|
|
1433
1441
|
color: rgb(87, 94, 97);
|
|
1434
|
-
font-weight:
|
|
1442
|
+
font-weight: 100;
|
|
1435
1443
|
margin-bottom: 2em;
|
|
1436
1444
|
position: relative;
|
|
1437
1445
|
}
|
|
@@ -1635,29 +1643,49 @@
|
|
|
1635
1643
|
}
|
|
1636
1644
|
.qr-journey-form-wrapper .disabled-product-fields-section {
|
|
1637
1645
|
background-color: rgb(243, 243, 243);
|
|
1638
|
-
padding:
|
|
1646
|
+
padding: 1rem;
|
|
1639
1647
|
margin: 1em 0;
|
|
1648
|
+
display: flex;
|
|
1649
|
+
flex-direction: column;
|
|
1650
|
+
gap: 1.5rem;
|
|
1640
1651
|
}
|
|
1641
1652
|
.qr-journey-form-wrapper .disabled-product-fields-section h2 {
|
|
1642
1653
|
color: rgb(87, 94, 97);
|
|
1643
1654
|
padding-left: 1.5em;
|
|
1644
1655
|
position: relative;
|
|
1656
|
+
font-weight: 400;
|
|
1657
|
+
margin: 0;
|
|
1645
1658
|
}
|
|
1646
1659
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields {
|
|
1647
1660
|
display: flex;
|
|
1648
1661
|
flex-wrap: wrap;
|
|
1649
1662
|
}
|
|
1663
|
+
@media (min-width: 768px) {
|
|
1664
|
+
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields {
|
|
1665
|
+
flex-direction: row;
|
|
1666
|
+
flex-wrap: nowrap;
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1650
1669
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper {
|
|
1651
1670
|
flex: 0.5 1;
|
|
1652
1671
|
min-width: 50%;
|
|
1653
1672
|
}
|
|
1673
|
+
@media (min-width: 768px) {
|
|
1674
|
+
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper {
|
|
1675
|
+
flex: 0 1;
|
|
1676
|
+
min-width: 25%;
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1654
1679
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper label .label {
|
|
1655
1680
|
height: 1em;
|
|
1656
1681
|
opacity: 1;
|
|
1657
1682
|
font-weight: 900;
|
|
1683
|
+
font-size: 16px;
|
|
1658
1684
|
}
|
|
1659
1685
|
.qr-journey-form-wrapper .disabled-product-fields-section .qr-form-fields .qr-form-filed-wrapper label input {
|
|
1660
1686
|
border: 0;
|
|
1687
|
+
font-size: 16px;
|
|
1688
|
+
font-weight: 100;
|
|
1661
1689
|
background-color: transparent;
|
|
1662
1690
|
padding: 0;
|
|
1663
1691
|
}
|
|
@@ -1732,9 +1760,20 @@
|
|
|
1732
1760
|
justify-content: space-between;
|
|
1733
1761
|
gap: 1em;
|
|
1734
1762
|
max-width: 1200px;
|
|
1763
|
+
margin: 0 auto;
|
|
1764
|
+
padding: 0 1em;
|
|
1765
|
+
}
|
|
1766
|
+
.qr-journey-form-wrapper.desktop-true h1 {
|
|
1767
|
+
margin: 0;
|
|
1768
|
+
}
|
|
1769
|
+
.qr-journey-form-wrapper.desktop-true h1:after {
|
|
1770
|
+
display: none;
|
|
1735
1771
|
}
|
|
1736
1772
|
.qr-journey-form-wrapper.desktop-true .form-progress {
|
|
1737
1773
|
max-width: 400px;
|
|
1774
|
+
display: flex;
|
|
1775
|
+
flex-direction: column;
|
|
1776
|
+
gap: 2rem;
|
|
1738
1777
|
}
|
|
1739
1778
|
.qr-journey-form-wrapper.desktop-true form {
|
|
1740
1779
|
flex: 1;
|
|
@@ -1743,6 +1782,10 @@
|
|
|
1743
1782
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop {
|
|
1744
1783
|
padding: 0;
|
|
1745
1784
|
}
|
|
1785
|
+
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop.first-page {
|
|
1786
|
+
padding: 2.5rem 0 0 0;
|
|
1787
|
+
border-top: 1px solid rgb(233, 233, 233);
|
|
1788
|
+
}
|
|
1746
1789
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li {
|
|
1747
1790
|
list-style: none;
|
|
1748
1791
|
display: flex;
|
|
@@ -1762,7 +1805,7 @@
|
|
|
1762
1805
|
}
|
|
1763
1806
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li .bullet-point:after {
|
|
1764
1807
|
content: "";
|
|
1765
|
-
width:
|
|
1808
|
+
width: 1.25px;
|
|
1766
1809
|
height: 25px;
|
|
1767
1810
|
background-color: rgb(130, 134, 136);
|
|
1768
1811
|
position: absolute;
|
|
@@ -1780,18 +1823,21 @@
|
|
|
1780
1823
|
text-align: left;
|
|
1781
1824
|
flex: 2;
|
|
1782
1825
|
color: rgb(130, 134, 136);
|
|
1826
|
+
font-size: 1.25rem;
|
|
1827
|
+
font-weight: 400;
|
|
1783
1828
|
}
|
|
1784
1829
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li span {
|
|
1785
1830
|
position: absolute;
|
|
1786
1831
|
left: 0;
|
|
1787
1832
|
right: 0;
|
|
1788
|
-
top:
|
|
1833
|
+
top: 2px;
|
|
1789
1834
|
bottom: 0;
|
|
1790
1835
|
height: 1em;
|
|
1791
1836
|
width: 1em;
|
|
1792
1837
|
text-align: center;
|
|
1793
1838
|
line-height: 1em;
|
|
1794
1839
|
margin: auto;
|
|
1840
|
+
font-weight: 400;
|
|
1795
1841
|
}
|
|
1796
1842
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li.checked .bullet-point {
|
|
1797
1843
|
background-color: rgb(196, 38, 46);
|
|
@@ -1799,6 +1845,7 @@
|
|
|
1799
1845
|
}
|
|
1800
1846
|
.qr-journey-form-wrapper.desktop-true .progress-indicator-desktop li.checked h3 {
|
|
1801
1847
|
color: black;
|
|
1848
|
+
font-weight: 700;
|
|
1802
1849
|
}
|
|
1803
1850
|
.qr-journey-form-wrapper.desktop-true .qr-form-thank-you-page {
|
|
1804
1851
|
max-width: 400px;
|
package/dist/index.esm.js
CHANGED
|
@@ -414,6 +414,8 @@ var ProductCard = function (_a) {
|
|
|
414
414
|
title = _a.title,
|
|
415
415
|
imageUrl = _a.imageUrl,
|
|
416
416
|
imageAlt = _a.imageAlt,
|
|
417
|
+
_b = _a.showImage,
|
|
418
|
+
showImage = _b === void 0 ? true : _b,
|
|
417
419
|
productPrice = _a.productPrice,
|
|
418
420
|
showProductPrice = _a.showProductPrice,
|
|
419
421
|
cardLink = _a.cardLink,
|
|
@@ -433,7 +435,7 @@ var ProductCard = function (_a) {
|
|
|
433
435
|
target: "_blank"
|
|
434
436
|
}, /*#__PURE__*/React.createElement("div", {
|
|
435
437
|
className: getStyle$1("cmp-card--type-card-product__wrapper")
|
|
436
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
438
|
+
}, showImage && /*#__PURE__*/React.createElement("div", {
|
|
437
439
|
className: getStyle$1("cmp-card--type-card-product__image")
|
|
438
440
|
}, /*#__PURE__*/React.createElement("figure", null, /*#__PURE__*/React.createElement("img", {
|
|
439
441
|
src: productImage,
|
|
@@ -480,10 +482,11 @@ var ProductDetailsCard = function (_a) {
|
|
|
480
482
|
title: spare.name || 'Spare Part',
|
|
481
483
|
imageUrl: spare['img-product'] || spare.image || '',
|
|
482
484
|
imageAlt: spare.name || 'Spare Part',
|
|
483
|
-
productPrice: spare.priceValue || spare.price || '',
|
|
484
|
-
showProductPrice:
|
|
485
|
+
productPrice: spare.priceValue || spare.price || '$450.00',
|
|
486
|
+
showProductPrice: true,
|
|
485
487
|
cardLink: spare.url || spare.link || '#',
|
|
486
|
-
cta: "Go to webshop"
|
|
488
|
+
cta: "Go to webshop",
|
|
489
|
+
showImage: false
|
|
487
490
|
}));
|
|
488
491
|
}), hit.spares.length > MAX_SPARES_TO_RENDER && /*#__PURE__*/React.createElement("li", {
|
|
489
492
|
className: getStyle$1("folding-spares-list__more")
|
|
@@ -521,7 +524,8 @@ var ProductDetailsCard = function (_a) {
|
|
|
521
524
|
}, hit.spares && hit.spares.length > 0 && /*#__PURE__*/React.createElement(AccordionSection, {
|
|
522
525
|
title: "Spares & Parts",
|
|
523
526
|
className: getStyle$1("folding-spares-holder"),
|
|
524
|
-
lazyLoad: true
|
|
527
|
+
lazyLoad: true,
|
|
528
|
+
defaultOpen: true
|
|
525
529
|
}, renderSpares())));
|
|
526
530
|
};
|
|
527
531
|
|
|
@@ -1299,14 +1303,14 @@ var QrForm = function (props) {
|
|
|
1299
1303
|
className: "qr-form-navigation"
|
|
1300
1304
|
}, !isFirstPage ? /*#__PURE__*/React.createElement(Button, {
|
|
1301
1305
|
label: i18n === null || i18n === void 0 ? void 0 : i18n.previous,
|
|
1302
|
-
className: "qr-form-nav",
|
|
1303
1306
|
onClick: formNavigate,
|
|
1304
|
-
"data-page_target": pageIndex - 1
|
|
1307
|
+
"data-page_target": pageIndex - 1,
|
|
1308
|
+
buttonStyle: "secondary"
|
|
1305
1309
|
}) : /*#__PURE__*/React.createElement("div", null), !isLastPage ? /*#__PURE__*/React.createElement(Button, {
|
|
1306
1310
|
label: i18n === null || i18n === void 0 ? void 0 : i18n.next,
|
|
1307
|
-
className: "qr-form-nav",
|
|
1308
1311
|
onClick: formNavigate,
|
|
1309
|
-
"data-page_target": pageIndex + 1
|
|
1312
|
+
"data-page_target": pageIndex + 1,
|
|
1313
|
+
buttonStyle: "primary"
|
|
1310
1314
|
}) : /*#__PURE__*/React.createElement("input", {
|
|
1311
1315
|
type: "submit",
|
|
1312
1316
|
value: i18n === null || i18n === void 0 ? void 0 : i18n.submit
|
|
@@ -1335,7 +1339,7 @@ var QrForm = function (props) {
|
|
|
1335
1339
|
}, !props.showThankYou ? /*#__PURE__*/React.createElement(React.Fragment, null, !isMobile && /*#__PURE__*/React.createElement("div", {
|
|
1336
1340
|
className: "form-progress"
|
|
1337
1341
|
}, props.formHeader && currentPage === 0 && /*#__PURE__*/React.createElement("h1", null, props.formHeader), /*#__PURE__*/React.createElement("ul", {
|
|
1338
|
-
className: "progress-indicator-desktop"
|
|
1342
|
+
className: "progress-indicator-desktop current-page-".concat(currentPage, " ").concat(currentPage === 0 ? "first-page" : "")
|
|
1339
1343
|
}, pages.map(function (_, index) {
|
|
1340
1344
|
return /*#__PURE__*/React.createElement("li", {
|
|
1341
1345
|
className: currentPage >= index ? "checked" : "",
|
|
@@ -1391,5 +1395,5 @@ var QrForm = function (props) {
|
|
|
1391
1395
|
})));
|
|
1392
1396
|
};
|
|
1393
1397
|
|
|
1394
|
-
export { AccordionSection, AlgoliaDynamicSearchEdwards as AlgoliaDynamicSearch, AlgoliaDynamicSearchRaw,
|
|
1398
|
+
export { AccordionSection, AlgoliaDynamicSearchEdwards as AlgoliaDynamicSearch, AlgoliaDynamicSearchRaw, QrForm };
|
|
1395
1399
|
//# sourceMappingURL=index.esm.js.map
|