@bigbinary/neeto-site-blocks 0.20.2 → 0.21.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/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$6(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$6(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$6(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$6(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$6({
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$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; }
33265
+ 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; }
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$5(_objectSpread$5({}, 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$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; }
47052
+ 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; }
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$4({
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$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; }
48995
+ 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; }
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,638 @@ 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$3({
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",
49109
+ style: design.copyrightText
49110
+ }, copyrightText)));
49111
+ };
49112
+
49113
+ function cov_65dwd4u8l() {
49114
+ var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FooterWithLinks.jsx";
49115
+ var hash = "352c1952e8c96f1f40827dba3437bc73d750aba1";
49116
+ var global = new Function("return this")();
49117
+ var gcv = "__coverage__";
49118
+ var coverageData = {
49119
+ path: "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FooterWithLinks.jsx",
49120
+ statementMap: {
49121
+ "0": {
49122
+ start: {
49123
+ line: 10,
49124
+ column: 24
49125
+ },
49126
+ end: {
49127
+ line: 143,
49128
+ column: 1
49129
+ }
49130
+ },
49131
+ "1": {
49132
+ start: {
49133
+ line: 11,
49134
+ column: 33
49135
+ },
49136
+ end: {
49137
+ line: 11,
49138
+ column: 47
49139
+ }
49140
+ },
49141
+ "2": {
49142
+ start: {
49143
+ line: 18,
49144
+ column: 6
49145
+ },
49146
+ end: {
49147
+ line: 18,
49148
+ column: 16
49149
+ }
49150
+ },
49151
+ "3": {
49152
+ start: {
49153
+ line: 21,
49154
+ column: 4
49155
+ },
49156
+ end: {
49157
+ line: 21,
49158
+ column: 62
49159
+ }
49160
+ },
49161
+ "4": {
49162
+ start: {
49163
+ line: 23,
49164
+ column: 2
49165
+ },
49166
+ end: {
49167
+ line: 84,
49168
+ column: 3
49169
+ }
49170
+ },
49171
+ "5": {
49172
+ start: {
49173
+ line: 24,
49174
+ column: 4
49175
+ },
49176
+ end: {
49177
+ line: 83,
49178
+ column: 6
49179
+ }
49180
+ },
49181
+ "6": {
49182
+ start: {
49183
+ line: 52,
49184
+ column: 14
49185
+ },
49186
+ end: {
49187
+ line: 57,
49188
+ column: 16
49189
+ }
49190
+ },
49191
+ "7": {
49192
+ start: {
49193
+ line: 62,
49194
+ column: 14
49195
+ },
49196
+ end: {
49197
+ line: 72,
49198
+ column: 16
49199
+ }
49200
+ },
49201
+ "8": {
49202
+ start: {
49203
+ line: 65,
49204
+ column: 18
49205
+ },
49206
+ end: {
49207
+ line: 69,
49208
+ column: 20
49209
+ }
49210
+ },
49211
+ "9": {
49212
+ start: {
49213
+ line: 86,
49214
+ column: 2
49215
+ },
49216
+ end: {
49217
+ line: 142,
49218
+ column: 4
49219
+ }
49220
+ },
49221
+ "10": {
49222
+ start: {
49223
+ line: 104,
49224
+ column: 12
49225
+ },
49226
+ end: {
49227
+ line: 109,
49228
+ column: 14
49229
+ }
49230
+ },
49231
+ "11": {
49232
+ start: {
49233
+ line: 121,
49234
+ column: 12
49235
+ },
49236
+ end: {
49237
+ line: 131,
49238
+ column: 14
49239
+ }
49240
+ },
49241
+ "12": {
49242
+ start: {
49243
+ line: 124,
49244
+ column: 16
49245
+ },
49246
+ end: {
49247
+ line: 128,
49248
+ column: 18
49249
+ }
49250
+ }
49251
+ },
49252
+ fnMap: {
49253
+ "0": {
49254
+ name: "(anonymous_0)",
49255
+ decl: {
49256
+ start: {
49257
+ line: 10,
49258
+ column: 24
49259
+ },
49260
+ end: {
49261
+ line: 10,
49262
+ column: 25
49263
+ }
49264
+ },
49265
+ loc: {
49266
+ start: {
49267
+ line: 10,
49268
+ column: 68
49269
+ },
49270
+ end: {
49271
+ line: 143,
49272
+ column: 1
49273
+ }
49274
+ },
49275
+ line: 10
49276
+ },
49277
+ "1": {
49278
+ name: "(anonymous_1)",
49279
+ decl: {
49280
+ start: {
49281
+ line: 51,
49282
+ column: 23
49283
+ },
49284
+ end: {
49285
+ line: 51,
49286
+ column: 24
49287
+ }
49288
+ },
49289
+ loc: {
49290
+ start: {
49291
+ line: 52,
49292
+ column: 14
49293
+ },
49294
+ end: {
49295
+ line: 57,
49296
+ column: 16
49297
+ }
49298
+ },
49299
+ line: 52
49300
+ },
49301
+ "2": {
49302
+ name: "(anonymous_2)",
49303
+ decl: {
49304
+ start: {
49305
+ line: 61,
49306
+ column: 29
49307
+ },
49308
+ end: {
49309
+ line: 61,
49310
+ column: 30
49311
+ }
49312
+ },
49313
+ loc: {
49314
+ start: {
49315
+ line: 62,
49316
+ column: 14
49317
+ },
49318
+ end: {
49319
+ line: 72,
49320
+ column: 16
49321
+ }
49322
+ },
49323
+ line: 62
49324
+ },
49325
+ "3": {
49326
+ name: "(anonymous_3)",
49327
+ decl: {
49328
+ start: {
49329
+ line: 64,
49330
+ column: 22
49331
+ },
49332
+ end: {
49333
+ line: 64,
49334
+ column: 23
49335
+ }
49336
+ },
49337
+ loc: {
49338
+ start: {
49339
+ line: 65,
49340
+ column: 18
49341
+ },
49342
+ end: {
49343
+ line: 69,
49344
+ column: 20
49345
+ }
49346
+ },
49347
+ line: 65
49348
+ },
49349
+ "4": {
49350
+ name: "(anonymous_4)",
49351
+ decl: {
49352
+ start: {
49353
+ line: 103,
49354
+ column: 21
49355
+ },
49356
+ end: {
49357
+ line: 103,
49358
+ column: 22
49359
+ }
49360
+ },
49361
+ loc: {
49362
+ start: {
49363
+ line: 104,
49364
+ column: 12
49365
+ },
49366
+ end: {
49367
+ line: 109,
49368
+ column: 14
49369
+ }
49370
+ },
49371
+ line: 104
49372
+ },
49373
+ "5": {
49374
+ name: "(anonymous_5)",
49375
+ decl: {
49376
+ start: {
49377
+ line: 120,
49378
+ column: 27
49379
+ },
49380
+ end: {
49381
+ line: 120,
49382
+ column: 28
49383
+ }
49384
+ },
49385
+ loc: {
49386
+ start: {
49387
+ line: 121,
49388
+ column: 12
49389
+ },
49390
+ end: {
49391
+ line: 131,
49392
+ column: 14
49393
+ }
49394
+ },
49395
+ line: 121
49396
+ },
49397
+ "6": {
49398
+ name: "(anonymous_6)",
49399
+ decl: {
49400
+ start: {
49401
+ line: 123,
49402
+ column: 20
49403
+ },
49404
+ end: {
49405
+ line: 123,
49406
+ column: 21
49407
+ }
49408
+ },
49409
+ loc: {
49410
+ start: {
49411
+ line: 124,
49412
+ column: 16
49413
+ },
49414
+ end: {
49415
+ line: 128,
49416
+ column: 18
49417
+ }
49418
+ },
49419
+ line: 124
49420
+ }
49421
+ },
49422
+ branchMap: {
49423
+ "0": {
49424
+ loc: {
49425
+ start: {
49426
+ line: 10,
49427
+ column: 43
49428
+ },
49429
+ end: {
49430
+ line: 10,
49431
+ column: 57
49432
+ }
49433
+ },
49434
+ type: "default-arg",
49435
+ locations: [{
49436
+ start: {
49437
+ line: 10,
49438
+ column: 55
49439
+ },
49440
+ end: {
49441
+ line: 10,
49442
+ column: 57
49443
+ }
49444
+ }],
49445
+ line: 10
49446
+ },
49447
+ "1": {
49448
+ loc: {
49449
+ start: {
49450
+ line: 23,
49451
+ column: 2
49452
+ },
49453
+ end: {
49454
+ line: 84,
49455
+ column: 3
49456
+ }
49457
+ },
49458
+ type: "if",
49459
+ locations: [{
49460
+ start: {
49461
+ line: 23,
49462
+ column: 2
49463
+ },
49464
+ end: {
49465
+ line: 84,
49466
+ column: 3
49467
+ }
49468
+ }, {
49469
+ start: {
49470
+ line: undefined,
49471
+ column: undefined
49472
+ },
49473
+ end: {
49474
+ line: undefined,
49475
+ column: undefined
49476
+ }
49477
+ }],
49478
+ line: 23
49479
+ }
49480
+ },
49481
+ s: {
49482
+ "0": 0,
49483
+ "1": 0,
49484
+ "2": 0,
49485
+ "3": 0,
49486
+ "4": 0,
49487
+ "5": 0,
49488
+ "6": 0,
49489
+ "7": 0,
49490
+ "8": 0,
49491
+ "9": 0,
49492
+ "10": 0,
49493
+ "11": 0,
49494
+ "12": 0
49495
+ },
49496
+ f: {
49497
+ "0": 0,
49498
+ "1": 0,
49499
+ "2": 0,
49500
+ "3": 0,
49501
+ "4": 0,
49502
+ "5": 0,
49503
+ "6": 0
49504
+ },
49505
+ b: {
49506
+ "0": [0],
49507
+ "1": [0, 0]
49508
+ },
49509
+ _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
49510
+ hash: "352c1952e8c96f1f40827dba3437bc73d750aba1"
49511
+ };
49512
+ var coverage = global[gcv] || (global[gcv] = {});
49513
+ if (!coverage[path] || coverage[path].hash !== hash) {
49514
+ coverage[path] = coverageData;
49515
+ }
49516
+ var actualCoverage = coverage[path];
49517
+ {
49518
+ // @ts-ignore
49519
+ cov_65dwd4u8l = function () {
49520
+ return actualCoverage;
49521
+ };
49522
+ }
49523
+ return actualCoverage;
49524
+ }
49525
+ cov_65dwd4u8l();
49526
+ 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; }
49527
+ 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; }
49528
+ cov_65dwd4u8l().s[0]++;
49529
+ var FooterWithLinks = function FooterWithLinks(_ref) {
49530
+ var configurations = _ref.configurations,
49531
+ _ref$className = _ref.className,
49532
+ className = _ref$className === void 0 ? (cov_65dwd4u8l().b[0][0]++, "") : _ref$className,
49533
+ id = _ref.id;
49534
+ cov_65dwd4u8l().f[0]++;
49535
+ var _ref2 = (cov_65dwd4u8l().s[1]++, configurations),
49536
+ properties = _ref2.properties,
49537
+ design = _ref2.design;
49538
+ var _ref3 = (cov_65dwd4u8l().s[2]++, properties),
49539
+ _ref3$content = _ref3.content,
49540
+ logo = _ref3$content.logo,
49541
+ copyrightText = _ref3$content.copyrightText,
49542
+ links = _ref3.links,
49543
+ socialIcons = _ref3.socialIcons,
49544
+ isPositionCentre = _ref3.isPositionCentre,
49545
+ src = _ref3.backgroundImage.src;
49546
+ var baseClasses = (cov_65dwd4u8l().s[3]++, "grid grid-cols-12 gap-x-2 sm:gap-x-4 grid-flow-row-dense");
49547
+ cov_65dwd4u8l().s[4]++;
49548
+ if (isPositionCentre) {
49549
+ cov_65dwd4u8l().b[1][0]++;
49550
+ cov_65dwd4u8l().s[5]++;
49551
+ return /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
49552
+ as: "footer",
49553
+ backgroundImage: mergeLeft({
49554
+ src: src
49555
+ }, design.backgroundImage),
49556
+ className: className,
49557
+ design: design.body,
49558
+ id: id
49559
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
49560
+ className: classnames("neeto-site-block-wrapper gap-y-8 ", baseClasses)
49561
+ }, /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
49562
+ as: "hr",
49563
+ className: "col-span-12 flex sm:hidden",
49564
+ design: {
49565
+ borderColor: "#C2C8CC"
49566
+ }
49567
+ }), /*#__PURE__*/React__default["default"].createElement("div", {
49568
+ className: "col-span-12 grid grid-cols-4 sm:col-span-8 sm:col-start-3 sm:flex sm:justify-between sm:gap-y-0"
49569
+ }, /*#__PURE__*/React__default["default"].createElement(StyledImage, {
49570
+ className: "col-span-4 mb-4 sm:mb-0",
49571
+ design: design.logo,
49572
+ src: logo.src
49573
+ }), links.map(function (link, index) {
49574
+ cov_65dwd4u8l().f[1]++;
49575
+ cov_65dwd4u8l().s[6]++;
49576
+ return /*#__PURE__*/React__default["default"].createElement(LinkElement, _extends$4({
49577
+ className: "col-span-1 mt-2 hover:text-gray-700 sm:mt-0",
49578
+ key: getUniqueKey(link.label, index)
49579
+ }, link, {
49580
+ style: design.links
49581
+ }));
49582
+ })), /*#__PURE__*/React__default["default"].createElement("div", {
49583
+ className: "col-span-12 flex justify-center gap-x-4 sm:col-span-8 sm:col-start-3"
49584
+ }, socialIcons.map(function (_icon, index) {
49585
+ cov_65dwd4u8l().f[2]++;
49586
+ cov_65dwd4u8l().s[7]++;
49587
+ return /*#__PURE__*/React__default["default"].createElement(LinkElement, _extends$4({
49588
+ key: getUniqueKey(_icon.name, index),
49589
+ icon: function icon() {
49590
+ cov_65dwd4u8l().f[3]++;
49591
+ cov_65dwd4u8l().s[8]++;
49592
+ return renderIcon(_objectSpread$2({
49593
+ name: _icon.name,
49594
+ className: "hover:text-gray-600"
49595
+ }, design.socialIcon));
49596
+ }
49597
+ }, _icon));
49598
+ })), /*#__PURE__*/React__default["default"].createElement(Typography, {
49599
+ className: "col-span-12 flex justify-center sm:col-span-8 sm:col-start-3",
49600
+ style: design.copyrightText
49601
+ }, copyrightText)));
49602
+ } else {
49603
+ cov_65dwd4u8l().b[1][1]++;
49604
+ }
49605
+ cov_65dwd4u8l().s[9]++;
49606
+ return /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
49607
+ as: "footer",
49608
+ backgroundImage: mergeLeft({
49609
+ src: src
49610
+ }, design.backgroundImage),
49611
+ className: className,
49612
+ design: design.body,
49613
+ id: id
49614
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
49615
+ className: classnames("neeto-site-block-wrapper gap-y-8 ", baseClasses)
49616
+ }, /*#__PURE__*/React__default["default"].createElement(StyledImage, {
49617
+ className: "col-span-12 sm:col-span-2",
49618
+ design: design.logo,
49619
+ src: logo.src
49620
+ }), /*#__PURE__*/React__default["default"].createElement("div", {
49621
+ className: "col-span-12 grid grid-cols-4 gap-x-2 gap-y-4 sm:col-span-7 sm:col-start-6 sm:flex sm:justify-between"
49622
+ }, links.map(function (link, index) {
49623
+ cov_65dwd4u8l().f[4]++;
49624
+ cov_65dwd4u8l().s[10]++;
49625
+ return /*#__PURE__*/React__default["default"].createElement(LinkElement, _extends$4({
49626
+ className: "col-span-1 hover:text-gray-700",
49627
+ key: getUniqueKey(link.label, index)
49628
+ }, link, {
49629
+ style: design.links
49630
+ }));
49631
+ })), /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
49632
+ as: "hr",
49633
+ className: "col-span-12",
49634
+ design: {
49635
+ borderColor: "#C2C8CC"
49636
+ }
49637
+ }), /*#__PURE__*/React__default["default"].createElement("div", {
49638
+ className: "col-span-12 flex justify-center gap-x-4 sm:col-span-4 sm:col-start-9 sm:justify-end"
49639
+ }, socialIcons.map(function (_icon2, index) {
49640
+ cov_65dwd4u8l().f[5]++;
49641
+ cov_65dwd4u8l().s[11]++;
49642
+ return /*#__PURE__*/React__default["default"].createElement(LinkElement, _extends$4({
49643
+ key: getUniqueKey(_icon2.name, index),
49644
+ icon: function icon() {
49645
+ cov_65dwd4u8l().f[6]++;
49646
+ cov_65dwd4u8l().s[12]++;
49647
+ return renderIcon(_objectSpread$2({
49648
+ name: _icon2.name,
49649
+ className: "hover:text-gray-600"
49650
+ }, design.socialIcon));
49651
+ }
49652
+ }, _icon2));
49653
+ })), /*#__PURE__*/React__default["default"].createElement(Typography, {
49654
+ className: "col-span-12 flex justify-center sm:col-span-6 sm:col-start-1 sm:justify-start",
49481
49655
  style: design.copyrightText
49482
- }, copyrightText));
49656
+ }, copyrightText)));
49483
49657
  };
