@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.js CHANGED
@@ -320,53 +320,6 @@ _curry2(function curryN(length, fn) {
320
320
  return _arity(length, _curryN(length, [], fn));
321
321
  });
322
322
 
323
- /**
324
- * Optimized internal three-arity curry function.
325
- *
326
- * @private
327
- * @category Function
328
- * @param {Function} fn The function to curry.
329
- * @return {Function} The curried function.
330
- */
331
-
332
- function _curry3(fn) {
333
- return function f3(a, b, c) {
334
- switch (arguments.length) {
335
- case 0:
336
- return f3;
337
-
338
- case 1:
339
- return _isPlaceholder(a) ? f3 : _curry2(function (_b, _c) {
340
- return fn(a, _b, _c);
341
- });
342
-
343
- case 2:
344
- return _isPlaceholder(a) && _isPlaceholder(b) ? f3 : _isPlaceholder(a) ? _curry2(function (_a, _c) {
345
- return fn(_a, b, _c);
346
- }) : _isPlaceholder(b) ? _curry2(function (_b, _c) {
347
- return fn(a, _b, _c);
348
- }) : _curry1(function (_c) {
349
- return fn(a, b, _c);
350
- });
351
-
352
- default:
353
- return _isPlaceholder(a) && _isPlaceholder(b) && _isPlaceholder(c) ? f3 : _isPlaceholder(a) && _isPlaceholder(b) ? _curry2(function (_a, _b) {
354
- return fn(_a, _b, c);
355
- }) : _isPlaceholder(a) && _isPlaceholder(c) ? _curry2(function (_a, _c) {
356
- return fn(_a, b, _c);
357
- }) : _isPlaceholder(b) && _isPlaceholder(c) ? _curry2(function (_b, _c) {
358
- return fn(a, _b, _c);
359
- }) : _isPlaceholder(a) ? _curry1(function (_a) {
360
- return fn(_a, b, c);
361
- }) : _isPlaceholder(b) ? _curry1(function (_b) {
362
- return fn(a, _b, c);
363
- }) : _isPlaceholder(c) ? _curry1(function (_c) {
364
- return fn(a, b, _c);
365
- }) : fn(a, b, c);
366
- }
367
- };
368
- }
369
-
370
323
  /**
371
324
  * Tests whether or not an object is an array.
372
325
  *
@@ -1520,124 +1473,6 @@ _curry1(function mergeAll(list) {
1520
1473
  return _objectAssign$1.apply(null, [{}].concat(list));
1521
1474
  });
1522
1475
 
1523
- /**
1524
- * Creates a new object with the own properties of the two provided objects. If
1525
- * a key exists in both objects, the provided function is applied to the key
1526
- * and the values associated with the key in each object, with the result being
1527
- * used as the value associated with the key in the returned object.
1528
- *
1529
- * @func
1530
- * @memberOf R
1531
- * @since v0.19.0
1532
- * @category Object
1533
- * @sig ((String, a, a) -> a) -> {a} -> {a} -> {a}
1534
- * @param {Function} fn
1535
- * @param {Object} l
1536
- * @param {Object} r
1537
- * @return {Object}
1538
- * @see R.mergeDeepWithKey, R.merge, R.mergeWith
1539
- * @example
1540
- *
1541
- * let concatValues = (k, l, r) => k == 'values' ? R.concat(l, r) : r
1542
- * R.mergeWithKey(concatValues,
1543
- * { a: true, thing: 'foo', values: [10, 20] },
1544
- * { b: true, thing: 'bar', values: [15, 35] });
1545
- * //=> { a: true, b: true, thing: 'bar', values: [10, 20, 15, 35] }
1546
- * @symb R.mergeWithKey(f, { x: 1, y: 2 }, { y: 5, z: 3 }) = { x: 1, y: f('y', 2, 5), z: 3 }
1547
- */
1548
-
1549
- var mergeWithKey =
1550
- /*#__PURE__*/
1551
- _curry3(function mergeWithKey(fn, l, r) {
1552
- var result = {};
1553
- var k;
1554
-
1555
- for (k in l) {
1556
- if (_has(k, l)) {
1557
- result[k] = _has(k, r) ? fn(k, l[k], r[k]) : l[k];
1558
- }
1559
- }
1560
-
1561
- for (k in r) {
1562
- if (_has(k, r) && !_has(k, result)) {
1563
- result[k] = r[k];
1564
- }
1565
- }
1566
-
1567
- return result;
1568
- });
1569
-
1570
- /**
1571
- * Creates a new object with the own properties of the two provided objects.
1572
- * If a key exists in both objects:
1573
- * - and both associated values are also objects then the values will be
1574
- * recursively merged.
1575
- * - otherwise the provided function is applied to the key and associated values
1576
- * using the resulting value as the new value associated with the key.
1577
- * If a key only exists in one object, the value will be associated with the key
1578
- * of the resulting object.
1579
- *
1580
- * @func
1581
- * @memberOf R
1582
- * @since v0.24.0
1583
- * @category Object
1584
- * @sig ((String, a, a) -> a) -> {a} -> {a} -> {a}
1585
- * @param {Function} fn
1586
- * @param {Object} lObj
1587
- * @param {Object} rObj
1588
- * @return {Object}
1589
- * @see R.mergeWithKey, R.mergeDeepWith
1590
- * @example
1591
- *
1592
- * let concatValues = (k, l, r) => k == 'values' ? R.concat(l, r) : r
1593
- * R.mergeDeepWithKey(concatValues,
1594
- * { a: true, c: { thing: 'foo', values: [10, 20] }},
1595
- * { b: true, c: { thing: 'bar', values: [15, 35] }});
1596
- * //=> { a: true, b: true, c: { thing: 'bar', values: [10, 20, 15, 35] }}
1597
- */
1598
-
1599
- var mergeDeepWithKey =
1600
- /*#__PURE__*/
1601
- _curry3(function mergeDeepWithKey(fn, lObj, rObj) {
1602
- return mergeWithKey(function (k, lVal, rVal) {
1603
- if (_isObject(lVal) && _isObject(rVal)) {
1604
- return mergeDeepWithKey(fn, lVal, rVal);
1605
- } else {
1606
- return fn(k, lVal, rVal);
1607
- }
1608
- }, lObj, rObj);
1609
- });
1610
-
1611
- /**
1612
- * Creates a new object with the own properties of the first object merged with
1613
- * the own properties of the second object. If a key exists in both objects:
1614
- * - and both values are objects, the two values will be recursively merged
1615
- * - otherwise the value from the first object will be used.
1616
- *
1617
- * @func
1618
- * @memberOf R
1619
- * @since v0.24.0
1620
- * @category Object
1621
- * @sig {a} -> {a} -> {a}
1622
- * @param {Object} lObj
1623
- * @param {Object} rObj
1624
- * @return {Object}
1625
- * @see R.merge, R.mergeDeepRight, R.mergeDeepWith, R.mergeDeepWithKey
1626
- * @example
1627
- *
1628
- * R.mergeDeepLeft({ name: 'fred', age: 10, contact: { email: 'moo@example.com' }},
1629
- * { age: 40, contact: { email: 'baa@example.com' }});
1630
- * //=> { name: 'fred', age: 10, contact: { email: 'moo@example.com' }}
1631
- */
1632
-
1633
- var mergeDeepLeft =
1634
- /*#__PURE__*/
1635
- _curry2(function mergeDeepLeft(lObj, rObj) {
1636
- return mergeDeepWithKey(function (k, lVal, rVal) {
1637
- return lVal;
1638
- }, lObj, rObj);
1639
- });
1640
-
1641
1476
  /**
1642
1477
  * Create a new object with the own properties of the first object merged with
1643
1478
  * the own properties of the second object. If a key exists in both objects,
@@ -1985,8 +1820,8 @@ function cov_26592p5fu3() {
1985
1820
  return actualCoverage;
1986
1821
  }
1987
1822
  cov_26592p5fu3();
1988
- 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; }
1989
- 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; }
1823
+ 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; }
1824
+ 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; }
1990
1825
  var StyledWrapper = (cov_26592p5fu3().s[0]++, styled.div(function (_ref) {
1991
1826
  var _design$border, _design$borderTop, _design$borderTop2, _design$borderTop3, _design$borderBottom, _design$borderBottom2, _design$borderBottom3, _design$borderRight, _design$borderLeft, _design$border2;
1992
1827
  var _ref$design = _ref.design,
@@ -2016,7 +1851,7 @@ var StyledWrapper = (cov_26592p5fu3().s[0]++, styled.div(function (_ref) {
2016
1851
  var backgroundStyles = (cov_26592p5fu3().s[4]++, {
2017
1852
  position: "relative",
2018
1853
  zIndex: 0,
2019
- "&::before": _objectSpread$2({
1854
+ "&::before": _objectSpread$6({
2020
1855
  content: "''",
2021
1856
  position: "absolute",
2022
1857
  top: 0,
@@ -6231,7 +6066,7 @@ function Interweave(props) {
6231
6066
  });
6232
6067
  }
6233
6068
 
6234
- var _excluded = ["style", "component", "className", "isTitle", "children"];
6069
+ var _excluded$1 = ["style", "component", "className", "isTitle", "children"];
6235
6070
  function cov_2j9er2s36e() {
6236
6071
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/Typography.jsx";
6237
6072
  var hash = "c5e98d310e7417f9f631ec8d9735f008eeeac83d";
@@ -6493,7 +6328,7 @@ var Typography = function Typography(_ref) {
6493
6328
  _ref$isTitle = _ref.isTitle,
6494
6329
  isTitle = _ref$isTitle === void 0 ? (cov_2j9er2s36e().b[3][0]++, false) : _ref$isTitle,
6495
6330
  children = _ref.children,
6496
- otherProps = _objectWithoutProperties(_ref, _excluded);
6331
+ otherProps = _objectWithoutProperties(_ref, _excluded$1);
6497
6332
  cov_2j9er2s36e().f[0]++;
6498
6333
  cov_2j9er2s36e().s[1]++;
6499
6334
  if (isTitle) {
@@ -6550,132 +6385,63 @@ function cov_285a2wxz84() {
6550
6385
  }
6551
6386
  cov_285a2wxz84();
6552
6387
 
6553
- function cov_1rn97x90t6() {
6554
- var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.js";
6555
- var hash = "2df889d87af01aa25e1c38dc7ac8aa66d1607887";
6388
+ var _excluded = ["name"];
6389
+ function cov_mdbryxoh6() {
6390
+ var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.jsx";
6391
+ var hash = "43b8927a91a7a316d43e18b705302b300ffb460e";
6556
6392
  var global = new Function("return this")();
6557
6393
  var gcv = "__coverage__";
6558
6394
  var coverageData = {
6559
- path: "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.js",
6395
+ path: "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/commons/utils.jsx",
6560
6396
  statementMap: {
6561
6397
  "0": {
6562
6398
  start: {
6563
- line: 4,
6399
+ line: 5,
6564
6400
  column: 21
6565
6401
  },
6566
6402
  end: {
6567
- line: 4,
6403
+ line: 5,
6568
6404
  column: 48
6569
6405
  }
6570
6406
  },
6571
6407
  "1": {
6572
6408
  start: {
6573
- line: 4,
6409
+ line: 5,
6574
6410
  column: 34
6575
6411
  },
6576
6412
  end: {
6577
- line: 4,
6413
+ line: 5,
6578
6414
  column: 48
6579
6415
  }
6580
6416
  },
6581
6417
  "2": {
6582
6418
  start: {
6583
- line: 6,
6584
- column: 27
6419
+ line: 7,
6420
+ column: 19
6585
6421
  },
6586
6422
  end: {
6587
- line: 15,
6423
+ line: 11,
6588
6424
  column: 1
6589
6425
  }
6590
6426
  },
6591
6427
  "3": {
6592
- start: {
6593
- line: 7,
6594
- column: 27
6595
- },
6596
- end: {
6597
- line: 9,
6598
- column: 3
6599
- }
6600
- },
6601
- "4": {
6602
6428
  start: {
6603
6429
  line: 8,
6604
- column: 4
6430
+ column: 15
6605
6431
  },
6606
6432
  end: {
6607
6433
  line: 8,
6608
- column: 52
6609
- }
6610
- },
6611
- "5": {
6612
- start: {
6613
- line: 11,
6614
- column: 2
6615
- },
6616
- end: {
6617
- line: 14,
6618
- column: 4
6619
- }
6620
- },
6621
- "6": {
6622
- start: {
6623
- line: 17,
6624
- column: 30
6625
- },
6626
- end: {
6627
- line: 35,
6628
- column: 1
6629
- }
6630
- },
6631
- "7": {
6632
- start: {
6633
- line: 18,
6634
- column: 2
6635
- },
6636
- end: {
6637
- line: 24,
6638
- column: 3
6639
- }
6640
- },
6641
- "8": {
6642
- start: {
6643
- line: 19,
6644
- column: 4
6645
- },
6646
- end: {
6647
- line: 23,
6648
- column: 6
6649
- }
6650
- },
6651
- "9": {
6652
- start: {
6653
- line: 26,
6654
- column: 2
6655
- },
6656
- end: {
6657
- line: 32,
6658
- column: 3
6659
- }
6660
- },
6661
- "10": {
6662
- start: {
6663
- line: 27,
6664
- column: 4
6665
- },
6666
- end: {
6667
- line: 31,
6668
- column: 6
6434
+ column: 31
6669
6435
  }
6670
6436
  },
6671
- "11": {
6437
+ "4": {
6672
6438
  start: {
6673
- line: 34,
6439
+ line: 10,
6674
6440
  column: 2
6675
6441
  },
6676
6442
  end: {
6677
- line: 34,
6678
- column: 24
6443
+ line: 10,
6444
+ column: 34
6679
6445
  }
6680
6446
  }
6681
6447
  },
@@ -6684,193 +6450,66 @@ function cov_1rn97x90t6() {
6684
6450
  name: "(anonymous_0)",
6685
6451
  decl: {
6686
6452
  start: {
6687
- line: 4,
6453
+ line: 5,
6688
6454
  column: 21
6689
6455
  },
6690
6456
  end: {
6691
- line: 4,
6457
+ line: 5,
6692
6458
  column: 22
6693
6459
  }
6694
6460
  },
6695
6461
  loc: {
6696
6462
  start: {
6697
- line: 4,
6463
+ line: 5,
6698
6464
  column: 34
6699
6465
  },
6700
6466
  end: {
6701
- line: 4,
6467
+ line: 5,
6702
6468
  column: 48
6703
6469
  }
6704
6470
  },
6705
- line: 4
6471
+ line: 5
6706
6472
  },
6707
6473
  "1": {
6708
6474
  name: "(anonymous_1)",
6709
- decl: {
6710
- start: {
6711
- line: 6,
6712
- column: 27
6713
- },
6714
- end: {
6715
- line: 6,
6716
- column: 28
6717
- }
6718
- },
6719
- loc: {
6720
- start: {
6721
- line: 6,
6722
- column: 73
6723
- },
6724
- end: {
6725
- line: 15,
6726
- column: 1
6727
- }
6728
- },
6729
- line: 6
6730
- },
6731
- "2": {
6732
- name: "(anonymous_2)",
6733
6475
  decl: {
6734
6476
  start: {
6735
6477
  line: 7,
6736
- column: 41
6478
+ column: 19
6737
6479
  },
6738
6480
  end: {
6739
6481
  line: 7,
6740
- column: 42
6741
- }
6742
- },
6743
- loc: {
6744
- start: {
6745
- line: 8,
6746
- column: 4
6747
- },
6748
- end: {
6749
- line: 8,
6750
- column: 52
6751
- }
6752
- },
6753
- line: 8
6754
- },
6755
- "3": {
6756
- name: "(anonymous_3)",
6757
- decl: {
6758
- start: {
6759
- line: 17,
6760
- column: 30
6761
- },
6762
- end: {
6763
- line: 17,
6764
- column: 31
6482
+ column: 20
6765
6483
  }
6766
6484
  },
6767
6485
  loc: {
6768
6486
  start: {
6769
- line: 17,
6487
+ line: 7,
6770
6488
  column: 48
6771
6489
  },
6772
6490
  end: {
6773
- line: 35,
6491
+ line: 11,
6774
6492
  column: 1
6775
6493
  }
6776
6494
  },
6777
- line: 17
6778
- }
6779
- },
6780
- branchMap: {
6781
- "0": {
6782
- loc: {
6783
- start: {
6784
- line: 18,
6785
- column: 2
6786
- },
6787
- end: {
6788
- line: 24,
6789
- column: 3
6790
- }
6791
- },
6792
- type: "if",
6793
- locations: [{
6794
- start: {
6795
- line: 18,
6796
- column: 2
6797
- },
6798
- end: {
6799
- line: 24,
6800
- column: 3
6801
- }
6802
- }, {
6803
- start: {
6804
- line: undefined,
6805
- column: undefined
6806
- },
6807
- end: {
6808
- line: undefined,
6809
- column: undefined
6810
- }
6811
- }],
6812
- line: 18
6813
- },
6814
- "1": {
6815
- loc: {
6816
- start: {
6817
- line: 26,
6818
- column: 2
6819
- },
6820
- end: {
6821
- line: 32,
6822
- column: 3
6823
- }
6824
- },
6825
- type: "if",
6826
- locations: [{
6827
- start: {
6828
- line: 26,
6829
- column: 2
6830
- },
6831
- end: {
6832
- line: 32,
6833
- column: 3
6834
- }
6835
- }, {
6836
- start: {
6837
- line: undefined,
6838
- column: undefined
6839
- },
6840
- end: {
6841
- line: undefined,
6842
- column: undefined
6843
- }
6844
- }],
6845
- line: 26
6495
+ line: 7
6846
6496
  }
6847
6497
  },
6498
+ branchMap: {},
6848
6499
  s: {
6849
6500
  "0": 0,
6850
6501
  "1": 0,
6851
6502
  "2": 0,
6852
6503
  "3": 0,
6853
- "4": 0,
6854
- "5": 0,
6855
- "6": 0,
6856
- "7": 0,
6857
- "8": 0,
6858
- "9": 0,
6859
- "10": 0,
6860
- "11": 0
6504
+ "4": 0
6861
6505
  },
6862
6506
  f: {
6863
6507
  "0": 0,
6864
- "1": 0,
6865
- "2": 0,
6866
- "3": 0
6867
- },
6868
- b: {
6869
- "0": [0, 0],
6870
- "1": [0, 0]
6508
+ "1": 0
6871
6509
  },
6510
+ b: {},
6872
6511
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
6873
- hash: "2df889d87af01aa25e1c38dc7ac8aa66d1607887"
6512
+ hash: "43b8927a91a7a316d43e18b705302b300ffb460e"
6874
6513
  };
6875
6514
  var coverage = global[gcv] || (global[gcv] = {});
6876
6515
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -6879,58 +6518,30 @@ function cov_1rn97x90t6() {
6879
6518
  var actualCoverage = coverage[path];
6880
6519
  {
6881
6520
  // @ts-ignore
6882
- cov_1rn97x90t6 = function () {
6521
+ cov_mdbryxoh6 = function () {
6883
6522
  return actualCoverage;
6884
6523
  };
6885
6524
  }
6886
6525
  return actualCoverage;
6887
6526
  }
6888
- cov_1rn97x90t6();
6889
- cov_1rn97x90t6().s[0]++;
6527
+ cov_mdbryxoh6();
6528
+ cov_mdbryxoh6().s[0]++;
6890
6529
  var getUniqueKey = function getUniqueKey() {
6891
- cov_1rn97x90t6().f[0]++;
6892
- cov_1rn97x90t6().s[1]++;
6530
+ cov_mdbryxoh6().f[0]++;
6531
+ cov_mdbryxoh6().s[1]++;
6893
6532
  for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
6894
6533
  args[_key] = arguments[_key];
6895
6534
  }
6896
6535
  return args.join("-");
6897
6536
  };
6898
- cov_1rn97x90t6().s[2]++;
6899
- var buildConfiguration = function buildConfiguration(reference, configurations, blockVariable) {
6900
- cov_1rn97x90t6().f[1]++;
6901
- var newConfiguration = (cov_1rn97x90t6().s[3]++, reference.map(function (item) {
6902
- cov_1rn97x90t6().f[2]++;
6903
- cov_1rn97x90t6().s[4]++;
6904
- return mergeLeft({
6905
- icon: NeetoIcons[item.icon]
6906
- }, item);
6907
- }));
6908
- cov_1rn97x90t6().s[5]++;
6909
- return mergeDeepLeft({
6910
- properties: _defineProperty$1({}, blockVariable, newConfiguration)
6911
- }, configurations);
6912
- };
6913
- cov_1rn97x90t6().s[6]++;
6914
- var getSiteConfigurations = function getSiteConfigurations(configurations) {
6915
- cov_1rn97x90t6().f[3]++;
6916
- cov_1rn97x90t6().s[7]++;
6917
- if (configurations.properties.icons) {
6918
- cov_1rn97x90t6().b[0][0]++;
6919
- cov_1rn97x90t6().s[8]++;
6920
- return buildConfiguration(configurations.properties.icons, configurations, "icons");
6921
- } else {
6922
- cov_1rn97x90t6().b[0][1]++;
6923
- }
6924
- cov_1rn97x90t6().s[9]++;
6925
- if (configurations.properties.features) {
6926
- cov_1rn97x90t6().b[1][0]++;
6927
- cov_1rn97x90t6().s[10]++;
6928
- return buildConfiguration(configurations.properties.features, configurations, "features");
6929
- } else {
6930
- cov_1rn97x90t6().b[1][1]++;
6931
- }
6932
- cov_1rn97x90t6().s[11]++;
6933
- return configurations;
6537
+ cov_mdbryxoh6().s[2]++;
6538
+ var renderIcon = function renderIcon(_ref) {
6539
+ var name = _ref.name,
6540
+ otherProps = _objectWithoutProperties(_ref, _excluded);
6541
+ cov_mdbryxoh6().f[1]++;
6542
+ var Icon = (cov_mdbryxoh6().s[3]++, NeetoIcons[name]);
6543
+ cov_mdbryxoh6().s[4]++;
6544
+ return /*#__PURE__*/React__default.createElement(Icon, otherProps);
6934
6545
  };
