@bigbinary/neeto-site-blocks 0.20.1 → 0.20.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.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$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; }
1824
+ 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; }
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$5({
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$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; }
33225
+ 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; }
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$4(_objectSpread$4({}, 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$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; }
47012
+ 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; }
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$3({
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$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; }
48955
+ 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; }
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,92 @@ 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$2({
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",
49441
49069
  style: design.copyrightText
49442
- }, copyrightText));
49070
+ }, copyrightText)));
49443
49071
  };
49444
49072
 
49445
49073
  function cov_2i9807t0bv() {
@@ -50986,7 +50614,7 @@ var GridWithImage = function GridWithImage(_ref) {
50986
50614
 
50987
50615
  function cov_23txpdjvdc() {
50988
50616
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/HeaderWithLeftLinks.jsx";
50989
- var hash = "d99eb257143ad5befa2103a68faeaa8f02342189";
50617
+ var hash = "130262e38345d8837990b27c08a01720377a8c74";
50990
50618
  var global = new Function("return this")();
50991
50619
  var gcv = "__coverage__";
50992
50620
  var coverageData = {
@@ -50998,7 +50626,7 @@ function cov_23txpdjvdc() {
50998
50626
  column: 28
50999
50627
  },
51000
50628
  end: {
51001
- line: 106,
50629
+ line: 114,
51002
50630
  column: 1
51003
50631
  }
51004
50632
  },
@@ -51058,7 +50686,7 @@ function cov_23txpdjvdc() {
51058
50686
  column: 2
51059
50687
  },
51060
50688
  end: {
51061
- line: 105,
50689
+ line: 113,
51062
50690
  column: 4
51063
50691
  }
51064
50692
  },
@@ -51078,7 +50706,7 @@ function cov_23txpdjvdc() {
51078
50706
  column: 12
51079
50707
  },
51080
50708
  end: {
51081
- line: 58,
50709
+ line: 62,
51082
50710
  column: 14
51083
50711
  }
51084
50712
  },
@@ -51088,78 +50716,78 @@ function cov_23txpdjvdc() {
51088
50716
  column: 16
51089
50717
  },
51090
50718
  end: {
51091
- line: 56,
51092
- column: 74
50719
+ line: 60,
50720
+ column: 18
51093
50721
  }
51094
50722
  },
51095
50723
  "10": {
51096
50724
  start: {
51097
- line: 63,
50725
+ line: 67,
51098
50726
  column: 25
51099
50727
  },
51100
50728
  end: {
51101
- line: 63,
50729
+ line: 67,
51102
50730
  column: 54
51103
50731
  }
51104
50732
  },
51105
50733
  "11": {
51106
50734
  start: {
51107
- line: 63,
50735
+ line: 67,
51108
50736
  column: 48
51109
50737
  },
51110
50738
  end: {
51111
- line: 63,
50739
+ line: 67,
51112
50740
  column: 53
51113
50741
  }
51114
50742
  },
51115
50743
  "12": {
51116
50744
  start: {
51117
- line: 69,
50745
+ line: 73,
51118
50746
  column: 25
51119
50747
  },
51120
50748
  end: {
51121
- line: 69,
50749
+ line: 73,
51122
50750
  column: 54
51123
50751
  }
51124
50752
  },
51125
50753
  "13": {
51126
50754
  start: {
51127
- line: 69,
50755
+ line: 73,
51128
50756
  column: 48
51129
50757
  },
51130
50758
  end: {
51131
- line: 69,
50759
+ line: 73,
51132
50760
  column: 53
51133
50761
  }
51134
50762
  },
51135
50763
  "14": {
51136
50764
  start: {
51137
- line: 76,
50765
+ line: 80,
51138
50766
  column: 14
51139
50767
  },
51140
50768
  end: {
51141
- line: 83,
50769
+ line: 87,
51142
50770
  column: 16
51143
50771
  }
51144
50772
  },
51145
50773
  "15": {
51146
50774
  start: {
51147
- line: 90,
50775
+ line: 94,
51148
50776
  column: 14
51149
50777
  },
51150
50778
  end: {
51151
- line: 99,
50779
+ line: 107,
51152
50780
  column: 16
51153
50781
  }
51154
50782
  },
51155
50783
  "16": {
51156
50784
  start: {
51157
- line: 97,
50785
+ line: 101,
51158
50786
  column: 18
51159
50787
  },
51160
50788
  end: {
51161
- line: 97,
51162
- column: 76
50789
+ line: 105,
50790
+ column: 20
51163
50791
  }
51164
50792
  }
51165
50793
  },
@@ -51182,7 +50810,7 @@ function cov_23txpdjvdc() {
51182
50810
  column: 72
51183
50811
  },
51184
50812
  end: {
51185
- line: 106,
50813
+ line: 114,
51186
50814
  column: 1
51187
50815
  }
51188
50816
  },
@@ -51230,7 +50858,7 @@ function cov_23txpdjvdc() {
51230
50858
  column: 12
51231
50859
  },
51232
50860
  end: {
51233
- line: 58,
50861
+ line: 62,
51234
50862
  column: 14
51235
50863
  }
51236
50864
  },
@@ -51254,8 +50882,8 @@ function cov_23txpdjvdc() {
51254
50882
  column: 16
51255
50883
  },
51256
50884
  end: {
51257
- line: 56,
51258
- column: 74
50885
+ line: 60,
50886
+ column: 18
51259
50887
  }
51260
50888
  },
51261
50889
  line: 56
@@ -51264,169 +50892,169 @@ function cov_23txpdjvdc() {
51264
50892
  name: "(anonymous_4)",
51265
50893
  decl: {
51266
50894
  start: {
51267
- line: 63,
50895
+ line: 67,
51268
50896
  column: 19
51269
50897
  },
51270
50898
  end: {
51271
- line: 63,
50899
+ line: 67,
51272
50900
  column: 20
51273
50901
  }
51274
50902
  },
51275
50903
  loc: {
51276
50904
  start: {
51277
- line: 63,
50905
+ line: 67,
51278
50906
  column: 25
51279
50907
  },
51280
50908
  end: {
51281
- line: 63,
50909
+ line: 67,
51282
50910
  column: 54
51283
50911
  }
51284
50912
  },
51285
- line: 63
50913
+ line: 67
51286
50914
  },
