-
Notifications
You must be signed in to change notification settings - Fork 1
/
search_results.html
1146 lines (1136 loc) · 122 KB
/
search_results.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html id="napari-hub" lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width" name="viewport" />
<link href="https://www.napari-hub.org/plugins" rel="canonical" />
<title>napari Plugins</title>
<meta content="2" name="next-head-count" />
<meta content="#80d1ff" name="theme-color" />
<!-- <link href="/icons/favicon/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180" />
<link href="/icons/favicon/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
<link href="/icons/favicon/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" />
<link href="/icons/favicon/site.webmanifest" rel="manifest" />
<link color="#009bf2" href="/icons/favicon/safari-pinned-tab.svg" rel="mask-icon" /> -->
<meta content="#009bf2" name="msapplication-TileColor" />
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
<link
href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=JetBrains+Mono&display=swap"
rel="stylesheet" />
<link as="style" href="../static/css/8ebdfa69bbc45988.css" rel="preload" />
<link data-n-g="" href="../static/css/8ebdfa69bbc45988.css" rel="stylesheet" /><noscript data-n-css=""></noscript>
<link href="../static/css/all_plugins_styles.css" rel="stylesheet" type="./css" />
</head>
<body>
<div id="__next">
<div class="flex flex-col min-h-screen">
<div class="flex items-center justify-center w-full p-4 bg-hub-primary-200 text-center">
<div class="Markdown_markdown__QZ95j">
<p></p>
</div>
</div>
<div class="screen-600:hidden"></div>
<header
class="bg-hub-primary-400 p-sds-xl screen-495:p-12 grid justify-center gap-x-sds-xl screen-495:gap-x-12 grid-cols-2 screen-875:grid-cols-napari-3 screen-1150:grid-cols-napari-3 screen-1425:grid-cols-napari-5">
<div class="hidden screen-1425:block">
<nav class="flex flex-col"><a class="whitespace-nowrap" data-testid="appBarHome"
href="http://127.0.0.1:5000">napari
<strong>hub</strong></a>
<div class="flex flex-col"><a class="mt-sds-l" href="http://127.0.0.1:5000">Plugins</a></div>
</nav>
</div>
<div class="screen-1425:hidden">
<nav class="mb-6 flex"><a class="whitespace-nowrap" data-testid="appBarHome"
href="http://127.0.0.1:5000">napari
<strong>hub</strong></a>
<div class="flex"><a class="ml-sds-xl" href="http://127.0.0.1:5000">Plugins</a></div>
</nav>
</div>
<h1
class="font-bold col-span-full mb-6 screen-495:mb-12 screen-1425:col-start-2 screen-1425:col-span-3 AppBarLanding_heading__ozOI5">
Discover, install, and share napari plugins</h1>
<div
class="grid grid-cols-[min-content,1fr] gap-sds-xl screen-655:gap-12 col-span-2 screen-875:col-span-3 screen-1425:col-start-2 items-center">
<svg aria-hidden="true" class="AppBarLanding_logo__S9wtg" fill="none" height="198"
viewbox="0 0 226 198" width="226" xmlns="http://www.w3.org/2000/svg">
<circle cx="126.469" cy="98.7158" fill="white" r="45.6721" stroke="#D2EFFF"
stroke-width="4.80759"></circle>
<path clip-rule="evenodd"
d="M130.13 83C130.916 82.1168 131.393 80.9531 131.393 79.6779C131.393 76.9164 129.154 74.6779 126.393 74.6779C123.631 74.6779 121.393 76.9164 121.393 79.6779C121.393 80.9531 121.87 82.1168 122.656 83H110.393V95.0565C109.545 94.3945 108.478 94 107.319 94C104.557 94 102.319 96.2386 102.319 99C102.319 101.761 104.557 104 107.319 104C108.478 104 109.545 103.606 110.393 102.944V115.051H122.402C121.769 114.213 121.393 113.169 121.393 112.038C121.393 109.277 123.631 107.038 126.393 107.038C129.154 107.038 131.393 109.277 131.393 112.038C131.393 113.169 131.017 114.213 130.384 115.051H142.443V102.991C141.606 103.624 140.562 104 139.431 104C136.669 104 134.431 101.761 134.431 99C134.431 96.2386 136.669 94 139.431 94C140.562 94 141.606 94.3757 142.443 95.0092V83H130.13Z"
fill="black" fill-rule="evenodd"></path>
<path d="M29.7566 58.6526L2.00001 74.6779" stroke="black" stroke-width="4.80759"></path>
<path d="M142.52 194.868L110.469 194.868" stroke="white" stroke-width="5"></path>
<path d="M131.226 194.868H110.393" stroke="black" stroke-width="5"></path>
<circle cx="42.961" cy="146.728" fill="black" r="2.5"></circle>
<circle cx="126.393" cy="2.5" fill="black" r="2.5"></circle>
<path d="M167.702 74.6779L188.519 62.6589" stroke="#D2EFFF" stroke-width="2"></path>
<path d="M85.3929 75L63.7456 62.6589" stroke="#D2EFFF" stroke-width="2"></path>
<path d="M85.3929 122L63.7456 134.773" stroke="#D2EFFF" stroke-width="2"></path>
<path d="M126.393 50.6399L126.393 26.602" stroke="#D2EFFF" stroke-width="2"></path>
<path d="M126.393 170.83L126.393 146.792" stroke="#D2EFFF" stroke-width="2"></path>
<path d="M167.702 123.074L188.519 135.093" stroke="#D2EFFF" stroke-width="2"></path>
<circle cx="209.418" cy="50.6399" fill="white" r="13.5253" stroke="#D2EFFF" stroke-width="5">
</circle>
<circle cx="209.393" cy="50.8323" fill="black" r="5"></circle>
<path clip-rule="evenodd"
d="M219.968 62.6589C217.143 65.1523 213.432 66.6652 209.368 66.6652C205.303 66.6652 201.593 65.1523 198.768 62.6589C201.593 60.1655 205.303 58.6526 209.368 58.6526C213.432 58.6526 217.143 60.1655 219.968 62.6589Z"
fill="black" fill-rule="evenodd"></path>
<circle cx="209.418" cy="146.792" fill="white" r="13.5253" stroke="#D2EFFF" stroke-width="5">
</circle>
<circle cx="209.393" cy="146.984" fill="black" r="5"></circle>
<path clip-rule="evenodd"
d="M219.968 158.811C217.143 161.304 213.432 162.817 209.368 162.817C205.303 162.817 201.593 161.304 198.768 158.811C201.593 156.317 205.303 154.804 209.368 154.804C213.432 154.804 217.143 156.317 219.968 158.811Z"
fill="black" fill-rule="evenodd"></path>
<circle cx="43.0251" cy="50.6399" fill="white" r="13.5253" stroke="#D2EFFF" stroke-width="5">
</circle>
<path d="M115.393 168.7L126.724 180.032L138.056 168.7" stroke="#D2EFFF" stroke-width="5"></path>
</svg>
<ul class="list-disc font-semibold space-y-sds-l AppBarLanding_list__1ICnl ml-sds-xl">
<li>Discover plugins that solve your image analysis challenges</li>
<li>Learn how to install into napari</li>
<li class="hidden screen-725:block">Share your image analysis tools with napari’s growing
community</li>
</ul>
</div>
<div class="col-span-2 screen-725:hidden">
<ul class="list-disc font-semibold space-y-sds-l AppBarLanding_list__1ICnl px-sds-xl mt-sds-l">
<li>Share your image analysis tools with napari’s growing community</li>
</ul>
</div>
</header>
<main class="flex flex-col flex-grow">
<div class="flex flex-col">
<div
class="bg-hub-primary-200 p-6 screen-495:p-12 gap-x-sds-xl screen-495:gap-x-12 grid justify-center grid-cols-2 screen-875:grid-cols-napari-3 screen-1150:grid-cols-napari-5">
<div
class="col-span-2 screen-875:col-span-3 screen-875:col-start-1 screen-1150:col-start-2 screen-1150:col-span-3">
<div class="flex items-end mb-6 justify-between screen-495:justify-start screen-495:gap-3">
<h2
class="font-semibold text-[24px] leading-[36px] screen-495:text-[35px] screen-495:leading-[43.8px]">
Plugins</h2>
</div>
<form action="/search" method="post" aria-describedby="plugin-search-title"
class="flex flex-auto items-center border-b-2 border-black text-xl"
data-testid="searchBarForm">
<input type="text" id="query" name="query" ,
class="flex flex-auto border-none outline-none bg-transparent placeholder-gray-500 text-sds-body-s screen-495:text-sds-body-m w-0"
, placeholder="Search for a plugin by keyword or author">
<button aria-label="Submit search query"
class="MuiButtonBase-root Mui-disabled MuiIconButton-root Mui-disabled MuiIconButton-sizeLarge p-3 css-1uhezh1"
data-testid="submitQueryButton" disabled="" tabindex="-1" type="button"><svg
class="h-5 w-5 h-[1.375rem] w-[1.375rem]" fill="none" height="16"
viewbox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
<path
d="M8.32004 7.68001L0.746704 15.2533M10.6667 9.60001C13.0134 9.60001 14.9334 7.68001 14.9334 5.33335C14.9334 2.98668 13.0134 1.06668 10.6667 1.06668C8.32004 1.06668 6.40004 2.98668 6.40004 5.33335C6.40004 7.68001 8.32004 9.60001 10.6667 9.60001Z"
stroke="black" stroke-width="2"></path>
</svg></button>
</form>
</div>
</div>
<!-- <div class="flex-grow min-h-screen">
<div
class="p-sds-xl screen-495:p-12 grid justify-center gap-x-sds-xl screen-495:gap-x-12 grid-cols-2 screen-875:grid-cols-napari-3 screen-1150:grid-cols-napari-3 screen-1425:grid-cols-napari-5">
<aside class="col-span-2 screen-875:col-span-1 mb-6 screen-875:m-0">
<div>
<div class="screen-875:hidden">
<div
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 MuiAccordion-root shadow-none MuiAccordion-rounded MuiAccordion-gutters css-13fm2e6">
<div aria-expanded="false"
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-gutters p-0 font-semibold Accordian_summary__ujXpK flex-row-reverse uppercase css-emmjdt"
data-testid="accordionSummary" data-title="Filter by requirement"
role="button" tabindex="0">
<div
class="MuiAccordionSummary-content !ml-sds-xl MuiAccordionSummary-contentGutters css-1u9y2vi">
Filter by requirement</div>
<div
class="MuiAccordionSummary-expandIconWrapper Accordian_expandIcon__6KkD2 css-7vt05y">
<svg fill="none" height="9" viewbox="0 0 8 9" width="8"
xmlns="http://www.w3.org/2000/svg">
<path
d="M5.56686 4.57102L1.5 6.91246L1.5 2.22958L5.56686 4.57102Z"
fill="black" stroke="black" stroke-width="2"></path>
</svg>
</div>
</div>
<div class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-hidden css-13g2f1a"
style="min-height:0px">
<div class="MuiCollapse-wrapper MuiCollapse-vertical css-hboir5">
<div
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-8atqhb">
<div class="MuiAccordion-region" role="region">
<div
class="MuiAccordionDetails-root p-0 flex-col css-c5q3ji">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium underline w-min whitespace-nowrap text-black css-rb2pz"
data-filter-type="requirement"
data-testid="clearAllButton" tabindex="0"
type="button">Clear all</button>
<div
class="grid grid-cols-1 screen-600:grid-cols-2 screen-875:grid-cols-1 space-y-sds-l px-sds-s screen-875:px-0">
<div
class="hidden screen-875:flex items-center justify-between">
<legend
class="uppercase text-black font-semibold text-sm">
Filter by requirement</legend><button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium underline w-min whitespace-nowrap text-black css-rb2pz"
data-filter-type="requirement"
data-testid="clearAllButton" tabindex="0"
type="button">Clear
all</button>
</div>
<div class="flex flex-col col-span-2 space-y-sds-s">
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="supportedData"
data-testid="pluginFilter">
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="pluginType"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button"
tabindex="0" type="button"><span
class="font-semibold text-sm">Plugin
type</span><svg
class="w-4 h-4" fill="none"
height="35"
viewbox="0 0 35 35"
width="35"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black"
stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="writerFileExtensions"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button"
tabindex="0" type="button"><span
class="font-semibold text-sm">Save
extension</span><svg
class="w-4 h-4" fill="none"
height="35"
viewbox="0 0 35 35"
width="35"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black"
stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="readerFileExtensions"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button"
tabindex="0" type="button"><span
class="font-semibold text-sm">Open
extension</span><svg
class="w-4 h-4" fill="none"
height="35"
viewbox="0 0 35 35"
width="35"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black"
stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="authors"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button"
tabindex="0" type="button"><span
class="font-semibold text-sm">Authors</span><svg
class="w-4 h-4" fill="none"
height="35"
viewbox="0 0 35 35"
width="35"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black"
stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="pythonVersion"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button"
tabindex="0" type="button"><span
class="font-semibold text-sm">Python
versions</span><svg
class="w-4 h-4" fill="none"
height="35"
viewbox="0 0 35 35"
width="35"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black"
stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="operatingSystems"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button"
tabindex="0" type="button"><span
class="font-semibold text-sm">Operating
system</span><svg
class="w-4 h-4" fill="none"
height="35"
viewbox="0 0 35 35"
width="35"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black"
stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true"
data-filter="license"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button"
tabindex="0" type="button"><span
class="font-semibold text-sm">License</span><svg
class="w-4 h-4" fill="none"
height="35"
viewbox="0 0 35 35"
width="35"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black"
stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hidden screen-875:block">
<div
class="grid grid-cols-1 screen-600:grid-cols-2 screen-875:grid-cols-1 space-y-sds-l px-sds-s screen-875:px-0">
<div class="hidden screen-875:flex items-center justify-between">
<legend class="uppercase text-black font-semibold text-sm">Filter by
requirement</legend>
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium underline w-min whitespace-nowrap text-black css-rb2pz"
data-filter-type="requirement" data-testid="clearAllButton"
tabindex="0" type="button">Clear all</button>
</div>
<div class="flex flex-col col-span-2 space-y-sds-s">
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true" data-filter="pluginType"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button" tabindex="0" type="button"><span
class="font-semibold text-sm">Plugin type</span><svg
class="w-4 h-4" fill="none" height="35"
viewbox="0 0 35 35" width="35"
xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black" stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true" data-filter="writerFileExtensions"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button" tabindex="0" type="button"><span
class="font-semibold text-sm">Save
extension</span><svg class="w-4 h-4" fill="none"
height="35" viewbox="0 0 35 35" width="35"
xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black" stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true" data-filter="readerFileExtensions"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button" tabindex="0" type="button"><span
class="font-semibold text-sm">Open
extension</span><svg class="w-4 h-4" fill="none"
height="35" viewbox="0 0 35 35" width="35"
xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black" stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true" data-filter="authors"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button" tabindex="0" type="button"><span
class="font-semibold text-sm">Authors</span><svg
class="w-4 h-4" fill="none" height="35"
viewbox="0 0 35 35" width="35"
xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black" stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true" data-filter="pythonVersion"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button" tabindex="0" type="button"><span
class="font-semibold text-sm">Python
versions</span><svg class="w-4 h-4" fill="none"
height="35" viewbox="0 0 35 35" width="35"
xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black" stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true" data-filter="operatingSystems"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button" tabindex="0" type="button"><span
class="font-semibold text-sm">Operating
system</span><svg class="w-4 h-4" fill="none"
height="35" viewbox="0 0 35 35" width="35"
xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black" stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
<div>
<div class="py-2 hover:bg-hub-gray-100 PluginComplexFilter_complexFilter__SQn02 css-1x0reya"
data-complex-filter="true" data-filter="license"
data-testid="pluginFilter">
<div class="border-b border-black">
<button
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium text-black w-full flex justify-between p-0 pb-2 css-rb2pz"
data-testid="button" tabindex="0" type="button"><span
class="font-semibold text-sm">License</span><svg
class="w-4 h-4" fill="none" height="35"
viewbox="0 0 35 35" width="35"
xmlns="http://www.w3.org/2000/svg">
<path d="M6 12L17.8587 23.8587L29.7173 12"
stroke="black" stroke-width="3"></path>
</svg></button>
</div>
<div class="css-1rn8f6y"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="screen-875:hidden">
<div
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 MuiAccordion-root shadow-none MuiAccordion-rounded MuiAccordion-gutters css-13fm2e6">
<div aria-expanded="false"
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-gutters p-0 font-semibold Accordian_summary__ujXpK flex-row-reverse css-emmjdt"
data-testid="accordionSummary" data-title="SORT BY: Recently Updated"
role="button" tabindex="0">
<div
class="MuiAccordionSummary-content !ml-sds-xl MuiAccordionSummary-contentGutters css-1u9y2vi">
SORT BY: Recently Updated</div>
<div
class="MuiAccordionSummary-expandIconWrapper Accordian_expandIcon__6KkD2 css-7vt05y">
<svg fill="none" height="9" viewbox="0 0 8 9" width="8"
xmlns="http://www.w3.org/2000/svg">
<path d="M5.56686 4.57102L1.5 6.91246L1.5 2.22958L5.56686 4.57102Z"
fill="black" stroke="black" stroke-width="2"></path>
</svg>
</div>
</div>
<div class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-hidden css-13g2f1a"
style="min-height:0px">
<div class="MuiCollapse-wrapper MuiCollapse-vertical css-hboir5">
<div class="MuiCollapse-wrapperInner MuiCollapse-vertical css-8atqhb">
<div class="MuiAccordion-region" role="region">
<div class="MuiAccordionDetails-root p-0 flex-col css-c5q3ji">
<fieldset class="MuiFormControl-root css-13sljp9">
<legend
class="uppercase text-black font-semibold text-sm mb-sds-s hidden screen-875:block">
Sort</legend>
<div aria-label="Sort plugins by"
class="MuiFormGroup-root css-1h7anqn"
role="radiogroup">
<div>
<label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="false"
data-sort-type="pluginName"
data-testid="sortByRadio">
<span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd">
<input
class="PrivateSwitchBase-input css-1m9pwf3"
name="sort-by" type="radio"
value="pluginName" />
<span class="css-hyxlzm">
<svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg>
<svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-6fmrkg"
data-testid="RadioButtonCheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg>
</span>
</span>
<span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Plugin
Name (A-Z)</span>
</label>
</div>
<div><label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="true"
data-sort-type="recentlyUpdated"
data-testid="sortByRadio"><span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault Mui-checked MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd"><input
checked=""
class="PrivateSwitchBase-input css-1m9pwf3"
name="sort-by" type="radio"
value="recentlyUpdated" /><span
class="css-hyxlzm"><svg
aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg>
<svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-ibfjhf"
data-testid="RadioButtonCheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg>
</span></span><span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Recently
Updated</span></label></div>
<div><label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="false"
data-sort-type="newest"
data-testid="sortByRadio"><span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd"><input
class="PrivateSwitchBase-input css-1m9pwf3"
name="sort-by" type="radio"
value="newest" /><span
class="css-hyxlzm"><svg
aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg><svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-6fmrkg"
data-testid="RadioButtonCheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg></span></span><span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Newest</span></label>
</div>
<div><label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="false"
data-sort-type="totalInstalls"
data-testid="sortByRadio"><span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd"><input
class="PrivateSwitchBase-input css-1m9pwf3"
name="sort-by" type="radio"
value="totalInstalls" /><span
class="css-hyxlzm"><svg
aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg><svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-6fmrkg"
data-testid="RadioButtonCheckedIcon"
focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg></span></span><span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Installs
(most to least)</span></label></div>
</div>
</fieldset>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hidden screen-875:block">
<fieldset class="MuiFormControl-root css-13sljp9">
<legend
class="uppercase text-black font-semibold text-sm mb-sds-s hidden screen-875:block">
Sort</legend>
<div aria-label="Sort plugins by" class="MuiFormGroup-root css-1h7anqn"
role="radiogroup">
<div>
<label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="false" data-sort-type="pluginName"
data-testid="sortByRadio">
<span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd">
<input class="PrivateSwitchBase-input css-1m9pwf3"
name="sort-by" type="radio" value="pluginName" />
<span class="css-hyxlzm">
<svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg>
<svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-6fmrkg"
data-testid="RadioButtonCheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg>
</span>
</span>
<span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Plugin
Name (A-Z)</span>
</label>
</div>
<div><label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="true" data-sort-type="recentlyUpdated"
data-testid="sortByRadio"><span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault Mui-checked MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd"><input
checked="" class="PrivateSwitchBase-input css-1m9pwf3"
name="sort-by" type="radio" value="recentlyUpdated" /><span
class="css-hyxlzm"><svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg>
<svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-ibfjhf"
data-testid="RadioButtonCheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg>
</span></span><span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Recently
Updated</span></label></div>
<div><label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="false" data-sort-type="newest"
data-testid="sortByRadio"><span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd"><input
class="PrivateSwitchBase-input css-1m9pwf3" name="sort-by"
type="radio" value="newest" /><span class="css-hyxlzm"><svg
aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg><svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-6fmrkg"
data-testid="RadioButtonCheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg></span></span><span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Newest</span></label>
</div>
<div><label
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-1kn6clu"
data-selected="false" data-sort-type="totalInstalls"
data-testid="sortByRadio"><span
class="MuiButtonBase-root MuiRadio-root MuiRadio-colorDefault PrivateSwitchBase-root MuiRadio-root MuiRadio-colorDefault MuiRadio-root MuiRadio-colorDefault text-black fill-current css-owbzdd"><input
class="PrivateSwitchBase-input css-1m9pwf3" name="sort-by"
type="radio" value="totalInstalls" /><span
class="css-hyxlzm"><svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xziwqe"
data-testid="RadioButtonUncheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z">
</path>
</svg><svg aria-hidden="true"
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-6fmrkg"
data-testid="RadioButtonCheckedIcon" focusable="false"
viewbox="0 0 24 24">
<path
d="M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z">
</path>
</svg></span></span><span
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label text-base css-as7nzz">Installs
(most to least)</span></label></div>
</div>
</fieldset>
</div>
</aside> -->
<div
class="p-sds-xl screen-495:p-12 grid justify-center gap-x-sds-xl screen-495:gap-x-12 grid-cols-2 screen-875:grid-cols-napari-3 screen-1150:grid-cols-napari-3 screen-1425:grid-cols-napari-5">
<div
class="w-full col-span-2 row-start-1 screen-875:col-span-3 screen-1150:col-start-1 screen-1425:col-start-2">
<section class="col-span-2 screen-1425:col-span-3 space-y-sds-xl">
<div class="flex justify-between">
<h2 class="flex items-center font-bold text-xl">Browse plugins:
5<!-- insert number here -->
</h2>
</div>
<div class="grid justify-center gap-x-sds-xl screen-495:gap-x-12 grid-cols-2">
<html>
<body>
<a class="col-span-2 screen-1425:col-span-3 searchResult py-sds-xl border-black border-t-2 last:border-b-2 hover:bg-hub-gray-100" data-testid="pluginSearchResult" href="./plugins/brainglobe-segmentation.html">
<article class="grid gap-x-sds-xl screen-495:gap-x-12 screen-600:grid-cols-2 screen-1425:grid-cols-napari-3" data-testid="searchResult">
<div class="col-span-2 screen-495:col-span-1 screen-1425:col-span-2 flex flex-col justify-between">
<div>
<h3 class="font-bold text-lg" data-testid="searchResultDisplayName">brainglobe-segmentation</h3>
<span class="mt-sds-m screen-495:mt-3 text-[0.6875rem]" data-testid="searchResultName">brainglobe-segmentation</span>
<p class="mt-3" data-testid="searchResultSummary">Segmentation of anatomical structures in a common coordinate space</p>
</div>
<ul class="mt-3 text-xs">
<li class="my-sds-s font-bold PluginSearchResult_linkItem__Vvs7H" data-testid="searchResultAuthor">Adam Tyson, Horst Obenhaus</li>
</ul>
</div>
<ul class="mt-sds-l screen-600:m-0 space-y-1 text-sm col-span-2 screen-495:col-span-1">
<li class="grid grid-cols-[auto,1fr]" data-label="First released" data-testid="searchResultMetadata" data-value="2023-11-18">
<h4 class="inline whitespace-nowrap">First released<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">2023-11-18</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Last updated" data-testid="searchResultMetadata" data-value="2024-01-16">
<h4 class="inline whitespace-nowrap">Last updated<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">2024-01-16</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Plugin type" data-testid="searchResultMetadata" data-value="widget">
<h4 class="inline whitespace-nowrap">Plugin type<!-- -->: </h4><span class="ml-sds-xxs font-bold">widget</span>
</li>
</ul>
<div class="mt-sds-xl text-xs flex flex-col gap-sds-s col-span-2 screen-1425:col-span-3">
</div>
</article>
</a>
<a class="col-span-2 screen-1425:col-span-3 searchResult py-sds-xl border-black border-t-2 last:border-b-2 hover:bg-hub-gray-100" data-testid="pluginSearchResult" href="./plugins/brainreg.html">
<article class="grid gap-x-sds-xl screen-495:gap-x-12 screen-600:grid-cols-2 screen-1425:grid-cols-napari-3" data-testid="searchResult">
<div class="col-span-2 screen-495:col-span-1 screen-1425:col-span-2 flex flex-col justify-between">
<div>
<h3 class="font-bold text-lg" data-testid="searchResultDisplayName">brainreg</h3>
<span class="mt-sds-m screen-495:mt-3 text-[0.6875rem]" data-testid="searchResultName">brainreg</span>
<p class="mt-3" data-testid="searchResultSummary">Automated multi-atlas whole-brain microscopy registration</p>
</div>
<ul class="mt-3 text-xs">
<li class="my-sds-s font-bold PluginSearchResult_linkItem__Vvs7H" data-testid="searchResultAuthor">Adam Tyson, Charly Rousseau, Stephen Lenzi</li>
</ul>
</div>
<ul class="mt-sds-l screen-600:m-0 space-y-1 text-sm col-span-2 screen-495:col-span-1">
<li class="grid grid-cols-[auto,1fr]" data-label="First released" data-testid="searchResultMetadata" data-value="2023-03-01">
<h4 class="inline whitespace-nowrap">First released<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">2023-03-01</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Last updated" data-testid="searchResultMetadata" data-value="2024-01-12">
<h4 class="inline whitespace-nowrap">Last updated<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">2024-01-12</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Plugin type" data-testid="searchResultMetadata" data-value="widget, sample_data">
<h4 class="inline whitespace-nowrap">Plugin type<!-- -->: </h4><span class="ml-sds-xxs font-bold">widget, sample_data</span>
</li>
</ul>
<div class="mt-sds-xl text-xs flex flex-col gap-sds-s col-span-2 screen-1425:col-span-3">
</div>
</article>
</a>
<a class="col-span-2 screen-1425:col-span-3 searchResult py-sds-xl border-black border-t-2 last:border-b-2 hover:bg-hub-gray-100" data-testid="pluginSearchResult" href="./plugins/brainglobe-napari-io.html">
<article class="grid gap-x-sds-xl screen-495:gap-x-12 screen-600:grid-cols-2 screen-1425:grid-cols-napari-3" data-testid="searchResult">
<div class="col-span-2 screen-495:col-span-1 screen-1425:col-span-2 flex flex-col justify-between">
<div>
<h3 class="font-bold text-lg" data-testid="searchResultDisplayName">brainglobe-napari-io</h3>
<span class="mt-sds-m screen-495:mt-3 text-[0.6875rem]" data-testid="searchResultName">brainglobe-napari-io</span>
<p class="mt-3" data-testid="searchResultSummary">Read and write files from the BrainGlobe computational neuroanatomy suite into napari</p>
</div>
<ul class="mt-3 text-xs">
<li class="my-sds-s font-bold PluginSearchResult_linkItem__Vvs7H" data-testid="searchResultAuthor">Adam Tyson</li>
</ul>
</div>
<ul class="mt-sds-l screen-600:m-0 space-y-1 text-sm col-span-2 screen-495:col-span-1">
<li class="grid grid-cols-[auto,1fr]" data-label="First released" data-testid="searchResultMetadata" data-value="2022-02-13">
<h4 class="inline whitespace-nowrap">First released<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">2022-02-13</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Last updated" data-testid="searchResultMetadata" data-value="2024-01-08">
<h4 class="inline whitespace-nowrap">Last updated<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">2024-01-08</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Plugin type" data-testid="searchResultMetadata" data-value="reader, writer">
<h4 class="inline whitespace-nowrap">Plugin type<!-- -->: </h4><span class="ml-sds-xxs font-bold">reader, writer</span>
</li>
</ul>
<div class="mt-sds-xl text-xs flex flex-col gap-sds-s col-span-2 screen-1425:col-span-3">
</div>
</article>
</a>
<a class="col-span-2 screen-1425:col-span-3 searchResult py-sds-xl border-black border-t-2 last:border-b-2 hover:bg-hub-gray-100" data-testid="pluginSearchResult" href="./plugins/cellfinder.html">
<article class="grid gap-x-sds-xl screen-495:gap-x-12 screen-600:grid-cols-2 screen-1425:grid-cols-napari-3" data-testid="searchResult">
<div class="col-span-2 screen-495:col-span-1 screen-1425:col-span-2 flex flex-col justify-between">
<div>
<h3 class="font-bold text-lg" data-testid="searchResultDisplayName">cellfinder</h3>
<span class="mt-sds-m screen-495:mt-3 text-[0.6875rem]" data-testid="searchResultName">cellfinder</span>
<p class="mt-3" data-testid="searchResultSummary">Automated 3D cell detection in large microscopy images</p>
</div>
<ul class="mt-3 text-xs">
<li class="my-sds-s font-bold PluginSearchResult_linkItem__Vvs7H" data-testid="searchResultAuthor">Adam Tyson, Christian Niedworok, Charly Rousseau</li>
</ul>
</div>
<ul class="mt-sds-l screen-600:m-0 space-y-1 text-sm col-span-2 screen-495:col-span-1">
<li class="grid grid-cols-[auto,1fr]" data-label="First released" data-testid="searchResultMetadata" data-value="nan">
<h4 class="inline whitespace-nowrap">First released<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">nan</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Last updated" data-testid="searchResultMetadata" data-value="nan">
<h4 class="inline whitespace-nowrap">Last updated<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">nan</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Plugin type" data-testid="searchResultMetadata" data-value="widget, sample_data">
<h4 class="inline whitespace-nowrap">Plugin type<!-- -->: </h4><span class="ml-sds-xxs font-bold">widget, sample_data</span>
</li>
</ul>
<div class="mt-sds-xl text-xs flex flex-col gap-sds-s col-span-2 screen-1425:col-span-3">
</div>
</article>
</a>
<a class="col-span-2 screen-1425:col-span-3 searchResult py-sds-xl border-black border-t-2 last:border-b-2 hover:bg-hub-gray-100" data-testid="pluginSearchResult" href="./plugins/iterseg.html">
<article class="grid gap-x-sds-xl screen-495:gap-x-12 screen-600:grid-cols-2 screen-1425:grid-cols-napari-3" data-testid="searchResult">
<div class="col-span-2 screen-495:col-span-1 screen-1425:col-span-2 flex flex-col justify-between">
<div>
<h3 class="font-bold text-lg" data-testid="searchResultDisplayName">iterseg</h3>
<span class="mt-sds-m screen-495:mt-3 text-[0.6875rem]" data-testid="searchResultName">iterseg</span>
<p class="mt-3" data-testid="searchResultSummary">napari plugin for iteratively improving unet-watershed segmentation</p>
</div>
<ul class="mt-3 text-xs">
<li class="my-sds-s font-bold PluginSearchResult_linkItem__Vvs7H" data-testid="searchResultAuthor">Abigail S McGovern & Juan Nunez-Iglesias</li>
</ul>
</div>
<ul class="mt-sds-l screen-600:m-0 space-y-1 text-sm col-span-2 screen-495:col-span-1">
<li class="grid grid-cols-[auto,1fr]" data-label="First released" data-testid="searchResultMetadata" data-value="nan">
<h4 class="inline whitespace-nowrap">First released<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">nan</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Last updated" data-testid="searchResultMetadata" data-value="nan">
<h4 class="inline whitespace-nowrap">Last updated<!-- -->: </h4>
<span class="ml-sds-xxs font-bold">nan</span>
</li>
<li class="grid grid-cols-[auto,1fr]" data-label="Plugin type" data-testid="searchResultMetadata" data-value="widget">
<h4 class="inline whitespace-nowrap">Plugin type<!-- -->: </h4><span class="ml-sds-xxs font-bold">widget</span>
</li>
</ul>
<div class="mt-sds-xl text-xs flex flex-col gap-sds-s col-span-2 screen-1425:col-span-3">
</div>
</article>
</a>
</body>
</html><!-- insert temp.html -->
</div>
</section>
</div>
</div>
<!-- <nav class="my-6 screen-495:my-12 flex items-center justify-center select-none"><button
aria-label="pagination-left"
class="Pagination_pageButton__DFhus focus-visible:bg-hub-gray-100 hover:bg-hub-gray-100 opacity-0 cursor-default mr-sds-s"
data-testid="paginationLeft" disabled="" type="button"><svg fill="none" height="36"
viewbox="0 0 36 36" width="36" xmlns="http://www.w3.org/2000/svg">
<path d="M21.071 11L14 18.0711L21.071 25.1421" stroke="black" stroke-width="2"></path>
</svg></button><span class="Pagination_value__wJkYs" data-testid="paginationValue"><span
class="inline-block text-center w-4">1</span><span class="mx-sds-l">/</span><span
class="inline-block text-center w-4">27</span></span><button
aria-label="pagination-right"
class="Pagination_pageButton__DFhus focus-visible:bg-hub-gray-100 hover:bg-hub-gray-100 ml-sds-xxs"
data-testid="paginationRight" type="button"><svg fill="none" height="36" viewbox="0 0 36 36"