49484
49658
 
49485
49659
  function cov_2i9807t0bv() {
@@ -51026,7 +51200,7 @@ var GridWithImage = function GridWithImage(_ref) {
51026
51200
 
51027
51201
  function cov_23txpdjvdc() {
51028
51202
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/HeaderWithLeftLinks.jsx";
51029
- var hash = "d99eb257143ad5befa2103a68faeaa8f02342189";
51203
+ var hash = "130262e38345d8837990b27c08a01720377a8c74";
51030
51204
  var global = new Function("return this")();
51031
51205
  var gcv = "__coverage__";
51032
51206
  var coverageData = {
@@ -51038,7 +51212,7 @@ function cov_23txpdjvdc() {
51038
51212
  column: 28
51039
51213
  },
51040
51214
  end: {
51041
- line: 106,
51215
+ line: 114,
51042
51216
  column: 1
51043
51217
  }
51044
51218
  },
@@ -51098,7 +51272,7 @@ function cov_23txpdjvdc() {
51098
51272
  column: 2
51099
51273
  },
51100
51274
  end: {
51101
- line: 105,
51275
+ line: 113,
51102
51276
  column: 4
51103
51277
  }
51104
51278
  },
@@ -51118,7 +51292,7 @@ function cov_23txpdjvdc() {
51118
51292
  column: 12
51119
51293
  },
51120
51294
  end: {
51121
- line: 58,
51295
+ line: 62,
51122
51296
  column: 14
51123
51297
  }
51124
51298
  },
@@ -51128,78 +51302,78 @@ function cov_23txpdjvdc() {
51128
51302
  column: 16
51129
51303
  },
51130
51304
  end: {
51131
- line: 56,
51132
- column: 74
51305
+ line: 60,
51306
+ column: 18
51133
51307
  }
51134
51308
  },
