@clary-so/measure 0.4.2

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.
Files changed (99) hide show
  1. package/.postcssrc +5 -0
  2. package/CHANGELOG.md +81 -0
  3. package/LICENSE +21 -0
  4. package/dist/__tests__/measure.test.d.ts +1 -0
  5. package/dist/__tests__/measure.test.js +152 -0
  6. package/dist/__tests__/measure.test.js.map +1 -0
  7. package/dist/__tests__/server/ServerApp.test.d.ts +1 -0
  8. package/dist/__tests__/server/ServerApp.test.js +49 -0
  9. package/dist/__tests__/server/ServerApp.test.js.map +1 -0
  10. package/dist/__tests__/utils/removeCLIColors.d.ts +1 -0
  11. package/dist/__tests__/utils/removeCLIColors.js +10 -0
  12. package/dist/__tests__/utils/removeCLIColors.js.map +1 -0
  13. package/dist/__tests__/webapp/socket.test.d.ts +1 -0
  14. package/dist/__tests__/webapp/socket.test.js +73 -0
  15. package/dist/__tests__/webapp/socket.test.js.map +1 -0
  16. package/dist/common/useLogSocketEvents.d.ts +3 -0
  17. package/dist/common/useLogSocketEvents.js +18 -0
  18. package/dist/common/useLogSocketEvents.js.map +1 -0
  19. package/dist/index.87c99d25.js +88 -0
  20. package/dist/index.87c99d25.js.map +1 -0
  21. package/dist/index.html +1 -0
  22. package/dist/server/ServerApp.d.ts +10 -0
  23. package/dist/server/ServerApp.js +131 -0
  24. package/dist/server/ServerApp.js.map +1 -0
  25. package/dist/server/ServerSocketConnectionApp.d.ts +6 -0
  26. package/dist/server/ServerSocketConnectionApp.js +105 -0
  27. package/dist/server/ServerSocketConnectionApp.js.map +1 -0
  28. package/dist/server/bin.d.ts +2 -0
  29. package/dist/server/bin.js +63 -0
  30. package/dist/server/bin.js.map +1 -0
  31. package/dist/server/components/HostAndPortInfo.d.ts +4 -0
  32. package/dist/server/components/HostAndPortInfo.js +14 -0
  33. package/dist/server/components/HostAndPortInfo.js.map +1 -0
  34. package/dist/server/constants.d.ts +2 -0
  35. package/dist/server/constants.js +12 -0
  36. package/dist/server/constants.js.map +1 -0
  37. package/dist/server/socket/socketInterface.d.ts +37 -0
  38. package/dist/server/socket/socketInterface.js +17 -0
  39. package/dist/server/socket/socketInterface.js.map +1 -0
  40. package/dist/server/socket/socketState.d.ts +5 -0
  41. package/dist/server/socket/socketState.js +47 -0
  42. package/dist/server/socket/socketState.js.map +1 -0
  43. package/dist/server/useBundleIdControls.d.ts +2 -0
  44. package/dist/server/useBundleIdControls.js +33 -0
  45. package/dist/server/useBundleIdControls.js.map +1 -0
  46. package/dist/webapp/MeasureWebApp.d.ts +2 -0
  47. package/dist/webapp/MeasureWebApp.js +29 -0
  48. package/dist/webapp/MeasureWebApp.js.map +1 -0
  49. package/dist/webapp/components/AppBar.d.ts +4 -0
  50. package/dist/webapp/components/AppBar.js +19 -0
  51. package/dist/webapp/components/AppBar.js.map +1 -0
  52. package/dist/webapp/components/BundleIdSelector.d.ts +6 -0
  53. package/dist/webapp/components/BundleIdSelector.js +20 -0
  54. package/dist/webapp/components/BundleIdSelector.js.map +1 -0
  55. package/dist/webapp/components/SocketState.d.ts +2 -0
  56. package/dist/webapp/components/SocketState.js +95 -0
  57. package/dist/webapp/components/SocketState.js.map +1 -0
  58. package/dist/webapp/components/StartButton.d.ts +6 -0
  59. package/dist/webapp/components/StartButton.js +12 -0
  60. package/dist/webapp/components/StartButton.js.map +1 -0
  61. package/dist/webapp/components/TextField.d.ts +5 -0
  62. package/dist/webapp/components/TextField.js +81 -0
  63. package/dist/webapp/components/TextField.js.map +1 -0
  64. package/dist/webapp/socket.d.ts +3 -0
  65. package/dist/webapp/socket.js +8 -0
  66. package/dist/webapp/socket.js.map +1 -0
  67. package/dist/webapp/useMeasures.d.ts +10 -0
  68. package/dist/webapp/useMeasures.js +38 -0
  69. package/dist/webapp/useMeasures.js.map +1 -0
  70. package/package.json +48 -0
  71. package/src/__tests__/__snapshots__/measure.test.tsx.snap +4389 -0
  72. package/src/__tests__/measure.test.tsx +141 -0
  73. package/src/__tests__/server/ServerApp.test.ts +49 -0
  74. package/src/__tests__/utils/removeCLIColors.ts +5 -0
  75. package/src/__tests__/webapp/socket.test.ts +37 -0
  76. package/src/common/types/index.d.ts +3 -0
  77. package/src/common/useLogSocketEvents.ts +17 -0
  78. package/src/server/ServerApp.tsx +103 -0
  79. package/src/server/ServerSocketConnectionApp.tsx +82 -0
  80. package/src/server/bin.tsx +23 -0
  81. package/src/server/components/HostAndPortInfo.tsx +11 -0
  82. package/src/server/constants.ts +8 -0
  83. package/src/server/socket/socketInterface.ts +53 -0
  84. package/src/server/socket/socketState.ts +66 -0
  85. package/src/server/useBundleIdControls.ts +38 -0
  86. package/src/webapp/MeasureWebApp.tsx +43 -0
  87. package/src/webapp/components/AppBar.tsx +19 -0
  88. package/src/webapp/components/BundleIdSelector.tsx +26 -0
  89. package/src/webapp/components/SocketState.tsx +79 -0
  90. package/src/webapp/components/StartButton.tsx +22 -0
  91. package/src/webapp/components/TextField.tsx +54 -0
  92. package/src/webapp/globals.d.ts +9 -0
  93. package/src/webapp/index.html +30 -0
  94. package/src/webapp/index.js +9 -0
  95. package/src/webapp/socket.ts +12 -0
  96. package/src/webapp/useMeasures.ts +36 -0
  97. package/tailwind.config.js +7 -0
  98. package/tsconfig.json +8 -0
  99. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,4389 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`flashlight measure interactive it displays measures: Web app with measures and threads opened - 1. TEXT 1`] = `
4
+ "Auto-Detect
5
+ Stop Measuring
6
+ Reset
7
+ com.example
8
+ 47
9
+ Average Test Runtime
10
+ 1000 ms
11
+ Time taken to run the test.
12
+ Can be helpful to measure Time To Interactive of your app, if the test is checking app start for instance.
13
+ Average FPS
14
+ 120 FPS
15
+ Frame Per Second. Your app should display 120 Frames Per Second to give an impression of fluidity. This number should be close to 120, otherwise it will seem laggy.
16
+
17
+ See
18
+
19
+ this video
20
+
21
+ for more details
22
+ Average CPU usage
23
+ 83 %
24
+ An app might run at high frame rates, such as 60 FPS or higher, but might be using too much processing power, so it's important to check CPU usage.
25
+ Depending on the device, this value can go up to
26
+ 100% x number of cores
27
+ . For instance, a Samsung A10s has 4 cores, so the max value would be 400%.
28
+ High CPU Usage
29
+ 0.5 s
30
+ Impacted threads:
31
+ -
32
+ RN JS Thread
33
+ for
34
+
35
+ 0.5
36
+ s
37
+ High CPU usage by a single process can cause app unresponsiveness, even with low overall CPU usage. For instance, an overworked JS thread in a React Native app may lead to unresponsiveness despite maintaining 120 FPS.
38
+ Average RAM usage
39
+ 375.8 MB
40
+ If an app consumes a large amount of RAM (random-access memory), it can impact the overall performance of the device and drain the battery more quickly.
41
+ It’s worth noting that results might be higher than expected since we measure RSS and not PSS (See
42
+
43
+ here for more details
44
+ )
45
+ Frame rate (FPS)
46
+ {
47
+ "chart": {
48
+ "animations": {
49
+ "enabled": true,
50
+ "easing": "linear",
51
+ "dynamicAnimation": {
52
+ "speed": 500
53
+ }
54
+ },
55
+ "zoom": {
56
+ "enabled": false
57
+ },
58
+ "toolbar": {
59
+ "show": false
60
+ },
61
+ "events": {}
62
+ },
63
+ "dataLabels": {
64
+ "enabled": false
65
+ },
66
+ "stroke": {
67
+ "curve": "smooth",
68
+ "width": 2
69
+ },
70
+ "xaxis": {
71
+ "labels": {
72
+ "style": {
73
+ "colors": "#FFFFFF99"
74
+ }
75
+ },
76
+ "type": "numeric"
77
+ },
78
+ "yaxis": {
79
+ "labels": {
80
+ "style": {
81
+ "colors": "#FFFFFF99"
82
+ }
83
+ },
84
+ "min": 0
85
+ },
86
+ "colors": [
87
+ "var(--bright-magenta)",
88
+ "var(--bright-cyan)",
89
+ "var(--bright-yellow)",
90
+ "var(--bright-green)"
91
+ ],
92
+ "legend": {
93
+ "labels": {
94
+ "colors": "#FFFFFF99"
95
+ }
96
+ },
97
+ "grid": {
98
+ "borderColor": "#FFFFFF33",
99
+ "strokeDashArray": 3
100
+ },
101
+ "annotations": {}
102
+ }
103
+ [
104
+ {
105
+ "name": "com.example",
106
+ "data": [
107
+ {
108
+ "x": 0,
109
+ "y": 120
110
+ },
111
+ {
112
+ "x": 500,
113
+ "y": 120
114
+ }
115
+ ]
116
+ }
117
+ ]
118
+ Total CPU Usage (%)
119
+ {
120
+ "chart": {
121
+ "animations": {
122
+ "enabled": true,
123
+ "easing": "linear",
124
+ "dynamicAnimation": {
125
+ "speed": 500
126
+ }
127
+ },
128
+ "zoom": {
129
+ "enabled": false
130
+ },
131
+ "toolbar": {
132
+ "show": false
133
+ },
134
+ "events": {}
135
+ },
136
+ "dataLabels": {
137
+ "enabled": false
138
+ },
139
+ "stroke": {
140
+ "curve": "smooth",
141
+ "width": 2
142
+ },
143
+ "xaxis": {
144
+ "labels": {
145
+ "style": {
146
+ "colors": "#FFFFFF99"
147
+ }
148
+ },
149
+ "type": "numeric"
150
+ },
151
+ "yaxis": {
152
+ "labels": {
153
+ "style": {
154
+ "colors": "#FFFFFF99"
155
+ }
156
+ },
157
+ "min": 0
158
+ },
159
+ "colors": [
160
+ "var(--bright-magenta)",
161
+ "var(--bright-cyan)",
162
+ "var(--bright-yellow)",
163
+ "var(--bright-green)"
164
+ ],
165
+ "legend": {
166
+ "labels": {
167
+ "colors": "#FFFFFF99"
168
+ }
169
+ },
170
+ "grid": {
171
+ "borderColor": "#FFFFFF33",
172
+ "strokeDashArray": 3
173
+ },
174
+ "annotations": {}
175
+ }
176
+ [
177
+ {
178
+ "name": "com.example",
179
+ "data": [
180
+ {
181
+ "x": 0,
182
+ "y": 166
183
+ },
184
+ {
185
+ "x": 500,
186
+ "y": 0
187
+ }
188
+ ]
189
+ }
190
+ ]
191
+ RN JS Thread CPU Usage (%)
192
+ {
193
+ "chart": {
194
+ "animations": {
195
+ "enabled": true,
196
+ "easing": "linear",
197
+ "dynamicAnimation": {
198
+ "speed": 500
199
+ }
200
+ },
201
+ "zoom": {
202
+ "enabled": false
203
+ },
204
+ "toolbar": {
205
+ "show": false
206
+ },
207
+ "events": {}
208
+ },
209
+ "dataLabels": {
210
+ "enabled": false
211
+ },
212
+ "stroke": {
213
+ "curve": "smooth",
214
+ "width": 2
215
+ },
216
+ "xaxis": {
217
+ "labels": {
218
+ "style": {
219
+ "colors": "#FFFFFF99"
220
+ }
221
+ },
222
+ "type": "numeric"
223
+ },
224
+ "yaxis": {
225
+ "labels": {
226
+ "style": {
227
+ "colors": "#FFFFFF99"
228
+ }
229
+ },
230
+ "min": 0,
231
+ "max": 100
232
+ },
233
+ "colors": [
234
+ "var(--bright-magenta)",
235
+ "var(--bright-cyan)",
236
+ "var(--bright-yellow)",
237
+ "var(--bright-green)"
238
+ ],
239
+ "legend": {
240
+ "labels": {
241
+ "colors": "#FFFFFF99"
242
+ },
243
+ "showForSingleSeries": true
244
+ },
245
+ "grid": {
246
+ "borderColor": "#FFFFFF33",
247
+ "strokeDashArray": 3
248
+ },
249
+ "annotations": {}
250
+ }
251
+ [
252
+ {
253
+ "name": "RN JS Thread",
254
+ "data": [
255
+ {
256
+ "x": 0,
257
+ "y": 100
258
+ },
259
+ {
260
+ "x": 500,
261
+ "y": 0
262
+ }
263
+ ]
264
+ }
265
+ ]
266
+ Other threads
267
+ Thread
268
+ Average CPU Usage (%)
269
+ sorted descending
270
+ Current CPU Usage (%)
271
+ RN JS Thread
272
+ 50
273
+ 0
274
+ com.example
275
+ 24
276
+ 0
277
+ RenderThread
278
+ 3
279
+ 0
280
+ OkHttp Dispatch (2)
281
+ 2
282
+ 0
283
+ Jit thread pool
284
+ 1
285
+ 0
286
+ OkHttp Dispatch
287
+ 1
288
+ 0
289
+ mali-cmar-backe
290
+ 1
291
+ 0
292
+ RN Bridge Thread
293
+ 1
294
+ 0
295
+ Signal Catcher
296
+ 0
297
+ 0
298
+ perfetto_hprof_
299
+ 0
300
+ 0
301
+ ADB-JDWP Connec
302
+ 0
303
+ 0
304
+ HeapTaskDaemon
305
+ 0
306
+ 0
307
+ ReferenceQueueD
308
+ 0
309
+ 0
310
+ FinalizerDaemon
311
+ 0
312
+ 0
313
+ FinalizerWatchd
314
+ 0
315
+ 0
316
+ Binder #1
317
+ 0
318
+ 0
319
+ Binder #2
320
+ 0
321
+ 0
322
+ Binder #3
323
+ 0
324
+ 0
325
+ Profile Saver
326
+ 0
327
+ 0
328
+ queued-work-loo
329
+ 0
330
+ 0
331
+ AsyncTask #1
332
+ 0
333
+ 0
334
+ FlipperEventBas
335
+ 0
336
+ 0
337
+ FlipperConnecti
338
+ 0
339
+ 0
340
+ HybridData Dest
341
+ 0
342
+ 0
343
+ FutureTimekeepr
344
+ 0
345
+ 0
346
+ mali-mem-purge
347
+ 0
348
+ 0
349
+ mali-utility-wo
350
+ 0
351
+ 0
352
+ mali-utility-wo (2)
353
+ 0
354
+ 0
355
+ mali-utility-wo (3)
356
+ 0
357
+ 0
358
+ mali-utility-wo (4)
359
+ 0
360
+ 0
361
+ queued-work-loo (2)
362
+ 0
363
+ 0
364
+ BMScavenger
365
+ 0
366
+ 0
367
+ hwuiTask0
368
+ 0
369
+ 0
370
+ hwuiTask1
371
+ 0
372
+ 0
373
+ Binder #2 (2)
374
+ 0
375
+ 0
376
+ CookieMonsterCl
377
+ 0
378
+ 0
379
+ CookieMonsterBa
380
+ 0
381
+ 0
382
+ alhost:8097/...
383
+ 0
384
+ 0
385
+ OkHttp TaskRunn
386
+ 0
387
+ 0
388
+ Binder #4
389
+ 0
390
+ 0
391
+ queued-work-loo (3)
392
+ 0
393
+ 0
394
+ Binder #5
395
+ 0
396
+ 0
397
+ JITWorker
398
+ 0
399
+ 0
400
+ RAM Usage (MB)
401
+ {
402
+ "chart": {
403
+ "animations": {
404
+ "enabled": true,
405
+ "easing": "linear",
406
+ "dynamicAnimation": {
407
+ "speed": 500
408
+ }
409
+ },
410
+ "zoom": {
411
+ "enabled": false
412
+ },
413
+ "toolbar": {
414
+ "show": false
415
+ },
416
+ "events": {}
417
+ },
418
+ "dataLabels": {
419
+ "enabled": false
420
+ },
421
+ "stroke": {
422
+ "curve": "smooth",
423
+ "width": 2
424
+ },
425
+ "xaxis": {
426
+ "labels": {
427
+ "style": {
428
+ "colors": "#FFFFFF99"
429
+ }
430
+ },
431
+ "type": "numeric"
432
+ },
433
+ "yaxis": {
434
+ "labels": {
435
+ "style": {
436
+ "colors": "#FFFFFF99"
437
+ }
438
+ },
439
+ "min": 0
440
+ },
441
+ "colors": [
442
+ "var(--bright-magenta)",
443
+ "var(--bright-cyan)",
444
+ "var(--bright-yellow)",
445
+ "var(--bright-green)"
446
+ ],
447
+ "legend": {
448
+ "labels": {
449
+ "colors": "#FFFFFF99"
450
+ }
451
+ },
452
+ "grid": {
453
+ "borderColor": "#FFFFFF33",
454
+ "strokeDashArray": 3
455
+ },
456
+ "annotations": {}
457
+ }
458
+ [
459
+ {
460
+ "name": "com.example",
461
+ "data": [
462
+ {
463
+ "x": 0,
464
+ "y": 376
465
+ },
466
+ {
467
+ "x": 500,
468
+ "y": 376
469
+ }
470
+ ]
471
+ }
472
+ ]"
473
+ `;
474
+
475
+ exports[`flashlight measure interactive it displays measures: Web app with measures and threads opened - 2. FULL 1`] = `
476
+ <DocumentFragment>
477
+ <div
478
+ class="bg-light-charcoal h-full text-black"
479
+ >
480
+ <header
481
+ class="MuiPaper-root MuiPaper-elevation MuiPaper-elevation4 MuiAppBar-root MuiAppBar-colorPrimary MuiAppBar-positionRelative bg-dark-charcoal css-1vazdj7-MuiPaper-root-MuiAppBar-root"
482
+ >
483
+ <div
484
+ style="flex-direction: row; display: flex; align-items: center; padding: 10px;"
485
+ >
486
+ <button
487
+ class="text-sm font-medium px-4 py-2 rounded bg-theme-color shadow-theme-color shadow-glow text-black "
488
+ >
489
+ Auto-Detect
490
+ </button>
491
+ <div
492
+ style="padding-right: 5px; padding-left: 5px;"
493
+ >
494
+ <div
495
+ class="css-6jtk0h"
496
+ >
497
+ <div
498
+ class="css-ci6nnc"
499
+ >
500
+ <svg
501
+ aria-hidden="true"
502
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
503
+ data-testid="AndroidRoundedIcon"
504
+ focusable="false"
505
+ viewBox="0 0 24 24"
506
+ >
507
+ <path
508
+ d="m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52M7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25m10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25"
509
+ />
510
+ </svg>
511
+ </div>
512
+ <div
513
+ class="MuiInputBase-root MuiInputBase-colorPrimary css-yv75zo-MuiInputBase-root"
514
+ >
515
+ <input
516
+ class="MuiInputBase-input css-yz9k0d-MuiInputBase-input"
517
+ placeholder="Fill in your app id"
518
+ type="text"
519
+ value="com.example"
520
+ />
521
+ </div>
522
+ </div>
523
+ </div>
524
+ <div
525
+ class="flex flex-row gap-2"
526
+ >
527
+ <button
528
+ class="text-sm font-medium px-4 py-2 rounded bg-theme-color shadow-theme-color shadow-glow text-black flex items-center"
529
+ >
530
+ <span
531
+ class="mr-1"
532
+ >
533
+ <svg
534
+ aria-hidden="true"
535
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
536
+ data-testid="StopIcon"
537
+ focusable="false"
538
+ viewBox="0 0 24 24"
539
+ >
540
+ <path
541
+ d="M6 6h12v12H6z"
542
+ />
543
+ </svg>
544
+ </span>
545
+ Stop Measuring
546
+ </button>
547
+ <div
548
+ data-theme="bright-cyan"
549
+ >
550
+ <button
551
+ class="text-sm font-medium px-4 py-2 rounded bg-theme-color shadow-theme-color shadow-glow text-black flex items-center"
552
+ >
553
+ <span
554
+ class="mr-1"
555
+ >
556
+ <svg
557
+ aria-hidden="true"
558
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
559
+ data-testid="DeleteIcon"
560
+ focusable="false"
561
+ viewBox="0 0 24 24"
562
+ >
563
+ <path
564
+ d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6zM19 4h-3.5l-1-1h-5l-1 1H5v2h14z"
565
+ />
566
+ </svg>
567
+ </span>
568
+ Reset
569
+ </button>
570
+ </div>
571
+ </div>
572
+ </div>
573
+ </header>
574
+ <div
575
+ class="flex flex-row w-full h-[calc(100%-50px)] overflow-y-hidden"
576
+ >
577
+ <div
578
+ class="overflow-auto w-full"
579
+ >
580
+ <button
581
+ aria-haspopup="true"
582
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-78trlr-MuiButtonBase-root-MuiIconButton-root"
583
+ id="report-menu-button"
584
+ style="float: right;"
585
+ tabindex="0"
586
+ type="button"
587
+ >
588
+ <svg
589
+ aria-hidden="true"
590
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit text-neutral-300 css-1vooibu-MuiSvgIcon-root"
591
+ data-testid="MoreVertIcon"
592
+ focusable="false"
593
+ viewBox="0 0 24 24"
594
+ >
595
+ <path
596
+ d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"
597
+ />
598
+ </svg>
599
+ <span
600
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
601
+ />
602
+ </button>
603
+ <div
604
+ class="css-1xehky4"
605
+ />
606
+ <div
607
+ class="flex flex-row overflow-x-scroll px-12 gap-12 w-full hide-scrollbar"
608
+ >
609
+ <div
610
+ class="ml-auto mr-auto"
611
+ >
612
+ <div
613
+ class="flex flex-col items-center py-6 px-10 bg-dark-charcoal border border-gray-800 rounded-lg w-[500px] flex-shrink-0"
614
+ >
615
+ <div
616
+ class="flex flex-row items-center gap-2"
617
+ >
618
+ <div
619
+ class="bg-theme-color rounded-full min-w-[12px] w-[12px] min-h-[12px]"
620
+ />
621
+ <div
622
+ class="text-neutral-300 text-center line-clamp-1"
623
+ >
624
+ com.example
625
+ </div>
626
+ </div>
627
+ <div
628
+ class="h-8"
629
+ />
630
+ <svg
631
+ fill="none"
632
+ height="152"
633
+ viewBox="0 0 200 200"
634
+ width="152"
635
+ >
636
+ <circle
637
+ cx="100"
638
+ cy="100"
639
+ r="90"
640
+ stroke="white"
641
+ stroke-opacity="0.1"
642
+ stroke-width="20"
643
+ />
644
+ <path
645
+ class="stroke-error"
646
+ d="M 116.8643183127152 188.405852565582 A 90 90 0 0 0 100 10"
647
+ stroke-width="20"
648
+ />
649
+ <text
650
+ aria-label="Score"
651
+ class="text-center text-6xl font-semibold fill-white"
652
+ dominant-baseline="central"
653
+ text-anchor="middle"
654
+ x="100"
655
+ y="100"
656
+ >
657
+ 47
658
+ </text>
659
+ </svg>
660
+ <div
661
+ class="h-8"
662
+ />
663
+ <div
664
+ class="w-full border rounded-lg border-gray-800"
665
+ >
666
+ <div
667
+ class="px-6 py-4 cursor-pointer"
668
+ >
669
+ <div
670
+ class="flex flex-row w-full items-center"
671
+ >
672
+ <div
673
+ class="flex-1"
674
+ >
675
+ <div
676
+ class="flex flex-row"
677
+ >
678
+ <div
679
+ class="text-neutral-300"
680
+ >
681
+ Average Test Runtime
682
+ </div>
683
+ <div
684
+ class="grow"
685
+ />
686
+ <div
687
+ class="text-neutral-300 whitespace-pre"
688
+ >
689
+ 1000 ms
690
+ </div>
691
+ <div
692
+ class="w-2"
693
+ />
694
+ </div>
695
+ </div>
696
+ <svg
697
+ class="rotate-0 transition-transform ease-linear"
698
+ fill="none"
699
+ height="24"
700
+ viewBox="0 0 24 24"
701
+ width="24"
702
+ >
703
+ <path
704
+ class="stroke-white"
705
+ d="m8.5 10 4 4 4-4"
706
+ stroke-linecap="round"
707
+ stroke-linejoin="round"
708
+ stroke-width="1.5"
709
+ />
710
+ </svg>
711
+ </div>
712
+ <div
713
+ class="cursor-default overflow-hidden transition-[height] duration-300"
714
+ style="height: 0px;"
715
+ >
716
+ <div
717
+ class="text-neutral-400 text-sm"
718
+ >
719
+ Time taken to run the test.
720
+ <br />
721
+ Can be helpful to measure Time To Interactive of your app, if the test is checking app start for instance.
722
+ </div>
723
+ </div>
724
+ </div>
725
+ </div>
726
+ <div
727
+ class="h-2"
728
+ />
729
+ <div
730
+ class="w-full border rounded-lg border-gray-800"
731
+ >
732
+ <div
733
+ class="px-6 py-4 cursor-pointer"
734
+ >
735
+ <div
736
+ class="flex flex-row w-full items-center"
737
+ >
738
+ <div
739
+ class="flex-1"
740
+ >
741
+ <div
742
+ class="flex flex-row"
743
+ >
744
+ <div
745
+ class="text-neutral-300"
746
+ >
747
+ Average FPS
748
+ </div>
749
+ <div
750
+ class="grow"
751
+ />
752
+ <div
753
+ class="text-neutral-300 whitespace-pre"
754
+ >
755
+ 120 FPS
756
+ </div>
757
+ <div
758
+ class="w-2"
759
+ />
760
+ </div>
761
+ </div>
762
+ <svg
763
+ class="rotate-0 transition-transform ease-linear"
764
+ fill="none"
765
+ height="24"
766
+ viewBox="0 0 24 24"
767
+ width="24"
768
+ >
769
+ <path
770
+ class="stroke-white"
771
+ d="m8.5 10 4 4 4-4"
772
+ stroke-linecap="round"
773
+ stroke-linejoin="round"
774
+ stroke-width="1.5"
775
+ />
776
+ </svg>
777
+ </div>
778
+ <div
779
+ class="cursor-default overflow-hidden transition-[height] duration-300"
780
+ style="height: 0px;"
781
+ >
782
+ <div
783
+ class="text-neutral-400 text-sm"
784
+ >
785
+ Frame Per Second. Your app should display 120 Frames Per Second to give an impression of fluidity. This number should be close to 120, otherwise it will seem laggy.
786
+ <br />
787
+ See
788
+ <a
789
+ href="https://www.youtube.com/watch?v=CaMTIgxCSqU"
790
+ rel="noreferrer"
791
+ target="_blank"
792
+ >
793
+ this video
794
+ </a>
795
+ for more details
796
+ </div>
797
+ </div>
798
+ </div>
799
+ </div>
800
+ <div
801
+ class="h-2"
802
+ />
803
+ <div
804
+ class="w-full border rounded-lg border-gray-800"
805
+ >
806
+ <div
807
+ class="px-6 py-4 cursor-pointer"
808
+ >
809
+ <div
810
+ class="flex flex-row w-full items-center"
811
+ >
812
+ <div
813
+ class="flex-1"
814
+ >
815
+ <div
816
+ class="flex flex-row"
817
+ >
818
+ <div
819
+ class="text-neutral-300"
820
+ >
821
+ Average CPU usage
822
+ </div>
823
+ <div
824
+ class="grow"
825
+ />
826
+ <div
827
+ class="text-neutral-300 whitespace-pre"
828
+ >
829
+ 83 %
830
+ </div>
831
+ <div
832
+ class="w-2"
833
+ />
834
+ </div>
835
+ </div>
836
+ <svg
837
+ class="rotate-0 transition-transform ease-linear"
838
+ fill="none"
839
+ height="24"
840
+ viewBox="0 0 24 24"
841
+ width="24"
842
+ >
843
+ <path
844
+ class="stroke-white"
845
+ d="m8.5 10 4 4 4-4"
846
+ stroke-linecap="round"
847
+ stroke-linejoin="round"
848
+ stroke-width="1.5"
849
+ />
850
+ </svg>
851
+ </div>
852
+ <div
853
+ class="cursor-default overflow-hidden transition-[height] duration-300"
854
+ style="height: 0px;"
855
+ >
856
+ <div
857
+ class="text-neutral-400 text-sm"
858
+ >
859
+ An app might run at high frame rates, such as 60 FPS or higher, but might be using too much processing power, so it's important to check CPU usage.
860
+ <br />
861
+ Depending on the device, this value can go up to
862
+ <code>
863
+ 100% x number of cores
864
+ </code>
865
+ . For instance, a Samsung A10s has 4 cores, so the max value would be 400%.
866
+ </div>
867
+ </div>
868
+ </div>
869
+ </div>
870
+ <div
871
+ class="h-2"
872
+ />
873
+ <div
874
+ class="w-full border rounded-lg border-gray-800"
875
+ >
876
+ <div
877
+ class="px-6 py-4 cursor-pointer"
878
+ >
879
+ <div
880
+ class="flex flex-row w-full items-center"
881
+ >
882
+ <div
883
+ class="flex-1"
884
+ >
885
+ <div
886
+ class="flex flex-row"
887
+ >
888
+ <div
889
+ class="text-neutral-300"
890
+ >
891
+ High CPU Usage
892
+ </div>
893
+ <div
894
+ class="grow"
895
+ />
896
+ <div
897
+ class="text-neutral-300 whitespace-pre"
898
+ >
899
+ <div
900
+ style="color: red;"
901
+ >
902
+ 0.5 s
903
+ </div>
904
+ </div>
905
+ <div
906
+ class="w-2"
907
+ />
908
+ </div>
909
+ </div>
910
+ <svg
911
+ class="rotate-0 transition-transform ease-linear"
912
+ fill="none"
913
+ height="24"
914
+ viewBox="0 0 24 24"
915
+ width="24"
916
+ >
917
+ <path
918
+ class="stroke-white"
919
+ d="m8.5 10 4 4 4-4"
920
+ stroke-linecap="round"
921
+ stroke-linejoin="round"
922
+ stroke-width="1.5"
923
+ />
924
+ </svg>
925
+ </div>
926
+ <div
927
+ class="cursor-default overflow-hidden transition-[height] duration-300"
928
+ style="height: 0px;"
929
+ >
930
+ <div
931
+ class="text-neutral-400 text-sm"
932
+ >
933
+ <div
934
+ class="mb-2"
935
+ >
936
+ <p>
937
+ Impacted threads:
938
+ </p>
939
+ <p
940
+ class="whitespace-pre"
941
+ >
942
+ - RN JS Thread for 0.5s
943
+ </p>
944
+ </div>
945
+ High CPU usage by a single process can cause app unresponsiveness, even with low overall CPU usage. For instance, an overworked JS thread in a React Native app may lead to unresponsiveness despite maintaining 120 FPS.
946
+ </div>
947
+ </div>
948
+ </div>
949
+ </div>
950
+ <div
951
+ class="h-2"
952
+ />
953
+ <div
954
+ class="w-full border rounded-lg border-gray-800"
955
+ >
956
+ <div
957
+ class="px-6 py-4 cursor-pointer"
958
+ >
959
+ <div
960
+ class="flex flex-row w-full items-center"
961
+ >
962
+ <div
963
+ class="flex-1"
964
+ >
965
+ <div
966
+ class="flex flex-row"
967
+ >
968
+ <div
969
+ class="text-neutral-300"
970
+ >
971
+ Average RAM usage
972
+ </div>
973
+ <div
974
+ class="grow"
975
+ />
976
+ <div
977
+ class="text-neutral-300 whitespace-pre"
978
+ >
979
+ 375.8 MB
980
+ </div>
981
+ <div
982
+ class="w-2"
983
+ />
984
+ </div>
985
+ </div>
986
+ <svg
987
+ class="rotate-0 transition-transform ease-linear"
988
+ fill="none"
989
+ height="24"
990
+ viewBox="0 0 24 24"
991
+ width="24"
992
+ >
993
+ <path
994
+ class="stroke-white"
995
+ d="m8.5 10 4 4 4-4"
996
+ stroke-linecap="round"
997
+ stroke-linejoin="round"
998
+ stroke-width="1.5"
999
+ />
1000
+ </svg>
1001
+ </div>
1002
+ <div
1003
+ class="cursor-default overflow-hidden transition-[height] duration-300"
1004
+ style="height: 0px;"
1005
+ >
1006
+ <div
1007
+ class="text-neutral-400 text-sm"
1008
+ >
1009
+ If an app consumes a large amount of RAM (random-access memory), it can impact the overall performance of the device and drain the battery more quickly.
1010
+ <br />
1011
+ It’s worth noting that results might be higher than expected since we measure RSS and not PSS (See
1012
+ <a
1013
+ href="https://github.com/bamlab/android-performance-profiler/issues/11#issuecomment-1219317891"
1014
+ rel="noreferrer"
1015
+ target="_blank"
1016
+ >
1017
+ here for more details
1018
+ </a>
1019
+ )
1020
+ </div>
1021
+ </div>
1022
+ </div>
1023
+ </div>
1024
+ </div>
1025
+ </div>
1026
+ </div>
1027
+ <div
1028
+ class="h-16"
1029
+ />
1030
+ <div
1031
+ class="mx-8 p-6 bg-dark-charcoal border border-gray-800 rounded-lg"
1032
+ >
1033
+ <div
1034
+ class="mb-[5px] ml-[10px] text-2xl text-white flex flex-row font-medium"
1035
+ >
1036
+ Frame rate (FPS)
1037
+ </div>
1038
+ <div
1039
+ class="ApexChartsMock"
1040
+ >
1041
+ {
1042
+ "chart": {
1043
+ "animations": {
1044
+ "enabled": true,
1045
+ "easing": "linear",
1046
+ "dynamicAnimation": {
1047
+ "speed": 500
1048
+ }
1049
+ },
1050
+ "zoom": {
1051
+ "enabled": false
1052
+ },
1053
+ "toolbar": {
1054
+ "show": false
1055
+ },
1056
+ "events": {}
1057
+ },
1058
+ "dataLabels": {
1059
+ "enabled": false
1060
+ },
1061
+ "stroke": {
1062
+ "curve": "smooth",
1063
+ "width": 2
1064
+ },
1065
+ "xaxis": {
1066
+ "labels": {
1067
+ "style": {
1068
+ "colors": "#FFFFFF99"
1069
+ }
1070
+ },
1071
+ "type": "numeric"
1072
+ },
1073
+ "yaxis": {
1074
+ "labels": {
1075
+ "style": {
1076
+ "colors": "#FFFFFF99"
1077
+ }
1078
+ },
1079
+ "min": 0
1080
+ },
1081
+ "colors": [
1082
+ "var(--bright-magenta)",
1083
+ "var(--bright-cyan)",
1084
+ "var(--bright-yellow)",
1085
+ "var(--bright-green)"
1086
+ ],
1087
+ "legend": {
1088
+ "labels": {
1089
+ "colors": "#FFFFFF99"
1090
+ }
1091
+ },
1092
+ "grid": {
1093
+ "borderColor": "#FFFFFF33",
1094
+ "strokeDashArray": 3
1095
+ },
1096
+ "annotations": {}
1097
+ }[
1098
+ {
1099
+ "name": "com.example",
1100
+ "data": [
1101
+ {
1102
+ "x": 0,
1103
+ "y": 120
1104
+ },
1105
+ {
1106
+ "x": 500,
1107
+ "y": 120
1108
+ }
1109
+ ]
1110
+ }
1111
+ ]
1112
+ </div>
1113
+ </div>
1114
+ <div
1115
+ class="h-10"
1116
+ />
1117
+ <div
1118
+ class="mx-8 p-6 bg-dark-charcoal border border-gray-800 rounded-lg"
1119
+ >
1120
+ <div
1121
+ class="mb-[5px] ml-[10px] text-2xl text-white flex flex-row font-medium"
1122
+ >
1123
+ Total CPU Usage (%)
1124
+ </div>
1125
+ <div
1126
+ class="ApexChartsMock"
1127
+ >
1128
+ {
1129
+ "chart": {
1130
+ "animations": {
1131
+ "enabled": true,
1132
+ "easing": "linear",
1133
+ "dynamicAnimation": {
1134
+ "speed": 500
1135
+ }
1136
+ },
1137
+ "zoom": {
1138
+ "enabled": false
1139
+ },
1140
+ "toolbar": {
1141
+ "show": false
1142
+ },
1143
+ "events": {}
1144
+ },
1145
+ "dataLabels": {
1146
+ "enabled": false
1147
+ },
1148
+ "stroke": {
1149
+ "curve": "smooth",
1150
+ "width": 2
1151
+ },
1152
+ "xaxis": {
1153
+ "labels": {
1154
+ "style": {
1155
+ "colors": "#FFFFFF99"
1156
+ }
1157
+ },
1158
+ "type": "numeric"
1159
+ },
1160
+ "yaxis": {
1161
+ "labels": {
1162
+ "style": {
1163
+ "colors": "#FFFFFF99"
1164
+ }
1165
+ },
1166
+ "min": 0
1167
+ },
1168
+ "colors": [
1169
+ "var(--bright-magenta)",
1170
+ "var(--bright-cyan)",
1171
+ "var(--bright-yellow)",
1172
+ "var(--bright-green)"
1173
+ ],
1174
+ "legend": {
1175
+ "labels": {
1176
+ "colors": "#FFFFFF99"
1177
+ }
1178
+ },
1179
+ "grid": {
1180
+ "borderColor": "#FFFFFF33",
1181
+ "strokeDashArray": 3
1182
+ },
1183
+ "annotations": {}
1184
+ }[
1185
+ {
1186
+ "name": "com.example",
1187
+ "data": [
1188
+ {
1189
+ "x": 0,
1190
+ "y": 166
1191
+ },
1192
+ {
1193
+ "x": 500,
1194
+ "y": 0
1195
+ }
1196
+ ]
1197
+ }
1198
+ ]
1199
+ </div>
1200
+ <div
1201
+ class="mb-[5px] ml-[10px] text-2xl text-white flex flex-row font-medium"
1202
+ >
1203
+ <div
1204
+ class="flex flex-row align-center"
1205
+ >
1206
+ <div
1207
+ class="mr-3 flex items-center"
1208
+ >
1209
+ <svg
1210
+ height="30"
1211
+ viewBox="-11.5 -10.23174 23 20.46348"
1212
+ width="30"
1213
+ xmlns="http://www.w3.org/2000/svg"
1214
+ >
1215
+ <circle
1216
+ fill="#61dafb"
1217
+ r="2.05"
1218
+ />
1219
+ <g
1220
+ fill="none"
1221
+ stroke="#61dafb"
1222
+ >
1223
+ <ellipse
1224
+ rx="11"
1225
+ ry="4.2"
1226
+ />
1227
+ <ellipse
1228
+ rx="11"
1229
+ ry="4.2"
1230
+ transform="matrix(.5 .8660254 -.8660254 .5 0 0)"
1231
+ />
1232
+ <ellipse
1233
+ rx="11"
1234
+ ry="4.2"
1235
+ transform="matrix(-.5 .8660254 -.8660254 -.5 0 0)"
1236
+ />
1237
+ </g>
1238
+ </svg>
1239
+ </div>
1240
+ RN JS Thread CPU Usage (%)
1241
+ </div>
1242
+ </div>
1243
+ <div
1244
+ class="ApexChartsMock"
1245
+ >
1246
+ {
1247
+ "chart": {
1248
+ "animations": {
1249
+ "enabled": true,
1250
+ "easing": "linear",
1251
+ "dynamicAnimation": {
1252
+ "speed": 500
1253
+ }
1254
+ },
1255
+ "zoom": {
1256
+ "enabled": false
1257
+ },
1258
+ "toolbar": {
1259
+ "show": false
1260
+ },
1261
+ "events": {}
1262
+ },
1263
+ "dataLabels": {
1264
+ "enabled": false
1265
+ },
1266
+ "stroke": {
1267
+ "curve": "smooth",
1268
+ "width": 2
1269
+ },
1270
+ "xaxis": {
1271
+ "labels": {
1272
+ "style": {
1273
+ "colors": "#FFFFFF99"
1274
+ }
1275
+ },
1276
+ "type": "numeric"
1277
+ },
1278
+ "yaxis": {
1279
+ "labels": {
1280
+ "style": {
1281
+ "colors": "#FFFFFF99"
1282
+ }
1283
+ },
1284
+ "min": 0,
1285
+ "max": 100
1286
+ },
1287
+ "colors": [
1288
+ "var(--bright-magenta)",
1289
+ "var(--bright-cyan)",
1290
+ "var(--bright-yellow)",
1291
+ "var(--bright-green)"
1292
+ ],
1293
+ "legend": {
1294
+ "labels": {
1295
+ "colors": "#FFFFFF99"
1296
+ },
1297
+ "showForSingleSeries": true
1298
+ },
1299
+ "grid": {
1300
+ "borderColor": "#FFFFFF33",
1301
+ "strokeDashArray": 3
1302
+ },
1303
+ "annotations": {}
1304
+ }[
1305
+ {
1306
+ "name": "RN JS Thread",
1307
+ "data": [
1308
+ {
1309
+ "x": 0,
1310
+ "y": 100
1311
+ },
1312
+ {
1313
+ "x": 500,
1314
+ "y": 0
1315
+ }
1316
+ ]
1317
+ }
1318
+ ]
1319
+ </div>
1320
+ <div
1321
+ class="border rounded-lg border-gray-800 py-4 px-4 cursor-pointer"
1322
+ >
1323
+ <div
1324
+ class="flex flex-row w-full items-center"
1325
+ >
1326
+ <div
1327
+ class="flex-1"
1328
+ >
1329
+ <div
1330
+ class="text-neutral-200 text-xl"
1331
+ >
1332
+ Other threads
1333
+ </div>
1334
+ </div>
1335
+ <svg
1336
+ class="rotate-180 transition-transform ease-linear"
1337
+ fill="none"
1338
+ height="24"
1339
+ viewBox="0 0 24 24"
1340
+ width="24"
1341
+ >
1342
+ <path
1343
+ class="stroke-white"
1344
+ d="m8.5 10 4 4 4-4"
1345
+ stroke-linecap="round"
1346
+ stroke-linejoin="round"
1347
+ stroke-width="1.5"
1348
+ />
1349
+ </svg>
1350
+ </div>
1351
+ <div
1352
+ class="cursor-default overflow-hidden transition-[height] duration-300"
1353
+ style="height: 0px;"
1354
+ >
1355
+ <div
1356
+ class="MuiTableContainer-root css-ahxqwc-MuiTableContainer-root"
1357
+ >
1358
+ <table
1359
+ class="MuiTable-root MuiTable-stickyHeader css-1t06eog-MuiTable-root"
1360
+ >
1361
+ <thead
1362
+ class="MuiTableHead-root css-15wwp11-MuiTableHead-root"
1363
+ >
1364
+ <tr
1365
+ class="MuiTableRow-root MuiTableRow-head css-1q1u3t4-MuiTableRow-root"
1366
+ >
1367
+ <th
1368
+ class="MuiTableCell-root MuiTableCell-head MuiTableCell-stickyHeader MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 !bg-dark-charcoal css-4riktk-MuiTableCell-root"
1369
+ scope="col"
1370
+ />
1371
+ <th
1372
+ class="MuiTableCell-root MuiTableCell-head MuiTableCell-stickyHeader MuiTableCell-alignLeft MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 !bg-dark-charcoal css-129gvqq-MuiTableCell-root"
1373
+ scope="col"
1374
+ >
1375
+ <span
1376
+ class="MuiButtonBase-root MuiTableSortLabel-root !text-neutral-300 css-1qgma8u-MuiButtonBase-root-MuiTableSortLabel-root"
1377
+ role="button"
1378
+ style="color: white; font-weight: 400;"
1379
+ tabindex="0"
1380
+ >
1381
+ Thread
1382
+ <svg
1383
+ class="MuiTableSortLabel-icon MuiTableSortLabel-iconDirectionAsc css-1hi7cb7-MuiTableSortLabel-icon"
1384
+ fill="none"
1385
+ height="24"
1386
+ viewBox="0 0 24 24"
1387
+ width="24"
1388
+ >
1389
+ <path
1390
+ class="stroke-white"
1391
+ d="m8.5 10 4 4 4-4"
1392
+ stroke-linecap="round"
1393
+ stroke-linejoin="round"
1394
+ stroke-width="1.5"
1395
+ />
1396
+ </svg>
1397
+ </span>
1398
+ </th>
1399
+ <th
1400
+ aria-sort="descending"
1401
+ class="MuiTableCell-root MuiTableCell-head MuiTableCell-stickyHeader MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 !bg-dark-charcoal css-1lyqn04-MuiTableCell-root"
1402
+ scope="col"
1403
+ >
1404
+ <span
1405
+ class="MuiButtonBase-root MuiTableSortLabel-root Mui-active !text-neutral-300 css-1qgma8u-MuiButtonBase-root-MuiTableSortLabel-root"
1406
+ role="button"
1407
+ style="color: white; font-weight: 700;"
1408
+ tabindex="0"
1409
+ >
1410
+ Average CPU Usage (%)
1411
+ <span
1412
+ class="MuiBox-root css-ty8jgw"
1413
+ >
1414
+ sorted descending
1415
+ </span>
1416
+ <svg
1417
+ class="MuiTableSortLabel-icon MuiTableSortLabel-iconDirectionDesc css-1ku2c56-MuiTableSortLabel-icon"
1418
+ fill="none"
1419
+ height="24"
1420
+ viewBox="0 0 24 24"
1421
+ width="24"
1422
+ >
1423
+ <path
1424
+ class="stroke-white"
1425
+ d="m8.5 10 4 4 4-4"
1426
+ stroke-linecap="round"
1427
+ stroke-linejoin="round"
1428
+ stroke-width="1.5"
1429
+ />
1430
+ </svg>
1431
+ </span>
1432
+ </th>
1433
+ <th
1434
+ class="MuiTableCell-root MuiTableCell-head MuiTableCell-stickyHeader MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 !bg-dark-charcoal css-1lyqn04-MuiTableCell-root"
1435
+ scope="col"
1436
+ >
1437
+ <span
1438
+ class="MuiButtonBase-root MuiTableSortLabel-root !text-neutral-300 css-1qgma8u-MuiButtonBase-root-MuiTableSortLabel-root"
1439
+ role="button"
1440
+ style="color: white; font-weight: 400;"
1441
+ tabindex="0"
1442
+ >
1443
+ Current CPU Usage (%)
1444
+ <svg
1445
+ class="MuiTableSortLabel-icon MuiTableSortLabel-iconDirectionAsc css-1hi7cb7-MuiTableSortLabel-icon"
1446
+ fill="none"
1447
+ height="24"
1448
+ viewBox="0 0 24 24"
1449
+ width="24"
1450
+ >
1451
+ <path
1452
+ class="stroke-white"
1453
+ d="m8.5 10 4 4 4-4"
1454
+ stroke-linecap="round"
1455
+ stroke-linejoin="round"
1456
+ stroke-width="1.5"
1457
+ />
1458
+ </svg>
1459
+ </span>
1460
+ </th>
1461
+ </tr>
1462
+ </thead>
1463
+ <tbody
1464
+ class="MuiTableBody-root css-apqrd9-MuiTableBody-root"
1465
+ >
1466
+ <tr
1467
+ aria-checked="true"
1468
+ class="MuiTableRow-root Mui-selected MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1469
+ role="checkbox"
1470
+ tabindex="-1"
1471
+ >
1472
+ <td
1473
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1474
+ >
1475
+ <span
1476
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium Mui-checked MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1477
+ >
1478
+ <input
1479
+ aria-labelledby="enhanced-table-checkbox-0"
1480
+ checked=""
1481
+ class="PrivateSwitchBase-input css-1m9pwf3"
1482
+ data-indeterminate="false"
1483
+ type="checkbox"
1484
+ />
1485
+ <svg
1486
+ aria-hidden="true"
1487
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1488
+ data-testid="CheckBoxIcon"
1489
+ focusable="false"
1490
+ viewBox="0 0 24 24"
1491
+ >
1492
+ <path
1493
+ d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
1494
+ />
1495
+ </svg>
1496
+ <span
1497
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1498
+ />
1499
+ </span>
1500
+ </td>
1501
+ <th
1502
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1503
+ id="enhanced-table-checkbox-0"
1504
+ scope="row"
1505
+ >
1506
+ RN JS Thread
1507
+ </th>
1508
+ <td
1509
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1510
+ >
1511
+ 50
1512
+ </td>
1513
+ <td
1514
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1515
+ >
1516
+ 0
1517
+ </td>
1518
+ </tr>
1519
+ <tr
1520
+ aria-checked="false"
1521
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1522
+ role="checkbox"
1523
+ tabindex="-1"
1524
+ >
1525
+ <td
1526
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1527
+ >
1528
+ <span
1529
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1530
+ >
1531
+ <input
1532
+ aria-labelledby="enhanced-table-checkbox-1"
1533
+ class="PrivateSwitchBase-input css-1m9pwf3"
1534
+ data-indeterminate="false"
1535
+ type="checkbox"
1536
+ />
1537
+ <svg
1538
+ aria-hidden="true"
1539
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1540
+ data-testid="CheckBoxOutlineBlankIcon"
1541
+ focusable="false"
1542
+ viewBox="0 0 24 24"
1543
+ >
1544
+ <path
1545
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1546
+ />
1547
+ </svg>
1548
+ <span
1549
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1550
+ />
1551
+ </span>
1552
+ </td>
1553
+ <th
1554
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1555
+ id="enhanced-table-checkbox-1"
1556
+ scope="row"
1557
+ >
1558
+ com.example
1559
+ </th>
1560
+ <td
1561
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1562
+ >
1563
+ 24
1564
+ </td>
1565
+ <td
1566
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1567
+ >
1568
+ 0
1569
+ </td>
1570
+ </tr>
1571
+ <tr
1572
+ aria-checked="false"
1573
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1574
+ role="checkbox"
1575
+ tabindex="-1"
1576
+ >
1577
+ <td
1578
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1579
+ >
1580
+ <span
1581
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1582
+ >
1583
+ <input
1584
+ aria-labelledby="enhanced-table-checkbox-2"
1585
+ class="PrivateSwitchBase-input css-1m9pwf3"
1586
+ data-indeterminate="false"
1587
+ type="checkbox"
1588
+ />
1589
+ <svg
1590
+ aria-hidden="true"
1591
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1592
+ data-testid="CheckBoxOutlineBlankIcon"
1593
+ focusable="false"
1594
+ viewBox="0 0 24 24"
1595
+ >
1596
+ <path
1597
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1598
+ />
1599
+ </svg>
1600
+ <span
1601
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1602
+ />
1603
+ </span>
1604
+ </td>
1605
+ <th
1606
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1607
+ id="enhanced-table-checkbox-2"
1608
+ scope="row"
1609
+ >
1610
+ RenderThread
1611
+ </th>
1612
+ <td
1613
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1614
+ >
1615
+ 3
1616
+ </td>
1617
+ <td
1618
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1619
+ >
1620
+ 0
1621
+ </td>
1622
+ </tr>
1623
+ <tr
1624
+ aria-checked="false"
1625
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1626
+ role="checkbox"
1627
+ tabindex="-1"
1628
+ >
1629
+ <td
1630
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1631
+ >
1632
+ <span
1633
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1634
+ >
1635
+ <input
1636
+ aria-labelledby="enhanced-table-checkbox-3"
1637
+ class="PrivateSwitchBase-input css-1m9pwf3"
1638
+ data-indeterminate="false"
1639
+ type="checkbox"
1640
+ />
1641
+ <svg
1642
+ aria-hidden="true"
1643
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1644
+ data-testid="CheckBoxOutlineBlankIcon"
1645
+ focusable="false"
1646
+ viewBox="0 0 24 24"
1647
+ >
1648
+ <path
1649
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1650
+ />
1651
+ </svg>
1652
+ <span
1653
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1654
+ />
1655
+ </span>
1656
+ </td>
1657
+ <th
1658
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1659
+ id="enhanced-table-checkbox-3"
1660
+ scope="row"
1661
+ >
1662
+ OkHttp Dispatch (2)
1663
+ </th>
1664
+ <td
1665
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1666
+ >
1667
+ 2
1668
+ </td>
1669
+ <td
1670
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1671
+ >
1672
+ 0
1673
+ </td>
1674
+ </tr>
1675
+ <tr
1676
+ aria-checked="false"
1677
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1678
+ role="checkbox"
1679
+ tabindex="-1"
1680
+ >
1681
+ <td
1682
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1683
+ >
1684
+ <span
1685
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1686
+ >
1687
+ <input
1688
+ aria-labelledby="enhanced-table-checkbox-4"
1689
+ class="PrivateSwitchBase-input css-1m9pwf3"
1690
+ data-indeterminate="false"
1691
+ type="checkbox"
1692
+ />
1693
+ <svg
1694
+ aria-hidden="true"
1695
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1696
+ data-testid="CheckBoxOutlineBlankIcon"
1697
+ focusable="false"
1698
+ viewBox="0 0 24 24"
1699
+ >
1700
+ <path
1701
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1702
+ />
1703
+ </svg>
1704
+ <span
1705
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1706
+ />
1707
+ </span>
1708
+ </td>
1709
+ <th
1710
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1711
+ id="enhanced-table-checkbox-4"
1712
+ scope="row"
1713
+ >
1714
+ Jit thread pool
1715
+ </th>
1716
+ <td
1717
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1718
+ >
1719
+ 1
1720
+ </td>
1721
+ <td
1722
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1723
+ >
1724
+ 0
1725
+ </td>
1726
+ </tr>
1727
+ <tr
1728
+ aria-checked="false"
1729
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1730
+ role="checkbox"
1731
+ tabindex="-1"
1732
+ >
1733
+ <td
1734
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1735
+ >
1736
+ <span
1737
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1738
+ >
1739
+ <input
1740
+ aria-labelledby="enhanced-table-checkbox-5"
1741
+ class="PrivateSwitchBase-input css-1m9pwf3"
1742
+ data-indeterminate="false"
1743
+ type="checkbox"
1744
+ />
1745
+ <svg
1746
+ aria-hidden="true"
1747
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1748
+ data-testid="CheckBoxOutlineBlankIcon"
1749
+ focusable="false"
1750
+ viewBox="0 0 24 24"
1751
+ >
1752
+ <path
1753
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1754
+ />
1755
+ </svg>
1756
+ <span
1757
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1758
+ />
1759
+ </span>
1760
+ </td>
1761
+ <th
1762
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1763
+ id="enhanced-table-checkbox-5"
1764
+ scope="row"
1765
+ >
1766
+ OkHttp Dispatch
1767
+ </th>
1768
+ <td
1769
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1770
+ >
1771
+ 1
1772
+ </td>
1773
+ <td
1774
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1775
+ >
1776
+ 0
1777
+ </td>
1778
+ </tr>
1779
+ <tr
1780
+ aria-checked="false"
1781
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1782
+ role="checkbox"
1783
+ tabindex="-1"
1784
+ >
1785
+ <td
1786
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1787
+ >
1788
+ <span
1789
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1790
+ >
1791
+ <input
1792
+ aria-labelledby="enhanced-table-checkbox-6"
1793
+ class="PrivateSwitchBase-input css-1m9pwf3"
1794
+ data-indeterminate="false"
1795
+ type="checkbox"
1796
+ />
1797
+ <svg
1798
+ aria-hidden="true"
1799
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1800
+ data-testid="CheckBoxOutlineBlankIcon"
1801
+ focusable="false"
1802
+ viewBox="0 0 24 24"
1803
+ >
1804
+ <path
1805
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1806
+ />
1807
+ </svg>
1808
+ <span
1809
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1810
+ />
1811
+ </span>
1812
+ </td>
1813
+ <th
1814
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1815
+ id="enhanced-table-checkbox-6"
1816
+ scope="row"
1817
+ >
1818
+ mali-cmar-backe
1819
+ </th>
1820
+ <td
1821
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1822
+ >
1823
+ 1
1824
+ </td>
1825
+ <td
1826
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1827
+ >
1828
+ 0
1829
+ </td>
1830
+ </tr>
1831
+ <tr
1832
+ aria-checked="false"
1833
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1834
+ role="checkbox"
1835
+ tabindex="-1"
1836
+ >
1837
+ <td
1838
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1839
+ >
1840
+ <span
1841
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1842
+ >
1843
+ <input
1844
+ aria-labelledby="enhanced-table-checkbox-7"
1845
+ class="PrivateSwitchBase-input css-1m9pwf3"
1846
+ data-indeterminate="false"
1847
+ type="checkbox"
1848
+ />
1849
+ <svg
1850
+ aria-hidden="true"
1851
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1852
+ data-testid="CheckBoxOutlineBlankIcon"
1853
+ focusable="false"
1854
+ viewBox="0 0 24 24"
1855
+ >
1856
+ <path
1857
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1858
+ />
1859
+ </svg>
1860
+ <span
1861
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1862
+ />
1863
+ </span>
1864
+ </td>
1865
+ <th
1866
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1867
+ id="enhanced-table-checkbox-7"
1868
+ scope="row"
1869
+ >
1870
+ RN Bridge Thread
1871
+ </th>
1872
+ <td
1873
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1874
+ >
1875
+ 1
1876
+ </td>
1877
+ <td
1878
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1879
+ >
1880
+ 0
1881
+ </td>
1882
+ </tr>
1883
+ <tr
1884
+ aria-checked="false"
1885
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1886
+ role="checkbox"
1887
+ tabindex="-1"
1888
+ >
1889
+ <td
1890
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1891
+ >
1892
+ <span
1893
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1894
+ >
1895
+ <input
1896
+ aria-labelledby="enhanced-table-checkbox-8"
1897
+ class="PrivateSwitchBase-input css-1m9pwf3"
1898
+ data-indeterminate="false"
1899
+ type="checkbox"
1900
+ />
1901
+ <svg
1902
+ aria-hidden="true"
1903
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1904
+ data-testid="CheckBoxOutlineBlankIcon"
1905
+ focusable="false"
1906
+ viewBox="0 0 24 24"
1907
+ >
1908
+ <path
1909
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1910
+ />
1911
+ </svg>
1912
+ <span
1913
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1914
+ />
1915
+ </span>
1916
+ </td>
1917
+ <th
1918
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1919
+ id="enhanced-table-checkbox-8"
1920
+ scope="row"
1921
+ >
1922
+ Signal Catcher
1923
+ </th>
1924
+ <td
1925
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1926
+ >
1927
+ 0
1928
+ </td>
1929
+ <td
1930
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1931
+ >
1932
+ 0
1933
+ </td>
1934
+ </tr>
1935
+ <tr
1936
+ aria-checked="false"
1937
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1938
+ role="checkbox"
1939
+ tabindex="-1"
1940
+ >
1941
+ <td
1942
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1943
+ >
1944
+ <span
1945
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1946
+ >
1947
+ <input
1948
+ aria-labelledby="enhanced-table-checkbox-9"
1949
+ class="PrivateSwitchBase-input css-1m9pwf3"
1950
+ data-indeterminate="false"
1951
+ type="checkbox"
1952
+ />
1953
+ <svg
1954
+ aria-hidden="true"
1955
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
1956
+ data-testid="CheckBoxOutlineBlankIcon"
1957
+ focusable="false"
1958
+ viewBox="0 0 24 24"
1959
+ >
1960
+ <path
1961
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
1962
+ />
1963
+ </svg>
1964
+ <span
1965
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
1966
+ />
1967
+ </span>
1968
+ </td>
1969
+ <th
1970
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
1971
+ id="enhanced-table-checkbox-9"
1972
+ scope="row"
1973
+ >
1974
+ perfetto_hprof_
1975
+ </th>
1976
+ <td
1977
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1978
+ >
1979
+ 0
1980
+ </td>
1981
+ <td
1982
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
1983
+ >
1984
+ 0
1985
+ </td>
1986
+ </tr>
1987
+ <tr
1988
+ aria-checked="false"
1989
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
1990
+ role="checkbox"
1991
+ tabindex="-1"
1992
+ >
1993
+ <td
1994
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
1995
+ >
1996
+ <span
1997
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
1998
+ >
1999
+ <input
2000
+ aria-labelledby="enhanced-table-checkbox-10"
2001
+ class="PrivateSwitchBase-input css-1m9pwf3"
2002
+ data-indeterminate="false"
2003
+ type="checkbox"
2004
+ />
2005
+ <svg
2006
+ aria-hidden="true"
2007
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2008
+ data-testid="CheckBoxOutlineBlankIcon"
2009
+ focusable="false"
2010
+ viewBox="0 0 24 24"
2011
+ >
2012
+ <path
2013
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2014
+ />
2015
+ </svg>
2016
+ <span
2017
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2018
+ />
2019
+ </span>
2020
+ </td>
2021
+ <th
2022
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2023
+ id="enhanced-table-checkbox-10"
2024
+ scope="row"
2025
+ >
2026
+ ADB-JDWP Connec
2027
+ </th>
2028
+ <td
2029
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2030
+ >
2031
+ 0
2032
+ </td>
2033
+ <td
2034
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2035
+ >
2036
+ 0
2037
+ </td>
2038
+ </tr>
2039
+ <tr
2040
+ aria-checked="false"
2041
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2042
+ role="checkbox"
2043
+ tabindex="-1"
2044
+ >
2045
+ <td
2046
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2047
+ >
2048
+ <span
2049
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2050
+ >
2051
+ <input
2052
+ aria-labelledby="enhanced-table-checkbox-11"
2053
+ class="PrivateSwitchBase-input css-1m9pwf3"
2054
+ data-indeterminate="false"
2055
+ type="checkbox"
2056
+ />
2057
+ <svg
2058
+ aria-hidden="true"
2059
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2060
+ data-testid="CheckBoxOutlineBlankIcon"
2061
+ focusable="false"
2062
+ viewBox="0 0 24 24"
2063
+ >
2064
+ <path
2065
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2066
+ />
2067
+ </svg>
2068
+ <span
2069
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2070
+ />
2071
+ </span>
2072
+ </td>
2073
+ <th
2074
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2075
+ id="enhanced-table-checkbox-11"
2076
+ scope="row"
2077
+ >
2078
+ HeapTaskDaemon
2079
+ </th>
2080
+ <td
2081
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2082
+ >
2083
+ 0
2084
+ </td>
2085
+ <td
2086
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2087
+ >
2088
+ 0
2089
+ </td>
2090
+ </tr>
2091
+ <tr
2092
+ aria-checked="false"
2093
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2094
+ role="checkbox"
2095
+ tabindex="-1"
2096
+ >
2097
+ <td
2098
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2099
+ >
2100
+ <span
2101
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2102
+ >
2103
+ <input
2104
+ aria-labelledby="enhanced-table-checkbox-12"
2105
+ class="PrivateSwitchBase-input css-1m9pwf3"
2106
+ data-indeterminate="false"
2107
+ type="checkbox"
2108
+ />
2109
+ <svg
2110
+ aria-hidden="true"
2111
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2112
+ data-testid="CheckBoxOutlineBlankIcon"
2113
+ focusable="false"
2114
+ viewBox="0 0 24 24"
2115
+ >
2116
+ <path
2117
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2118
+ />
2119
+ </svg>
2120
+ <span
2121
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2122
+ />
2123
+ </span>
2124
+ </td>
2125
+ <th
2126
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2127
+ id="enhanced-table-checkbox-12"
2128
+ scope="row"
2129
+ >
2130
+ ReferenceQueueD
2131
+ </th>
2132
+ <td
2133
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2134
+ >
2135
+ 0
2136
+ </td>
2137
+ <td
2138
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2139
+ >
2140
+ 0
2141
+ </td>
2142
+ </tr>
2143
+ <tr
2144
+ aria-checked="false"
2145
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2146
+ role="checkbox"
2147
+ tabindex="-1"
2148
+ >
2149
+ <td
2150
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2151
+ >
2152
+ <span
2153
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2154
+ >
2155
+ <input
2156
+ aria-labelledby="enhanced-table-checkbox-13"
2157
+ class="PrivateSwitchBase-input css-1m9pwf3"
2158
+ data-indeterminate="false"
2159
+ type="checkbox"
2160
+ />
2161
+ <svg
2162
+ aria-hidden="true"
2163
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2164
+ data-testid="CheckBoxOutlineBlankIcon"
2165
+ focusable="false"
2166
+ viewBox="0 0 24 24"
2167
+ >
2168
+ <path
2169
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2170
+ />
2171
+ </svg>
2172
+ <span
2173
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2174
+ />
2175
+ </span>
2176
+ </td>
2177
+ <th
2178
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2179
+ id="enhanced-table-checkbox-13"
2180
+ scope="row"
2181
+ >
2182
+ FinalizerDaemon
2183
+ </th>
2184
+ <td
2185
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2186
+ >
2187
+ 0
2188
+ </td>
2189
+ <td
2190
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2191
+ >
2192
+ 0
2193
+ </td>
2194
+ </tr>
2195
+ <tr
2196
+ aria-checked="false"
2197
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2198
+ role="checkbox"
2199
+ tabindex="-1"
2200
+ >
2201
+ <td
2202
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2203
+ >
2204
+ <span
2205
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2206
+ >
2207
+ <input
2208
+ aria-labelledby="enhanced-table-checkbox-14"
2209
+ class="PrivateSwitchBase-input css-1m9pwf3"
2210
+ data-indeterminate="false"
2211
+ type="checkbox"
2212
+ />
2213
+ <svg
2214
+ aria-hidden="true"
2215
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2216
+ data-testid="CheckBoxOutlineBlankIcon"
2217
+ focusable="false"
2218
+ viewBox="0 0 24 24"
2219
+ >
2220
+ <path
2221
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2222
+ />
2223
+ </svg>
2224
+ <span
2225
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2226
+ />
2227
+ </span>
2228
+ </td>
2229
+ <th
2230
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2231
+ id="enhanced-table-checkbox-14"
2232
+ scope="row"
2233
+ >
2234
+ FinalizerWatchd
2235
+ </th>
2236
+ <td
2237
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2238
+ >
2239
+ 0
2240
+ </td>
2241
+ <td
2242
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2243
+ >
2244
+ 0
2245
+ </td>
2246
+ </tr>
2247
+ <tr
2248
+ aria-checked="false"
2249
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2250
+ role="checkbox"
2251
+ tabindex="-1"
2252
+ >
2253
+ <td
2254
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2255
+ >
2256
+ <span
2257
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2258
+ >
2259
+ <input
2260
+ aria-labelledby="enhanced-table-checkbox-15"
2261
+ class="PrivateSwitchBase-input css-1m9pwf3"
2262
+ data-indeterminate="false"
2263
+ type="checkbox"
2264
+ />
2265
+ <svg
2266
+ aria-hidden="true"
2267
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2268
+ data-testid="CheckBoxOutlineBlankIcon"
2269
+ focusable="false"
2270
+ viewBox="0 0 24 24"
2271
+ >
2272
+ <path
2273
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2274
+ />
2275
+ </svg>
2276
+ <span
2277
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2278
+ />
2279
+ </span>
2280
+ </td>
2281
+ <th
2282
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2283
+ id="enhanced-table-checkbox-15"
2284
+ scope="row"
2285
+ >
2286
+ Binder #1
2287
+ </th>
2288
+ <td
2289
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2290
+ >
2291
+ 0
2292
+ </td>
2293
+ <td
2294
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2295
+ >
2296
+ 0
2297
+ </td>
2298
+ </tr>
2299
+ <tr
2300
+ aria-checked="false"
2301
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2302
+ role="checkbox"
2303
+ tabindex="-1"
2304
+ >
2305
+ <td
2306
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2307
+ >
2308
+ <span
2309
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2310
+ >
2311
+ <input
2312
+ aria-labelledby="enhanced-table-checkbox-16"
2313
+ class="PrivateSwitchBase-input css-1m9pwf3"
2314
+ data-indeterminate="false"
2315
+ type="checkbox"
2316
+ />
2317
+ <svg
2318
+ aria-hidden="true"
2319
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2320
+ data-testid="CheckBoxOutlineBlankIcon"
2321
+ focusable="false"
2322
+ viewBox="0 0 24 24"
2323
+ >
2324
+ <path
2325
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2326
+ />
2327
+ </svg>
2328
+ <span
2329
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2330
+ />
2331
+ </span>
2332
+ </td>
2333
+ <th
2334
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2335
+ id="enhanced-table-checkbox-16"
2336
+ scope="row"
2337
+ >
2338
+ Binder #2
2339
+ </th>
2340
+ <td
2341
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2342
+ >
2343
+ 0
2344
+ </td>
2345
+ <td
2346
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2347
+ >
2348
+ 0
2349
+ </td>
2350
+ </tr>
2351
+ <tr
2352
+ aria-checked="false"
2353
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2354
+ role="checkbox"
2355
+ tabindex="-1"
2356
+ >
2357
+ <td
2358
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2359
+ >
2360
+ <span
2361
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2362
+ >
2363
+ <input
2364
+ aria-labelledby="enhanced-table-checkbox-17"
2365
+ class="PrivateSwitchBase-input css-1m9pwf3"
2366
+ data-indeterminate="false"
2367
+ type="checkbox"
2368
+ />
2369
+ <svg
2370
+ aria-hidden="true"
2371
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2372
+ data-testid="CheckBoxOutlineBlankIcon"
2373
+ focusable="false"
2374
+ viewBox="0 0 24 24"
2375
+ >
2376
+ <path
2377
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2378
+ />
2379
+ </svg>
2380
+ <span
2381
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2382
+ />
2383
+ </span>
2384
+ </td>
2385
+ <th
2386
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2387
+ id="enhanced-table-checkbox-17"
2388
+ scope="row"
2389
+ >
2390
+ Binder #3
2391
+ </th>
2392
+ <td
2393
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2394
+ >
2395
+ 0
2396
+ </td>
2397
+ <td
2398
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2399
+ >
2400
+ 0
2401
+ </td>
2402
+ </tr>
2403
+ <tr
2404
+ aria-checked="false"
2405
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2406
+ role="checkbox"
2407
+ tabindex="-1"
2408
+ >
2409
+ <td
2410
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2411
+ >
2412
+ <span
2413
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2414
+ >
2415
+ <input
2416
+ aria-labelledby="enhanced-table-checkbox-18"
2417
+ class="PrivateSwitchBase-input css-1m9pwf3"
2418
+ data-indeterminate="false"
2419
+ type="checkbox"
2420
+ />
2421
+ <svg
2422
+ aria-hidden="true"
2423
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2424
+ data-testid="CheckBoxOutlineBlankIcon"
2425
+ focusable="false"
2426
+ viewBox="0 0 24 24"
2427
+ >
2428
+ <path
2429
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2430
+ />
2431
+ </svg>
2432
+ <span
2433
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2434
+ />
2435
+ </span>
2436
+ </td>
2437
+ <th
2438
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2439
+ id="enhanced-table-checkbox-18"
2440
+ scope="row"
2441
+ >
2442
+ Profile Saver
2443
+ </th>
2444
+ <td
2445
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2446
+ >
2447
+ 0
2448
+ </td>
2449
+ <td
2450
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2451
+ >
2452
+ 0
2453
+ </td>
2454
+ </tr>
2455
+ <tr
2456
+ aria-checked="false"
2457
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2458
+ role="checkbox"
2459
+ tabindex="-1"
2460
+ >
2461
+ <td
2462
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2463
+ >
2464
+ <span
2465
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2466
+ >
2467
+ <input
2468
+ aria-labelledby="enhanced-table-checkbox-19"
2469
+ class="PrivateSwitchBase-input css-1m9pwf3"
2470
+ data-indeterminate="false"
2471
+ type="checkbox"
2472
+ />
2473
+ <svg
2474
+ aria-hidden="true"
2475
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2476
+ data-testid="CheckBoxOutlineBlankIcon"
2477
+ focusable="false"
2478
+ viewBox="0 0 24 24"
2479
+ >
2480
+ <path
2481
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2482
+ />
2483
+ </svg>
2484
+ <span
2485
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2486
+ />
2487
+ </span>
2488
+ </td>
2489
+ <th
2490
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2491
+ id="enhanced-table-checkbox-19"
2492
+ scope="row"
2493
+ >
2494
+ queued-work-loo
2495
+ </th>
2496
+ <td
2497
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2498
+ >
2499
+ 0
2500
+ </td>
2501
+ <td
2502
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2503
+ >
2504
+ 0
2505
+ </td>
2506
+ </tr>
2507
+ <tr
2508
+ aria-checked="false"
2509
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2510
+ role="checkbox"
2511
+ tabindex="-1"
2512
+ >
2513
+ <td
2514
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2515
+ >
2516
+ <span
2517
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2518
+ >
2519
+ <input
2520
+ aria-labelledby="enhanced-table-checkbox-20"
2521
+ class="PrivateSwitchBase-input css-1m9pwf3"
2522
+ data-indeterminate="false"
2523
+ type="checkbox"
2524
+ />
2525
+ <svg
2526
+ aria-hidden="true"
2527
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2528
+ data-testid="CheckBoxOutlineBlankIcon"
2529
+ focusable="false"
2530
+ viewBox="0 0 24 24"
2531
+ >
2532
+ <path
2533
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2534
+ />
2535
+ </svg>
2536
+ <span
2537
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2538
+ />
2539
+ </span>
2540
+ </td>
2541
+ <th
2542
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2543
+ id="enhanced-table-checkbox-20"
2544
+ scope="row"
2545
+ >
2546
+ AsyncTask #1
2547
+ </th>
2548
+ <td
2549
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2550
+ >
2551
+ 0
2552
+ </td>
2553
+ <td
2554
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2555
+ >
2556
+ 0
2557
+ </td>
2558
+ </tr>
2559
+ <tr
2560
+ aria-checked="false"
2561
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2562
+ role="checkbox"
2563
+ tabindex="-1"
2564
+ >
2565
+ <td
2566
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2567
+ >
2568
+ <span
2569
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2570
+ >
2571
+ <input
2572
+ aria-labelledby="enhanced-table-checkbox-21"
2573
+ class="PrivateSwitchBase-input css-1m9pwf3"
2574
+ data-indeterminate="false"
2575
+ type="checkbox"
2576
+ />
2577
+ <svg
2578
+ aria-hidden="true"
2579
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2580
+ data-testid="CheckBoxOutlineBlankIcon"
2581
+ focusable="false"
2582
+ viewBox="0 0 24 24"
2583
+ >
2584
+ <path
2585
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2586
+ />
2587
+ </svg>
2588
+ <span
2589
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2590
+ />
2591
+ </span>
2592
+ </td>
2593
+ <th
2594
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2595
+ id="enhanced-table-checkbox-21"
2596
+ scope="row"
2597
+ >
2598
+ FlipperEventBas
2599
+ </th>
2600
+ <td
2601
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2602
+ >
2603
+ 0
2604
+ </td>
2605
+ <td
2606
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2607
+ >
2608
+ 0
2609
+ </td>
2610
+ </tr>
2611
+ <tr
2612
+ aria-checked="false"
2613
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2614
+ role="checkbox"
2615
+ tabindex="-1"
2616
+ >
2617
+ <td
2618
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2619
+ >
2620
+ <span
2621
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2622
+ >
2623
+ <input
2624
+ aria-labelledby="enhanced-table-checkbox-22"
2625
+ class="PrivateSwitchBase-input css-1m9pwf3"
2626
+ data-indeterminate="false"
2627
+ type="checkbox"
2628
+ />
2629
+ <svg
2630
+ aria-hidden="true"
2631
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2632
+ data-testid="CheckBoxOutlineBlankIcon"
2633
+ focusable="false"
2634
+ viewBox="0 0 24 24"
2635
+ >
2636
+ <path
2637
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2638
+ />
2639
+ </svg>
2640
+ <span
2641
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2642
+ />
2643
+ </span>
2644
+ </td>
2645
+ <th
2646
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2647
+ id="enhanced-table-checkbox-22"
2648
+ scope="row"
2649
+ >
2650
+ FlipperConnecti
2651
+ </th>
2652
+ <td
2653
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2654
+ >
2655
+ 0
2656
+ </td>
2657
+ <td
2658
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2659
+ >
2660
+ 0
2661
+ </td>
2662
+ </tr>
2663
+ <tr
2664
+ aria-checked="false"
2665
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2666
+ role="checkbox"
2667
+ tabindex="-1"
2668
+ >
2669
+ <td
2670
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2671
+ >
2672
+ <span
2673
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2674
+ >
2675
+ <input
2676
+ aria-labelledby="enhanced-table-checkbox-23"
2677
+ class="PrivateSwitchBase-input css-1m9pwf3"
2678
+ data-indeterminate="false"
2679
+ type="checkbox"
2680
+ />
2681
+ <svg
2682
+ aria-hidden="true"
2683
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2684
+ data-testid="CheckBoxOutlineBlankIcon"
2685
+ focusable="false"
2686
+ viewBox="0 0 24 24"
2687
+ >
2688
+ <path
2689
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2690
+ />
2691
+ </svg>
2692
+ <span
2693
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2694
+ />
2695
+ </span>
2696
+ </td>
2697
+ <th
2698
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2699
+ id="enhanced-table-checkbox-23"
2700
+ scope="row"
2701
+ >
2702
+ HybridData Dest
2703
+ </th>
2704
+ <td
2705
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2706
+ >
2707
+ 0
2708
+ </td>
2709
+ <td
2710
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2711
+ >
2712
+ 0
2713
+ </td>
2714
+ </tr>
2715
+ <tr
2716
+ aria-checked="false"
2717
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2718
+ role="checkbox"
2719
+ tabindex="-1"
2720
+ >
2721
+ <td
2722
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2723
+ >
2724
+ <span
2725
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2726
+ >
2727
+ <input
2728
+ aria-labelledby="enhanced-table-checkbox-24"
2729
+ class="PrivateSwitchBase-input css-1m9pwf3"
2730
+ data-indeterminate="false"
2731
+ type="checkbox"
2732
+ />
2733
+ <svg
2734
+ aria-hidden="true"
2735
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2736
+ data-testid="CheckBoxOutlineBlankIcon"
2737
+ focusable="false"
2738
+ viewBox="0 0 24 24"
2739
+ >
2740
+ <path
2741
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2742
+ />
2743
+ </svg>
2744
+ <span
2745
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2746
+ />
2747
+ </span>
2748
+ </td>
2749
+ <th
2750
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2751
+ id="enhanced-table-checkbox-24"
2752
+ scope="row"
2753
+ >
2754
+ FutureTimekeepr
2755
+ </th>
2756
+ <td
2757
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2758
+ >
2759
+ 0
2760
+ </td>
2761
+ <td
2762
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2763
+ >
2764
+ 0
2765
+ </td>
2766
+ </tr>
2767
+ <tr
2768
+ aria-checked="false"
2769
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2770
+ role="checkbox"
2771
+ tabindex="-1"
2772
+ >
2773
+ <td
2774
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2775
+ >
2776
+ <span
2777
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2778
+ >
2779
+ <input
2780
+ aria-labelledby="enhanced-table-checkbox-25"
2781
+ class="PrivateSwitchBase-input css-1m9pwf3"
2782
+ data-indeterminate="false"
2783
+ type="checkbox"
2784
+ />
2785
+ <svg
2786
+ aria-hidden="true"
2787
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2788
+ data-testid="CheckBoxOutlineBlankIcon"
2789
+ focusable="false"
2790
+ viewBox="0 0 24 24"
2791
+ >
2792
+ <path
2793
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2794
+ />
2795
+ </svg>
2796
+ <span
2797
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2798
+ />
2799
+ </span>
2800
+ </td>
2801
+ <th
2802
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2803
+ id="enhanced-table-checkbox-25"
2804
+ scope="row"
2805
+ >
2806
+ mali-mem-purge
2807
+ </th>
2808
+ <td
2809
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2810
+ >
2811
+ 0
2812
+ </td>
2813
+ <td
2814
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2815
+ >
2816
+ 0
2817
+ </td>
2818
+ </tr>
2819
+ <tr
2820
+ aria-checked="false"
2821
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2822
+ role="checkbox"
2823
+ tabindex="-1"
2824
+ >
2825
+ <td
2826
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2827
+ >
2828
+ <span
2829
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2830
+ >
2831
+ <input
2832
+ aria-labelledby="enhanced-table-checkbox-26"
2833
+ class="PrivateSwitchBase-input css-1m9pwf3"
2834
+ data-indeterminate="false"
2835
+ type="checkbox"
2836
+ />
2837
+ <svg
2838
+ aria-hidden="true"
2839
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2840
+ data-testid="CheckBoxOutlineBlankIcon"
2841
+ focusable="false"
2842
+ viewBox="0 0 24 24"
2843
+ >
2844
+ <path
2845
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2846
+ />
2847
+ </svg>
2848
+ <span
2849
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2850
+ />
2851
+ </span>
2852
+ </td>
2853
+ <th
2854
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2855
+ id="enhanced-table-checkbox-26"
2856
+ scope="row"
2857
+ >
2858
+ mali-utility-wo
2859
+ </th>
2860
+ <td
2861
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2862
+ >
2863
+ 0
2864
+ </td>
2865
+ <td
2866
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2867
+ >
2868
+ 0
2869
+ </td>
2870
+ </tr>
2871
+ <tr
2872
+ aria-checked="false"
2873
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2874
+ role="checkbox"
2875
+ tabindex="-1"
2876
+ >
2877
+ <td
2878
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2879
+ >
2880
+ <span
2881
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2882
+ >
2883
+ <input
2884
+ aria-labelledby="enhanced-table-checkbox-27"
2885
+ class="PrivateSwitchBase-input css-1m9pwf3"
2886
+ data-indeterminate="false"
2887
+ type="checkbox"
2888
+ />
2889
+ <svg
2890
+ aria-hidden="true"
2891
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2892
+ data-testid="CheckBoxOutlineBlankIcon"
2893
+ focusable="false"
2894
+ viewBox="0 0 24 24"
2895
+ >
2896
+ <path
2897
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2898
+ />
2899
+ </svg>
2900
+ <span
2901
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2902
+ />
2903
+ </span>
2904
+ </td>
2905
+ <th
2906
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2907
+ id="enhanced-table-checkbox-27"
2908
+ scope="row"
2909
+ >
2910
+ mali-utility-wo (2)
2911
+ </th>
2912
+ <td
2913
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2914
+ >
2915
+ 0
2916
+ </td>
2917
+ <td
2918
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2919
+ >
2920
+ 0
2921
+ </td>
2922
+ </tr>
2923
+ <tr
2924
+ aria-checked="false"
2925
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2926
+ role="checkbox"
2927
+ tabindex="-1"
2928
+ >
2929
+ <td
2930
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2931
+ >
2932
+ <span
2933
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2934
+ >
2935
+ <input
2936
+ aria-labelledby="enhanced-table-checkbox-28"
2937
+ class="PrivateSwitchBase-input css-1m9pwf3"
2938
+ data-indeterminate="false"
2939
+ type="checkbox"
2940
+ />
2941
+ <svg
2942
+ aria-hidden="true"
2943
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2944
+ data-testid="CheckBoxOutlineBlankIcon"
2945
+ focusable="false"
2946
+ viewBox="0 0 24 24"
2947
+ >
2948
+ <path
2949
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
2950
+ />
2951
+ </svg>
2952
+ <span
2953
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
2954
+ />
2955
+ </span>
2956
+ </td>
2957
+ <th
2958
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
2959
+ id="enhanced-table-checkbox-28"
2960
+ scope="row"
2961
+ >
2962
+ mali-utility-wo (3)
2963
+ </th>
2964
+ <td
2965
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2966
+ >
2967
+ 0
2968
+ </td>
2969
+ <td
2970
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
2971
+ >
2972
+ 0
2973
+ </td>
2974
+ </tr>
2975
+ <tr
2976
+ aria-checked="false"
2977
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
2978
+ role="checkbox"
2979
+ tabindex="-1"
2980
+ >
2981
+ <td
2982
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
2983
+ >
2984
+ <span
2985
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
2986
+ >
2987
+ <input
2988
+ aria-labelledby="enhanced-table-checkbox-29"
2989
+ class="PrivateSwitchBase-input css-1m9pwf3"
2990
+ data-indeterminate="false"
2991
+ type="checkbox"
2992
+ />
2993
+ <svg
2994
+ aria-hidden="true"
2995
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
2996
+ data-testid="CheckBoxOutlineBlankIcon"
2997
+ focusable="false"
2998
+ viewBox="0 0 24 24"
2999
+ >
3000
+ <path
3001
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3002
+ />
3003
+ </svg>
3004
+ <span
3005
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3006
+ />
3007
+ </span>
3008
+ </td>
3009
+ <th
3010
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3011
+ id="enhanced-table-checkbox-29"
3012
+ scope="row"
3013
+ >
3014
+ mali-utility-wo (4)
3015
+ </th>
3016
+ <td
3017
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3018
+ >
3019
+ 0
3020
+ </td>
3021
+ <td
3022
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3023
+ >
3024
+ 0
3025
+ </td>
3026
+ </tr>
3027
+ <tr
3028
+ aria-checked="false"
3029
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3030
+ role="checkbox"
3031
+ tabindex="-1"
3032
+ >
3033
+ <td
3034
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3035
+ >
3036
+ <span
3037
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3038
+ >
3039
+ <input
3040
+ aria-labelledby="enhanced-table-checkbox-30"
3041
+ class="PrivateSwitchBase-input css-1m9pwf3"
3042
+ data-indeterminate="false"
3043
+ type="checkbox"
3044
+ />
3045
+ <svg
3046
+ aria-hidden="true"
3047
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3048
+ data-testid="CheckBoxOutlineBlankIcon"
3049
+ focusable="false"
3050
+ viewBox="0 0 24 24"
3051
+ >
3052
+ <path
3053
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3054
+ />
3055
+ </svg>
3056
+ <span
3057
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3058
+ />
3059
+ </span>
3060
+ </td>
3061
+ <th
3062
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3063
+ id="enhanced-table-checkbox-30"
3064
+ scope="row"
3065
+ >
3066
+ queued-work-loo (2)
3067
+ </th>
3068
+ <td
3069
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3070
+ >
3071
+ 0
3072
+ </td>
3073
+ <td
3074
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3075
+ >
3076
+ 0
3077
+ </td>
3078
+ </tr>
3079
+ <tr
3080
+ aria-checked="false"
3081
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3082
+ role="checkbox"
3083
+ tabindex="-1"
3084
+ >
3085
+ <td
3086
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3087
+ >
3088
+ <span
3089
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3090
+ >
3091
+ <input
3092
+ aria-labelledby="enhanced-table-checkbox-31"
3093
+ class="PrivateSwitchBase-input css-1m9pwf3"
3094
+ data-indeterminate="false"
3095
+ type="checkbox"
3096
+ />
3097
+ <svg
3098
+ aria-hidden="true"
3099
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3100
+ data-testid="CheckBoxOutlineBlankIcon"
3101
+ focusable="false"
3102
+ viewBox="0 0 24 24"
3103
+ >
3104
+ <path
3105
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3106
+ />
3107
+ </svg>
3108
+ <span
3109
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3110
+ />
3111
+ </span>
3112
+ </td>
3113
+ <th
3114
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3115
+ id="enhanced-table-checkbox-31"
3116
+ scope="row"
3117
+ >
3118
+ BMScavenger
3119
+ </th>
3120
+ <td
3121
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3122
+ >
3123
+ 0
3124
+ </td>
3125
+ <td
3126
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3127
+ >
3128
+ 0
3129
+ </td>
3130
+ </tr>
3131
+ <tr
3132
+ aria-checked="false"
3133
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3134
+ role="checkbox"
3135
+ tabindex="-1"
3136
+ >
3137
+ <td
3138
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3139
+ >
3140
+ <span
3141
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3142
+ >
3143
+ <input
3144
+ aria-labelledby="enhanced-table-checkbox-32"
3145
+ class="PrivateSwitchBase-input css-1m9pwf3"
3146
+ data-indeterminate="false"
3147
+ type="checkbox"
3148
+ />
3149
+ <svg
3150
+ aria-hidden="true"
3151
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3152
+ data-testid="CheckBoxOutlineBlankIcon"
3153
+ focusable="false"
3154
+ viewBox="0 0 24 24"
3155
+ >
3156
+ <path
3157
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3158
+ />
3159
+ </svg>
3160
+ <span
3161
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3162
+ />
3163
+ </span>
3164
+ </td>
3165
+ <th
3166
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3167
+ id="enhanced-table-checkbox-32"
3168
+ scope="row"
3169
+ >
3170
+ hwuiTask0
3171
+ </th>
3172
+ <td
3173
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3174
+ >
3175
+ 0
3176
+ </td>
3177
+ <td
3178
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3179
+ >
3180
+ 0
3181
+ </td>
3182
+ </tr>
3183
+ <tr
3184
+ aria-checked="false"
3185
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3186
+ role="checkbox"
3187
+ tabindex="-1"
3188
+ >
3189
+ <td
3190
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3191
+ >
3192
+ <span
3193
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3194
+ >
3195
+ <input
3196
+ aria-labelledby="enhanced-table-checkbox-33"
3197
+ class="PrivateSwitchBase-input css-1m9pwf3"
3198
+ data-indeterminate="false"
3199
+ type="checkbox"
3200
+ />
3201
+ <svg
3202
+ aria-hidden="true"
3203
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3204
+ data-testid="CheckBoxOutlineBlankIcon"
3205
+ focusable="false"
3206
+ viewBox="0 0 24 24"
3207
+ >
3208
+ <path
3209
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3210
+ />
3211
+ </svg>
3212
+ <span
3213
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3214
+ />
3215
+ </span>
3216
+ </td>
3217
+ <th
3218
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3219
+ id="enhanced-table-checkbox-33"
3220
+ scope="row"
3221
+ >
3222
+ hwuiTask1
3223
+ </th>
3224
+ <td
3225
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3226
+ >
3227
+ 0
3228
+ </td>
3229
+ <td
3230
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3231
+ >
3232
+ 0
3233
+ </td>
3234
+ </tr>
3235
+ <tr
3236
+ aria-checked="false"
3237
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3238
+ role="checkbox"
3239
+ tabindex="-1"
3240
+ >
3241
+ <td
3242
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3243
+ >
3244
+ <span
3245
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3246
+ >
3247
+ <input
3248
+ aria-labelledby="enhanced-table-checkbox-34"
3249
+ class="PrivateSwitchBase-input css-1m9pwf3"
3250
+ data-indeterminate="false"
3251
+ type="checkbox"
3252
+ />
3253
+ <svg
3254
+ aria-hidden="true"
3255
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3256
+ data-testid="CheckBoxOutlineBlankIcon"
3257
+ focusable="false"
3258
+ viewBox="0 0 24 24"
3259
+ >
3260
+ <path
3261
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3262
+ />
3263
+ </svg>
3264
+ <span
3265
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3266
+ />
3267
+ </span>
3268
+ </td>
3269
+ <th
3270
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3271
+ id="enhanced-table-checkbox-34"
3272
+ scope="row"
3273
+ >
3274
+ Binder #2 (2)
3275
+ </th>
3276
+ <td
3277
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3278
+ >
3279
+ 0
3280
+ </td>
3281
+ <td
3282
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3283
+ >
3284
+ 0
3285
+ </td>
3286
+ </tr>
3287
+ <tr
3288
+ aria-checked="false"
3289
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3290
+ role="checkbox"
3291
+ tabindex="-1"
3292
+ >
3293
+ <td
3294
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3295
+ >
3296
+ <span
3297
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3298
+ >
3299
+ <input
3300
+ aria-labelledby="enhanced-table-checkbox-35"
3301
+ class="PrivateSwitchBase-input css-1m9pwf3"
3302
+ data-indeterminate="false"
3303
+ type="checkbox"
3304
+ />
3305
+ <svg
3306
+ aria-hidden="true"
3307
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3308
+ data-testid="CheckBoxOutlineBlankIcon"
3309
+ focusable="false"
3310
+ viewBox="0 0 24 24"
3311
+ >
3312
+ <path
3313
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3314
+ />
3315
+ </svg>
3316
+ <span
3317
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3318
+ />
3319
+ </span>
3320
+ </td>
3321
+ <th
3322
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3323
+ id="enhanced-table-checkbox-35"
3324
+ scope="row"
3325
+ >
3326
+ CookieMonsterCl
3327
+ </th>
3328
+ <td
3329
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3330
+ >
3331
+ 0
3332
+ </td>
3333
+ <td
3334
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3335
+ >
3336
+ 0
3337
+ </td>
3338
+ </tr>
3339
+ <tr
3340
+ aria-checked="false"
3341
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3342
+ role="checkbox"
3343
+ tabindex="-1"
3344
+ >
3345
+ <td
3346
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3347
+ >
3348
+ <span
3349
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3350
+ >
3351
+ <input
3352
+ aria-labelledby="enhanced-table-checkbox-36"
3353
+ class="PrivateSwitchBase-input css-1m9pwf3"
3354
+ data-indeterminate="false"
3355
+ type="checkbox"
3356
+ />
3357
+ <svg
3358
+ aria-hidden="true"
3359
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3360
+ data-testid="CheckBoxOutlineBlankIcon"
3361
+ focusable="false"
3362
+ viewBox="0 0 24 24"
3363
+ >
3364
+ <path
3365
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3366
+ />
3367
+ </svg>
3368
+ <span
3369
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3370
+ />
3371
+ </span>
3372
+ </td>
3373
+ <th
3374
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3375
+ id="enhanced-table-checkbox-36"
3376
+ scope="row"
3377
+ >
3378
+ CookieMonsterBa
3379
+ </th>
3380
+ <td
3381
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3382
+ >
3383
+ 0
3384
+ </td>
3385
+ <td
3386
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3387
+ >
3388
+ 0
3389
+ </td>
3390
+ </tr>
3391
+ <tr
3392
+ aria-checked="false"
3393
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3394
+ role="checkbox"
3395
+ tabindex="-1"
3396
+ >
3397
+ <td
3398
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3399
+ >
3400
+ <span
3401
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3402
+ >
3403
+ <input
3404
+ aria-labelledby="enhanced-table-checkbox-37"
3405
+ class="PrivateSwitchBase-input css-1m9pwf3"
3406
+ data-indeterminate="false"
3407
+ type="checkbox"
3408
+ />
3409
+ <svg
3410
+ aria-hidden="true"
3411
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3412
+ data-testid="CheckBoxOutlineBlankIcon"
3413
+ focusable="false"
3414
+ viewBox="0 0 24 24"
3415
+ >
3416
+ <path
3417
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3418
+ />
3419
+ </svg>
3420
+ <span
3421
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3422
+ />
3423
+ </span>
3424
+ </td>
3425
+ <th
3426
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3427
+ id="enhanced-table-checkbox-37"
3428
+ scope="row"
3429
+ >
3430
+ alhost:8097/...
3431
+ </th>
3432
+ <td
3433
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3434
+ >
3435
+ 0
3436
+ </td>
3437
+ <td
3438
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3439
+ >
3440
+ 0
3441
+ </td>
3442
+ </tr>
3443
+ <tr
3444
+ aria-checked="false"
3445
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3446
+ role="checkbox"
3447
+ tabindex="-1"
3448
+ >
3449
+ <td
3450
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3451
+ >
3452
+ <span
3453
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3454
+ >
3455
+ <input
3456
+ aria-labelledby="enhanced-table-checkbox-38"
3457
+ class="PrivateSwitchBase-input css-1m9pwf3"
3458
+ data-indeterminate="false"
3459
+ type="checkbox"
3460
+ />
3461
+ <svg
3462
+ aria-hidden="true"
3463
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3464
+ data-testid="CheckBoxOutlineBlankIcon"
3465
+ focusable="false"
3466
+ viewBox="0 0 24 24"
3467
+ >
3468
+ <path
3469
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3470
+ />
3471
+ </svg>
3472
+ <span
3473
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3474
+ />
3475
+ </span>
3476
+ </td>
3477
+ <th
3478
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3479
+ id="enhanced-table-checkbox-38"
3480
+ scope="row"
3481
+ >
3482
+ OkHttp TaskRunn
3483
+ </th>
3484
+ <td
3485
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3486
+ >
3487
+ 0
3488
+ </td>
3489
+ <td
3490
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3491
+ >
3492
+ 0
3493
+ </td>
3494
+ </tr>
3495
+ <tr
3496
+ aria-checked="false"
3497
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3498
+ role="checkbox"
3499
+ tabindex="-1"
3500
+ >
3501
+ <td
3502
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3503
+ >
3504
+ <span
3505
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3506
+ >
3507
+ <input
3508
+ aria-labelledby="enhanced-table-checkbox-39"
3509
+ class="PrivateSwitchBase-input css-1m9pwf3"
3510
+ data-indeterminate="false"
3511
+ type="checkbox"
3512
+ />
3513
+ <svg
3514
+ aria-hidden="true"
3515
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3516
+ data-testid="CheckBoxOutlineBlankIcon"
3517
+ focusable="false"
3518
+ viewBox="0 0 24 24"
3519
+ >
3520
+ <path
3521
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3522
+ />
3523
+ </svg>
3524
+ <span
3525
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3526
+ />
3527
+ </span>
3528
+ </td>
3529
+ <th
3530
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3531
+ id="enhanced-table-checkbox-39"
3532
+ scope="row"
3533
+ >
3534
+ Binder #4
3535
+ </th>
3536
+ <td
3537
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3538
+ >
3539
+ 0
3540
+ </td>
3541
+ <td
3542
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3543
+ >
3544
+ 0
3545
+ </td>
3546
+ </tr>
3547
+ <tr
3548
+ aria-checked="false"
3549
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3550
+ role="checkbox"
3551
+ tabindex="-1"
3552
+ >
3553
+ <td
3554
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3555
+ >
3556
+ <span
3557
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3558
+ >
3559
+ <input
3560
+ aria-labelledby="enhanced-table-checkbox-40"
3561
+ class="PrivateSwitchBase-input css-1m9pwf3"
3562
+ data-indeterminate="false"
3563
+ type="checkbox"
3564
+ />
3565
+ <svg
3566
+ aria-hidden="true"
3567
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3568
+ data-testid="CheckBoxOutlineBlankIcon"
3569
+ focusable="false"
3570
+ viewBox="0 0 24 24"
3571
+ >
3572
+ <path
3573
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3574
+ />
3575
+ </svg>
3576
+ <span
3577
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3578
+ />
3579
+ </span>
3580
+ </td>
3581
+ <th
3582
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3583
+ id="enhanced-table-checkbox-40"
3584
+ scope="row"
3585
+ >
3586
+ queued-work-loo (3)
3587
+ </th>
3588
+ <td
3589
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3590
+ >
3591
+ 0
3592
+ </td>
3593
+ <td
3594
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3595
+ >
3596
+ 0
3597
+ </td>
3598
+ </tr>
3599
+ <tr
3600
+ aria-checked="false"
3601
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3602
+ role="checkbox"
3603
+ tabindex="-1"
3604
+ >
3605
+ <td
3606
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3607
+ >
3608
+ <span
3609
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3610
+ >
3611
+ <input
3612
+ aria-labelledby="enhanced-table-checkbox-41"
3613
+ class="PrivateSwitchBase-input css-1m9pwf3"
3614
+ data-indeterminate="false"
3615
+ type="checkbox"
3616
+ />
3617
+ <svg
3618
+ aria-hidden="true"
3619
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3620
+ data-testid="CheckBoxOutlineBlankIcon"
3621
+ focusable="false"
3622
+ viewBox="0 0 24 24"
3623
+ >
3624
+ <path
3625
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3626
+ />
3627
+ </svg>
3628
+ <span
3629
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3630
+ />
3631
+ </span>
3632
+ </td>
3633
+ <th
3634
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3635
+ id="enhanced-table-checkbox-41"
3636
+ scope="row"
3637
+ >
3638
+ Binder #5
3639
+ </th>
3640
+ <td
3641
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3642
+ >
3643
+ 0
3644
+ </td>
3645
+ <td
3646
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3647
+ >
3648
+ 0
3649
+ </td>
3650
+ </tr>
3651
+ <tr
3652
+ aria-checked="false"
3653
+ class="MuiTableRow-root MuiTableRow-hover css-1q1u3t4-MuiTableRow-root"
3654
+ role="checkbox"
3655
+ tabindex="-1"
3656
+ >
3657
+ <td
3658
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingCheckbox MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-1fx9ves-MuiTableCell-root"
3659
+ >
3660
+ <span
3661
+ class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium MuiCheckbox-root MuiCheckbox-colorPrimary MuiCheckbox-sizeMedium !text-neutral-300 css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
3662
+ >
3663
+ <input
3664
+ aria-labelledby="enhanced-table-checkbox-42"
3665
+ class="PrivateSwitchBase-input css-1m9pwf3"
3666
+ data-indeterminate="false"
3667
+ type="checkbox"
3668
+ />
3669
+ <svg
3670
+ aria-hidden="true"
3671
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3672
+ data-testid="CheckBoxOutlineBlankIcon"
3673
+ focusable="false"
3674
+ viewBox="0 0 24 24"
3675
+ >
3676
+ <path
3677
+ d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
3678
+ />
3679
+ </svg>
3680
+ <span
3681
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3682
+ />
3683
+ </span>
3684
+ </td>
3685
+ <th
3686
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-13jtlv-MuiTableCell-root"
3687
+ id="enhanced-table-checkbox-42"
3688
+ scope="row"
3689
+ >
3690
+ JITWorker
3691
+ </th>
3692
+ <td
3693
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3694
+ >
3695
+ 0
3696
+ </td>
3697
+ <td
3698
+ class="MuiTableCell-root MuiTableCell-body MuiTableCell-alignRight MuiTableCell-sizeSmall !text-neutral-300 border-b-neutral-500 css-tqm498-MuiTableCell-root"
3699
+ >
3700
+ 0
3701
+ </td>
3702
+ </tr>
3703
+ </tbody>
3704
+ </table>
3705
+ </div>
3706
+ </div>
3707
+ </div>
3708
+ </div>
3709
+ <div
3710
+ class="h-10"
3711
+ />
3712
+ <div
3713
+ class="mx-8 p-6 bg-dark-charcoal border border-gray-800 rounded-lg"
3714
+ >
3715
+ <div
3716
+ class="mb-[5px] ml-[10px] text-2xl text-white flex flex-row font-medium"
3717
+ >
3718
+ RAM Usage (MB)
3719
+ </div>
3720
+ <div
3721
+ class="ApexChartsMock"
3722
+ >
3723
+ {
3724
+ "chart": {
3725
+ "animations": {
3726
+ "enabled": true,
3727
+ "easing": "linear",
3728
+ "dynamicAnimation": {
3729
+ "speed": 500
3730
+ }
3731
+ },
3732
+ "zoom": {
3733
+ "enabled": false
3734
+ },
3735
+ "toolbar": {
3736
+ "show": false
3737
+ },
3738
+ "events": {}
3739
+ },
3740
+ "dataLabels": {
3741
+ "enabled": false
3742
+ },
3743
+ "stroke": {
3744
+ "curve": "smooth",
3745
+ "width": 2
3746
+ },
3747
+ "xaxis": {
3748
+ "labels": {
3749
+ "style": {
3750
+ "colors": "#FFFFFF99"
3751
+ }
3752
+ },
3753
+ "type": "numeric"
3754
+ },
3755
+ "yaxis": {
3756
+ "labels": {
3757
+ "style": {
3758
+ "colors": "#FFFFFF99"
3759
+ }
3760
+ },
3761
+ "min": 0
3762
+ },
3763
+ "colors": [
3764
+ "var(--bright-magenta)",
3765
+ "var(--bright-cyan)",
3766
+ "var(--bright-yellow)",
3767
+ "var(--bright-green)"
3768
+ ],
3769
+ "legend": {
3770
+ "labels": {
3771
+ "colors": "#FFFFFF99"
3772
+ }
3773
+ },
3774
+ "grid": {
3775
+ "borderColor": "#FFFFFF33",
3776
+ "strokeDashArray": 3
3777
+ },
3778
+ "annotations": {}
3779
+ }[
3780
+ {
3781
+ "name": "com.example",
3782
+ "data": [
3783
+ {
3784
+ "x": 0,
3785
+ "y": 376
3786
+ },
3787
+ {
3788
+ "x": 500,
3789
+ "y": 376
3790
+ }
3791
+ ]
3792
+ }
3793
+ ]
3794
+ </div>
3795
+ </div>
3796
+ <div
3797
+ class="h-10"
3798
+ />
3799
+ </div>
3800
+ </div>
3801
+ </div>
3802
+ </DocumentFragment>
3803
+ `;
3804
+
3805
+ exports[`flashlight measure interactive it displays measures: Web app with no measures yet - 1. TEXT 1`] = `
3806
+ "Auto-Detect
3807
+ Stop Measuring
3808
+ Reset
3809
+ com.example
3810
+ Average Test Runtime
3811
+ -
3812
+ Time taken to run the test.
3813
+ Can be helpful to measure Time To Interactive of your app, if the test is checking app start for instance.
3814
+ Average FPS
3815
+ -
3816
+ Frame Per Second. Your app should display 120 Frames Per Second to give an impression of fluidity. This number should be close to 120, otherwise it will seem laggy.
3817
+
3818
+ See
3819
+
3820
+ this video
3821
+
3822
+ for more details
3823
+ Average CPU usage
3824
+ -
3825
+ An app might run at high frame rates, such as 60 FPS or higher, but might be using too much processing power, so it's important to check CPU usage.
3826
+ Depending on the device, this value can go up to
3827
+ 100% x number of cores
3828
+ . For instance, a Samsung A10s has 4 cores, so the max value would be 400%.
3829
+ High CPU Usage
3830
+ -
3831
+ Impacted threads:
3832
+ High CPU usage by a single process can cause app unresponsiveness, even with low overall CPU usage. For instance, an overworked JS thread in a React Native app may lead to unresponsiveness despite maintaining 120 FPS.
3833
+ Average RAM usage
3834
+ -
3835
+ If an app consumes a large amount of RAM (random-access memory), it can impact the overall performance of the device and drain the battery more quickly.
3836
+ It’s worth noting that results might be higher than expected since we measure RSS and not PSS (See
3837
+
3838
+ here for more details
3839
+ )"
3840
+ `;
3841
+
3842
+ exports[`flashlight measure interactive it displays measures: Web app with no measures yet - 2. FULL 1`] = `
3843
+ <DocumentFragment>
3844
+ <div
3845
+ class="bg-light-charcoal h-full text-black"
3846
+ >
3847
+ <header
3848
+ class="MuiPaper-root MuiPaper-elevation MuiPaper-elevation4 MuiAppBar-root MuiAppBar-colorPrimary MuiAppBar-positionRelative bg-dark-charcoal css-1vazdj7-MuiPaper-root-MuiAppBar-root"
3849
+ >
3850
+ <div
3851
+ style="flex-direction: row; display: flex; align-items: center; padding: 10px;"
3852
+ >
3853
+ <button
3854
+ class="text-sm font-medium px-4 py-2 rounded bg-theme-color shadow-theme-color shadow-glow text-black "
3855
+ >
3856
+ Auto-Detect
3857
+ </button>
3858
+ <div
3859
+ style="padding-right: 5px; padding-left: 5px;"
3860
+ >
3861
+ <div
3862
+ class="css-6jtk0h"
3863
+ >
3864
+ <div
3865
+ class="css-ci6nnc"
3866
+ >
3867
+ <svg
3868
+ aria-hidden="true"
3869
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3870
+ data-testid="AndroidRoundedIcon"
3871
+ focusable="false"
3872
+ viewBox="0 0 24 24"
3873
+ >
3874
+ <path
3875
+ d="m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52M7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25m10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25"
3876
+ />
3877
+ </svg>
3878
+ </div>
3879
+ <div
3880
+ class="MuiInputBase-root MuiInputBase-colorPrimary css-yv75zo-MuiInputBase-root"
3881
+ >
3882
+ <input
3883
+ class="MuiInputBase-input css-yz9k0d-MuiInputBase-input"
3884
+ placeholder="Fill in your app id"
3885
+ type="text"
3886
+ value="com.example"
3887
+ />
3888
+ </div>
3889
+ </div>
3890
+ </div>
3891
+ <div
3892
+ class="flex flex-row gap-2"
3893
+ >
3894
+ <button
3895
+ class="text-sm font-medium px-4 py-2 rounded bg-theme-color shadow-theme-color shadow-glow text-black flex items-center"
3896
+ >
3897
+ <span
3898
+ class="mr-1"
3899
+ >
3900
+ <svg
3901
+ aria-hidden="true"
3902
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3903
+ data-testid="StopIcon"
3904
+ focusable="false"
3905
+ viewBox="0 0 24 24"
3906
+ >
3907
+ <path
3908
+ d="M6 6h12v12H6z"
3909
+ />
3910
+ </svg>
3911
+ </span>
3912
+ Stop Measuring
3913
+ </button>
3914
+ <div
3915
+ data-theme="bright-cyan"
3916
+ >
3917
+ <button
3918
+ class="text-sm font-medium px-4 py-2 rounded bg-theme-color shadow-theme-color shadow-glow text-black flex items-center"
3919
+ >
3920
+ <span
3921
+ class="mr-1"
3922
+ >
3923
+ <svg
3924
+ aria-hidden="true"
3925
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
3926
+ data-testid="DeleteIcon"
3927
+ focusable="false"
3928
+ viewBox="0 0 24 24"
3929
+ >
3930
+ <path
3931
+ d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6zM19 4h-3.5l-1-1h-5l-1 1H5v2h14z"
3932
+ />
3933
+ </svg>
3934
+ </span>
3935
+ Reset
3936
+ </button>
3937
+ </div>
3938
+ </div>
3939
+ </div>
3940
+ </header>
3941
+ <div
3942
+ class="flex flex-row w-full h-[calc(100%-50px)] overflow-y-hidden"
3943
+ >
3944
+ <div
3945
+ class="overflow-auto w-full"
3946
+ >
3947
+ <button
3948
+ aria-haspopup="true"
3949
+ class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-78trlr-MuiButtonBase-root-MuiIconButton-root"
3950
+ id="report-menu-button"
3951
+ style="float: right;"
3952
+ tabindex="0"
3953
+ type="button"
3954
+ >
3955
+ <svg
3956
+ aria-hidden="true"
3957
+ class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit text-neutral-300 css-1vooibu-MuiSvgIcon-root"
3958
+ data-testid="MoreVertIcon"
3959
+ focusable="false"
3960
+ viewBox="0 0 24 24"
3961
+ >
3962
+ <path
3963
+ d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"
3964
+ />
3965
+ </svg>
3966
+ <span
3967
+ class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
3968
+ />
3969
+ </button>
3970
+ <div
3971
+ class="css-1xehky4"
3972
+ />
3973
+ <div
3974
+ class="flex flex-row overflow-x-scroll px-12 gap-12 w-full hide-scrollbar"
3975
+ >
3976
+ <div
3977
+ class="ml-auto mr-auto"
3978
+ >
3979
+ <div
3980
+ class="flex flex-col items-center py-6 px-10 bg-dark-charcoal border border-gray-800 rounded-lg w-[500px] flex-shrink-0"
3981
+ >
3982
+ <div
3983
+ class="flex flex-row items-center gap-2"
3984
+ >
3985
+ <div
3986
+ class="bg-theme-color rounded-full min-w-[12px] w-[12px] min-h-[12px]"
3987
+ />
3988
+ <div
3989
+ class="text-neutral-300 text-center line-clamp-1"
3990
+ >
3991
+ com.example
3992
+ </div>
3993
+ </div>
3994
+ <div
3995
+ class="h-8"
3996
+ />
3997
+ <svg
3998
+ fill="none"
3999
+ height="152"
4000
+ viewBox="0 0 200 200"
4001
+ width="152"
4002
+ >
4003
+ <circle
4004
+ cx="100"
4005
+ cy="100"
4006
+ r="90"
4007
+ stroke="white"
4008
+ stroke-opacity="0.1"
4009
+ stroke-width="20"
4010
+ />
4011
+ <path
4012
+ d="M 99.99999434513325 10.000000000000185 A 90 90 0 1 0 100 10"
4013
+ stroke-width="20"
4014
+ />
4015
+ <text
4016
+ aria-label="Score"
4017
+ class="text-center text-6xl font-semibold fill-white"
4018
+ dominant-baseline="central"
4019
+ text-anchor="middle"
4020
+ x="100"
4021
+ y="100"
4022
+ />
4023
+ </svg>
4024
+ <div
4025
+ class="h-8"
4026
+ />
4027
+ <div
4028
+ class="w-full border rounded-lg border-gray-800"
4029
+ >
4030
+ <div
4031
+ class="px-6 py-4 cursor-pointer"
4032
+ >
4033
+ <div
4034
+ class="flex flex-row w-full items-center"
4035
+ >
4036
+ <div
4037
+ class="flex-1"
4038
+ >
4039
+ <div
4040
+ class="flex flex-row"
4041
+ >
4042
+ <div
4043
+ class="text-neutral-300"
4044
+ >
4045
+ Average Test Runtime
4046
+ </div>
4047
+ <div
4048
+ class="grow"
4049
+ />
4050
+ <div
4051
+ class="text-neutral-300 whitespace-pre"
4052
+ >
4053
+ -
4054
+ </div>
4055
+ <div
4056
+ class="w-2"
4057
+ />
4058
+ </div>
4059
+ </div>
4060
+ <svg
4061
+ class="rotate-0 transition-transform ease-linear"
4062
+ fill="none"
4063
+ height="24"
4064
+ viewBox="0 0 24 24"
4065
+ width="24"
4066
+ >
4067
+ <path
4068
+ class="stroke-white"
4069
+ d="m8.5 10 4 4 4-4"
4070
+ stroke-linecap="round"
4071
+ stroke-linejoin="round"
4072
+ stroke-width="1.5"
4073
+ />
4074
+ </svg>
4075
+ </div>
4076
+ <div
4077
+ class="cursor-default overflow-hidden transition-[height] duration-300"
4078
+ style="height: 0px;"
4079
+ >
4080
+ <div
4081
+ class="text-neutral-400 text-sm"
4082
+ >
4083
+ Time taken to run the test.
4084
+ <br />
4085
+ Can be helpful to measure Time To Interactive of your app, if the test is checking app start for instance.
4086
+ </div>
4087
+ </div>
4088
+ </div>
4089
+ </div>
4090
+ <div
4091
+ class="h-2"
4092
+ />
4093
+ <div
4094
+ class="w-full border rounded-lg border-gray-800"
4095
+ >
4096
+ <div
4097
+ class="px-6 py-4 cursor-pointer"
4098
+ >
4099
+ <div
4100
+ class="flex flex-row w-full items-center"
4101
+ >
4102
+ <div
4103
+ class="flex-1"
4104
+ >
4105
+ <div
4106
+ class="flex flex-row"
4107
+ >
4108
+ <div
4109
+ class="text-neutral-300"
4110
+ >
4111
+ Average FPS
4112
+ </div>
4113
+ <div
4114
+ class="grow"
4115
+ />
4116
+ <div
4117
+ class="text-neutral-300 whitespace-pre"
4118
+ >
4119
+ -
4120
+ </div>
4121
+ <div
4122
+ class="w-2"
4123
+ />
4124
+ </div>
4125
+ </div>
4126
+ <svg
4127
+ class="rotate-0 transition-transform ease-linear"
4128
+ fill="none"
4129
+ height="24"
4130
+ viewBox="0 0 24 24"
4131
+ width="24"
4132
+ >
4133
+ <path
4134
+ class="stroke-white"
4135
+ d="m8.5 10 4 4 4-4"
4136
+ stroke-linecap="round"
4137
+ stroke-linejoin="round"
4138
+ stroke-width="1.5"
4139
+ />
4140
+ </svg>
4141
+ </div>
4142
+ <div
4143
+ class="cursor-default overflow-hidden transition-[height] duration-300"
4144
+ style="height: 0px;"
4145
+ >
4146
+ <div
4147
+ class="text-neutral-400 text-sm"
4148
+ >
4149
+ Frame Per Second. Your app should display 120 Frames Per Second to give an impression of fluidity. This number should be close to 120, otherwise it will seem laggy.
4150
+ <br />
4151
+ See
4152
+ <a
4153
+ href="https://www.youtube.com/watch?v=CaMTIgxCSqU"
4154
+ rel="noreferrer"
4155
+ target="_blank"
4156
+ >
4157
+ this video
4158
+ </a>
4159
+ for more details
4160
+ </div>
4161
+ </div>
4162
+ </div>
4163
+ </div>
4164
+ <div
4165
+ class="h-2"
4166
+ />
4167
+ <div
4168
+ class="w-full border rounded-lg border-gray-800"
4169
+ >
4170
+ <div
4171
+ class="px-6 py-4 cursor-pointer"
4172
+ >
4173
+ <div
4174
+ class="flex flex-row w-full items-center"
4175
+ >
4176
+ <div
4177
+ class="flex-1"
4178
+ >
4179
+ <div
4180
+ class="flex flex-row"
4181
+ >
4182
+ <div
4183
+ class="text-neutral-300"
4184
+ >
4185
+ Average CPU usage
4186
+ </div>
4187
+ <div
4188
+ class="grow"
4189
+ />
4190
+ <div
4191
+ class="text-neutral-300 whitespace-pre"
4192
+ >
4193
+ -
4194
+ </div>
4195
+ <div
4196
+ class="w-2"
4197
+ />
4198
+ </div>
4199
+ </div>
4200
+ <svg
4201
+ class="rotate-0 transition-transform ease-linear"
4202
+ fill="none"
4203
+ height="24"
4204
+ viewBox="0 0 24 24"
4205
+ width="24"
4206
+ >
4207
+ <path
4208
+ class="stroke-white"
4209
+ d="m8.5 10 4 4 4-4"
4210
+ stroke-linecap="round"
4211
+ stroke-linejoin="round"
4212
+ stroke-width="1.5"
4213
+ />
4214
+ </svg>
4215
+ </div>
4216
+ <div
4217
+ class="cursor-default overflow-hidden transition-[height] duration-300"
4218
+ style="height: 0px;"
4219
+ >
4220
+ <div
4221
+ class="text-neutral-400 text-sm"
4222
+ >
4223
+ An app might run at high frame rates, such as 60 FPS or higher, but might be using too much processing power, so it's important to check CPU usage.
4224
+ <br />
4225
+ Depending on the device, this value can go up to
4226
+ <code>
4227
+ 100% x number of cores
4228
+ </code>
4229
+ . For instance, a Samsung A10s has 4 cores, so the max value would be 400%.
4230
+ </div>
4231
+ </div>
4232
+ </div>
4233
+ </div>
4234
+ <div
4235
+ class="h-2"
4236
+ />
4237
+ <div
4238
+ class="w-full border rounded-lg border-gray-800"
4239
+ >
4240
+ <div
4241
+ class="px-6 py-4 cursor-pointer"
4242
+ >
4243
+ <div
4244
+ class="flex flex-row w-full items-center"
4245
+ >
4246
+ <div
4247
+ class="flex-1"
4248
+ >
4249
+ <div
4250
+ class="flex flex-row"
4251
+ >
4252
+ <div
4253
+ class="text-neutral-300"
4254
+ >
4255
+ High CPU Usage
4256
+ </div>
4257
+ <div
4258
+ class="grow"
4259
+ />
4260
+ <div
4261
+ class="text-neutral-300 whitespace-pre"
4262
+ >
4263
+ -
4264
+ </div>
4265
+ <div
4266
+ class="w-2"
4267
+ />
4268
+ </div>
4269
+ </div>
4270
+ <svg
4271
+ class="rotate-0 transition-transform ease-linear"
4272
+ fill="none"
4273
+ height="24"
4274
+ viewBox="0 0 24 24"
4275
+ width="24"
4276
+ >
4277
+ <path
4278
+ class="stroke-white"
4279
+ d="m8.5 10 4 4 4-4"
4280
+ stroke-linecap="round"
4281
+ stroke-linejoin="round"
4282
+ stroke-width="1.5"
4283
+ />
4284
+ </svg>
4285
+ </div>
4286
+ <div
4287
+ class="cursor-default overflow-hidden transition-[height] duration-300"
4288
+ style="height: 0px;"
4289
+ >
4290
+ <div
4291
+ class="text-neutral-400 text-sm"
4292
+ >
4293
+ <div
4294
+ class="mb-2"
4295
+ >
4296
+ <p>
4297
+ Impacted threads:
4298
+ </p>
4299
+ </div>
4300
+ High CPU usage by a single process can cause app unresponsiveness, even with low overall CPU usage. For instance, an overworked JS thread in a React Native app may lead to unresponsiveness despite maintaining 120 FPS.
4301
+ </div>
4302
+ </div>
4303
+ </div>
4304
+ </div>
4305
+ <div
4306
+ class="h-2"
4307
+ />
4308
+ <div
4309
+ class="w-full border rounded-lg border-gray-800"
4310
+ >
4311
+ <div
4312
+ class="px-6 py-4 cursor-pointer"
4313
+ >
4314
+ <div
4315
+ class="flex flex-row w-full items-center"
4316
+ >
4317
+ <div
4318
+ class="flex-1"
4319
+ >
4320
+ <div
4321
+ class="flex flex-row"
4322
+ >
4323
+ <div
4324
+ class="text-neutral-300"
4325
+ >
4326
+ Average RAM usage
4327
+ </div>
4328
+ <div
4329
+ class="grow"
4330
+ />
4331
+ <div
4332
+ class="text-neutral-300 whitespace-pre"
4333
+ >
4334
+ -
4335
+ </div>
4336
+ <div
4337
+ class="w-2"
4338
+ />
4339
+ </div>
4340
+ </div>
4341
+ <svg
4342
+ class="rotate-0 transition-transform ease-linear"
4343
+ fill="none"
4344
+ height="24"
4345
+ viewBox="0 0 24 24"
4346
+ width="24"
4347
+ >
4348
+ <path
4349
+ class="stroke-white"
4350
+ d="m8.5 10 4 4 4-4"
4351
+ stroke-linecap="round"
4352
+ stroke-linejoin="round"
4353
+ stroke-width="1.5"
4354
+ />
4355
+ </svg>
4356
+ </div>
4357
+ <div
4358
+ class="cursor-default overflow-hidden transition-[height] duration-300"
4359
+ style="height: 0px;"
4360
+ >
4361
+ <div
4362
+ class="text-neutral-400 text-sm"
4363
+ >
4364
+ If an app consumes a large amount of RAM (random-access memory), it can impact the overall performance of the device and drain the battery more quickly.
4365
+ <br />
4366
+ It’s worth noting that results might be higher than expected since we measure RSS and not PSS (See
4367
+ <a
4368
+ href="https://github.com/bamlab/android-performance-profiler/issues/11#issuecomment-1219317891"
4369
+ rel="noreferrer"
4370
+ target="_blank"
4371
+ >
4372
+ here for more details
4373
+ </a>
4374
+ )
4375
+ </div>
4376
+ </div>
4377
+ </div>
4378
+ </div>
4379
+ </div>
4380
+ </div>
4381
+ </div>
4382
+ <div
4383
+ class="h-16"
4384
+ />
4385
+ </div>
4386
+ </div>
4387
+ </div>
4388
+ </DocumentFragment>
4389
+ `;