51287
50915
  "5": {
51288
50916
  name: "(anonymous_5)",
51289
50917
  decl: {
51290
50918
  start: {
51291
- line: 63,
50919
+ line: 67,
51292
50920
  column: 40
51293
50921
  },
51294
50922
  end: {
51295
- line: 63,
50923
+ line: 67,
51296
50924
  column: 41
51297
50925
  }
51298
50926
  },
51299
50927
  loc: {
51300
50928
  start: {
51301
- line: 63,
50929
+ line: 67,
51302
50930
  column: 48
51303
50931
  },
51304
50932
  end: {
51305
- line: 63,
50933
+ line: 67,
51306
50934
  column: 53
51307
50935
  }
51308
50936
  },
51309
- line: 63
50937
+ line: 67
51310
50938
  },
51311
50939
  "6": {
51312
50940
  name: "(anonymous_6)",
51313
50941
  decl: {
51314
50942
  start: {
51315
- line: 69,
50943
+ line: 73,
51316
50944
  column: 19
51317
50945
  },
51318
50946
  end: {
51319
- line: 69,
50947
+ line: 73,
51320
50948
  column: 20
51321
50949
  }
51322
50950
  },
51323
50951
  loc: {
51324
50952
  start: {
51325
- line: 69,
50953
+ line: 73,
51326
50954
  column: 25
51327
50955
  },
51328
50956
  end: {
51329
- line: 69,
50957
+ line: 73,
51330
50958
  column: 54
51331
50959
  }
51332
50960
  },
51333
- line: 69
50961
+ line: 73
51334
50962
  },
51335
50963
  "7": {
51336
50964
  name: "(anonymous_7)",
51337
50965
  decl: {
51338
50966
  start: {
51339
- line: 69,
50967
+ line: 73,
51340
50968
  column: 40
51341
50969
  },
51342
50970
  end: {
51343
- line: 69,
50971
+ line: 73,
51344
50972
  column: 41
51345
50973
  }
51346
50974
  },
51347
50975
  loc: {
51348
50976
  start: {
51349
- line: 69,
50977
+ line: 73,
51350
50978
  column: 48
51351
50979
  },
51352
50980
  end: {
51353
- line: 69,
50981
+ line: 73,
51354
50982
  column: 53
51355
50983
  }
51356
50984
  },
51357
- line: 69
50985
+ line: 73
51358
50986
  },
51359
50987
  "8": {
51360
50988
  name: "(anonymous_8)",
51361
50989
  decl: {
51362
50990
  start: {
51363
- line: 75,
50991
+ line: 79,
51364
50992
  column: 34
51365
50993
  },
51366
50994
  end: {
51367
- line: 75,
50995
+ line: 79,
51368
50996
  column: 35
51369
50997
  }
51370
50998
  },
51371
50999
  loc: {
51372
51000
  start: {
51373
- line: 76,
51001
+ line: 80,
51374
51002
  column: 14
51375
51003
  },
51376
51004
  end: {
51377
- line: 83,
51005
+ line: 87,
51378
51006
  column: 16
51379
51007
  }
51380
51008
  },
51381
- line: 76
51009
+ line: 80
51382
51010
  },
51383
51011
  "9": {
51384
51012
  name: "(anonymous_9)",
51385
51013
  decl: {
51386
51014
  start: {
51387
- line: 89,
51015
+ line: 93,
51388
51016
  column: 34
51389
51017
  },
51390
51018
  end: {
51391
- line: 89,
51019
+ line: 93,
51392
51020
  column: 35
51393
51021
  }
51394
51022
  },
51395
51023
  loc: {
51396
51024
  start: {
51397
- line: 90,
51025
+ line: 94,
51398
51026
  column: 14
51399
51027
  },
51400
51028
  end: {
51401
- line: 99,
51029
+ line: 107,
51402
51030
  column: 16
51403
51031
  }
51404
51032
  },
51405
- line: 90
51033
+ line: 94
51406
51034
  },
51407
51035
  "10": {
51408
51036
  name: "(anonymous_10)",
51409
51037
  decl: {
51410
51038
  start: {
51411
- line: 96,
51039
+ line: 100,
51412
51040
  column: 22
51413
51041
  },
51414
51042
  end: {
51415
- line: 96,
51043
+ line: 100,
51416
51044
  column: 23
51417
51045
  }
51418
51046
  },
51419
51047
  loc: {
51420
51048
  start: {
51421
- line: 97,
51049
+ line: 101,
51422
51050
  column: 18
51423
51051
  },
51424
51052
  end: {
51425
- line: 97,
51426
- column: 76
51053
+ line: 105,
51054
+ column: 20
51427
51055
  }
51428
51056
  },
51429
- line: 97
51057
+ line: 101
51430
51058
  }
51431
51059
  },