51135
51309
  "10": {
51136
51310
  start: {
51137
- line: 63,
51311
+ line: 67,
51138
51312
  column: 25
51139
51313
  },
51140
51314
  end: {
51141
- line: 63,
51315
+ line: 67,
51142
51316
  column: 54
51143
51317
  }
51144
51318
  },
51145
51319
  "11": {
51146
51320
  start: {
51147
- line: 63,
51321
+ line: 67,
51148
51322
  column: 48
51149
51323
  },
51150
51324
  end: {
51151
- line: 63,
51325
+ line: 67,
51152
51326
  column: 53
51153
51327
  }
51154
51328
  },
51155
51329
  "12": {
51156
51330
  start: {
51157
- line: 69,
51331
+ line: 73,
51158
51332
  column: 25
51159
51333
  },
51160
51334
  end: {
51161
- line: 69,
51335
+ line: 73,
51162
51336
  column: 54
51163
51337
  }
51164
51338
  },
51165
51339
  "13": {
51166
51340
  start: {
51167
- line: 69,
51341
+ line: 73,
51168
51342
  column: 48
51169
51343
  },
51170
51344
  end: {
51171
- line: 69,
51345
+ line: 73,
51172
51346
  column: 53
51173
51347
  }
51174
51348
  },
51175
51349
  "14": {
51176
51350
  start: {
51177
- line: 76,
51351
+ line: 80,
51178
51352
  column: 14
51179
51353
  },
51180
51354
  end: {
51181
- line: 83,
51355
+ line: 87,
51182
51356
  column: 16
51183
51357
  }
51184
51358
  },
