@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.
- package/__tests__/unit/src/components/modal.spec.js +2 -1
- package/coverage/cobertura-coverage.xml +32 -32
- package/coverage/components/accordion/accordion.js.html +1 -1
- package/coverage/components/accordion/index.html +1 -1
- package/coverage/components/button/button.js.html +1 -1
- package/coverage/components/button/index.html +1 -1
- package/coverage/components/inputs/combobox/combobox.js.html +1 -1
- package/coverage/components/inputs/combobox/index.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/Combobox.vue.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/ListBoxOption.vue.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/index.html +1 -1
- package/coverage/components/inputs/file-upload/file-upload.js.html +1 -1
- package/coverage/components/inputs/file-upload/index.html +1 -1
- package/coverage/components/inputs/textarea/character-count.js.html +1 -1
- package/coverage/components/inputs/textarea/index.html +1 -1
- package/coverage/components/modal/index.html +1 -1
- package/coverage/components/modal/modal.js.html +6 -3
- package/coverage/components/notification/index.html +1 -1
- package/coverage/components/notification/notification.js.html +1 -1
- package/coverage/components/popover/index.html +1 -1
- package/coverage/components/popover/popover.js.html +1 -1
- package/coverage/components/switch-state/index.html +1 -1
- package/coverage/components/switch-state/switch-state.js.html +1 -1
- package/coverage/components/tabs/index.html +1 -1
- package/coverage/components/tabs/tabs.js.html +1 -1
- package/coverage/index.html +1 -1
- package/coverage/js/common.js.html +1 -1
- package/coverage/js/fractal-scripts/combobox.js.html +1 -1
- package/coverage/js/fractal-scripts/index.html +1 -1
- package/coverage/js/fractal-scripts/notification.js.html +1 -1
- package/coverage/js/fractal-scripts/switch-state.js.html +1 -1
- package/coverage/js/index-fractal.js.html +1 -1
- package/coverage/js/index-polyfills.js.html +1 -1
- package/coverage/js/index-vue.js.html +1 -1
- package/coverage/js/index.html +1 -1
- package/coverage/js/index.js.html +1 -1
- package/coverage/js/polyfills/arrayPrototypeFind.js.html +1 -1
- package/coverage/js/polyfills/closest.js.html +1 -1
- package/coverage/js/polyfills/index.html +1 -1
- package/coverage/js/polyfills/objectAssign.js.html +1 -1
- package/coverage/js/polyfills/remove.js.html +1 -1
- package/coverage/tokens/_config.js.html +1 -1
- package/coverage/tokens/index.html +1 -1
- package/dist/_tokens/css/_tokens.css +1 -1
- package/dist/_tokens/js/_tokens-module.js +1 -1
- package/dist/_tokens/scss/_tokens.scss +1 -1
- package/dist/assets/icons.json +1 -1
- package/dist/css/index.css +1 -1
- package/package.json +1 -1
- package/src/components/button/_template.njk +2 -2
- package/src/components/inputs/select/README.md +6 -1
- package/src/components/inputs/select/_template.njk +12 -6
- package/src/components/inputs/select/select.config.js +62 -13
- package/src/components/inputs/select/select.njk +3 -0
- package/src/components/modal/README.md +4 -0
- package/src/components/modal/_template.njk +13 -0
- package/src/components/modal/modal.js +2 -1
- package/src/components/modal/modal.njk +2 -1
- 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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
683
|
+
<line number="23" hits="1" branch="false"/>
|
|
685
684
|
<line number="27" hits="1" branch="false"/>
|
|
686
|
-
<line number="
|
|
687
|
-
<line number="
|
|
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="
|
|
690
|
-
<line number="35" hits="
|
|
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="
|
|
693
|
-
<line number="39" hits="
|
|
694
|
-
<line number="40" hits="
|
|
695
|
-
<line number="
|
|
696
|
-
<line number="44" hits="
|
|
697
|
-
<line number="45" hits="3" branch="
|
|
698
|
-
<line number="46" hits="
|
|
699
|
-
<line number="
|
|
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="
|
|
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="
|
|
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="
|
|
710
|
-
<line number="70" hits="
|
|
711
|
-
<line number="71" hits="
|
|
712
|
-
<line number="72" hits="1" branch="
|
|
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="
|
|
715
|
-
<line number="76" hits="1" branch="
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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"> </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"> </span>
|
|
159
161
|
<span class="cline-any cline-yes">1x</span>
|
|
160
162
|
<span class="cline-any cline-neutral"> </span>
|
|
161
163
|
<span class="cline-any cline-neutral"> </span>
|
|
@@ -226,8 +228,8 @@
|
|
|
226
228
|
|
|
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
|
|
|
233
235
|
const modals = {
|
|
@@ -239,6 +241,7 @@ const modals = {
|
|
|
239
241
|
triggersList.forEach((trigger) => {
|
|
240
242
|
const modalId = trigger.getAttribute(modalTrigger);
|
|
241
243
|
const modal = document.getElementById(modalId);
|
|
244
|
+
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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>
|
package/coverage/index.html
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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>
|
package/coverage/js/index.html
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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>
|