@madgex/design-system 1.68.0 → 1.69.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/__tests__/unit/src/components/modal.spec.js +2 -1
  2. package/coverage/cobertura-coverage.xml +32 -32
  3. package/coverage/components/accordion/accordion.js.html +1 -1
  4. package/coverage/components/accordion/index.html +1 -1
  5. package/coverage/components/button/button.js.html +1 -1
  6. package/coverage/components/button/index.html +1 -1
  7. package/coverage/components/inputs/combobox/combobox.js.html +1 -1
  8. package/coverage/components/inputs/combobox/index.html +1 -1
  9. package/coverage/components/inputs/combobox/vue-components/Combobox.vue.html +1 -1
  10. package/coverage/components/inputs/combobox/vue-components/ListBoxOption.vue.html +1 -1
  11. package/coverage/components/inputs/combobox/vue-components/index.html +1 -1
  12. package/coverage/components/inputs/file-upload/file-upload.js.html +1 -1
  13. package/coverage/components/inputs/file-upload/index.html +1 -1
  14. package/coverage/components/inputs/textarea/character-count.js.html +1 -1
  15. package/coverage/components/inputs/textarea/index.html +1 -1
  16. package/coverage/components/modal/index.html +1 -1
  17. package/coverage/components/modal/modal.js.html +6 -3
  18. package/coverage/components/notification/index.html +1 -1
  19. package/coverage/components/notification/notification.js.html +1 -1
  20. package/coverage/components/popover/index.html +1 -1
  21. package/coverage/components/popover/popover.js.html +1 -1
  22. package/coverage/components/switch-state/index.html +1 -1
  23. package/coverage/components/switch-state/switch-state.js.html +1 -1
  24. package/coverage/components/tabs/index.html +1 -1
  25. package/coverage/components/tabs/tabs.js.html +1 -1
  26. package/coverage/index.html +1 -1
  27. package/coverage/js/common.js.html +1 -1
  28. package/coverage/js/fractal-scripts/combobox.js.html +1 -1
  29. package/coverage/js/fractal-scripts/index.html +1 -1
  30. package/coverage/js/fractal-scripts/notification.js.html +1 -1
  31. package/coverage/js/fractal-scripts/switch-state.js.html +1 -1
  32. package/coverage/js/index-fractal.js.html +1 -1
  33. package/coverage/js/index-polyfills.js.html +1 -1
  34. package/coverage/js/index-vue.js.html +1 -1
  35. package/coverage/js/index.html +1 -1
  36. package/coverage/js/index.js.html +1 -1
  37. package/coverage/js/polyfills/arrayPrototypeFind.js.html +1 -1
  38. package/coverage/js/polyfills/closest.js.html +1 -1
  39. package/coverage/js/polyfills/index.html +1 -1
  40. package/coverage/js/polyfills/objectAssign.js.html +1 -1
  41. package/coverage/js/polyfills/remove.js.html +1 -1
  42. package/coverage/tokens/_config.js.html +1 -1
  43. package/coverage/tokens/index.html +1 -1
  44. package/dist/_tokens/css/_tokens.css +1 -1
  45. package/dist/_tokens/js/_tokens-module.js +1 -1
  46. package/dist/_tokens/scss/_tokens.scss +1 -1
  47. package/dist/assets/icons.json +1 -1
  48. package/dist/css/index.css +1 -1
  49. package/package.json +1 -1
  50. package/src/components/button/_template.njk +2 -2
  51. package/src/components/inputs/select/README.md +6 -1
  52. package/src/components/inputs/select/_template.njk +12 -6
  53. package/src/components/inputs/select/select.config.js +62 -13
  54. package/src/components/inputs/select/select.njk +3 -0
  55. package/src/components/modal/README.md +4 -0
  56. package/src/components/modal/_template.njk +13 -0
  57. package/src/components/modal/modal.js +2 -1
  58. package/src/components/modal/modal.njk +2 -1
  59. package/src/components/modal/modal.scss +8 -0
