@zeedhi/teknisa-components-common 1.106.0 → 1.107.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/coverage/clover.xml +641 -550
- package/coverage/coverage-final.json +12 -10
- package/coverage/lcov-report/index.html +20 -20
- package/coverage/lcov-report/tests/__helpers__/component-event-helper.ts.html +1 -1
- package/coverage/lcov-report/tests/__helpers__/flush-promises-helper.ts.html +2 -2
- package/coverage/lcov-report/tests/__helpers__/get-child-helper.ts.html +1 -1
- package/coverage/lcov-report/tests/__helpers__/index.html +1 -1
- package/coverage/lcov-report/tests/__helpers__/index.ts.html +1 -1
- package/coverage/lcov-report/tests/__helpers__/mock-created-helper.ts.html +1 -1
- package/coverage/lcov.info +1248 -1081
- package/dist/tek-components-common.esm.js +246 -29
- package/dist/tek-components-common.umd.js +245 -28
- package/package.json +2 -2
- package/tests/unit/components/tek-datasource/memory-datasource.spec.ts +10 -0
- package/tests/unit/components/tek-datasource/rest-datasource.spec.ts +5 -3
- package/tests/unit/components/tek-grid/grid-filter-button.spec.ts +4 -10
- package/tests/unit/components/tek-grid/grid.spec.ts +451 -3
- package/types/components/tek-datasource/memory-datasource.d.ts +7 -1
- package/types/components/tek-datasource/rest-datasource.d.ts +7 -1
- package/types/components/tek-grid/grid.d.ts +46 -3
- package/types/components/tek-grid/interfaces.d.ts +19 -0
- package/types/error/incomplete-groups-error.d.ts +8 -0
- package/types/utils/extract-properties.d.ts +7 -0
- package/types/utils/index.d.ts +1 -0
package/coverage/clover.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1747407295493" clover="3.2.0">
|
|
3
|
+
<project timestamp="1747407295493" name="All files">
|
|
4
|
+
<metrics statements="1700" coveredstatements="1700" conditionals="743" coveredconditionals="743" methods="414" coveredmethods="414" elements="2857" coveredelements="2857" complexity="0" loc="1700" ncloc="1700" packages="22" files="47" classes="47"/>
|
|
5
5
|
<package name="src">
|
|
6
6
|
<metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
7
7
|
<file name="index.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/index.ts">
|
|
@@ -248,31 +248,31 @@
|
|
|
248
248
|
</file>
|
|
249
249
|
</package>
|
|
250
250
|
<package name="src.components.tek-datasource">
|
|
251
|
-
<metrics statements="
|
|
251
|
+
<metrics statements="201" coveredstatements="201" conditionals="132" coveredconditionals="132" methods="50" coveredmethods="50"/>
|
|
252
252
|
<file name="interfaces.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/components/tek-datasource/interfaces.ts">
|
|
253
253
|
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
254
254
|
<line num="19" count="30" type="stmt"/>
|
|
255
255
|
<line num="33" count="30" type="stmt"/>
|
|
256
256
|
</file>
|
|
257
257
|
<file name="memory-datasource.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/components/tek-datasource/memory-datasource.ts">
|
|
258
|
-
<metrics statements="
|
|
258
|
+
<metrics statements="121" coveredstatements="121" conditionals="89" coveredconditionals="89" methods="31" coveredmethods="31"/>
|
|
259
259
|
<line num="1" count="30" type="stmt"/>
|
|
260
260
|
<line num="4" count="30" type="stmt"/>
|
|
261
261
|
<line num="11" count="30" type="stmt"/>
|
|
262
|
-
<line num="21" count="
|
|
263
|
-
<line num="26" count="
|
|
264
|
-
<line num="31" count="
|
|
265
|
-
<line num="38" count="
|
|
266
|
-
<line num="40" count="
|
|
267
|
-
<line num="41" count="
|
|
268
|
-
<line num="42" count="
|
|
269
|
-
<line num="45" count="
|
|
270
|
-
<line num="46" count="
|
|
271
|
-
<line num="47" count="
|
|
272
|
-
<line num="48" count="
|
|
262
|
+
<line num="21" count="16" type="stmt"/>
|
|
263
|
+
<line num="26" count="16" type="stmt"/>
|
|
264
|
+
<line num="31" count="16" type="stmt"/>
|
|
265
|
+
<line num="38" count="16" type="stmt"/>
|
|
266
|
+
<line num="40" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
267
|
+
<line num="41" count="11" type="stmt"/>
|
|
268
|
+
<line num="42" count="11" type="stmt"/>
|
|
269
|
+
<line num="45" count="16" type="stmt"/>
|
|
270
|
+
<line num="46" count="16" type="stmt"/>
|
|
271
|
+
<line num="47" count="16" type="stmt"/>
|
|
272
|
+
<line num="48" count="16" type="stmt"/>
|
|
273
273
|
<line num="52" count="17" type="stmt"/>
|
|
274
274
|
<line num="53" count="17" type="stmt"/>
|
|
275
|
-
<line num="57" count="
|
|
275
|
+
<line num="57" count="83" type="cond" truecount="1" falsecount="0"/>
|
|
276
276
|
<line num="58" count="17" type="stmt"/>
|
|
277
277
|
<line num="59" count="17" type="stmt"/>
|
|
278
278
|
<line num="60" count="17" type="stmt"/>
|
|
@@ -294,90 +294,92 @@
|
|
|
294
294
|
<line num="92" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
295
295
|
<line num="93" count="1" type="stmt"/>
|
|
296
296
|
<line num="97" count="5" type="stmt"/>
|
|
297
|
-
<line num="
|
|
298
|
-
<line num="
|
|
299
|
-
<line num="
|
|
300
|
-
<line num="
|
|
297
|
+
<line num="106" count="1" type="stmt"/>
|
|
298
|
+
<line num="116" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
299
|
+
<line num="117" count="1" type="stmt"/>
|
|
300
|
+
<line num="118" count="1" type="stmt"/>
|
|
301
301
|
<line num="120" count="1" type="stmt"/>
|
|
302
|
-
<line num="
|
|
303
|
-
<line num="130" count="
|
|
304
|
-
<line num="
|
|
305
|
-
<line num="
|
|
306
|
-
<line num="
|
|
307
|
-
<line num="
|
|
308
|
-
<line num="
|
|
309
|
-
<line num="
|
|
310
|
-
<line num="
|
|
311
|
-
<line num="
|
|
312
|
-
<line num="
|
|
313
|
-
<line num="
|
|
314
|
-
<line num="
|
|
315
|
-
<line num="
|
|
316
|
-
<line num="
|
|
317
|
-
<line num="
|
|
318
|
-
<line num="
|
|
319
|
-
<line num="178" count="
|
|
320
|
-
<line num="
|
|
321
|
-
<line num="
|
|
322
|
-
<line num="
|
|
323
|
-
<line num="
|
|
324
|
-
<line num="
|
|
325
|
-
<line num="
|
|
326
|
-
<line num="
|
|
327
|
-
<line num="
|
|
328
|
-
<line num="
|
|
329
|
-
<line num="
|
|
330
|
-
<line num="
|
|
331
|
-
<line num="
|
|
332
|
-
<line num="
|
|
333
|
-
<line num="
|
|
334
|
-
<line num="
|
|
335
|
-
<line num="
|
|
336
|
-
<line num="
|
|
337
|
-
<line num="
|
|
338
|
-
<line num="
|
|
339
|
-
<line num="
|
|
340
|
-
<line num="
|
|
341
|
-
<line num="
|
|
342
|
-
<line num="
|
|
343
|
-
<line num="
|
|
344
|
-
<line num="
|
|
345
|
-
<line num="
|
|
346
|
-
<line num="
|
|
347
|
-
<line num="
|
|
348
|
-
<line num="
|
|
349
|
-
<line num="
|
|
350
|
-
<line num="
|
|
351
|
-
<line num="
|
|
352
|
-
<line num="
|
|
353
|
-
<line num="
|
|
354
|
-
<line num="
|
|
355
|
-
<line num="
|
|
356
|
-
<line num="
|
|
357
|
-
<line num="
|
|
358
|
-
<line num="
|
|
359
|
-
<line num="
|
|
360
|
-
<line num="
|
|
361
|
-
<line num="
|
|
362
|
-
<line num="
|
|
363
|
-
<line num="
|
|
364
|
-
<line num="
|
|
365
|
-
<line num="
|
|
366
|
-
<line num="
|
|
367
|
-
<line num="
|
|
368
|
-
<line num="
|
|
369
|
-
<line num="
|
|
370
|
-
<line num="
|
|
371
|
-
<line num="
|
|
372
|
-
<line num="
|
|
373
|
-
<line num="
|
|
374
|
-
<line num="
|
|
375
|
-
<line num="
|
|
376
|
-
<line num="306" count="
|
|
377
|
-
<line num="
|
|
302
|
+
<line num="129" count="1" type="stmt"/>
|
|
303
|
+
<line num="130" count="1" type="stmt"/>
|
|
304
|
+
<line num="139" count="6" type="stmt"/>
|
|
305
|
+
<line num="140" count="6" type="stmt"/>
|
|
306
|
+
<line num="141" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
307
|
+
<line num="142" count="3" type="stmt"/>
|
|
308
|
+
<line num="144" count="4" type="stmt"/>
|
|
309
|
+
<line num="147" count="6" type="stmt"/>
|
|
310
|
+
<line num="155" count="2" type="stmt"/>
|
|
311
|
+
<line num="156" count="2" type="stmt"/>
|
|
312
|
+
<line num="164" count="10" type="stmt"/>
|
|
313
|
+
<line num="165" count="10" type="stmt"/>
|
|
314
|
+
<line num="166" count="10" type="stmt"/>
|
|
315
|
+
<line num="167" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
316
|
+
<line num="168" count="2" type="cond" truecount="4" falsecount="0"/>
|
|
317
|
+
<line num="169" count="1" type="stmt"/>
|
|
318
|
+
<line num="173" count="1" type="stmt"/>
|
|
319
|
+
<line num="178" count="10" type="stmt"/>
|
|
320
|
+
<line num="187" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
321
|
+
<line num="189" count="8" type="cond" truecount="3" falsecount="0"/>
|
|
322
|
+
<line num="191" count="7" type="cond" truecount="5" falsecount="0"/>
|
|
323
|
+
<line num="199" count="1" type="stmt"/>
|
|
324
|
+
<line num="212" count="67" type="cond" truecount="2" falsecount="0"/>
|
|
325
|
+
<line num="213" count="12" type="stmt"/>
|
|
326
|
+
<line num="216" count="67" type="cond" truecount="3" falsecount="0"/>
|
|
327
|
+
<line num="217" count="217" type="stmt"/>
|
|
328
|
+
<line num="220" count="67" type="stmt"/>
|
|
329
|
+
<line num="221" count="8" type="stmt"/>
|
|
330
|
+
<line num="222" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
331
|
+
<line num="224" count="8" type="stmt"/>
|
|
332
|
+
<line num="226" count="8" type="stmt"/>
|
|
333
|
+
<line num="230" count="67" type="cond" truecount="2" falsecount="0"/>
|
|
334
|
+
<line num="234" count="187" type="stmt"/>
|
|
335
|
+
<line num="236" count="67" type="cond" truecount="3" falsecount="0"/>
|
|
336
|
+
<line num="237" count="18" type="stmt"/>
|
|
337
|
+
<line num="240" count="6" type="stmt"/>
|
|
338
|
+
<line num="241" count="2" type="stmt"/>
|
|
339
|
+
<line num="246" count="362" type="stmt"/>
|
|
340
|
+
<line num="251" count="217" type="stmt"/>
|
|
341
|
+
<line num="252" count="217" type="stmt"/>
|
|
342
|
+
<line num="253" count="223" type="stmt"/>
|
|
343
|
+
<line num="254" count="223" type="stmt"/>
|
|
344
|
+
<line num="255" count="234" type="cond" truecount="3" falsecount="0"/>
|
|
345
|
+
<line num="256" count="229" type="cond" truecount="3" falsecount="0"/>
|
|
346
|
+
<line num="258" count="227" type="stmt"/>
|
|
347
|
+
<line num="259" count="227" type="stmt"/>
|
|
348
|
+
<line num="260" count="227" type="cond" truecount="2" falsecount="0"/>
|
|
349
|
+
<line num="261" count="60" type="stmt"/>
|
|
350
|
+
<line num="263" count="30" type="cond" truecount="4" falsecount="0"/>
|
|
351
|
+
<line num="265" count="6" type="stmt"/>
|
|
352
|
+
<line num="266" count="6" type="stmt"/>
|
|
353
|
+
<line num="268" count="6" type="stmt"/>
|
|
354
|
+
<line num="269" count="6" type="stmt"/>
|
|
355
|
+
<line num="271" count="12" type="cond" truecount="6" falsecount="0"/>
|
|
356
|
+
<line num="273" count="12" type="stmt"/>
|
|
357
|
+
<line num="275" count="6" type="stmt"/>
|
|
358
|
+
<line num="278" count="197" type="stmt"/>
|
|
359
|
+
<line num="280" count="197" type="cond" truecount="9" falsecount="0"/>
|
|
360
|
+
<line num="282" count="41" type="stmt"/>
|
|
361
|
+
<line num="283" count="41" type="stmt"/>
|
|
362
|
+
<line num="285" count="6" type="stmt"/>
|
|
363
|
+
<line num="286" count="6" type="stmt"/>
|
|
364
|
+
<line num="288" count="84" type="stmt"/>
|
|
365
|
+
<line num="289" count="84" type="stmt"/>
|
|
366
|
+
<line num="291" count="6" type="stmt"/>
|
|
367
|
+
<line num="292" count="6" type="stmt"/>
|
|
368
|
+
<line num="294" count="12" type="cond" truecount="4" falsecount="0"/>
|
|
369
|
+
<line num="295" count="12" type="stmt"/>
|
|
370
|
+
<line num="297" count="12" type="cond" truecount="4" falsecount="0"/>
|
|
371
|
+
<line num="298" count="12" type="stmt"/>
|
|
372
|
+
<line num="300" count="12" type="cond" truecount="4" falsecount="0"/>
|
|
373
|
+
<line num="301" count="12" type="stmt"/>
|
|
374
|
+
<line num="303" count="12" type="cond" truecount="4" falsecount="0"/>
|
|
375
|
+
<line num="304" count="12" type="stmt"/>
|
|
376
|
+
<line num="306" count="12" type="stmt"/>
|
|
377
|
+
<line num="314" count="217" type="stmt"/>
|
|
378
|
+
<line num="318" count="42" type="stmt"/>
|
|
379
|
+
<line num="322" count="30" type="stmt"/>
|
|
378
380
|
</file>
|
|
379
381
|
<file name="rest-datasource.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/components/tek-datasource/rest-datasource.ts">
|
|
380
|
-
<metrics statements="
|
|
382
|
+
<metrics statements="78" coveredstatements="78" conditionals="43" coveredconditionals="43" methods="19" coveredmethods="19"/>
|
|
381
383
|
<line num="1" count="30" type="stmt"/>
|
|
382
384
|
<line num="4" count="30" type="stmt"/>
|
|
383
385
|
<line num="11" count="30" type="stmt"/>
|
|
@@ -418,42 +420,44 @@
|
|
|
418
420
|
<line num="95" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
419
421
|
<line num="96" count="1" type="stmt"/>
|
|
420
422
|
<line num="101" count="5" type="stmt"/>
|
|
421
|
-
<line num="
|
|
422
|
-
<line num="
|
|
423
|
-
<line num="
|
|
424
|
-
<line num="
|
|
423
|
+
<line num="110" count="2" type="stmt"/>
|
|
424
|
+
<line num="120" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
425
|
+
<line num="121" count="1" type="stmt"/>
|
|
426
|
+
<line num="122" count="1" type="stmt"/>
|
|
425
427
|
<line num="124" count="1" type="stmt"/>
|
|
426
|
-
<line num="
|
|
427
|
-
<line num="134" count="
|
|
428
|
-
<line num="
|
|
429
|
-
<line num="
|
|
430
|
-
<line num="
|
|
431
|
-
<line num="
|
|
432
|
-
<line num="
|
|
433
|
-
<line num="
|
|
434
|
-
<line num="
|
|
435
|
-
<line num="
|
|
436
|
-
<line num="
|
|
437
|
-
<line num="
|
|
438
|
-
<line num="
|
|
439
|
-
<line num="
|
|
440
|
-
<line num="
|
|
441
|
-
<line num="
|
|
442
|
-
<line num="
|
|
443
|
-
<line num="182" count="
|
|
444
|
-
<line num="
|
|
445
|
-
<line num="
|
|
446
|
-
<line num="195" count="
|
|
447
|
-
<line num="
|
|
448
|
-
<line num="
|
|
449
|
-
<line num="
|
|
450
|
-
<line num="
|
|
451
|
-
<line num="
|
|
452
|
-
<line num="
|
|
453
|
-
<line num="
|
|
454
|
-
<line num="
|
|
455
|
-
<line num="
|
|
456
|
-
<line num="
|
|
428
|
+
<line num="133" count="1" type="stmt"/>
|
|
429
|
+
<line num="134" count="1" type="stmt"/>
|
|
430
|
+
<line num="143" count="9" type="stmt"/>
|
|
431
|
+
<line num="144" count="9" type="stmt"/>
|
|
432
|
+
<line num="145" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
433
|
+
<line num="146" count="11" type="stmt"/>
|
|
434
|
+
<line num="148" count="5" type="stmt"/>
|
|
435
|
+
<line num="151" count="9" type="stmt"/>
|
|
436
|
+
<line num="159" count="2" type="stmt"/>
|
|
437
|
+
<line num="160" count="2" type="stmt"/>
|
|
438
|
+
<line num="168" count="13" type="stmt"/>
|
|
439
|
+
<line num="169" count="13" type="stmt"/>
|
|
440
|
+
<line num="170" count="13" type="stmt"/>
|
|
441
|
+
<line num="171" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
442
|
+
<line num="172" count="2" type="cond" truecount="4" falsecount="0"/>
|
|
443
|
+
<line num="173" count="1" type="stmt"/>
|
|
444
|
+
<line num="177" count="1" type="stmt"/>
|
|
445
|
+
<line num="182" count="13" type="stmt"/>
|
|
446
|
+
<line num="191" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
447
|
+
<line num="193" count="30" type="cond" truecount="3" falsecount="0"/>
|
|
448
|
+
<line num="195" count="33" type="cond" truecount="5" falsecount="0"/>
|
|
449
|
+
<line num="206" count="34" type="stmt"/>
|
|
450
|
+
<line num="207" count="68" type="cond" truecount="2" falsecount="0"/>
|
|
451
|
+
<line num="208" count="34" type="cond" truecount="2" falsecount="0"/>
|
|
452
|
+
<line num="209" count="16" type="stmt"/>
|
|
453
|
+
<line num="211" count="16" type="cond" truecount="3" falsecount="0"/>
|
|
454
|
+
<line num="214" count="34" type="cond" truecount="3" falsecount="0"/>
|
|
455
|
+
<line num="215" count="10" type="stmt"/>
|
|
456
|
+
<line num="218" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
457
|
+
<line num="219" count="4" type="stmt"/>
|
|
458
|
+
<line num="221" count="34" type="stmt"/>
|
|
459
|
+
<line num="225" count="1" type="stmt"/>
|
|
460
|
+
<line num="234" count="30" type="stmt"/>
|
|
457
461
|
</file>
|
|
458
462
|
</package>
|
|
459
463
|
<package name="src.components.tek-drag-grid">
|
|
@@ -489,7 +493,7 @@
|
|
|
489
493
|
</file>
|
|
490
494
|
</package>
|
|
491
495
|
<package name="src.components.tek-grid">
|
|
492
|
-
<metrics statements="
|
|
496
|
+
<metrics statements="810" coveredstatements="810" conditionals="366" coveredconditionals="366" methods="182" coveredmethods="182"/>
|
|
493
497
|
<file name="filter-helper.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/components/tek-grid/filter-helper.ts">
|
|
494
498
|
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="4"/>
|
|
495
499
|
<line num="1" count="30" type="stmt"/>
|
|
@@ -561,24 +565,24 @@
|
|
|
561
565
|
<line num="171" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
562
566
|
<line num="174" count="10" type="stmt"/>
|
|
563
567
|
<line num="181" count="10" type="stmt"/>
|
|
564
|
-
<line num="185" count="
|
|
565
|
-
<line num="189" count="
|
|
566
|
-
<line num="190" count="
|
|
567
|
-
<line num="191" count="
|
|
568
|
-
<line num="192" count="
|
|
569
|
-
<line num="197" count="
|
|
570
|
-
<line num="201" count="
|
|
571
|
-
<line num="202" count="
|
|
572
|
-
<line num="203" count="
|
|
568
|
+
<line num="185" count="1147" type="stmt"/>
|
|
569
|
+
<line num="189" count="293" type="stmt"/>
|
|
570
|
+
<line num="190" count="293" type="stmt"/>
|
|
571
|
+
<line num="191" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
572
|
+
<line num="192" count="46" type="stmt"/>
|
|
573
|
+
<line num="197" count="687" type="stmt"/>
|
|
574
|
+
<line num="201" count="292" type="stmt"/>
|
|
575
|
+
<line num="202" count="292" type="stmt"/>
|
|
576
|
+
<line num="203" count="292" type="cond" truecount="1" falsecount="0"/>
|
|
573
577
|
<line num="204" count="18" type="stmt"/>
|
|
574
|
-
<line num="209" count="
|
|
575
|
-
<line num="213" count="
|
|
576
|
-
<line num="214" count="
|
|
577
|
-
<line num="215" count="
|
|
578
|
+
<line num="209" count="423" type="stmt"/>
|
|
579
|
+
<line num="213" count="290" type="stmt"/>
|
|
580
|
+
<line num="214" count="290" type="stmt"/>
|
|
581
|
+
<line num="215" count="290" type="cond" truecount="1" falsecount="0"/>
|
|
578
582
|
<line num="216" count="1" type="stmt"/>
|
|
579
|
-
<line num="221" count="
|
|
580
|
-
<line num="225" count="
|
|
581
|
-
<line num="230" count="
|
|
583
|
+
<line num="221" count="650" type="cond" truecount="2" falsecount="0"/>
|
|
584
|
+
<line num="225" count="873" type="stmt"/>
|
|
585
|
+
<line num="230" count="65" type="stmt"/>
|
|
582
586
|
<line num="231" count="1" type="stmt"/>
|
|
583
587
|
</file>
|
|
584
588
|
<file name="grid-columns-button-controller.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/components/tek-grid/grid-columns-button-controller.ts">
|
|
@@ -771,378 +775,447 @@
|
|
|
771
775
|
<line num="426" count="2" type="stmt"/>
|
|
772
776
|
</file>
|
|
773
777
|
<file name="grid.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/components/tek-grid/grid.ts">
|
|
774
|
-
<metrics statements="
|
|
778
|
+
<metrics statements="440" coveredstatements="440" conditionals="187" coveredconditionals="187" methods="101" coveredmethods="101"/>
|
|
775
779
|
<line num="1" count="30" type="stmt"/>
|
|
776
|
-
<line num="
|
|
777
|
-
<line num="13" count="30" type="stmt"/>
|
|
778
|
-
<line num="14" count="30" type="stmt"/>
|
|
780
|
+
<line num="9" count="30" type="stmt"/>
|
|
779
781
|
<line num="15" count="30" type="stmt"/>
|
|
780
|
-
<line num="
|
|
781
|
-
<line num="
|
|
782
|
-
<line num="
|
|
783
|
-
<line num="
|
|
784
|
-
<line num="
|
|
785
|
-
<line num="
|
|
786
|
-
<line num="
|
|
787
|
-
<line num="
|
|
788
|
-
<line num="
|
|
789
|
-
<line num="
|
|
790
|
-
<line num="
|
|
791
|
-
<line num="
|
|
792
|
-
<line num="
|
|
793
|
-
<line num="
|
|
794
|
-
<line num="
|
|
795
|
-
<line num="
|
|
796
|
-
<line num="
|
|
797
|
-
<line num="
|
|
798
|
-
<line num="
|
|
799
|
-
<line num="
|
|
800
|
-
<line num="
|
|
801
|
-
<line num="
|
|
802
|
-
<line num="
|
|
803
|
-
<line num="
|
|
804
|
-
<line num="
|
|
805
|
-
<line num="
|
|
806
|
-
<line num="181" count="
|
|
807
|
-
<line num="183" count="
|
|
808
|
-
<line num="185" count="
|
|
809
|
-
<line num="
|
|
810
|
-
<line num="
|
|
811
|
-
<line num="
|
|
812
|
-
<line num="
|
|
813
|
-
<line num="205" count="
|
|
814
|
-
<line num="
|
|
815
|
-
<line num="
|
|
816
|
-
<line num="
|
|
817
|
-
<line num="
|
|
818
|
-
<line num="
|
|
819
|
-
<line num="
|
|
820
|
-
<line num="
|
|
821
|
-
<line num="
|
|
822
|
-
<line num="
|
|
823
|
-
<line num="
|
|
824
|
-
<line num="
|
|
825
|
-
<line num="
|
|
826
|
-
<line num="
|
|
827
|
-
<line num="
|
|
828
|
-
<line num="
|
|
829
|
-
<line num="
|
|
830
|
-
<line num="
|
|
831
|
-
<line num="
|
|
832
|
-
<line num="
|
|
833
|
-
<line num="
|
|
834
|
-
<line num="
|
|
835
|
-
<line num="
|
|
836
|
-
<line num="
|
|
837
|
-
<line num="
|
|
838
|
-
<line num="
|
|
839
|
-
<line num="
|
|
840
|
-
<line num="
|
|
841
|
-
<line num="
|
|
842
|
-
<line num="
|
|
843
|
-
<line num="
|
|
844
|
-
<line num="
|
|
845
|
-
<line num="326" count="
|
|
846
|
-
<line num="
|
|
847
|
-
<line num="
|
|
848
|
-
<line num="
|
|
849
|
-
<line num="
|
|
850
|
-
<line num="
|
|
851
|
-
<line num="
|
|
852
|
-
<line num="
|
|
853
|
-
<line num="
|
|
854
|
-
<line num="
|
|
855
|
-
<line num="
|
|
856
|
-
<line num="
|
|
857
|
-
<line num="370" count="
|
|
858
|
-
<line num="
|
|
859
|
-
<line num="
|
|
860
|
-
<line num="
|
|
861
|
-
<line num="
|
|
862
|
-
<line num="
|
|
863
|
-
<line num="
|
|
864
|
-
<line num="
|
|
865
|
-
<line num="
|
|
866
|
-
<line num="
|
|
867
|
-
<line num="
|
|
868
|
-
<line num="
|
|
782
|
+
<line num="16" count="30" type="stmt"/>
|
|
783
|
+
<line num="17" count="30" type="stmt"/>
|
|
784
|
+
<line num="23" count="30" type="stmt"/>
|
|
785
|
+
<line num="24" count="30" type="stmt"/>
|
|
786
|
+
<line num="25" count="30" type="stmt"/>
|
|
787
|
+
<line num="39" count="30" type="stmt"/>
|
|
788
|
+
<line num="42" count="30" type="stmt"/>
|
|
789
|
+
<line num="44" count="155" type="stmt"/>
|
|
790
|
+
<line num="47" count="155" type="stmt"/>
|
|
791
|
+
<line num="50" count="155" type="stmt"/>
|
|
792
|
+
<line num="53" count="155" type="stmt"/>
|
|
793
|
+
<line num="56" count="155" type="stmt"/>
|
|
794
|
+
<line num="59" count="155" type="stmt"/>
|
|
795
|
+
<line num="62" count="155" type="stmt"/>
|
|
796
|
+
<line num="65" count="155" type="stmt"/>
|
|
797
|
+
<line num="68" count="155" type="stmt"/>
|
|
798
|
+
<line num="71" count="155" type="stmt"/>
|
|
799
|
+
<line num="74" count="155" type="stmt"/>
|
|
800
|
+
<line num="83" count="155" type="stmt"/>
|
|
801
|
+
<line num="89" count="155" type="stmt"/>
|
|
802
|
+
<line num="95" count="155" type="stmt"/>
|
|
803
|
+
<line num="104" count="155" type="stmt"/>
|
|
804
|
+
<line num="120" count="155" type="stmt"/>
|
|
805
|
+
<line num="125" count="155" type="stmt"/>
|
|
806
|
+
<line num="130" count="155" type="stmt"/>
|
|
807
|
+
<line num="176" count="155" type="stmt"/>
|
|
808
|
+
<line num="181" count="155" type="stmt"/>
|
|
809
|
+
<line num="183" count="155" type="stmt"/>
|
|
810
|
+
<line num="185" count="155" type="stmt"/>
|
|
811
|
+
<line num="187" count="155" type="stmt"/>
|
|
812
|
+
<line num="189" count="155" type="stmt"/>
|
|
813
|
+
<line num="191" count="155" type="stmt"/>
|
|
814
|
+
<line num="201" count="155" type="stmt"/>
|
|
815
|
+
<line num="205" count="155" type="cond" truecount="2" falsecount="0"/>
|
|
816
|
+
<line num="207" count="155" type="stmt"/>
|
|
817
|
+
<line num="209" count="155" type="stmt"/>
|
|
818
|
+
<line num="211" count="155" type="stmt"/>
|
|
819
|
+
<line num="218" count="155" type="stmt"/>
|
|
820
|
+
<line num="219" count="155" type="stmt"/>
|
|
821
|
+
<line num="220" count="155" type="stmt"/>
|
|
822
|
+
<line num="225" count="155" type="stmt"/>
|
|
823
|
+
<line num="230" count="155" type="stmt"/>
|
|
824
|
+
<line num="235" count="155" type="stmt"/>
|
|
825
|
+
<line num="240" count="155" type="stmt"/>
|
|
826
|
+
<line num="245" count="155" type="stmt"/>
|
|
827
|
+
<line num="250" count="155" type="stmt"/>
|
|
828
|
+
<line num="255" count="155" type="stmt"/>
|
|
829
|
+
<line num="260" count="155" type="stmt"/>
|
|
830
|
+
<line num="265" count="155" type="stmt"/>
|
|
831
|
+
<line num="270" count="155" type="stmt"/>
|
|
832
|
+
<line num="275" count="155" type="stmt"/>
|
|
833
|
+
<line num="280" count="155" type="stmt"/>
|
|
834
|
+
<line num="285" count="155" type="stmt"/>
|
|
835
|
+
<line num="290" count="155" type="stmt"/>
|
|
836
|
+
<line num="295" count="155" type="stmt"/>
|
|
837
|
+
<line num="300" count="155" type="cond" truecount="2" falsecount="0"/>
|
|
838
|
+
<line num="301" count="155" type="stmt"/>
|
|
839
|
+
<line num="306" count="155" type="stmt"/>
|
|
840
|
+
<line num="311" count="155" type="stmt"/>
|
|
841
|
+
<line num="316" count="155" type="stmt"/>
|
|
842
|
+
<line num="321" count="155" type="stmt"/>
|
|
843
|
+
<line num="322" count="155" type="stmt"/>
|
|
844
|
+
<line num="323" count="155" type="stmt"/>
|
|
845
|
+
<line num="324" count="155" type="stmt"/>
|
|
846
|
+
<line num="325" count="155" type="cond" truecount="2" falsecount="0"/>
|
|
847
|
+
<line num="326" count="155" type="stmt"/>
|
|
848
|
+
<line num="328" count="155" type="cond" truecount="1" falsecount="0"/>
|
|
849
|
+
<line num="329" count="5" type="stmt"/>
|
|
850
|
+
<line num="332" count="155" type="stmt"/>
|
|
851
|
+
<line num="341" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
852
|
+
<line num="342" count="1" type="stmt"/>
|
|
853
|
+
<line num="345" count="1" type="stmt"/>
|
|
854
|
+
<line num="354" count="1" type="stmt"/>
|
|
855
|
+
<line num="357" count="1" type="stmt"/>
|
|
856
|
+
<line num="358" count="1" type="stmt"/>
|
|
857
|
+
<line num="366" count="155" type="stmt"/>
|
|
858
|
+
<line num="368" count="155" type="stmt"/>
|
|
859
|
+
<line num="370" count="155" type="stmt"/>
|
|
860
|
+
<line num="371" count="155" type="stmt"/>
|
|
861
|
+
<line num="372" count="155" type="stmt"/>
|
|
862
|
+
<line num="376" count="155" type="stmt"/>
|
|
863
|
+
<line num="379" count="155" type="stmt"/>
|
|
864
|
+
<line num="382" count="155" type="cond" truecount="1" falsecount="0"/>
|
|
865
|
+
<line num="383" count="61" type="stmt"/>
|
|
866
|
+
<line num="386" count="94" type="cond" truecount="3" falsecount="0"/>
|
|
867
|
+
<line num="387" count="1" type="stmt"/>
|
|
868
|
+
<line num="388" count="1" type="stmt"/>
|
|
869
|
+
<line num="389" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
870
|
+
<line num="392" count="93" type="stmt"/>
|
|
869
871
|
<line num="396" count="43" type="stmt"/>
|
|
870
|
-
<line num="
|
|
871
|
-
<line num="
|
|
872
|
-
<line num="
|
|
873
|
-
<line num="
|
|
874
|
-
<line num="
|
|
875
|
-
<line num="
|
|
876
|
-
<line num="
|
|
877
|
-
<line num="422" count="
|
|
878
|
-
<line num="
|
|
872
|
+
<line num="397" count="43" type="stmt"/>
|
|
873
|
+
<line num="401" count="43" type="cond" truecount="1" falsecount="0"/>
|
|
874
|
+
<line num="402" count="43" type="stmt"/>
|
|
875
|
+
<line num="407" count="43" type="stmt"/>
|
|
876
|
+
<line num="415" count="30" type="stmt"/>
|
|
877
|
+
<line num="416" count="30" type="stmt"/>
|
|
878
|
+
<line num="418" count="30" type="stmt"/>
|
|
879
|
+
<line num="422" count="3" type="stmt"/>
|
|
880
|
+
<line num="423" count="3" type="stmt"/>
|
|
879
881
|
<line num="427" count="1" type="stmt"/>
|
|
882
|
+
<line num="428" count="1" type="stmt"/>
|
|
883
|
+
<line num="432" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
880
884
|
<line num="433" count="1" type="stmt"/>
|
|
881
|
-
<line num="
|
|
882
|
-
<line num="
|
|
883
|
-
<line num="
|
|
884
|
-
<line num="
|
|
885
|
-
<line num="
|
|
886
|
-
<line num="
|
|
887
|
-
<line num="
|
|
888
|
-
<line num="
|
|
889
|
-
<line num="
|
|
890
|
-
<line num="
|
|
891
|
-
<line num="
|
|
892
|
-
<line num="
|
|
893
|
-
<line num="
|
|
894
|
-
<line num="
|
|
895
|
-
<line num="
|
|
896
|
-
<line num="
|
|
897
|
-
<line num="
|
|
898
|
-
<line num="
|
|
899
|
-
<line num="
|
|
900
|
-
<line num="
|
|
901
|
-
<line num="
|
|
902
|
-
<line num="
|
|
903
|
-
<line num="
|
|
904
|
-
<line num="
|
|
905
|
-
<line num="
|
|
906
|
-
<line num="
|
|
907
|
-
<line num="
|
|
908
|
-
<line num="
|
|
909
|
-
<line num="
|
|
910
|
-
<line num="511" count="2" type="stmt"/>
|
|
911
|
-
<line num="513" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
912
|
-
<line num="515" count="1" type="stmt"/>
|
|
885
|
+
<line num="439" count="1" type="stmt"/>
|
|
886
|
+
<line num="447" count="255" type="stmt"/>
|
|
887
|
+
<line num="451" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
888
|
+
<line num="455" count="1" type="stmt"/>
|
|
889
|
+
<line num="456" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
890
|
+
<line num="458" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
891
|
+
<line num="462" count="7" type="stmt"/>
|
|
892
|
+
<line num="463" count="6" type="stmt"/>
|
|
893
|
+
<line num="464" count="1" type="stmt"/>
|
|
894
|
+
<line num="475" count="7" type="stmt"/>
|
|
895
|
+
<line num="476" count="7" type="stmt"/>
|
|
896
|
+
<line num="477" count="6" type="stmt"/>
|
|
897
|
+
<line num="479" count="1" type="stmt"/>
|
|
898
|
+
<line num="481" count="7" type="stmt"/>
|
|
899
|
+
<line num="485" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
900
|
+
<line num="486" count="7" type="stmt"/>
|
|
901
|
+
<line num="487" count="7" type="stmt"/>
|
|
902
|
+
<line num="488" count="7" type="stmt"/>
|
|
903
|
+
<line num="490" count="7" type="cond" truecount="3" falsecount="0"/>
|
|
904
|
+
<line num="491" count="3" type="stmt"/>
|
|
905
|
+
<line num="495" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
906
|
+
<line num="499" count="3" type="stmt"/>
|
|
907
|
+
<line num="501" count="4" type="stmt"/>
|
|
908
|
+
<line num="503" count="4" type="stmt"/>
|
|
909
|
+
<line num="504" count="4" type="stmt"/>
|
|
910
|
+
<line num="506" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
911
|
+
<line num="507" count="1" type="stmt"/>
|
|
912
|
+
<line num="510" count="1" type="stmt"/>
|
|
913
|
+
<line num="513" count="2" type="stmt"/>
|
|
913
914
|
<line num="516" count="2" type="stmt"/>
|
|
914
|
-
<line num="
|
|
915
|
+
<line num="517" count="2" type="stmt"/>
|
|
916
|
+
<line num="519" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
915
917
|
<line num="521" count="1" type="stmt"/>
|
|
916
918
|
<line num="522" count="2" type="stmt"/>
|
|
917
|
-
<line num="
|
|
918
|
-
<line num="
|
|
919
|
+
<line num="525" count="1" type="stmt"/>
|
|
920
|
+
<line num="527" count="1" type="stmt"/>
|
|
921
|
+
<line num="528" count="2" type="stmt"/>
|
|
919
922
|
<line num="529" count="2" type="stmt"/>
|
|
920
|
-
<line num="
|
|
921
|
-
<line num="535" count="
|
|
922
|
-
<line num="
|
|
923
|
-
<line num="
|
|
924
|
-
<line num="
|
|
925
|
-
<line num="544" count="
|
|
926
|
-
<line num="545" count="
|
|
927
|
-
<line num="
|
|
928
|
-
<line num="
|
|
929
|
-
<line num="
|
|
930
|
-
<line num="
|
|
931
|
-
<line num="
|
|
932
|
-
<line num="
|
|
933
|
-
<line num="
|
|
934
|
-
<line num="
|
|
935
|
-
<line num="
|
|
936
|
-
<line num="
|
|
937
|
-
<line num="
|
|
938
|
-
<line num="
|
|
939
|
-
<line num="
|
|
940
|
-
<line num="
|
|
941
|
-
<line num="
|
|
942
|
-
<line num="
|
|
943
|
-
<line num="
|
|
944
|
-
<line num="
|
|
945
|
-
<line num="
|
|
946
|
-
<line num="
|
|
947
|
-
<line num="
|
|
948
|
-
<line num="
|
|
949
|
-
<line num="
|
|
950
|
-
<line num="
|
|
951
|
-
<line num="
|
|
952
|
-
<line num="
|
|
953
|
-
<line num="
|
|
954
|
-
<line num="
|
|
955
|
-
<line num="
|
|
956
|
-
<line num="
|
|
957
|
-
<line num="
|
|
958
|
-
<line num="
|
|
959
|
-
<line num="
|
|
960
|
-
<line num="
|
|
961
|
-
<line num="
|
|
962
|
-
<line num="
|
|
963
|
-
<line num="
|
|
964
|
-
<line num="
|
|
965
|
-
<line num="
|
|
966
|
-
<line num="657" count="
|
|
967
|
-
<line num="
|
|
968
|
-
<line num="
|
|
969
|
-
<line num="
|
|
970
|
-
<line num="
|
|
971
|
-
<line num="
|
|
972
|
-
<line num="
|
|
973
|
-
<line num="
|
|
974
|
-
<line num="
|
|
975
|
-
<line num="676" count="
|
|
976
|
-
<line num="677" count="
|
|
977
|
-
<line num="
|
|
978
|
-
<line num="
|
|
979
|
-
<line num="
|
|
980
|
-
<line num="
|
|
981
|
-
<line num="
|
|
982
|
-
<line num="
|
|
983
|
-
<line num="
|
|
984
|
-
<line num="
|
|
985
|
-
<line num="
|
|
986
|
-
<line num="
|
|
987
|
-
<line num="
|
|
988
|
-
<line num="
|
|
989
|
-
<line num="
|
|
990
|
-
<line num="
|
|
991
|
-
<line num="
|
|
992
|
-
<line num="
|
|
993
|
-
<line num="
|
|
994
|
-
<line num="
|
|
995
|
-
<line num="
|
|
996
|
-
<line num="
|
|
997
|
-
<line num="
|
|
998
|
-
<line num="
|
|
999
|
-
<line num="
|
|
1000
|
-
<line num="
|
|
1001
|
-
<line num="
|
|
1002
|
-
<line num="
|
|
1003
|
-
<line num="
|
|
1004
|
-
<line num="
|
|
1005
|
-
<line num="
|
|
1006
|
-
<line num="
|
|
1007
|
-
<line num="
|
|
1008
|
-
<line num="
|
|
1009
|
-
<line num="
|
|
1010
|
-
<line num="
|
|
1011
|
-
<line num="
|
|
1012
|
-
<line num="
|
|
1013
|
-
<line num="
|
|
1014
|
-
<line num="
|
|
1015
|
-
<line num="
|
|
1016
|
-
<line num="
|
|
1017
|
-
<line num="
|
|
1018
|
-
<line num="
|
|
1019
|
-
<line num="
|
|
1020
|
-
<line num="
|
|
1021
|
-
<line num="
|
|
1022
|
-
<line num="
|
|
1023
|
-
<line num="
|
|
1024
|
-
<line num="
|
|
1025
|
-
<line num="
|
|
1026
|
-
<line num="
|
|
1027
|
-
<line num="
|
|
1028
|
-
<line num="
|
|
1029
|
-
<line num="828" count="
|
|
1030
|
-
<line num="829" count="
|
|
1031
|
-
<line num="
|
|
1032
|
-
<line num="
|
|
1033
|
-
<line num="
|
|
1034
|
-
<line num="
|
|
1035
|
-
<line num="
|
|
1036
|
-
<line num="
|
|
1037
|
-
<line num="
|
|
1038
|
-
<line num="
|
|
1039
|
-
<line num="
|
|
1040
|
-
<line num="
|
|
1041
|
-
<line num="
|
|
1042
|
-
<line num="
|
|
1043
|
-
<line num="
|
|
1044
|
-
<line num="
|
|
1045
|
-
<line num="
|
|
1046
|
-
<line num="870" count="
|
|
1047
|
-
<line num="
|
|
1048
|
-
<line num="
|
|
1049
|
-
<line num="
|
|
1050
|
-
<line num="
|
|
1051
|
-
<line num="
|
|
1052
|
-
<line num="
|
|
1053
|
-
<line num="
|
|
1054
|
-
<line num="
|
|
1055
|
-
<line num="
|
|
1056
|
-
<line num="
|
|
1057
|
-
<line num="
|
|
1058
|
-
<line num="
|
|
1059
|
-
<line num="
|
|
1060
|
-
<line num="
|
|
1061
|
-
<line num="
|
|
1062
|
-
<line num="
|
|
1063
|
-
<line num="
|
|
1064
|
-
<line num="
|
|
1065
|
-
<line num="
|
|
1066
|
-
<line num="909" count="
|
|
1067
|
-
<line num="910" count="
|
|
1068
|
-
<line num="
|
|
1069
|
-
<line num="
|
|
1070
|
-
<line num="
|
|
1071
|
-
<line num="
|
|
1072
|
-
<line num="
|
|
1073
|
-
<line num="
|
|
1074
|
-
<line num="927" count="
|
|
1075
|
-
<line num="
|
|
1076
|
-
<line num="
|
|
1077
|
-
<line num="
|
|
1078
|
-
<line num="
|
|
1079
|
-
<line num="
|
|
1080
|
-
<line num="
|
|
1081
|
-
<line num="
|
|
1082
|
-
<line num="945" count="
|
|
1083
|
-
<line num="
|
|
1084
|
-
<line num="
|
|
1085
|
-
<line num="
|
|
1086
|
-
<line num="
|
|
1087
|
-
<line num="
|
|
1088
|
-
<line num="
|
|
1089
|
-
<line num="
|
|
1090
|
-
<line num="
|
|
1091
|
-
<line num="
|
|
1092
|
-
<line num="
|
|
1093
|
-
<line num="
|
|
1094
|
-
<line num="
|
|
1095
|
-
<line num="
|
|
1096
|
-
<line num="
|
|
1097
|
-
<line num="
|
|
1098
|
-
<line num="
|
|
1099
|
-
<line num="
|
|
1100
|
-
<line num="
|
|
1101
|
-
<line num="
|
|
1102
|
-
<line num="
|
|
1103
|
-
<line num="
|
|
1104
|
-
<line num="
|
|
1105
|
-
<line num="
|
|
1106
|
-
<line num="
|
|
1107
|
-
<line num="
|
|
1108
|
-
<line num="
|
|
1109
|
-
<line num="
|
|
1110
|
-
<line num="
|
|
1111
|
-
<line num="
|
|
1112
|
-
<line num="1005" count="
|
|
1113
|
-
<line num="
|
|
1114
|
-
<line num="
|
|
1115
|
-
<line num="
|
|
1116
|
-
<line num="
|
|
1117
|
-
<line num="
|
|
1118
|
-
<line num="
|
|
1119
|
-
<line num="
|
|
1120
|
-
<line num="
|
|
1121
|
-
<line num="
|
|
1122
|
-
<line num="
|
|
1123
|
-
<line num="
|
|
1124
|
-
<line num="
|
|
1125
|
-
<line num="
|
|
1126
|
-
<line num="
|
|
1127
|
-
<line num="
|
|
1128
|
-
<line num="
|
|
1129
|
-
<line num="
|
|
1130
|
-
<line num="
|
|
1131
|
-
<line num="
|
|
1132
|
-
<line num="
|
|
1133
|
-
<line num="
|
|
1134
|
-
<line num="
|
|
1135
|
-
<line num="
|
|
1136
|
-
<line num="
|
|
1137
|
-
<line num="
|
|
1138
|
-
<line num="
|
|
1139
|
-
<line num="
|
|
1140
|
-
<line num="
|
|
1141
|
-
<line num="
|
|
1142
|
-
<line num="
|
|
1143
|
-
<line num="
|
|
1144
|
-
<line num="
|
|
1145
|
-
<line num="
|
|
923
|
+
<line num="530" count="2" type="stmt"/>
|
|
924
|
+
<line num="535" count="2" type="stmt"/>
|
|
925
|
+
<line num="537" count="2" type="stmt"/>
|
|
926
|
+
<line num="541" count="3" type="stmt"/>
|
|
927
|
+
<line num="542" count="3" type="stmt"/>
|
|
928
|
+
<line num="544" count="2" type="stmt"/>
|
|
929
|
+
<line num="545" count="2" type="stmt"/>
|
|
930
|
+
<line num="550" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
931
|
+
<line num="551" count="1" type="stmt"/>
|
|
932
|
+
<line num="554" count="6" type="stmt"/>
|
|
933
|
+
<line num="555" count="6" type="stmt"/>
|
|
934
|
+
<line num="570" count="4" type="stmt"/>
|
|
935
|
+
<line num="572" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
936
|
+
<line num="573" count="1" type="stmt"/>
|
|
937
|
+
<line num="574" count="1" type="stmt"/>
|
|
938
|
+
<line num="577" count="1" type="stmt"/>
|
|
939
|
+
<line num="581" count="155" type="stmt"/>
|
|
940
|
+
<line num="583" count="155" type="stmt"/>
|
|
941
|
+
<line num="592" count="155" type="stmt"/>
|
|
942
|
+
<line num="595" count="17" type="stmt"/>
|
|
943
|
+
<line num="598" count="155" type="stmt"/>
|
|
944
|
+
<line num="604" count="28" type="stmt"/>
|
|
945
|
+
<line num="605" count="28" type="stmt"/>
|
|
946
|
+
<line num="607" count="28" type="stmt"/>
|
|
947
|
+
<line num="611" count="30" type="stmt"/>
|
|
948
|
+
<line num="612" count="30" type="stmt"/>
|
|
949
|
+
<line num="614" count="30" type="stmt"/>
|
|
950
|
+
<line num="615" count="30" type="stmt"/>
|
|
951
|
+
<line num="616" count="30" type="stmt"/>
|
|
952
|
+
<line num="617" count="30" type="stmt"/>
|
|
953
|
+
<line num="618" count="30" type="stmt"/>
|
|
954
|
+
<line num="622" count="30" type="stmt"/>
|
|
955
|
+
<line num="623" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
956
|
+
<line num="627" count="22" type="stmt"/>
|
|
957
|
+
<line num="630" count="27" type="stmt"/>
|
|
958
|
+
<line num="634" count="155" type="stmt"/>
|
|
959
|
+
<line num="636" count="28" type="stmt"/>
|
|
960
|
+
<line num="642" count="28" type="stmt"/>
|
|
961
|
+
<line num="644" count="28" type="stmt"/>
|
|
962
|
+
<line num="646" count="98" type="stmt"/>
|
|
963
|
+
<line num="647" count="32" type="stmt"/>
|
|
964
|
+
<line num="648" count="28" type="cond" truecount="2" falsecount="0"/>
|
|
965
|
+
<line num="652" count="23" type="cond" truecount="1" falsecount="0"/>
|
|
966
|
+
<line num="653" count="22" type="stmt"/>
|
|
967
|
+
<line num="654" count="32" type="stmt"/>
|
|
968
|
+
<line num="656" count="22" type="stmt"/>
|
|
969
|
+
<line num="657" count="8" type="stmt"/>
|
|
970
|
+
<line num="660" count="22" type="stmt"/>
|
|
971
|
+
<line num="663" count="23" type="stmt"/>
|
|
972
|
+
<line num="665" count="5" type="stmt"/>
|
|
973
|
+
<line num="666" count="5" type="stmt"/>
|
|
974
|
+
<line num="669" count="28" type="cond" truecount="3" falsecount="0"/>
|
|
975
|
+
<line num="670" count="27" type="stmt"/>
|
|
976
|
+
<line num="673" count="28" type="cond" truecount="3" falsecount="0"/>
|
|
977
|
+
<line num="674" count="1" type="stmt"/>
|
|
978
|
+
<line num="676" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
979
|
+
<line num="677" count="1" type="stmt"/>
|
|
980
|
+
<line num="686" count="22" type="stmt"/>
|
|
981
|
+
<line num="687" count="22" type="stmt"/>
|
|
982
|
+
<line num="688" count="22" type="stmt"/>
|
|
983
|
+
<line num="690" count="22" type="stmt"/>
|
|
984
|
+
<line num="691" count="103" type="stmt"/>
|
|
985
|
+
<line num="692" count="103" type="stmt"/>
|
|
986
|
+
<line num="693" count="148" type="stmt"/>
|
|
987
|
+
<line num="694" count="148" type="cond" truecount="3" falsecount="0"/>
|
|
988
|
+
<line num="695" count="77" type="cond" truecount="1" falsecount="0"/>
|
|
989
|
+
<line num="696" count="56" type="stmt"/>
|
|
990
|
+
<line num="698" count="77" type="stmt"/>
|
|
991
|
+
<line num="700" count="77" type="stmt"/>
|
|
992
|
+
<line num="701" count="77" type="stmt"/>
|
|
993
|
+
<line num="702" count="77" type="stmt"/>
|
|
994
|
+
<line num="706" count="103" type="stmt"/>
|
|
995
|
+
<line num="707" count="148" type="stmt"/>
|
|
996
|
+
<line num="710" count="103" type="stmt"/>
|
|
997
|
+
<line num="711" count="148" type="stmt"/>
|
|
998
|
+
<line num="714" count="103" type="stmt"/>
|
|
999
|
+
<line num="719" count="103" type="stmt"/>
|
|
1000
|
+
<line num="722" count="22" type="cond" truecount="1" falsecount="0"/>
|
|
1001
|
+
<line num="723" count="21" type="stmt"/>
|
|
1002
|
+
<line num="725" count="21" type="cond" truecount="1" falsecount="0"/>
|
|
1003
|
+
<line num="726" count="20" type="stmt"/>
|
|
1004
|
+
<line num="732" count="52" type="stmt"/>
|
|
1005
|
+
<line num="733" count="52" type="stmt"/>
|
|
1006
|
+
<line num="734" count="31" type="stmt"/>
|
|
1007
|
+
<line num="742" count="31" type="stmt"/>
|
|
1008
|
+
<line num="744" count="31" type="stmt"/>
|
|
1009
|
+
<line num="749" count="80" type="stmt"/>
|
|
1010
|
+
<line num="750" count="291" type="cond" truecount="2" falsecount="0"/>
|
|
1011
|
+
<line num="752" count="80" type="stmt"/>
|
|
1012
|
+
<line num="760" count="77" type="cond" truecount="2" falsecount="0"/>
|
|
1013
|
+
<line num="761" count="77" type="stmt"/>
|
|
1014
|
+
<line num="774" count="77" type="stmt"/>
|
|
1015
|
+
<line num="775" count="43" type="stmt"/>
|
|
1016
|
+
<line num="777" count="77" type="stmt"/>
|
|
1017
|
+
<line num="778" count="77" type="stmt"/>
|
|
1018
|
+
<line num="779" count="77" type="stmt"/>
|
|
1019
|
+
<line num="783" count="77" type="cond" truecount="1" falsecount="0"/>
|
|
1020
|
+
<line num="784" count="64" type="stmt"/>
|
|
1021
|
+
<line num="787" count="13" type="stmt"/>
|
|
1022
|
+
<line num="788" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
1023
|
+
<line num="790" count="10" type="stmt"/>
|
|
1024
|
+
<line num="800" count="10" type="stmt"/>
|
|
1025
|
+
<line num="801" count="4" type="stmt"/>
|
|
1026
|
+
<line num="804" count="10" type="stmt"/>
|
|
1027
|
+
<line num="809" count="108" type="stmt"/>
|
|
1028
|
+
<line num="810" count="39" type="stmt"/>
|
|
1029
|
+
<line num="821" count="195" type="cond" truecount="2" falsecount="0"/>
|
|
1030
|
+
<line num="825" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1031
|
+
<line num="826" count="126" type="stmt"/>
|
|
1032
|
+
<line num="828" count="126" type="cond" truecount="2" falsecount="0"/>
|
|
1033
|
+
<line num="829" count="40" type="stmt"/>
|
|
1034
|
+
<line num="833" count="86" type="cond" truecount="1" falsecount="0"/>
|
|
1035
|
+
<line num="834" count="86" type="cond" truecount="1" falsecount="0"/>
|
|
1036
|
+
<line num="835" count="86" type="cond" truecount="2" falsecount="0"/>
|
|
1037
|
+
<line num="836" count="86" type="cond" truecount="2" falsecount="0"/>
|
|
1038
|
+
<line num="838" count="86" type="cond" truecount="1" falsecount="0"/>
|
|
1039
|
+
<line num="839" count="78" type="cond" truecount="2" falsecount="0"/>
|
|
1040
|
+
<line num="846" count="103" type="cond" truecount="1" falsecount="0"/>
|
|
1041
|
+
<line num="847" count="23" type="stmt"/>
|
|
1042
|
+
<line num="848" count="65" type="stmt"/>
|
|
1043
|
+
<line num="849" count="65" type="stmt"/>
|
|
1044
|
+
<line num="850" count="65" type="cond" truecount="1" falsecount="0"/>
|
|
1045
|
+
<line num="851" count="15" type="stmt"/>
|
|
1046
|
+
<line num="860" count="65" type="stmt"/>
|
|
1047
|
+
<line num="862" count="65" type="stmt"/>
|
|
1048
|
+
<line num="863" count="65" type="stmt"/>
|
|
1049
|
+
<line num="870" count="20" type="cond" truecount="1" falsecount="0"/>
|
|
1050
|
+
<line num="872" count="4" type="stmt"/>
|
|
1051
|
+
<line num="878" count="4" type="stmt"/>
|
|
1052
|
+
<line num="882" count="14" type="stmt"/>
|
|
1053
|
+
<line num="883" count="14" type="stmt"/>
|
|
1054
|
+
<line num="884" count="37" type="stmt"/>
|
|
1055
|
+
<line num="885" count="37" type="stmt"/>
|
|
1056
|
+
<line num="887" count="37" type="cond" truecount="2" falsecount="0"/>
|
|
1057
|
+
<line num="888" count="14" type="stmt"/>
|
|
1058
|
+
<line num="889" count="23" type="cond" truecount="2" falsecount="0"/>
|
|
1059
|
+
<line num="890" count="11" type="stmt"/>
|
|
1060
|
+
<line num="891" count="12" type="cond" truecount="2" falsecount="0"/>
|
|
1061
|
+
<line num="892" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
1062
|
+
<line num="893" count="2" type="stmt"/>
|
|
1063
|
+
<line num="894" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1064
|
+
<line num="895" count="2" type="stmt"/>
|
|
1065
|
+
<line num="897" count="8" type="cond" truecount="2" falsecount="0"/>
|
|
1066
|
+
<line num="898" count="4" type="stmt"/>
|
|
1067
|
+
<line num="901" count="4" type="stmt"/>
|
|
1068
|
+
<line num="905" count="14" type="stmt"/>
|
|
1069
|
+
<line num="909" count="2" type="stmt"/>
|
|
1070
|
+
<line num="910" count="2" type="cond" truecount="3" falsecount="0"/>
|
|
1071
|
+
<line num="914" count="22" type="stmt"/>
|
|
1072
|
+
<line num="917" count="20" type="stmt"/>
|
|
1073
|
+
<line num="922" count="77" type="stmt"/>
|
|
1074
|
+
<line num="923" count="77" type="stmt"/>
|
|
1075
|
+
<line num="924" count="77" type="cond" truecount="1" falsecount="0"/>
|
|
1076
|
+
<line num="925" count="56" type="stmt"/>
|
|
1077
|
+
<line num="927" count="77" type="stmt"/>
|
|
1078
|
+
<line num="928" count="77" type="stmt"/>
|
|
1079
|
+
<line num="929" count="77" type="stmt"/>
|
|
1080
|
+
<line num="933" count="5" type="stmt"/>
|
|
1081
|
+
<line num="934" count="3" type="stmt"/>
|
|
1082
|
+
<line num="935" count="3" type="stmt"/>
|
|
1083
|
+
<line num="936" count="3" type="stmt"/>
|
|
1084
|
+
<line num="941" count="5" type="stmt"/>
|
|
1085
|
+
<line num="945" count="39" type="stmt"/>
|
|
1086
|
+
<line num="952" count="24" type="cond" truecount="1" falsecount="0"/>
|
|
1087
|
+
<line num="953" count="8" type="stmt"/>
|
|
1088
|
+
<line num="954" count="8" type="stmt"/>
|
|
1089
|
+
<line num="957" count="16" type="cond" truecount="3" falsecount="0"/>
|
|
1090
|
+
<line num="958" count="1" type="stmt"/>
|
|
1091
|
+
<line num="959" count="1" type="stmt"/>
|
|
1092
|
+
<line num="962" count="15" type="stmt"/>
|
|
1093
|
+
<line num="963" count="15" type="cond" truecount="3" falsecount="0"/>
|
|
1094
|
+
<line num="965" count="13" type="stmt"/>
|
|
1095
|
+
<line num="966" count="13" type="cond" truecount="2" falsecount="0"/>
|
|
1096
|
+
<line num="969" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
1097
|
+
<line num="970" count="12" type="cond" truecount="2" falsecount="0"/>
|
|
1098
|
+
<line num="972" count="22" type="cond" truecount="2" falsecount="0"/>
|
|
1099
|
+
<line num="975" count="13" type="stmt"/>
|
|
1100
|
+
<line num="977" count="13" type="cond" truecount="4" falsecount="0"/>
|
|
1101
|
+
<line num="978" count="7" type="stmt"/>
|
|
1102
|
+
<line num="979" count="7" type="stmt"/>
|
|
1103
|
+
<line num="982" count="6" type="stmt"/>
|
|
1104
|
+
<line num="986" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
1105
|
+
<line num="987" count="4" type="stmt"/>
|
|
1106
|
+
<line num="988" count="4" type="stmt"/>
|
|
1107
|
+
<line num="991" count="11" type="cond" truecount="3" falsecount="0"/>
|
|
1108
|
+
<line num="992" count="1" type="stmt"/>
|
|
1109
|
+
<line num="993" count="1" type="stmt"/>
|
|
1110
|
+
<line num="996" count="10" type="stmt"/>
|
|
1111
|
+
<line num="997" count="10" type="cond" truecount="3" falsecount="0"/>
|
|
1112
|
+
<line num="999" count="9" type="stmt"/>
|
|
1113
|
+
<line num="1001" count="9" type="cond" truecount="2" falsecount="0"/>
|
|
1114
|
+
<line num="1004" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1115
|
+
<line num="1005" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
1116
|
+
<line num="1007" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
1117
|
+
<line num="1010" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
1118
|
+
<line num="1012" count="9" type="stmt"/>
|
|
1119
|
+
<line num="1014" count="9" type="cond" truecount="4" falsecount="0"/>
|
|
1120
|
+
<line num="1015" count="6" type="stmt"/>
|
|
1121
|
+
<line num="1016" count="6" type="stmt"/>
|
|
1122
|
+
<line num="1019" count="3" type="stmt"/>
|
|
1123
|
+
<line num="1023" count="3" type="stmt"/>
|
|
1124
|
+
<line num="1024" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
1125
|
+
<line num="1025" count="1" type="stmt"/>
|
|
1126
|
+
<line num="1026" count="1" type="stmt"/>
|
|
1127
|
+
<line num="1029" count="2" type="cond" truecount="7" falsecount="0"/>
|
|
1128
|
+
<line num="1030" count="1" type="stmt"/>
|
|
1129
|
+
<line num="1031" count="1" type="stmt"/>
|
|
1130
|
+
<line num="1034" count="1" type="stmt"/>
|
|
1131
|
+
<line num="1038" count="3" type="stmt"/>
|
|
1132
|
+
<line num="1040" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
1133
|
+
<line num="1041" count="2" type="stmt"/>
|
|
1134
|
+
<line num="1042" count="2" type="stmt"/>
|
|
1135
|
+
<line num="1045" count="1" type="stmt"/>
|
|
1136
|
+
<line num="1055" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1137
|
+
<line num="1056" count="1" type="stmt"/>
|
|
1138
|
+
<line num="1058" count="1" type="stmt"/>
|
|
1139
|
+
<line num="1066" count="2" type="stmt"/>
|
|
1140
|
+
<line num="1070" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1141
|
+
<line num="1071" count="1" type="stmt"/>
|
|
1142
|
+
<line num="1073" count="1" type="stmt"/>
|
|
1143
|
+
<line num="1081" count="2" type="stmt"/>
|
|
1144
|
+
<line num="1095" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1145
|
+
<line num="1096" count="1" type="stmt"/>
|
|
1146
|
+
<line num="1098" count="1" type="stmt"/>
|
|
1147
|
+
<line num="1106" count="2" type="stmt"/>
|
|
1148
|
+
<line num="1114" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1149
|
+
<line num="1115" count="1" type="stmt"/>
|
|
1150
|
+
<line num="1117" count="1" type="stmt"/>
|
|
1151
|
+
<line num="1125" count="2" type="stmt"/>
|
|
1152
|
+
<line num="1141" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
1153
|
+
<line num="1142" count="1" type="stmt"/>
|
|
1154
|
+
<line num="1150" count="1" type="stmt"/>
|
|
1155
|
+
<line num="1161" count="1" type="stmt"/>
|
|
1156
|
+
<line num="1165" count="2" type="stmt"/>
|
|
1157
|
+
<line num="1169" count="12" type="cond" truecount="3" falsecount="0"/>
|
|
1158
|
+
<line num="1173" count="91" type="stmt"/>
|
|
1159
|
+
<line num="1182" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
1160
|
+
<line num="1183" count="1" type="stmt"/>
|
|
1161
|
+
<line num="1184" count="1" type="stmt"/>
|
|
1162
|
+
<line num="1187" count="12" type="stmt"/>
|
|
1163
|
+
<line num="1188" count="12" type="stmt"/>
|
|
1164
|
+
<line num="1190" count="12" type="stmt"/>
|
|
1165
|
+
<line num="1192" count="11" type="stmt"/>
|
|
1166
|
+
<line num="1201" count="4" type="stmt"/>
|
|
1167
|
+
<line num="1203" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
1168
|
+
<line num="1206" count="4" type="stmt"/>
|
|
1169
|
+
<line num="1208" count="4" type="stmt"/>
|
|
1170
|
+
<line num="1209" count="4" type="stmt"/>
|
|
1171
|
+
<line num="1218" count="12" type="stmt"/>
|
|
1172
|
+
<line num="1219" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1173
|
+
<line num="1220" count="1" type="stmt"/>
|
|
1174
|
+
<line num="1223" count="11" type="stmt"/>
|
|
1175
|
+
<line num="1225" count="11" type="stmt"/>
|
|
1176
|
+
<line num="1226" count="11" type="stmt"/>
|
|
1177
|
+
<line num="1231" count="11" type="cond" truecount="2" falsecount="0"/>
|
|
1178
|
+
<line num="1232" count="10" type="stmt"/>
|
|
1179
|
+
<line num="1233" count="10" type="stmt"/>
|
|
1180
|
+
<line num="1235" count="1" type="stmt"/>
|
|
1181
|
+
<line num="1238" count="11" type="stmt"/>
|
|
1182
|
+
<line num="1240" count="20" type="stmt"/>
|
|
1183
|
+
<line num="1241" count="20" type="stmt"/>
|
|
1184
|
+
<line num="1246" count="22" type="stmt"/>
|
|
1185
|
+
<line num="1255" count="11" type="stmt"/>
|
|
1186
|
+
<line num="1257" count="71" type="cond" truecount="3" falsecount="0"/>
|
|
1187
|
+
<line num="1260" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1188
|
+
<line num="1262" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
1189
|
+
<line num="1264" count="7" type="stmt"/>
|
|
1190
|
+
<line num="1265" count="8" type="stmt"/>
|
|
1191
|
+
<line num="1268" count="7" type="stmt"/>
|
|
1192
|
+
<line num="1271" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
1193
|
+
<line num="1273" count="4" type="stmt"/>
|
|
1194
|
+
<line num="1276" count="7" type="stmt"/>
|
|
1195
|
+
<line num="1278" count="7" type="stmt"/>
|
|
1196
|
+
<line num="1287" count="4" type="stmt"/>
|
|
1197
|
+
<line num="1288" count="4" type="stmt"/>
|
|
1198
|
+
<line num="1290" count="4" type="stmt"/>
|
|
1199
|
+
<line num="1291" count="8" type="stmt"/>
|
|
1200
|
+
<line num="1292" count="79" type="cond" truecount="4" falsecount="0"/>
|
|
1201
|
+
<line num="1295" count="2" type="stmt"/>
|
|
1202
|
+
<line num="1297" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1203
|
+
<line num="1298" count="2" type="stmt"/>
|
|
1204
|
+
<line num="1299" count="2" type="stmt"/>
|
|
1205
|
+
<line num="1300" count="2" type="stmt"/>
|
|
1206
|
+
<line num="1301" count="2" type="stmt"/>
|
|
1207
|
+
<line num="1305" count="6" type="stmt"/>
|
|
1208
|
+
<line num="1319" count="6" type="stmt"/>
|
|
1209
|
+
<line num="1320" count="6" type="stmt"/>
|
|
1210
|
+
<line num="1322" count="6" type="stmt"/>
|
|
1211
|
+
<line num="1325" count="4" type="stmt"/>
|
|
1212
|
+
<line num="1326" count="4" type="stmt"/>
|
|
1213
|
+
<line num="1333" count="20" type="cond" truecount="1" falsecount="0"/>
|
|
1214
|
+
<line num="1334" count="18" type="stmt"/>
|
|
1215
|
+
<line num="1335" count="18" type="stmt"/>
|
|
1216
|
+
<line num="1338" count="2" type="stmt"/>
|
|
1217
|
+
<line num="1345" count="154" type="stmt"/>
|
|
1218
|
+
<line num="1352" count="43" type="stmt"/>
|
|
1146
1219
|
</file>
|
|
1147
1220
|
<file name="interfaces.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/components/tek-grid/interfaces.ts">
|
|
1148
1221
|
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
@@ -1579,23 +1652,41 @@
|
|
|
1579
1652
|
</file>
|
|
1580
1653
|
</package>
|
|
1581
1654
|
<package name="src.error">
|
|
1582
|
-
<metrics statements="
|
|
1655
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1583
1656
|
<file name="delete-rows-error.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/error/delete-rows-error.ts">
|
|
1584
1657
|
<metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1585
1658
|
<line num="4" count="30" type="stmt"/>
|
|
1586
1659
|
<line num="6" count="1" type="stmt"/>
|
|
1587
1660
|
<line num="9" count="1" type="stmt"/>
|
|
1588
1661
|
</file>
|
|
1662
|
+
<file name="incomplete-groups-error.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/error/incomplete-groups-error.ts">
|
|
1663
|
+
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1664
|
+
<line num="7" count="30" type="stmt"/>
|
|
1665
|
+
<line num="9" count="1" type="stmt"/>
|
|
1666
|
+
<line num="10" count="1" type="stmt"/>
|
|
1667
|
+
<line num="11" count="1" type="stmt"/>
|
|
1668
|
+
<line num="13" count="1" type="stmt"/>
|
|
1669
|
+
</file>
|
|
1589
1670
|
</package>
|
|
1590
1671
|
<package name="src.utils">
|
|
1591
|
-
<metrics statements="
|
|
1672
|
+
<metrics statements="12" coveredstatements="12" conditionals="1" coveredconditionals="1" methods="2" coveredmethods="2"/>
|
|
1673
|
+
<file name="extract-properties.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/utils/extract-properties.ts">
|
|
1674
|
+
<metrics statements="6" coveredstatements="6" conditionals="1" coveredconditionals="1" methods="2" coveredmethods="2"/>
|
|
1675
|
+
<line num="7" count="30" type="stmt"/>
|
|
1676
|
+
<line num="8" count="4" type="stmt"/>
|
|
1677
|
+
<line num="9" count="4" type="stmt"/>
|
|
1678
|
+
<line num="10" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1679
|
+
<line num="11" count="6" type="stmt"/>
|
|
1680
|
+
<line num="15" count="4" type="stmt"/>
|
|
1681
|
+
</file>
|
|
1592
1682
|
<file name="index.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/utils/index.ts">
|
|
1593
|
-
<metrics statements="
|
|
1683
|
+
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1594
1684
|
<line num="1" count="30" type="stmt"/>
|
|
1595
1685
|
<line num="2" count="30" type="stmt"/>
|
|
1596
1686
|
<line num="3" count="30" type="stmt"/>
|
|
1597
1687
|
<line num="4" count="30" type="stmt"/>
|
|
1598
1688
|
<line num="5" count="30" type="stmt"/>
|
|
1689
|
+
<line num="6" count="30" type="stmt"/>
|
|
1599
1690
|
</file>
|
|
1600
1691
|
</package>
|
|
1601
1692
|
<package name="src.utils.grid-base">
|
|
@@ -1607,14 +1698,14 @@
|
|
|
1607
1698
|
<line num="13" count="30" type="stmt"/>
|
|
1608
1699
|
<line num="14" count="30" type="stmt"/>
|
|
1609
1700
|
<line num="36" count="30" type="stmt"/>
|
|
1610
|
-
<line num="39" count="
|
|
1611
|
-
<line num="42" count="
|
|
1612
|
-
<line num="44" count="
|
|
1613
|
-
<line num="48" count="
|
|
1614
|
-
<line num="50" count="
|
|
1615
|
-
<line num="54" count="
|
|
1616
|
-
<line num="55" count="
|
|
1617
|
-
<line num="56" count="
|
|
1701
|
+
<line num="39" count="173" type="stmt"/>
|
|
1702
|
+
<line num="42" count="173" type="stmt"/>
|
|
1703
|
+
<line num="44" count="173" type="stmt"/>
|
|
1704
|
+
<line num="48" count="861" type="cond" truecount="1" falsecount="0"/>
|
|
1705
|
+
<line num="50" count="689" type="stmt"/>
|
|
1706
|
+
<line num="54" count="173" type="stmt"/>
|
|
1707
|
+
<line num="55" count="861" type="stmt"/>
|
|
1708
|
+
<line num="56" count="861" type="stmt"/>
|
|
1618
1709
|
<line num="61" count="47" type="stmt"/>
|
|
1619
1710
|
<line num="292" count="5" type="stmt"/>
|
|
1620
1711
|
<line num="296" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
@@ -1648,15 +1739,15 @@
|
|
|
1648
1739
|
<line num="350" count="2" type="stmt"/>
|
|
1649
1740
|
<line num="352" count="2" type="stmt"/>
|
|
1650
1741
|
<line num="357" count="1" type="stmt"/>
|
|
1651
|
-
<line num="361" count="
|
|
1652
|
-
<line num="369" count="
|
|
1653
|
-
<line num="377" count="
|
|
1654
|
-
<line num="378" count="
|
|
1742
|
+
<line num="361" count="173" type="stmt"/>
|
|
1743
|
+
<line num="369" count="173" type="stmt"/>
|
|
1744
|
+
<line num="377" count="346" type="stmt"/>
|
|
1745
|
+
<line num="378" count="346" type="cond" truecount="3" falsecount="0"/>
|
|
1655
1746
|
<line num="380" count="36" type="cond" truecount="2" falsecount="0"/>
|
|
1656
1747
|
<line num="381" count="18" type="stmt"/>
|
|
1657
1748
|
<line num="383" count="18" type="stmt"/>
|
|
1658
1749
|
<line num="385" count="234" type="stmt"/>
|
|
1659
|
-
<line num="391" count="
|
|
1750
|
+
<line num="391" count="310" type="stmt"/>
|
|
1660
1751
|
<line num="395" count="6" type="stmt"/>
|
|
1661
1752
|
<line num="396" count="6" type="cond" truecount="3" falsecount="0"/>
|
|
1662
1753
|
<line num="397" count="4" type="stmt"/>
|
|
@@ -1671,7 +1762,7 @@
|
|
|
1671
1762
|
<line num="413" count="4" type="stmt"/>
|
|
1672
1763
|
<line num="416" count="6" type="stmt"/>
|
|
1673
1764
|
<line num="417" count="6" type="stmt"/>
|
|
1674
|
-
<line num="420" count="
|
|
1765
|
+
<line num="420" count="173" type="stmt"/>
|
|
1675
1766
|
<line num="441" count="2" type="stmt"/>
|
|
1676
1767
|
<line num="445" count="4" type="stmt"/>
|
|
1677
1768
|
<line num="449" count="30" type="stmt"/>
|
|
@@ -1720,10 +1811,10 @@
|
|
|
1720
1811
|
<file name="button-option.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/utils/grid-base/export-options/button-option.ts">
|
|
1721
1812
|
<metrics statements="6" coveredstatements="6" conditionals="3" coveredconditionals="3" methods="3" coveredmethods="3"/>
|
|
1722
1813
|
<line num="4" count="30" type="stmt"/>
|
|
1723
|
-
<line num="8" count="
|
|
1724
|
-
<line num="14" count="
|
|
1725
|
-
<line num="15" count="
|
|
1726
|
-
<line num="16" count="
|
|
1814
|
+
<line num="8" count="691" type="stmt"/>
|
|
1815
|
+
<line num="14" count="691" type="stmt"/>
|
|
1816
|
+
<line num="15" count="691" type="cond" truecount="2" falsecount="0"/>
|
|
1817
|
+
<line num="16" count="691" type="stmt"/>
|
|
1727
1818
|
<line num="23" count="1" type="stmt"/>
|
|
1728
1819
|
</file>
|
|
1729
1820
|
<file name="index.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/utils/grid-base/export-options/index.ts">
|
|
@@ -1735,23 +1826,23 @@
|
|
|
1735
1826
|
<file name="multi-option.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/src/utils/grid-base/export-options/multi-option.ts">
|
|
1736
1827
|
<metrics statements="18" coveredstatements="18" conditionals="8" coveredconditionals="8" methods="9" coveredmethods="9"/>
|
|
1737
1828
|
<line num="9" count="30" type="stmt"/>
|
|
1738
|
-
<line num="13" count="
|
|
1739
|
-
<line num="17" count="
|
|
1740
|
-
<line num="21" count="
|
|
1741
|
-
<line num="22" count="
|
|
1742
|
-
<line num="34" count="
|
|
1743
|
-
<line num="35" count="
|
|
1744
|
-
<line num="37" count="
|
|
1829
|
+
<line num="13" count="176" type="stmt"/>
|
|
1830
|
+
<line num="17" count="1408" type="stmt"/>
|
|
1831
|
+
<line num="21" count="352" type="stmt"/>
|
|
1832
|
+
<line num="22" count="352" type="stmt"/>
|
|
1833
|
+
<line num="34" count="352" type="stmt"/>
|
|
1834
|
+
<line num="35" count="352" type="cond" truecount="2" falsecount="0"/>
|
|
1835
|
+
<line num="37" count="352" type="stmt"/>
|
|
1745
1836
|
<line num="44" count="2" type="stmt"/>
|
|
1746
|
-
<line num="50" count="
|
|
1747
|
-
<line num="52" count="
|
|
1748
|
-
<line num="63" count="
|
|
1749
|
-
<line num="65" count="
|
|
1750
|
-
<line num="76" count="
|
|
1751
|
-
<line num="78" count="
|
|
1837
|
+
<line num="50" count="352" type="stmt"/>
|
|
1838
|
+
<line num="52" count="352" type="stmt"/>
|
|
1839
|
+
<line num="63" count="176" type="stmt"/>
|
|
1840
|
+
<line num="65" count="352" type="stmt"/>
|
|
1841
|
+
<line num="76" count="176" type="stmt"/>
|
|
1842
|
+
<line num="78" count="176" type="stmt"/>
|
|
1752
1843
|
<line num="83" count="2" type="cond" truecount="4" falsecount="0"/>
|
|
1753
|
-
<line num="87" count="
|
|
1754
|
-
<line num="94" count="
|
|
1844
|
+
<line num="87" count="176" type="stmt"/>
|
|
1845
|
+
<line num="94" count="176" type="stmt"/>
|
|
1755
1846
|
</file>
|
|
1756
1847
|
</package>
|
|
1757
1848
|
<package name="src.utils.report-filter">
|
|
@@ -1788,7 +1879,7 @@
|
|
|
1788
1879
|
</file>
|
|
1789
1880
|
<file name="flush-promises-helper.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/tests/__helpers__/flush-promises-helper.ts">
|
|
1790
1881
|
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1791
|
-
<line num="1" count="
|
|
1882
|
+
<line num="1" count="41" type="stmt"/>
|
|
1792
1883
|
<line num="3" count="1" type="stmt"/>
|
|
1793
1884
|
</file>
|
|
1794
1885
|
<file name="get-child-helper.ts" path="/Users/zedmartins/workfolder/zeedhi/teknisa-components/packages/common/tests/__helpers__/get-child-helper.ts">
|