@madgex/design-system 1.34.1 → 1.35.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/.eslintignore +0 -1
- package/.eslintrc.js +1 -1
- package/.prettierrc +4 -1
- package/README.md +2 -2
- package/__tests__/.eslintrc.js +8 -0
- package/__tests__/unit/src/components/combobox.spec.js +107 -0
- package/coverage/cobertura-coverage.xml +326 -3
- package/coverage/components/accordion/accordion.js.html +61 -51
- package/coverage/components/accordion/index.html +62 -49
- package/coverage/components/combobox/combobox.js.html +139 -0
- package/coverage/components/combobox/index.html +110 -0
- package/coverage/components/combobox/vue-components/Combobox.vue.html +709 -0
- package/coverage/components/combobox/vue-components/index.html +110 -0
- package/coverage/components/notification/index.html +62 -49
- package/coverage/components/notification/notification.js.html +61 -51
- package/coverage/components/popover/index.html +62 -49
- package/coverage/components/popover/popover.js.html +61 -51
- package/coverage/components/switch-state/index.html +62 -49
- package/coverage/components/switch-state/switch-state.js.html +61 -51
- package/coverage/components/tabs/index.html +62 -49
- package/coverage/components/tabs/tabs.js.html +61 -51
- package/coverage/index.html +126 -67
- package/coverage/js/common.js.html +61 -51
- package/coverage/js/fractal-scripts/combobox.js.html +229 -0
- package/coverage/js/fractal-scripts/index.html +80 -50
- package/coverage/js/fractal-scripts/notification.js.html +61 -51
- package/coverage/js/fractal-scripts/switch-state.js.html +61 -51
- package/coverage/js/index-fractal.js.html +68 -52
- package/coverage/js/index-polyfills.js.html +65 -52
- package/coverage/js/index.html +73 -54
- package/coverage/js/index.js.html +62 -52
- package/coverage/js/polyfills/closest.js.html +61 -51
- package/coverage/js/polyfills/index.html +77 -49
- package/coverage/js/polyfills/remove.js.html +100 -0
- package/coverage/tokens/_config.js.html +61 -51
- package/coverage/tokens/index.html +62 -49
- package/cypress/integration/components/combobox.spec.js +87 -0
- package/cypress/integration/components/switch-state.spec.js +2 -8
- package/cypress/support/index.js +1 -0
- package/dist/_tokens/css/_tokens.css +169 -168
- package/dist/_tokens/js/_tokens-module.js +22 -1
- package/dist/_tokens/scss/_tokens.scss +5 -1
- package/dist/assets/icons.json +1 -1
- package/dist/css/index.css +1 -1
- package/dist/js/index.js +18 -4
- package/gulpfile.js +1 -1
- package/jest.config.js +5 -1
- package/package.json +25 -4
- package/src/components/button/button.scss +1 -0
- package/src/components/combobox/README.md +27 -0
- package/src/components/combobox/_macro.njk +3 -0
- package/src/components/combobox/_template.njk +45 -0
- package/src/components/combobox/combobox.config.js +30 -0
- package/src/components/combobox/combobox.js +20 -0
- package/src/components/combobox/combobox.njk +14 -0
- package/src/components/combobox/combobox.scss +52 -0
- package/src/components/combobox/vue-components/Combobox.vue +210 -0
- package/src/components/combobox/vue-components/ComboboxInput.vue +39 -0
- package/src/components/combobox/vue-components/ListBox.vue +17 -0
- package/src/components/combobox/vue-components/ListBoxOption.vue +27 -0
- package/src/js/fractal-scripts/combobox.js +50 -0
- package/src/js/index-fractal.js +2 -0
- package/src/js/index-polyfills.js +1 -0
- package/src/js/index.js +1 -1
- package/src/js/polyfills/remove.js +7 -0
- package/src/scss/components/__index.scss +1 -0
- package/src/tokens/font.json +5 -0
- package/tasks/js-bundle.js +6 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<title>Code coverage report for components/combobox/vue-components</title>
|
|
7
|
+
<meta charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="../../../prettify.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../base.css" />
|
|
10
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
11
|
+
<style type='text/css'>
|
|
12
|
+
.coverage-summary .sorter {
|
|
13
|
+
background-image: url(../../../sort-arrow-sprite.png);
|
|
14
|
+
}
|
|
15
|
+
</style>
|
|
16
|
+
</head>
|
|
17
|
+
|
|
18
|
+
<body>
|
|
19
|
+
<div class='wrapper'>
|
|
20
|
+
<div class='pad1'>
|
|
21
|
+
<h1><a href="../../../index.html">All files</a> components/combobox/vue-components</h1>
|
|
22
|
+
<div class='clearfix'>
|
|
23
|
+
|
|
24
|
+
<div class='fl pad1y space-right2'>
|
|
25
|
+
<span class="strong">77.59% </span>
|
|
26
|
+
<span class="quiet">Statements</span>
|
|
27
|
+
<span class='fraction'>45/58</span>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<div class='fl pad1y space-right2'>
|
|
32
|
+
<span class="strong">54.55% </span>
|
|
33
|
+
<span class="quiet">Branches</span>
|
|
34
|
+
<span class='fraction'>12/22</span>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<div class='fl pad1y space-right2'>
|
|
39
|
+
<span class="strong">85.19% </span>
|
|
40
|
+
<span class="quiet">Functions</span>
|
|
41
|
+
<span class='fraction'>23/27</span>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
<div class='fl pad1y space-right2'>
|
|
46
|
+
<span class="strong">77.59% </span>
|
|
47
|
+
<span class="quiet">Lines</span>
|
|
48
|
+
<span class='fraction'>45/58</span>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
</div>
|
|
53
|
+
<p class="quiet">
|
|
54
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
55
|
+
</p>
|
|
56
|
+
</div>
|
|
57
|
+
<div class='status-line medium'></div>
|
|
58
|
+
<div class="pad1">
|
|
59
|
+
<table class="coverage-summary">
|
|
60
|
+
<thead>
|
|
61
|
+
<tr>
|
|
62
|
+
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
|
|
63
|
+
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
|
|
64
|
+
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
|
|
65
|
+
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
66
|
+
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
|
|
67
|
+
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
68
|
+
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
|
|
69
|
+
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
70
|
+
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
|
|
71
|
+
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
72
|
+
</tr>
|
|
73
|
+
</thead>
|
|
74
|
+
<tbody><tr>
|
|
75
|
+
<td class="file medium" data-value="Combobox.vue"><a href="Combobox.vue.html">Combobox.vue</a></td>
|
|
76
|
+
<td data-value="77.59" class="pic medium">
|
|
77
|
+
<div class="chart"><div class="cover-fill" style="width: 77%"></div><div class="cover-empty" style="width: 23%"></div></div>
|
|
78
|
+
</td>
|
|
79
|
+
<td data-value="77.59" class="pct medium">77.59%</td>
|
|
80
|
+
<td data-value="58" class="abs medium">45/58</td>
|
|
81
|
+
<td data-value="54.55" class="pct medium">54.55%</td>
|
|
82
|
+
<td data-value="22" class="abs medium">12/22</td>
|
|
83
|
+
<td data-value="85.19" class="pct high">85.19%</td>
|
|
84
|
+
<td data-value="27" class="abs high">23/27</td>
|
|
85
|
+
<td data-value="77.59" class="pct medium">77.59%</td>
|
|
86
|
+
<td data-value="58" class="abs medium">45/58</td>
|
|
87
|
+
</tr>
|
|
88
|
+
|
|
89
|
+
</tbody>
|
|
90
|
+
</table>
|
|
91
|
+
</div>
|
|
92
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
93
|
+
</div><!-- /wrapper -->
|
|
94
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
95
|
+
Code coverage generated by
|
|
96
|
+
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
97
|
+
at Thu Feb 13 2020 17:53:26 GMT+0000 (Greenwich Mean Time)
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
<script src="../../../prettify.js"></script>
|
|
101
|
+
<script>
|
|
102
|
+
window.onload = function () {
|
|
103
|
+
prettyPrint();
|
|
104
|
+
};
|
|
105
|
+
</script>
|
|
106
|
+
<script src="../../../sorter.js"></script>
|
|
107
|
+
<script src="../../../block-navigation.js"></script>
|
|
108
|
+
</body>
|
|
109
|
+
</html>
|
|
110
|
+
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
|
|
1
2
|
<!doctype html>
|
|
2
3
|
<html lang="en">
|
|
4
|
+
|
|
3
5
|
<head>
|
|
4
6
|
<title>Code coverage report for components/notification</title>
|
|
5
7
|
<meta charset="utf-8" />
|
|
@@ -12,40 +14,48 @@
|
|
|
12
14
|
}
|
|
13
15
|
</style>
|
|
14
16
|
</head>
|
|
17
|
+
|
|
15
18
|
<body>
|
|
16
19
|
<div class='wrapper'>
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
20
|
+
<div class='pad1'>
|
|
21
|
+
<h1><a href="../../index.html">All files</a> components/notification</h1>
|
|
22
|
+
<div class='clearfix'>
|
|
23
|
+
|
|
24
|
+
<div class='fl pad1y space-right2'>
|
|
25
|
+
<span class="strong">92.86% </span>
|
|
26
|
+
<span class="quiet">Statements</span>
|
|
27
|
+
<span class='fraction'>13/14</span>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<div class='fl pad1y space-right2'>
|
|
32
|
+
<span class="strong">100% </span>
|
|
33
|
+
<span class="quiet">Branches</span>
|
|
34
|
+
<span class='fraction'>1/1</span>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<div class='fl pad1y space-right2'>
|
|
39
|
+
<span class="strong">75% </span>
|
|
40
|
+
<span class="quiet">Functions</span>
|
|
41
|
+
<span class='fraction'>3/4</span>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
<div class='fl pad1y space-right2'>
|
|
46
|
+
<span class="strong">92.86% </span>
|
|
47
|
+
<span class="quiet">Lines</span>
|
|
48
|
+
<span class='fraction'>13/14</span>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
</div>
|
|
53
|
+
<p class="quiet">
|
|
54
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
55
|
+
</p>
|
|
42
56
|
</div>
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
</p>
|
|
46
|
-
</div>
|
|
47
|
-
<div class='status-line high'></div>
|
|
48
|
-
<div class="pad1">
|
|
57
|
+
<div class='status-line high'></div>
|
|
58
|
+
<div class="pad1">
|
|
49
59
|
<table class="coverage-summary">
|
|
50
60
|
<thead>
|
|
51
61
|
<tr>
|
|
@@ -63,7 +73,9 @@
|
|
|
63
73
|
</thead>
|
|
64
74
|
<tbody><tr>
|
|
65
75
|
<td class="file high" data-value="notification.js"><a href="notification.js.html">notification.js</a></td>
|
|
66
|
-
<td data-value="92.86" class="pic high"
|
|
76
|
+
<td data-value="92.86" class="pic high">
|
|
77
|
+
<div class="chart"><div class="cover-fill" style="width: 92%"></div><div class="cover-empty" style="width: 8%"></div></div>
|
|
78
|
+
</td>
|
|
67
79
|
<td data-value="92.86" class="pct high">92.86%</td>
|
|
68
80
|
<td data-value="14" class="abs high">13/14</td>
|
|
69
81
|
<td data-value="100" class="pct high">100%</td>
|
|
@@ -76,22 +88,23 @@
|
|
|
76
88
|
|
|
77
89
|
</tbody>
|
|
78
90
|
</table>
|
|
79
|
-
</div><div class='push'></div><!-- for sticky footer -->
|
|
80
|
-
</div><!-- /wrapper -->
|
|
81
|
-
<div class='footer quiet pad2 space-top1 center small'>
|
|
82
|
-
Code coverage
|
|
83
|
-
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Jan 13 2020 16:43:15 GMT+0000 (GMT)
|
|
84
91
|
</div>
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
<
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
<script
|
|
95
|
-
|
|
96
|
-
|
|
92
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
93
|
+
</div><!-- /wrapper -->
|
|
94
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
95
|
+
Code coverage generated by
|
|
96
|
+
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
97
|
+
at Thu Feb 13 2020 17:53:26 GMT+0000 (Greenwich Mean Time)
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
<script src="../../prettify.js"></script>
|
|
101
|
+
<script>
|
|
102
|
+
window.onload = function () {
|
|
103
|
+
prettyPrint();
|
|
104
|
+
};
|
|
105
|
+
</script>
|
|
106
|
+
<script src="../../sorter.js"></script>
|
|
107
|
+
<script src="../../block-navigation.js"></script>
|
|
108
|
+
</body>
|
|
97
109
|
</html>
|
|
110
|
+
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
|
|
1
2
|
<!doctype html>
|
|
2
3
|
<html lang="en">
|
|
4
|
+
|
|
3
5
|
<head>
|
|
4
6
|
<title>Code coverage report for components/notification/notification.js</title>
|
|
5
7
|
<meta charset="utf-8" />
|
|
@@ -12,40 +14,48 @@
|
|
|
12
14
|
}
|
|
13
15
|
</style>
|
|
14
16
|
</head>
|
|
17
|
+
|
|
15
18
|
<body>
|
|
16
19
|
<div class='wrapper'>
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
20
|
+
<div class='pad1'>
|
|
21
|
+
<h1><a href="../../index.html">All files</a> / <a href="index.html">components/notification</a> notification.js</h1>
|
|
22
|
+
<div class='clearfix'>
|
|
23
|
+
|
|
24
|
+
<div class='fl pad1y space-right2'>
|
|
25
|
+
<span class="strong">92.86% </span>
|
|
26
|
+
<span class="quiet">Statements</span>
|
|
27
|
+
<span class='fraction'>13/14</span>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<div class='fl pad1y space-right2'>
|
|
32
|
+
<span class="strong">100% </span>
|
|
33
|
+
<span class="quiet">Branches</span>
|
|
34
|
+
<span class='fraction'>1/1</span>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<div class='fl pad1y space-right2'>
|
|
39
|
+
<span class="strong">75% </span>
|
|
40
|
+
<span class="quiet">Functions</span>
|
|
41
|
+
<span class='fraction'>3/4</span>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
<div class='fl pad1y space-right2'>
|
|
46
|
+
<span class="strong">92.86% </span>
|
|
47
|
+
<span class="quiet">Lines</span>
|
|
48
|
+
<span class='fraction'>13/14</span>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
</div>
|
|
53
|
+
<p class="quiet">
|
|
54
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
55
|
+
</p>
|
|
42
56
|
</div>
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
</p>
|
|
46
|
-
</div>
|
|
47
|
-
<div class='status-line high'></div>
|
|
48
|
-
<pre><table class="coverage">
|
|
57
|
+
<div class='status-line high'></div>
|
|
58
|
+
<pre><table class="coverage">
|
|
49
59
|
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
|
|
50
60
|
<a name='L2'></a><a href='#L2'>2</a>
|
|
51
61
|
<a name='L3'></a><a href='#L3'>3</a>
|
|
@@ -127,24 +137,24 @@ const notification = {
|
|
|
127
137
|
};
|
|
128
138
|
|
|
129
139
|
export default notification;
|
|
130
|
-
</pre></td></tr>
|
|
131
|
-
|
|
132
|
-
<div class='push'></div><!-- for sticky footer -->
|
|
133
|
-
</div><!-- /wrapper -->
|
|
134
|
-
<div class='footer quiet pad2 space-top1 center small'>
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
</div>
|
|
139
|
-
|
|
140
|
-
<script>
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
<script src="../../
|
|
148
|
-
|
|
149
|
-
</body>
|
|
140
|
+
</pre></td></tr></table></pre>
|
|
141
|
+
|
|
142
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
143
|
+
</div><!-- /wrapper -->
|
|
144
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
145
|
+
Code coverage generated by
|
|
146
|
+
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
147
|
+
at Thu Feb 13 2020 17:53:26 GMT+0000 (Greenwich Mean Time)
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
<script src="../../prettify.js"></script>
|
|
151
|
+
<script>
|
|
152
|
+
window.onload = function () {
|
|
153
|
+
prettyPrint();
|
|
154
|
+
};
|
|
155
|
+
</script>
|
|
156
|
+
<script src="../../sorter.js"></script>
|
|
157
|
+
<script src="../../block-navigation.js"></script>
|
|
158
|
+
</body>
|
|
150
159
|
</html>
|
|
160
|
+
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
|
|
1
2
|
<!doctype html>
|
|
2
3
|
<html lang="en">
|
|
4
|
+
|
|
3
5
|
<head>
|
|
4
6
|
<title>Code coverage report for components/popover</title>
|
|
5
7
|
<meta charset="utf-8" />
|
|
@@ -12,40 +14,48 @@
|
|
|
12
14
|
}
|
|
13
15
|
</style>
|
|
14
16
|
</head>
|
|
17
|
+
|
|
15
18
|
<body>
|
|
16
19
|
<div class='wrapper'>
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
20
|
+
<div class='pad1'>
|
|
21
|
+
<h1><a href="../../index.html">All files</a> components/popover</h1>
|
|
22
|
+
<div class='clearfix'>
|
|
23
|
+
|
|
24
|
+
<div class='fl pad1y space-right2'>
|
|
25
|
+
<span class="strong">96.55% </span>
|
|
26
|
+
<span class="quiet">Statements</span>
|
|
27
|
+
<span class='fraction'>28/29</span>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<div class='fl pad1y space-right2'>
|
|
32
|
+
<span class="strong">81.82% </span>
|
|
33
|
+
<span class="quiet">Branches</span>
|
|
34
|
+
<span class='fraction'>9/11</span>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<div class='fl pad1y space-right2'>
|
|
39
|
+
<span class="strong">85.71% </span>
|
|
40
|
+
<span class="quiet">Functions</span>
|
|
41
|
+
<span class='fraction'>6/7</span>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
<div class='fl pad1y space-right2'>
|
|
46
|
+
<span class="strong">96.55% </span>
|
|
47
|
+
<span class="quiet">Lines</span>
|
|
48
|
+
<span class='fraction'>28/29</span>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
</div>
|
|
53
|
+
<p class="quiet">
|
|
54
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
55
|
+
</p>
|
|
42
56
|
</div>
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
</p>
|
|
46
|
-
</div>
|
|
47
|
-
<div class='status-line high'></div>
|
|
48
|
-
<div class="pad1">
|
|
57
|
+
<div class='status-line high'></div>
|
|
58
|
+
<div class="pad1">
|
|
49
59
|
<table class="coverage-summary">
|
|
50
60
|
<thead>
|
|
51
61
|
<tr>
|
|
@@ -63,7 +73,9 @@
|
|
|
63
73
|
</thead>
|
|
64
74
|
<tbody><tr>
|
|
65
75
|
<td class="file high" data-value="popover.js"><a href="popover.js.html">popover.js</a></td>
|
|
66
|
-
<td data-value="96.55" class="pic high"
|
|
76
|
+
<td data-value="96.55" class="pic high">
|
|
77
|
+
<div class="chart"><div class="cover-fill" style="width: 96%"></div><div class="cover-empty" style="width: 4%"></div></div>
|
|
78
|
+
</td>
|
|
67
79
|
<td data-value="96.55" class="pct high">96.55%</td>
|
|
68
80
|
<td data-value="29" class="abs high">28/29</td>
|
|
69
81
|
<td data-value="81.82" class="pct high">81.82%</td>
|
|
@@ -76,22 +88,23 @@
|
|
|
76
88
|
|
|
77
89
|
</tbody>
|
|
78
90
|
</table>
|
|
79
|
-
</div><div class='push'></div><!-- for sticky footer -->
|
|
80
|
-
</div><!-- /wrapper -->
|
|
81
|
-
<div class='footer quiet pad2 space-top1 center small'>
|
|
82
|
-
Code coverage
|
|
83
|
-
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Jan 13 2020 16:43:15 GMT+0000 (GMT)
|
|
84
91
|
</div>
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
<
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
<script
|
|
95
|
-
|
|
96
|
-
|
|
92
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
93
|
+
</div><!-- /wrapper -->
|
|
94
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
95
|
+
Code coverage generated by
|
|
96
|
+
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
97
|
+
at Thu Feb 13 2020 17:53:26 GMT+0000 (Greenwich Mean Time)
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
<script src="../../prettify.js"></script>
|
|
101
|
+
<script>
|
|
102
|
+
window.onload = function () {
|
|
103
|
+
prettyPrint();
|
|
104
|
+
};
|
|
105
|
+
</script>
|
|
106
|
+
<script src="../../sorter.js"></script>
|
|
107
|
+
<script src="../../block-navigation.js"></script>
|
|
108
|
+
</body>
|
|
97
109
|
</html>
|
|
110
|
+
|