51185
51359
  "15": {
51186
51360
  start: {
51187
- line: 90,
51361
+ line: 94,
51188
51362
  column: 14
51189
51363
  },
51190
51364
  end: {
51191
- line: 99,
51365
+ line: 107,
51192
51366
  column: 16
51193
51367
  }
51194
51368
  },
51195
51369
  "16": {
51196
51370
  start: {
51197
- line: 97,
51371
+ line: 101,
51198
51372
  column: 18
51199
51373
  },
51200
51374
  end: {
51201
- line: 97,
51202
- column: 76
51375
+ line: 105,
51376
+ column: 20
51203
51377
  }
51204
51378
  }
51205
51379
  },
@@ -51222,7 +51396,7 @@ function cov_23txpdjvdc() {
51222
51396
  column: 72
51223
51397
  },
51224
51398
  end: {
51225
- line: 106,
51399
+ line: 114,
51226
51400
  column: 1
51227
51401
  }
51228
51402
  },
@@ -51270,7 +51444,7 @@ function cov_23txpdjvdc() {
51270
51444
  column: 12
51271
51445
  },
51272
51446
  end: {
51273
- line: 58,
51447
+ line: 62,
51274
51448
  column: 14
51275
51449
  }
51276
51450
  },
@@ -51294,8 +51468,8 @@ function cov_23txpdjvdc() {
51294
51468
  column: 16
51295
51469
  },