51432
51060
  branchMap: {
@@ -51457,68 +51085,68 @@ function cov_23txpdjvdc() {
51457
51085
  "1": {
51458
51086
  loc: {
51459
51087
  start: {
51460
- line: 73,
51088
+ line: 77,
51461
51089
  column: 9
51462
51090
  },
51463
51091
  end: {
51464
- line: 86,
51092
+ line: 90,
51465
51093
  column: 9
51466
51094
  }
51467
51095
  },
51468
51096
  type: "binary-expr",
51469
51097
  locations: [{
51470
51098
  start: {
51471
- line: 73,
51099
+ line: 77,
51472
51100
  column: 9
51473
51101
  },
51474
51102
  end: {
51475
- line: 73,
51103
+ line: 77,
51476
51104
  column: 20
51477
51105
  }
51478
51106
  }, {
51479
51107
  start: {
51480
- line: 74,
51108
+ line: 78,
51481
51109
  column: 10
51482
51110
  },
51483
51111
  end: {
51484
- line: 85,
51112
+ line: 89,
51485
51113
  column: 16
51486
51114
  }
51487
51115
  }],
51488
- line: 73
51116
+ line: 77
51489
51117
  },
51490
51118
  "2": {
51491
51119
  loc: {
51492
51120
  start: {
51493
- line: 87,
51121
+ line: 91,
51494
51122
  column: 9
51495
51123
  },
51496
51124
  end: {
51497
- line: 102,
51125
+ line: 110,
51498
51126
  column: 9
51499
51127
  }
51500
51128
  },
51501
51129
  type: "binary-expr",
51502
51130
  locations: [{
51503
51131
  start: {
51504
- line: 87,
51132
+ line: 91,
51505
51133
  column: 9
51506
51134
  },
51507
51135
  end: {
51508
- line: 87,
51136
+ line: 91,
51509
51137
  column: 20
51510
51138
  }
51511
51139
  }, {
51512
51140
  start: {
51513
- line: 88,
51141
+ line: 92,
51514
51142
  column: 10
51515
51143
  },
51516
51144
  end: {
51517
- line: 101,
51145
+ line: 109,
51518
51146
  column: 16
51519
51147
  }
51520
51148
  }],
51521
- line: 87
51149
+ line: 91
51522
51150
  }
51523
51151
  },
51524
51152
  s: {
@@ -51559,7 +51187,7 @@ function cov_23txpdjvdc() {
51559
51187
  "2": [0, 0]
51560
51188
  },
51561
51189
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
51562
- hash: "d99eb257143ad5befa2103a68faeaa8f02342189"
51190
+ hash: "130262e38345d8837990b27c08a01720377a8c74"
51563
51191
  };
51564
51192
  var coverage = global[gcv] || (global[gcv] = {});
51565
51193
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -51575,6 +51203,8 @@ function cov_23txpdjvdc() {
51575
51203
  return actualCoverage;
51576
51204
  }
51577
51205
  cov_23txpdjvdc();
51206
+ 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; }
51207
+ 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
51208
  cov_23txpdjvdc().s[0]++;
51579
51209
  var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51580
51210
  var configurations = _ref.configurations,