@@ -17,8 +17,8 @@ document.body.innerHTML = `
17
17
  </div>
18
18
  <div class="mds-modal" role="dialog" id="test-modal" aria-labelledby="modal-label" data-site-container="site-container">
19
19
  <div class="mds-modal__inner">
20
+ <button id="close-button" type="button" class="js-mds-modal-close mds-modal-default-close-button">Close</button>
20
21
  <h1 id="modal-label">Hello!</h1>
21
- <button id="close-button" type="button" class="js-mds-modal-close">Close</button>
22
22
  </div>
23
23
  </div>`;
24
24
  const modalActiveClass = 'mds-modal--active';
@@ -26,6 +26,7 @@ const trigger = document.getElementById('modal-trigger');
26
26
  const modal = document.getElementById('test-modal');
27
27
  const closeButton = document.getElementById('close-button');
28
28
  const siteContainer = document.getElementById('site-container');
29
+ // const modalDefaultCloseButtonClass = 'mds-modal-default-close-button';
29
30
 
30
31
  beforeEach(() => {
31
32
  trigger.focus();
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="522" lines-covered="208" line-rate="0.3985" branches-valid="161" branches-covered="54" branch-rate="0.3354" timestamp="1612874865274" complexity="0" version="0.1">
3
+ <coverage lines-valid="522" lines-covered="208" line-rate="0.3985" branches-valid="161" branches-covered="54" branch-rate="0.3354" timestamp="1614962674270" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/var/lib/jenkins/jobs/madgex-design-system/branches/master/workspace</source>
6
6
  </sources>
@@ -626,42 +626,42 @@
626
626
  </method>
627
627
  <method name="(anonymous_2)" hits="5" signature="()V">
628
628
  <lines>
629
- <line number="34" hits="5"/>
629
+ <line number="35" hits="5"/>
630
630
  </lines>
631
631
  </method>
632
632
  <method name="(anonymous_3)" hits="2" signature="()V">
633
633
  <lines>
634
- <line number="38" hits="2"/>
634
+ <line number="39" hits="2"/>
635
635
  </lines>
636
636
  </method>
637
637
  <method name="(anonymous_4)" hits="3" signature="()V">
638
638
  <lines>
639
- <line number="43" hits="3"/>
639
+ <line number="44" hits="3"/>
640
640
  </lines>
641
641
  </method>
642
642
  <method name="(anonymous_5)" hits="1" signature="()V">
643
643
  <lines>
644
- <line number="49" hits="1"/>
644
+ <line number="50" hits="1"/>
645
645
  </lines>
646
646
  </method>
647
647
  <method name="(anonymous_6)" hits="1" signature="()V">
648
648
  <lines>
649
- <line number="50" hits="1"/>
649
+ <line number="51" hits="1"/>
650
650
  </lines>
651
651
  </method>
652
652
  <method name="(anonymous_7)" hits="5" signature="()V">
653
653
  <lines>
654
- <line number="57" hits="5"/>
654
+ <line number="58" hits="5"/>
655
655
  </lines>
656
656
  </method>
657
657
  <method name="(anonymous_8)" hits="3" signature="()V">
658
658
  <lines>
659
- <line number="63" hits="3"/>
659
+ <line number="64" hits="3"/>
660
660
  </lines>
661
661
  </method>
662
662
  <method name="(anonymous_9)" hits="3" signature="()V">
663
663
  <lines>
664
- <line number="68" hits="3"/>
664
+ <line number="69" hits="3"/>
665
665
  </lines>
666
666
  </method>
667
667
  </methods>
@@ -678,42 +678,42 @@
678
678
  <line number="15" hits="5" branch="false"/>
679
679
  <line number="16" hits="1" branch="false"/>
680
680
  <line number="17" hits="1" branch="false"/>
681
- <line number="18" hits="1" branch="false"/>
682
- <line number="21" hits="1" branch="false"/>
681
+ <line number="19" hits="1" branch="false"/>
683
682
  <line number="22" hits="1" branch="false"/>
684
- <line number="26" hits="1" branch="false"/>
683
+ <line number="23" hits="1" branch="false"/>
685
684
  <line number="27" hits="1" branch="false"/>
686
- <line number="29" hits="1" branch="false"/>
687
- <line number="31" hits="1" branch="false"/>
685
+ <line number="28" hits="1" branch="false"/>
686
+ <line number="30" hits="1" branch="false"/>
688
687
  <line number="32" hits="1" branch="false"/>
689
- <line number="34" hits="1" branch="false"/>
690
- <line number="35" hits="5" branch="false"/>
688
+ <line number="33" hits="1" branch="false"/>
689
+ <line number="35" hits="1" branch="false"/>
691
690
  <line number="36" hits="5" branch="false"/>
692
- <line number="38" hits="1" branch="false"/>
693
- <line number="39" hits="2" branch="true" condition-coverage="100% (2/2)"/>
694
- <line number="40" hits="1" branch="false"/>
695
- <line number="43" hits="1" branch="false"/>
696
- <line number="44" hits="3" branch="false"/>
697
- <line number="45" hits="3" branch="true" condition-coverage="100% (4/4)"/>
698
- <line number="46" hits="1" branch="false"/>
699
- <line number="49" hits="1" branch="false"/>
691
+ <line number="37" hits="5" branch="false"/>
692
+ <line number="39" hits="1" branch="false"/>
693
+ <line number="40" hits="2" branch="true" condition-coverage="100% (2/2)"/>
694
+ <line number="41" hits="1" branch="false"/>
695
+ <line number="44" hits="1" branch="false"/>
696
+ <line number="45" hits="3" branch="false"/>
697
+ <line number="46" hits="3" branch="true" condition-coverage="100% (4/4)"/>
698
+ <line number="47" hits="1" branch="false"/>
700
699
  <line number="50" hits="1" branch="false"/>
701
700
  <line number="51" hits="1" branch="false"/>
702
- <line number="58" hits="5" branch="false"/>
701
+ <line number="52" hits="1" branch="false"/>
703
702
  <line number="59" hits="5" branch="false"/>
704
703
  <line number="60" hits="5" branch="false"/>
705
704
  <line number="61" hits="5" branch="false"/>
706
- <line number="64" hits="3" branch="false"/>
705
+ <line number="62" hits="5" branch="false"/>
707
706
  <line number="65" hits="3" branch="false"/>
708
707
  <line number="66" hits="3" branch="false"/>
709
- <line number="69" hits="3" branch="true" condition-coverage="100% (2/2)"/>
710
- <line number="70" hits="2" branch="true" condition-coverage="100% (2/2)"/>
711
- <line number="71" hits="1" branch="true" condition-coverage="50% (1/2)"/>
712
- <line number="72" hits="1" branch="false"/>
708
+ <line number="67" hits="3" branch="false"/>
709
+ <line number="70" hits="3" branch="true" condition-coverage="100% (2/2)"/>
710
+ <line number="71" hits="2" branch="true" condition-coverage="100% (2/2)"/>
711
+ <line number="72" hits="1" branch="true" condition-coverage="50% (1/2)"/>
713
712
  <line number="73" hits="1" branch="false"/>
714
- <line number="75" hits="1" branch="true" condition-coverage="50% (1/2)"/>
715
- <line number="76" hits="1" branch="false"/>
713
+ <line number="74" hits="1" branch="false"/>
714
+ <line number="76" hits="1" branch="true" condition-coverage="50% (1/2)"/>
716
715
  <line number="77" hits="1" branch="false"/>
716
+ <line number="78" hits="1" branch="false"/>
717
717
  </lines>
718
718
  </class>
719
719
  </classes>
@@ -465,7 +465,7 @@ export default accordion;
465
465
  <div class='footer quiet pad2 space-top1 center small'>
466
466
  Code coverage generated by
467
467
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
468
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
468
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
469
469
  </div>
470
470
  </div>
471
471
  <script src="../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../prettify.js"></script>
@@ -150,7 +150,7 @@ export default button;
150
150
  <div class='footer quiet pad2 space-top1 center small'>
151
151
  Code coverage generated by
152
152
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
153
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
153
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
154
154
  </div>
155
155
  </div>
156
156
  <script src="../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../prettify.js"></script>
@@ -111,7 +111,7 @@ export default {
111
111
  <div class='footer quiet pad2 space-top1 center small'>
112
112
  Code coverage generated by
113
113
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
114
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
114
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
115
115
  </div>
116
116
  </div>
117
117
  <script src="../../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../../prettify.js"></script>
@@ -768,7 +768,7 @@ export default {
768
768
  <div class='footer quiet pad2 space-top1 center small'>
769
769
  Code coverage generated by
770
770
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
771
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
771
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
772
772
  </div>
773
773
  </div>
774
774
  <script src="../../../../prettify.js"></script>
@@ -213,7 +213,7 @@ export default {
213
213
  <div class='footer quiet pad2 space-top1 center small'>
214
214
  Code coverage generated by
215
215
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
216
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
216
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
217
217
  </div>
218
218
  </div>
219
219
  <script src="../../../../prettify.js"></script>
@@ -109,7 +109,7 @@
109
109
  <div class='footer quiet pad2 space-top1 center small'>
110
110
  Code coverage generated by
111
111
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
112
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
112
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
113
113
  </div>
114
114
  </div>
115
115
  <script src="../../../../prettify.js"></script>
@@ -228,7 +228,7 @@ export default fileUpload;
228
228
  <div class='footer quiet pad2 space-top1 center small'>
229
229
  Code coverage generated by
230
230
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
231
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
231
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
232
232
  </div>
233
233
  </div>
234
234
  <script src="../../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../../prettify.js"></script>
@@ -174,7 +174,7 @@ export default characterCount;
174
174
  <div class='footer quiet pad2 space-top1 center small'>
175
175
  Code coverage generated by
176
176
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
177
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
177
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
178
178
  </div>
179
179
  </div>
180
180
  <script src="../../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../prettify.js"></script>
@@ -139,7 +139,8 @@
139
139
  <a name='L81'></a><a href='#L81'>81</a>
140
140
  <a name='L82'></a><a href='#L82'>82</a>
141
141
  <a name='L83'></a><a href='#L83'>83</a>
142
- <a name='L84'></a><a href='#L84'>84</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
142
+ <a name='L84'></a><a href='#L84'>84</a>
143
+ <a name='L85'></a><a href='#L85'>85</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
143
144
  <span class="cline-any cline-neutral">&nbsp;</span>
144
145
  <span class="cline-any cline-yes">1x</span>
145
146
  <span class="cline-any cline-yes">1x</span>
@@ -156,6 +157,7 @@
156
157
  <span class="cline-any cline-yes">5x</span>
157
158
  <span class="cline-any cline-yes">1x</span>
158
159
  <span class="cline-any cline-yes">1x</span>
160
+ <span class="cline-any cline-neutral">&nbsp;</span>
159
161
  <span class="cline-any cline-yes">1x</span>
160
162
  <span class="cline-any cline-neutral">&nbsp;</span>
161
163
  <span class="cline-any cline-neutral">&nbsp;</span>
@@ -226,8 +228,8 @@
226
228
  &nbsp;
227
229
  const breakpoint = parseInt(tokens.size.breakpoint.md.value, 10);
228
230
  const modalTrigger = 'data-modal-id';
229
- const modalCloseButtonClassName = 'js-mds-modal-close';
230
231
  const modalActiveClass = 'mds-modal--active';
232
+ const modalCloseButtonClassName = 'js-mds-modal-close';
231
233
  let focusedElementBeforeModal;
232
234
  &nbsp;
233
235
  const modals = {
@@ -239,6 +241,7 @@ const modals = {
239
241
  triggersList.forEach((trigger) =&gt; {
240
242
  const modalId = trigger.getAttribute(modalTrigger);
241
243
  const modal = document.getElementById(modalId);
244
+ &nbsp;
242
245
  const closeButtons = Array.from(modal.querySelectorAll(`.${modalCloseButtonClassName}`));
243
246
  // Ensure content outside of the modal dialog is inaccessible to all users while the modal dialog is active
244
247
  // We target the site container (modal should be outside) and add aria-hidden="true" to it
@@ -312,7 +315,7 @@ export default modals;
312
315
  <div class='footer quiet pad2 space-top1 center small'>
313
316
  Code coverage generated by
314
317
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
315
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
318
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
316
319
  </div>
317
320
  </div>
318
321
  <script src="../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../prettify.js"></script>
@@ -144,7 +144,7 @@ export default notification;
144
144
  <div class='footer quiet pad2 space-top1 center small'>
145
145
  Code coverage generated by
146
146
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
147
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
147
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
148
148
  </div>
149
149
  </div>
150
150
  <script src="../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../prettify.js"></script>
@@ -294,7 +294,7 @@ export default popovers;
294
294
  <div class='footer quiet pad2 space-top1 center small'>
295
295
  Code coverage generated by
296
296
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
297
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
297
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
298
298
  </div>
299
299
  </div>
300
300
  <script src="../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../prettify.js"></script>
@@ -99,7 +99,7 @@ export default switchState;
99
99
  <div class='footer quiet pad2 space-top1 center small'>
100
100
  Code coverage generated by
101
101
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
102
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
102
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
103
103
  </div>
104
104
  </div>
105
105
  <script src="../../prettify.js"></script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
97
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
97
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
98
98
  </div>
99
99
  </div>
100
100
  <script src="../../prettify.js"></script>
@@ -510,7 +510,7 @@ export default tabs;
510
510
  <div class='footer quiet pad2 space-top1 center small'>
511
511
  Code coverage generated by
512
512
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
513
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
513
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
514
514
  </div>
515
515
  </div>
516
516
  <script src="../../prettify.js"></script>
@@ -304,7 +304,7 @@
304
304
  <div class='footer quiet pad2 space-top1 center small'>
305
305
  Code coverage generated by
306
306
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
307
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
307
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
308
308
  </div>
309
309
  </div>
310
310
  <script src="prettify.js"></script>
@@ -99,7 +99,7 @@
99
99
  <div class='footer quiet pad2 space-top1 center small'>
100
100
  Code coverage generated by
101
101
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
102
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
102
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
103
103
  </div>
104
104
  </div>
105
105
  <script src="../prettify.js"></script>
@@ -213,7 +213,7 @@ export default combobox;
213
213
  <div class='footer quiet pad2 space-top1 center small'>
214
214
  Code coverage generated by
215
215
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
216
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
216
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
217
217
  </div>
218
218
  </div>
219
219
  <script src="../../prettify.js"></script>
@@ -124,7 +124,7 @@
124
124
  <div class='footer quiet pad2 space-top1 center small'>
125
125
  Code coverage generated by
126
126
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
127
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
127
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
128
128
  </div>
129
129
  </div>
130
130
  <script src="../../prettify.js"></script>
@@ -123,7 +123,7 @@ export default notificationScript;
123
123
  <div class='footer quiet pad2 space-top1 center small'>
124
124
  Code coverage generated by
125
125
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
126
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
126
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
127
127
  </div>
128
128
  </div>
129
129
  <script src="../../prettify.js"></script>
@@ -135,7 +135,7 @@ export default switchStateScript;
135
135
  <div class='footer quiet pad2 space-top1 center small'>
136
136
  Code coverage generated by
137
137
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
138
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
138
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
139
139
  </div>
140
140
  </div>
141
141
  <script src="../../prettify.js"></script>
@@ -90,7 +90,7 @@ import comboboxScript from './fractal-scripts/combobox';
90
90
  <div class='footer quiet pad2 space-top1 center small'>
91
91
  Code coverage generated by
92
92
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
93
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
93
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
94
94
  </div>
95
95
  </div>
96
96
  <script src="../prettify.js"></script>
@@ -78,7 +78,7 @@ import './polyfills/arrayPrototypeFind';
78
78
  <div class='footer quiet pad2 space-top1 center small'>
79
79
  Code coverage generated by
80
80
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
81
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
81
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
82
82
  </div>
83
83
  </div>
84
84
  <script src="../prettify.js"></script>
@@ -105,7 +105,7 @@ import MdsCombobox from '../components/inputs/combobox/combobox';
105
105
  <div class='footer quiet pad2 space-top1 center small'>
106
106
  Code coverage generated by
107
107
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
108
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
108
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
109
109
  </div>
110
110
  </div>
111
111
  <script src="../prettify.js"></script>
@@ -154,7 +154,7 @@
154
154
  <div class='footer quiet pad2 space-top1 center small'>
155
155
  Code coverage generated by
156
156
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
157
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
157
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
158
158
  </div>
159
159
  </div>
160
160
  <script src="../prettify.js"></script>
@@ -144,7 +144,7 @@ import button from '../components/button/button';
144
144
  <div class='footer quiet pad2 space-top1 center small'>
145
145
  Code coverage generated by
146
146
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
147
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
147
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
148
148
  </div>
149
149
  </div>
150
150
  <script src="../prettify.js"></script>
@@ -201,7 +201,7 @@
201
201
  <div class='footer quiet pad2 space-top1 center small'>
202
202
  Code coverage generated by
203
203
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
204
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
204
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
205
205
  </div>
206
206
  </div>
207
207
  <script src="../../prettify.js"></script>
@@ -111,7 +111,7 @@
111
111
  <div class='footer quiet pad2 space-top1 center small'>
112
112
  Code coverage generated by
113
113
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
114
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
114
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
115
115
  </div>
116
116
  </div>
117
117
  <script src="../../prettify.js"></script>
@@ -139,7 +139,7 @@
139
139
  <div class='footer quiet pad2 space-top1 center small'>
140
140
  Code coverage generated by
141
141
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
142
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
142
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
143
143
  </div>
144
144
  </div>
145
145
  <script src="../../prettify.js"></script>
@@ -153,7 +153,7 @@
153
153
  <div class='footer quiet pad2 space-top1 center small'>
154
154
  Code coverage generated by
155
155
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
156
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
156
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
157
157
  </div>
158
158
  </div>
159
159
  <script src="../../prettify.js"></script>
@@ -84,7 +84,7 @@
84
84
  <div class='footer quiet pad2 space-top1 center small'>
85
85
  Code coverage generated by
86
86
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
87
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
87
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
88
88
  </div>
89
89
  </div>
90
90
  <script src="../../prettify.js"></script>
@@ -552,7 +552,7 @@ const config = <span class="cstat-no" title="statement not covered" >{</span>
552
552
  <div class='footer quiet pad2 space-top1 center small'>
553
553
  Code coverage generated by
554
554
  <a href="https://istanbul.js.org/" target="_blank">istanbul</a>
555
- at Tue Feb 09 2021 12:47:45 GMT+0000 (Greenwich Mean Time)
555
+ at Fri Mar 05 2021 16:44:34 GMT+0000 (Greenwich Mean Time)
556
556
  </div>
557
557
  </div>
558
558
  <script src="../prettify.js"></script>