51296
51470
  end: {
51297
- line: 56,
51298
- column: 74
51471
+ line: 60,
51472
+ column: 18
51299
51473
  }
51300
51474
  },
51301
51475
  line: 56
@@ -51304,169 +51478,169 @@ function cov_23txpdjvdc() {
51304
51478
  name: "(anonymous_4)",
51305
51479
  decl: {
51306
51480
  start: {
51307
- line: 63,
51481
+ line: 67,
51308
51482
  column: 19
51309
51483
  },
51310
51484
  end: {
51311
- line: 63,
51485
+ line: 67,
51312
51486
  column: 20
51313
51487
  }
51314
51488
  },
51315
51489
  loc: {
51316
51490
  start: {
51317
- line: 63,
51491
+ line: 67,
51318
51492
  column: 25
51319
51493
  },
51320
51494
  end: {
51321
- line: 63,
51495
+ line: 67,
51322
51496
  column: 54
51323
51497
  }
51324
51498
  },
51325
- line: 63
51499
+ line: 67
51326
51500
  },
51327
51501
  "5": {
51328
51502
  name: "(anonymous_5)",
51329
51503
  decl: {
51330
51504
  start: {
51331
- line: 63,
51505
+ line: 67,
51332
51506
  column: 40
51333
51507
  },
51334
51508
  end: {
51335
- line: 63,
51509
+ line: 67,
51336
51510
  column: 41
51337
51511
  }
51338
51512
  },
51339
51513
  loc: {
51340
51514
  start: {
51341
- line: 63,
51515
+ line: 67,
51342
51516
  column: 48
51343
51517
  },
51344
51518
  end: {
51345
- line: 63,
51519
+ line: 67,
51346
51520
  column: 53
51347
51521
  }
51348
51522
  },
51349
- line: 63
51523
+ line: 67
51350
51524
  },