6935
6546
 
6936
6547
  function cov_snfvcikxw() {
@@ -33411,7 +33022,7 @@ var ctaApi = (cov_1zrre9eq95().s[2]++, {
33411
33022
 
33412
33023
  function cov_120j8h8c5k() {
33413
33024
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/constants.js";
33414
- var hash = "1c34086e1eb5c45ba01c23f21014f8347a0eb0ba";
33025
+ var hash = "ef277d997ee327006d970ed07a8e073b5476bd1b";
33415
33026
  var global = new Function("return this")();
33416
33027
  var gcv = "__coverage__";
33417
33028
  var coverageData = {
@@ -33419,31 +33030,21 @@ function cov_120j8h8c5k() {
33419
33030
  statementMap: {
33420
33031
  "0": {
33421
33032
  start: {
33422
- line: 7,
33033
+ line: 1,
33423
33034
  column: 25
33424
33035
  },
33425
33036
  end: {
33426
- line: 23,
33037
+ line: 17,
33427
33038
  column: 1
33428
33039
  }
33429
33040
  },
33430
33041
  "1": {
33431
33042
  start: {
33432
- line: 25,
33433
- column: 28
33434
- },
33435
- end: {
33436
- line: 29,
33437
- column: 1
33438
- }
33439
- },
33440
- "2": {
33441
- start: {
33442
- line: 31,
33043
+ line: 19,
33443
33044
  column: 27
33444
33045
  },
33445
33046
  end: {
33446
- line: 31,
33047
+ line: 19,
33447
33048
  column: 73
33448
33049
  }
33449
33050
  }
@@ -33452,13 +33053,12 @@ function cov_120j8h8c5k() {
33452
33053
  branchMap: {},
33453
33054
  s: {
33454
33055
  "0": 0,
33455
- "1": 0,
33456
- "2": 0
33056
+ "1": 0
33457
33057
  },
33458
33058
  f: {},
33459
33059
  b: {},
33460
33060
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
33461
- hash: "1c34086e1eb5c45ba01c23f21014f8347a0eb0ba"
33061
+ hash: "ef277d997ee327006d970ed07a8e073b5476bd1b"
33462
33062
  };
33463
33063
  var coverage = global[gcv] || (global[gcv] = {});
33464
33064
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -33491,12 +33091,7 @@ var POSITIONS = (cov_120j8h8c5k().s[0]++, {
33491
33091
  label: "center"
33492
33092
  }
33493
33093
  });
33494
- var SOCIAL_ICONS = (cov_120j8h8c5k().s[1]++, {
33495
- Facebook: s$1X,
33496
- Twitter: i$e,
33497
- LinkedIn: i$_
33498
- });
33499
- var EMAIL_REGEX = (cov_120j8h8c5k().s[2]++, /^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/);
33094
+ var EMAIL_REGEX = (cov_120j8h8c5k().s[1]++, /^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/);
33500
33095
 
33501
33096
  function cov_2qijyrluvh() {
33502
33097
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/utils/cta.js";
@@ -33626,13 +33221,13 @@ function cov_2qijyrluvh() {
33626
33221
  return actualCoverage;
33627
33222
  }
33628
33223
  cov_2qijyrluvh();
33629
- 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; }
33630
- 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; }
33224
+ 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; }
33225
+ 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; }
33631
33226
  var StyledButton = (cov_2qijyrluvh().s[0]++, styled.button(function (_ref) {
33632
33227
  var design = _ref.design;
33633
33228
  cov_2qijyrluvh().f[0]++;
33634
33229
  cov_2qijyrluvh().s[1]++;
33635
- return _objectSpread$1(_objectSpread$1({}, design), {}, {
33230
+ return _objectSpread$5(_objectSpread$5({}, design), {}, {
33636
33231
  paddingLeft: design.paddingHorizontal,
33637
33232
  paddingRight: design.paddingHorizontal,
33638
33233
  paddingTop: design.paddingVertical,
@@ -47123,7 +46718,7 @@ var FeatureWithJumboText = function FeatureWithJumboText(_ref) {
47123
46718
 
47124
46719
  function cov_3j9xfx0k4() {
47125
46720
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FeatureWithLink.jsx";
47126
- var hash = "0f7cfbc5fdb9566955558f2e8d21f9dc138d21d4";
46721
+ var hash = "cb2b794ba9b7196af7dd6b446e93dcc668bd1c54";
47127
46722
  var global = new Function("return this")();
47128
46723
  var gcv = "__coverage__";
47129
46724
  var coverageData = {
@@ -47135,7 +46730,7 @@ function cov_3j9xfx0k4() {
47135
46730
  column: 24
47136
46731
  },
47137
46732
  end: {
47138
- line: 80,
46733
+ line: 77,
47139
46734
  column: 1
47140
46735
  }
47141
46736
  },
@@ -47195,7 +46790,7 @@ function cov_3j9xfx0k4() {
47195
46790
  column: 2
47196
46791
  },
47197
46792
  end: {
47198
- line: 79,
46793
+ line: 76,
47199
46794
  column: 4
47200
46795
  }
47201
46796
  },
@@ -47205,7 +46800,7 @@ function cov_3j9xfx0k4() {
47205
46800
  column: 14
47206
46801
  },
47207
46802
  end: {
47208
- line: 66,
46803
+ line: 63,
47209
46804
  column: 30
47210
46805
  }
47211
46806
  }
@@ -47229,7 +46824,7 @@ function cov_3j9xfx0k4() {
47229
46824
  column: 68
47230
46825
  },
47231
46826
  end: {
47232
- line: 80,
46827
+ line: 77,
47233
46828
  column: 1
47234
46829
  }
47235
46830
  },
@@ -47253,7 +46848,7 @@ function cov_3j9xfx0k4() {
47253
46848
  column: 14
47254
46849
  },
47255
46850
  end: {
47256
- line: 66,
46851
+ line: 63,
47257
46852
  column: 30
47258
46853
  }
47259
46854
  },
@@ -47397,7 +46992,7 @@ function cov_3j9xfx0k4() {
47397
46992
  "3": [0, 0]
47398
46993
  },
47399
46994
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
47400
- hash: "0f7cfbc5fdb9566955558f2e8d21f9dc138d21d4"
46995
+ hash: "cb2b794ba9b7196af7dd6b446e93dcc668bd1c54"
47401
46996
  };
47402
46997
  var coverage = global[gcv] || (global[gcv] = {});
47403
46998
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -47413,6 +47008,8 @@ function cov_3j9xfx0k4() {
47413
47008
  return actualCoverage;
47414
47009
  }
47415
47010
  cov_3j9xfx0k4();
47011
+ 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; }
47012
+ 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; }
47416
47013
  cov_3j9xfx0k4().s[0]++;
47417
47014
  var FeatureWithLink = function FeatureWithLink(_ref) {
47418
47015
  var configurations = _ref.configurations,
@@ -47466,17 +47063,16 @@ var FeatureWithLink = function FeatureWithLink(_ref) {
47466
47063
  className: "mb-8 space-y-5"
47467
47064
  }, features.map(function (_ref4, index) {
47468
47065
  var featureTitle = _ref4.title,
47469
- Icon = _ref4.icon;
47066
+ name = _ref4.name;
47470
47067
  cov_3j9xfx0k4().f[1]++;
47471
47068
  cov_3j9xfx0k4().s[7]++;
47472
47069
  return /*#__PURE__*/React__default.createElement(StyledWrapper, {
47473
47070
  className: "flex items-center gap-x-4",
47474
47071
  design: design.feature,
47475
47072
  key: getUniqueKey(featureTitle, index)
47476
- }, /*#__PURE__*/React__default.createElement(Icon, {
47477
- color: design.featureIcon.color,
47478
- size: design.featureIcon.size
47479
- }), /*#__PURE__*/React__default.createElement(Typography, {
47073
+ }, renderIcon(_objectSpread$4({
47074
+ name: name
47075
+ }, design.featureIcon)), /*#__PURE__*/React__default.createElement(Typography, {
47480
47076
  isTitle: true,
47481
47077
  component: "p",
47482
47078
  style: design.featureTitle
@@ -49036,7 +48632,7 @@ var FeatureWithRightImage = function FeatureWithRightImage(_ref) {
49036
48632
 
49037
48633
  function cov_1kbh5b1kc1() {
49038
48634
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FooterWithLinkGroups.jsx";
49039
- var hash = "ce6339704651e62412a583c484e0d37735783869";
48635
+ var hash = "5b368d46582b264b386ff666676b3bcf2dc5b6d2";
49040
48636
  var global = new Function("return this")();
49041
48637
  var gcv = "__coverage__";
49042
48638
  var coverageData = {
@@ -49044,122 +48640,102 @@ function cov_1kbh5b1kc1() {
49044
48640
  statementMap: {
49045
48641
  "0": {
49046
48642
  start: {
49047
- line: 12,
48643
+ line: 10,
49048
48644
  column: 29
49049
48645
  },
49050
48646
  end: {
49051
- line: 125,
48647
+ line: 99,
49052
48648
  column: 1
49053
48649
  }
49054
48650
  },
49055
48651
  "1": {
49056
48652
  start: {
49057
- line: 13,
48653
+ line: 11,
49058
48654
  column: 33
49059
48655
  },
49060
48656
  end: {
49061
- line: 13,
48657
+ line: 11,
49062
48658
  column: 47
49063
48659
  }
49064
48660
  },
49065
48661
  "2": {
49066
48662
  start: {
49067
- line: 24,
48663
+ line: 16,
49068
48664
  column: 6
49069
48665
  },
49070
48666
  end: {
49071
- line: 24,
48667
+ line: 16,
49072
48668
  column: 16
49073
48669
  }
49074
48670
  },
49075
48671
  "3": {
49076
48672
  start: {
49077
- line: 26,
49078
- column: 26
48673
+ line: 18,
48674
+ column: 22
49079
48675
  },
49080
48676
  end: {
49081
- line: 26,
49082
- column: 67
48677
+ line: 18,
48678
+ column: 52
49083
48679
  }
49084
48680
  },
49085
48681
  "4": {
49086
48682
  start: {
49087
- line: 27,
49088
- column: 25
48683
+ line: 20,
48684
+ column: 2
49089
48685
  },
49090
48686
  end: {
49091
- line: 27,
49092
- column: 67
48687
+ line: 98,
48688
+ column: 4
49093
48689
  }
49094
48690
  },
49095
48691
  "5": {
49096
48692
  start: {
49097
- line: 29,
49098
- column: 22
48693
+ line: 37,
48694
+ column: 12
49099
48695
  },
49100
48696
  end: {
49101
- line: 34,
49102
- column: 4
48697
+ line: 54,
48698
+ column: 18
49103
48699
  }
49104
48700
  },
49105
48701
  "6": {
49106
48702
  start: {
49107
- line: 36,
49108
- column: 29
48703
+ line: 43,
48704
+ column: 18
49109
48705
  },
49110
48706
  end: {
49111
- line: 39,
49112
- column: 4
48707
+ line: 51,
48708
+ column: 23
49113
48709
  }
49114
48710
  },
49115
48711
  "7": {
49116
48712
  start: {
49117
- line: 41,
49118
- column: 2
48713
+ line: 63,
48714
+ column: 14
49119
48715
  },
49120
48716
  end: {
49121
- line: 124,
49122
- column: 4
48717
+ line: 73,
48718
+ column: 16
49123
48719
  }
49124
48720
  },
49125
48721
  "8": {
49126
48722
  start: {
49127
- line: 69,
49128
- column: 27
48723
+ line: 66,
48724
+ column: 18
49129
48725
  },
49130
48726
  end: {
49131
- line: 69,
49132
- column: 50
48727
+ line: 70,
48728
+ column: 20
49133
48729
  }
49134
48730
  },
49135
48731
  "9": {
49136
48732
  start: {
49137
- line: 71,
48733
+ line: 78,
49138
48734
  column: 14
49139
48735
  },
49140
48736
  end: {
49141
- line: 83,
49142
- column: 16
49143
- }
49144
- },
49145
- "10": {
49146
- start: {
49147
- line: 89,
49148
- column: 12
49149
- },
49150
- end: {
49151
- line: 117,
49152
- column: 18
49153
- }
49154
- },
49155
- "11": {
49156
- start: {
49157
- line: 106,
49158
- column: 18
49159
- },
49160
- end: {
49161
- line: 114,
49162
- column: 23
48737
+ line: 86,
48738
+ column: 19
49163
48739
  }
49164
48740
  }
49165
48741
  },
@@ -49168,123 +48744,171 @@ function cov_1kbh5b1kc1() {
49168
48744
  name: "(anonymous_0)",
49169
48745
  decl: {
49170
48746
  start: {
49171
- line: 12,
48747
+ line: 10,
49172
48748
  column: 29
49173
48749
  },
49174
48750
  end: {
49175
- line: 12,
48751
+ line: 10,
49176
48752
  column: 30
49177
48753
  }
49178
48754
  },
49179
48755
  loc: {
49180
48756
  start: {
49181
- line: 12,
48757
+ line: 10,
49182
48758
  column: 73
49183
48759
  },
49184
48760
  end: {
49185
- line: 125,
48761
+ line: 99,
49186
48762
  column: 1
49187
48763
  }
49188
48764
  },
49189
- line: 12
48765
+ line: 10
49190
48766
  },
49191
48767
  "1": {
49192
48768
  name: "(anonymous_1)",
49193
48769
  decl: {
49194
48770
  start: {
49195
- line: 68,
49196
- column: 29
48771
+ line: 36,
48772
+ column: 23
49197
48773
  },
49198
48774
  end: {
49199
- line: 68,
49200
- column: 30
48775
+ line: 36,
48776
+ column: 24
49201
48777
  }
49202
48778
  },
49203
48779
  loc: {
49204
48780
  start: {
49205
- line: 68,
49206
- column: 46
48781
+ line: 37,
48782
+ column: 12
49207
48783
  },
49208
48784
  end: {
49209
- line: 84,
49210
- column: 13
48785
+ line: 54,
48786
+ column: 18
49211
48787
  }
49212
48788
  },
49213
- line: 68
48789
+ line: 37
49214
48790
  },
49215
48791
  "2": {
49216
48792
  name: "(anonymous_2)",
49217
48793
  decl: {
49218
48794
  start: {
49219
- line: 88,
49220
- column: 23
48795
+ line: 42,
48796
+ column: 27
49221
48797
  },
49222
48798
  end: {
49223
- line: 88,
49224
- column: 24
48799
+ line: 42,
48800
+ column: 28
49225
48801
  }
49226
48802
  },
49227
48803
  loc: {
49228
48804
  start: {
49229
- line: 89,
49230
- column: 12
48805
+ line: 43,
48806
+ column: 18
49231
48807
  },
49232
48808
  end: {
49233
- line: 117,
49234
- column: 18
48809
+ line: 51,
48810
+ column: 23
49235
48811
  }
49236
48812
  },
49237
- line: 89
48813
+ line: 43
49238
48814
  },
49239
48815
  "3": {
49240
48816
  name: "(anonymous_3)",
49241
48817
  decl: {
49242
48818
  start: {
49243
- line: 105,
49244
- column: 27
48819
+ line: 62,
48820
+ column: 37
49245
48821
  },
49246
48822
  end: {
49247
- line: 105,
49248
- column: 28
48823
+ line: 62,
48824
+ column: 38
49249
48825
  }
49250
48826
  },
49251
48827
  loc: {
49252
48828
  start: {
49253
- line: 106,
49254
- column: 18
48829
+ line: 63,
48830
+ column: 14
49255
48831
  },
49256
48832
  end: {
49257
- line: 114,
48833
+ line: 73,
48834
+ column: 16
48835
+ }
48836
+ },
48837
+ line: 63
48838
+ },
48839
+ "4": {
48840
+ name: "(anonymous_4)",
48841
+ decl: {
48842
+ start: {
48843
+ line: 65,
48844
+ column: 22
48845
+ },
48846
+ end: {
48847
+ line: 65,
49258
48848
  column: 23
49259
48849
  }
49260
48850
  },
49261
- line: 106
48851
+ loc: {
48852
+ start: {
48853
+ line: 66,
48854
+ column: 18
48855
+ },
48856
+ end: {
48857
+ line: 70,
48858
+ column: 20
48859
+ }
48860
+ },
48861
+ line: 66
48862
+ },
48863
+ "5": {
48864
+ name: "(anonymous_5)",
48865
+ decl: {
48866
+ start: {
48867
+ line: 77,
48868
+ column: 31
48869
+ },
48870
+ end: {
48871
+ line: 77,
48872
+ column: 32
48873
+ }
48874
+ },
48875
+ loc: {
48876
+ start: {
48877
+ line: 78,
48878
+ column: 14
48879
+ },
48880
+ end: {
48881
+ line: 86,
48882
+ column: 19
48883
+ }
48884
+ },
48885
+ line: 78
49262
48886
  }
49263
48887
  },
49264
48888
  branchMap: {
49265
48889
  "0": {
49266
48890
  loc: {
49267
48891
  start: {
49268
- line: 12,
48892
+ line: 10,
49269
48893
  column: 48
49270
48894
  },
49271
48895
  end: {
49272
- line: 12,
48896
+ line: 10,
49273
48897
  column: 62
49274
48898
  }
49275
48899
  },
49276
48900
  type: "default-arg",
49277
48901
  locations: [{
49278
48902
  start: {
49279
- line: 12,
48903
+ line: 10,
49280
48904
  column: 60
49281
48905
  },
49282
48906
  end: {
49283
- line: 12,
48907
+ line: 10,
49284
48908
  column: 62
49285
48909
  }
49286
48910
  }],
49287
- line: 12
48911
+ line: 10
49288
48912
  }
49289
48913
  },
49290
48914
  s: {
@@ -49297,21 +48921,21 @@ function cov_1kbh5b1kc1() {
49297
48921
  "6": 0,
49298
48922
  "7": 0,
49299
48923
  "8": 0,
49300
- "9": 0,
49301
- "10": 0,
49302
- "11": 0
48924
+ "9": 0
49303
48925
  },
49304
48926
  f: {
49305
48927
  "0": 0,
49306
48928
  "1": 0,
49307
48929
  "2": 0,
49308
- "3": 0
48930
+ "3": 0,
48931
+ "4": 0,
48932
+ "5": 0
49309
48933
  },
49310
48934
  b: {
49311
48935
  "0": [0]
49312
48936
  },
49313
48937
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
49314
- hash: "ce6339704651e62412a583c484e0d37735783869"
48938
+ hash: "5b368d46582b264b386ff666676b3bcf2dc5b6d2"
49315
48939
  };
49316
48940
  var coverage = global[gcv] || (global[gcv] = {});
49317
48941
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -49327,6 +48951,8 @@ function cov_1kbh5b1kc1() {
49327
48951
  return actualCoverage;
49328
48952
  }
49329
48953
  cov_1kbh5b1kc1();
48954
+ 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; }
48955
+ 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; }
49330
48956
  cov_1kbh5b1kc1().s[0]++;
49331
48957
  var FooterWithLinkGroups = function FooterWithLinkGroups(_ref) {
49332
48958
  var configurations = _ref.configurations,
@@ -49341,23 +48967,12 @@ var FooterWithLinkGroups = function FooterWithLinkGroups(_ref) {
49341
48967
  _ref3$content = _ref3.content,
49342
48968
  logo = _ref3$content.logo,
49343
48969
  description = _ref3$content.description,
49344
- contentPosition = _ref3$content.position,
48970
+ contact = _ref3$content.contact,
49345
48971
  copyrightText = _ref3$content.copyrightText,
49346
- socialLinks = _ref3$content.socialLinks,
49347
48972
  columns = _ref3.columns,
49348
48973
  src = _ref3.backgroundImage.src;
49349
- var isDefaultLayout = (cov_1kbh5b1kc1().s[3]++, contentPosition === POSITIONS.RIGHT.label);
49350
- var isCenterLayout = (cov_1kbh5b1kc1().s[4]++, contentPosition === POSITIONS.CENTER.label);
49351
- var baseClasses = (cov_1kbh5b1kc1().s[5]++, classnames("flex gap-16", {
49352
- "flex-col lg:flex-row": isDefaultLayout,
49353
- "flex-col-reverse lg:flex-row-reverse": contentPosition === POSITIONS.LEFT.label,
49354
- "flex-col": isCenterLayout
49355
- }));
49356
- var columnsBaseClasses = (cov_1kbh5b1kc1().s[6]++, classnames({
49357
- "grid grid-cols-2 sm:grid-cols-4 gap-8 lg:gap-6 flex-grow": true,
49358
- "w-3/5 mx-auto": isCenterLayout
49359
- }));
49360
- cov_1kbh5b1kc1().s[7]++;
48974
+ var baseClasses = (cov_1kbh5b1kc1().s[3]++, "grid grid-cols-12 sm:gap-x-4");
48975
+ cov_1kbh5b1kc1().s[4]++;
49361
48976
  return /*#__PURE__*/React__default.createElement(StyledWrapper, {
49362
48977
  as: "footer",
49363
48978
  backgroundImage: mergeLeft({
@@ -49367,79 +48982,638 @@ var FooterWithLinkGroups = function FooterWithLinkGroups(_ref) {
49367
48982
  design: design.body,
49368
48983
  id: id
49369
48984
  }, /*#__PURE__*/React__default.createElement("div", {
49370
- className: baseClasses
48985
+ className: classnames("neeto-site-block-wrapper", baseClasses)
49371
48986
  }, /*#__PURE__*/React__default.createElement("div", {
49372
- className: classnames("flex flex-col", {
49373
- "w-full items-start lg:w-1/3": !isCenterLayout
49374
- })
48987
+ className: "col-span-12 sm:col-span-5"
49375
48988
  }, /*#__PURE__*/React__default.createElement(StyledImage, {
49376
48989
  design: design.logo,
49377
48990
  src: logo.src
49378
48991
  }), /*#__PURE__*/React__default.createElement(Typography, {
49379
- className: classnames({
49380
- "text-center": isCenterLayout
49381
- }),
49382
48992
  component: "p",
49383
48993
  style: design.description
49384
- }, description), /*#__PURE__*/React__default.createElement("div", {
49385
- className: classnames("flex space-x-6", {
49386
- "justify-center": isCenterLayout
49387
- })
49388
- }, socialLinks.map(function (item, index) {
49389
- cov_1kbh5b1kc1().f[1]++;
49390
- var Icon = (cov_1kbh5b1kc1().s[8]++, SOCIAL_ICONS[item.name]);
49391
- cov_1kbh5b1kc1().s[9]++;
49392
- return /*#__PURE__*/React__default.createElement(StyledWrapper, {
49393
- as: "a",
49394
- design: design.columnLinks,
49395
- href: item.href,
49396
- key: getUniqueKey(item.name, index)
49397
- }, /*#__PURE__*/React__default.createElement(Icon, {
49398
- className: "hover:text-gray-800",
49399
- size: design.socialIcon.width
49400
- }));
49401
- }))), /*#__PURE__*/React__default.createElement("div", {
49402
- className: columnsBaseClasses
48994
+ }, description)), /*#__PURE__*/React__default.createElement("div", {
48995
+ className: "col-span-12 mb-4 grid grid-cols-4 sm:col-span-4 sm:col-start-7 sm:mb-0"
49403
48996
  }, columns.map(function (_ref4) {
49404
48997
  var title = _ref4.title,
49405
48998
  links = _ref4.links;
49406
- cov_1kbh5b1kc1().f[2]++;
49407
- cov_1kbh5b1kc1().s[10]++;
48999
+ cov_1kbh5b1kc1().f[1]++;
49000
+ cov_1kbh5b1kc1().s[5]++;
49408
49001
  return /*#__PURE__*/React__default.createElement("div", {
49409
- key: title,
49410
- className: classnames("flex flex-col", {
49411
- "items-start": !isCenterLayout,
49412
- "text-center": isCenterLayout
49413
- })
49002
+ className: "col-span-2",
49003
+ key: title
49414
49004
  }, /*#__PURE__*/React__default.createElement(Typography, {
49415
49005
  isTitle: true,
49416
- className: "uppercase",
49417
49006
  component: "h3",
49418
49007
  style: design.columnTitle
49419
49008
  }, title), /*#__PURE__*/React__default.createElement("ul", {
49420
- className: "space-y-4",
49009
+ className: "space-y-1",
49421
49010
  role: "list"
49422
49011
  }, links.map(function (_ref5, index) {
49423
49012
  var action = _ref5.action,
49424
49013
  name = _ref5.name,
49425
49014
  href = _ref5.href;
49426
- cov_1kbh5b1kc1().f[3]++;
49427
- cov_1kbh5b1kc1().s[11]++;
49015
+ cov_1kbh5b1kc1().f[2]++;
49016
+ cov_1kbh5b1kc1().s[6]++;
49428
49017
  return /*#__PURE__*/React__default.createElement("li", {
49429
49018
  key: getUniqueKey(name, index)
49430
49019
  }, /*#__PURE__*/React__default.createElement(LinkElement, {
49431
49020
  action: action,
49432
- className: "hover:text-gray-800",
49021
+ className: "hover:text-gray-700",
49433
49022
  label: name,
49434
49023
  style: design.columnLinks,
49435
49024
  to: href
49436
49025
  }));
49437
49026
  })));
49438
- }))), /*#__PURE__*/React__default.createElement("div", {
49439
- className: "mt-12 border-t border-gray-200 pt-8"
49440
- }), /*#__PURE__*/React__default.createElement(Typography, {
49027
+ })), /*#__PURE__*/React__default.createElement("div", {
49028
+ className: "col-span-12 space-y-2 sm:col-span-2"
49029
+ }, /*#__PURE__*/React__default.createElement(Typography, {
49030
+ isTitle: true,
49031
+ component: "h3",
49032
+ style: design.columnTitle
49033
+ }, contact.title), /*#__PURE__*/React__default.createElement("div", {
49034
+ className: "flex gap-x-1"
49035
+ }, contact.socialLinks.map(function (_icon, index) {
49036
+ cov_1kbh5b1kc1().f[3]++;
49037
+ cov_1kbh5b1kc1().s[7]++;
49038
+ return /*#__PURE__*/React__default.createElement(LinkElement, _extends$4({
49039
+ key: getUniqueKey(_icon.name, index),
49040
+ icon: function icon() {
49041
+ cov_1kbh5b1kc1().f[4]++;
49042
+ cov_1kbh5b1kc1().s[8]++;
49043
+ return renderIcon(_objectSpread$3({
49044
+ name: _icon.name,
49045
+ className: "text-red-60 hover:text-gray-600"
49046
+ }, design.socialIcon));
49047
+ }
49048
+ }, _icon));
49049
+ })), /*#__PURE__*/React__default.createElement("ul", {
49050
+ className: "space-y-1",
49051
+ role: "list"
49052
+ }, contact.other.map(function (_ref6, index) {
49053
+ var action = _ref6.action,
49054
+ value = _ref6.value,
49055
+ to = _ref6.to;
49056
+ cov_1kbh5b1kc1().f[5]++;
49057
+ cov_1kbh5b1kc1().s[9]++;
49058
+ return /*#__PURE__*/React__default.createElement("li", {
49059
+ key: getUniqueKey(value, index)
49060
+ }, /*#__PURE__*/React__default.createElement(LinkElement, {
49061
+ action: action,
49062
+ className: "hover:text-gray-700",
49063
+ label: value,
49064
+ style: design.columnLinks,
49065
+ to: to
49066
+ }));
49067
+ }))), /*#__PURE__*/React__default.createElement(Typography, {
49068
+ className: "col-span-12 mt-8 sm:mt-0",
49069
+ style: design.copyrightText
49070
+ }, copyrightText)));
49071
+ };
49072
+
49073
+ function cov_65dwd4u8l() {
49074
+ var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FooterWithLinks.jsx";
49075
+ var hash = "352c1952e8c96f1f40827dba3437bc73d750aba1";
49076
+ var global = new Function("return this")();
49077
+ var gcv = "__coverage__";
49078
+ var coverageData = {
49079
+ path: "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/FooterWithLinks.jsx",
49080
+ statementMap: {
49081
+ "0": {
49082
+ start: {
49083
+ line: 10,
49084
+ column: 24
49085
+ },
49086
+ end: {
49087
+ line: 143,
49088
+ column: 1
49089
+ }
49090
+ },
49091
+ "1": {
49092
+ start: {
49093
+ line: 11,
49094
+ column: 33
49095
+ },
49096
+ end: {
49097
+ line: 11,
49098
+ column: 47
49099
+ }
49100
+ },
49101
+ "2": {
49102
+ start: {
49103
+ line: 18,
49104
+ column: 6
49105
+ },
49106
+ end: {
49107
+ line: 18,
49108
+ column: 16
49109
+ }
49110
+ },
49111
+ "3": {
49112
+ start: {
49113
+ line: 21,
49114
+ column: 4
49115
+ },
49116
+ end: {
49117
+ line: 21,
49118
+ column: 62
49119
+ }
49120
+ },
49121
+ "4": {
49122
+ start: {
49123
+ line: 23,
49124
+ column: 2
49125
+ },
49126
+ end: {
49127
+ line: 84,
49128
+ column: 3
49129
+ }
49130
+ },
49131
+ "5": {
49132
+ start: {
49133
+ line: 24,
49134
+ column: 4
49135
+ },
49136
+ end: {
49137
+ line: 83,
49138
+ column: 6
49139
+ }
49140
+ },
49141
+ "6": {
49142
+ start: {
49143
+ line: 52,
49144
+ column: 14
49145
+ },
49146
+ end: {
49147
+ line: 57,
49148
+ column: 16
49149
+ }
49150
+ },
49151
+ "7": {
49152
+ start: {
49153
+ line: 62,
49154
+ column: 14
49155
+ },
49156
+ end: {
49157
+ line: 72,
49158
+ column: 16
49159
+ }
49160
+ },
49161
+ "8": {
49162
+ start: {
49163
+ line: 65,
49164
+ column: 18
49165
+ },
49166
+ end: {
49167
+ line: 69,
49168
+ column: 20
49169
+ }
49170
+ },
49171
+ "9": {
49172
+ start: {
49173
+ line: 86,
49174
+ column: 2
49175
+ },
49176
+ end: {
49177
+ line: 142,
49178
+ column: 4
49179
+ }
49180
+ },
49181
+ "10": {
49182
+ start: {
49183
+ line: 104,
49184
+ column: 12
49185
+ },
49186
+ end: {
49187
+ line: 109,
49188
+ column: 14
49189
+ }
49190
+ },
49191
+ "11": {
49192
+ start: {
49193
+ line: 121,
49194
+ column: 12
49195
+ },
49196
+ end: {
49197
+ line: 131,
49198
+ column: 14
49199
+ }
49200
+ },
49201
+ "12": {
49202
+ start: {
49203
+ line: 124,
49204
+ column: 16
49205
+ },
49206
+ end: {
49207
+ line: 128,
49208
+ column: 18
49209
+ }
49210
+ }
49211
+ },
49212
+ fnMap: {
49213
+ "0": {
49214
+ name: "(anonymous_0)",
49215
+ decl: {
49216
+ start: {
49217
+ line: 10,
49218
+ column: 24
49219
+ },
49220
+ end: {
49221
+ line: 10,
49222
+ column: 25
49223
+ }
49224
+ },
49225
+ loc: {
49226
+ start: {
49227
+ line: 10,
49228
+ column: 68
49229
+ },
49230
+ end: {
49231
+ line: 143,
49232
+ column: 1
49233
+ }
49234
+ },
49235
+ line: 10
49236
+ },
49237
+ "1": {
49238
+ name: "(anonymous_1)",
49239
+ decl: {
49240
+ start: {
49241
+ line: 51,
49242
+ column: 23
49243
+ },
49244
+ end: {
49245
+ line: 51,
49246
+ column: 24
49247
+ }
49248
+ },
49249
+ loc: {
49250
+ start: {
49251
+ line: 52,
49252
+ column: 14
49253
+ },
49254
+ end: {
49255
+ line: 57,
49256
+ column: 16
49257
+ }
49258
+ },
49259
+ line: 52
49260
+ },
49261
+ "2": {
49262
+ name: "(anonymous_2)",
49263
+ decl: {
49264
+ start: {
49265
+ line: 61,
49266
+ column: 29
49267
+ },
49268
+ end: {
49269
+ line: 61,
49270
+ column: 30
49271
+ }
49272
+ },
49273
+ loc: {
49274
+ start: {
49275
+ line: 62,
49276
+ column: 14
49277
+ },
49278
+ end: {
49279
+ line: 72,
49280
+ column: 16
49281
+ }
49282
+ },
49283
+ line: 62
49284
+ },
49285
+ "3": {
49286
+ name: "(anonymous_3)",
49287
+ decl: {
49288
+ start: {
49289
+ line: 64,
49290
+ column: 22
49291
+ },
49292
+ end: {
49293
+ line: 64,
49294
+ column: 23
49295
+ }
49296
+ },
49297
+ loc: {
49298
+ start: {
49299
+ line: 65,
49300
+ column: 18
49301
+ },
49302
+ end: {
49303
+ line: 69,
49304
+ column: 20
49305
+ }
49306
+ },
49307
+ line: 65
49308
+ },
49309
+ "4": {
49310
+ name: "(anonymous_4)",
49311
+ decl: {
49312
+ start: {
49313
+ line: 103,
49314
+ column: 21
49315
+ },
49316
+ end: {
49317
+ line: 103,
49318
+ column: 22
49319
+ }
49320
+ },
49321
+ loc: {
49322
+ start: {
49323
+ line: 104,
49324
+ column: 12
49325
+ },
49326
+ end: {
49327
+ line: 109,
49328
+ column: 14
49329
+ }
49330
+ },
49331
+ line: 104
49332
+ },
49333
+ "5": {
49334
+ name: "(anonymous_5)",
49335
+ decl: {
49336
+ start: {
49337
+ line: 120,
49338
+ column: 27
49339
+ },
49340
+ end: {
49341
+ line: 120,
49342
+ column: 28
49343
+ }
49344
+ },
49345
+ loc: {
49346
+ start: {
49347
+ line: 121,
49348
+ column: 12
49349
+ },
49350
+ end: {
49351
+ line: 131,
49352
+ column: 14
49353
+ }
49354
+ },
49355
+ line: 121
49356
+ },
49357
+ "6": {
49358
+ name: "(anonymous_6)",
49359
+ decl: {
49360
+ start: {
49361
+ line: 123,
49362
+ column: 20
49363
+ },
49364
+ end: {
49365
+ line: 123,
49366
+ column: 21
49367
+ }
49368
+ },
49369
+ loc: {
49370
+ start: {
49371
+ line: 124,
49372
+ column: 16
49373
+ },
49374
+ end: {
49375
+ line: 128,
49376
+ column: 18
49377
+ }
49378
+ },
49379
+ line: 124
49380
+ }
49381
+ },
49382
+ branchMap: {
49383
+ "0": {
49384
+ loc: {
49385
+ start: {
49386
+ line: 10,
49387
+ column: 43
49388
+ },
49389
+ end: {
49390
+ line: 10,
49391
+ column: 57
49392
+ }
49393
+ },
49394
+ type: "default-arg",
49395
+ locations: [{
49396
+ start: {
49397
+ line: 10,
49398
+ column: 55
49399
+ },
49400
+ end: {
49401
+ line: 10,
49402
+ column: 57
49403
+ }
49404
+ }],
49405
+ line: 10
49406
+ },
49407
+ "1": {
49408
+ loc: {
49409
+ start: {
49410
+ line: 23,
49411
+ column: 2
49412
+ },
49413
+ end: {
49414
+ line: 84,
49415
+ column: 3
49416
+ }
49417
+ },
49418
+ type: "if",
49419
+ locations: [{
49420
+ start: {
49421
+ line: 23,
49422
+ column: 2
49423
+ },
49424
+ end: {
49425
+ line: 84,
49426
+ column: 3
49427
+ }
49428
+ }, {
49429
+ start: {
49430
+ line: undefined,
49431
+ column: undefined
49432
+ },
49433
+ end: {
49434
+ line: undefined,
49435
+ column: undefined
49436
+ }
49437
+ }],
49438
+ line: 23
49439
+ }
49440
+ },
49441
+ s: {
49442
+ "0": 0,
49443
+ "1": 0,
49444
+ "2": 0,
49445
+ "3": 0,
49446
+ "4": 0,
49447
+ "5": 0,
49448
+ "6": 0,
49449
+ "7": 0,
49450
+ "8": 0,
49451
+ "9": 0,
49452
+ "10": 0,
49453
+ "11": 0,
49454
+ "12": 0
49455
+ },
49456
+ f: {
49457
+ "0": 0,
49458
+ "1": 0,
49459
+ "2": 0,
49460
+ "3": 0,
49461
+ "4": 0,
49462
+ "5": 0,
49463
+ "6": 0
49464
+ },
49465
+ b: {
49466
+ "0": [0],
49467
+ "1": [0, 0]
49468
+ },
49469
+ _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
49470
+ hash: "352c1952e8c96f1f40827dba3437bc73d750aba1"
49471
+ };
49472
+ var coverage = global[gcv] || (global[gcv] = {});
49473
+ if (!coverage[path] || coverage[path].hash !== hash) {
49474
+ coverage[path] = coverageData;
49475
+ }
49476
+ var actualCoverage = coverage[path];
49477
+ {
49478
+ // @ts-ignore
49479
+ cov_65dwd4u8l = function () {
49480
+ return actualCoverage;
49481
+ };
49482
+ }
49483
+ return actualCoverage;
49484
+ }
49485
+ cov_65dwd4u8l();
49486
+ 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; }
49487
+ 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; }
49488
+ cov_65dwd4u8l().s[0]++;
49489
+ var FooterWithLinks = function FooterWithLinks(_ref) {
49490
+ var configurations = _ref.configurations,
49491
+ _ref$className = _ref.className,
49492
+ className = _ref$className === void 0 ? (cov_65dwd4u8l().b[0][0]++, "") : _ref$className,
49493
+ id = _ref.id;
49494
+ cov_65dwd4u8l().f[0]++;
49495
+ var _ref2 = (cov_65dwd4u8l().s[1]++, configurations),
49496
+ properties = _ref2.properties,
49497
+ design = _ref2.design;
49498
+ var _ref3 = (cov_65dwd4u8l().s[2]++, properties),
49499
+ _ref3$content = _ref3.content,
49500
+ logo = _ref3$content.logo,
49501
+ copyrightText = _ref3$content.copyrightText,
49502
+ links = _ref3.links,
49503
+ socialIcons = _ref3.socialIcons,
49504
+ isPositionCentre = _ref3.isPositionCentre,
49505
+ src = _ref3.backgroundImage.src;
49506
+ var baseClasses = (cov_65dwd4u8l().s[3]++, "grid grid-cols-12 gap-x-2 sm:gap-x-4 grid-flow-row-dense");
49507
+ cov_65dwd4u8l().s[4]++;
49508
+ if (isPositionCentre) {
49509
+ cov_65dwd4u8l().b[1][0]++;
49510
+ cov_65dwd4u8l().s[5]++;
49511
+ return /*#__PURE__*/React__default.createElement(StyledWrapper, {
49512
+ as: "footer",
49513
+ backgroundImage: mergeLeft({
49514
+ src: src
49515
+ }, design.backgroundImage),
49516
+ className: className,
49517
+ design: design.body,
49518
+ id: id
49519
+ }, /*#__PURE__*/React__default.createElement("div", {
49520
+ className: classnames("neeto-site-block-wrapper gap-y-8 ", baseClasses)
49521
+ }, /*#__PURE__*/React__default.createElement(StyledWrapper, {
49522
+ as: "hr",
49523
+ className: "col-span-12 flex sm:hidden",
49524
+ design: {
49525
+ borderColor: "#C2C8CC"
49526
+ }
49527
+ }), /*#__PURE__*/React__default.createElement("div", {
49528
+ 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"
49529
+ }, /*#__PURE__*/React__default.createElement(StyledImage, {
49530
+ className: "col-span-4 mb-4 sm:mb-0",
49531
+ design: design.logo,
49532
+ src: logo.src
49533
+ }), links.map(function (link, index) {
49534
+ cov_65dwd4u8l().f[1]++;
49535
+ cov_65dwd4u8l().s[6]++;
49536
+ return /*#__PURE__*/React__default.createElement(LinkElement, _extends$4({
49537
+ className: "col-span-1 mt-2 hover:text-gray-700 sm:mt-0",
49538
+ key: getUniqueKey(link.label, index)
49539
+ }, link, {
49540
+ style: design.links
49541
+ }));
49542
+ })), /*#__PURE__*/React__default.createElement("div", {
49543
+ className: "col-span-12 flex justify-center gap-x-4 sm:col-span-8 sm:col-start-3"
49544
+ }, socialIcons.map(function (_icon, index) {
49545
+ cov_65dwd4u8l().f[2]++;
49546
+ cov_65dwd4u8l().s[7]++;
49547
+ return /*#__PURE__*/React__default.createElement(LinkElement, _extends$4({
49548
+ key: getUniqueKey(_icon.name, index),
49549
+ icon: function icon() {
49550
+ cov_65dwd4u8l().f[3]++;
49551
+ cov_65dwd4u8l().s[8]++;
49552
+ return renderIcon(_objectSpread$2({
49553
+ name: _icon.name,
49554
+ className: "hover:text-gray-600"
49555
+ }, design.socialIcon));
49556
+ }
49557
+ }, _icon));
49558
+ })), /*#__PURE__*/React__default.createElement(Typography, {
49559
+ className: "col-span-12 flex justify-center sm:col-span-8 sm:col-start-3",
49560
+ style: design.copyrightText
49561
+ }, copyrightText)));
49562
+ } else {
49563
+ cov_65dwd4u8l().b[1][1]++;
49564
+ }
49565
+ cov_65dwd4u8l().s[9]++;
49566
+ return /*#__PURE__*/React__default.createElement(StyledWrapper, {
49567
+ as: "footer",
49568
+ backgroundImage: mergeLeft({
49569
+ src: src
49570
+ }, design.backgroundImage),
49571
+ className: className,
49572
+ design: design.body,
49573
+ id: id
49574
+ }, /*#__PURE__*/React__default.createElement("div", {
49575
+ className: classnames("neeto-site-block-wrapper gap-y-8 ", baseClasses)
49576
+ }, /*#__PURE__*/React__default.createElement(StyledImage, {
49577
+ className: "col-span-12 sm:col-span-2",
49578
+ design: design.logo,
49579
+ src: logo.src
49580
+ }), /*#__PURE__*/React__default.createElement("div", {
49581
+ 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"
49582
+ }, links.map(function (link, index) {
49583
+ cov_65dwd4u8l().f[4]++;
49584
+ cov_65dwd4u8l().s[10]++;
49585
+ return /*#__PURE__*/React__default.createElement(LinkElement, _extends$4({
49586
+ className: "col-span-1 hover:text-gray-700",
49587
+ key: getUniqueKey(link.label, index)
49588
+ }, link, {
49589
+ style: design.links
49590
+ }));
49591
+ })), /*#__PURE__*/React__default.createElement(StyledWrapper, {
49592
+ as: "hr",
49593
+ className: "col-span-12",
49594
+ design: {
49595
+ borderColor: "#C2C8CC"
49596
+ }
49597
+ }), /*#__PURE__*/React__default.createElement("div", {
49598
+ className: "col-span-12 flex justify-center gap-x-4 sm:col-span-4 sm:col-start-9 sm:justify-end"
49599
+ }, socialIcons.map(function (_icon2, index) {
49600
+ cov_65dwd4u8l().f[5]++;
49601
+ cov_65dwd4u8l().s[11]++;
49602
+ return /*#__PURE__*/React__default.createElement(LinkElement, _extends$4({
49603
+ key: getUniqueKey(_icon2.name, index),
49604
+ icon: function icon() {
49605
+ cov_65dwd4u8l().f[6]++;
49606
+ cov_65dwd4u8l().s[12]++;
49607
+ return renderIcon(_objectSpread$2({
49608
+ name: _icon2.name,
49609
+ className: "hover:text-gray-600"
49610
+ }, design.socialIcon));
49611
+ }
49612
+ }, _icon2));
49613
+ })), /*#__PURE__*/React__default.createElement(Typography, {
49614
+ className: "col-span-12 flex justify-center sm:col-span-6 sm:col-start-1 sm:justify-start",
49441
49615
  style: design.copyrightText
49442
- }, copyrightText));
49616
+ }, copyrightText)));
49443
49617
  };
49444
49618
 
49445
49619
  function cov_2i9807t0bv() {
@@ -50986,7 +51160,7 @@ var GridWithImage = function GridWithImage(_ref) {
50986
51160
 
50987
51161
  function cov_23txpdjvdc() {
50988
51162
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/HeaderWithLeftLinks.jsx";
50989
- var hash = "d99eb257143ad5befa2103a68faeaa8f02342189";
51163
+ var hash = "130262e38345d8837990b27c08a01720377a8c74";
50990
51164
  var global = new Function("return this")();
50991
51165
  var gcv = "__coverage__";
50992
51166
  var coverageData = {
@@ -50998,7 +51172,7 @@ function cov_23txpdjvdc() {
50998
51172
  column: 28
50999
51173
  },
51000
51174
  end: {
51001
- line: 106,
51175
+ line: 114,
51002
51176
  column: 1
51003
51177
  }
51004
51178
  },
@@ -51058,7 +51232,7 @@ function cov_23txpdjvdc() {
51058
51232
  column: 2
51059
51233
  },
51060
51234
  end: {
51061
- line: 105,
51235
+ line: 113,
51062
51236
  column: 4
51063
51237
  }
51064
51238
  },
@@ -51078,7 +51252,7 @@ function cov_23txpdjvdc() {
51078
51252
  column: 12
51079
51253
  },
51080
51254
  end: {
51081
- line: 58,
51255
+ line: 62,
51082
51256
  column: 14
51083
51257
  }
51084
51258
  },
@@ -51088,78 +51262,78 @@ function cov_23txpdjvdc() {
51088
51262
  column: 16
51089
51263
  },
51090
51264
  end: {
51091
- line: 56,
51092
- column: 74
51265
+ line: 60,
51266
+ column: 18
51093
51267
  }
51094
51268
  },
51095
51269
  "10": {
51096
51270
  start: {
51097
- line: 63,
51271
+ line: 67,
51098
51272
  column: 25
51099
51273
  },
51100
51274
  end: {
51101
- line: 63,
51275
+ line: 67,
51102
51276
  column: 54
51103
51277
  }
51104
51278
  },
51105
51279
  "11": {
51106
51280
  start: {
51107
- line: 63,
51281
+ line: 67,
51108
51282
  column: 48
51109
51283
  },
51110
51284
  end: {
51111
- line: 63,
51285
+ line: 67,
51112
51286
  column: 53
51113
51287
  }
51114
51288
  },
51115
51289
  "12": {
51116
51290
  start: {
51117
- line: 69,
51291
+ line: 73,
51118
51292
  column: 25
51119
51293
  },
51120
51294
  end: {
51121
- line: 69,
51295
+ line: 73,
51122
51296
  column: 54
51123
51297
  }
51124
51298
  },
51125
51299
  "13": {
51126
51300
  start: {
51127
- line: 69,
51301
+ line: 73,
51128
51302
  column: 48
51129
51303
  },
51130
51304
  end: {
51131
- line: 69,
51305
+ line: 73,
51132
51306
  column: 53
51133
51307
  }
51134
51308
  },
51135
51309
  "14": {
51136
51310
  start: {
51137
- line: 76,
51311
+ line: 80,
51138
51312
  column: 14
51139
51313
  },
51140
51314
  end: {
51141
- line: 83,
51315
+ line: 87,
51142
51316
  column: 16
51143
51317
  }
51144
51318
  },
51145
51319
  "15": {
51146
51320
  start: {
51147
- line: 90,
51321
+ line: 94,
51148
51322
  column: 14
51149
51323
  },
51150
51324
  end: {
51151
- line: 99,
51325
+ line: 107,
51152
51326
  column: 16
51153
51327
  }
51154
51328
  },
51155
51329
  "16": {
51156
51330
  start: {
51157
- line: 97,
51331
+ line: 101,
51158
51332
  column: 18
51159
51333
  },
51160
51334
  end: {
51161
- line: 97,
51162
- column: 76
51335
+ line: 105,
51336
+ column: 20
51163
51337
  }
51164
51338
  }
51165
51339
  },
@@ -51182,7 +51356,7 @@ function cov_23txpdjvdc() {
51182
51356
  column: 72
51183
51357
  },
51184
51358
  end: {
51185
- line: 106,
51359
+ line: 114,
51186
51360
  column: 1
51187
51361
  }
51188
51362
  },
@@ -51230,7 +51404,7 @@ function cov_23txpdjvdc() {
51230
51404
  column: 12
51231
51405
  },
51232
51406
  end: {
51233
- line: 58,
51407
+ line: 62,
51234
51408
  column: 14
51235
51409
  }
51236
51410
  },
@@ -51254,8 +51428,8 @@ function cov_23txpdjvdc() {
51254
51428
  column: 16
51255
51429
  },
51256
51430
  end: {
51257
- line: 56,
51258
- column: 74
51431
+ line: 60,
51432
+ column: 18
51259
51433
  }
51260
51434
  },
51261
51435
  line: 56
@@ -51264,169 +51438,169 @@ function cov_23txpdjvdc() {
51264
51438
  name: "(anonymous_4)",
51265
51439
  decl: {
51266
51440
  start: {
51267
- line: 63,
51441
+ line: 67,
51268
51442
  column: 19
51269
51443
  },
51270
51444
  end: {
51271
- line: 63,
51445
+ line: 67,
51272
51446
  column: 20
51273
51447
  }
51274
51448
  },
51275
51449
  loc: {
51276
51450
  start: {
51277
- line: 63,
51451
+ line: 67,
51278
51452
  column: 25
51279
51453
  },
51280
51454
  end: {
51281
- line: 63,
51455
+ line: 67,
51282
51456
  column: 54
51283
51457
  }
51284
51458
  },
51285
- line: 63
51459
+ line: 67
51286
51460
  },
51287
51461
  "5": {
51288
51462
  name: "(anonymous_5)",
51289
51463
  decl: {
51290
51464
  start: {
51291
- line: 63,
51465
+ line: 67,
51292
51466
  column: 40
51293
51467
  },
51294
51468
  end: {
51295
- line: 63,
51469
+ line: 67,
51296
51470
  column: 41
51297
51471
  }
51298
51472
  },
51299
51473
  loc: {
51300
51474
  start: {
51301
- line: 63,
51475
+ line: 67,
51302
51476
  column: 48
51303
51477
  },
51304
51478
  end: {
51305
- line: 63,
51479
+ line: 67,
51306
51480
  column: 53
51307
51481
  }
51308
51482
  },
51309
- line: 63
51483
+ line: 67
51310
51484
  },
51311
51485
  "6": {
51312
51486
  name: "(anonymous_6)",
51313
51487
  decl: {
51314
51488
  start: {
51315
- line: 69,
51489
+ line: 73,
51316
51490
  column: 19
51317
51491
  },
51318
51492
  end: {
51319
- line: 69,
51493
+ line: 73,
51320
51494
  column: 20
51321
51495
  }
51322
51496
  },
51323
51497
  loc: {
51324
51498
  start: {
51325
- line: 69,
51499
+ line: 73,
51326
51500
  column: 25
51327
51501
  },
51328
51502
  end: {
51329
- line: 69,
51503
+ line: 73,
51330
51504
  column: 54
51331
51505
  }
51332
51506
  },
51333
- line: 69
51507
+ line: 73
51334
51508
  },
51335
51509
  "7": {
51336
51510
  name: "(anonymous_7)",
51337
51511
  decl: {
51338
51512
  start: {
51339
- line: 69,
51513
+ line: 73,
51340
51514
  column: 40
51341
51515
  },
51342
51516
  end: {
51343
- line: 69,
51517
+ line: 73,
51344
51518
  column: 41
51345
51519
  }
51346
51520
  },
51347
51521
  loc: {
51348
51522
  start: {
51349
- line: 69,
51523
+ line: 73,
51350
51524
  column: 48
51351
51525
  },
51352
51526
  end: {
51353
- line: 69,
51527
+ line: 73,
51354
51528
  column: 53
51355
51529
  }
51356
51530
  },
51357
- line: 69
51531
+ line: 73
51358
51532
  },
51359
51533
  "8": {
51360
51534
  name: "(anonymous_8)",
51361
51535
  decl: {
51362
51536
  start: {
51363
- line: 75,
51537
+ line: 79,
51364
51538
  column: 34
51365
51539
  },
51366
51540
  end: {
51367
- line: 75,
51541
+ line: 79,
51368
51542
  column: 35
51369
51543
  }
51370
51544
  },
51371
51545
  loc: {
51372
51546
  start: {
51373
- line: 76,
51547
+ line: 80,
51374
51548
  column: 14
51375
51549
  },
51376
51550
  end: {
51377
- line: 83,
51551
+ line: 87,
51378
51552
  column: 16
51379
51553
  }
51380
51554
  },
51381
- line: 76
51555
+ line: 80
51382
51556
  },
51383
51557
  "9": {
51384
51558
  name: "(anonymous_9)",
51385
51559
  decl: {
51386
51560
  start: {
51387
- line: 89,
51561
+ line: 93,
51388
51562
  column: 34
51389
51563
  },
51390
51564
  end: {
51391
- line: 89,
51565
+ line: 93,
51392
51566
  column: 35
51393
51567
  }
51394
51568
  },
51395
51569
  loc: {
51396
51570
  start: {
51397
- line: 90,
51571
+ line: 94,
51398
51572
  column: 14
51399
51573
  },
51400
51574
  end: {
51401
- line: 99,
51575
+ line: 107,
51402
51576
  column: 16
51403
51577
  }
51404
51578
  },
51405
- line: 90
51579
+ line: 94
51406
51580
  },
51407
51581
  "10": {
51408
51582
  name: "(anonymous_10)",
51409
51583
  decl: {
51410
51584
  start: {
51411
- line: 96,
51585
+ line: 100,
51412
51586
  column: 22
51413
51587
  },
51414
51588
  end: {
51415
- line: 96,
51589
+ line: 100,
51416
51590
  column: 23
51417
51591
  }
51418
51592
  },
51419
51593
  loc: {
51420
51594
  start: {
51421
- line: 97,
51595
+ line: 101,
51422
51596
  column: 18
51423
51597
  },
51424
51598
  end: {
51425
- line: 97,
51426
- column: 76
51599
+ line: 105,
51600
+ column: 20
51427
51601
  }
51428
51602
  },
51429
- line: 97
51603
+ line: 101
51430
51604
  }
51431
51605
  },
51432
51606
  branchMap: {
@@ -51457,68 +51631,68 @@ function cov_23txpdjvdc() {
51457
51631
  "1": {
51458
51632
  loc: {
51459
51633
  start: {
51460
- line: 73,
51634
+ line: 77,
51461
51635
  column: 9
51462
51636
  },
51463
51637
  end: {
51464
- line: 86,
51638
+ line: 90,
51465
51639
  column: 9
51466
51640
  }
51467
51641
  },
51468
51642
  type: "binary-expr",
51469
51643
  locations: [{
51470
51644
  start: {
51471
- line: 73,
51645
+ line: 77,
51472
51646
  column: 9
51473
51647
  },
51474
51648
  end: {
51475
- line: 73,
51649
+ line: 77,
51476
51650
  column: 20
51477
51651
  }
51478
51652
  }, {
51479
51653
  start: {
51480
- line: 74,
51654
+ line: 78,
51481
51655
  column: 10
51482
51656
  },
51483
51657
  end: {
51484
- line: 85,
51658
+ line: 89,
51485
51659
  column: 16
51486
51660
  }
51487
51661
  }],
51488
- line: 73
51662
+ line: 77
51489
51663
  },
51490
51664
  "2": {
51491
51665
  loc: {
51492
51666
  start: {
51493
- line: 87,
51667
+ line: 91,
51494
51668
  column: 9
51495
51669
  },
51496
51670
  end: {
51497
- line: 102,
51671
+ line: 110,
51498
51672
  column: 9
51499
51673
  }
51500
51674
  },
51501
51675
  type: "binary-expr",
51502
51676
  locations: [{
51503
51677
  start: {
51504
- line: 87,
51678
+ line: 91,
51505
51679
  column: 9
51506
51680
  },
51507
51681
  end: {
51508
- line: 87,
51682
+ line: 91,
51509
51683
  column: 20
51510
51684
  }
51511
51685
  }, {
51512
51686
  start: {
51513
- line: 88,
51687
+ line: 92,
51514
51688
  column: 10
51515
51689
  },
51516
51690
  end: {
51517
- line: 101,
51691
+ line: 109,
51518
51692
  column: 16
51519
51693
  }
51520
51694
  }],
51521
- line: 87
51695
+ line: 91
51522
51696
  }
51523
51697
  },
51524
51698
  s: {
@@ -51559,7 +51733,7 @@ function cov_23txpdjvdc() {
51559
51733
  "2": [0, 0]
51560
51734
  },
51561
51735
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
51562
- hash: "d99eb257143ad5befa2103a68faeaa8f02342189"
51736
+ hash: "130262e38345d8837990b27c08a01720377a8c74"
51563
51737
  };
51564
51738
  var coverage = global[gcv] || (global[gcv] = {});
51565
51739
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -51575,6 +51749,8 @@ function cov_23txpdjvdc() {
51575
51749
  return actualCoverage;
51576
51750
  }
51577
51751
  cov_23txpdjvdc();
51752
+ 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; }
51753
+ 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; }
51578
51754
  cov_23txpdjvdc().s[0]++;
51579
51755
  var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51580
51756
  var configurations = _ref.configurations,
@@ -51628,7 +51804,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51628
51804
  }), /*#__PURE__*/React__default.createElement("div", {
51629
51805
  className: "col-span-5 col-start-8 hidden justify-end sm:col-span-4 sm:col-start-9 sm:flex"
51630
51806
  }, properties.icons.map(function (_ref9, index) {
51631
- var Icon = _ref9.icon,
51807
+ var name = _ref9.name,
51632
51808
  url = _ref9.url,
51633
51809
  action = _ref9.action;
51634
51810
  cov_23txpdjvdc().f[2]++;
@@ -51641,7 +51817,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51641
51817
  icon: function icon() {
51642
51818
  cov_23txpdjvdc().f[3]++;
51643
51819
  cov_23txpdjvdc().s[9]++;
51644
- return /*#__PURE__*/React__default.createElement(Icon, _extends$4({
51820
+ return renderIcon(_objectSpread$1({
51821
+ name: name,
51645
51822
  className: "hover:text-gray-700"
51646
51823
  }, design.icons));
51647
51824
  }
@@ -51691,7 +51868,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51691
51868
  }))), (cov_23txpdjvdc().b[2][0]++, isIconsOpen) && (cov_23txpdjvdc().b[2][1]++, /*#__PURE__*/React__default.createElement("div", {
51692
51869
  className: "fadeIn col-span-2 col-start-11 mt-3 flex flex-col justify-end space-y-1 lg:hidden"
51693
51870
  }, properties.icons.map(function (_ref11, index) {
51694
- var Icon = _ref11.icon,
51871
+ var name = _ref11.name,
51695
51872
  url = _ref11.url,
51696
51873
  action = _ref11.action;
51697
51874
  cov_23txpdjvdc().f[9]++;
@@ -51705,7 +51882,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51705
51882
  icon: function icon() {
51706
51883
  cov_23txpdjvdc().f[10]++;
51707
51884
  cov_23txpdjvdc().s[16]++;
51708
- return /*#__PURE__*/React__default.createElement(Icon, _extends$4({
51885
+ return renderIcon(_objectSpread$1({
51886
+ name: name,
51709
51887
  className: "hover:text-gray-700"
51710
51888
  }, design.icons));
51711
51889
  }
@@ -55633,5 +55811,5 @@ function cov_w8wufnrsd() {
55633
55811
  }
55634
55812
  cov_w8wufnrsd();
55635
55813
 
55636
- export { CardWithCustomizableGrid, CardWithGridText, CardWithImage, CtaWithButtonOnBottom, CtaWithInput, CtaWithLogo, constants as DESIGN_OPTIONS, FaqWithHamburgerView, FeatureWithGrid, FeatureWithImageBlocks, FeatureWithJumboText, FeatureWithLink, FeatureWithList, FeatureWithProgressBar, FeatureWithRightImage, FooterWithLinkGroups, GalleryWithMultipleImages, GalleryWithSlidingImages, GridWithImage, HeaderWithLeftLinks, HeaderWithMiddleLinks, HeaderWithRightLinks, HeroWithRightImage, HeroWithSlider, HorizontalTestimonial, LogoClouds, PricingInCardView, SlidingTestimonial, getSiteConfigurations };
55814
+ export { CardWithCustomizableGrid, CardWithGridText, CardWithImage, CtaWithButtonOnBottom, CtaWithInput, CtaWithLogo, constants as DESIGN_OPTIONS, FaqWithHamburgerView, FeatureWithGrid, FeatureWithImageBlocks, FeatureWithJumboText, FeatureWithLink, FeatureWithList, FeatureWithProgressBar, FeatureWithRightImage, FooterWithLinkGroups, FooterWithLinks, GalleryWithMultipleImages, GalleryWithSlidingImages, GridWithImage, HeaderWithLeftLinks, HeaderWithMiddleLinks, HeaderWithRightLinks, HeroWithRightImage, HeroWithSlider, HorizontalTestimonial, LogoClouds, PricingInCardView, SlidingTestimonial };
55637
55815
  //# sourceMappingURL=index.js.map