@@ -51628,7 +51258,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51628
51258
  }), /*#__PURE__*/React__default.createElement("div", {
51629
51259
  className: "col-span-5 col-start-8 hidden justify-end sm:col-span-4 sm:col-start-9 sm:flex"
51630
51260
  }, properties.icons.map(function (_ref9, index) {
51631
- var Icon = _ref9.icon,
51261
+ var name = _ref9.name,
51632
51262
  url = _ref9.url,
51633
51263
  action = _ref9.action;
51634
51264
  cov_23txpdjvdc().f[2]++;
@@ -51641,7 +51271,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51641
51271
  icon: function icon() {
51642
51272
  cov_23txpdjvdc().f[3]++;
51643
51273
  cov_23txpdjvdc().s[9]++;
51644
- return /*#__PURE__*/React__default.createElement(Icon, _extends$4({
51274
+ return renderIcon(_objectSpread$1({
51275
+ name: name,
51645
51276
  className: "hover:text-gray-700"
51646
51277
  }, design.icons));
51647
51278
  }
@@ -51691,7 +51322,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51691
51322
  }))), (cov_23txpdjvdc().b[2][0]++, isIconsOpen) && (cov_23txpdjvdc().b[2][1]++, /*#__PURE__*/React__default.createElement("div", {
51692
51323
  className: "fadeIn col-span-2 col-start-11 mt-3 flex flex-col justify-end space-y-1 lg:hidden"
51693
51324
  }, properties.icons.map(function (_ref11, index) {
51694
- var Icon = _ref11.icon,
51325
+ var name = _ref11.name,
51695
51326
  url = _ref11.url,
51696
51327
  action = _ref11.action;
51697
51328
  cov_23txpdjvdc().f[9]++;
@@ -51705,7 +51336,8 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51705
51336
  icon: function icon() {
51706
51337
  cov_23txpdjvdc().f[10]++;
51707
51338
  cov_23txpdjvdc().s[16]++;
51708
- return /*#__PURE__*/React__default.createElement(Icon, _extends$4({
51339
+ return renderIcon(_objectSpread$1({
51340
+ name: name,
51709
51341
  className: "hover:text-gray-700"
51710
51342
  }, design.icons));
51711
51343
  }
@@ -51715,7 +51347,7 @@ var HeaderWithLeftLinks = function HeaderWithLeftLinks(_ref) {
51715
51347
 
51716
51348
  function cov_1co863w8of() {
51717
51349
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/HeaderWithMiddleLinks.jsx";
51718
- var hash = "6a967bcc92ea4eff04b68f5d2e229f1e8da05ed8";
51350
+ var hash = "25701e9a19d047f22af63851bd8dc2114de48e79";
51719
51351
  var global = new Function("return this")();
51720
51352
  var gcv = "__coverage__";
51721
51353
  var coverageData = {
@@ -51727,7 +51359,7 @@ function cov_1co863w8of() {
51727
51359
  column: 30
51728
51360
  },
51729
51361
  end: {
51730
- line: 80,
51362
+ line: 82,
51731
51363
  column: 1
51732
51364
  }
51733
51365
  },
@@ -51773,52 +51405,62 @@ function cov_1co863w8of() {
51773
51405
  },
51774
51406
  "5": {
51775
51407
  start: {
51776
- line: 16,
51777
- column: 2
51408
+ line: 17,
51409
+ column: 4
51778
51410
  },
51779
51411
  end: {
51780
- line: 79,
51781
- column: 4
51412
+ line: 17,
51413
+ column: 67
51782
51414
  }
51783
51415
  },
51784
51416
  "6": {
51785
51417
  start: {
51786
- line: 31,
51787
- column: 27
51418
+ line: 19,
51419
+ column: 2
51788
51420
  },
51789
51421
  end: {
51790
- line: 31,
51791
- column: 55
51422
+ line: 81,
51423
+ column: 4
51792
51424
  }
51793
51425
  },
51794
51426
  "7": {
51795
51427
  start: {
51796
- line: 31,
51797
- column: 49
51428
+ line: 38,
51429
+ column: 12
51798
51430
  },
51799
51431
  end: {
51800
- line: 31,
51801
- column: 54
51432
+ line: 45,
51433
+ column: 14
51802
51434
  }
51803
51435
  },
51804
51436
  "8": {
51805
51437
  start: {
51806
- line: 39,
51807
- column: 12
51438
+ line: 62,
51439
+ column: 25
51808
51440
  },
51809
51441
  end: {
51810
- line: 46,
51811
- column: 14
51442
+ line: 62,
51443
+ column: 53
51812
51444
  }
51813
51445
  },
51814
51446
  "9": {
51815
51447
  start: {
51816
- line: 67,
51817
- column: 12
51448
+ line: 62,
51449
+ column: 47
51818
51450
  },
51819
51451
  end: {
51820
- line: 74,
51452
+ line: 62,
51453
+ column: 52
51454
+ }
51455
+ },
51456
+ "10": {
51457
+ start: {
51458
+ line: 69,
51821
51459
  column: 14
51460
+ },
51461
+ end: {
51462
+ line: 75,
51463
+ column: 16
51822
51464
  }
51823
51465
  }
51824
51466
  },
@@ -51841,7 +51483,7 @@ function cov_1co863w8of() {
51841
51483
  column: 74
51842
51484
  },
51843
51485
  end: {
51844
- line: 80,
51486
+ line: 82,
51845
51487
  column: 1
51846
51488
  }
51847
51489
  },
@@ -51851,97 +51493,97 @@ function cov_1co863w8of() {
51851
51493
  name: "(anonymous_1)",
51852
51494
  decl: {
51853
51495
  start: {
51854
- line: 31,
51855
- column: 21
51496
+ line: 37,
51497
+ column: 32
51856
51498
  },
51857
51499
  end: {
51858
- line: 31,
51859
- column: 22
51500
+ line: 37,
51501
+ column: 33
51860
51502
  }
51861
51503
  },
51862
51504
  loc: {
51863
51505
  start: {
51864
- line: 31,
51865
- column: 27
51506
+ line: 38,
51507
+ column: 12
51866
51508
  },
51867
51509
  end: {
51868
- line: 31,
51869
- column: 55
51510
+ line: 45,
51511
+ column: 14
51870
51512
  }
51871
51513
  },
51872
- line: 31
51514
+ line: 38
51873
51515
  },
51874
51516
  "2": {
51875
51517
  name: "(anonymous_2)",
51876
51518
  decl: {
51877
51519
  start: {
51878
- line: 31,
51879
- column: 41
51520
+ line: 62,
51521
+ column: 19
51880
51522
  },
51881
51523
  end: {
51882
- line: 31,
51883
- column: 42
51524
+ line: 62,
51525
+ column: 20
51884
51526
  }
51885
51527
  },
51886
51528
  loc: {
51887
51529
  start: {
51888
- line: 31,
51889
- column: 49
51530
+ line: 62,
51531
+ column: 25
51890
51532
  },
51891
51533
  end: {
51892
- line: 31,
51893
- column: 54
51534
+ line: 62,
51535
+ column: 53
51894
51536
  }
51895
51537
  },
51896
- line: 31
51538
+ line: 62
51897
51539
  },
51898
51540
  "3": {
51899
51541
  name: "(anonymous_3)",
51900
51542
  decl: {
51901
51543
  start: {
51902
- line: 38,
51903
- column: 32
51544
+ line: 62,
51545
+ column: 39
51904
51546
  },
51905
51547
  end: {
51906
- line: 38,
51907
- column: 33
51548
+ line: 62,
51549
+ column: 40
51908
51550
  }
51909
51551
  },
51910
51552
  loc: {
51911
51553
  start: {
51912
- line: 39,
51913
- column: 12
51554
+ line: 62,
51555
+ column: 47
51914
51556
  },
51915
51557
  end: {
51916
- line: 46,
51917
- column: 14
51558
+ line: 62,
51559
+ column: 52
51918
51560
  }
51919
51561
  },
51920
- line: 39
51562
+ line: 62
51921
51563
  },
51922
51564
  "4": {
51923
51565
  name: "(anonymous_4)",
51924
51566
  decl: {
51925
51567
  start: {
51926
- line: 66,
51927
- column: 32
51568
+ line: 68,
51569
+ column: 34
51928
51570
  },
51929
51571
  end: {
51930
- line: 66,
51931
- column: 33
51572
+ line: 68,
51573
+ column: 35
51932
51574
  }
51933
51575
  },
51934
51576
  loc: {
51935
51577
  start: {
51936
- line: 67,
51937
- column: 12
51578
+ line: 69,
51579
+ column: 14
51938
51580
  },
51939
51581
  end: {
51940
- line: 74,
51941
- column: 14
51582
+ line: 75,
51583
+ column: 16
51942
51584
  }
51943
51585
  },
51944
- line: 67
51586
+ line: 69
51945
51587
  }
51946
51588
  },
51947
51589
  branchMap: {
@@ -51972,35 +51614,35 @@ function cov_1co863w8of() {
51972
51614
  "1": {
51973
51615
  loc: {
51974
51616
  start: {
51975
- line: 64,
51976
- column: 7
51617
+ line: 66,
51618
+ column: 9
51977
51619
  },
51978
51620
  end: {
51979
- line: 77,
51980
- column: 7
51621
+ line: 78,
51622
+ column: 9
51981
51623
  }
51982
51624
  },
51983
51625
  type: "binary-expr",
51984
51626
  locations: [{
51985
51627
  start: {
51986
- line: 64,
51987
- column: 7
51628
+ line: 66,
51629
+ column: 9
51988
51630
  },
51989
51631
  end: {
51990
- line: 64,
51991
- column: 17
51632
+ line: 66,
51633
+ column: 19
51992
51634
  }
51993
51635
  }, {
51994
51636
  start: {
51995
- line: 65,
51996
- column: 8
51637
+ line: 67,
51638
+ column: 10
51997
51639
  },
51998
51640
  end: {
51999
- line: 76,
52000
- column: 14
51641
+ line: 77,
51642
+ column: 16
52001
51643
  }
52002
51644
  }],
52003
- line: 64
51645
+ line: 66
52004
51646
  }
52005
51647
  },
52006
51648
  s: {
@@ -52013,7 +51655,8 @@ function cov_1co863w8of() {
52013
51655
  "6": 0,
52014
51656
  "7": 0,
52015
51657
  "8": 0,
52016
- "9": 0
51658
+ "9": 0,
51659
+ "10": 0
52017
51660
  },
52018
51661
  f: {
52019
51662
  "0": 0,
@@ -52027,7 +51670,7 @@ function cov_1co863w8of() {
52027
51670
  "1": [0, 0]
52028
51671
  },
52029
51672
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
52030
- hash: "6a967bcc92ea4eff04b68f5d2e229f1e8da05ed8"
51673
+ hash: "25701e9a19d047f22af63851bd8dc2114de48e79"
52031
51674
  };
52032
51675
  var coverage = global[gcv] || (global[gcv] = {});
52033
51676
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -52062,7 +51705,8 @@ var HeaderWithMiddleLinks = function HeaderWithMiddleLinks(_ref) {
52062
51705
  var _ref6 = (cov_1co863w8of().s[4]++, properties),
52063
51706
  primaryButton = _ref6.primaryButton,
52064
51707
  secondaryButton = _ref6.secondaryButton;
52065
- cov_1co863w8of().s[5]++;
51708
+ var baseClasses = (cov_1co863w8of().s[5]++, "grid grid-cols-12 sm:gap-x-4 items-center grid-flow-row-dense");
51709
+ cov_1co863w8of().s[6]++;
52066
51710
  return /*#__PURE__*/React__default.createElement(StyledWrapper, {
52067
51711
  design: design.body,
52068
51712
  id: id,
@@ -52070,75 +51714,69 @@ var HeaderWithMiddleLinks = function HeaderWithMiddleLinks(_ref) {
52070
51714
  "neeto-site-sticky-header": position === "sticky"
52071
51715
  }, className)
52072
51716
  }, /*#__PURE__*/React__default.createElement("div", {
52073
- className: "flex items-center justify-between"
52074
- }, /*#__PURE__*/React__default.createElement("div", {
52075
- className: "flex items-center space-x-4"
52076
- }, /*#__PURE__*/React__default.createElement("button", {
52077
- className: "text-gray inline-block p-1.5 lg:hidden",
52078
- onClick: function onClick() {
52079
- cov_1co863w8of().f[1]++;
52080
- cov_1co863w8of().s[6]++;
52081
- return setIsMenuOpen(function (open) {
52082
- cov_1co863w8of().f[2]++;
52083
- cov_1co863w8of().s[7]++;
52084
- return !open;
52085
- });
52086
- }
52087
- }, /*#__PURE__*/React__default.createElement(i$19, {
52088
- color: design.hamburgerMenu.color
52089
- })), /*#__PURE__*/React__default.createElement(StyledImage, {
51717
+ className: classnames("neeto-site-block-wrapper", baseClasses)
51718
+ }, /*#__PURE__*/React__default.createElement(StyledImage, {
51719
+ className: "col-span-3 col-start-2 ml-3 sm:col-span-2 sm:col-start-2 sm:ml-0 lg:col-start-1",
52090
51720
  design: design.logo,
52091
51721
  src: properties.logo.src
52092
- })), /*#__PURE__*/React__default.createElement("div", {
52093
- className: "flex items-center justify-center gap-6"
51722
+ }), /*#__PURE__*/React__default.createElement("div", {
51723
+ className: "col-span-5 col-start-4 hidden items-center justify-center gap-x-6 lg:flex"
52094
51724
  }, properties.links.map(function (_ref7, index) {
52095
51725
  var label = _ref7.label,
52096
51726
  url = _ref7.url,
52097
51727
  action = _ref7.action;
52098
- cov_1co863w8of().f[3]++;
52099
- cov_1co863w8of().s[8]++;
51728
+ cov_1co863w8of().f[1]++;
51729
+ cov_1co863w8of().s[7]++;
52100
51730
  return /*#__PURE__*/React__default.createElement(LinkElement, {
52101
51731
  action: action,
52102
- className: "hidden hover:text-gray-800 lg:inline",
52103
- key: getUniqueKey(label, url, index),
51732
+ className: "hover:text-gray-700",
51733
+ key: getUniqueKey(label, index),
52104
51734
  label: label,
52105
51735
  style: design.links,
52106
51736
  to: url
52107
51737
  });
52108
51738
  })), /*#__PURE__*/React__default.createElement("div", {
52109
- className: "block items-center gap-4 md:flex"
52110
- }, /*#__PURE__*/React__default.createElement(Button, {
52111
- action: secondaryButton.action,
52112
- label: secondaryButton.label,
52113
- style: design.secondaryButtons,
52114
- to: secondaryButton.url
52115
- }), /*#__PURE__*/React__default.createElement(Button, {
52116
- action: primaryButton.action,
52117
- label: primaryButton.label,
52118
- style: design.primaryButtons,
52119
- to: primaryButton.url
52120
- }))), (cov_1co863w8of().b[1][0]++, isMenuOpen) && (cov_1co863w8of().b[1][1]++, /*#__PURE__*/React__default.createElement("div", {
52121
- className: "fadeIn mt-3 block space-y-1 lg:hidden"
51739
+ className: "col-span-8 col-start-5 flex justify-end sm:col-span-4 sm:col-start-9"
51740
+ }, /*#__PURE__*/React__default.createElement(Button, _extends$4({
51741
+ className: "neeto-site-secondary-button",
51742
+ style: design.secondaryButtons
51743
+ }, secondaryButton)), /*#__PURE__*/React__default.createElement(Button, _extends$4({
51744
+ className: "neeto-site-primary-button",
51745
+ style: design.primaryButtons
51746
+ }, primaryButton))), /*#__PURE__*/React__default.createElement("button", {
51747
+ className: "col-span-1 col-start-1 flex items-center sm:col-span-1 lg:hidden",
51748
+ onClick: function onClick() {
51749
+ cov_1co863w8of().f[2]++;
51750
+ cov_1co863w8of().s[8]++;
51751
+ return setIsMenuOpen(function (open) {
51752
+ cov_1co863w8of().f[3]++;
51753
+ cov_1co863w8of().s[9]++;
51754
+ return !open;
51755
+ });
51756
+ }
51757
+ }, /*#__PURE__*/React__default.createElement(i$19, {
51758
+ color: design.hamburgerMenu.color
51759
+ })), (cov_1co863w8of().b[1][0]++, isMenuOpen) && (cov_1co863w8of().b[1][1]++, /*#__PURE__*/React__default.createElement("div", {
51760
+ className: "fadeIn col-span-2 col-start-1 ml-2 mt-3 block space-y-2 lg:hidden"
52122
51761
  }, properties.links.map(function (_ref8, index) {
52123
51762
  var label = _ref8.label,
52124
51763
  url = _ref8.url,
52125
51764
  action = _ref8.action;
52126
51765
  cov_1co863w8of().f[4]++;
52127
- cov_1co863w8of().s[9]++;
51766
+ cov_1co863w8of().s[10]++;
52128
51767
  return /*#__PURE__*/React__default.createElement(LinkElement, {
52129
51768
  action: action,
52130
- className: "w-full py-1.5",
52131
- key: getUniqueKey(label, url, index),
51769
+ key: getUniqueKey(url, label, index),
52132
51770
  label: label,
52133
51771
  style: design.links,
52134
51772
  to: url
52135
51773
  });
52136
- }))));
51774
+ })))));
52137
51775
  };
52138
51776
 
52139
51777
  function cov_1cxtcrbyvq() {
52140
51778
  var path = "/home/runner/work/neeto-site-blocks/neeto-site-blocks/src/components/Blocks/HeaderWithRightLinks.jsx";
52141
- var hash = "85e92440ebfdf02ff44ba6dac001f4a176342b87";
51779
+ var hash = "3d983f7efda48b7d0c778a0cde13287b01ceab13";
52142
51780
  var global = new Function("return this")();
52143
51781
  var gcv = "__coverage__";
52144
51782
  var coverageData = {
@@ -52150,7 +51788,7 @@ function cov_1cxtcrbyvq() {
52150
51788
  column: 29
52151
51789
  },
52152
51790
  end: {
52153
- line: 82,
51791
+ line: 79,
52154
51792
  column: 1
52155
51793
  }
52156
51794
  },
@@ -52196,52 +51834,62 @@ function cov_1cxtcrbyvq() {
52196
51834
  },
52197
51835
  "5": {
52198
51836
  start: {
52199
- line: 16,
52200
- column: 2
51837
+ line: 17,
51838
+ column: 4
52201
51839
  },
52202
51840
  end: {
52203
- line: 81,
52204
- column: 4
51841
+ line: 17,
51842
+ column: 67
52205
51843
  }
52206
51844
  },
52207
51845
  "6": {
52208
51846
  start: {
52209
- line: 31,
52210
- column: 27
51847
+ line: 19,
51848
+ column: 2
52211
51849
  },
52212
51850
  end: {
52213
- line: 31,
52214
- column: 55
51851
+ line: 78,
51852
+ column: 4
52215
51853
  }
52216
51854
  },
52217
51855
  "7": {
52218
51856
  start: {
52219
- line: 31,
52220
- column: 49
51857
+ line: 44,
51858
+ column: 12
52221
51859
  },
52222
51860
  end: {
52223
- line: 31,
52224
- column: 54
51861
+ line: 49,
51862
+ column: 14
52225
51863
  }
52226
51864
  },
52227
51865
  "8": {
52228
51866
  start: {
52229
- line: 49,
52230
- column: 12
51867
+ line: 59,
51868
+ column: 25
52231
51869
  },
52232
51870
  end: {
52233
- line: 56,
52234
- column: 14
51871
+ line: 59,
51872
+ column: 53
52235
51873
  }
52236
51874
  },
52237
51875
  "9": {
52238
51876
  start: {
52239
- line: 69,
52240
- column: 12
51877
+ line: 59,
51878
+ column: 47
52241
51879
  },
52242
51880
  end: {
52243
- line: 76,
51881
+ line: 59,
51882
+ column: 52
51883
+ }
51884
+ },
51885
+ "10": {
51886
+ start: {
51887
+ line: 66,
52244
51888
  column: 14
51889
+ },
51890
+ end: {
51891
+ line: 72,
51892
+ column: 16
52245
51893
  }
52246
51894
  }
52247
51895
  },
@@ -52264,7 +51912,7 @@ function cov_1cxtcrbyvq() {
52264
51912
  column: 73
52265
51913
  },
52266
51914
  end: {
52267
- line: 82,
51915
+ line: 79,
52268
51916
  column: 1
52269
51917
  }
52270
51918
  },
@@ -52274,97 +51922,97 @@ function cov_1cxtcrbyvq() {
52274
51922
  name: "(anonymous_1)",
52275
51923
  decl: {
52276
51924
  start: {
52277
- line: 31,
52278
- column: 21
51925
+ line: 43,
51926
+ column: 32
52279
51927
  },
52280
51928
  end: {
52281
- line: 31,
52282
- column: 22
51929
+ line: 43,
51930
+ column: 33
52283
51931
  }
52284
51932
  },
52285
51933
  loc: {
52286
51934
  start: {
52287
- line: 31,
52288
- column: 27
51935
+ line: 44,
51936
+ column: 12
52289
51937
  },
52290
51938
  end: {
52291
- line: 31,
52292
- column: 55
51939
+ line: 49,
51940
+ column: 14
52293
51941
  }
52294
51942
  },
52295
- line: 31
51943
+ line: 44
52296
51944
  },
52297
51945
  "2": {
52298
51946
  name: "(anonymous_2)",
52299
51947
  decl: {
52300
51948
  start: {
52301
- line: 31,
52302
- column: 41
51949
+ line: 59,
51950
+ column: 19
52303
51951
  },
52304
51952
  end: {
52305
- line: 31,
52306
- column: 42
51953
+ line: 59,
51954
+ column: 20
52307
51955
  }
52308
51956
  },
52309
51957
  loc: {
52310
51958
  start: {
52311
- line: 31,
52312
- column: 49
51959
+ line: 59,
51960
+ column: 25
52313
51961
  },
52314
51962
  end: {
52315
- line: 31,
52316
- column: 54
51963
+ line: 59,
51964
+ column: 53
52317
51965
  }
52318
51966
  },
52319
- line: 31
51967
+ line: 59
52320
51968
  },
52321
51969
  "3": {
52322
51970
  name: "(anonymous_3)",
52323
51971
  decl: {
52324
51972
  start: {
52325
- line: 48,
52326
- column: 32
51973
+ line: 59,
51974
+ column: 39
52327
51975
  },
52328
51976
  end: {
52329
- line: 48,
52330
- column: 33
51977
+ line: 59,
51978
+ column: 40
52331
51979
  }
52332
51980
  },
52333
51981
  loc: {
52334
51982
  start: {
52335
- line: 49,
52336
- column: 12
51983
+ line: 59,
51984
+ column: 47
52337
51985
  },
52338
51986
  end: {
52339
- line: 56,
52340
- column: 14
51987
+ line: 59,
51988
+ column: 52
52341
51989
  }
52342
51990
  },
52343
- line: 49
51991
+ line: 59
52344
51992
  },
52345
51993
  "4": {
52346
51994
  name: "(anonymous_4)",
52347
51995
  decl: {
52348
51996
  start: {
52349
- line: 68,
52350
- column: 32
51997
+ line: 65,
51998
+ column: 34
52351
51999
  },
52352
52000
  end: {
52353
- line: 68,
52354
- column: 33
52001
+ line: 65,
52002
+ column: 35
52355
52003
  }
52356
52004
  },
52357
52005
  loc: {
52358
52006
  start: {
52359
- line: 69,
52360
- column: 12
52007
+ line: 66,
52008
+ column: 14
52361
52009
  },
52362
52010
  end: {
52363
- line: 76,
52364
- column: 14
52011
+ line: 72,
52012
+ column: 16
52365
52013
  }
52366
52014
  },
52367
- line: 69
52015
+ line: 66
52368
52016
  }
52369
52017
  },
52370
52018
  branchMap: {
@@ -52395,35 +52043,35 @@ function cov_1cxtcrbyvq() {
52395
52043
  "1": {
52396
52044
  loc: {
52397
52045
  start: {
52398
- line: 66,
52399
- column: 7
52046
+ line: 63,
52047
+ column: 9
52400
52048
  },
52401
52049
  end: {
52402
- line: 79,
52403
- column: 7
52050
+ line: 75,
52051
+ column: 9
52404
52052
  }
52405
52053
  },
52406
52054
  type: "binary-expr",
52407
52055
  locations: [{
52408
52056
  start: {
52409
- line: 66,
52410
- column: 7
52057
+ line: 63,
52058
+ column: 9
52411
52059
  },
52412
52060
  end: {
52413
- line: 66,
52414
- column: 17
52061
+ line: 63,
52062
+ column: 19
52415
52063
  }
52416
52064
  }, {
52417
52065
  start: {
52418
- line: 67,
52419
- column: 8
52066
+ line: 64,
52067
+ column: 10
52420
52068
  },
52421
52069
  end: {
52422
- line: 78,
52423
- column: 14
52070
+ line: 74,
52071
+ column: 16
52424
52072
  }
52425
52073
  }],
52426
- line: 66
52074
+ line: 63
52427
52075
  }
52428
52076
  },
52429
52077
  s: {
@@ -52436,7 +52084,8 @@ function cov_1cxtcrbyvq() {
52436
52084
  "6": 0,
52437
52085
  "7": 0,
52438
52086
  "8": 0,
52439
- "9": 0
52087
+ "9": 0,
52088
+ "10": 0
52440
52089
  },
52441
52090
  f: {
52442
52091
  "0": 0,
@@ -52450,7 +52099,7 @@ function cov_1cxtcrbyvq() {
52450
52099
  "1": [0, 0]
52451
52100
  },
52452
52101
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
52453
- hash: "85e92440ebfdf02ff44ba6dac001f4a176342b87"
52102
+ hash: "3d983f7efda48b7d0c778a0cde13287b01ceab13"
52454
52103
  };
52455
52104
  var coverage = global[gcv] || (global[gcv] = {});
52456
52105
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -52484,7 +52133,8 @@ var HeaderWithRightLinks = function HeaderWithRightLinks(_ref) {
52484
52133
  position = _ref5.position;
52485
52134
  var _ref6 = (cov_1cxtcrbyvq().s[4]++, properties),
52486
52135
  button = _ref6.button;
52487
- cov_1cxtcrbyvq().s[5]++;
52136
+ var baseClasses = (cov_1cxtcrbyvq().s[5]++, "grid grid-cols-12 sm:gap-x-4 items-center grid-flow-row-dense");
52137
+ cov_1cxtcrbyvq().s[6]++;
52488
52138
  return /*#__PURE__*/React__default.createElement(StyledWrapper, {
52489
52139
  design: design.body,
52490
52140
  id: id,
@@ -52492,24 +52142,9 @@ var HeaderWithRightLinks = function HeaderWithRightLinks(_ref) {
52492
52142
  "neeto-site-sticky-header": position === "sticky"
52493
52143
  }, className)
52494
52144
  }, /*#__PURE__*/React__default.createElement("div", {
52495
- className: "flex items-center justify-between"
52145
+ className: classnames("neeto-site-block-wrapper", baseClasses)
52496
52146
  }, /*#__PURE__*/React__default.createElement("div", {
52497
- className: "flex items-center space-x-4"
52498
- }, /*#__PURE__*/React__default.createElement("button", {
52499
- className: "inline-block p-1.5 lg:hidden",
52500
- onClick: function onClick() {
52501
- cov_1cxtcrbyvq().f[1]++;
52502
- cov_1cxtcrbyvq().s[6]++;
52503
- return setIsMenuOpen(function (open) {
52504
- cov_1cxtcrbyvq().f[2]++;
52505
- cov_1cxtcrbyvq().s[7]++;
52506
- return !open;
52507
- });
52508
- }
52509
- }, /*#__PURE__*/React__default.createElement(i$19, {
52510
- color: design.hamburgerMenu.color
52511
- })), /*#__PURE__*/React__default.createElement("div", {
52512
- className: "flex items-center gap-x-2"
52147
+ className: "col-span-4 col-start-3 flex items-center gap-x-2 sm:col-span-4 sm:col-start-2 lg:col-span-3 lg:col-start-1"
52513
52148
  }, /*#__PURE__*/React__default.createElement(StyledImage, {
52514
52149
  design: design.logo,
52515
52150
  src: properties.logo.src
@@ -52518,44 +52153,48 @@ var HeaderWithRightLinks = function HeaderWithRightLinks(_ref) {
52518
52153
  className: "hidden md:inline-block",
52519
52154
  component: "p",
52520
52155
  style: design.logoTitle
52521
- }, properties.logo.title))), /*#__PURE__*/React__default.createElement("div", {
52522
- className: "flex items-center gap-6"
52156
+ }, properties.logo.title)), /*#__PURE__*/React__default.createElement("div", {
52157
+ className: "col-span-6 col-start-7 flex items-center justify-end gap-x-6 sm:col-span-7 sm:col-start-6 lg:col-span-9 lg:col-start-4"
52158
+ }, properties.links.map(function (link, index) {
52159
+ cov_1cxtcrbyvq().f[1]++;
52160
+ cov_1cxtcrbyvq().s[7]++;
52161
+ return /*#__PURE__*/React__default.createElement(LinkElement, _extends$4({
52162
+ className: "hidden hover:text-gray-800 lg:inline",
52163
+ key: getUniqueKey(link.label, link.url, index),
52164
+ style: design.links
52165
+ }, link));
52166
+ }), /*#__PURE__*/React__default.createElement(Button, _extends$4({
52167
+ className: "hover:bg-gray-100",
52168
+ style: design.buttons
52169
+ }, button))), /*#__PURE__*/React__default.createElement("button", {
52170
+ className: "col-span-1 col-start-1 flex items-center sm:col-span-1 lg:hidden",
52171
+ onClick: function onClick() {
52172
+ cov_1cxtcrbyvq().f[2]++;
52173
+ cov_1cxtcrbyvq().s[8]++;
52174
+ return setIsMenuOpen(function (open) {
52175
+ cov_1cxtcrbyvq().f[3]++;
52176
+ cov_1cxtcrbyvq().s[9]++;
52177
+ return !open;
52178
+ });
52179
+ }
52180
+ }, /*#__PURE__*/React__default.createElement(i$19, {
52181
+ color: design.hamburgerMenu.color
52182
+ })), (cov_1cxtcrbyvq().b[1][0]++, isMenuOpen) && (cov_1cxtcrbyvq().b[1][1]++, /*#__PURE__*/React__default.createElement("div", {
52183
+ className: "fadeIn col-span-2 col-start-1 space-y-2 lg:hidden"
52523
52184
  }, properties.links.map(function (_ref7, index) {
52524
52185
  var label = _ref7.label,
52525
52186
  url = _ref7.url,
52526
52187
  action = _ref7.action;
52527
- cov_1cxtcrbyvq().f[3]++;
52528
- cov_1cxtcrbyvq().s[8]++;
52529
- return /*#__PURE__*/React__default.createElement(LinkElement, {
52530
- action: action,
52531
- className: "hidden hover:text-gray-800 lg:inline",
52532
- key: getUniqueKey(label, url, index),
52533
- label: label,
52534
- style: design.links,
52535
- to: url
52536
- });
52537
- }), /*#__PURE__*/React__default.createElement(Button, {
52538
- action: button.action,
52539
- label: button.label,
52540
- style: design.buttons,
52541
- to: button.url
52542
- }))), (cov_1cxtcrbyvq().b[1][0]++, isMenuOpen) && (cov_1cxtcrbyvq().b[1][1]++, /*#__PURE__*/React__default.createElement("div", {
52543
- className: "fadeIn mt-3 block space-y-1 lg:hidden"
52544
- }, properties.links.map(function (_ref8, index) {
52545
- var label = _ref8.label,
52546
- url = _ref8.url,
52547
- action = _ref8.action;
52548
52188
  cov_1cxtcrbyvq().f[4]++;
52549
- cov_1cxtcrbyvq().s[9]++;
52189
+ cov_1cxtcrbyvq().s[10]++;
52550
52190
  return /*#__PURE__*/React__default.createElement(LinkElement, {
52551
52191
  action: action,
52552
- className: "w-full py-1.5",
52553
- key: getUniqueKey(label, url, index),
52192
+ key: getUniqueKey(url, label, index),
52554
52193
  label: label,
52555
52194
  style: design.links,
52556
52195
  to: url
52557
52196
  });
52558
- }))));
52197
+ })))));
52559
52198
  };
52560
52199
 
52561
52200
  function cov_4b56yhkmy() {
@@ -55626,5 +55265,5 @@ function cov_w8wufnrsd() {
55626
55265
  }
55627
55266
  cov_w8wufnrsd();
55628
55267
 
55629
- 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 };
55268
+ 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 };
55630
55269
  //# sourceMappingURL=index.js.map