@madgex/design-system 1.34.1 → 1.35.1
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 +334 -5
- 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-vue.js.html +82 -0
- package/coverage/js/index.html +88 -54
- package/coverage/js/index.js.html +62 -55
- 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-vue.js +1 -0
- package/src/js/index.js +0 -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 +7 -0
package/.eslintignore
CHANGED
package/.eslintrc.js
CHANGED
package/.prettierrc
CHANGED
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ $mds-size-font-md: 20px; // my base font-size is 20px
|
|
|
31
31
|
|
|
32
32
|
If you're wanting to use the Madgex DS components from a hapi.js+vision+Nunjucks setup you'll need to include the Madgex DS in the Nunjucks pathing:
|
|
33
33
|
|
|
34
|
-
```
|
|
34
|
+
```js
|
|
35
35
|
engines: {
|
|
36
36
|
njk: {
|
|
37
37
|
compile: (src, options) => {
|
|
@@ -58,7 +58,7 @@ If you're wanting to use the Madgex DS components from a hapi.js+vision+Nunjucks
|
|
|
58
58
|
|
|
59
59
|
Then you should be able to use components as such:
|
|
60
60
|
|
|
61
|
-
```
|
|
61
|
+
```nunjucks
|
|
62
62
|
{% extends "template.njk" %} {# a base template is available in the DS #}
|
|
63
63
|
|
|
64
64
|
{% from "button/_macro.njk" import Button %} {# load the DS button component #}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import Vue from 'vue';
|
|
2
|
+
import { mount } from '@vue/test-utils';
|
|
3
|
+
import Combobox from '../../../../src/components/combobox/vue-components/Combobox.vue';
|
|
4
|
+
|
|
5
|
+
describe('Combobox', () => {
|
|
6
|
+
let wrapper;
|
|
7
|
+
let searchBox;
|
|
8
|
+
let listBox;
|
|
9
|
+
|
|
10
|
+
beforeEach(() => {
|
|
11
|
+
wrapper = mount(Combobox, {
|
|
12
|
+
propsData: {
|
|
13
|
+
comboboxid: 'test',
|
|
14
|
+
labeltext: 'Test Select',
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
value: 'dog',
|
|
18
|
+
label: 'Dog',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
value: 'cat',
|
|
22
|
+
label: 'Cat',
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
searchBox = wrapper.find('input');
|
|
28
|
+
listBox = wrapper.find('ul');
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
describe('Search box', () => {
|
|
32
|
+
it('has the correct role', () => {
|
|
33
|
+
expect(searchBox.attributes('role')).toBe('combobox');
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
it('has the correct labelledby attribute', () => {
|
|
37
|
+
expect(searchBox.attributes('aria-labelledby')).toBe('test-label');
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it('controls the listbox', async () => {
|
|
41
|
+
expect.assertions(1);
|
|
42
|
+
searchBox.trigger('focus');
|
|
43
|
+
await Vue.nextTick();
|
|
44
|
+
expect(searchBox.attributes('aria-owns')).toBe('test-listbox');
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
it('has the correct autocomplete settings', () => {
|
|
48
|
+
expect(searchBox.attributes('autocomplete')).toBe('off');
|
|
49
|
+
expect(searchBox.attributes('aria-autocomplete')).toBe('list');
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it('triggers a search event on input', () => {
|
|
53
|
+
searchBox.setValue('test search');
|
|
54
|
+
expect(wrapper.emitted('search')[0]).toEqual(['test search']);
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
it('reduces the options rendered based on the search text', async () => {
|
|
58
|
+
expect.assertions(1);
|
|
59
|
+
searchBox.setValue('d');
|
|
60
|
+
await Vue.nextTick();
|
|
61
|
+
expect(listBox.findAll('li')).toHaveLength(1);
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
it('does not reduce the options rendered based on the search text when filterOptions prop is false', async () => {
|
|
65
|
+
expect.assertions(1);
|
|
66
|
+
wrapper.setProps({
|
|
67
|
+
filterOptions: false,
|
|
68
|
+
});
|
|
69
|
+
searchBox.setValue('d');
|
|
70
|
+
await Vue.nextTick();
|
|
71
|
+
expect(listBox.findAll('li')).toHaveLength(2);
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
describe('Listbox', () => {
|
|
76
|
+
it('has the correct role', () => {
|
|
77
|
+
expect(listBox.attributes('role')).toBe('listbox');
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
it('has the correct labelledby attribute', () => {
|
|
81
|
+
expect(listBox.attributes('aria-labelledby')).toBe('test-label');
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
it('renders the options passed to the select', () => {
|
|
85
|
+
expect(listBox.findAll('li')).toHaveLength(2);
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
it('allows keyboard navigation of items', async () => {
|
|
89
|
+
expect.assertions(1);
|
|
90
|
+
searchBox.trigger('focus');
|
|
91
|
+
await Vue.nextTick();
|
|
92
|
+
wrapper.trigger('keydown.down');
|
|
93
|
+
await Vue.nextTick();
|
|
94
|
+
expect(wrapper.vm.selectedOption).toBeTruthy();
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
it('triggers a select-option event on option mousedown', () => {
|
|
98
|
+
listBox.find('li').trigger('mousedown');
|
|
99
|
+
expect(wrapper.emitted('select-option')[0]).toEqual([
|
|
100
|
+
{
|
|
101
|
+
value: 'dog',
|
|
102
|
+
label: 'Dog',
|
|
103
|
+
},
|
|
104
|
+
]);
|
|
105
|
+
});
|
|
106
|
+
});
|
|
107
|
+
});
|
|
@@ -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="
|
|
3
|
+
<coverage lines-valid="354" lines-covered="143" line-rate="0.40399999999999997" branches-valid="97" branches-covered="31" branch-rate="0.3196" timestamp="1581682413369" 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>
|
|
@@ -125,6 +125,233 @@
|
|
|
125
125
|
</class>
|
|
126
126
|
</classes>
|
|
127
127
|
</package>
|
|
128
|
+
<package name="components.combobox" line-rate="0" branch-rate="0">
|
|
129
|
+
<classes>
|
|
130
|
+
<class name="combobox.js" filename="src/components/combobox/combobox.js" line-rate="0" branch-rate="0">
|
|
131
|
+
<methods>
|
|
132
|
+
<method name="(anonymous_0)" hits="0" signature="()V">
|
|
133
|
+
<lines>
|
|
134
|
+
<line number="13" hits="0"/>
|
|
135
|
+
</lines>
|
|
136
|
+
</method>
|
|
137
|
+
</methods>
|
|
138
|
+
<lines>
|
|
139
|
+
<line number="6" hits="0" branch="false"/>
|
|
140
|
+
<line number="7" hits="0" branch="false"/>
|
|
141
|
+
<line number="9" hits="0" branch="false"/>
|
|
142
|
+
<line number="10" hits="0" branch="false"/>
|
|
143
|
+
<line number="12" hits="0" branch="false"/>
|
|
144
|
+
<line number="15" hits="0" branch="false"/>
|
|
145
|
+
<line number="16" hits="0" branch="false"/>
|
|
146
|
+
<line number="17" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
147
|
+
<line number="18" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
148
|
+
</lines>
|
|
149
|
+
</class>
|
|
150
|
+
</classes>
|
|
151
|
+
</package>
|
|
152
|
+
<package name="components.combobox.vue-components" line-rate="0.7759" branch-rate="0.5455">
|
|
153
|
+
<classes>
|
|
154
|
+
<class name="Combobox.vue" filename="src/components/combobox/vue-components/Combobox.vue" line-rate="0.7759" branch-rate="0.5455">
|
|
155
|
+
<methods>
|
|
156
|
+
<method name="_default" hits="0" signature="()V">
|
|
157
|
+
<lines>
|
|
158
|
+
<line number="78" hits="0"/>
|
|
159
|
+
</lines>
|
|
160
|
+
</method>
|
|
161
|
+
<method name="data" hits="12" signature="()V">
|
|
162
|
+
<lines>
|
|
163
|
+
<line number="85" hits="12"/>
|
|
164
|
+
</lines>
|
|
165
|
+
</method>
|
|
166
|
+
<method name="get" hits="16" signature="()V">
|
|
167
|
+
<lines>
|
|
168
|
+
<line number="95" hits="16"/>
|
|
169
|
+
</lines>
|
|
170
|
+
</method>
|
|
171
|
+
<method name="set" hits="3" signature="()V">
|
|
172
|
+
<lines>
|
|
173
|
+
<line number="101" hits="3"/>
|
|
174
|
+
</lines>
|
|
175
|
+
</method>
|
|
176
|
+
<method name="get" hits="14" signature="()V">
|
|
177
|
+
<lines>
|
|
178
|
+
<line number="110" hits="14"/>
|
|
179
|
+
</lines>
|
|
180
|
+
</method>
|
|
181
|
+
<method name="set" hits="7" signature="()V">
|
|
182
|
+
<lines>
|
|
183
|
+
<line number="113" hits="7"/>
|
|
184
|
+
</lines>
|
|
185
|
+
</method>
|
|
186
|
+
<method name="get" hits="13" signature="()V">
|
|
187
|
+
<lines>
|
|
188
|
+
<line number="118" hits="13"/>
|
|
189
|
+
</lines>
|
|
190
|
+
</method>
|
|
191
|
+
<method name="set" hits="4" signature="()V">
|
|
192
|
+
<lines>
|
|
193
|
+
<line number="121" hits="4"/>
|
|
194
|
+
</lines>
|
|
195
|
+
</method>
|
|
196
|
+
<method name="visibleOptions" hits="15" signature="()V">
|
|
197
|
+
<lines>
|
|
198
|
+
<line number="127" hits="15"/>
|
|
199
|
+
</lines>
|
|
200
|
+
</method>
|
|
201
|
+
<method name="(anonymous_10)" hits="28" signature="()V">
|
|
202
|
+
<lines>
|
|
203
|
+
<line number="129" hits="28"/>
|
|
204
|
+
</lines>
|
|
205
|
+
</method>
|
|
206
|
+
<method name="labelId" hits="12" signature="()V">
|
|
207
|
+
<lines>
|
|
208
|
+
<line number="133" hits="12"/>
|
|
209
|
+
</lines>
|
|
210
|
+
</method>
|
|
211
|
+
<method name="listBoxId" hits="12" signature="()V">
|
|
212
|
+
<lines>
|
|
213
|
+
<line number="136" hits="12"/>
|
|
214
|
+
</lines>
|
|
215
|
+
</method>
|
|
216
|
+
<method name="optionId" hits="12" signature="()V">
|
|
217
|
+
<lines>
|
|
218
|
+
<line number="139" hits="12"/>
|
|
219
|
+
</lines>
|
|
220
|
+
</method>
|
|
221
|
+
<method name="selectedOptionId" hits="17" signature="()V">
|
|
222
|
+
<lines>
|
|
223
|
+
<line number="142" hits="17"/>
|
|
224
|
+
</lines>
|
|
225
|
+
</method>
|
|
226
|
+
<method name="listBoxHidden" hits="17" signature="()V">
|
|
227
|
+
<lines>
|
|
228
|
+
<line number="149" hits="17"/>
|
|
229
|
+
</lines>
|
|
230
|
+
</method>
|
|
231
|
+
<method name="lastOptionIndex" hits="1" signature="()V">
|
|
232
|
+
<lines>
|
|
233
|
+
<line number="152" hits="1"/>
|
|
234
|
+
</lines>
|
|
235
|
+
</method>
|
|
236
|
+
<method name="resultCount" hits="15" signature="()V">
|
|
237
|
+
<lines>
|
|
238
|
+
<line number="155" hits="15"/>
|
|
239
|
+
</lines>
|
|
240
|
+
</method>
|
|
241
|
+
<method name="makeActive" hits="5" signature="()V">
|
|
242
|
+
<lines>
|
|
243
|
+
<line number="163" hits="5"/>
|
|
244
|
+
</lines>
|
|
245
|
+
</method>
|
|
246
|
+
<method name="makeInactive" hits="1" signature="()V">
|
|
247
|
+
<lines>
|
|
248
|
+
<line number="166" hits="1"/>
|
|
249
|
+
</lines>
|
|
250
|
+
</method>
|
|
251
|
+
<method name="clickOption" hits="1" signature="()V">
|
|
252
|
+
<lines>
|
|
253
|
+
<line number="169" hits="1"/>
|
|
254
|
+
</lines>
|
|
255
|
+
</method>
|
|
256
|
+
<method name="chooseOption" hits="0" signature="()V">
|
|
257
|
+
<lines>
|
|
258
|
+
<line number="173" hits="0"/>
|
|
259
|
+
</lines>
|
|
260
|
+
</method>
|
|
261
|
+
<method name="hiddenGuard" hits="3" signature="()V">
|
|
262
|
+
<lines>
|
|
263
|
+
<line number="177" hits="3"/>
|
|
264
|
+
</lines>
|
|
265
|
+
</method>
|
|
266
|
+
<method name="onInputBlur" hits="0" signature="()V">
|
|
267
|
+
<lines>
|
|
268
|
+
<line number="181" hits="0"/>
|
|
269
|
+
</lines>
|
|
270
|
+
</method>
|
|
271
|
+
<method name="onKeyDown" hits="1" signature="()V">
|
|
272
|
+
<lines>
|
|
273
|
+
<line number="184" hits="1"/>
|
|
274
|
+
</lines>
|
|
275
|
+
</method>
|
|
276
|
+
<method name="onKeyUp" hits="0" signature="()V">
|
|
277
|
+
<lines>
|
|
278
|
+
<line number="193" hits="0"/>
|
|
279
|
+
</lines>
|
|
280
|
+
</method>
|
|
281
|
+
<method name="onKeyHome" hits="1" signature="()V">
|
|
282
|
+
<lines>
|
|
283
|
+
<line number="202" hits="1"/>
|
|
284
|
+
</lines>
|
|
285
|
+
</method>
|
|
286
|
+
<method name="onKeyEnd" hits="1" signature="()V">
|
|
287
|
+
<lines>
|
|
288
|
+
<line number="205" hits="1"/>
|
|
289
|
+
</lines>
|
|
290
|
+
</method>
|
|
291
|
+
</methods>
|
|
292
|
+
<lines>
|
|
293
|
+
<line number="44" hits="1" branch="false"/>
|
|
294
|
+
<line number="45" hits="1" branch="false"/>
|
|
295
|
+
<line number="46" hits="1" branch="false"/>
|
|
296
|
+
<line number="78" hits="0" branch="false"/>
|
|
297
|
+
<line number="86" hits="12" branch="false"/>
|
|
298
|
+
<line number="96" hits="16" branch="true" condition-coverage="100% (2/2)"/>
|
|
299
|
+
<line number="97" hits="1" branch="false"/>
|
|
300
|
+
<line number="99" hits="15" branch="false"/>
|
|
301
|
+
<line number="103" hits="3" branch="false"/>
|
|
302
|
+
<line number="104" hits="3" branch="true" condition-coverage="50% (1/2)"/>
|
|
303
|
+
<line number="105" hits="3" branch="false"/>
|
|
304
|
+
<line number="106" hits="3" branch="false"/>
|
|
305
|
+
<line number="111" hits="14" branch="false"/>
|
|
306
|
+
<line number="114" hits="7" branch="false"/>
|
|
307
|
+
<line number="119" hits="13" branch="false"/>
|
|
308
|
+
<line number="122" hits="4" branch="false"/>
|
|
309
|
+
<line number="123" hits="4" branch="false"/>
|
|
310
|
+
<line number="124" hits="4" branch="false"/>
|
|
311
|
+
<line number="127" hits="15" branch="false"/>
|
|
312
|
+
<line number="128" hits="15" branch="true" condition-coverage="100% (2/2)"/>
|
|
313
|
+
<line number="129" hits="42" branch="false"/>
|
|
314
|
+
<line number="131" hits="1" branch="false"/>
|
|
315
|
+
<line number="134" hits="12" branch="false"/>
|
|
316
|
+
<line number="137" hits="12" branch="false"/>
|
|
317
|
+
<line number="140" hits="12" branch="false"/>
|
|
318
|
+
<line number="143" hits="17" branch="false"/>
|
|
319
|
+
<line number="144" hits="17" branch="true" condition-coverage="100% (2/2)"/>
|
|
320
|
+
<line number="145" hits="2" branch="false"/>
|
|
321
|
+
<line number="147" hits="15" branch="false"/>
|
|
322
|
+
<line number="150" hits="17" branch="false"/>
|
|
323
|
+
<line number="153" hits="1" branch="false"/>
|
|
324
|
+
<line number="156" hits="15" branch="true" condition-coverage="50% (1/2)"/>
|
|
325
|
+
<line number="157" hits="0" branch="false"/>
|
|
326
|
+
<line number="159" hits="15" branch="false"/>
|
|
327
|
+
<line number="164" hits="5" branch="false"/>
|
|
328
|
+
<line number="167" hits="1" branch="false"/>
|
|
329
|
+
<line number="169" hits="1" branch="true" condition-coverage="100% (2/2)"/>
|
|
330
|
+
<line number="170" hits="1" branch="false"/>
|
|
331
|
+
<line number="171" hits="1" branch="false"/>
|
|
332
|
+
<line number="174" hits="0" branch="false"/>
|
|
333
|
+
<line number="175" hits="0" branch="false"/>
|
|
334
|
+
<line number="178" hits="3" branch="true" condition-coverage="50% (1/2)"/>
|
|
335
|
+
<line number="179" hits="3" branch="false"/>
|
|
336
|
+
<line number="182" hits="0" branch="false"/>
|
|
337
|
+
<line number="185" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
338
|
+
<line number="186" hits="0" branch="false"/>
|
|
339
|
+
<line number="187" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
340
|
+
<line number="188" hits="0" branch="false"/>
|
|
341
|
+
<line number="189" hits="1" branch="false"/>
|
|
342
|
+
<line number="190" hits="1" branch="false"/>
|
|
343
|
+
<line number="194" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
344
|
+
<line number="195" hits="0" branch="false"/>
|
|
345
|
+
<line number="196" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
346
|
+
<line number="197" hits="0" branch="false"/>
|
|
347
|
+
<line number="199" hits="0" branch="false"/>
|
|
348
|
+
<line number="202" hits="1" branch="false"/>
|
|
349
|
+
<line number="203" hits="1" branch="false"/>
|
|
350
|
+
<line number="206" hits="1" branch="false"/>
|
|
351
|
+
</lines>
|
|
352
|
+
</class>
|
|
353
|
+
</classes>
|
|
354
|
+
</package>
|
|
128
355
|
<package name="components.notification" line-rate="0.9286" branch-rate="1">
|
|
129
356
|
<classes>
|
|
130
357
|
<class name="notification.js" filename="src/components/notification/notification.js" line-rate="0.9286" branch-rate="1">
|
|
@@ -507,14 +734,15 @@
|
|
|
507
734
|
<methods>
|
|
508
735
|
<method name="(anonymous_0)" hits="0" signature="()V">
|
|
509
736
|
<lines>
|
|
510
|
-
<line number="
|
|
737
|
+
<line number="5" hits="0"/>
|
|
511
738
|
</lines>
|
|
512
739
|
</method>
|
|
513
740
|
</methods>
|
|
514
741
|
<lines>
|
|
515
|
-
<line number="4" hits="0" branch="false"/>
|
|
516
742
|
<line number="5" hits="0" branch="false"/>
|
|
517
743
|
<line number="6" hits="0" branch="false"/>
|
|
744
|
+
<line number="7" hits="0" branch="false"/>
|
|
745
|
+
<line number="8" hits="0" branch="false"/>
|
|
518
746
|
</lines>
|
|
519
747
|
</class>
|
|
520
748
|
<class name="index-polyfills.js" filename="src/js/index-polyfills.js" line-rate="1" branch-rate="1">
|
|
@@ -523,25 +751,111 @@
|
|
|
523
751
|
<lines>
|
|
524
752
|
</lines>
|
|
525
753
|
</class>
|
|
754
|
+
<class name="index-vue.js" filename="src/js/index-vue.js" line-rate="1" branch-rate="1">
|
|
755
|
+
<methods>
|
|
756
|
+
</methods>
|
|
757
|
+
<lines>
|
|
758
|
+
</lines>
|
|
759
|
+
</class>
|
|
526
760
|
<class name="index.js" filename="src/js/index.js" line-rate="0" branch-rate="1">
|
|
527
761
|
<methods>
|
|
528
762
|
<method name="(anonymous_0)" hits="0" signature="()V">
|
|
529
763
|
<lines>
|
|
530
|
-
<line number="
|
|
764
|
+
<line number="15" hits="0"/>
|
|
531
765
|
</lines>
|
|
532
766
|
</method>
|
|
533
767
|
</methods>
|
|
534
768
|
<lines>
|
|
769
|
+
<line number="15" hits="0" branch="false"/>
|
|
535
770
|
<line number="16" hits="0" branch="false"/>
|
|
536
771
|
<line number="17" hits="0" branch="false"/>
|
|
537
772
|
<line number="18" hits="0" branch="false"/>
|
|
538
|
-
<line number="19" hits="0" branch="false"/>
|
|
539
773
|
</lines>
|
|
540
774
|
</class>
|
|
541
775
|
</classes>
|
|
542
776
|
</package>
|
|
543
777
|
<package name="js.fractal-scripts" line-rate="0" branch-rate="0">
|
|
544
778
|
<classes>
|
|
779
|
+
<class name="combobox.js" filename="src/js/fractal-scripts/combobox.js" line-rate="0" branch-rate="0">
|
|
780
|
+
<methods>
|
|
781
|
+
<method name="bindToSelect" hits="0" signature="()V">
|
|
782
|
+
<lines>
|
|
783
|
+
<line number="4" hits="0"/>
|
|
784
|
+
</lines>
|
|
785
|
+
</method>
|
|
786
|
+
<method name="(anonymous_1)" hits="0" signature="()V">
|
|
787
|
+
<lines>
|
|
788
|
+
<line number="10" hits="0"/>
|
|
789
|
+
</lines>
|
|
790
|
+
</method>
|
|
791
|
+
<method name="(anonymous_2)" hits="0" signature="()V">
|
|
792
|
+
<lines>
|
|
793
|
+
<line number="11" hits="0"/>
|
|
794
|
+
</lines>
|
|
795
|
+
</method>
|
|
796
|
+
<method name="bindToApi" hits="0" signature="()V">
|
|
797
|
+
<lines>
|
|
798
|
+
<line number="20" hits="0"/>
|
|
799
|
+
</lines>
|
|
800
|
+
</method>
|
|
801
|
+
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
802
|
+
<lines>
|
|
803
|
+
<line number="25" hits="0"/>
|
|
804
|
+
</lines>
|
|
805
|
+
</method>
|
|
806
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
807
|
+
<lines>
|
|
808
|
+
<line number="29" hits="0"/>
|
|
809
|
+
</lines>
|
|
810
|
+
</method>
|
|
811
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
812
|
+
<lines>
|
|
813
|
+
<line number="30" hits="0"/>
|
|
814
|
+
</lines>
|
|
815
|
+
</method>
|
|
816
|
+
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
817
|
+
<lines>
|
|
818
|
+
<line number="31" hits="0"/>
|
|
819
|
+
</lines>
|
|
820
|
+
</method>
|
|
821
|
+
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
822
|
+
<lines>
|
|
823
|
+
<line number="44" hits="0"/>
|
|
824
|
+
</lines>
|
|
825
|
+
</method>
|
|
826
|
+
</methods>
|
|
827
|
+
<lines>
|
|
828
|
+
<line number="1" hits="0" branch="false"/>
|
|
829
|
+
<line number="2" hits="0" branch="false"/>
|
|
830
|
+
<line number="5" hits="0" branch="false"/>
|
|
831
|
+
<line number="6" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
832
|
+
<line number="7" hits="0" branch="false"/>
|
|
833
|
+
<line number="8" hits="0" branch="false"/>
|
|
834
|
+
<line number="9" hits="0" branch="false"/>
|
|
835
|
+
<line number="10" hits="0" branch="false"/>
|
|
836
|
+
<line number="11" hits="0" branch="false"/>
|
|
837
|
+
<line number="12" hits="0" branch="false"/>
|
|
838
|
+
<line number="13" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
839
|
+
<line number="14" hits="0" branch="false"/>
|
|
840
|
+
<line number="15" hits="0" branch="false"/>
|
|
841
|
+
<line number="21" hits="0" branch="false"/>
|
|
842
|
+
<line number="22" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
843
|
+
<line number="23" hits="0" branch="false"/>
|
|
844
|
+
<line number="24" hits="0" branch="false"/>
|
|
845
|
+
<line number="25" hits="0" branch="false"/>
|
|
846
|
+
<line number="26" hits="0" branch="false"/>
|
|
847
|
+
<line number="27" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
848
|
+
<line number="28" hits="0" branch="false"/>
|
|
849
|
+
<line number="29" hits="0" branch="false"/>
|
|
850
|
+
<line number="31" hits="0" branch="false"/>
|
|
851
|
+
<line number="32" hits="0" branch="false"/>
|
|
852
|
+
<line number="33" hits="0" branch="false"/>
|
|
853
|
+
<line number="37" hits="0" branch="false"/>
|
|
854
|
+
<line number="43" hits="0" branch="false"/>
|
|
855
|
+
<line number="45" hits="0" branch="false"/>
|
|
856
|
+
<line number="46" hits="0" branch="false"/>
|
|
857
|
+
</lines>
|
|
858
|
+
</class>
|
|
545
859
|
<class name="notification.js" filename="src/js/fractal-scripts/notification.js" line-rate="0" branch-rate="1">
|
|
546
860
|
<methods>
|
|
547
861
|
<method name="(anonymous_0)" hits="0" signature="()V">
|
|
@@ -632,6 +946,21 @@
|
|
|
632
946
|
<line number="14" hits="0" branch="false"/>
|
|
633
947
|
</lines>
|
|
634
948
|
</class>
|
|
949
|
+
<class name="remove.js" filename="src/js/polyfills/remove.js" line-rate="0" branch-rate="0">
|
|
950
|
+
<methods>
|
|
951
|
+
<method name="remove" hits="0" signature="()V">
|
|
952
|
+
<lines>
|
|
953
|
+
<line number="2" hits="0"/>
|
|
954
|
+
</lines>
|
|
955
|
+
</method>
|
|
956
|
+
</methods>
|
|
957
|
+
<lines>
|
|
958
|
+
<line number="1" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
959
|
+
<line number="2" hits="0" branch="false"/>
|
|
960
|
+
<line number="3" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
961
|
+
<line number="4" hits="0" branch="false"/>
|
|
962
|
+
</lines>
|
|
963
|
+
</class>
|
|
635
964
|
</classes>
|
|
636
965
|
</package>
|
|
637
966
|
<package name="tokens" line-rate="0" branch-rate="1">
|