51351
51525
  "6": {
51352
51526
  name: "(anonymous_6)",
51353
51527
  decl: {
51354
51528
  start: {
51355
- line: 69,
51529
+ line: 73,
51356
51530
  column: 19
51357
51531
  },
51358
51532
  end: {
51359
- line: 69,
51533
+ line: 73,
51360
51534
  column: 20
51361
51535
  }
51362
51536
  },
51363
51537
  loc: {
51364
51538
  start: {
51365
- line: 69,
51539
+ line: 73,
51366
51540
  column: 25
51367
51541
  },
51368
51542
  end: {
51369
- line: 69,
51543
+ line: 73,
51370
51544
  column: 54
51371
51545
  }
51372
51546
  },
51373
- line: 69
51547
+ line: 73
51374
51548
  },
51375
51549
  "7": {
51376
51550
  name: "(anonymous_7)",
51377
51551
  decl: {
51378
51552
  start: {
51379
- line: 69,
51553
+ line: 73,
51380
51554
  column: 40
51381
51555
  },
51382
51556
  end: {
51383
- line: 69,
51557
+ line: 73,
51384
51558
  column: 41
51385
51559
  }
51386
51560
  },
51387
51561
  loc: {
51388
51562
  start: {
51389
- line: 69,
51563
+ line: 73,
51390
51564
  column: 48
51391
51565
  },
51392
51566
  end: {
51393
- line: 69,
51567
+ line: 73,
51394
51568
  column: 53
51395
51569
  }
51396
51570
  },
51397
- line: 69
51571
+ line: 73
51398
51572
  },
