@bigbinary/neeto-molecules 1.0.25 → 1.0.27

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.
Files changed (44) hide show
  1. package/dist/Columns.cjs.js +139 -112
  2. package/dist/Columns.cjs.js.map +1 -1
  3. package/dist/Columns.js +139 -112
  4. package/dist/Columns.js.map +1 -1
  5. package/dist/CustomDomain.cjs.js +523 -1339
  6. package/dist/CustomDomain.cjs.js.map +1 -1
  7. package/dist/CustomDomain.js +527 -1343
  8. package/dist/CustomDomain.js.map +1 -1
  9. package/dist/Header.cjs.js +67 -53
  10. package/dist/Header.cjs.js.map +1 -1
  11. package/dist/Header.js +67 -53
  12. package/dist/Header.js.map +1 -1
  13. package/dist/LoginPage.cjs.js +23 -18
  14. package/dist/LoginPage.cjs.js.map +1 -1
  15. package/dist/LoginPage.js +23 -18
  16. package/dist/LoginPage.js.map +1 -1
  17. package/dist/NeetoWidget.cjs.js +425 -565
  18. package/dist/NeetoWidget.cjs.js.map +1 -1
  19. package/dist/NeetoWidget.js +426 -566
  20. package/dist/NeetoWidget.js.map +1 -1
  21. package/dist/PhoneNumber.cjs.js +628 -86
  22. package/dist/PhoneNumber.cjs.js.map +1 -1
  23. package/dist/PhoneNumber.js +628 -86
  24. package/dist/PhoneNumber.js.map +1 -1
  25. package/dist/Rename.cjs.js +240 -226
  26. package/dist/Rename.cjs.js.map +1 -1
  27. package/dist/Rename.js +241 -227
  28. package/dist/Rename.js.map +1 -1
  29. package/dist/ShareViaLink.cjs.js +8 -7
  30. package/dist/ShareViaLink.cjs.js.map +1 -1
  31. package/dist/ShareViaLink.js +8 -7
  32. package/dist/ShareViaLink.js.map +1 -1
  33. package/dist/Sidebar.cjs.js +1 -1
  34. package/dist/Sidebar.cjs.js.map +1 -1
  35. package/dist/Sidebar.js +1 -1
  36. package/dist/Sidebar.js.map +1 -1
  37. package/dist/SubHeader.cjs.js +208 -1094
  38. package/dist/SubHeader.cjs.js.map +1 -1
  39. package/dist/SubHeader.js +209 -1095
  40. package/dist/SubHeader.js.map +1 -1
  41. package/package.json +2 -2
  42. package/src/translations/en.json +26 -7
  43. package/types/Sidebar.d.ts +1 -1
  44. package/types/SubHeader.d.ts +39 -0
@@ -1,17 +1,18 @@
1
- import React, { forwardRef, useRef, useState, useEffect } from 'react';
2
- import { removeBy, isNotEmpty, snakeToCamelCase } from '@bigbinary/neeto-commons-frontend/pure';
3
- import { useLocalStorage, useDebounce } from '@bigbinary/neeto-commons-frontend/react-utils';
4
- import { Typography, Dropdown as Dropdown$1, Button, Input, Label, Checkbox, Tag, Callout, Pane, Table, NoData, Alert } from '@bigbinary/neetoui';
1
+ import React, { forwardRef, useRef, useState } from 'react';
2
+ import { snakeToCamelCase, isNotEmpty } from '@bigbinary/neeto-commons-frontend/pure';
3
+ import { useDebounce } from '@bigbinary/neeto-commons-frontend/react-utils';
4
+ import { Typography, Dropdown as Dropdown$1, Button, Input, Tag, Callout, Pane, Label, Table, NoData, Alert } from '@bigbinary/neetoui';
5
5
  import { useTranslation, Trans } from 'react-i18next';
6
6
  import { Right, MenuVertical, HamburgerMenu, Search, Column, Download, Filter, MenuHorizontal, Info, Copy, Check } from '@bigbinary/neeto-icons';
7
- import { isEmpty, includes, __, filter, trim, toLower, identity, without, append } from 'ramda';
7
+ import { isEmpty } from 'ramda';
8
8
  import { Link } from 'react-router-dom';
9
9
  import { Neeto } from '@bigbinary/neeto-icons/logos';
10
- import i18next, { t as t$1 } from 'i18next';
10
+ import ManageColumns from '@bigbinary/neeto-molecules/Columns';
11
11
  import { Filters } from '@bigbinary/neeto-filters-frontend';
12
12
  import { Formik, Form } from 'formik';
13
13
  import { Input as Input$1 } from '@bigbinary/neetoui/formik';
14
14
  import { joinHyphenCase, copyToClipboard, timeFormat } from '@bigbinary/neeto-commons-frontend/utils';
15
+ import { t as t$1 } from 'i18next';
15
16
  import * as Yup from 'yup';
16
17
  import { useQueryClient, useMutation, useQuery } from 'react-query';
17
18
  import axios from 'axios';
@@ -467,7 +468,7 @@ function _objectWithoutProperties(source, excluded) {
467
468
  return target;
468
469
  }
469
470
 
