@bigbinary/neeto-site-blocks 0.20.2 → 0.20.3

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.cjs.js CHANGED
@@ -360,53 +360,6 @@ _curry2(function curryN(length, fn) {
360
360
  return _arity(length, _curryN(length, [], fn));
361
361
  });
362
362
 
363
- /**
364
- * Optimized internal three-arity curry function.
365
- *
366
- * @private
367
- * @category Function
368
- * @param {Function} fn The function to curry.
369
- * @return {Function} The curried function.
370
- */
371
-
372
- function _curry3(fn) {
373
- return function f3(a, b, c) {
374
- switch (arguments.length) {
375
- case 0:
376
- return f3;
377
-
378
- case 1:
379
- return _isPlaceholder(a) ? f3 : _curry2(function (_b, _c) {
380
- return fn(a, _b, _c);
381
- });
382
-
383
- case 2:
384
- return _isPlaceholder(a) && _isPlaceholder(b) ? f3 : _isPlaceholder(a) ? _curry2(function (_a, _c) {
385
- return fn(_a, b, _c);
386
- }) : _isPlaceholder(b) ? _curry2(function (_b, _c) {
387
- return fn(a, _b, _c);
388
- }) : _curry1(function (_c) {
389
- return fn(a, b, _c);
390
- });
391
-
392
- default:
393
- return _isPlaceholder(a) && _isPlaceholder(b) && _isPlaceholder(c) ? f3 : _isPlaceholder(a) && _isPlaceholder(b) ? _curry2(function (_a, _b) {
394
- return fn(_a, _b, c);
395
- }) : _isPlaceholder(a) && _isPlaceholder(c) ? _curry2(function (_a, _c) {
396
- return fn(_a, b, _c);
397
- }) : _isPlaceholder(b) && _isPlaceholder(c) ? _curry2(function (_b, _c) {
398
- return fn(a, _b, _c);
399
- }) : _isPlaceholder(a) ? _curry1(function (_a) {
400
- return fn(_a, b, c);
401
- }) : _isPlaceholder(b) ? _curry1(function (_b) {
402
- return fn(a, _b, c);
403
- }) : _isPlaceholder(c) ? _curry1(function (_c) {
404
- return fn(a, b, _c);
405
- }) : fn(a, b, c);
406
- }
407
- };
408
- }
409
-
410
363
  /**
411
364
  * Tests whether or not an object is an array.
412
365
  *
@@ -1560,124 +1513,6 @@ _curry1(function mergeAll(list) {
1560
1513
  return _objectAssign$1.apply(null, [{}].concat(list));
1561
1514
  });
1562
1515
 
1563
- /**
1564
- * Creates a new object with the own properties of the two provided objects. If
1565
- * a key exists in both objects, the provided function is applied to the key
1566
- * and the values associated with the key in each object, with the result being
1567
- * used as the value associated with the key in the returned object.
1568
- *
1569
- * @func
1570
- * @memberOf R
1571
- * @since v0.19.0
1572
- * @category Object
1573
- * @sig ((String, a, a) -> a) -> {a} -> {a} -> {a}
1574
- * @param {Function} fn
1575
- * @param {Object} l
1576
- * @param {Object} r
1577
- * @return {Object}
1578
- * @see R.mergeDeepWithKey, R.merge, R.mergeWith
1579
- * @example
1580
- *
1581
- * let concatValues = (k, l, r) => k == 'values' ? R.concat(l, r) : r
1582
- * R.mergeWithKey(concatValues,
1583
- * { a: true, thing: 'foo', values: [10, 20] },
1584
- * { b: true, thing: 'bar', values: [15, 35] });
1585
- * //=> { a: true, b: true, thing: 'bar', values: [10, 20, 15, 35] }
1586
- * @symb R.mergeWithKey(f, { x: 1, y: 2 }, { y: 5, z: 3 }) = { x: 1, y: f('y', 2, 5), z: 3 }
1587
- */
1588
-
1589
- var mergeWithKey =
1590
- /*#__PURE__*/
1591
- _curry3(function mergeWithKey(fn, l, r) {
1592
- var result = {};
1593
- var k;
1594
-
1595
- for (k in l) {
1596
- if (_has(k, l)) {
1597
- result[k] = _has(k, r) ? fn(k, l[k], r[k]) : l[k];
1598
- }
1599
- }
1600
-
1601
- for (k in r) {
1602
- if (_has(k, r) && !_has(k, result)) {
1603
- result[k] = r[k];
1604
- }
1605
- }
1606
-
1607
- return result;
1608
- });
1609
-
1610
- /**
1611
- * Creates a new object with the own properties of the two provided objects.
1612
- * If a key exists in both objects:
1613
- * - and both associated values are also objects then the values will be
1614
- * recursively merged.
1615
- * - otherwise the provided function is applied to the key and associated values
1616
- * using the resulting value as the new value associated with the key.
1617
- * If a key only exists in one object, the value will be associated with the key
1618
- * of the resulting object.
1619
- *
1620
- * @func
1621
- * @memberOf R
1622
- * @since v0.24.0
1623
- * @category Object
1624
- * @sig ((String, a, a) -> a) -> {a} -> {a} -> {a}
1625
- * @param {Function} fn
1626
- * @param {Object} lObj
1627
- * @param {Object} rObj
1628
- * @return {Object}
1629
- * @see R.mergeWithKey, R.mergeDeepWith
1630
- * @example
1631
- *
1632
- * let concatValues = (k, l, r) => k == 'values' ? R.concat(l, r) : r
1633
- * R.mergeDeepWithKey(concatValues,
1634
- * { a: true, c: { thing: 'foo', values: [10, 20] }},
1635
- * { b: true, c: { thing: 'bar', values: [15, 35] }});
1636
- * //=> { a: true, b: true, c: { thing: 'bar', values: [10, 20, 15, 35] }}
1637
- */
1638
-
1639
- var mergeDeepWithKey =
1640
- /*#__PURE__*/
1641
- _curry3(function mergeDeepWithKey(fn, lObj, rObj) {
1642
- return mergeWithKey(function (k, lVal, rVal) {
1643
- if (_isObject(lVal) && _isObject(rVal)) {
1644
- return mergeDeepWithKey(fn, lVal, rVal);
1645
- } else {
1646
- return fn(k, lVal, rVal);
1647
- }
1648
- }, lObj, rObj);
1649
- });
1650
-
1651
- /**
1652
- * Creates a new object with the own properties of the first object merged with
1653
- * the own properties of the second object. If a key exists in both objects:
1654
- * - and both values are objects, the two values will be recursively merged
1655
- * - otherwise the value from the first object will be used.
1656
- *
1657
- * @func
1658
- * @memberOf R
1659
- * @since v0.24.0
1660
- * @category Object
1661
- * @sig {a} -> {a} -> {a}
1662
- * @param {Object} lObj
1663
- * @param {Object} rObj
1664
- * @return {Object}
1665
- * @see R.merge, R.mergeDeepRight, R.mergeDeepWith, R.mergeDeepWithKey
1666
- * @example
1667
- *
1668
- * R.mergeDeepLeft({ name: 'fred', age: 10, contact: { email: 'moo@example.com' }},
1669
- * { age: 40, contact: { email: 'baa@example.com' }});
1670
- * //=> { name: 'fred', age: 10, contact: { email: 'moo@example.com' }}
1671
- */
1672
-
1673
- var mergeDeepLeft =
1674
- /*#__PURE__*/
1675
- _curry2(function mergeDeepLeft(lObj, rObj) {
1676
- return mergeDeepWithKey(function (k, lVal, rVal) {
1677
- return lVal;
1678
- }, lObj, rObj);
1679
- });
1680
-
1681
1516
  /**
1682
1517
  * Create a new object with the own properties of the first object merged with
1683
1518
  * the own properties of the second object. If a key exists in both objects,
@@ -2025,8 +1860,8 @@ function cov_26592p5fu3() {
2025
1860
  return actualCoverage;
2026
1861
  }
2027
1862
  cov_26592p5fu3();
2028
- function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
2029
- function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$2(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$2(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
1863
+ function ownKeys$5(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
1864
+ function _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$5(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$5(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
2030
1865
  var StyledWrapper = (cov_26592p5fu3().s[0]++, styled__default["default"].div(function (_ref) {
2031
1866
  var _design$border, _design$borderTop, _design$borderTop2, _design$borderTop3, _design$borderBottom, _design$borderBottom2, _design$borderBottom3, _design$borderRight, _design$borderLeft, _design$border2;
2032
1867
  var _ref$design = _ref.design,
@@ -2056,7 +1891,7 @@ var StyledWrapper = (cov_26592p5fu3().s[0]++, styled__default["default"].div(fun
2056
1891
  var backgroundStyles = (cov_26592p5fu3().s[4]++, {
2057
1892
  position: "relative",
2058
1893
  zIndex: 0,
2059
- "&::before": _objectSpread$2({
1894
+ "&::before": _objectSpread$5({
2060
1895
  content: "''",
2061
1896
  position: "absolute",
2062
1897
  top: 0,
@@ -6271,7 +6106,7 @@ function Interweave(props) {
6271
6106
  });
6272
6107
  }
6273
6108
 
6274
- var _excluded = ["style", "component", "className", "isTitle", "children"];
6109
+ var _excluded$1 = ["style", "component", "className", "isTitle", "children"];
6275
6110
  function cov_2j9er2s36e() {
6276
6111
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/Typography.jsx";
6277
6112
  var hash = "c5e98d310e7417f9f631ec8d9735f008eeeac83d";
@@ -6533,7 +6368,7 @@ var Typography = function Typography(_ref) {
6533
6368
  _ref$isTitle = _ref.isTitle,
6534
6369
  isTitle = _ref$isTitle === void 0 ? (cov_2j9er2s36e().b[3][0]++, false) : _ref$isTitle,
6535
6370
  children = _ref.children,
6536
- otherProps = _objectWithoutProperties(_ref, _excluded);
6371
+ otherProps = _objectWithoutProperties(_ref, _excluded$1);
6537
6372
  cov_2j9er2s36e().f[0]++;
6538
6373
  cov_2j9er2s36e().s[1]++;
6539
6374
  if (isTitle) {
@@ -6590,132 +6425,63 @@ function cov_285a2wxz84() {
6590
6425
  }
6591
6426
  cov_285a2wxz84();
6592
6427
 
6593
- function cov_1rn97x90t6() {
6594
- var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.js";
6595
- var hash = "2df889d87af01aa25e1c38dc7ac8aa66d1607887";
6428
+ var _excluded = ["name"];
6429
+ function cov_mdbryxoh6() {
6430
+ var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.jsx";
6431
+ var hash = "43b8927a91a7a316d43e18b705302b300ffb460e";
6596
6432
  var global = new Function("return this")();
6597
6433
  var gcv = "__coverage__";
6598
6434
  var coverageData = {
6599
- path: "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.js",
6435
+ path: "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.jsx",
6600
6436
  statementMap: {
6601
6437
  "0": {
6602
6438
  start: {
6603
- line: 4,
6439
+ line: 5,
6604
6440
  column: 21
6605
6441
  },
6606
6442
  end: {
6607
- line: 4,
6443
+ line: 5,
6608
6444
  column: 48
6609
6445
  }
6610
6446
  },
6611
6447
  "1": {
6612
6448
  start: {
6613
- line: 4,
6449
+ line: 5,
6614
6450
  column: 34
6615
6451
  },
6616
6452
  end: {
6617
- line: 4,
6453
+ line: 5,
6618
6454
  column: 48
6619
6455
  }
6620
6456
  },
6621
6457
  "2": {
6622
6458
  start: {
6623
- line: 6,
6624
- column: 27
6459
+ line: 7,
6460
+ column: 19
6625
6461
  },
6626
6462
  end: {
6627
- line: 15,
6463
+ line: 11,
6628
6464
  column: 1
6629
6465
  }
6630
6466
  },
6631
6467
  "3": {
6632
- start: {
6633
- line: 7,
6634
- column: 27
6635
- },
6636
- end: {
6637
- line: 9,
6638
- column: 3
6639
- }
6640
- },
6641
- "4": {
6642
6468
  start: {
6643
6469
  line: 8,
6644
- column: 4
6470
+ column: 15
6645
6471
  },
6646
6472
  end: {
6647
6473
  line: 8,
6648
- column: 52
6649
- }
6650
- },
6651
- "5": {
6652
- start: {
6653
- line: 11,
6654
- column: 2
6655
- },
6656
- end: {
6657
- line: 14,
6658
- column: 4
6659
- }
6660
- },
6661
- "6": {
6662
- start: {
6663
- line: 17,
6664
- column: 30
6665
- },
6666
- end: {
6667
- line: 35,
6668
- column: 1
6669
- }
6670
- },
6671
- "7": {
6672
- start: {
6673
- line: 18,
6674
- column: 2
6675
- },
6676
- end: {
6677
- line: 24,
6678
- column: 3
6679
- }
6680
- },
6681
- "8": {
6682
- start: {
6683
- line: 19,
6684
- column: 4
6685
- },
6686
- end: {
6687
- line: 23,
6688
- column: 6
6689
- }
6690
- },
6691
- "9": {
6692
- start: {
6693
- line: 26,
6694
- column: 2
6695
- },
6696
- end: {
6697
- line: 32,
6698
- column: 3
6699
- }
6700
- },
6701
- "10": {
6702
- start: {
6703
- line: 27,
6704
- column: 4
6705
- },
6706
- end: {
6707
- line: 31,
6708
- column: 6
6474
+ column: 31
6709
6475
  }
6710
6476
  },
6711
- "11": {
6477
+ "4": {
6712
6478
  start: {
6713
- line: 34,
6479
+ line: 10,
6714
6480
  column: 2
6715
6481
  },
6716
6482
  end: {
6717
- line: 34,
6718
- column: 24
6483
+ line: 10,
6484
+ column: 34
6719
6485
  }
6720
6486
  }
6721
6487
  },
@@ -6724,193 +6490,66 @@ function cov_1rn97x90t6() {
6724
6490
  name: "(anonymous_0)",
6725
6491
  decl: {
6726
6492
  start: {
6727
- line: 4,
6493
+ line: 5,
6728
6494
  column: 21
6729
6495
  },
6730
6496
  end: {
6731
- line: 4,
6497
+ line: 5,
6732
6498
  column: 22
6733
6499
  }
6734
6500
  },
6735
6501
  loc: {
6736
6502
  start: {
6737
- line: 4,
6503
+ line: 5,
6738
6504
  column: 34
6739
6505
  },
6740
6506
  end: {
6741
- line: 4,
6507
+ line: 5,
6742
6508
  column: 48
6743
6509
  }
6744
6510
  },
6745
- line: 4
6511
+ line: 5
6746
6512
  },
6747
6513
  "1": {
6748
6514
  name: "(anonymous_1)",
6749
- decl: {
6750
- start: {
6751
- line: 6,
6752
- column: 27
6753
- },
6754
- end: {
6755
- line: 6,
6756
- column: 28
6757
- }
6758
- },
6759
- loc: {
6760
- start: {
6761
- line: 6,
6762
- column: 73
6763
- },
6764
- end: {
6765
- line: 15,
6766
- column: 1
6767
- }
6768
- },
6769
- line: 6
6770
- },
6771
- "2": {
6772
- name: "(anonymous_2)",
6773
6515
  decl: {
6774
6516
  start: {
6775
6517
  line: 7,
6776
- column: 41
6518
+ column: 19
6777
6519
  },
6778
6520
  end: {
6779
6521
  line: 7,
6780
- column: 42
6781
- }
6782
- },
6783
- loc: {
6784
- start: {
6785
- line: 8,
6786
- column: 4
6787
- },
6788
- end: {
6789
- line: 8,
6790
- column: 52
6791
- }
6792
- },
6793
- line: 8
6794
- },
6795
- "3": {
6796
- name: "(anonymous_3)",
6797
- decl: {
6798
- start: {
6799
- line: 17,
6800
- column: 30
6801
- },
6802
- end: {
6803
- line: 17,
6804
- column: 31
6522
+ column: 20
6805
6523
  }
6806
6524
  },
6807
6525
  loc: {
6808
6526
  start: {
6809
- line: 17,
6527
+ line: 7,
6810
6528
  column: 48
6811
6529
  },
6812
6530
  end: {
6813
- line: 35,
6531
+ line: 11,
6814
6532
  column: 1
6815
6533
  }
6816
6534
  },
6817
- line: 17
6818
- }
6819
- },
6820
- branchMap: {
6821
- "0": {
6822
- loc: {
6823
- start: {
6824
- line: 18,
6825
- column: 2
6826
- },
6827
- end: {
6828
- line: 24,
6829
- column: 3
6830
- }
6831
- },
6832
- type: "if",
6833
- locations: [{
6834
- start: {
6835
- line: 18,
6836
- column: 2
6837
- },
6838
- end: {
6839
- line: 24,
6840
- column: 3
6841
- }
6842
- }, {
6843
- start: {
6844
- line: undefined,
6845
- column: undefined
6846
- },
6847
- end: {
6848
- line: undefined,
6849
- column: undefined
6850
- }
6851
- }],
6852
- line: 18
6853
- },
6854
- "1": {
6855
- loc: {
6856
- start: {
6857
- line: 26,
6858
- column: 2
6859
- },
6860
- end: {
6861
- line: 32,
6862
- column: 3
6863
- }
6864
- },
6865
- type: "if",
6866
- locations: [{
6867
- start: {
6868
- line: 26,
6869
- column: 2
6870
- },
6871
- end: {
6872
- line: 32,
6873
- column: 3
6874
- }
6875
- }, {
6876
- start: {
6877
- line: undefined,
6878
- column: undefined
6879
- },
6880
- end: {
6881
- line: undefined,
6882
- column: undefined
6883
- }
6884
- }],
6885
- line: 26
6535
+ line: 7
6886
6536
  }
6887
6537
  },
6538
+ branchMap: {},
6888
6539
  s: {
6889
6540
  "0": 0,
6890
6541
  "1": 0,
6891
6542
  "2": 0,
6892
6543
  "3": 0,
6893
- "4": 0,
6894
- "5": 0,
6895
- "6": 0,
6896
- "7": 0,
6897
- "8": 0,
6898
- "9": 0,
6899
- "10": 0,
6900
- "11": 0
6544
+ "4": 0
6901
6545
  },
6902
6546
  f: {
6903
6547
  "0": 0,
6904
- "1": 0,
6905
- "2": 0,
6906
- "3": 0
6907
- },
6908
- b: {
6909
- "0": [0, 0],
6910
- "1": [0, 0]
6548
+ "1": 0
6911
6549
  },
6550
+ b: {},
6912
6551
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
6913
- hash: "2df889d87af01aa25e1c38dc7ac8aa66d1607887"
6552
+ hash: "43b8927a91a7a316d43e18b705302b300ffb460e"
6914
6553
  };
6915
6554
  var coverage = global[gcv] || (global[gcv] = {});
6916
6555
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -6919,58 +6558,30 @@ function cov_1rn97x90t6() {
6919
6558
  var actualCoverage = coverage[path];
6920
6559
  {
6921
6560
  // @ts-ignore
6922
- cov_1rn97x90t6 = function () {
6561
+ cov_mdbryxoh6 = function () {
6923
6562
  return actualCoverage;
6924
6563
  };
6925
6564
  }
6926
6565
  return actualCoverage;
6927
6566
  }
6928
- cov_1rn97x90t6();
6929
- cov_1rn97x90t6().s[0]++;
6567
+ cov_mdbryxoh6();
6568
+ cov_mdbryxoh6().s[0]++;
6930
6569
  var getUniqueKey = function getUniqueKey() {
6931
- cov_1rn97x90t6().f[0]++;
6932
- cov_1rn97x90t6().s[1]++;
6570
+ cov_mdbryxoh6().f[0]++;
6571
+ cov_mdbryxoh6().s[1]++;
6933
6572
  for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
6934
6573
  args[_key] = arguments[_key];
6935
6574
  }
6936
6575
  return args.join("-");
6937
6576
  };
6938
- cov_1rn97x90t6().s[2]++;
6939
- var buildConfiguration = function buildConfiguration(reference, configurations, blockVariable) {
6940
- cov_1rn97x90t6().f[1]++;
6941
- var newConfiguration = (cov_1rn97x90t6().s[3]++, reference.map(function (item) {
6942
- cov_1rn97x90t6().f[2]++;
6943
- cov_1rn97x90t6().s[4]++;
6944
- return mergeLeft({
6945
- icon: NeetoIcons[item.icon]
6946
- }, item);
6947
- }));
6948
- cov_1rn97x90t6().s[5]++;
6949
- return mergeDeepLeft({
6950
- properties: _defineProperty$1({}, blockVariable, newConfiguration)
6951
- }, configurations);
6952
- };
6953
- cov_1rn97x90t6().s[6]++;
6954
- var getSiteConfigurations = function getSiteConfigurations(configurations) {
6955
- cov_1rn97x90t6().f[3]++;
6956
- cov_1rn97x90t6().s[7]++;
6957
- if (configurations.properties.icons) {
6958
- cov_1rn97x90t6().b[0][0]++;
6959
- cov_1rn97x90t6().s[8]++;
6960
- return buildConfiguration(configurations.properties.icons, configurations, "icons");
6961
- } else {
6962
- cov_1rn97x90t6().b[0][1]++;
6963
- }
6964
- cov_1rn97x90t6().s[9]++;
6965
- if (configurations.properties.features) {
6966
- cov_1rn97x90t6().b[1][0]++;
6967
- cov_1rn97x90t6().s[10]++;
6968
- return buildConfiguration(configurations.properties.features, configurations, "features");
6969
- } else {
6970
- cov_1rn97x90t6().b[1][1]++;
6971
- }
6972
- cov_1rn97x90t6().s[11]++;
6973
- return configurations;
6577
+ cov_mdbryxoh6().s[2]++;
6578
+ var renderIcon = function renderIcon(_ref) {
6579
+ var name = _ref.name,
6580
+ otherProps = _objectWithoutProperties(_ref, _excluded);
6581
+ cov_mdbryxoh6().f[1]++;
6582
+ var Icon = (cov_mdbryxoh6().s[3]++, NeetoIcons[name]);
6583
+ cov_mdbryxoh6().s[4]++;
6584
+ return /*#__PURE__*/React__default["default"].createElement(Icon, otherProps);
6974
6585
  };
