@madgex/design-system 3.4.2 → 3.6.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/coverage/cobertura-coverage.xml +108 -102
- 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 +58 -19
- package/coverage/components/inputs/combobox/vue-components/ListBoxOption.vue.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/index.html +16 -16
- 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 +1 -1
- 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 +18 -18
- 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-inline.svg +1 -0
- package/dist/assets/icons.svg +1 -6
- package/dist/js/index.js +1 -1
- package/docs/tokens/icons.njk +1 -1
- package/package.json +2 -2
- package/src/components/icons/README.md +10 -6
- package/src/components/icons/_template.njk +1 -8
- package/src/components/inputs/_checkbox-elem/_template.njk +1 -1
- package/src/components/inputs/checkbox-list/README.md +7 -0
- package/src/components/inputs/checkbox-list/_template.njk +10 -8
- package/src/components/inputs/checkbox-list/checkbox-list.config.js +3 -0
- package/src/components/inputs/checkbox-list/checkbox-list.njk +2 -1
- package/src/components/inputs/combobox/README.md +12 -0
- package/src/components/inputs/combobox/_template.njk +4 -2
- package/src/components/inputs/combobox/combobox.config.js +8 -1
- package/src/components/inputs/combobox/combobox.njk +2 -1
- package/src/components/inputs/combobox/vue-components/Combobox.vue +20 -7
- package/src/components/inputs/combobox/vue-components/ListBox.vue +3 -3
- package/src/components/inputs/file-upload/README.md +15 -5
- package/src/components/inputs/file-upload/_template.njk +5 -11
- package/src/components/inputs/file-upload/file-upload.config.js +3 -5
- package/src/components/inputs/file-upload/file-upload.njk +1 -4
- package/src/components/inputs/input/README.md +6 -0
- package/src/components/inputs/input/_template.njk +2 -1
- package/src/components/inputs/input/input.config.js +0 -1
- package/src/components/inputs/label/README.md +6 -0
- package/src/components/inputs/label/_template.njk +2 -2
- package/src/components/inputs/label/label.config.js +0 -1
- package/src/components/inputs/radio/README.md +6 -0
- package/src/components/inputs/radio/_template.njk +2 -1
- package/src/components/inputs/radio/radio.config.js +0 -1
- package/src/components/inputs/select/README.md +8 -2
- package/src/components/inputs/select/_template.njk +4 -10
- package/src/components/inputs/select/select.config.js +4 -3
- package/src/components/inputs/select/select.njk +3 -3
- package/src/components/inputs/single-checkbox/README.md +10 -2
- package/src/components/inputs/single-checkbox/_template.njk +9 -6
- package/src/components/inputs/single-checkbox/single-checkbox.config.js +5 -7
- package/src/components/inputs/single-checkbox/single-checkbox.njk +2 -1
- package/src/components/inputs/textarea/README.md +7 -0
- package/src/components/inputs/textarea/_template.njk +3 -2
- package/src/components/inputs/textarea/textarea.config.js +0 -1
- package/src/components/inputs/textarea/textarea.njk +2 -1
- package/src/components/modal/README.md +6 -1
- package/src/components/modal/_template.njk +2 -8
- package/src/components/modal/modal.njk +4 -3
- package/src/components/pagination/README.md +18 -7
- package/src/components/pagination/_template.njk +18 -10
- package/src/components/pagination/pagination.config.js +36 -27
- package/src/components/pagination/pagination.njk +2 -6
- package/src/components/pagination-numbers/README.md +17 -7
- package/src/components/pagination-numbers/_pagination-numbers-number-macro.njk +5 -2
- package/src/components/pagination-numbers/_template.njk +20 -17
- package/src/components/pagination-numbers/pagination-numbers.config.js +18 -8
- package/src/components/pagination-numbers/pagination-numbers.njk +2 -10
- package/src/components/skip-link/README.md +1 -1
- package/src/components/skip-link/_template.njk +1 -1
- package/src/components/skip-link/skip-link.njk +3 -1
- package/src/icons/check.svg +1 -1
- package/src/icons/question-mark.svg +1 -1
- package/tasks/svgsprite.js +20 -14
|
@@ -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="543" lines-covered="97" line-rate="0.17859999999999998" branches-valid="171" branches-covered="29" branch-rate="0.1696" timestamp="1644322841602" complexity="0" version="0.1">
|
|
4
4
|
<sources>
|
|
5
5
|
<source>/data/jenkins/jobs/madgex-design-system/branches/master/workspace</source>
|
|
6
6
|
</sources>
|
|
@@ -207,18 +207,18 @@
|
|
|
207
207
|
</class>
|
|
208
208
|
</classes>
|
|
209
209
|
</package>
|
|
210
|
-
<package name="components.inputs.combobox.vue-components" line-rate="0.
|
|
210
|
+
<package name="components.inputs.combobox.vue-components" line-rate="0.6627" branch-rate="0.5">
|
|
211
211
|
<classes>
|
|
212
|
-
<class name="Combobox.vue" filename="src/components/inputs/combobox/vue-components/Combobox.vue" line-rate="0.
|
|
212
|
+
<class name="Combobox.vue" filename="src/components/inputs/combobox/vue-components/Combobox.vue" line-rate="0.6364" branch-rate="0.5">
|
|
213
213
|
<methods>
|
|
214
214
|
<method name="_default" hits="0" signature="()V">
|
|
215
215
|
<lines>
|
|
216
|
-
<line number="
|
|
216
|
+
<line number="75" hits="0"/>
|
|
217
217
|
</lines>
|
|
218
218
|
</method>
|
|
219
219
|
<method name="data" hits="5" signature="()V">
|
|
220
220
|
<lines>
|
|
221
|
-
<line number="
|
|
221
|
+
<line number="94" hits="5"/>
|
|
222
222
|
</lines>
|
|
223
223
|
</method>
|
|
224
224
|
<method name="provide" hits="5" signature="()V">
|
|
@@ -228,242 +228,248 @@
|
|
|
228
228
|
</method>
|
|
229
229
|
<method name="get" hits="9" signature="()V">
|
|
230
230
|
<lines>
|
|
231
|
-
<line number="
|
|
231
|
+
<line number="111" hits="9"/>
|
|
232
232
|
</lines>
|
|
233
233
|
</method>
|
|
234
234
|
<method name="set" hits="3" signature="()V">
|
|
235
235
|
<lines>
|
|
236
|
-
<line number="
|
|
236
|
+
<line number="118" hits="3"/>
|
|
237
237
|
</lines>
|
|
238
238
|
</method>
|
|
239
239
|
<method name="get" hits="6" signature="()V">
|
|
240
240
|
<lines>
|
|
241
|
-
<line number="
|
|
241
|
+
<line number="130" hits="6"/>
|
|
242
242
|
</lines>
|
|
243
243
|
</method>
|
|
244
244
|
<method name="set" hits="4" signature="()V">
|
|
245
245
|
<lines>
|
|
246
|
-
<line number="
|
|
246
|
+
<line number="133" hits="4"/>
|
|
247
247
|
</lines>
|
|
248
248
|
</method>
|
|
249
249
|
<method name="get" hits="6" signature="()V">
|
|
250
250
|
<lines>
|
|
251
|
-
<line number="
|
|
251
|
+
<line number="138" hits="6"/>
|
|
252
252
|
</lines>
|
|
253
253
|
</method>
|
|
254
254
|
<method name="set" hits="4" signature="()V">
|
|
255
255
|
<lines>
|
|
256
|
-
<line number="
|
|
256
|
+
<line number="141" hits="4"/>
|
|
257
257
|
</lines>
|
|
258
258
|
</method>
|
|
259
259
|
<method name="visibleOptions" hits="9" signature="()V">
|
|
260
260
|
<lines>
|
|
261
|
-
<line number="
|
|
261
|
+
<line number="147" hits="9"/>
|
|
262
262
|
</lines>
|
|
263
263
|
</method>
|
|
264
264
|
<method name="(anonymous_11)" hits="16" signature="()V">
|
|
265
265
|
<lines>
|
|
266
|
-
<line number="
|
|
266
|
+
<line number="149" hits="16"/>
|
|
267
267
|
</lines>
|
|
268
268
|
</method>
|
|
269
269
|
<method name="listBoxId" hits="5" signature="()V">
|
|
270
270
|
<lines>
|
|
271
|
-
<line number="
|
|
271
|
+
<line number="154" hits="5"/>
|
|
272
272
|
</lines>
|
|
273
273
|
</method>
|
|
274
274
|
<method name="optionId" hits="5" signature="()V">
|
|
275
275
|
<lines>
|
|
276
|
-
<line number="
|
|
276
|
+
<line number="157" hits="5"/>
|
|
277
277
|
</lines>
|
|
278
278
|
</method>
|
|
279
279
|
<method name="describedBy" hits="5" signature="()V">
|
|
280
280
|
<lines>
|
|
281
|
-
<line number="
|
|
281
|
+
<line number="160" hits="5"/>
|
|
282
282
|
</lines>
|
|
283
283
|
</method>
|
|
284
284
|
<method name="isLoading" hits="5" signature="()V">
|
|
285
285
|
<lines>
|
|
286
|
-
<line number="
|
|
286
|
+
<line number="163" hits="5"/>
|
|
287
287
|
</lines>
|
|
288
288
|
</method>
|
|
289
289
|
<method name="selectedOptionId" hits="9" signature="()V">
|
|
290
290
|
<lines>
|
|
291
|
-
<line number="
|
|
291
|
+
<line number="166" hits="9"/>
|
|
292
292
|
</lines>
|
|
293
293
|
</method>
|
|
294
294
|
<method name="listBoxHidden" hits="6" signature="()V">
|
|
295
295
|
<lines>
|
|
296
|
-
<line number="
|
|
296
|
+
<line number="175" hits="6"/>
|
|
297
297
|
</lines>
|
|
298
298
|
</method>
|
|
299
299
|
<method name="lastOptionIndex" hits="0" signature="()V">
|
|
300
300
|
<lines>
|
|
301
|
-
<line number="
|
|
301
|
+
<line number="178" hits="0"/>
|
|
302
302
|
</lines>
|
|
303
303
|
</method>
|
|
304
304
|
<method name="ariaExpanded" hits="6" signature="()V">
|
|
305
305
|
<lines>
|
|
306
|
-
<line number="
|
|
306
|
+
<line number="181" hits="6"/>
|
|
307
307
|
</lines>
|
|
308
308
|
</method>
|
|
309
309
|
<method name="ariaInvalid" hits="5" signature="()V">
|
|
310
310
|
<lines>
|
|
311
|
-
<line number="
|
|
311
|
+
<line number="185" hits="5"/>
|
|
312
|
+
</lines>
|
|
313
|
+
</method>
|
|
314
|
+
<method name="i18nText" hits="5" signature="()V">
|
|
315
|
+
<lines>
|
|
316
|
+
<line number="188" hits="5"/>
|
|
312
317
|
</lines>
|
|
313
318
|
</method>
|
|
314
319
|
<method name="makeActive" hits="1" signature="()V">
|
|
315
320
|
<lines>
|
|
316
|
-
<line number="
|
|
321
|
+
<line number="201" hits="1"/>
|
|
317
322
|
</lines>
|
|
318
323
|
</method>
|
|
319
324
|
<method name="makeInactive" hits="3" signature="()V">
|
|
320
325
|
<lines>
|
|
321
|
-
<line number="
|
|
326
|
+
<line number="204" hits="3"/>
|
|
322
327
|
</lines>
|
|
323
328
|
</method>
|
|
324
329
|
<method name="handleChange" hits="3" signature="()V">
|
|
325
330
|
<lines>
|
|
326
|
-
<line number="
|
|
331
|
+
<line number="207" hits="3"/>
|
|
327
332
|
</lines>
|
|
328
333
|
</method>
|
|
329
334
|
<method name="handleFocus" hits="0" signature="()V">
|
|
330
335
|
<lines>
|
|
331
|
-
<line number="
|
|
336
|
+
<line number="215" hits="0"/>
|
|
332
337
|
</lines>
|
|
333
338
|
</method>
|
|
334
339
|
<method name="clickOption" hits="1" signature="()V">
|
|
335
340
|
<lines>
|
|
336
|
-
<line number="
|
|
341
|
+
<line number="221" hits="1"/>
|
|
337
342
|
</lines>
|
|
338
343
|
</method>
|
|
339
344
|
<method name="chooseOption" hits="0" signature="()V">
|
|
340
345
|
<lines>
|
|
341
|
-
<line number="
|
|
346
|
+
<line number="225" hits="0"/>
|
|
342
347
|
</lines>
|
|
343
348
|
</method>
|
|
344
349
|
<method name="hiddenGuard" hits="0" signature="()V">
|
|
345
350
|
<lines>
|
|
346
|
-
<line number="
|
|
351
|
+
<line number="230" hits="0"/>
|
|
347
352
|
</lines>
|
|
348
353
|
</method>
|
|
349
354
|
<method name="onInputBlur" hits="0" signature="()V">
|
|
350
355
|
<lines>
|
|
351
|
-
<line number="
|
|
356
|
+
<line number="234" hits="0"/>
|
|
352
357
|
</lines>
|
|
353
358
|
</method>
|
|
354
359
|
<method name="onKeyDown" hits="0" signature="()V">
|
|
355
360
|
<lines>
|
|
356
|
-
<line number="
|
|
361
|
+
<line number="238" hits="0"/>
|
|
357
362
|
</lines>
|
|
358
363
|
</method>
|
|
359
364
|
<method name="onKeyUp" hits="0" signature="()V">
|
|
360
365
|
<lines>
|
|
361
|
-
<line number="
|
|
366
|
+
<line number="248" hits="0"/>
|
|
362
367
|
</lines>
|
|
363
368
|
</method>
|
|
364
369
|
<method name="onKeyHome" hits="0" signature="()V">
|
|
365
370
|
<lines>
|
|
366
|
-
<line number="
|
|
371
|
+
<line number="258" hits="0"/>
|
|
367
372
|
</lines>
|
|
368
373
|
</method>
|
|
369
374
|
<method name="onKeyEnd" hits="0" signature="()V">
|
|
370
375
|
<lines>
|
|
371
|
-
<line number="
|
|
376
|
+
<line number="261" hits="0"/>
|
|
372
377
|
</lines>
|
|
373
378
|
</method>
|
|
374
379
|
<method name="updateCount" hits="3" signature="()V">
|
|
375
380
|
<lines>
|
|
376
|
-
<line number="
|
|
381
|
+
<line number="264" hits="3"/>
|
|
377
382
|
</lines>
|
|
378
383
|
</method>
|
|
379
|
-
<method name="(
|
|
384
|
+
<method name="(anonymous_35)" hits="0" signature="()V">
|
|
380
385
|
<lines>
|
|
381
|
-
<line number="
|
|
386
|
+
<line number="266" hits="0"/>
|
|
382
387
|
</lines>
|
|
383
388
|
</method>
|
|
384
389
|
<method name="clearCount" hits="3" signature="()V">
|
|
385
390
|
<lines>
|
|
386
|
-
<line number="
|
|
391
|
+
<line number="273" hits="3"/>
|
|
387
392
|
</lines>
|
|
388
393
|
</method>
|
|
389
394
|
</methods>
|
|
390
395
|
<lines>
|
|
396
|
+
<line number="45" hits="1" branch="false"/>
|
|
397
|
+
<line number="46" hits="1" branch="false"/>
|
|
391
398
|
<line number="47" hits="1" branch="false"/>
|
|
392
|
-
<line number="
|
|
393
|
-
<line number="
|
|
394
|
-
<line number="77" hits="0" branch="false"/>
|
|
395
|
-
<line number="93" hits="5" branch="false"/>
|
|
399
|
+
<line number="75" hits="0" branch="false"/>
|
|
400
|
+
<line number="95" hits="5" branch="false"/>
|
|
396
401
|
<line number="104" hits="5" branch="false"/>
|
|
397
|
-
<line number="
|
|
398
|
-
<line number="
|
|
399
|
-
<line number="
|
|
400
|
-
<line number="
|
|
401
|
-
<line number="
|
|
402
|
-
<line number="121" hits="3" branch="false"/>
|
|
402
|
+
<line number="112" hits="9" branch="true" condition-coverage="100% (2/2)"/>
|
|
403
|
+
<line number="113" hits="1" branch="false"/>
|
|
404
|
+
<line number="116" hits="8" branch="false"/>
|
|
405
|
+
<line number="120" hits="3" branch="false"/>
|
|
406
|
+
<line number="121" hits="3" branch="true" condition-coverage="50% (1/2)"/>
|
|
403
407
|
<line number="122" hits="3" branch="false"/>
|
|
404
|
-
<line number="123" hits="3" branch="
|
|
405
|
-
<line number="124" hits="
|
|
406
|
-
<line number="
|
|
407
|
-
<line number="
|
|
408
|
-
<line number="
|
|
409
|
-
<line number="
|
|
408
|
+
<line number="123" hits="3" branch="false"/>
|
|
409
|
+
<line number="124" hits="3" branch="true" condition-coverage="100% (2/2)"/>
|
|
410
|
+
<line number="125" hits="2" branch="false"/>
|
|
411
|
+
<line number="131" hits="6" branch="false"/>
|
|
412
|
+
<line number="134" hits="4" branch="false"/>
|
|
413
|
+
<line number="139" hits="6" branch="false"/>
|
|
410
414
|
<line number="142" hits="4" branch="false"/>
|
|
411
415
|
<line number="143" hits="4" branch="false"/>
|
|
412
|
-
<line number="
|
|
413
|
-
<line number="147" hits="9" branch="
|
|
414
|
-
<line number="148" hits="
|
|
415
|
-
<line number="
|
|
416
|
-
<line number="
|
|
417
|
-
<line number="
|
|
418
|
-
<line number="
|
|
419
|
-
<line number="
|
|
420
|
-
<line number="
|
|
421
|
-
<line number="
|
|
422
|
-
<line number="169" hits="
|
|
423
|
-
<line number="
|
|
424
|
-
<line number="
|
|
425
|
-
<line number="
|
|
426
|
-
<line number="
|
|
427
|
-
<line number="
|
|
428
|
-
<line number="
|
|
429
|
-
<line number="
|
|
430
|
-
<line number="
|
|
431
|
-
<line number="
|
|
432
|
-
<line number="
|
|
433
|
-
<line number="
|
|
434
|
-
<line number="204" hits="0" branch="false"/>
|
|
435
|
-
<line number="205" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
436
|
-
<line number="206" hits="0" branch="false"/>
|
|
437
|
-
<line number="209" hits="1" branch="true" condition-coverage="100% (2/2)"/>
|
|
416
|
+
<line number="144" hits="4" branch="false"/>
|
|
417
|
+
<line number="147" hits="9" branch="false"/>
|
|
418
|
+
<line number="148" hits="9" branch="true" condition-coverage="100% (2/2)"/>
|
|
419
|
+
<line number="149" hits="24" branch="false"/>
|
|
420
|
+
<line number="152" hits="1" branch="false"/>
|
|
421
|
+
<line number="155" hits="5" branch="false"/>
|
|
422
|
+
<line number="158" hits="5" branch="false"/>
|
|
423
|
+
<line number="161" hits="5" branch="false"/>
|
|
424
|
+
<line number="164" hits="5" branch="true" condition-coverage="50% (1/2)"/>
|
|
425
|
+
<line number="167" hits="9" branch="false"/>
|
|
426
|
+
<line number="169" hits="9" branch="true" condition-coverage="100% (2/2)"/>
|
|
427
|
+
<line number="170" hits="1" branch="false"/>
|
|
428
|
+
<line number="173" hits="8" branch="false"/>
|
|
429
|
+
<line number="176" hits="6" branch="false"/>
|
|
430
|
+
<line number="179" hits="0" branch="false"/>
|
|
431
|
+
<line number="183" hits="6" branch="true" condition-coverage="100% (2/2)"/>
|
|
432
|
+
<line number="186" hits="5" branch="true" condition-coverage="50% (1/2)"/>
|
|
433
|
+
<line number="189" hits="5" branch="true" condition-coverage="50% (1/2)"/>
|
|
434
|
+
<line number="202" hits="1" branch="false"/>
|
|
435
|
+
<line number="205" hits="3" branch="false"/>
|
|
436
|
+
<line number="208" hits="3" branch="true" condition-coverage="100% (2/2)"/>
|
|
437
|
+
<line number="209" hits="1" branch="false"/>
|
|
438
438
|
<line number="210" hits="1" branch="false"/>
|
|
439
|
-
<line number="
|
|
440
|
-
<line number="214" hits="0" branch="false"/>
|
|
441
|
-
<line number="215" hits="0" branch="false"/>
|
|
439
|
+
<line number="212" hits="2" branch="false"/>
|
|
442
440
|
<line number="216" hits="0" branch="false"/>
|
|
443
|
-
<line number="
|
|
444
|
-
<line number="
|
|
445
|
-
<line number="
|
|
446
|
-
<line number="
|
|
447
|
-
<line number="
|
|
441
|
+
<line number="217" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
442
|
+
<line number="218" hits="0" branch="false"/>
|
|
443
|
+
<line number="221" hits="1" branch="true" condition-coverage="100% (2/2)"/>
|
|
444
|
+
<line number="222" hits="1" branch="false"/>
|
|
445
|
+
<line number="223" hits="1" branch="false"/>
|
|
446
|
+
<line number="226" hits="0" branch="false"/>
|
|
447
|
+
<line number="227" hits="0" branch="false"/>
|
|
448
448
|
<line number="228" hits="0" branch="false"/>
|
|
449
|
-
<line number="
|
|
450
|
-
<line number="231" hits="0" branch="false"/>
|
|
449
|
+
<line number="231" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
451
450
|
<line number="232" hits="0" branch="false"/>
|
|
452
|
-
<line number="
|
|
453
|
-
<line number="
|
|
454
|
-
<line number="238" hits="0" branch="false"/>
|
|
451
|
+
<line number="235" hits="0" branch="false"/>
|
|
452
|
+
<line number="236" hits="0" branch="false"/>
|
|
455
453
|
<line number="239" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
456
|
-
<line number="
|
|
454
|
+
<line number="240" hits="0" branch="false"/>
|
|
455
|
+
<line number="241" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
457
456
|
<line number="243" hits="0" branch="false"/>
|
|
458
|
-
<line number="
|
|
459
|
-
<line number="
|
|
457
|
+
<line number="244" hits="0" branch="false"/>
|
|
458
|
+
<line number="245" hits="0" branch="false"/>
|
|
459
|
+
<line number="249" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
460
460
|
<line number="250" hits="0" branch="false"/>
|
|
461
|
-
<line number="
|
|
462
|
-
<line number="253" hits="
|
|
463
|
-
<line number="
|
|
464
|
-
<line number="
|
|
465
|
-
<line number="
|
|
466
|
-
<line number="
|
|
461
|
+
<line number="251" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
462
|
+
<line number="253" hits="0" branch="false"/>
|
|
463
|
+
<line number="255" hits="0" branch="false"/>
|
|
464
|
+
<line number="258" hits="0" branch="false"/>
|
|
465
|
+
<line number="259" hits="0" branch="false"/>
|
|
466
|
+
<line number="262" hits="0" branch="false"/>
|
|
467
|
+
<line number="264" hits="3" branch="false"/>
|
|
468
|
+
<line number="265" hits="3" branch="false"/>
|
|
469
|
+
<line number="266" hits="3" branch="false"/>
|
|
470
|
+
<line number="267" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
471
|
+
<line number="270" hits="0" branch="false"/>
|
|
472
|
+
<line number="274" hits="3" branch="false"/>
|
|
467
473
|
</lines>
|
|
468
474
|
</class>
|
|
469
475
|
<class name="ListBoxOption.vue" filename="src/components/inputs/combobox/vue-components/ListBoxOption.vue" line-rate="1" branch-rate="0.5">
|
|
@@ -502,7 +502,7 @@ export default accordion;
|
|
|
502
502
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
503
503
|
Code coverage generated by
|
|
504
504
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
505
|
-
at
|
|
505
|
+
at Tue Feb 08 2022 12:20:41 GMT+0000 (Coordinated Universal Time)
|
|
506
506
|
</div>
|
|
507
507
|
</div>
|
|
508
508
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue Feb 08 2022 12:20:41 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -151,7 +151,7 @@ export default button;
|
|
|
151
151
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
152
152
|
Code coverage generated by
|
|
153
153
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
154
|
-
at
|
|
154
|
+
at Tue Feb 08 2022 12:20:41 GMT+0000 (Coordinated Universal Time)
|
|
155
155
|
</div>
|
|
156
156
|
</div>
|
|
157
157
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue Feb 08 2022 12:20:41 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -112,7 +112,7 @@ export default {
|
|
|
112
112
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
113
113
|
Code coverage generated by
|
|
114
114
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
115
|
-
at
|
|
115
|
+
at Tue Feb 08 2022 12:20:41 GMT+0000 (Coordinated Universal Time)
|
|
116
116
|
</div>
|
|
117
117
|
</div>
|
|
118
118
|
<script src="../../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue Feb 08 2022 12:20:41 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../../prettify.js"></script>
|