470
- var _excluded$2 = ["children"];
471
+ var _excluded$3 = ["children"];
471
472
  function cov_1d9vaefr1a() {
472
473
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/Header/Dropdown.jsx";
473
474
  var hash = "57d665dbaab5aa76c0b57bedd85469275a9f6867";
@@ -553,7 +554,7 @@ cov_1d9vaefr1a().s[0]++;
553
554
  var Dropdown = function Dropdown(_ref) {
554
555
  var _ref$dropdownProps = _ref.dropdownProps,
555
556
  children = _ref$dropdownProps.children,
556
- otherProps = _objectWithoutProperties(_ref$dropdownProps, _excluded$2);
557
+ otherProps = _objectWithoutProperties(_ref$dropdownProps, _excluded$3);
557
558
  cov_1d9vaefr1a().f[0]++;
558
559
  cov_1d9vaefr1a().s[1]++;
559
560
  return /*#__PURE__*/React.createElement(Dropdown$1, _extends({
@@ -569,7 +570,7 @@ var Dropdown = function Dropdown(_ref) {
569
570
 
570
571
  function cov_14lmkczjok() {
571
572
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/Header/index.jsx";
572
- var hash = "ffe20f4612621150120204f01a4318179de8e933";
573
+ var hash = "4acb371c47823c0e6c94aab252b899cdd2f46202";
573
574
  var global = new Function("return this")();
574
575
  var gcv = "__coverage__";
575
576
  var coverageData = {
@@ -577,31 +578,41 @@ function cov_14lmkczjok() {
577
578
  statementMap: {
578
579
  "0": {
579
580
  start: {
580
- line: 12,
581
+ line: 13,
581
582
  column: 15
582
583
  },
583
584
  end: {
584
- line: 76,
585
+ line: 78,
585
586
  column: 1
586
587
  }
587
588
  },
588
589
  "1": {
589
590
  start: {
590
- line: 21,
591
+ line: 22,
591
592
  column: 20
592
593
  },
593
594
  end: {
594
- line: 21,
595
+ line: 22,
595
596
  column: 32
596
597
  }
597
598
  },
598
599
  "2": {
599
600
  start: {
600
601
  line: 23,
602
+ column: 16
603
+ },
604
+ end: {
605
+ line: 23,
606
+ column: 32
607
+ }
608
+ },
609
+ "3": {
610
+ start: {
611
+ line: 25,
601
612
  column: 2
602
613
  },
603
614
  end: {
604
- line: 75,
615
+ line: 77,
605
616
  column: 4
606
617
  }
607
618
  }
@@ -611,213 +622,214 @@ function cov_14lmkczjok() {
611
622
  name: "(anonymous_0)",
612
623
  decl: {
613
624
  start: {
614
- line: 12,
625
+ line: 13,
615
626
  column: 15
616
627
  },
617
628
  end: {
618
- line: 12,
629
+ line: 13,
619
630
  column: 16
620
631
  }
621
632
  },
622
633
  loc: {
623
634
  start: {
624
- line: 20,
635
+ line: 21,
625
636
  column: 6
626
637
  },
627
638
  end: {
628
- line: 76,
639
+ line: 78,
629
640
  column: 1
630
641
  }
631
642
  },
632
- line: 20
643
+ line: 21
633
644
  }
634
645
  },
635
646
  branchMap: {
636
647
  "0": {
637
648
  loc: {
638
649
  start: {
639
- line: 16,
650
+ line: 17,
640
651
  column: 2
641
652
  },
642
653
  end: {
643
- line: 16,
654
+ line: 17,
644
655
  column: 16
645
656
  }
646
657
  },
647
658
  type: "default-arg",
648
659
  locations: [{
649
660
  start: {
650
- line: 16,
661
+ line: 17,
651
662
  column: 14
652
663
  },
653
664
  end: {
654
- line: 16,
665
+ line: 17,
655
666
  column: 16
656
667
  }
657
668
  }],
658
- line: 16
669
+ line: 17
659
670
  },
660
671
  "1": {
661
672
  loc: {
662
673
  start: {
663
- line: 18,
674
+ line: 19,
664
675
  column: 2
665
676
  },
666
677
  end: {
667
- line: 18,
678
+ line: 19,
668
679
  column: 18
669
680
  }
670
681
  },
671
682
  type: "default-arg",
672
683
  locations: [{
673
684
  start: {
674
- line: 18,
685
+ line: 19,
675
686
  column: 16
676
687
  },
677
688
  end: {
678
- line: 18,
689
+ line: 19,
679
690
  column: 18
680
691
  }
681
692
  }],
682
- line: 18
693
+ line: 19
683
694
  },
684
695
  "2": {
685
696
  loc: {
686
697
  start: {
687
- line: 32,
698
+ line: 34,
688
699
  column: 9
689
700
  },
690
701
  end: {
691
- line: 41,
702
+ line: 43,
692
703
  column: 9
693
704
  }
694
705
  },
695
706
  type: "binary-expr",
696
707
  locations: [{
697
708
  start: {
698
- line: 32,
709
+ line: 34,
699
710
  column: 9
700
711
  },
701
712
  end: {
702
- line: 32,
713
+ line: 34,
703
714
  column: 22
704
715
  }
705
716
  }, {
706
717
  start: {
707
- line: 33,
718
+ line: 35,
708
719
  column: 10
709
720
  },
710
721
  end: {
711
- line: 40,
722
+ line: 42,
712
723
  column: 12
713
724
  }
714
725
  }],
715
- line: 32
726
+ line: 34
716
727
  },
717
728
  "3": {
718
729
  loc: {
719
730
  start: {
720
- line: 43,
731
+ line: 45,
721
732
  column: 11
722
733
  },
723
734
  end: {
724
- line: 43,
735
+ line: 45,
725
736
  column: 67
726
737
  }
727
738
  },
728
739
  type: "binary-expr",
729
740
  locations: [{
730
741
  start: {
731
- line: 43,
742
+ line: 45,
732
743
  column: 11
733
744
  },
734
745
  end: {
735
- line: 43,
746
+ line: 45,
736
747
  column: 22
737
748
  }
738
749
  }, {
739
750
  start: {
740
- line: 43,
751
+ line: 45,
741
752
  column: 26
742
753
  },
743
754
  end: {
744
- line: 43,
755
+ line: 45,
745
756
  column: 67
746
757
  }
747
758
  }],
748
- line: 43
759
+ line: 45
749
760
  },
750
761
  "4": {
751
762
  loc: {
752
763
  start: {
753
- line: 54,
764
+ line: 56,
754
765
  column: 13
755
766
  },
756
767
  end: {
757
- line: 54,
768
+ line: 56,
758
769
  column: 72
759
770
  }
760
771
  },
761
772
  type: "binary-expr",
762
773
  locations: [{
763
774
  start: {
764
- line: 54,
775
+ line: 56,
765
776
  column: 13
766
777
  },
767
778
  end: {
768
- line: 54,
779
+ line: 56,
769
780
  column: 26
770
781
  }
771
782
  }, {
772
783
  start: {
773
- line: 54,
784
+ line: 56,
774
785
  column: 30
775
786
  },
776
787
  end: {
777
- line: 54,
788
+ line: 56,
778
789
  column: 72
779
790
  }
780
791
  }],
781
- line: 54
792
+ line: 56
782
793
  },
783
794
  "5": {
784
795
  loc: {
785
796
  start: {
786
- line: 59,
797
+ line: 61,
787
798
  column: 9
788
799
  },
789
800
  end: {
790
- line: 71,
801
+ line: 73,
791
802
  column: 9
792
803
  }
793
804
  },
794
805
  type: "binary-expr",
795
806
  locations: [{
796
807
  start: {
797
- line: 59,
808
+ line: 61,
798
809
  column: 9
799
810
  },
800
811
  end: {
801
- line: 59,
812
+ line: 61,
802
813
  column: 20
803
814
  }
804
815
  }, {
805
816
  start: {
806
- line: 60,
817
+ line: 62,
807
818
  column: 10
808
819
  },
809
820
  end: {
810
- line: 70,
821
+ line: 72,
811
822
  column: 12
812
823
  }
813
824
  }],
814
- line: 59
825
+ line: 61
815
826
  }
816
827
  },
817
828
  s: {
818
829
  "0": 0,
819
830
  "1": 0,
820
- "2": 0
831
+ "2": 0,
832
+ "3": 0
821
833
  },
822
834
  f: {
823
835
  "0": 0
@@ -831,7 +843,7 @@ function cov_14lmkczjok() {
831
843
  "5": [0, 0]
832
844
  },
833
845
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
834
- hash: "ffe20f4612621150120204f01a4318179de8e933"
846
+ hash: "4acb371c47823c0e6c94aab252b899cdd2f46202"
835
847
  };
836
848
  var coverage = global[gcv] || (global[gcv] = {});
837
849
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -860,7 +872,9 @@ var Header = function Header(_ref) {
860
872
  dropdownProps = _ref.dropdownProps;
861
873
  cov_14lmkczjok().f[0]++;
862
874
  var searchRef = (cov_14lmkczjok().s[1]++, useRef(null));
863
- cov_14lmkczjok().s[2]++;
875
+ var _ref2 = (cov_14lmkczjok().s[2]++, useTranslation()),
876
+ t = _ref2.t;
877
+ cov_14lmkczjok().s[3]++;
864
878
  return /*#__PURE__*/React.createElement("div", {
865
879
  className: classnames(["neeto-molecules-header", {
866
880
  "neeto-molecules-header--has-breadcrumbs": !isEmpty(breadcrumbs)
@@ -891,7 +905,7 @@ var Header = function Header(_ref) {
891
905
  }))))), /*#__PURE__*/React.createElement("div", {
892
906
  className: "neeto-ui-gap-3 neeto-molecules-header__right"
893
907
  }, (cov_14lmkczjok().b[5][0]++, searchProps) && (cov_14lmkczjok().b[5][1]++, /*#__PURE__*/React.createElement(Input, _extends({
894
- placeholder: "Search",
908
+ placeholder: t("neetoMolecules.common.actions.search"),
895
909
  prefix: /*#__PURE__*/React.createElement(Search, null),
896
910
  ref: searchRef,
897
911
  type: "search",
@@ -902,7 +916,7 @@ var Header = function Header(_ref) {
902
916
  var css$1 = ".neeto-molecules-pageloader__wrapper{height:100%;position:relative;width:100%}.neeto-molecules-pageloader__wrapper .neeto-molecules-pageloader{height:100%;left:0;position:absolute;top:0;width:100%}.neeto-molecules-pageloader__wrapper .neeto-molecules-pageloader__content{height:66px;margin-bottom:16px;overflow:hidden;padding:8px;position:relative;width:66px}.neeto-molecules-pageloader__wrapper .neeto-molecules-pageloader__text{color:rgb(var(--neeto-ui-gray-800));font-size:1.25rem;line-height:1.75rem;margin-bottom:4rem;text-align:center}.neeto-molecules-pageloader__spinner{display:flex;gap:2px;height:25px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.neeto-molecules-pageloader__spinner>div{animation:neeto-ui-stretch-delay 1.2s ease-in-out infinite;background-color:#fff;border-radius:2px;display:inline-flex;height:100%;width:2px}.neeto-molecules-pageloader__spinner .neeto-molecules-pageloader__rect2{animation-delay:-1.1s}.neeto-molecules-pageloader__spinner .neeto-molecules-pageloader__rect3{animation-delay:-1s}.neeto-molecules-pageloader__spinner .neeto-molecules-pageloader__rect4{animation-delay:-.9s}.neeto-molecules-pageloader__spinner .neeto-molecules-pageloader__rect5{animation-delay:-.8s}@keyframes neeto-ui-stretch-delay{0%,40%,to{transform:scaleY(.4);-webkit-transform:scaleY(.4)}20%{transform:scaleY(1);-webkit-transform:scaleY(1)}}";
903
917
  n(css$1,{});
904
918
 
905
- var _excluded$1 = ["text"];
919
+ var _excluded$2 = ["text"];
906
920
  function cov_1rnptrlqih() {
907
921
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/PageLoader/index.jsx";
908
922
  var hash = "40cda882f932d7a0fcac6bc5ec150d93c0420b62";
@@ -1060,7 +1074,7 @@ cov_1rnptrlqih().s[0]++;
1060
1074
  var PageLoader = function PageLoader(_ref) {
1061
1075
  var _ref$text = _ref.text,
1062
1076
  text = _ref$text === void 0 ? (cov_1rnptrlqih().b[0][0]++, "") : _ref$text,
1063
- otherProps = _objectWithoutProperties(_ref, _excluded$1);
1077
+ otherProps = _objectWithoutProperties(_ref, _excluded$2);
1064
1078
  cov_1rnptrlqih().f[0]++;
1065
1079
  cov_1rnptrlqih().s[1]++;
1066
1080
  return /*#__PURE__*/React.createElement("div", _extends({
@@ -1091,898 +1105,164 @@ var PageLoader = function PageLoader(_ref) {
1091
1105
  };
1092
1106
  cov_1rnptrlqih().s[2]++;
1093
1107
 
1094
- function cov_1ceek736tr() {
1095
- var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/utils.js";
1096
- var hash = "4e99c4492583af7874430eafb0a0c33e80d44e9d";
1108
+ function _typeof(obj) {
1109
+ "@babel/helpers - typeof";
1110
+
1111
+ return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
1112
+ return typeof obj;
1113
+ } : function (obj) {
1114
+ return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
1115
+ }, _typeof(obj);
1116
+ }
1117
+
1118
+ function _toPrimitive(input, hint) {
1119
+ if (_typeof(input) !== "object" || input === null) return input;
1120
+ var prim = input[Symbol.toPrimitive];
1121
+ if (prim !== undefined) {
1122
+ var res = prim.call(input, hint || "default");
1123
+ if (_typeof(res) !== "object") return res;
1124
+ throw new TypeError("@@toPrimitive must return a primitive value.");
1125
+ }
1126
+ return (hint === "string" ? String : Number)(input);
1127
+ }
1128
+
1129
+ function _toPropertyKey(arg) {
1130
+ var key = _toPrimitive(arg, "string");
1131
+ return _typeof(key) === "symbol" ? key : String(key);
1132
+ }
1133
+
1134
+ function _defineProperty(obj, key, value) {
1135
+ key = _toPropertyKey(key);
1136
+ if (key in obj) {
1137
+ Object.defineProperty(obj, key, {
1138
+ value: value,
1139
+ enumerable: true,
1140
+ configurable: true,
1141
+ writable: true
1142
+ });
1143
+ } else {
1144
+ obj[key] = value;
1145
+ }
1146
+ return obj;
1147
+ }
1148
+
1149
+ var _excluded$1 = ["dropdownProps"],
1150
+ _excluded2 = ["buttonProps"];
1151
+ function cov_1nk47gzsi8() {
1152
+ var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/Columns.jsx";
1153
+ var hash = "9f901f9bc4d423cb9b0b0b31492fa4192f1d758f";
1097
1154
  var global = new Function("return this")();
1098
1155
  var gcv = "__coverage__";
1099
1156
  var coverageData = {
1100
- path: "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/utils.js",
1157
+ path: "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/Columns.jsx",
1101
1158
  statementMap: {
1102
1159
  "0": {
1103
1160
  start: {
1104
- line: 4,
1105
- column: 34
1161
+ line: 7,
1162
+ column: 16
1106
1163
  },
1107
1164
  end: {
1108
- line: 5,
1109
- column: 65
1165
+ line: 33,
1166
+ column: 1
1110
1167
  }
1111
1168
  },
1112
1169
  "1": {
1113
1170
  start: {
1114
- line: 5,
1115
- column: 2
1171
+ line: 8,
1172
+ column: 16
1116
1173
  },
1117
1174
  end: {
1118
- line: 5,
1119
- column: 65
1175
+ line: 8,
1176
+ column: 32
1120
1177
  }
1121
1178
  },
1122
1179
  "2": {
1123
1180
  start: {
1124
- line: 7,
1125
- column: 34
1181
+ line: 10,
1182
+ column: 48
1126
1183
  },
1127
1184
  end: {
1128
- line: 11,
1129
- column: 3
1185
+ line: 10,
1186
+ column: 61
1130
1187
  }
1131
1188
  },
1132
1189
  "3": {
1133
1190
  start: {
1134
- line: 8,
1191
+ line: 12,
1135
1192
  column: 2
1136
1193
  },
1137
1194
  end: {
1138
- line: 11,
1139
- column: 3
1140
- }
1141
- },
1142
- "4": {
1143
- start: {
1144
- line: 9,
1145
- column: 19
1146
- },
1147
- end: {
1148
- line: 9,
1149
- column: 76
1195
+ line: 32,
1196
+ column: 4
1150
1197
  }
1151
1198
  }
1152
1199
  },
1153
1200
  fnMap: {
1154
1201
  "0": {
1155
1202
  name: "(anonymous_0)",
1156
- decl: {
1157
- start: {
1158
- line: 4,
1159
- column: 34
1160
- },
1161
- end: {
1162
- line: 4,
1163
- column: 35
1164
- }
1165
- },
1166
- loc: {
1167
- start: {
1168
- line: 5,
1169
- column: 2
1170
- },
1171
- end: {
1172
- line: 5,
1173
- column: 65
1174
- }
1175
- },
1176
- line: 5
1177
- },
1178
- "1": {
1179
- name: "(anonymous_1)",
1180
1203
  decl: {
1181
1204
  start: {
1182
1205
  line: 7,
1183
- column: 34
1206
+ column: 16
1184
1207
  },
1185
1208
  end: {
1186
1209
  line: 7,
1187
- column: 35
1210
+ column: 17
1188
1211
  }
1189
1212
  },
1190
1213
  loc: {
1191
1214
  start: {
1192
- line: 8,
1193
- column: 2
1215
+ line: 7,
1216
+ column: 54
1194
1217
  },
1195
1218
  end: {
1196
- line: 11,
1197
- column: 3
1219
+ line: 33,
1220
+ column: 1
1198
1221
  }
1199
1222
  },
1200
- line: 8
1201
- },
1202
- "2": {
1203
- name: "(anonymous_2)",
1204
- decl: {
1223
+ line: 7
1224
+ }
1225
+ },
1226
+ branchMap: {
1227
+ "0": {
1228
+ loc: {
1205
1229
  start: {
1206
- line: 9,
1207
- column: 4
1230
+ line: 7,
1231
+ column: 19
1208
1232
  },
1209
1233
  end: {
1210
- line: 9,
1211
- column: 5
1234
+ line: 7,
1235
+ column: 37
1212
1236
  }
1213
1237
  },
1214
- loc: {
1238
+ type: "default-arg",
1239
+ locations: [{
1215
1240
  start: {
1216
- line: 9,
1217
- column: 19
1241
+ line: 7,
1242
+ column: 35
1218
1243
  },
1219
1244
  end: {
1220
- line: 9,
1221
- column: 76
1245
+ line: 7,
1246
+ column: 37
1222
1247
  }
1223
- },
1224
- line: 9
1248
+ }],
1249
+ line: 7
1225
1250
  }
1226
1251
  },
1227
- branchMap: {},
1228
1252
  s: {
1229
1253
  "0": 0,
1230
1254
  "1": 0,
1231
1255
  "2": 0,
1232
- "3": 0,
1233
- "4": 0
1234
- },
1235
- f: {
1236
- "0": 0,
1237
- "1": 0,
1238
- "2": 0
1239
- },
1240
- b: {},
1241
- _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
1242
- hash: "4e99c4492583af7874430eafb0a0c33e80d44e9d"
1243
- };
1244
- var coverage = global[gcv] || (global[gcv] = {});
1245
- if (!coverage[path] || coverage[path].hash !== hash) {
1246
- coverage[path] = coverageData;
1247
- }
1248
- var actualCoverage = coverage[path];
1249
- {
1250
- // @ts-ignore
1251
- cov_1ceek736tr = function () {
1252
- return actualCoverage;
1253
- };
1254
- }
1255
- return actualCoverage;
1256
- }
1257
- cov_1ceek736tr();
1258
- cov_1ceek736tr().s[0]++;
1259
- var removeFixedColumns = function removeFixedColumns(fixedColumns, columnData) {
1260
- cov_1ceek736tr().f[0]++;
1261
- cov_1ceek736tr().s[1]++;
1262
- return removeBy({
1263
- dataIndex: includes(__, fixedColumns)
1264
- }, columnData);
1265
- };
1266
- cov_1ceek736tr().s[2]++;
1267
- var filterBySearchTerm = function filterBySearchTerm(searchTerm, columns) {
1268
- cov_1ceek736tr().f[1]++;
1269
- cov_1ceek736tr().s[3]++;
1270
- return filter(function (_ref) {
1271
- var title = _ref.title;
1272
- cov_1ceek736tr().f[2]++;
1273
- cov_1ceek736tr().s[4]++;
1274
- return includes(trim(toLower(searchTerm)), trim(toLower(title)));
1275
- }, columns);
1276
- };
1277
-
1278
- function cov_1nk47gzsi8() {
1279
- var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/Columns.jsx";
1280
- var hash = "a073b27c47692599de4a6dea8467014f75c0f886";
1281
- var global = new Function("return this")();
1282
- var gcv = "__coverage__";
1283
- var coverageData = {
1284
- path: "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/Columns.jsx",
1285
- statementMap: {
1286
- "0": {
1287
- start: {
1288
- line: 13,
1289
- column: 16
1290
- },
1291
- end: {
1292
- line: 114,
1293
- column: 1
1294
- }
1295
- },
1296
- "1": {
1297
- start: {
1298
- line: 25,
1299
- column: 38
1300
- },
1301
- end: {
1302
- line: 25,
1303
- column: 46
1304
- }
1305
- },
1306
- "2": {
1307
- start: {
1308
- line: 26,
1309
- column: 44
1310
- },
1311
- end: {
1312
- line: 29,
1313
- column: 3
1314
- }
1315
- },
1316
- "3": {
1317
- start: {
1318
- line: 30,
1319
- column: 38
1320
- },
1321
- end: {
1322
- line: 30,
1323
- column: 50
1324
- }
1325
- },
1326
- "4": {
1327
- start: {
1328
- line: 32,
1329
- column: 18
1330
- },
1331
- end: {
1332
- line: 32,
1333
- column: 62
1334
- }
1335
- },
1336
- "5": {
1337
- start: {
1338
- line: 33,
1339
- column: 26
1340
- },
1341
- end: {
1342
- line: 33,
1343
- column: 65
1344
- }
1345
- },
1346
- "6": {
1347
- start: {
1348
- line: 35,
1349
- column: 23
1350
- },
1351
- end: {
1352
- line: 38,
1353
- column: 58
1354
- }
1355
- },
1356
- "7": {
1357
- start: {
1358
- line: 36,
1359
- column: 4
1360
- },
1361
- end: {
1362
- line: 38,
1363
- column: 58
1364
- }
1365
- },
1366
- "8": {
1367
- start: {
1368
- line: 40,
1369
- column: 23
1370
- },
1371
- end: {
1372
- line: 40,
1373
- column: 70
1374
- }
1375
- },
1376
- "9": {
1377
- start: {
1378
- line: 40,
1379
- column: 50
1380
- },
1381
- end: {
1382
- line: 40,
1383
- column: 70
1384
- }
1385
- },
1386
- "10": {
1387
- start: {
1388
- line: 42,
1389
- column: 2
1390
- },
1391
- end: {
1392
- line: 44,
1393
- column: 34
1394
- }
1395
- },
1396
- "11": {
1397
- start: {
1398
- line: 43,
1399
- column: 4
1400
- },
1401
- end: {
1402
- line: 43,
1403
- column: 79
1404
- }
1405
- },
1406
- "12": {
1407
- start: {
1408
- line: 46,
1409
- column: 16
1410
- },
1411
- end: {
1412
- line: 46,
1413
- column: 32
1414
- }
1415
- },
1416
- "13": {
1417
- start: {
1418
- line: 48,
1419
- column: 2
1420
- },
1421
- end: {
1422
- line: 113,
1423
- column: 4
1424
- }
1425
- },
1426
- "14": {
1427
- start: {
1428
- line: 62,
1429
- column: 23
1430
- },
1431
- end: {
1432
- line: 62,
1433
- column: 40
1434
- }
1435
- },
1436
- "15": {
1437
- start: {
1438
- line: 81,
1439
- column: 16
1440
- },
1441
- end: {
1442
- line: 96,
1443
- column: 27
1444
- }
1445
- }
1446
- },
1447
- fnMap: {
1448
- "0": {
1449
- name: "(anonymous_0)",
1450
- decl: {
1451
- start: {
1452
- line: 13,
1453
- column: 16
1454
- },
1455
- end: {
1456
- line: 13,
1457
- column: 17
1458
- }
1459
- },
1460
- loc: {
1461
- start: {
1462
- line: 24,
1463
- column: 6
1464
- },
1465
- end: {
1466
- line: 114,
1467
- column: 1
1468
- }
1469
- },
1470
- line: 24
1471
- },
1472
- "1": {
1473
- name: "(anonymous_1)",
1474
- decl: {
1475
- start: {
1476
- line: 35,
1477
- column: 23
1478
- },
1479
- end: {
1480
- line: 35,
1481
- column: 24
1482
- }
1483
- },
1484
- loc: {
1485
- start: {
1486
- line: 36,
1487
- column: 4
1488
- },
1489
- end: {
1490
- line: 38,
1491
- column: 58
1492
- }
1493
- },
1494
- line: 36
1495
- },
1496
- "2": {
1497
- name: "(anonymous_2)",
1498
- decl: {
1499
- start: {
1500
- line: 40,
1501
- column: 23
1502
- },
1503
- end: {
1504
- line: 40,
1505
- column: 24
1506
- }
1507
- },
1508
- loc: {
1509
- start: {
1510
- line: 40,
1511
- column: 50
1512
- },
1513
- end: {
1514
- line: 40,
1515
- column: 70
1516
- }
1517
- },
1518
- line: 40
1519
- },
1520
- "3": {
1521
- name: "(anonymous_3)",
1522
- decl: {
1523
- start: {
1524
- line: 42,
1525
- column: 12
1526
- },
1527
- end: {
1528
- line: 42,
1529
- column: 13
1530
- }
1531
- },
1532
- loc: {
1533
- start: {
1534
- line: 42,
1535
- column: 18
1536
- },
1537
- end: {
1538
- line: 44,
1539
- column: 3
1540
- }
1541
- },
1542
- line: 42
1543
- },
1544
- "4": {
1545
- name: "(anonymous_4)",
1546
- decl: {
1547
- start: {
1548
- line: 62,
1549
- column: 17
1550
- },
1551
- end: {
1552
- line: 62,
1553
- column: 18
1554
- }
1555
- },
1556
- loc: {
1557
- start: {
1558
- line: 62,
1559
- column: 23
1560
- },
1561
- end: {
1562
- line: 62,
1563
- column: 40
1564
- }
1565
- },
1566
- line: 62
1567
- },
1568
- "5": {
1569
- name: "(anonymous_5)",
1570
- decl: {
1571
- start: {
1572
- line: 80,
1573
- column: 34
1574
- },
1575
- end: {
1576
- line: 80,
1577
- column: 35
1578
- }
1579
- },
1580
- loc: {
1581
- start: {
1582
- line: 81,
1583
- column: 16
1584
- },
1585
- end: {
1586
- line: 96,
1587
- column: 27
1588
- }
1589
- },
1590
- line: 81
1591
- }
1592
- },
1593
- branchMap: {
1594
- "0": {
1595
- loc: {
1596
- start: {
1597
- line: 15,
1598
- column: 2
1599
- },
1600
- end: {
1601
- line: 15,
1602
- column: 20
1603
- }
1604
- },
1605
- type: "default-arg",
1606
- locations: [{
1607
- start: {
1608
- line: 15,
1609
- column: 18
1610
- },
1611
- end: {
1612
- line: 15,
1613
- column: 20
1614
- }
1615
- }],
1616
- line: 15
1617
- },
1618
- "1": {
1619
- loc: {
1620
- start: {
1621
- line: 16,
1622
- column: 2
1623
- },
1624
- end: {
1625
- line: 16,
1626
- column: 17
1627
- }
1628
- },
1629
- type: "default-arg",
1630
- locations: [{
1631
- start: {
1632
- line: 16,
1633
- column: 15
1634
- },
1635
- end: {
1636
- line: 16,
1637
- column: 17
1638
- }
1639
- }],
1640
- line: 16
1641
- },
1642
- "2": {
1643
- loc: {
1644
- start: {
1645
- line: 17,
1646
- column: 2
1647
- },
1648
- end: {
1649
- line: 17,
1650
- column: 20
1651
- }
1652
- },
1653
- type: "default-arg",
1654
- locations: [{
1655
- start: {
1656
- line: 17,
1657
- column: 18
1658
- },
1659
- end: {
1660
- line: 17,
1661
- column: 20
1662
- }
1663
- }],
1664
- line: 17
1665
- },
1666
- "3": {
1667
- loc: {
1668
- start: {
1669
- line: 18,
1670
- column: 2
1671
- },
1672
- end: {
1673
- line: 18,
1674
- column: 19
1675
- }
1676
- },
1677
- type: "default-arg",
1678
- locations: [{
1679
- start: {
1680
- line: 18,
1681
- column: 17
1682
- },
1683
- end: {
1684
- line: 18,
1685
- column: 19
1686
- }
1687
- }],
1688
- line: 18
1689
- },
1690
- "4": {
1691
- loc: {
1692
- start: {
1693
- line: 19,
1694
- column: 2
1695
- },
1696
- end: {
1697
- line: 19,
1698
- column: 22
1699
- }
1700
- },
1701
- type: "default-arg",
1702
- locations: [{
1703
- start: {
1704
- line: 19,
1705
- column: 17
1706
- },
1707
- end: {
1708
- line: 19,
1709
- column: 22
1710
- }
1711
- }],
1712
- line: 19
1713
- },
1714
- "5": {
1715
- loc: {
1716
- start: {
1717
- line: 20,
1718
- column: 2
1719
- },
1720
- end: {
1721
- line: 20,
1722
- column: 22
1723
- }
1724
- },
1725
- type: "default-arg",
1726
- locations: [{
1727
- start: {
1728
- line: 20,
1729
- column: 20
1730
- },
1731
- end: {
1732
- line: 20,
1733
- column: 22
1734
- }
1735
- }],
1736
- line: 20
1737
- },
1738
- "6": {
1739
- loc: {
1740
- start: {
1741
- line: 21,
1742
- column: 2
1743
- },
1744
- end: {
1745
- line: 21,
1746
- column: 65
1747
- }
1748
- },
1749
- type: "default-arg",
1750
- locations: [{
1751
- start: {
1752
- line: 21,
1753
- column: 20
1754
- },
1755
- end: {
1756
- line: 21,
1757
- column: 65
1758
- }
1759
- }],
1760
- line: 21
1761
- },
1762
- "7": {
1763
- loc: {
1764
- start: {
1765
- line: 22,
1766
- column: 2
1767
- },
1768
- end: {
1769
- line: 22,
1770
- column: 21
1771
- }
1772
- },
1773
- type: "default-arg",
1774
- locations: [{
1775
- start: {
1776
- line: 22,
1777
- column: 13
1778
- },
1779
- end: {
1780
- line: 22,
1781
- column: 21
1782
- }
1783
- }],
1784
- line: 22
1785
- },
1786
- "8": {
1787
- loc: {
1788
- start: {
1789
- line: 23,
1790
- column: 2
1791
- },
1792
- end: {
1793
- line: 23,
1794
- column: 18
1795
- }
1796
- },
1797
- type: "default-arg",
1798
- locations: [{
1799
- start: {
1800
- line: 23,
1801
- column: 16
1802
- },
1803
- end: {
1804
- line: 23,
1805
- column: 18
1806
- }
1807
- }],
1808
- line: 23
1809
- },
1810
- "9": {
1811
- loc: {
1812
- start: {
1813
- line: 36,
1814
- column: 4
1815
- },
1816
- end: {
1817
- line: 38,
1818
- column: 58
1819
- }
1820
- },
1821
- type: "cond-expr",
1822
- locations: [{
1823
- start: {
1824
- line: 37,
1825
- column: 8
1826
- },
1827
- end: {
1828
- line: 37,
1829
- column: 61
1830
- }
1831
- }, {
1832
- start: {
1833
- line: 38,
1834
- column: 8
1835
- },
1836
- end: {
1837
- line: 38,
1838
- column: 58
1839
- }
1840
- }],
1841
- line: 36
1842
- },
1843
- "10": {
1844
- loc: {
1845
- start: {
1846
- line: 67,
1847
- column: 13
1848
- },
1849
- end: {
1850
- line: 78,
1851
- column: 13
1852
- }
1853
- },
1854
- type: "binary-expr",
1855
- locations: [{
1856
- start: {
1857
- line: 67,
1858
- column: 13
1859
- },
1860
- end: {
1861
- line: 67,
1862
- column: 25
1863
- }
1864
- }, {
1865
- start: {
1866
- line: 68,
1867
- column: 14
1868
- },
1869
- end: {
1870
- line: 77,
1871
- column: 16
1872
- }
1873
- }],
1874
- line: 67
1875
- },
1876
- "11": {
1877
- loc: {
1878
- start: {
1879
- line: 79,
1880
- column: 13
1881
- },
1882
- end: {
1883
- line: 102,
1884
- column: 13
1885
- }
1886
- },
1887
- type: "cond-expr",
1888
- locations: [{
1889
- start: {
1890
- line: 80,
1891
- column: 14
1892
- },
1893
- end: {
1894
- line: 97,
1895
- column: 16
1896
- }
1897
- }, {
1898
- start: {
1899
- line: 99,
1900
- column: 14
1901
- },
1902
- end: {
1903
- line: 101,
1904
- column: 21
1905
- }
1906
- }],
1907
- line: 79
1908
- },
1909
- "12": {
1910
- loc: {
1911
- start: {
1912
- line: 103,
1913
- column: 13
1914
- },
1915
- end: {
1916
- line: 108,
1917
- column: 13
1918
- }
1919
- },
1920
- type: "binary-expr",
1921
- locations: [{
1922
- start: {
1923
- line: 103,
1924
- column: 13
1925
- },
1926
- end: {
1927
- line: 103,
1928
- column: 26
1929
- }
1930
- }, {
1931
- start: {
1932
- line: 104,
1933
- column: 14
1934
- },
1935
- end: {
1936
- line: 107,
1937
- column: 17
1938
- }
1939
- }],
1940
- line: 103
1941
- }
1942
- },
1943
- s: {
1944
- "0": 0,
1945
- "1": 0,
1946
- "2": 0,
1947
- "3": 0,
1948
- "4": 0,
1949
- "5": 0,
1950
- "6": 0,
1951
- "7": 0,
1952
- "8": 0,
1953
- "9": 0,
1954
- "10": 0,
1955
- "11": 0,
1956
- "12": 0,
1957
- "13": 0,
1958
- "14": 0,
1959
- "15": 0
1256
+ "3": 0
1960
1257
  },
1961
1258
  f: {
1962
- "0": 0,
1963
- "1": 0,
1964
- "2": 0,
1965
- "3": 0,
1966
- "4": 0,
1967
- "5": 0
1968
- },
1969
- b: {
1970
- "0": [0],
1971
- "1": [0],
1972
- "2": [0],
1973
- "3": [0],
1974
- "4": [0],
1975
- "5": [0],
1976
- "6": [0],
1977
- "7": [0],
1978
- "8": [0],
1979
- "9": [0, 0],
1980
- "10": [0, 0],
1981
- "11": [0, 0],
1982
- "12": [0, 0]
1259
+ "0": 0
1260
+ },
1261
+ b: {
1262
+ "0": [0]
1983
1263
  },
1984
1264
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
1985
- hash: "a073b27c47692599de4a6dea8467014f75c0f886"
1265
+ hash: "9f901f9bc4d423cb9b0b0b31492fa4192f1d758f"
1986
1266
  };
1987
1267
  var coverage = global[gcv] || (global[gcv] = {});
1988
1268
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -1998,123 +1278,41 @@ function cov_1nk47gzsi8() {
1998
1278
  return actualCoverage;
1999
1279
  }
2000
1280
  cov_1nk47gzsi8();
1281
+ 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; }
1282
+ 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(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; }
2001
1283
  cov_1nk47gzsi8().s[0]++;
2002
1284
  var Columns = function Columns(_ref) {
2003
- var actionBlock = _ref.actionBlock,
2004
- _ref$checkboxProps = _ref.checkboxProps,
2005
- checkboxProps = _ref$checkboxProps === void 0 ? (cov_1nk47gzsi8().b[0][0]++, {}) : _ref$checkboxProps,
2006
- _ref$columnData = _ref.columnData,
2007
- columnData = _ref$columnData === void 0 ? (cov_1nk47gzsi8().b[1][0]++, []) : _ref$columnData,
2008
- _ref$dropdownProps = _ref.dropdownProps,
2009
- dropdownProps = _ref$dropdownProps === void 0 ? (cov_1nk47gzsi8().b[2][0]++, {}) : _ref$dropdownProps,
2010
- _ref$fixedColumns = _ref.fixedColumns,
2011
- fixedColumns = _ref$fixedColumns === void 0 ? (cov_1nk47gzsi8().b[3][0]++, []) : _ref$fixedColumns,
2012
- _ref$isSearchable = _ref.isSearchable,
2013
- isSearchable = _ref$isSearchable === void 0 ? (cov_1nk47gzsi8().b[4][0]++, false) : _ref$isSearchable,
2014
- _ref$localStorageKey = _ref.localStorageKey,
2015
- localStorageKey = _ref$localStorageKey === void 0 ? (cov_1nk47gzsi8().b[5][0]++, "") : _ref$localStorageKey,
2016
- _ref$noColumnMessage = _ref.noColumnMessage,
2017
- noColumnMessage = _ref$noColumnMessage === void 0 ? (cov_1nk47gzsi8().b[6][0]++, i18next.t("neetoMolecules.columns.noColumns")) : _ref$noColumnMessage,
2018
- _ref$onChange = _ref.onChange,
2019
- onChange = _ref$onChange === void 0 ? (cov_1nk47gzsi8().b[7][0]++, identity) : _ref$onChange,
2020
- _ref$searchProps = _ref.searchProps,
2021
- searchProps = _ref$searchProps === void 0 ? (cov_1nk47gzsi8().b[8][0]++, {}) : _ref$searchProps;
1285
+ var _ref$dropdownProps = _ref.dropdownProps,
1286
+ dropdownProps = _ref$dropdownProps === void 0 ? (cov_1nk47gzsi8().b[0][0]++, {}) : _ref$dropdownProps,
1287
+ props = _objectWithoutProperties(_ref, _excluded$1);
2022
1288
  cov_1nk47gzsi8().f[0]++;
2023
- var _ref2 = (cov_1nk47gzsi8().s[1]++, Dropdown$1),
2024
- Divider = _ref2.Divider,
2025
- Menu = _ref2.Menu,
2026
- MenuItem = _ref2.MenuItem;
2027
- var _ref3 = (cov_1nk47gzsi8().s[2]++, useLocalStorage(localStorageKey, [])),
2028
- _ref4 = _slicedToArray(_ref3, 2),
2029
- hiddenColumns = _ref4[0],
2030
- setHiddenColumns = _ref4[1];
2031
- var _ref5 = (cov_1nk47gzsi8().s[3]++, useState("")),
2032
- _ref6 = _slicedToArray(_ref5, 2),
2033
- searchTerm = _ref6[0],
2034
- setSearchTerm = _ref6[1];
2035
- var columns = (cov_1nk47gzsi8().s[4]++, removeFixedColumns(fixedColumns, columnData));
2036
- var filteredColumns = (cov_1nk47gzsi8().s[5]++, filterBySearchTerm(searchTerm, columns));
2037
- cov_1nk47gzsi8().s[6]++;
2038
- var handleChange = function handleChange(_ref7) {
2039
- var _ref7$target = _ref7.target,
2040
- dataIndex = _ref7$target.name,
2041
- checked = _ref7$target.checked;
2042
- cov_1nk47gzsi8().f[1]++;
2043
- cov_1nk47gzsi8().s[7]++;
2044
- return checked ? (cov_1nk47gzsi8().b[9][0]++, setHiddenColumns(without([dataIndex], hiddenColumns))) : (cov_1nk47gzsi8().b[9][1]++, setHiddenColumns(append(dataIndex, hiddenColumns)));
2045
- };
2046
- cov_1nk47gzsi8().s[8]++;
2047
- var handleSearch = function handleSearch(_ref8) {
2048
- var value = _ref8.target.value;
2049
- cov_1nk47gzsi8().f[2]++;
2050
- cov_1nk47gzsi8().s[9]++;
2051
- return setSearchTerm(value);
2052
- };
2053
- cov_1nk47gzsi8().s[10]++;
2054
- useEffect(function () {
2055
- cov_1nk47gzsi8().f[3]++;
2056
- cov_1nk47gzsi8().s[11]++;
2057
- onChange(removeBy({
2058
- dataIndex: includes(__, hiddenColumns)
2059
- }, columnData));
2060
- }, [columnData, hiddenColumns]);
2061
- var _ref9 = (cov_1nk47gzsi8().s[12]++, useTranslation()),
2062
- t = _ref9.t;
2063
- cov_1nk47gzsi8().s[13]++;
1289
+ var _ref2 = (cov_1nk47gzsi8().s[1]++, useTranslation()),
1290
+ t = _ref2.t;
1291
+ var _ref3 = (cov_1nk47gzsi8().s[2]++, dropdownProps),
1292
+ buttonProps = _ref3.buttonProps,
1293
+ restDropdownProps = _objectWithoutProperties(_ref3, _excluded2);
1294
+ cov_1nk47gzsi8().s[3]++;
2064
1295
  return /*#__PURE__*/React.createElement("div", {
2065
1296
  className: "neeto-molecules-subheader__columns"
2066
- }, /*#__PURE__*/React.createElement(Dropdown$1, _extends({
2067
- buttonStyle: "text",
2068
- closeOnSelect: false,
2069
- position: "bottom-end",
2070
- buttonProps: {
2071
- icon: Column,
2072
- tooltipProps: {
2073
- content: t("neetoMolecules.columns.columns"),
2074
- position: "bottom"
2075
- },
2076
- "data-testid": "columns-button"
2077
- },
2078
- onClose: function onClose() {
2079
- cov_1nk47gzsi8().f[4]++;
2080
- cov_1nk47gzsi8().s[14]++;
2081
- return setSearchTerm("");
2082
- }
2083
- }, dropdownProps), /*#__PURE__*/React.createElement(Menu, null, /*#__PURE__*/React.createElement("div", null, (cov_1nk47gzsi8().b[10][0]++, isSearchable) && (cov_1nk47gzsi8().b[10][1]++, /*#__PURE__*/React.createElement(Input, _extends({
2084
- className: "neeto-ui-px-3 neeto-ui-py-2",
2085
- "data-cy": "neeto-ui-columns-search",
2086
- placeholder: t("neetoMolecules.columns.search"),
2087
- prefix: /*#__PURE__*/React.createElement(Search, null),
2088
- type: "search",
2089
- value: searchTerm,
2090
- onChange: handleSearch
2091
- }, searchProps))), isNotEmpty(filteredColumns) ? (cov_1nk47gzsi8().b[11][0]++, filteredColumns.map(function (_ref10) {
2092
- var dataIndex = _ref10.dataIndex,
2093
- key = _ref10.key,
2094
- title = _ref10.title;
2095
- cov_1nk47gzsi8().f[5]++;
2096
- cov_1nk47gzsi8().s[15]++;
2097
- return /*#__PURE__*/React.createElement(MenuItem, {
2098
- key: key
2099
- }, /*#__PURE__*/React.createElement(Label, {
2100
- className: "neeto-ui-w-full neeto-ui-px-3 neeto-ui-py-2 hover:neeto-ui-bg-gray-200 neeto-ui-cursor-pointer",
2101
- htmlFor: dataIndex
2102
- }, /*#__PURE__*/React.createElement(Checkbox, _extends({
2103
- checked: !hiddenColumns.includes(dataIndex),
2104
- "data-cy": "neeto-ui-columns-checkbox",
2105
- id: dataIndex,
2106
- label: title,
2107
- name: dataIndex,
2108
- onChange: handleChange
2109
- }, checkboxProps))));
2110
- })) : (cov_1nk47gzsi8().b[11][1]++, /*#__PURE__*/React.createElement("span", {
2111
- className: "neeto-ui-flex neeto-ui-flex-col neeto-ui-items-center neeto-ui-p-2"
2112
- }, noColumnMessage)), (cov_1nk47gzsi8().b[12][0]++, !!actionBlock) && (cov_1nk47gzsi8().b[12][1]++, /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Divider, null), actionBlock))))));
1297
+ }, /*#__PURE__*/React.createElement(ManageColumns, _extends({
1298
+ dropdownProps: _objectSpread$2({
1299
+ buttonProps: _objectSpread$2({
1300
+ icon: Column,
1301
+ label: null,
1302
+ tooltipProps: {
1303
+ content: t("neetoMolecules.columns.columns"),
1304
+ position: "bottom"
1305
+ },
1306
+ "data-testid": "columns-button",
1307
+ "data-cy": "columns-dropdown-button"
1308
+ }, buttonProps)
1309
+ }, restDropdownProps)
1310
+ }, props)));
2113
1311
  };
2114
1312
 
2115
1313
  function cov_td1jpvcmw() {
2116
1314
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/Download.jsx";
2117
- var hash = "bfd5034300eaa044c3c9eed37cbd2988c7b9f42b";
1315
+ var hash = "a2283a341efcaf1ad652751480fdafc6709b57d9";
2118
1316
  var global = new Function("return this")();
2119
1317
  var gcv = "__coverage__";
2120
1318
  var coverageData = {
@@ -2126,27 +1324,27 @@ function cov_td1jpvcmw() {
2126
1324
  column: 23
2127
1325
  },
2128
1326
  end: {
2129
- line: 29,
1327
+ line: 34,
2130
1328
  column: 1
2131
1329
  }
2132
1330
  },
2133
1331
  "1": {
2134
1332
  start: {
2135
- line: 8,
1333
+ line: 12,
2136
1334
  column: 16
2137
1335
  },
2138
1336
  end: {
2139
- line: 8,
1337
+ line: 12,
2140
1338
  column: 32
2141
1339
  }
2142
1340
  },
2143
1341
  "2": {
2144
1342
  start: {
2145
- line: 10,
1343
+ line: 14,
2146
1344
  column: 2
2147
1345
  },
2148
1346
  end: {
2149
- line: 28,
1347
+ line: 33,
2150
1348
  column: 4
2151
1349
  }
2152
1350
  }
@@ -2166,50 +1364,74 @@ function cov_td1jpvcmw() {
2166
1364
  },
2167
1365
  loc: {
2168
1366
  start: {
2169
- line: 7,
2170
- column: 47
1367
+ line: 11,
1368
+ column: 6
2171
1369
  },
2172
1370
  end: {
2173
- line: 29,
1371
+ line: 34,
2174
1372
  column: 1
2175
1373
  }
2176
1374
  },
2177
- line: 7
1375
+ line: 11
2178
1376
  }
2179
1377
  },
2180
1378
  branchMap: {
2181
1379
  "0": {
2182
1380
  loc: {
2183
1381
  start: {
2184
- line: 22,
1382
+ line: 10,
1383
+ column: 13
1384
+ },
1385
+ end: {
1386
+ line: 10,
1387
+ column: 39
1388
+ }
1389
+ },
1390
+ type: "default-arg",
1391
+ locations: [{
1392
+ start: {
1393
+ line: 10,
1394
+ column: 22
1395
+ },
1396
+ end: {
1397
+ line: 10,
1398
+ column: 39
1399
+ }
1400
+ }],
1401
+ line: 10
1402
+ },
1403
+ "1": {
1404
+ loc: {
1405
+ start: {
1406
+ line: 27,
2185
1407
  column: 7
2186
1408
  },
2187
1409
  end: {
2188
- line: 26,
1410
+ line: 31,
2189
1411
  column: 7
2190
1412
  }
2191
1413
  },
2192
1414
  type: "binary-expr",
2193
1415
  locations: [{
2194
1416
  start: {
2195
- line: 22,
1417
+ line: 27,
2196
1418
  column: 7
2197
1419
  },
2198
1420
  end: {
2199
- line: 22,
1421
+ line: 27,
2200
1422
  column: 12
2201
1423
  }
2202
1424
  }, {
2203
1425
  start: {
2204
- line: 23,
1426
+ line: 28,
2205
1427
  column: 8
2206
1428
  },
2207
1429
  end: {
2208
- line: 25,
1430
+ line: 30,
2209
1431
  column: 15
2210
1432
  }
2211
1433
  }],
2212
- line: 22
1434
+ line: 27
2213
1435
  }
2214
1436
  },
2215
1437
  s: {
@@ -2221,10 +1443,11 @@ function cov_td1jpvcmw() {
2221
1443
  "0": 0
2222
1444
  },
2223
1445
  b: {
2224
- "0": [0, 0]
1446
+ "0": [0],
1447
+ "1": [0, 0]
2225
1448
  },
2226
1449
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
2227
- hash: "bfd5034300eaa044c3c9eed37cbd2988c7b9f42b"
1450
+ hash: "a2283a341efcaf1ad652751480fdafc6709b57d9"
2228
1451
  };
2229
1452
  var coverage = global[gcv] || (global[gcv] = {});
2230
1453
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -2243,7 +1466,9 @@ cov_td1jpvcmw();
2243
1466
  cov_td1jpvcmw().s[0]++;
2244
1467
  var DownloadButton = function DownloadButton(_ref) {
2245
1468
  var count = _ref.count,
2246
- onClick = _ref.onClick;
1469
+ onClick = _ref.onClick,
1470
+ _ref$dataCy = _ref["data-cy"],
1471
+ dataCy = _ref$dataCy === void 0 ? (cov_td1jpvcmw().b[0][0]++, "download-button") : _ref$dataCy;
2247
1472
  cov_td1jpvcmw().f[0]++;
2248
1473
  var _ref2 = (cov_td1jpvcmw().s[1]++, useTranslation()),
2249
1474
  t = _ref2.t;
@@ -2251,6 +1476,7 @@ var DownloadButton = function DownloadButton(_ref) {
2251
1476
  return /*#__PURE__*/React.createElement("div", {
2252
1477
  className: "neeto-molecules-subheader__download"
2253
1478
  }, /*#__PURE__*/React.createElement(Button, {
1479
+ "data-cy": dataCy,
2254
1480
  "data-testid": "download-button",
2255
1481
  icon: Download,
2256
1482
  style: "text",
@@ -2259,56 +1485,15 @@ var DownloadButton = function DownloadButton(_ref) {
2259
1485
  position: "bottom"
2260
1486
  },
2261
1487
  onClick: onClick
2262
- }), (cov_td1jpvcmw().b[0][0]++, count) && (cov_td1jpvcmw().b[0][1]++, /*#__PURE__*/React.createElement("span", {
1488
+ }), (cov_td1jpvcmw().b[1][0]++, count) && (cov_td1jpvcmw().b[1][1]++, /*#__PURE__*/React.createElement("span", {
2263
1489
  className: "neeto-molecules-subheader__download-count"
2264
1490
  }, count)));
2265
1491
  };
2266
1492
 
2267
- function _typeof(obj) {
2268
- "@babel/helpers - typeof";
2269
-
2270
- return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
2271
- return typeof obj;
2272
- } : function (obj) {
2273
- return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
2274
- }, _typeof(obj);
2275
- }
2276
-
2277
- function _toPrimitive(input, hint) {
2278
- if (_typeof(input) !== "object" || input === null) return input;
2279
- var prim = input[Symbol.toPrimitive];
2280
- if (prim !== undefined) {
2281
- var res = prim.call(input, hint || "default");
2282
- if (_typeof(res) !== "object") return res;
2283
- throw new TypeError("@@toPrimitive must return a primitive value.");
2284
- }
2285
- return (hint === "string" ? String : Number)(input);
2286
- }
2287
-
2288
- function _toPropertyKey(arg) {
2289
- var key = _toPrimitive(arg, "string");
2290
- return _typeof(key) === "symbol" ? key : String(key);
2291
- }
2292
-
2293
- function _defineProperty(obj, key, value) {
2294
- key = _toPropertyKey(key);
2295
- if (key in obj) {
2296
- Object.defineProperty(obj, key, {
2297
- value: value,
2298
- enumerable: true,
2299
- configurable: true,
2300
- writable: true
2301
- });
2302
- } else {
2303
- obj[key] = value;
2304
- }
2305
- return obj;
2306
- }
2307
-
2308
1493
  var _excluded = ["buttonProps"];
2309
1494
  function cov_m5zh4tynr() {
2310
1495
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/SubHeader/RightBlock/Filter.jsx";
2311
- var hash = "ccf07ab7fbe2e20d51a0eb8a8009a0ad5956d118";
1496
+ var hash = "15fd106418316fa8f49263416bc0aea91d893139";
2312
1497
  var global = new Function("return this")();
2313
1498
  var gcv = "__coverage__";
2314
1499
  var coverageData = {
@@ -2320,7 +1505,7 @@ function cov_m5zh4tynr() {
2320
1505
  column: 21
2321
1506
  },
2322
1507
  end: {
2323
- line: 28,
1508
+ line: 29,
2324
1509
  column: 1
2325
1510
  }
2326
1511
  },
@@ -2340,7 +1525,7 @@ function cov_m5zh4tynr() {
2340
1525
  column: 2
2341
1526
  },
2342
1527
  end: {
2343
- line: 27,
1528
+ line: 28,
2344
1529
  column: 4
2345
1530
  }
2346
1531
  }
@@ -2364,7 +1549,7 @@ function cov_m5zh4tynr() {
2364
1549
  column: 52
2365
1550
  },
2366
1551
  end: {
2367
- line: 28,
1552
+ line: 29,
2368
1553
  column: 1
2369
1554
  }
2370
1555
  },
@@ -2382,7 +1567,7 @@ function cov_m5zh4tynr() {
2382
1567
  },
2383
1568
  b: {},
2384
1569
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
2385
- hash: "ccf07ab7fbe2e20d51a0eb8a8009a0ad5956d118"
1570
+ hash: "15fd106418316fa8f49263416bc0aea91d893139"
2386
1571
  };
2387
1572
  var coverage = global[gcv] || (global[gcv] = {});
2388
1573
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -2413,6 +1598,7 @@ var FilterButton = function FilterButton(_ref) {
2413
1598
  }, /*#__PURE__*/React.createElement(Filters, _extends({
2414
1599
  buttonProps: _objectSpread$1({
2415
1600
  "data-testid": "filter-button",
1601
+ "data-cy": "neeto-filters-button",
2416
1602
  icon: Filter,
2417
1603
  style: "text",
2418
1604
  tooltipProps: {
@@ -2835,7 +2021,7 @@ SubHeader.RightBlock = RightBlock;
2835
2021
 
2836
2022
  function cov_222iv29ng9() {
2837
2023
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/CustomDomain/constants.js";
2838
- var hash = "449c4fda611658c1696f37c3552077220c40c27d";
2024
+ var hash = "87f052284a82ce00f5a1bb3c70dc428b98bd8b8f";
2839
2025
  var global = new Function("return this")();
2840
2026
  var gcv = "__coverage__";
2841
2027
  var coverageData = {
@@ -2868,7 +2054,7 @@ function cov_222iv29ng9() {
2868
2054
  },
2869
2055
  end: {
2870
2056
  line: 5,
2871
- column: 25
2057
+ column: 36
2872
2058
  }
2873
2059
  },
2874
2060
  "3": {
@@ -2878,7 +2064,7 @@ function cov_222iv29ng9() {
2878
2064
  },
2879
2065
  end: {
2880
2066
  line: 7,
2881
- column: 23
2067
+ column: 34
2882
2068
  }
2883
2069
  }
2884
2070
  },
@@ -2893,7 +2079,7 @@ function cov_222iv29ng9() {
2893
2079
  f: {},
2894
2080
  b: {},
2895
2081
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
2896
- hash: "449c4fda611658c1696f37c3552077220c40c27d"
2082
+ hash: "87f052284a82ce00f5a1bb3c70dc428b98bd8b8f"
2897
2083
  };
2898
2084
  var coverage = global[gcv] || (global[gcv] = {});
2899
2085
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -2911,8 +2097,12 @@ function cov_222iv29ng9() {
2911
2097
  cov_222iv29ng9();
2912
2098
  var DEFAULT_STALE_TIME = (cov_222iv29ng9().s[0]++, 60 * 60 * 1000);
2913
2099
  var DOMAIN_QUERY_KEY = (cov_222iv29ng9().s[1]++, "custom-domain");
2914
- var SINGULAR = (cov_222iv29ng9().s[2]++, 1);
2915
- var PLURAL = (cov_222iv29ng9().s[3]++, 2);
2100
+ var SINGULAR = (cov_222iv29ng9().s[2]++, {
2101
+ count: 1
2102
+ });
2103
+ var PLURAL = (cov_222iv29ng9().s[3]++, {
2104
+ count: 2
2105
+ });
2916
2106
 
2917
2107
  function cov_1uqwnv9h7p() {
2918
2108
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/CustomDomain/Manage/constants.js";
@@ -3404,7 +2594,7 @@ var TagBlock = function TagBlock(_ref) {
3404
2594
 
3405
2595
  function cov_20ap541pw6() {
3406
2596
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/CustomDomain/utils.jsx";
3407
- var hash = "1eec9e92324c50a567fc912905e641688d5d5578";
2597
+ var hash = "babbad7462db6cae00c79258810ca55a58a0e27e";
3408
2598
  var global = new Function("return this")();
3409
2599
  var gcv = "__coverage__";
3410
2600
  var coverageData = {
@@ -3426,7 +2616,7 @@ function cov_20ap541pw6() {
3426
2616
  column: 32
3427
2617
  },
3428
2618
  end: {
3429
- line: 51,
2619
+ line: 49,
3430
2620
  column: 1
3431
2621
  }
3432
2622
  },
@@ -3436,157 +2626,157 @@ function cov_20ap541pw6() {
3436
2626
  column: 73
3437
2627
  },
3438
2628
  end: {
3439
- line: 51,
2629
+ line: 49,
3440
2630
  column: 1
3441
2631
  }
3442
2632
  },
3443
2633
  "3": {
3444
2634
  start: {
3445
- line: 24,
2635
+ line: 22,
3446
2636
  column: 22
3447
2637
  },
3448
2638
  end: {
3449
- line: 24,
2639
+ line: 22,
3450
2640
  column: 50
3451
2641
  }
3452
2642
  },
3453
2643
  "4": {
3454
2644
  start: {
3455
- line: 31,
2645
+ line: 29,
3456
2646
  column: 6
3457
2647
  },
3458
2648
  end: {
3459
- line: 48,
2649
+ line: 46,
3460
2650
  column: 12
3461
2651
  }
3462
2652
  },
3463
2653
  "5": {
3464
2654
  start: {
3465
- line: 31,
2655
+ line: 29,
3466
2656
  column: 25
3467
2657
  },
3468
2658
  end: {
3469
- line: 31,
2659
+ line: 29,
3470
2660
  column: 44
3471
2661
  }
3472
2662
  },
3473
2663
  "6": {
3474
2664
  start: {
3475
- line: 40,
2665
+ line: 38,
3476
2666
  column: 44
3477
2667
  },
3478
2668
  end: {
3479
- line: 40,
2669
+ line: 38,
3480
2670
  column: 74
3481
2671
  }
3482
2672
  },
3483
2673
  "7": {
3484
2674
  start: {
3485
- line: 43,
2675
+ line: 41,
3486
2676
  column: 44
3487
2677
  },
3488
2678
  end: {
3489
- line: 43,
2679
+ line: 41,
3490
2680
  column: 75
3491
2681
  }
3492
2682
  },
3493
2683
  "8": {
3494
2684
  start: {
3495
- line: 53,
2685
+ line: 51,
3496
2686
  column: 26
3497
2687
  },
3498
2688
  end: {
3499
- line: 90,
2689
+ line: 88,
3500
2690
  column: 1
3501
2691
  }
3502
2692
  },
3503
2693
  "9": {
3504
2694
  start: {
3505
- line: 54,
2695
+ line: 52,
3506
2696
  column: 65
3507
2697
  },
3508
2698
  end: {
3509
- line: 54,
2699
+ line: 52,
3510
2700
  column: 77
3511
2701
  }
3512
2702
  },
3513
2703
  "10": {
3514
2704
  start: {
3515
- line: 57,
2705
+ line: 55,
3516
2706
  column: 4
3517
2707
  },
3518
2708
  end: {
3519
- line: 57,
2709
+ line: 55,
3520
2710
  column: 64
3521
2711
  }
3522
2712
  },
3523
2713
  "11": {
3524
2714
  start: {
3525
- line: 59,
2715
+ line: 57,
3526
2716
  column: 21
3527
2717
  },
3528
2718
  end: {
3529
- line: 59,
2719
+ line: 57,
3530
2720
  column: 79
3531
2721
  }
3532
2722
  },
3533
2723
  "12": {
3534
2724
  start: {
3535
- line: 61,
2725
+ line: 59,
3536
2726
  column: 22
3537
2727
  },
3538
2728
  end: {
3539
- line: 63,
2729
+ line: 61,
3540
2730
  column: 34
3541
2731
  }
3542
2732
  },
3543
2733
  "13": {
3544
2734
  start: {
3545
- line: 65,
2735
+ line: 63,
3546
2736
  column: 21
3547
2737
  },
3548
2738
  end: {
3549
- line: 67,
2739
+ line: 65,
3550
2740
  column: 60
3551
2741
  }
3552
2742
  },
3553
2743
  "14": {
3554
2744
  start: {
3555
- line: 69,
2745
+ line: 67,
3556
2746
  column: 28
3557
2747
  },
3558
2748
  end: {
3559
- line: 71,
2749
+ line: 69,
3560
2750
  column: 4
3561
2751
  }
3562
2752
  },
3563
2753
  "15": {
3564
2754
  start: {
3565
- line: 73,
2755
+ line: 71,
3566
2756
  column: 26
3567
2757
  },
3568
2758
  end: {
3569
- line: 76,
2759
+ line: 74,
3570
2760
  column: 4
3571
2761
  }
3572
2762
  },
3573
2763
  "16": {
3574
2764
  start: {
3575
- line: 78,
2765
+ line: 76,
3576
2766
  column: 27
3577
2767
  },
3578
2768
  end: {
3579
- line: 81,
2769
+ line: 79,
3580
2770
  column: 4
3581
2771
  }
3582
2772
  },
3583
2773
  "17": {
3584
2774
  start: {
3585
- line: 83,
2775
+ line: 81,
3586
2776
  column: 2
3587
2777
  },
3588
2778
  end: {
3589
- line: 89,
2779
+ line: 87,
3590
2780
  column: 4
3591
2781
  }
3592
2782
  }
@@ -3610,7 +2800,7 @@ function cov_20ap541pw6() {
3610
2800
  column: 73
3611
2801
  },
3612
2802
  end: {
3613
- line: 51,
2803
+ line: 49,
3614
2804
  column: 1
3615
2805
  }
3616
2806
  },
@@ -3620,279 +2810,279 @@ function cov_20ap541pw6() {
3620
2810
  name: "(anonymous_1)",
3621
2811
  decl: {
3622
2812
  start: {
3623
- line: 24,
2813
+ line: 22,
3624
2814
  column: 12
3625
2815
  },
3626
2816
  end: {
3627
- line: 24,
2817
+ line: 22,
3628
2818
  column: 13
3629
2819
  }
3630
2820
  },
3631
2821
  loc: {
3632
2822
  start: {
3633
- line: 24,
2823
+ line: 22,
3634
2824
  column: 22
3635
2825
  },
3636
2826
  end: {
3637
- line: 24,
2827
+ line: 22,
3638
2828
  column: 50
3639
2829
  }
3640
2830
  },
3641
- line: 24
2831
+ line: 22
3642
2832
  },
3643
2833
  "2": {
3644
2834
  name: "(anonymous_2)",
3645
2835
  decl: {
3646
2836
  start: {
3647
- line: 30,
2837
+ line: 28,
3648
2838
  column: 12
3649
2839
  },
3650
2840
  end: {
3651
- line: 30,
2841
+ line: 28,
3652
2842
  column: 13
3653
2843
  }
3654
2844
  },
3655
2845
  loc: {
3656
2846
  start: {
3657
- line: 31,
2847
+ line: 29,
3658
2848
  column: 6
3659
2849
  },
3660
2850
  end: {
3661
- line: 48,
2851
+ line: 46,
3662
2852
  column: 12
3663
2853
  }
3664
2854
  },
3665
- line: 31
2855
+ line: 29
3666
2856
  },
3667
2857
  "3": {
3668
2858
  name: "(anonymous_3)",
3669
2859
  decl: {
3670
2860
  start: {
3671
- line: 31,
2861
+ line: 29,
3672
2862
  column: 20
3673
2863
  },
3674
2864
  end: {
3675
- line: 31,
2865
+ line: 29,
3676
2866
  column: 21
3677
2867
  }
3678
2868
  },
3679
2869
  loc: {
3680
2870
  start: {
3681
- line: 31,
2871
+ line: 29,
3682
2872
  column: 25
3683
2873
  },
3684
2874
  end: {
3685
- line: 31,
2875
+ line: 29,
3686
2876
  column: 44
3687
2877
  }
3688
2878
  },
3689
- line: 31
2879
+ line: 29
3690
2880
  },
3691
2881
  "4": {
3692
2882
  name: "(anonymous_4)",
3693
2883
  decl: {
3694
2884
  start: {
3695
- line: 40,
2885
+ line: 38,
3696
2886
  column: 38
3697
2887
  },
3698
2888
  end: {
3699
- line: 40,
2889
+ line: 38,
3700
2890
  column: 39
3701
2891
  }
3702
2892
  },
3703
2893
  loc: {
3704
2894
  start: {
3705
- line: 40,
2895
+ line: 38,
3706
2896
  column: 44
3707
2897
  },
3708
2898
  end: {
3709
- line: 40,
2899
+ line: 38,
3710
2900
  column: 74
3711
2901
  }
3712
2902
  },
3713
- line: 40
2903
+ line: 38
3714
2904
  },
3715
2905
  "5": {
3716
2906
  name: "(anonymous_5)",
3717
2907
  decl: {
3718
2908
  start: {
3719
- line: 43,
2909
+ line: 41,
3720
2910
  column: 38
3721
2911
  },
3722
2912
  end: {
3723
- line: 43,
2913
+ line: 41,
3724
2914
  column: 39
3725
2915
  }
3726
2916
  },
3727
2917
  loc: {
3728
2918
  start: {
3729
- line: 43,
2919
+ line: 41,
3730
2920
  column: 44
3731
2921
  },
3732
2922
  end: {
3733
- line: 43,
2923
+ line: 41,
3734
2924
  column: 75
3735
2925
  }
3736
2926
  },
3737
- line: 43
2927
+ line: 41
3738
2928
  },
3739
2929
  "6": {
3740
2930
  name: "(anonymous_6)",
3741
2931
  decl: {
3742
2932
  start: {
3743
- line: 53,
2933
+ line: 51,
3744
2934
  column: 26
3745
2935
  },
3746
2936
  end: {
3747
- line: 53,
2937
+ line: 51,
3748
2938
  column: 27
3749
2939
  }
3750
2940
  },
3751
2941
  loc: {
3752
2942
  start: {
3753
- line: 53,
2943
+ line: 51,
3754
2944
  column: 42
3755
2945
  },
3756
2946
  end: {
3757
- line: 90,
2947
+ line: 88,
3758
2948
  column: 1
3759
2949
  }
3760
2950
  },
3761
- line: 53
2951
+ line: 51
3762
2952
  }
3763
2953
  },
3764
2954
  branchMap: {
3765
2955
  "0": {
3766
2956
  loc: {
3767
2957
  start: {
3768
- line: 57,
2958
+ line: 55,
3769
2959
  column: 4
3770
2960
  },
3771
2961
  end: {
3772
- line: 57,
2962
+ line: 55,
3773
2963
  column: 64
3774
2964
  }
3775
2965
  },
3776
2966
  type: "binary-expr",
3777
2967
  locations: [{
3778
2968
  start: {
3779
- line: 57,
2969
+ line: 55,
3780
2970
  column: 4
3781
2971
  },
3782
2972
  end: {
3783
- line: 57,
2973
+ line: 55,
3784
2974
  column: 23
3785
2975
  }
3786
2976
  }, {
3787
2977
  start: {
3788
- line: 57,
2978
+ line: 55,
3789
2979
  column: 27
3790
2980
  },
3791
2981
  end: {
3792
- line: 57,
2982
+ line: 55,
3793
2983
  column: 64
3794
2984
  }
3795
2985
  }],
3796
- line: 57
2986
+ line: 55
3797
2987
  },
3798
2988
  "1": {
3799
2989
  loc: {
3800
2990
  start: {
3801
- line: 59,
2991
+ line: 57,
3802
2992
  column: 21
3803
2993
  },
3804
2994
  end: {
3805
- line: 59,
2995
+ line: 57,
3806
2996
  column: 79
3807
2997
  }
3808
2998
  },
3809
2999
  type: "cond-expr",
3810
3000
  locations: [{
3811
3001
  start: {
3812
- line: 59,
3002
+ line: 57,
3813
3003
  column: 41
3814
3004
  },
3815
3005
  end: {
3816
- line: 59,
3006
+ line: 57,
3817
3007
  column: 49
3818
3008
  }
3819
3009
  }, {
3820
3010
  start: {
3821
- line: 59,
3011
+ line: 57,
3822
3012
  column: 52
3823
3013
  },
3824
3014
  end: {
3825
- line: 59,
3015
+ line: 57,
3826
3016
  column: 79
3827
3017
  }
3828
3018
  }],
3829
- line: 59
3019
+ line: 57
3830
3020
  },
3831
3021
  "2": {
3832
3022
  loc: {
3833
3023
  start: {
3834
- line: 61,
3024
+ line: 59,
3835
3025
  column: 22
3836
3026
  },
3837
3027
  end: {
3838
- line: 63,
3028
+ line: 61,
3839
3029
  column: 34
3840
3030
  }
3841
3031
  },
3842
3032
  type: "cond-expr",
3843
3033
  locations: [{
3844
3034
  start: {
3845
- line: 62,
3035
+ line: 60,
3846
3036
  column: 6
3847
3037
  },
3848
3038
  end: {
3849
- line: 62,
3039
+ line: 60,
3850
3040
  column: 15
3851
3041
  }
3852
3042
  }, {
3853
3043
  start: {
3854
- line: 63,
3044
+ line: 61,
3855
3045
  column: 6
3856
3046
  },
3857
3047
  end: {
3858
- line: 63,
3048
+ line: 61,
3859
3049
  column: 34
3860
3050
  }
3861
3051
  }],
3862
- line: 61
3052
+ line: 59
3863
3053
  },
3864
3054
  "3": {
3865
3055
  loc: {
3866
3056
  start: {
3867
- line: 65,
3057
+ line: 63,
3868
3058
  column: 21
3869
3059
  },
3870
3060
  end: {
3871
- line: 67,
3061
+ line: 65,
3872
3062
  column: 60
3873
3063
  }
3874
3064
  },
3875
3065
  type: "cond-expr",
3876
3066
  locations: [{
3877
3067
  start: {
3878
- line: 66,
3068
+ line: 64,
3879
3069
  column: 6
3880
3070
  },
3881
3071
  end: {
3882
- line: 66,
3072
+ line: 64,
3883
3073
  column: 44
3884
3074
  }
3885
3075
  }, {
3886
3076
  start: {
3887
- line: 67,
3077
+ line: 65,
3888
3078
  column: 6
3889
3079
  },
3890
3080
  end: {
3891
- line: 67,
3081
+ line: 65,
3892
3082
  column: 60
3893
3083
  }
3894
3084
  }],
3895
- line: 65
3085
+ line: 63
3896
3086
  }
3897
3087
  },
3898
3088
  s: {
@@ -3931,7 +3121,7 @@ function cov_20ap541pw6() {
3931
3121
  "3": [0, 0]
3932
3122
  },
3933
3123
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
3934
- hash: "1eec9e92324c50a567fc912905e641688d5d5578"
3124
+ hash: "babbad7462db6cae00c79258810ca55a58a0e27e"
3935
3125
  };
3936
3126
  var coverage = global[gcv] || (global[gcv] = {});
3937
3127
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -3955,9 +3145,7 @@ var renderColumnData = function renderColumnData(enableManagePane, enableDeleteA
3955
3145
  cov_20ap541pw6().f[0]++;
3956
3146
  cov_20ap541pw6().s[2]++;
3957
3147
  return [{
3958
- title: t$1("neetoMolecules.customDomain.customDomain", {
3959
- count: SINGULAR
3960
- }),
3148
+ title: t$1("neetoMolecules.customDomain.customDomain", SINGULAR),
3961
3149
  dataIndex: "hostname",
3962
3150
  key: "hostname"
3963
3151
  }, {
@@ -5896,7 +5084,7 @@ var useUpdateCustomDomain = function useUpdateCustomDomain() {
5896
5084
 
5897
5085
  function cov_19n1f0ipo7() {
5898
5086
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/CustomDomain/Manage/index.jsx";
5899
- var hash = "5168a42edaac8e15992daff9835e250f72eaac76";
5087
+ var hash = "a66cb8189d7fd0453d5dc23db393ba7aa187cbf5";
5900
5088
  var global = new Function("return this")();
5901
5089
  var gcv = "__coverage__";
5902
5090
  var coverageData = {
@@ -5908,7 +5096,7 @@ function cov_19n1f0ipo7() {
5908
5096
  column: 15
5909
5097
  },
5910
5098
  end: {
5911
- line: 159,
5099
+ line: 157,
5912
5100
  column: 1
5913
5101
  }
5914
5102
  },
@@ -6088,7 +5276,7 @@ function cov_19n1f0ipo7() {
6088
5276
  column: 2
6089
5277
  },
6090
5278
  end: {
6091
- line: 158,
5279
+ line: 156,
6092
5280
  column: 4
6093
5281
  }
6094
5282
  },
@@ -6098,7 +5286,7 @@ function cov_19n1f0ipo7() {
6098
5286
  column: 10
6099
5287
  },
6100
5288
  end: {
6101
- line: 154,
5289
+ line: 152,
6102
5290
  column: 17
6103
5291
  }
6104
5292
  }
@@ -6122,7 +5310,7 @@ function cov_19n1f0ipo7() {
6122
5310
  column: 71
6123
5311
  },
6124
5312
  end: {
6125
- line: 159,
5313
+ line: 157,
6126
5314
  column: 1
6127
5315
  }
6128
5316
  },
@@ -6338,7 +5526,7 @@ function cov_19n1f0ipo7() {
6338
5526
  column: 10
6339
5527
  },
6340
5528
  end: {
6341
- line: 154,
5529
+ line: 152,
6342
5530
  column: 17
6343
5531
  }
6344
5532
  },
@@ -6452,7 +5640,7 @@ function cov_19n1f0ipo7() {
6452
5640
  column: 21
6453
5641
  },
6454
5642
  end: {
6455
- line: 99,
5643
+ line: 97,
6456
5644
  column: 62
6457
5645
  }
6458
5646
  },
@@ -6463,16 +5651,16 @@ function cov_19n1f0ipo7() {
6463
5651
  column: 24
6464
5652
  },
6465
5653
  end: {
6466
- line: 98,
6467
- column: 26
5654
+ line: 96,
5655
+ column: 79
6468
5656
  }
6469
5657
  }, {
6470
5658
  start: {
6471
- line: 99,
5659
+ line: 97,
6472
5660
  column: 24
6473
5661
  },
6474
5662
  end: {
6475
- line: 99,
5663
+ line: 97,
6476
5664
  column: 62
6477
5665
  }
6478
5666
  }],
@@ -6481,251 +5669,251 @@ function cov_19n1f0ipo7() {
6481
5669
  "4": {
6482
5670
  loc: {
6483
5671
  start: {
6484
- line: 109,
5672
+ line: 107,
6485
5673
  column: 21
6486
5674
  },
6487
5675
  end: {
6488
- line: 118,
5676
+ line: 116,
6489
5677
  column: 21
6490
5678
  }
6491
5679
  },
6492
5680
  type: "binary-expr",
6493
5681
  locations: [{
6494
5682
  start: {
6495
- line: 109,
5683
+ line: 107,
6496
5684
  column: 21
6497
5685
  },
6498
5686
  end: {
6499
- line: 109,
5687
+ line: 107,
6500
5688
  column: 34
6501
5689
  }
6502
5690
  }, {
6503
5691
  start: {
6504
- line: 110,
5692
+ line: 108,
6505
5693
  column: 22
6506
5694
  },
6507
5695
  end: {
6508
- line: 117,
5696
+ line: 115,
6509
5697
  column: 24
6510
5698
  }
6511
5699
  }],
6512
- line: 109
5700
+ line: 107
6513
5701
  },
6514
5702
  "5": {
6515
5703
  loc: {
6516
5704
  start: {
6517
- line: 112,
5705
+ line: 110,
6518
5706
  column: 34
6519
5707
  },
6520
5708
  end: {
6521
- line: 112,
5709
+ line: 110,
6522
5710
  column: 54
6523
5711
  }
6524
5712
  },
6525
5713
  type: "binary-expr",
6526
5714
  locations: [{
6527
5715
  start: {
6528
- line: 112,
5716
+ line: 110,
6529
5717
  column: 34
6530
5718
  },
6531
5719
  end: {
6532
- line: 112,
5720
+ line: 110,
6533
5721
  column: 40
6534
5722
  }
6535
5723
  }, {
6536
5724
  start: {
6537
- line: 112,
5725
+ line: 110,
6538
5726
  column: 44
6539
5727
  },
6540
5728
  end: {
6541
- line: 112,
5729
+ line: 110,
6542
5730
  column: 54
6543
5731
  }
6544
5732
  }],
6545
- line: 112
5733
+ line: 110
6546
5734
  },
6547
5735
  "6": {
6548
5736
  loc: {
6549
5737
  start: {
6550
- line: 121,
5738
+ line: 119,
6551
5739
  column: 17
6552
5740
  },
6553
5741
  end: {
6554
- line: 151,
5742
+ line: 149,
6555
5743
  column: 17
6556
5744
  }
6557
5745
  },
6558
5746
  type: "binary-expr",
6559
5747
  locations: [{
6560
5748
  start: {
6561
- line: 121,
5749
+ line: 119,
6562
5750
  column: 17
6563
5751
  },
6564
5752
  end: {
6565
- line: 121,
5753
+ line: 119,
6566
5754
  column: 31
6567
5755
  }
6568
5756
  }, {
6569
5757
  start: {
6570
- line: 122,
5758
+ line: 120,
6571
5759
  column: 18
6572
5760
  },
6573
5761
  end: {
6574
- line: 150,
5762
+ line: 148,
6575
5763
  column: 21
6576
5764
  }
6577
5765
  }],
6578
- line: 121
5766
+ line: 119
6579
5767
  },
6580
5768
  "7": {
6581
5769
  loc: {
6582
5770
  start: {
6583
- line: 124,
5771
+ line: 122,
6584
5772
  column: 21
6585
5773
  },
6586
5774
  end: {
6587
- line: 134,
5775
+ line: 132,
6588
5776
  column: 21
6589
5777
  }
6590
5778
  },
6591
5779
  type: "binary-expr",
6592
5780
  locations: [{
6593
5781
  start: {
6594
- line: 124,
5782
+ line: 122,
6595
5783
  column: 21
6596
5784
  },
6597
5785
  end: {
6598
- line: 124,
5786
+ line: 122,
6599
5787
  column: 72
6600
5788
  }
6601
5789
  }, {
6602
5790
  start: {
6603
- line: 125,
5791
+ line: 123,
6604
5792
  column: 22
6605
5793
  },
6606
5794
  end: {
6607
- line: 133,
5795
+ line: 131,
6608
5796
  column: 24
6609
5797
  }
6610
5798
  }],
6611
- line: 124
5799
+ line: 122
6612
5800
  },
6613
5801
  "8": {
6614
5802
  loc: {
6615
5803
  start: {
6616
- line: 135,
5804
+ line: 133,
6617
5805
  column: 21
6618
5806
  },
6619
5807
  end: {
6620
- line: 145,
5808
+ line: 143,
6621
5809
  column: 23
6622
5810
  }
6623
5811
  },
6624
5812
  type: "binary-expr",
6625
5813
  locations: [{
6626
5814
  start: {
6627
- line: 135,
5815
+ line: 133,
6628
5816
  column: 21
6629
5817
  },
6630
5818
  end: {
6631
- line: 135,
5819
+ line: 133,
6632
5820
  column: 71
6633
5821
  }
6634
5822
  }, {
6635
5823
  start: {
6636
- line: 136,
5824
+ line: 134,
6637
5825
  column: 22
6638
5826
  },
6639
5827
  end: {
6640
- line: 136,
5828
+ line: 134,
6641
5829
  column: 48
6642
5830
  }
6643
5831
  }, {
6644
5832
  start: {
6645
- line: 137,
5833
+ line: 135,
6646
5834
  column: 24
6647
5835
  },
6648
5836
  end: {
6649
- line: 144,
5837
+ line: 142,
6650
5838
  column: 26
6651
5839
  }
6652
5840
  }],
6653
- line: 135
5841
+ line: 133
6654
5842
  },
6655
5843
  "9": {
6656
5844
  loc: {
6657
5845
  start: {
6658
- line: 139,
5846
+ line: 137,
6659
5847
  column: 35
6660
5848
  },
6661
5849
  end: {
6662
- line: 139,
5850
+ line: 137,
6663
5851
  column: 66
6664
5852
  }
6665
5853
  },
6666
5854
  type: "binary-expr",
6667
5855
  locations: [{
6668
5856
  start: {
6669
- line: 139,
5857
+ line: 137,
6670
5858
  column: 35
6671
5859
  },
6672
5860
  end: {
6673
- line: 139,
5861
+ line: 137,
6674
5862
  column: 52
6675
5863
  }
6676
5864
  }, {
6677
5865
  start: {
6678
- line: 139,
5866
+ line: 137,
6679
5867
  column: 56
6680
5868
  },
6681
5869
  end: {
6682
- line: 139,
5870
+ line: 137,
6683
5871
  column: 66
6684
5872
  }
6685
5873
  }],
6686
- line: 139
5874
+ line: 137
6687
5875
  },
6688
5876
  "10": {
6689
5877
  loc: {
6690
5878
  start: {
6691
- line: 146,
5879
+ line: 144,
6692
5880
  column: 21
6693
5881
  },
6694
5882
  end: {
6695
- line: 149,
5883
+ line: 147,
6696
5884
  column: 23
6697
5885
  }
6698
5886
  },
6699
5887
  type: "binary-expr",
6700
5888
  locations: [{
6701
5889
  start: {
6702
- line: 146,
5890
+ line: 144,
6703
5891
  column: 21
6704
5892
  },
6705
5893
  end: {
6706
- line: 146,
5894
+ line: 144,
6707
5895
  column: 71
6708
5896
  }
6709
5897
  }, {
6710
5898
  start: {
6711
- line: 147,
5899
+ line: 145,
6712
5900
  column: 22
6713
5901
  },
6714
5902
  end: {
6715
- line: 147,
5903
+ line: 145,
6716
5904
  column: 47
6717
5905
  }
6718
5906
  }, {
6719
5907
  start: {
6720
- line: 148,
5908
+ line: 146,
6721
5909
  column: 24
6722
5910
  },
6723
5911
  end: {
6724
- line: 148,
5912
+ line: 146,
6725
5913
  column: 71
6726
5914
  }
6727
5915
  }],
6728
- line: 146
5916
+ line: 144
6729
5917
  }
6730
5918
  },
6731
5919
  s: {
@@ -6776,7 +5964,7 @@ function cov_19n1f0ipo7() {
6776
5964
  "10": [0, 0, 0]
6777
5965
  },
6778
5966
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
6779
- hash: "5168a42edaac8e15992daff9835e250f72eaac76"
5967
+ hash: "a66cb8189d7fd0453d5dc23db393ba7aa187cbf5"
6780
5968
  };
6781
5969
  var coverage = global[gcv] || (global[gcv] = {});
6782
5970
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -6891,9 +6079,7 @@ var Manage = function Manage(_ref) {
6891
6079
  className: "space-y-2"
6892
6080
  }, /*#__PURE__*/React.createElement(Label, {
6893
6081
  htmlFor: "hostname"
6894
- }, customDomain ? (cov_19n1f0ipo7().b[3][0]++, t("neetoMolecules.customDomain.customDomain", {
6895
- count: SINGULAR
6896
- })) : (cov_19n1f0ipo7().b[3][1]++, t("neetoMolecules.customDomain.label"))), /*#__PURE__*/React.createElement("div", {
6082
+ }, customDomain ? (cov_19n1f0ipo7().b[3][0]++, t("neetoMolecules.customDomain.customDomain", SINGULAR)) : (cov_19n1f0ipo7().b[3][1]++, t("neetoMolecules.customDomain.label"))), /*#__PURE__*/React.createElement("div", {
6897
6083
  className: "flex items-start gap-2"
6898
6084
  }, /*#__PURE__*/React.createElement(Input$1, {
6899
6085
  autoFocus: true,
@@ -6929,7 +6115,7 @@ var Manage = function Manage(_ref) {
6929
6115
 
6930
6116
  function cov_24yn1i4hss() {
6931
6117
  var path = "/home/runner/work/neeto-molecules/neeto-molecules/src/components/CustomDomain/index.jsx";
6932
- var hash = "5caef41e1d8996e19c7466d523b463232b464d80";
6118
+ var hash = "1d00dafa3f28d8ae4c9beaa6f84cdb9007d96ef4";
6933
6119
  var global = new Function("return this")();
6934
6120
  var gcv = "__coverage__";
6935
6121
  var coverageData = {
@@ -6941,7 +6127,7 @@ function cov_24yn1i4hss() {
6941
6127
  column: 21
6942
6128
  },
6943
6129
  end: {
6944
- line: 137,
6130
+ line: 133,
6945
6131
  column: 1
6946
6132
  }
6947
6133
  },
@@ -7021,147 +6207,147 @@ function cov_24yn1i4hss() {
7021
6207
  column: 4
7022
6208
  },
7023
6209
  end: {
7024
- line: 36,
7025
- column: 6
6210
+ line: 34,
6211
+ column: 69
7026
6212
  }
7027
6213
  },
7028
6214
  "9": {
7029
6215
  start: {
7030
- line: 35,
7031
- column: 23
6216
+ line: 34,
6217
+ column: 45
7032
6218
  },
7033
6219
  end: {
7034
- line: 35,
7035
- column: 44
6220
+ line: 34,
6221
+ column: 66
7036
6222
  }
7037
6223
  },
7038
6224
  "10": {
7039
6225
  start: {
7040
- line: 38,
6226
+ line: 36,
7041
6227
  column: 27
7042
6228
  },
7043
6229
  end: {
7044
- line: 41,
6230
+ line: 39,
7045
6231
  column: 3
7046
6232
  }
7047
6233
  },
7048
6234
  "11": {
7049
6235
  start: {
7050
- line: 39,
6236
+ line: 37,
7051
6237
  column: 4
7052
6238
  },
7053
6239
  end: {
7054
- line: 39,
6240
+ line: 37,
7055
6241
  column: 34
7056
6242
  }
7057
6243
  },
7058
6244
  "12": {
7059
6245
  start: {
7060
- line: 40,
6246
+ line: 38,
7061
6247
  column: 4
7062
6248
  },
7063
6249
  end: {
7064
- line: 40,
6250
+ line: 38,
7065
6251
  column: 24
7066
6252
  }
7067
6253
  },
7068
6254
  "13": {
7069
6255
  start: {
7070
- line: 43,
6256
+ line: 41,
7071
6257
  column: 28
7072
6258
  },
7073
6259
  end: {
7074
- line: 46,
6260
+ line: 44,
7075
6261
  column: 3
7076
6262
  }
7077
6263
  },
7078
6264
  "14": {
7079
6265
  start: {
7080
- line: 44,
6266
+ line: 42,
7081
6267
  column: 4
7082
6268
  },
7083
6269
  end: {
7084
- line: 44,
6270
+ line: 42,
7085
6271
  column: 34
7086
6272
  }
7087
6273
  },
7088
6274
  "15": {
7089
6275
  start: {
7090
- line: 45,
6276
+ line: 43,
7091
6277
  column: 4
7092
6278
  },
7093
6279
  end: {
7094
- line: 45,
6280
+ line: 43,
7095
6281
  column: 25
7096
6282
  }
7097
6283
  },
7098
6284
  "16": {
7099
6285
  start: {
7100
- line: 48,
6286
+ line: 46,
7101
6287
  column: 2
7102
6288
  },
7103
6289
  end: {
7104
- line: 136,
6290
+ line: 132,
7105
6291
  column: 4
7106
6292
  }
7107
6293
  },
7108
6294
  "17": {
7109
6295
  start: {
7110
- line: 56,
6296
+ line: 55,
7111
6297
  column: 29
7112
6298
  },
7113
6299
  end: {
7114
- line: 56,
6300
+ line: 55,
7115
6301
  column: 51
7116
6302
  }
7117
6303
  },
7118
6304
  "18": {
7119
6305
  start: {
7120
- line: 61,
6306
+ line: 60,
7121
6307
  column: 27
7122
6308
  },
7123
6309
  end: {
7124
- line: 61,
6310
+ line: 60,
7125
6311
  column: 56
7126
6312
  }
7127
6313
  },
7128
6314
  "19": {
7129
6315
  start: {
7130
- line: 108,
6316
+ line: 104,
7131
6317
  column: 33
7132
6318
  },
7133
6319
  end: {
7134
- line: 108,
6320
+ line: 104,
7135
6321
  column: 55
7136
6322
  }
7137
6323
  },
7138
6324
  "20": {
7139
6325
  start: {
7140
- line: 118,
6326
+ line: 114,
7141
6327
  column: 23
7142
6328
  },
7143
6329
  end: {
7144
- line: 118,
6330
+ line: 114,
7145
6331
  column: 43
7146
6332
  }
7147
6333
  },
7148
6334
  "21": {
7149
6335
  start: {
7150
- line: 132,
6336
+ line: 128,
7151
6337
  column: 23
7152
6338
  },
7153
6339
  end: {
7154
- line: 132,
6340
+ line: 128,
7155
6341
  column: 44
7156
6342
  }
7157
6343
  },
7158
6344
  "22": {
7159
6345
  start: {
7160
- line: 133,
6346
+ line: 129,
7161
6347
  column: 24
7162
6348
  },
7163
6349
  end: {
7164
- line: 133,
6350
+ line: 129,
7165
6351
  column: 60
7166
6352
  }
7167
6353
  }
@@ -7185,7 +6371,7 @@ function cov_24yn1i4hss() {
7185
6371
  column: 42
7186
6372
  },
7187
6373
  end: {
7188
- line: 137,
6374
+ line: 133,
7189
6375
  column: 1
7190
6376
  }
7191
6377
  },
@@ -7195,318 +6381,318 @@ function cov_24yn1i4hss() {
7195
6381
  name: "(anonymous_1)",
7196
6382
  decl: {
7197
6383
  start: {
7198
- line: 35,
7199
- column: 17
6384
+ line: 34,
6385
+ column: 39
7200
6386
  },
7201
6387
  end: {
7202
- line: 35,
7203
- column: 18
6388
+ line: 34,
6389
+ column: 40
7204
6390
  }
7205
6391
  },
7206
6392
  loc: {
7207
6393
  start: {
7208
- line: 35,
7209
- column: 23
6394
+ line: 34,
6395
+ column: 45
7210
6396
  },
7211
6397
  end: {
7212
- line: 35,
7213
- column: 44
6398
+ line: 34,
6399
+ column: 66
7214
6400
  }
7215
6401
  },
7216
- line: 35
6402
+ line: 34
7217
6403
  },
7218
6404
  "2": {
7219
6405
  name: "(anonymous_2)",
7220
6406
  decl: {
7221
6407
  start: {
7222
- line: 38,
6408
+ line: 36,
7223
6409
  column: 27
7224
6410
  },
7225
6411
  end: {
7226
- line: 38,
6412
+ line: 36,
7227
6413
  column: 28
7228
6414
  }
7229
6415
  },
7230
6416
  loc: {
7231
6417
  start: {
7232
- line: 38,
6418
+ line: 36,
7233
6419
  column: 43
7234
6420
  },
7235
6421
  end: {
7236
- line: 41,
6422
+ line: 39,
7237
6423
  column: 3
7238
6424
  }
7239
6425
  },
7240
- line: 38
6426
+ line: 36
7241
6427
  },
7242
6428
  "3": {
7243
6429
  name: "(anonymous_3)",
7244
6430
  decl: {
7245
6431
  start: {
7246
- line: 43,
6432
+ line: 41,
7247
6433
  column: 28
7248
6434
  },
7249
6435
  end: {
7250
- line: 43,
6436
+ line: 41,
7251
6437
  column: 29
7252
6438
  }
7253
6439
  },
7254
6440
  loc: {
7255
6441
  start: {
7256
- line: 43,
6442
+ line: 41,
7257
6443
  column: 44
7258
6444
  },
7259
6445
  end: {
7260
- line: 46,
6446
+ line: 44,
7261
6447
  column: 3
7262
6448
  }
7263
6449
  },
7264
- line: 43
6450
+ line: 41
7265
6451
  },
7266
6452
  "4": {
7267
6453
  name: "(anonymous_4)",
7268
6454
  decl: {
7269
6455
  start: {
7270
- line: 56,
6456
+ line: 55,
7271
6457
  column: 23
7272
6458
  },
7273
6459
  end: {
7274
- line: 56,
6460
+ line: 55,
7275
6461
  column: 24
7276
6462
  }
7277
6463
  },
7278
6464
  loc: {
7279
6465
  start: {
7280
- line: 56,
6466
+ line: 55,
7281
6467
  column: 29
7282
6468
  },
7283
6469
  end: {
7284
- line: 56,
6470
+ line: 55,
7285
6471
  column: 51
7286
6472
  }
7287
6473
  },
7288
- line: 56
6474
+ line: 55
7289
6475
  },
7290
6476
  "5": {
7291
6477
  name: "(anonymous_5)",
7292
6478
  decl: {
7293
6479
  start: {
7294
- line: 61,
6480
+ line: 60,
7295
6481
  column: 22
7296
6482
  },
7297
6483
  end: {
7298
- line: 61,
6484
+ line: 60,
7299
6485
  column: 23
7300
6486
  }
7301
6487
  },
7302
6488
  loc: {
7303
6489
  start: {
7304
- line: 61,
6490
+ line: 60,
7305
6491
  column: 27
7306
6492
  },
7307
6493
  end: {
7308
- line: 61,
6494
+ line: 60,
7309
6495
  column: 56
7310
6496
  }
7311
6497
  },
7312
- line: 61
6498
+ line: 60
7313
6499
  },
7314
6500
  "6": {
7315
6501
  name: "(anonymous_6)",
7316
6502
  decl: {
7317
6503
  start: {
7318
- line: 108,
6504
+ line: 104,
7319
6505
  column: 27
7320
6506
  },
7321
6507
  end: {
7322
- line: 108,
6508
+ line: 104,
7323
6509
  column: 28
7324
6510
  }
7325
6511
  },
7326
6512
  loc: {
7327
6513
  start: {
7328
- line: 108,
6514
+ line: 104,
7329
6515
  column: 33
7330
6516
  },
7331
6517
  end: {
7332
- line: 108,
6518
+ line: 104,
7333
6519
  column: 55
7334
6520
  }
7335
6521
  },
7336
- line: 108
6522
+ line: 104
7337
6523
  },
7338
6524
  "7": {
7339
6525
  name: "(anonymous_7)",
7340
6526
  decl: {
7341
6527
  start: {
7342
- line: 118,
6528
+ line: 114,
7343
6529
  column: 17
7344
6530
  },
7345
6531
  end: {
7346
- line: 118,
6532
+ line: 114,
7347
6533
  column: 18
7348
6534
  }
7349
6535
  },
7350
6536
  loc: {
7351
6537
  start: {
7352
- line: 118,
6538
+ line: 114,
7353
6539
  column: 23
7354
6540
  },
7355
6541
  end: {
7356
- line: 118,
6542
+ line: 114,
7357
6543
  column: 43
7358
6544
  }
7359
6545
  },
7360
- line: 118
6546
+ line: 114
7361
6547
  },
7362
6548
  "8": {
7363
6549
  name: "(anonymous_8)",
7364
6550
  decl: {
7365
6551
  start: {
7366
- line: 132,
6552
+ line: 128,
7367
6553
  column: 17
7368
6554
  },
7369
6555
  end: {
7370
- line: 132,
6556
+ line: 128,
7371
6557
  column: 18
7372
6558
  }
7373
6559
  },
7374
6560
  loc: {
7375
6561
  start: {
7376
- line: 132,
6562
+ line: 128,
7377
6563
  column: 23
7378
6564
  },
7379
6565
  end: {
7380
- line: 132,
6566
+ line: 128,
7381
6567
  column: 44
7382
6568
  }
7383
6569
  },
7384
- line: 132
6570
+ line: 128
7385
6571
  },
7386
6572
  "9": {
7387
6573
  name: "(anonymous_9)",
7388
6574
  decl: {
7389
6575
  start: {
7390
- line: 133,
6576
+ line: 129,
7391
6577
  column: 18
7392
6578
  },
7393
6579
  end: {
7394
- line: 133,
6580
+ line: 129,
7395
6581
  column: 19
7396
6582
  }
7397
6583
  },
7398
6584
  loc: {
7399
6585
  start: {
7400
- line: 133,
6586
+ line: 129,
7401
6587
  column: 24
7402
6588
  },
7403
6589
  end: {
7404
- line: 133,
6590
+ line: 129,
7405
6591
  column: 60
7406
6592
  }
7407
6593
  },
7408
- line: 133
6594
+ line: 129
7409
6595
  }
7410
6596
  },
7411
6597
  branchMap: {
7412
6598
  "0": {
7413
6599
  loc: {
7414
6600
  start: {
7415
- line: 70,
6601
+ line: 66,
7416
6602
  column: 9
7417
6603
  },
7418
6604
  end: {
7419
- line: 74,
6605
+ line: 70,
7420
6606
  column: 9
7421
6607
  }
7422
6608
  },
7423
6609
  type: "binary-expr",
7424
6610
  locations: [{
7425
6611
  start: {
7426
- line: 70,
6612
+ line: 66,
7427
6613
  column: 9
7428
6614
  },
7429
6615
  end: {
7430
- line: 70,
6616
+ line: 66,
7431
6617
  column: 18
7432
6618
  }
7433
6619
  }, {
7434
6620
  start: {
7435
- line: 71,
6621
+ line: 67,
7436
6622
  column: 10
7437
6623
  },
7438
6624
  end: {
7439
- line: 73,
6625
+ line: 69,
7440
6626
  column: 16
7441
6627
  }
7442
6628
  }],
7443
- line: 70
6629
+ line: 66
7444
6630
  },
7445
6631
  "1": {
7446
6632
  loc: {
7447
6633
  start: {
7448
- line: 75,
6634
+ line: 71,
7449
6635
  column: 9
7450
6636
  },
7451
6637
  end: {
7452
- line: 112,
6638
+ line: 108,
7453
6639
  column: 12
7454
6640
  }
7455
6641
  },
7456
6642
  type: "binary-expr",
7457
6643
  locations: [{
7458
6644
  start: {
7459
- line: 75,
6645
+ line: 71,
7460
6646
  column: 9
7461
6647
  },
7462
6648
  end: {
7463
- line: 75,
6649
+ line: 71,
7464
6650
  column: 19
7465
6651
  }
7466
6652
  }, {
7467
6653
  start: {
7468
- line: 76,
6654
+ line: 72,
7469
6655
  column: 11
7470
6656
  },
7471
6657
  end: {
7472
- line: 112,
6658
+ line: 108,
7473
6659
  column: 11
7474
6660
  }
7475
6661
  }],
7476
- line: 75
6662
+ line: 71
7477
6663
  },
7478
6664
  "2": {
7479
6665
  loc: {
7480
6666
  start: {
7481
- line: 76,
6667
+ line: 72,
7482
6668
  column: 11
7483
6669
  },
7484
6670
  end: {
7485
- line: 112,
6671
+ line: 108,
7486
6672
  column: 11
7487
6673
  }
7488
6674
  },
7489
6675
  type: "cond-expr",
7490
6676
  locations: [{
7491
6677
  start: {
7492
- line: 77,
6678
+ line: 73,
7493
6679
  column: 12
7494
6680
  },
7495
6681
  end: {
7496
- line: 101,
6682
+ line: 97,
7497
6683
  column: 18
7498
6684
  }
7499
6685
  }, {
7500
6686
  start: {
7501
- line: 103,
6687
+ line: 99,
7502
6688
  column: 12
7503
6689
  },
7504
6690
  end: {
7505
- line: 111,
6691
+ line: 107,
7506
6692
  column: 18
7507
6693
  }
7508
6694
  }],
7509
- line: 76
6695
+ line: 72
7510
6696
  }
7511
6697
  },
7512
6698
  s: {
@@ -7552,7 +6738,7 @@ function cov_24yn1i4hss() {
7552
6738
  "2": [0, 0]
7553
6739
  },
7554
6740
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
7555
- hash: "5caef41e1d8996e19c7466d523b463232b464d80"
6741
+ hash: "1d00dafa3f28d8ae4c9beaa6f84cdb9007d96ef4"
7556
6742
  };
7557
6743
  var coverage = global[gcv] || (global[gcv] = {});
7558
6744
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -7624,6 +6810,7 @@ var CustomDomain = function CustomDomain(_ref) {
7624
6810
  };
7625
6811
  cov_24yn1i4hss().s[16]++;
7626
6812
  return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Container, null, /*#__PURE__*/React.createElement(Header, _extends({
6813
+ title: t("neetoMolecules.customDomain.customDomain", PLURAL),
7627
6814
  actionBlock: /*#__PURE__*/React.createElement(Button, {
7628
6815
  "data-cy": "add-new-custom-domain-button",
7629
6816
  label: t("neetoMolecules.customDomain.addNew"),
@@ -7642,10 +6829,7 @@ var CustomDomain = function CustomDomain(_ref) {
7642
6829
  },
7643
6830
  placeholder: t("neetoMolecules.customDomain.search"),
7644
6831
  "data-cy": "custom-domain-search-field"
7645
- },
7646
- title: t("neetoMolecules.customDomain.customDomain", {
7647
- count: PLURAL
7648
- })
6832
+ }
7649
6833
  }, headerProps)), (cov_24yn1i4hss().b[0][0]++, isLoading) && (cov_24yn1i4hss().b[0][1]++, /*#__PURE__*/React.createElement("div", {
7650
6834
  className: "h-screen w-full"
7651
6835
  }, /*#__PURE__*/React.createElement(PageLoader, null))), (cov_24yn1i4hss().b[1][0]++, !isLoading) && (cov_24yn1i4hss().b[1][1]++, isNotEmpty(data === null || data === void 0 ? void 0 : data.customDomains) ? (cov_24yn1i4hss().b[2][0]++, /*#__PURE__*/React.createElement("div", {