51399
51573
  "8": {
51400
51574
  name: "(anonymous_8)",
51401
51575
  decl: {
51402
51576
  start: {
51403
- line: 75,
51577
+ line: 79,
51404
51578
  column: 34
51405
51579
  },
51406
51580
  end: {
51407
- line: 75,
51581
+ line: 79,
51408
51582
  column: 35
51409
51583
  }
51410
51584
  },
51411
51585
  loc: {
51412
51586
  start: {
51413
- line: 76,
51587
+ line: 80,
51414
51588
  column: 14
51415
51589
  },
51416
51590
  end: {
51417
- line: 83,
51591
+ line: 87,
51418
51592
  column: 16
51419
51593
  }
51420
51594
  },
51421
- line: 76
51595
+ line: 80
51422
51596
  },
51423
51597
  "9": {
51424
51598
  name: "(anonymous_9)",
51425
51599
  decl: {
51426
51600
  start: {
51427
- line: 89,
51601
+ line: 93,
51428
51602
  column: 34
51429
51603
  },
51430
51604
  end: {
51431
- line: 89,
51605
+ line: 93,
51432
51606
  column: 35
51433
51607
  }
51434
51608
  },
51435
51609
  loc: {
51436
51610
  start: {
51437
- line: 90,
51611
+ line: 94,
51438
51612
  column: 14
51439
51613
  },
51440
51614
  end: {
51441
- line: 99,
51615
+ line: 107,
51442
51616
  column: 16
51443
51617
  }
51444
51618
  },
51445
- line: 90
51619
+ line: 94
51446
51620
  },
51447
51621
  "10": {
51448
51622
  name: "(anonymous_10)",
51449
51623
  decl: {
51450
51624
  start: {
51451
- line: 96,
51625
+ line: 100,
51452
51626
  column: 22
51453
51627
  },
51454
51628
  end: {
51455
- line: 96,
51629
+ line: 100,
51456
51630
  column: 23
51457
51631
  }
51458
51632
  },
51459
51633
  loc: {
51460
51634
  start: {
51461
- line: 97,
51635
+ line: 101,
51462
51636
  column: 18
51463
51637
  },
51464
51638
  end: {
51465
- line: 97,
51466
- column: 76
51639
+ line: 105,
51640
+ column: 20
51467
51641
  }
51468
51642
  },
51469
- line: 97
51643
+ line: 101
51470
51644
  }
51471
51645
  },
51472
51646
  branchMap: {
@@ -51497,68 +51671,68 @@ function cov_23txpdjvdc() {
51497
51671
  "1": {
51498
51672
  loc: {
51499
51673
  start: {
51500
- line: 73,
51674
+ line: 77,
51501
51675
  column: 9
51502
51676
  },
51503
51677
  end: {
51504
- line: 86,
51678
+ line: 90,
51505
51679
  column: 9
51506
51680
  }
51507
51681
  },
51508
51682
  type: "binary-expr",
51509
51683
  locations: [{
51510
51684
  start: {
51511
- line: 73,
51685
+ line: 77,
51512
51686
  column: 9
51513
51687
  },
51514
51688
  end: {
51515
- line: 73,
51689
+ line: 77,
51516
51690
  column: 20
51517
51691
  }
51518
51692
  }, {
51519
51693
  start: {
51520
- line: 74,
51694
+ line: 78,
51521
51695
  column: 10
51522
51696
  },
51523
51697
  end: {
51524
- line: 85,
51698
+ line: 89,
51525
51699
  column: 16
51526
51700
  }
51527
51701
  }],
51528
- line: 73
51702
+ line: 77
51529
51703
  },
51530
51704
  "2": {
51531
51705
  loc: {
51532
51706
  start: {
51533
- line: 87,
51707
+ line: 91,
51534
51708
  column: 9
51535
51709
  },
51536
51710
  end: {
51537
- line: 102,
51711
+ line: 110,
51538
51712
  column: 9
51539
51713
  }
51540
51714
  },
51541
51715
  type: "binary-expr",
51542
51716
  locations: [{
51543
51717
  start: {
51544
- line: 87,
51718
+ line: 91,
51545
51719
  column: 9
51546
51720
  },
51547
51721
  end: {
51548
- line: 87,
51722
+ line: 91,
51549
51723
  column: 20
51550
51724
  }
51551
51725
  }, {
51552
51726
  start: {
51553
- line: 88,
51727
+ line: 92,
51554
51728
  column: 10
51555
51729
  },
51556
51730
  end: {
51557
- line: 101,
51731
+ line: 109,
51558
51732
  column: 16
51559
51733
  }
51560
51734
  }],
51561
- line: 87
51735
+ line: 91
51562
51736
  }
51563
51737
  },
51564
51738
  s: {
@@ -51599,7 +51773,7 @@ function cov_23txpdjvdc() {
51599
51773
  "2": [0, 0]
51600
51774
  },
51601
51775
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
51602
- hash: "d99eb257143ad5befa2103a68faeaa8f02342189"
51776
+ hash: "130262e38345d8837990b27c08a01720377a8c74"
51603
51777
  };
51604
51778
  var coverage = global[gcv] || (global[gcv] = {});
51605
51779
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -51615,6 +51789,8 @@ function cov_23txpdjvdc() {
51615
51789
  return actualCoverage;
51616
51790
  }
51617
51791
  cov_23txpdjvdc();
51792
+ 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; }
51793
+ 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
51794
  cov_23txpdjvdc().s[0]++;