6975
6586
 
6976
6587
  function cov_snfvcikxw() {
@@ -33451,7 +33062,7 @@ var ctaApi = (cov_1zrre9eq95().s[2]++, {
33451
33062
 
33452
33063
  function cov_120j8h8c5k() {
33453
33064
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/constants.js";
33454
- var hash = "1c34086e1eb5c45ba01c23f21014f8347a0eb0ba";
33065
+ var hash = "ef277d997ee327006d970ed07a8e073b5476bd1b";
33455
33066
  var global = new Function("return this")();
33456
33067
  var gcv = "__coverage__";
33457
33068
  var coverageData = {
@@ -33459,31 +33070,21 @@ function cov_120j8h8c5k() {
33459
33070
  statementMap: {
33460
33071
  "0": {
33461
33072
  start: {
33462
- line: 7,
33073
+ line: 1,
33463
33074
  column: 25
33464
33075
  },
33465
33076
  end: {
33466
- line: 23,
33077
+ line: 17,
33467
33078
  column: 1
33468
33079
  }
33469
33080
  },
33470
33081
  "1": {
33471
33082
  start: {
33472
- line: 25,
33473
- column: 28
33474
- },
33475
- end: {
33476
- line: 29,
33477
- column: 1
33478
- }
33479
- },
33480
- "2": {
33481
- start: {
33482
- line: 31,
33083
+ line: 19,
33483
33084
  column: 27
33484
33085
  },
33485
33086
  end: {
33486
- line: 31,
33087
+ line: 19,
33487
33088
  column: 73
33488
33089
  }
33489
33090
  }
@@ -33492,13 +33093,12 @@ function cov_120j8h8c5k() {
33492
33093
  branchMap: {},
33493
33094
  s: {
33494
33095
  "0": 0,
33495
- "1": 0,
33496
- "2": 0
33096
+ "1": 0
33497
33097
  },
33498
33098
  f: {},
33499
33099
  b: {},
33500
33100
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
33501
- hash: "1c34086e1eb5c45ba01c23f21014f8347a0eb0ba"
33101
+ hash: "ef277d997ee327006d970ed07a8e073b5476bd1b"
33502
33102
  };
33503
33103
  var coverage = global[gcv] || (global[gcv] = {});
33504
33104
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -33531,12 +33131,7 @@ var POSITIONS = (cov_120j8h8c5k().s[0]++, {
33531
33131
  label: "center"
33532
33132
  }
33533
33133
  });
33534
- var SOCIAL_ICONS = (cov_120j8h8c5k().s[1]++, {
33535
- Facebook: s$1X,
33536
- Twitter: i$e,
33537
- LinkedIn: i$_
33538
- });
33539
- var EMAIL_REGEX = (cov_120j8h8c5k().s[2]++, /^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/);
33134
+ var EMAIL_REGEX = (cov_120j8h8c5k().s[1]++, /^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/);
33540
33135
 
33541
33136
  function cov_2qijyrluvh() {
33542
33137
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/utils/cta.js";
@@ -33666,13 +33261,13 @@ function cov_2qijyrluvh() {
33666
33261
  return actualCoverage;
33667
33262
  }
33668
33263
  cov_2qijyrluvh();
33669
- function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
33670
- function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$1(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
33264
+ function ownKeys$4(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
33265
+ function _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$4(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$4(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
33671
33266
  var StyledButton = (cov_2qijyrluvh().s[0]++, styled__default["default"].button(function (_ref) {
33672
33267
  var design = _ref.design;
33673
33268
  cov_2qijyrluvh().f[0]++;
33674
33269
  cov_2qijyrluvh().s[1]++;
33675
- return _objectSpread$1(_objectSpread$1({}, design), {}, {
33270
+ return _objectSpread$4(_objectSpread$4({}, design), {}, {
33676
33271
  paddingLeft: design.paddingHorizontal,
33677
33272
  paddingRight: design.paddingHorizontal,
33678
33273
  paddingTop: design.paddingVertical,
@@ -47163,7 +46758,7 @@ var FeatureWithJumboText = function FeatureWithJumboText(_ref) {
47163
46758
 
47164
46759
  function cov_3j9xfx0k4() {
47165
46760
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FeatureWithLink.jsx";
47166
- var hash = "0f7cfbc5fdb9566955558f2e8d21f9dc138d21d4";
46761
+ var hash = "cb2b794ba9b7196af7dd6b446e93dcc668bd1c54";
47167
46762
  var global = new Function("return this")();
47168
46763
  var gcv = "__coverage__";
47169
46764
  var coverageData = {
@@ -47175,7 +46770,7 @@ function cov_3j9xfx0k4() {
47175
46770
  column: 24
47176
46771
  },
47177
46772
  end: {
47178
- line: 80,
46773
+ line: 77,
47179
46774
  column: 1
47180
46775
  }
47181
46776
  },
@@ -47235,7 +46830,7 @@ function cov_3j9xfx0k4() {
47235
46830
  column: 2
47236
46831
  },
47237
46832
  end: {
47238
- line: 79,
46833
+ line: 76,
47239
46834
  column: 4
47240
46835
  }
47241
46836
  },
@@ -47245,7 +46840,7 @@ function cov_3j9xfx0k4() {
47245
46840
  column: 14
47246
46841
  },
47247
46842
  end: {
47248
- line: 66,
46843
+ line: 63,
47249
46844
  column: 30
47250
46845
  }
47251
46846
  }
@@ -47269,7 +46864,7 @@ function cov_3j9xfx0k4() {
47269
46864
  column: 68
47270
46865
  },
47271
46866
  end: {
47272
- line: 80,
46867
+ line: 77,
47273
46868
  column: 1
47274
46869
  }
47275
46870
  },
@@ -47293,7 +46888,7 @@ function cov_3j9xfx0k4() {
47293
46888
  column: 14
47294
46889
  },
47295
46890
  end: {
47296
- line: 66,
46891
+ line: 63,
47297
46892
  column: 30
47298
46893
  }
47299
46894
  },
@@ -47437,7 +47032,7 @@ function cov_3j9xfx0k4() {
47437
47032
  "3": [0, 0]
47438
47033
  },
47439
47034
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
47440
- hash: "0f7cfbc5fdb9566955558f2e8d21f9dc138d21d4"
47035
+ hash: "cb2b794ba9b7196af7dd6b446e93dcc668bd1c54"
47441
47036
  };
47442
47037
  var coverage = global[gcv] || (global[gcv] = {});
47443
47038
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -47453,6 +47048,8 @@ function cov_3j9xfx0k4() {
47453
47048
  return actualCoverage;
47454
47049
  }
47455
47050
  cov_3j9xfx0k4();
47051
+ function ownKeys$3(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
47052
+ function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$3(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$3(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
47456
47053
  cov_3j9xfx0k4().s[0]++;
47457
47054
  var FeatureWithLink = function FeatureWithLink(_ref) {
47458
47055
  var configurations = _ref.configurations,
@@ -47506,17 +47103,16 @@ var FeatureWithLink = function FeatureWithLink(_ref) {
47506
47103
  className: "mb-8 space-y-5"
47507
47104
  }, features.map(function (_ref4, index) {
47508
47105
  var featureTitle = _ref4.title,
47509
- Icon = _ref4.icon;
47106
+ name = _ref4.name;
47510
47107
  cov_3j9xfx0k4().f[1]++;
47511
47108
  cov_3j9xfx0k4().s[7]++;
47512
47109
  return /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
47513
47110
  className: "flex items-center gap-x-4",
47514
47111
  design: design.feature,
47515
47112
  key: getUniqueKey(featureTitle, index)
47516
- }, /*#__PURE__*/React__default["default"].createElement(Icon, {
47517
- color: design.featureIcon.color,
47518
- size: design.featureIcon.size
47519
- }), /*#__PURE__*/React__default["default"].createElement(Typography, {
47113
+ }, renderIcon(_objectSpread$3({
47114
+ name: name
47115
+ }, design.featureIcon)), /*#__PURE__*/React__default["default"].createElement(Typography, {
47520
47116
  isTitle: true,
47521
47117
  component: "p",
47522
47118
  style: design.featureTitle
@@ -49076,7 +48672,7 @@ var FeatureWithRightImage = function FeatureWithRightImage(_ref) {
49076
48672
 
49077
48673
  function cov_1kbh5b1kc1() {
49078
48674
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FooterWithLinkGroups.jsx";
49079
- var hash = "ce6339704651e62412a583c484e0d37735783869";
48675
+ var hash = "5b368d46582b264b386ff666676b3bcf2dc5b6d2";
49080
48676
  var global = new Function("return this")();
49081
48677
  var gcv = "__coverage__";
49082
48678
  var coverageData = {
@@ -49084,122 +48680,102 @@ function cov_1kbh5b1kc1() {
49084
48680
  statementMap: {
49085
48681
  "0": {
49086
48682
  start: {
49087
- line: 12,
48683
+ line: 10,
49088
48684
  column: 29
49089
48685
  },
49090
48686
  end: {
49091
- line: 125,
48687
+ line: 99,
49092
48688
  column: 1
49093
48689
  }
49094
48690
  },
49095
48691
  "1": {
49096
48692
  start: {
49097
- line: 13,
48693
+ line: 11,
49098
48694
  column: 33
49099
48695
  },
49100
48696
  end: {
49101
- line: 13,
48697
+ line: 11,
49102
48698
  column: 47
49103
48699
  }
49104
48700
  },
49105
48701
  "2": {
49106
48702
  start: {
49107
- line: 24,
48703
+ line: 16,
49108
48704
  column: 6
49109
48705
  },
49110
48706
  end: {
49111
- line: 24,
48707
+ line: 16,
49112
48708
  column: 16
49113
48709
  }
49114
48710
  },
49115
48711
  "3": {
49116
48712
  start: {
49117
- line: 26,
49118
- column: 26
48713
+ line: 18,
48714
+ column: 22
49119
48715
  },
49120
48716
  end: {
49121
- line: 26,
49122
- column: 67
48717
+ line: 18,
48718
+ column: 52
49123
48719
  }
49124
48720
  },
49125
48721
  "4": {
49126
48722
  start: {
49127
- line: 27,
49128
- column: 25
48723
+ line: 20,
48724
+ column: 2
49129
48725
  },
49130
48726
  end: {
49131
- line: 27,
49132
- column: 67
48727
+ line: 98,
48728
+ column: 4
49133
48729
  }
49134
48730
  },
49135
48731
  "5": {
49136
48732
  start: {
49137
- line: 29,
49138
- column: 22
48733
+ line: 37,
48734
+ column: 12
49139
48735
  },
49140
48736
  end: {
49141
- line: 34,
49142
- column: 4
48737
+ line: 54,
48738
+ column: 18
49143
48739
  }
49144
48740
  },
49145
48741
  "6": {
49146
48742
  start: {
49147
- line: 36,
49148
- column: 29
48743
+ line: 43,
48744
+ column: 18
49149
48745
  },
49150
48746
  end: {
49151
- line: 39,
49152
- column: 4
48747
+ line: 51,
48748
+ column: 23
49153
48749
  }
49154
48750
  },
49155
48751
  "7": {
49156
48752
  start: {
49157
- line: 41,
49158
- column: 2
48753
+ line: 63,
48754
+ column: 14
49159
48755
  },
49160
48756
  end: {
49161
- line: 124,
49162
- column: 4
48757
+ line: 73,
48758
+ column: 16
49163
48759
  }
49164
48760
  },
49165
48761
  "8": {
49166
48762
  start: {
49167
- line: 69,
49168
- column: 27
48763
+ line: 66,
48764
+ column: 18
49169
48765
  },
49170
48766
  end: {
49171
- line: 69,
49172
- column: 50
48767
+ line: 70,
48768
+ column: 20
49173
48769
  }
49174
48770
  },
49175
48771
  "9": {
49176
48772
  start: {
49177
- line: 71,
48773
+ line: 78,
49178
48774
  column: 14
49179
48775
  },
49180
48776
  end: {
49181
- line: 83,
49182
- column: 16
49183
- }
49184
- },
49185
- "10": {
49186
- start: {
49187
- line: 89,
49188
- column: 12
49189
- },
49190
- end: {
49191
- line: 117,
49192
- column: 18
49193
- }
49194
- },
49195
- "11": {
49196
- start: {
49197
- line: 106,
49198
- column: 18
49199
- },
49200
- end: {
49201
- line: 114,
49202
- column: 23
48777
+ line: 86,
48778
+ column: 19
49203
48779
  }
49204
48780
  }
49205
48781
  },
@@ -49208,123 +48784,171 @@ function cov_1kbh5b1kc1() {
49208
48784
  name: "(anonymous_0)",
49209
48785
  decl: {
49210
48786
  start: {
49211
- line: 12,
48787
+ line: 10,
49212
48788
  column: 29
49213
48789
  },
49214
48790
  end: {
49215
- line: 12,
48791
+ line: 10,
49216
48792
  column: 30
49217
48793
  }
49218
48794
  },
49219
48795
  loc: {
49220
48796
  start: {
49221
- line: 12,
48797
+ line: 10,
49222
48798
  column: 73
49223
48799
  },
49224
48800
  end: {
49225
- line: 125,
48801
+ line: 99,
49226
48802
  column: 1
49227
48803
  }
49228
48804
  },
49229
- line: 12
48805
+ line: 10
49230
48806
  },
49231
48807
  "1": {
49232
48808
  name: "(anonymous_1)",
49233
48809
  decl: {
49234
48810
  start: {
49235
- line: 68,
49236
- column: 29
48811
+ line: 36,
48812
+ column: 23
49237
48813
  },
49238
48814
  end: {
49239
- line: 68,
49240
- column: 30
48815
+ line: 36,
48816
+ column: 24
49241
48817
  }
49242
48818
  },
49243
48819
  loc: {
49244
48820
  start: {
49245
- line: 68,
49246
- column: 46
48821
+ line: 37,
48822
+ column: 12
49247
48823
  },
49248
48824
  end: {
49249
- line: 84,
49250
- column: 13
48825
+ line: 54,
48826
+ column: 18
49251
48827
  }
49252
48828
  },
49253
- line: 68
48829
+ line: 37
49254
48830
  },
49255
48831
  "2": {
49256
48832
  name: "(anonymous_2)",
49257
48833
  decl: {
49258
48834
  start: {
49259
- line: 88,
49260
- column: 23
48835
+ line: 42,
48836
+ column: 27
49261
48837
  },
49262
48838
  end: {
49263
- line: 88,
49264
- column: 24
48839
+ line: 42,
48840
+ column: 28
49265
48841
  }
49266
48842
  },
49267
48843
  loc: {
49268
48844
  start: {
49269
- line: 89,
49270
- column: 12
48845
+ line: 43,
48846
+ column: 18
49271
48847
  },
49272
48848
  end: {
49273
- line: 117,
49274
- column: 18
48849
+ line: 51,
48850
+ column: 23
49275
48851
  }
49276
48852
  },
49277
- line: 89
48853
+ line: 43
49278
48854
  },
49279
48855
  "3": {
49280
48856
  name: "(anonymous_3)",
49281
48857
  decl: {
49282
48858
  start: {
49283
- line: 105,
49284
- column: 27
48859
+ line: 62,
48860
+ column: 37
49285
48861
  },
49286
48862
  end: {
49287
- line: 105,
49288
- column: 28
48863
+ line: 62,
48864
+ column: 38
49289
48865
  }
49290
48866
  },
49291
48867
  loc: {
49292
48868
  start: {
49293
- line: 106,
49294
- column: 18
48869
+ line: 63,
48870
+ column: 14
49295
48871
  },
49296
48872
  end: {
49297
- line: 114,
48873
+ line: 73,
48874
+ column: 16
48875
+ }
48876
+ },
48877
+ line: 63
48878
+ },
48879
+ "4": {
48880
+ name: "(anonymous_4)",
48881
+ decl: {
48882
+ start: {
48883
+ line: 65,
48884
+ column: 22
48885
+ },
48886
+ end: {
48887
+ line: 65,
49298
48888
  column: 23
49299
48889
  }
49300
48890
  },
49301
- line: 106
48891
+ loc: {
48892
+ start: {
48893
+ line: 66,
48894
+ column: 18
48895
+ },
48896
+ end: {
48897
+ line: 70,
48898
+ column: 20
48899
+ }
48900
+ },
48901
+ line: 66
48902
+ },
48903
+ "5": {
48904
+ name: "(anonymous_5)",
48905
+ decl: {
48906
+ start: {
48907
+ line: 77,
48908
+ column: 31
48909
+ },
48910
+ end: {
48911
+ line: 77,
48912
+ column: 32
48913
+ }
48914
+ },
48915
+ loc: {
48916
+ start: {
48917
+ line: 78,
48918
+ column: 14
48919
+ },
48920
+ end: {
48921
+ line: 86,
48922
+ column: 19
48923
+ }
48924
+ },
48925
+ line: 78
49302
48926
  }
49303
48927
  },
49304
48928
  branchMap: {
49305
48929
  "0": {
49306
48930
  loc: {
49307
48931
  start: {
49308
- line: 12,
48932
+ line: 10,
49309
48933
  column: 48
49310
48934
  },
49311
48935
  end: {
49312
- line: 12,
48936
+ line: 10,
49313
48937
  column: 62
49314
48938
  }
49315
48939
  },
49316
48940
  type: "default-arg",
49317
48941
  locations: [{
49318
48942
  start: {
49319
- line: 12,
48943
+ line: 10,
49320
48944
  column: 60
49321
48945
  },
49322
48946
  end: {
49323
- line: 12,
48947
+ line: 10,
49324
48948
  column: 62
49325
48949
  }
49326
48950
  }],
49327
- line: 12
48951
+ line: 10
49328
48952
  }
49329
48953
  },
49330
48954
  s: {
@@ -49337,21 +48961,21 @@ function cov_1kbh5b1kc1() {
49337
48961
  "6": 0,
49338
48962
  "7": 0,
49339
48963
  "8": 0,
49340
- "9": 0,
49341
- "10": 0,
49342
- "11": 0
48964
+ "9": 0
49343
48965
  },
49344
48966
  f: {
49345
48967
  "0": 0,
49346
48968
  "1": 0,
49347
48969
  "2": 0,
49348
- "3": 0
48970
+ "3": 0,
48971
+ "4": 0,
48972
+ "5": 0
49349
48973
  },
49350
48974
  b: {
49351
48975
  "0": [0]
49352
48976
  },
49353
48977
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
49354
- hash: "ce6339704651e62412a583c484e0d37735783869"
48978
+ hash: "5b368d46582b264b386ff666676b3bcf2dc5b6d2"
49355
48979
  };
49356
48980
  var coverage = global[gcv] || (global[gcv] = {});
49357
48981
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -49367,6 +48991,8 @@ function cov_1kbh5b1kc1() {
49367
48991
  return actualCoverage;
49368
48992
  }
49369
48993
  cov_1kbh5b1kc1();
48994
+ function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
48995
+ function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$2(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$2(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
49370
48996
  cov_1kbh5b1kc1().s[0]++;
49371
48997
  var FooterWithLinkGroups = function FooterWithLinkGroups(_ref) {
49372
48998
  var configurations = _ref.configurations,
@@ -49381,23 +49007,12 @@ var FooterWithLinkGroups = function FooterWithLinkGroups(_ref) {
49381
49007
  _ref3$content = _ref3.content,
49382
49008
  logo = _ref3$content.logo,
49383
49009
  description = _ref3$content.description,
49384
- contentPosition = _ref3$content.position,
49010
+ contact = _ref3$content.contact,
49385
49011
  copyrightText = _ref3$content.copyrightText,
49386
- socialLinks = _ref3$content.socialLinks,
49387
49012
  columns = _ref3.columns,
49388
49013
  src = _ref3.backgroundImage.src;
49389
- var isDefaultLayout = (cov_1kbh5b1kc1().s[3]++, contentPosition === POSITIONS.RIGHT.label);
49390
- var isCenterLayout = (cov_1kbh5b1kc1().s[4]++, contentPosition === POSITIONS.CENTER.label);
49391
- var baseClasses = (cov_1kbh5b1kc1().s[5]++, classnames("flex gap-16", {
49392
- "flex-col lg:flex-row": isDefaultLayout,
49393
- "flex-col-reverse lg:flex-row-reverse": contentPosition === POSITIONS.LEFT.label,
49394
- "flex-col": isCenterLayout
49395
- }));
49396
- var columnsBaseClasses = (cov_1kbh5b1kc1().s[6]++, classnames({
49397
- "grid grid-cols-2 sm:grid-cols-4 gap-8 lg:gap-6 flex-grow": true,
49398
- "w-3/5 mx-auto": isCenterLayout
49399
- }));
49400
- cov_1kbh5b1kc1().s[7]++;
49014
+ var baseClasses = (cov_1kbh5b1kc1().s[3]++, "grid grid-cols-12 sm:gap-x-4");
49015
+ cov_1kbh5b1kc1().s[4]++;
49401
49016
  return /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
49402
49017
  as: "footer",
49403
49018
  backgroundImage: mergeLeft({
@@ -49407,79 +49022,92 @@ var FooterWithLinkGroups = function FooterWithLinkGroups(_ref) {
49407
49022
  design: design.body,
49408
49023
  id: id
49409
49024
  }, /*#__PURE__*/React__default["default"].createElement("div", {
49410
- className: baseClasses
49025
+ className: classnames("neeto-site-block-wrapper", baseClasses)
49411
49026
  }, /*#__PURE__*/React__default["default"].createElement("div", {
49412
- className: classnames("flex flex-col", {
49413
- "w-full items-start lg:w-1/3": !isCenterLayout
49414
- })
49027
+ className: "col-span-12 sm:col-span-5"
49415
49028
  }, /*#__PURE__*/React__default["default"].createElement(StyledImage, {
49416
49029
  design: design.logo,
49417
49030
  src: logo.src
49418
49031
  }), /*#__PURE__*/React__default["default"].createElement(Typography, {
49419
- className: classnames({
49420
- "text-center": isCenterLayout
49421
- }),
49422
49032
  component: "p",
49423
49033
  style: design.description
49424
- }, description), /*#__PURE__*/React__default["default"].createElement("div", {
49425
- className: classnames("flex space-x-6", {
49426
- "justify-center": isCenterLayout
49427
- })
49428
- }, socialLinks.map(function (item, index) {
49429
- cov_1kbh5b1kc1().f[1]++;
49430
- var Icon = (cov_1kbh5b1kc1().s[8]++, SOCIAL_ICONS[item.name]);
49431
- cov_1kbh5b1kc1().s[9]++;
49432
- return /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
49433
- as: "a",
49434
- design: design.columnLinks,
49435
- href: item.href,
49436
- key: getUniqueKey(item.name, index)
49437
- }, /*#__PURE__*/React__default["default"].createElement(Icon, {
49438
- className: "hover:text-gray-800",
49439
- size: design.socialIcon.width
49440
- }));
49441
- }))), /*#__PURE__*/React__default["default"].createElement("div", {
49442
- className: columnsBaseClasses
49034
+ }, description)), /*#__PURE__*/React__default["default"].createElement("div", {
49035
+ className: "col-span-12 mb-4 grid grid-cols-4 sm:col-span-4 sm:col-start-7 sm:mb-0"
49443
49036
  }, columns.map(function (_ref4) {
49444
49037
  var title = _ref4.title,
49445
49038
  links = _ref4.links;
49446
- cov_1kbh5b1kc1().f[2]++;
49447
- cov_1kbh5b1kc1().s[10]++;
49039
+ cov_1kbh5b1kc1().f[1]++;
49040
+ cov_1kbh5b1kc1().s[5]++;
49448
49041
  return /*#__PURE__*/React__default["default"].createElement("div", {
49449
- key: title,
49450
- className: classnames("flex flex-col", {
49451
- "items-start": !isCenterLayout,
49452
- "text-center": isCenterLayout
49453
- })
49042
+ className: "col-span-2",
49043
+ key: title
49454
49044
  }, /*#__PURE__*/React__default["default"].createElement(Typography, {
49455
49045
  isTitle: true,
49456
- className: "uppercase",
49457
49046
  component: "h3",
49458
49047
  style: design.columnTitle
49459
49048
  }, title), /*#__PURE__*/React__default["default"].createElement("ul", {
49460
- className: "space-y-4",
49049
+ className: "space-y-1",
49461
49050
  role: "list"
49462
49051
  }, links.map(function (_ref5, index) {
49463
49052
  var action = _ref5.action,
49464
49053
  name = _ref5.name,
49465
49054
  href = _ref5.href;
49466
- cov_1kbh5b1kc1().f[3]++;
49467
- cov_1kbh5b1kc1().s[11]++;
49055
+ cov_1kbh5b1kc1().f[2]++;
49056
+ cov_1kbh5b1kc1().s[6]++;
49468
49057
  return /*#__PURE__*/React__default["default"].createElement("li", {
49469
49058
  key: getUniqueKey(name, index)
49470
49059
  }, /*#__PURE__*/React__default["default"].createElement(LinkElement, {
49471
49060
  action: action,
49472
- className: "hover:text-gray-800",
49061
+ className: "hover:text-gray-700",
49473
49062
  label: name,
49474
49063
  style: design.columnLinks,
49475
49064
  to: href
49476
49065
  }));
49477
49066
  })));
49478
- }))), /*#__PURE__*/React__default["default"].createElement("div", {
49479
- className: "mt-12 border-t border-gray-200 pt-8"
49480
- }), /*#__PURE__*/React__default["default"].createElement(Typography, {
49067
+ })), /*#__PURE__*/React__default["default"].createElement("div", {
49068
+ className: "col-span-12 space-y-2 sm:col-span-2"
49069
+ }, /*#__PURE__*/React__default["default"].createElement(Typography, {
49070
+ isTitle: true,
49071
+ component: "h3",
49072
+ style: design.columnTitle
49073
+ }, contact.title), /*#__PURE__*/React__default["default"].createElement("div", {
49074
+ className: "flex gap-x-1"
49075
+ }, contact.socialLinks.map(function (_icon, index) {
49076
+ cov_1kbh5b1kc1().f[3]++;
49077
+ cov_1kbh5b1kc1().s[7]++;
49078
+ return /*#__PURE__*/React__default["default"].createElement(LinkElement, _extends$4({
49079
+ key: getUniqueKey(_icon.name, index),
49080
+ icon: function icon() {
49081
+ cov_1kbh5b1kc1().f[4]++;
49082
+ cov_1kbh5b1kc1().s[8]++;
49083
+ return renderIcon(_objectSpread$2({
49084
+ name: _icon.name,
49085
+ className: "text-red-60 hover:text-gray-600"
49086
+ }, design.socialIcon));
49087
+ }
49088
+ }, _icon));
49089
+ })), /*#__PURE__*/React__default["default"].createElement("ul", {
49090
+ className: "space-y-1",
49091
+ role: "list"
49092
+ }, contact.other.map(function (_ref6, index) {
49093
+ var action = _ref6.action,
49094
+ value = _ref6.value,
49095
+ to = _ref6.to;
49096
+ cov_1kbh5b1kc1().f[5]++;
49097
+ cov_1kbh5b1kc1().s[9]++;
49098
+ return /*#__PURE__*/React__default["default"].createElement("li", {
49099
+ key: getUniqueKey(value, index)
49100
+ }, /*#__PURE__*/React__default["default"].createElement(LinkElement, {
49101
+ action: action,
49102
+ className: "hover:text-gray-700",
49103
+ label: value,
49104
+ style: design.columnLinks,
49105
+ to: to
49106
+ }));
49107
+ }))), /*#__PURE__*/React__default["default"].createElement(Typography, {
49108
+ className: "col-span-12 mt-8 sm:mt-0",
49481
49109
  style: design.copyrightText
49482
- }, copyrightText));
49110
+ }, copyrightText)));
49483
49111
  };
49484
49112
 
49485
49113
  function cov_2i9807t0bv() {
@@ -51026,7 +50654,7 @@ var GridWithImage = function GridWithImage(_ref) {
51026
50654
 
51027
50655
  function cov_23txpdjvdc() {
51028
50656
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/HeaderWithLeftLinks.jsx";
51029
- var hash = "d99eb257143ad5befa2103a68faeaa8f02342189";
50657
+ var hash = "130262e38345d8837990b27c08a01720377a8c74";
51030
50658
  var global = new Function("return this")();
51031
50659
  var gcv = "__coverage__";
51032
50660
  var coverageData = {
@@ -51038,7 +50666,7 @@ function cov_23txpdjvdc() {
51038
50666
  column: 28
51039
50667
  },
51040
50668
  end: {
51041
- line: 106,
50669
+ line: 114,
51042
50670
  column: 1
51043
50671
  }
51044
50672
  },
@@ -51098,7 +50726,7 @@ function cov_23txpdjvdc() {
51098
50726
  column: 2
51099
50727
  },
51100
50728
  end: {
51101
- line: 105,
50729
+ line: 113,
51102
50730
  column: 4
51103
50731
  }
51104
50732
  },
@@ -51118,7 +50746,7 @@ function cov_23txpdjvdc() {
51118
50746
  column: 12
51119
50747
  },
51120
50748
  end: {
51121
- line: 58,
50749
+ line: 62,
51122
50750
  column: 14
51123
50751
  }
51124
50752
  },
@@ -51128,78 +50756,78 @@ function cov_23txpdjvdc() {
51128
50756
  column: 16
51129
50757
  },
51130
50758
  end: {
51131
- line: 56,
51132
- column: 74
50759
+ line: 60,
50760
+ column: 18
51133
50761
  }
51134
50762
  },
51135
50763
  "10": {
51136
50764
  start: {
51137
- line: 63,
50765
+ line: 67,
51138
50766
  column: 25
51139
50767
  },
51140
50768
  end: {
51141
- line: 63,
50769
+ line: 67,
51142
50770
  column: 54
51143
50771
  }
51144
50772
  },
51145
50773
  "11": {
51146
50774
  start: {
51147
- line: 63,
50775
+ line: 67,
51148
50776
  column: 48
51149
50777
  },
51150
50778
  end: {
51151
- line: 63,
50779
+ line: 67,
51152
50780
  column: 53
51153
50781
  }
51154
50782
  },
51155
50783
  "12": {
51156
50784
  start: {
51157
- line: 69,
50785
+ line: 73,
51158
50786
  column: 25
51159
50787
  },
51160
50788
  end: {
51161
- line: 69,
50789
+ line: 73,
51162
50790
  column: 54
51163
50791
  }
51164
50792
  },
51165
50793
  "13": {
51166
50794
  start: {
51167
- line: 69,
50795
+ line: 73,
51168
50796
  column: 48
51169
50797
  },
51170
50798
  end: {
51171
- line: 69,
50799
+ line: 73,
51172
50800
  column: 53
51173
50801
  }
51174
50802
  },
51175
50803
  "14": {
51176
50804
  start: {
51177
- line: 76,
50805
+ line: 80,
51178
50806
  column: 14
51179
50807
  },
51180
50808
  end: {
51181
- line: 83,
50809
+ line: 87,
51182
50810
  column: 16
51183
50811
  }
51184
50812
  },
51185
50813
  "15": {
51186
50814
  start: {
51187
- line: 90,
50815
+ line: 94,
51188
50816
  column: 14
51189
50817
  },
51190
50818
  end: {
51191
- line: 99,
50819
+ line: 107,
51192
50820
  column: 16
51193
50821
  }
51194
50822
  },
51195
50823
  "16": {
51196
50824
  start: {
51197
- line: 97,
50825
+ line: 101,
51198
50826
  column: 18
51199
50827
  },
51200
50828
  end: {
51201
- line: 97,
51202
- column: 76
50829
+ line: 105,
50830
+ column: 20
51203
50831
  }
51204
50832
  }
51205
50833
  },
@@ -51222,7 +50850,7 @@ function cov_23txpdjvdc() {
51222
50850
  column: 72
51223
50851
  },
51224
50852
  end: {
51225
- line: 106,
50853
+ line: 114,
51226
50854
  column: 1
51227
50855
  }
51228
50856
  },
@@ -51270,7 +50898,7 @@ function cov_23txpdjvdc() {
51270
50898
  column: 12
51271
50899
  },
51272
50900
  end: {
51273
- line: 58,
50901
+ line: 62,
51274
50902
  column: 14
51275
50903
  }
51276
50904
  },
@@ -51294,8 +50922,8 @@ function cov_23txpdjvdc() {
51294
50922
  column: 16
51295
50923
  },
51296
50924
  end: {
51297
- line: 56,
51298
- column: 74
50925
+ line: 60,
50926
+ column: 18
51299
50927
  }
51300
50928
  },
51301
50929
  line: 56
@@ -51304,169 +50932,169 @@ function cov_23txpdjvdc() {
51304
50932
  name: "(anonymous_4)",
51305
50933
  decl: {
51306
50934
  start: {
51307
- line: 63,
50935
+ line: 67,
51308
50936
  column: 19
51309
50937
  },
51310
50938
  end: {
51311
- line: 63,
50939
+ line: 67,
51312
50940
  column: 20
51313
50941
  }
51314
50942
  },
51315
50943
  loc: {
51316
50944
  start: {
51317
- line: 63,
50945
+ line: 67,
51318
50946
  column: 25
51319
50947
  },
51320
50948
  end: {
51321
- line: 63,
50949
+ line: 67,
51322
50950
  column: 54
51323
50951
  }
51324
50952
  },
51325
- line: 63
50953
+ line: 67
51326
50954
  },
51327
50955
  "5": {
51328
50956
  name: "(anonymous_5)",
51329
50957
  decl: {
51330
50958
  start: {
51331
- line: 63,
50959
+ line: 67,
51332
50960
  column: 40
51333
50961
  },
51334
50962
  end: {
51335
- line: 63,
50963
+ line: 67,
51336
50964
  column: 41
51337
50965
  }
51338
50966
  },
51339
50967
  loc: {
51340
50968
  start: {
51341
- line: 63,
50969
+ line: 67,
51342
50970
  column: 48
51343
50971
  },
51344
50972
  end: {
51345
- line: 63,
50973
+ line: 67,
51346
50974
  column: 53
51347
50975
  }
51348
50976
  },
51349
- line: 63
50977
+ line: 67
51350
50978
  },
51351
50979
  "6": {
51352
50980
  name: "(anonymous_6)",
51353
50981
  decl: {
51354
50982
  start: {
51355
- line: 69,
50983
+ line: 73,
51356
50984
  column: 19
51357
50985
  },
51358
50986
  end: {
51359
- line: 69,
50987
+ line: 73,
51360
50988
  column: 20
51361
50989
  }
51362
50990
  },
51363
50991
  loc: {
51364
50992
  start: {
51365
- line: 69,
50993
+ line: 73,
51366
50994
  column: 25
51367
50995
  },
51368
50996
  end: {
51369
- line: 69,
50997
+ line: 73,
51370
50998
  column: 54
51371
50999
  }
51372
51000
  },
51373
- line: 69
51001
+ line: 73
51374
51002
  },
51375
51003
  "7": {
51376
51004
  name: "(anonymous_7)",
51377
51005
  decl: {
51378
51006
  start: {
51379
- line: 69,
51007
+ line: 73,
51380
51008
  column: 40
51381
51009
  },
51382
51010
  end: {
51383
- line: 69,
51011
+ line: 73,
51384
51012
  column: 41
51385
51013
  }
51386
51014
  },
51387
51015
  loc: {
51388
51016
  start: {
51389
- line: 69,
51017
+ line: 73,
51390
51018
  column: 48
51391
51019
  },
51392
51020
  end: {
51393
- line: 69,
51021
+ line: 73,
51394
51022
  column: 53
51395
51023
  }
51396
51024
  },
51397
- line: 69
51025
+ line: 73
51398
51026
  },
51399
51027
  "8": {
51400
51028
  name: "(anonymous_8)",
51401
51029
  decl: {
51402
51030
  start: {
51403
- line: 75,
51031
+ line: 79,
51404
51032
  column: 34
51405
51033
  },
51406
51034
  end: {
51407
- line: 75,
51035
+ line: 79,
51408
51036
  column: 35
51409
51037
  }
51410
51038
  },
51411
51039
  loc: {
51412
51040
  start: {
51413
- line: 76,
51041
+ line: 80,
51414
51042
  column: 14
51415
51043
  },
51416
51044
  end: {
51417
- line: 83,
51045
+ line: 87,
51418
51046
  column: 16
51419
51047
  }
51420
51048
  },
51421
- line: 76
51049
+ line: 80
51422
51050
  },
51423
51051
  "9": {
51424
51052
  name: "(anonymous_9)",
51425
51053
  decl: {
51426
51054
  start: {
51427
- line: 89,
51055
+ line: 93,
51428
51056
  column: 34
51429
51057
  },
51430
51058
  end: {
51431
- line: 89,
51059
+ line: 93,
51432
51060
  column: 35
51433
51061
  }
51434
51062
  },
51435
51063
  loc: {
51436
51064
  start: {
51437
- line: 90,
51065
+ line: 94,
51438
51066
  column: 14
51439
51067
  },
51440
51068
  end: {
51441
- line: 99,
51069
+ line: 107,
51442
51070
  column: 16
51443
51071
  }
51444
51072
  },
51445
- line: 90
51073
+ line: 94
51446
51074
  },
51447
51075
  "10": {
51448
51076
  name: "(anonymous_10)",
51449
51077
  decl: {
51450
51078
  start: {
51451
- line: 96,
51079
+ line: 100,
51452
51080
  column: 22
51453
51081
  },
51454
51082
  end: {
51455
- line: 96,
51083
+ line: 100,
51456
51084
  column: 23
51457
51085
  }
51458
51086
  },
51459
51087
  loc: {
51460
51088
  start: {
51461
- line: 97,
51089
+ line: 101,
51462
51090
  column: 18
51463
51091
  },
51464
51092
  end: {
51465
- line: 97,
51466
- column: 76
51093
+ line: 105,
51094
+ column: 20
51467
51095
  }
51468
51096
  },
51469
- line: 97
51097
+ line: 101
51470
51098
  }
51471
51099
  },
51472
51100
  branchMap: {
@@ -51497,68 +51125,68 @@ function cov_23txpdjvdc() {
51497
51125
  "1": {
51498
51126
  loc: {
51499
51127
  start: {
51500
- line: 73,
51128
+ line: 77,
51501
51129
  column: 9
51502
51130
  },
51503
51131
  end: {
51504
- line: 86,
51132
+ line: 90,
51505
51133
  column: 9
51506
51134
  }
51507
51135
  },
51508
51136
  type: "binary-expr",
51509
51137
  locations: [{
51510
51138
  start: {
51511
- line: 73,
51139
+ line: 77,
51512
51140
  column: 9
51513
51141
  },
51514
51142
  end: {
51515
- line: 73,
51143
+ line: 77,
51516
51144
  column: 20
51517
51145
  }
51518
51146
  }, {
51519
51147
  start: {
51520
- line: 74,
51148
+ line: 78,
51521
51149
  column: 10
51522
51150
  },
51523
51151
  end: {
51524
- line: 85,
51152
+ line: 89,
51525
51153
  column: 16
51526
51154
  }
51527
51155
  }],
51528
- line: 73
51156
+ line: 77
51529
51157
  },
51530
51158
  "2": {
51531
51159
  loc: {
51532
51160
  start: {
51533
- line: 87,
51161
+ line: 91,
51534
51162
  column: 9
51535
51163
  },
51536
51164
  end: {
51537
- line: 102,
51165
+ line: 110,
51538
51166
  column: 9
51539
51167
  }
51540
51168
  },
51541
51169
  type: "binary-expr",
51542
51170
  locations: [{
51543
51171
  start: {
51544
- line: 87,
51172
+ line: 91,
51545
51173
  column: 9
51546
51174
  },
51547
51175
  end: {
51548
- line: 87,
51176
+ line: 91,
51549
51177
  column: 20
51550
51178
  }
51551
51179
  }, {
51552
51180
  start: {
51553
- line: 88,
51181
+ line: 92,
51554
51182
  column: 10
51555
51183
  },
51556
51184
  end: {
51557
- line: 101,
51185
+ line: 109,
51558
51186
  column: 16
51559
51187
  }
51560
51188
  }],
51561
- line: 87
51189
+ line: 91
51562
51190
  }
51563
51191
  },
51564
51192
  s: {
@@ -51599,7 +51227,7 @@ function cov_23txpdjvdc() {
51599
51227
  "2": [0, 0]
51600
51228
  },
51601
51229
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
51602
- hash: "d99eb257143ad5befa2103a68faeaa8f02342189"
51230
+ hash: "130262e38345d8837990b27c08a01720377a8c74"
51603
51231
  };
51604
51232
  var coverage = global[gcv] || (global[gcv] = {});
51605
51233
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -51615,6 +51243,8 @@ function cov_23txpdjvdc() {
51615
51243
  return actualCoverage;
51616
51244
  }
51617
51245
  cov_23txpdjvdc();
51246
+ function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
51247
+ function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$1(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
51618
51248
  cov_23txpdjvdc().s[0]++;
51619
51249
  var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51620
51250
  var configurations = _ref.configurations,
@@ -51668,7 +51298,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51668
51298
  }), /*#__PURE__*/React__default["default"].createElement("div", {
51669
51299
  className: "col-span-5 col-start-8 hidden justify-end sm:col-span-4 sm:col-start-9 sm:flex"
51670
51300
  }, properties.icons.map(function (_ref9, index) {
51671
- var Icon = _ref9.icon,
51301
+ var name = _ref9.name,
51672
51302
  url = _ref9.url,
51673
51303
  action = _ref9.action;
51674
51304
  cov_23txpdjvdc().f[2]++;
@@ -51681,7 +51311,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51681
51311
  icon: function icon() {
51682
51312
  cov_23txpdjvdc().f[3]++;
51683
51313
  cov_23txpdjvdc().s[9]++;
51684
- return /*#__PURE__*/React__default["default"].createElement(Icon, _extends$4({
51314
+ return renderIcon(_objectSpread$1({
51315
+ name: name,
51685
51316
  className: "hover:text-gray-700"
51686
51317
  }, design.icons));
51687
51318
  }
@@ -51731,7 +51362,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51731
51362
  }))), (cov_23txpdjvdc().b[2][0]++, isIconsOpen) && (cov_23txpdjvdc().b[2][1]++, /*#__PURE__*/React__default["default"].createElement("div", {
51732
51363
  className: "fadeIn col-span-2 col-start-11 mt-3 flex flex-col justify-end space-y-1 lg:hidden"
51733
51364
  }, properties.icons.map(function (_ref11, index) {
51734
- var Icon = _ref11.icon,
51365
+ var name = _ref11.name,
51735
51366
  url = _ref11.url,
51736
51367
  action = _ref11.action;
51737
51368
  cov_23txpdjvdc().f[9]++;
@@ -51745,7 +51376,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51745
51376
  icon: function icon() {
51746
51377
  cov_23txpdjvdc().f[10]++;
51747
51378
  cov_23txpdjvdc().s[16]++;
51748
- return /*#__PURE__*/React__default["default"].createElement(Icon, _extends$4({
51379
+ return renderIcon(_objectSpread$1({
51380
+ name: name,
51749
51381
  className: "hover:text-gray-700"
51750
51382
  }, design.icons));
51751
51383
  }
@@ -55701,5 +55333,4 @@ exports.HorizontalTestimonial = HorizontalTestimonial;
55701
55333
  exports.LogoClouds = LogoClouds;
55702
55334
  exports.PricingInCardView = PricingInCardView;
55703
55335
  exports.SlidingTestimonial = SlidingTestimonial;
55704
- exports.getSiteConfigurations = getSiteConfigurations;
55705
55336
  //# sourceMappingURL=index.cjs.js.map