51619
51795
  var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51620
51796
  var configurations = _ref.configurations,
@@ -51668,7 +51844,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51668
51844
  }), /*#__PURE__*/React__default["default"].createElement("div", {
51669
51845
  className: "col-span-5 col-start-8 hidden justify-end sm:col-span-4 sm:col-start-9 sm:flex"
51670
51846
  }, properties.icons.map(function (_ref9, index) {
51671
- var Icon = _ref9.icon,
51847
+ var name = _ref9.name,
51672
51848
  url = _ref9.url,
51673
51849
  action = _ref9.action;
51674
51850
  cov_23txpdjvdc().f[2]++;
@@ -51681,7 +51857,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51681
51857
  icon: function icon() {
51682
51858
  cov_23txpdjvdc().f[3]++;
51683
51859
  cov_23txpdjvdc().s[9]++;
51684
- return /*#__PURE__*/React__default["default"].createElement(Icon, _extends$4({
51860
+ return renderIcon(_objectSpread$1({
51861
+ name: name,
51685
51862
  className: "hover:text-gray-700"
51686
51863
  }, design.icons));
51687
51864
  }
@@ -51731,7 +51908,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51731
51908
  }))), (cov_23txpdjvdc().b[2][0]++, isIconsOpen) && (cov_23txpdjvdc().b[2][1]++, /*#__PURE__*/React__default["default"].createElement("div", {
51732
51909
  className: "fadeIn col-span-2 col-start-11 mt-3 flex flex-col justify-end space-y-1 lg:hidden"
51733
51910
  }, properties.icons.map(function (_ref11, index) {
51734
- var Icon = _ref11.icon,
51911
+ var name = _ref11.name,
51735
51912
  url = _ref11.url,
51736
51913
  action = _ref11.action;
51737
51914
  cov_23txpdjvdc().f[9]++;
@@ -51745,7 +51922,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51745
51922
  icon: function icon() {
51746
51923
  cov_23txpdjvdc().f[10]++;
51747
51924
  cov_23txpdjvdc().s[16]++;
51748
- return /*#__PURE__*/React__default["default"].createElement(Icon, _extends$4({
51925
+ return renderIcon(_objectSpread$1({
51926
+ name: name,
51749
51927
  className: "hover:text-gray-700"
51750
51928
  }, design.icons));
51751
51929
  }
@@ -55689,6 +55867,7 @@ exports.FeatureWithList = FeatureWithList;
55689
55867
  exports.FeatureWithProgressBar = FeatureWithProgressBar;
55690
55868
  exports.FeatureWithRightImage = FeatureWithRightImage;
55691
55869
  exports.FooterWithLinkGroups = FooterWithLinkGroups;
55870
+ exports.FooterWithLinks = FooterWithLinks;
55692
55871
  exports.GalleryWithMultipleImages = GalleryWithMultipleImages;
55693
55872
  exports.GalleryWithSlidingImages = GalleryWithSlidingImages;
55694
55873
  exports.GridWithImage = GridWithImage;
@@ -55701,5 +55880,4 @@ exports.HorizontalTestimonial = HorizontalTestimonial;
55701
55880
  exports.LogoClouds = LogoClouds;
55702
55881
  exports.PricingInCardView = PricingInCardView;
55703
55882
  exports.SlidingTestimonial = SlidingTestimonial;
55704
- exports.getSiteConfigurations = getSiteConfigurations;
55705
55883
  //# sourceMappingURL=index.cjs.js.map