@gitlab/ui 49.4.0 → 49.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +3 -3
- package/src/components/base/filtered_search/__snapshots__/filtered_search_term.spec.js.snap +23 -4
- package/src/components/base/icon/__snapshots__/icon.spec.js.snap +9 -2
- package/src/components/base/paginated_list/__snapshots__/paginated_list.spec.js.snap +0 -70
- package/src/components/base/path/__snapshots__/path.spec.js.snap +3 -68
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [49.4.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v49.4.0...v49.4.1) (2022-11-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** upgrade bootstrap-vue to v2.23.1 ([168136a](https://gitlab.com/gitlab-org/gitlab-ui/commit/168136a9234754745ddbd7f08bdc33f95c80a115))
|
|
7
|
+
|
|
1
8
|
# [49.4.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v49.3.0...v49.4.0) (2022-11-04)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "49.4.
|
|
3
|
+
"version": "49.4.1",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "NODE_ENV=production rollup -c",
|
|
24
24
|
"prebuild": "run-s build-scss-variables generate-utilities",
|
|
25
|
+
"prepare": "run-s build-scss-variables generate-utilities",
|
|
25
26
|
"generate-utilities": "make src/scss/utilities.scss",
|
|
26
27
|
"build-scss-variables": "make scss_to_js/scss_variables.js",
|
|
27
28
|
"clean": "rm -r dist storybook scss_to_js/scss_variables.* src/scss/utilities.scss",
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
"eslint": "8.26.0",
|
|
108
109
|
"eslint-import-resolver-jest": "3.0.2",
|
|
109
110
|
"eslint-plugin-cypress": "2.12.1",
|
|
110
|
-
"eslint-plugin-storybook": "0.6.
|
|
111
|
+
"eslint-plugin-storybook": "0.6.7",
|
|
111
112
|
"file-loader": "^4.2.0",
|
|
112
113
|
"glob": "^7.2.0",
|
|
113
114
|
"identity-obj-proxy": "^3.0.0",
|
|
@@ -115,7 +116,6 @@
|
|
|
115
116
|
"jest": "^29.2.2",
|
|
116
117
|
"jest-circus": "29.2.2",
|
|
117
118
|
"jest-environment-jsdom": "29.2.2",
|
|
118
|
-
"jest-serializer-vue": "^2.0.2",
|
|
119
119
|
"markdownlint-cli": "^0.29.0",
|
|
120
120
|
"mockdate": "^2.0.5",
|
|
121
121
|
"npm-run-all": "^4.1.5",
|
|
@@ -1,13 +1,32 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`Filtered search term renders input with value in active mode 1`] = `
|
|
4
|
-
<div
|
|
5
|
-
|
|
4
|
+
<div
|
|
5
|
+
class="gl-h-auto gl-filtered-search-term"
|
|
6
|
+
data-testid="filtered-search-term"
|
|
7
|
+
>
|
|
8
|
+
<div
|
|
9
|
+
active="true"
|
|
10
|
+
class="gl-filtered-search-term-token"
|
|
11
|
+
cursor-position="end"
|
|
12
|
+
value="test-value"
|
|
13
|
+
>
|
|
14
|
+
test-value
|
|
15
|
+
</div>
|
|
6
16
|
</div>
|
|
7
17
|
`;
|
|
8
18
|
|
|
9
19
|
exports[`Filtered search term renders value in inactive mode 1`] = `
|
|
10
|
-
<div
|
|
11
|
-
|
|
20
|
+
<div
|
|
21
|
+
class="gl-h-auto gl-filtered-search-term"
|
|
22
|
+
data-testid="filtered-search-term"
|
|
23
|
+
>
|
|
24
|
+
<div
|
|
25
|
+
class="gl-filtered-search-term-token"
|
|
26
|
+
cursor-position="end"
|
|
27
|
+
value="test-value"
|
|
28
|
+
>
|
|
29
|
+
test-value
|
|
30
|
+
</div>
|
|
12
31
|
</div>
|
|
13
32
|
`;
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`Icon component when created shows svg class "s8" and path "/path/to/icons.svg#check-circle" 1`] = `
|
|
4
|
-
<svg
|
|
5
|
-
|
|
4
|
+
<svg
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
class="gl-icon s8"
|
|
7
|
+
data-testid="check-circle-icon"
|
|
8
|
+
role="img"
|
|
9
|
+
>
|
|
10
|
+
<use
|
|
11
|
+
href="/path/to/icons.svg#check-circle"
|
|
12
|
+
/>
|
|
6
13
|
</svg>
|
|
7
14
|
`;
|
|
@@ -5,13 +5,11 @@ exports[`Paginated List Pagination renders 1 item on page 7 with page size of 2
|
|
|
5
5
|
<div
|
|
6
6
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
7
7
|
>
|
|
8
|
-
|
|
9
8
|
<gl-search-box-by-type-stub
|
|
10
9
|
clearbuttontitle="Clear"
|
|
11
10
|
value=""
|
|
12
11
|
/>
|
|
13
12
|
</div>
|
|
14
|
-
|
|
15
13
|
<ul
|
|
16
14
|
class="list-group list-group-flush list-unstyled"
|
|
17
15
|
>
|
|
@@ -29,7 +27,6 @@ exports[`Paginated List Pagination renders 1 item on page 7 with page size of 2
|
|
|
29
27
|
</div>
|
|
30
28
|
</li>
|
|
31
29
|
</ul>
|
|
32
|
-
|
|
33
30
|
<gl-pagination-stub
|
|
34
31
|
align="left"
|
|
35
32
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -46,8 +43,6 @@ exports[`Paginated List Pagination renders 1 item on page 7 with page size of 2
|
|
|
46
43
|
totalitems="13"
|
|
47
44
|
value="7"
|
|
48
45
|
/>
|
|
49
|
-
|
|
50
|
-
<!---->
|
|
51
46
|
</div>
|
|
52
47
|
`;
|
|
53
48
|
|
|
@@ -56,13 +51,11 @@ exports[`Paginated List Pagination renders 3 items on page 2 with default page s
|
|
|
56
51
|
<div
|
|
57
52
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
58
53
|
>
|
|
59
|
-
|
|
60
54
|
<gl-search-box-by-type-stub
|
|
61
55
|
clearbuttontitle="Clear"
|
|
62
56
|
value=""
|
|
63
57
|
/>
|
|
64
58
|
</div>
|
|
65
|
-
|
|
66
59
|
<ul
|
|
67
60
|
class="list-group list-group-flush list-unstyled"
|
|
68
61
|
>
|
|
@@ -106,7 +99,6 @@ exports[`Paginated List Pagination renders 3 items on page 2 with default page s
|
|
|
106
99
|
</div>
|
|
107
100
|
</li>
|
|
108
101
|
</ul>
|
|
109
|
-
|
|
110
102
|
<gl-pagination-stub
|
|
111
103
|
align="left"
|
|
112
104
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -123,8 +115,6 @@ exports[`Paginated List Pagination renders 3 items on page 2 with default page s
|
|
|
123
115
|
totalitems="13"
|
|
124
116
|
value="2"
|
|
125
117
|
/>
|
|
126
|
-
|
|
127
|
-
<!---->
|
|
128
118
|
</div>
|
|
129
119
|
`;
|
|
130
120
|
|
|
@@ -133,13 +123,11 @@ exports[`Paginated List Pagination renders 5 items on page 1 for a page size of
|
|
|
133
123
|
<div
|
|
134
124
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
135
125
|
>
|
|
136
|
-
|
|
137
126
|
<gl-search-box-by-type-stub
|
|
138
127
|
clearbuttontitle="Clear"
|
|
139
128
|
value=""
|
|
140
129
|
/>
|
|
141
130
|
</div>
|
|
142
|
-
|
|
143
131
|
<ul
|
|
144
132
|
class="list-group list-group-flush list-unstyled"
|
|
145
133
|
>
|
|
@@ -209,7 +197,6 @@ exports[`Paginated List Pagination renders 5 items on page 1 for a page size of
|
|
|
209
197
|
</div>
|
|
210
198
|
</li>
|
|
211
199
|
</ul>
|
|
212
|
-
|
|
213
200
|
<gl-pagination-stub
|
|
214
201
|
align="left"
|
|
215
202
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -226,8 +213,6 @@ exports[`Paginated List Pagination renders 5 items on page 1 for a page size of
|
|
|
226
213
|
totalitems="13"
|
|
227
214
|
value="1"
|
|
228
215
|
/>
|
|
229
|
-
|
|
230
|
-
<!---->
|
|
231
216
|
</div>
|
|
232
217
|
`;
|
|
233
218
|
|
|
@@ -236,13 +221,11 @@ exports[`Paginated List Pagination renders 10 items for a default page size of 1
|
|
|
236
221
|
<div
|
|
237
222
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
238
223
|
>
|
|
239
|
-
|
|
240
224
|
<gl-search-box-by-type-stub
|
|
241
225
|
clearbuttontitle="Clear"
|
|
242
226
|
value=""
|
|
243
227
|
/>
|
|
244
228
|
</div>
|
|
245
|
-
|
|
246
229
|
<ul
|
|
247
230
|
class="list-group list-group-flush list-unstyled"
|
|
248
231
|
>
|
|
@@ -377,7 +360,6 @@ exports[`Paginated List Pagination renders 10 items for a default page size of 1
|
|
|
377
360
|
</div>
|
|
378
361
|
</li>
|
|
379
362
|
</ul>
|
|
380
|
-
|
|
381
363
|
<gl-pagination-stub
|
|
382
364
|
align="left"
|
|
383
365
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -394,8 +376,6 @@ exports[`Paginated List Pagination renders 10 items for a default page size of 1
|
|
|
394
376
|
totalitems="13"
|
|
395
377
|
value="1"
|
|
396
378
|
/>
|
|
397
|
-
|
|
398
|
-
<!---->
|
|
399
379
|
</div>
|
|
400
380
|
`;
|
|
401
381
|
|
|
@@ -404,13 +384,11 @@ exports[`Paginated List Pagination renders 13 items for a default page size of 2
|
|
|
404
384
|
<div
|
|
405
385
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
406
386
|
>
|
|
407
|
-
|
|
408
387
|
<gl-search-box-by-type-stub
|
|
409
388
|
clearbuttontitle="Clear"
|
|
410
389
|
value=""
|
|
411
390
|
/>
|
|
412
391
|
</div>
|
|
413
|
-
|
|
414
392
|
<ul
|
|
415
393
|
class="list-group list-group-flush list-unstyled"
|
|
416
394
|
>
|
|
@@ -584,7 +562,6 @@ exports[`Paginated List Pagination renders 13 items for a default page size of 2
|
|
|
584
562
|
</div>
|
|
585
563
|
</li>
|
|
586
564
|
</ul>
|
|
587
|
-
|
|
588
565
|
<gl-pagination-stub
|
|
589
566
|
align="left"
|
|
590
567
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -601,8 +578,6 @@ exports[`Paginated List Pagination renders 13 items for a default page size of 2
|
|
|
601
578
|
totalitems="13"
|
|
602
579
|
value="1"
|
|
603
580
|
/>
|
|
604
|
-
|
|
605
|
-
<!---->
|
|
606
581
|
</div>
|
|
607
582
|
`;
|
|
608
583
|
|
|
@@ -611,19 +586,14 @@ exports[`Paginated List Search states renders the custom empty search message wh
|
|
|
611
586
|
<div
|
|
612
587
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
613
588
|
>
|
|
614
|
-
|
|
615
589
|
<gl-search-box-by-type-stub
|
|
616
590
|
clearbuttontitle="Clear"
|
|
617
591
|
value=""
|
|
618
592
|
/>
|
|
619
593
|
</div>
|
|
620
|
-
|
|
621
594
|
<ul
|
|
622
595
|
class="list-group list-group-flush list-unstyled"
|
|
623
596
|
/>
|
|
624
|
-
|
|
625
|
-
<!---->
|
|
626
|
-
|
|
627
597
|
<div
|
|
628
598
|
class="bs-callout bs-callout-warning mt-3 empty-message empty-search"
|
|
629
599
|
>
|
|
@@ -639,19 +609,14 @@ exports[`Paginated List Search states renders the default empty search message w
|
|
|
639
609
|
<div
|
|
640
610
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
641
611
|
>
|
|
642
|
-
|
|
643
612
|
<gl-search-box-by-type-stub
|
|
644
613
|
clearbuttontitle="Clear"
|
|
645
614
|
value=""
|
|
646
615
|
/>
|
|
647
616
|
</div>
|
|
648
|
-
|
|
649
617
|
<ul
|
|
650
618
|
class="list-group list-group-flush list-unstyled"
|
|
651
619
|
/>
|
|
652
|
-
|
|
653
|
-
<!---->
|
|
654
|
-
|
|
655
620
|
<div
|
|
656
621
|
class="bs-callout bs-callout-warning mt-3 empty-message empty-search"
|
|
657
622
|
>
|
|
@@ -667,13 +632,11 @@ exports[`Paginated List Search states renders the list filtered by search result
|
|
|
667
632
|
<div
|
|
668
633
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
669
634
|
>
|
|
670
|
-
|
|
671
635
|
<gl-search-box-by-type-stub
|
|
672
636
|
clearbuttontitle="Clear"
|
|
673
637
|
value=""
|
|
674
638
|
/>
|
|
675
639
|
</div>
|
|
676
|
-
|
|
677
640
|
<ul
|
|
678
641
|
class="list-group list-group-flush list-unstyled"
|
|
679
642
|
>
|
|
@@ -704,7 +667,6 @@ exports[`Paginated List Search states renders the list filtered by search result
|
|
|
704
667
|
</div>
|
|
705
668
|
</li>
|
|
706
669
|
</ul>
|
|
707
|
-
|
|
708
670
|
<gl-pagination-stub
|
|
709
671
|
align="left"
|
|
710
672
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -721,8 +683,6 @@ exports[`Paginated List Search states renders the list filtered by search result
|
|
|
721
683
|
totalitems="2"
|
|
722
684
|
value="1"
|
|
723
685
|
/>
|
|
724
|
-
|
|
725
|
-
<!---->
|
|
726
686
|
</div>
|
|
727
687
|
`;
|
|
728
688
|
|
|
@@ -731,19 +691,14 @@ exports[`Paginated List Searchless states renders the list in an empty state wit
|
|
|
731
691
|
<div
|
|
732
692
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
733
693
|
>
|
|
734
|
-
|
|
735
694
|
<gl-search-box-by-type-stub
|
|
736
695
|
clearbuttontitle="Clear"
|
|
737
696
|
value=""
|
|
738
697
|
/>
|
|
739
698
|
</div>
|
|
740
|
-
|
|
741
699
|
<ul
|
|
742
700
|
class="list-group list-group-flush list-unstyled"
|
|
743
701
|
/>
|
|
744
|
-
|
|
745
|
-
<!---->
|
|
746
|
-
|
|
747
702
|
<div
|
|
748
703
|
class="bs-callout bs-callout-warning mt-3 empty-message empty-message"
|
|
749
704
|
>
|
|
@@ -759,19 +714,14 @@ exports[`Paginated List Searchless states renders the list in an empty state, wh
|
|
|
759
714
|
<div
|
|
760
715
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
761
716
|
>
|
|
762
|
-
|
|
763
717
|
<gl-search-box-by-type-stub
|
|
764
718
|
clearbuttontitle="Clear"
|
|
765
719
|
value=""
|
|
766
720
|
/>
|
|
767
721
|
</div>
|
|
768
|
-
|
|
769
722
|
<ul
|
|
770
723
|
class="list-group list-group-flush list-unstyled"
|
|
771
724
|
/>
|
|
772
|
-
|
|
773
|
-
<!---->
|
|
774
|
-
|
|
775
725
|
<div
|
|
776
726
|
class="bs-callout bs-callout-warning mt-3 empty-message empty-message"
|
|
777
727
|
>
|
|
@@ -787,13 +737,11 @@ exports[`Paginated List Searchless states renders the list with nested items, wh
|
|
|
787
737
|
<div
|
|
788
738
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
789
739
|
>
|
|
790
|
-
|
|
791
740
|
<gl-search-box-by-type-stub
|
|
792
741
|
clearbuttontitle="Clear"
|
|
793
742
|
value=""
|
|
794
743
|
/>
|
|
795
744
|
</div>
|
|
796
|
-
|
|
797
745
|
<ul
|
|
798
746
|
class="list-group list-group-flush list-unstyled"
|
|
799
747
|
>
|
|
@@ -824,7 +772,6 @@ exports[`Paginated List Searchless states renders the list with nested items, wh
|
|
|
824
772
|
</div>
|
|
825
773
|
</li>
|
|
826
774
|
</ul>
|
|
827
|
-
|
|
828
775
|
<gl-pagination-stub
|
|
829
776
|
align="left"
|
|
830
777
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -841,8 +788,6 @@ exports[`Paginated List Searchless states renders the list with nested items, wh
|
|
|
841
788
|
totalitems="2"
|
|
842
789
|
value="1"
|
|
843
790
|
/>
|
|
844
|
-
|
|
845
|
-
<!---->
|
|
846
791
|
</div>
|
|
847
792
|
`;
|
|
848
793
|
|
|
@@ -851,13 +796,11 @@ exports[`Paginated List props filter filters on default "id" key 1`] = `
|
|
|
851
796
|
<div
|
|
852
797
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
853
798
|
>
|
|
854
|
-
|
|
855
799
|
<gl-search-box-by-type-stub
|
|
856
800
|
clearbuttontitle="Clear"
|
|
857
801
|
value=""
|
|
858
802
|
/>
|
|
859
803
|
</div>
|
|
860
|
-
|
|
861
804
|
<ul
|
|
862
805
|
class="list-group list-group-flush list-unstyled"
|
|
863
806
|
>
|
|
@@ -875,7 +818,6 @@ exports[`Paginated List props filter filters on default "id" key 1`] = `
|
|
|
875
818
|
</div>
|
|
876
819
|
</li>
|
|
877
820
|
</ul>
|
|
878
|
-
|
|
879
821
|
<gl-pagination-stub
|
|
880
822
|
align="left"
|
|
881
823
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -892,8 +834,6 @@ exports[`Paginated List props filter filters on default "id" key 1`] = `
|
|
|
892
834
|
totalitems="1"
|
|
893
835
|
value="1"
|
|
894
836
|
/>
|
|
895
|
-
|
|
896
|
-
<!---->
|
|
897
837
|
</div>
|
|
898
838
|
`;
|
|
899
839
|
|
|
@@ -902,13 +842,11 @@ exports[`Paginated List props filter filters on provided "myKey" key 1`] = `
|
|
|
902
842
|
<div
|
|
903
843
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
904
844
|
>
|
|
905
|
-
|
|
906
845
|
<gl-search-box-by-type-stub
|
|
907
846
|
clearbuttontitle="Clear"
|
|
908
847
|
value=""
|
|
909
848
|
/>
|
|
910
849
|
</div>
|
|
911
|
-
|
|
912
850
|
<ul
|
|
913
851
|
class="list-group list-group-flush list-unstyled"
|
|
914
852
|
>
|
|
@@ -926,7 +864,6 @@ exports[`Paginated List props filter filters on provided "myKey" key 1`] = `
|
|
|
926
864
|
</div>
|
|
927
865
|
</li>
|
|
928
866
|
</ul>
|
|
929
|
-
|
|
930
867
|
<gl-pagination-stub
|
|
931
868
|
align="left"
|
|
932
869
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -943,8 +880,6 @@ exports[`Paginated List props filter filters on provided "myKey" key 1`] = `
|
|
|
943
880
|
totalitems="1"
|
|
944
881
|
value="1"
|
|
945
882
|
/>
|
|
946
|
-
|
|
947
|
-
<!---->
|
|
948
883
|
</div>
|
|
949
884
|
`;
|
|
950
885
|
|
|
@@ -953,13 +888,11 @@ exports[`Paginated List props filter filters with provided filter function 1`] =
|
|
|
953
888
|
<div
|
|
954
889
|
class="row-content-block second-block d-sm-flex justify-content-between flex-row-reverse"
|
|
955
890
|
>
|
|
956
|
-
|
|
957
891
|
<gl-search-box-by-type-stub
|
|
958
892
|
clearbuttontitle="Clear"
|
|
959
893
|
value=""
|
|
960
894
|
/>
|
|
961
895
|
</div>
|
|
962
|
-
|
|
963
896
|
<ul
|
|
964
897
|
class="list-group list-group-flush list-unstyled"
|
|
965
898
|
>
|
|
@@ -977,7 +910,6 @@ exports[`Paginated List props filter filters with provided filter function 1`] =
|
|
|
977
910
|
</div>
|
|
978
911
|
</li>
|
|
979
912
|
</ul>
|
|
980
|
-
|
|
981
913
|
<gl-pagination-stub
|
|
982
914
|
align="left"
|
|
983
915
|
class="d-flex justify-content-center prepend-top-default"
|
|
@@ -994,7 +926,5 @@ exports[`Paginated List props filter filters with provided filter function 1`] =
|
|
|
994
926
|
totalitems="1"
|
|
995
927
|
value="1"
|
|
996
928
|
/>
|
|
997
|
-
|
|
998
|
-
<!---->
|
|
999
929
|
</div>
|
|
1000
930
|
`;
|
|
@@ -20,7 +20,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
20
20
|
/>
|
|
21
21
|
</button>
|
|
22
22
|
</span>
|
|
23
|
-
|
|
24
23
|
<ul
|
|
25
24
|
class="gl-path-nav-list"
|
|
26
25
|
>
|
|
@@ -31,7 +30,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
31
30
|
<button
|
|
32
31
|
class="gl-path-button gl-path-active-item-indigo"
|
|
33
32
|
>
|
|
34
|
-
<!---->
|
|
35
33
|
|
|
36
34
|
First
|
|
37
35
|
<span
|
|
@@ -40,7 +38,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
40
38
|
1d
|
|
41
39
|
</span>
|
|
42
40
|
</button>
|
|
43
|
-
|
|
44
41
|
</li>
|
|
45
42
|
<li
|
|
46
43
|
class="gl-path-nav-list-item"
|
|
@@ -49,7 +46,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
49
46
|
<button
|
|
50
47
|
class="gl-path-button"
|
|
51
48
|
>
|
|
52
|
-
<!---->
|
|
53
49
|
|
|
54
50
|
Second
|
|
55
51
|
<span
|
|
@@ -58,7 +54,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
58
54
|
2d
|
|
59
55
|
</span>
|
|
60
56
|
</button>
|
|
61
|
-
|
|
62
57
|
</li>
|
|
63
58
|
<li
|
|
64
59
|
class="gl-path-nav-list-item"
|
|
@@ -67,7 +62,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
67
62
|
<button
|
|
68
63
|
class="gl-path-button"
|
|
69
64
|
>
|
|
70
|
-
<!---->
|
|
71
65
|
|
|
72
66
|
Third
|
|
73
67
|
<span
|
|
@@ -76,7 +70,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
76
70
|
3d
|
|
77
71
|
</span>
|
|
78
72
|
</button>
|
|
79
|
-
|
|
80
73
|
</li>
|
|
81
74
|
<li
|
|
82
75
|
class="gl-path-nav-list-item"
|
|
@@ -85,7 +78,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
85
78
|
<button
|
|
86
79
|
class="gl-path-button"
|
|
87
80
|
>
|
|
88
|
-
<!---->
|
|
89
81
|
|
|
90
82
|
Fourth
|
|
91
83
|
<span
|
|
@@ -94,7 +86,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
94
86
|
4d
|
|
95
87
|
</span>
|
|
96
88
|
</button>
|
|
97
|
-
|
|
98
89
|
</li>
|
|
99
90
|
<li
|
|
100
91
|
class="gl-path-nav-list-item"
|
|
@@ -103,7 +94,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
103
94
|
<button
|
|
104
95
|
class="gl-path-button"
|
|
105
96
|
>
|
|
106
|
-
<!---->
|
|
107
97
|
|
|
108
98
|
Fifth
|
|
109
99
|
<span
|
|
@@ -112,7 +102,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
112
102
|
5d
|
|
113
103
|
</span>
|
|
114
104
|
</button>
|
|
115
|
-
|
|
116
105
|
</li>
|
|
117
106
|
<li
|
|
118
107
|
class="gl-path-nav-list-item"
|
|
@@ -121,7 +110,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
121
110
|
<button
|
|
122
111
|
class="gl-path-button"
|
|
123
112
|
>
|
|
124
|
-
<!---->
|
|
125
113
|
|
|
126
114
|
Sixth
|
|
127
115
|
<span
|
|
@@ -130,7 +118,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
130
118
|
6d
|
|
131
119
|
</span>
|
|
132
120
|
</button>
|
|
133
|
-
|
|
134
121
|
</li>
|
|
135
122
|
<li
|
|
136
123
|
class="gl-path-nav-list-item"
|
|
@@ -139,7 +126,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
139
126
|
<button
|
|
140
127
|
class="gl-path-button"
|
|
141
128
|
>
|
|
142
|
-
<!---->
|
|
143
129
|
|
|
144
130
|
Seventh
|
|
145
131
|
<span
|
|
@@ -148,7 +134,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
148
134
|
7d
|
|
149
135
|
</span>
|
|
150
136
|
</button>
|
|
151
|
-
|
|
152
137
|
</li>
|
|
153
138
|
<li
|
|
154
139
|
class="gl-path-nav-list-item"
|
|
@@ -157,9 +142,8 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
157
142
|
<button
|
|
158
143
|
category="tertiary"
|
|
159
144
|
class="gl-path-button"
|
|
160
|
-
disabled="
|
|
145
|
+
disabled=""
|
|
161
146
|
>
|
|
162
|
-
<!---->
|
|
163
147
|
|
|
164
148
|
Eighth
|
|
165
149
|
<span
|
|
@@ -168,7 +152,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
168
152
|
8d
|
|
169
153
|
</span>
|
|
170
154
|
</button>
|
|
171
|
-
|
|
172
155
|
</li>
|
|
173
156
|
<li
|
|
174
157
|
class="gl-path-nav-list-item"
|
|
@@ -177,7 +160,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
177
160
|
<button
|
|
178
161
|
class="gl-path-button"
|
|
179
162
|
>
|
|
180
|
-
<!---->
|
|
181
163
|
|
|
182
164
|
Ninth
|
|
183
165
|
<span
|
|
@@ -186,7 +168,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
186
168
|
9d
|
|
187
169
|
</span>
|
|
188
170
|
</button>
|
|
189
|
-
|
|
190
171
|
</li>
|
|
191
172
|
<li
|
|
192
173
|
class="gl-path-nav-list-item"
|
|
@@ -195,7 +176,6 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
195
176
|
<button
|
|
196
177
|
class="gl-path-button"
|
|
197
178
|
>
|
|
198
|
-
<!---->
|
|
199
179
|
|
|
200
180
|
Tenth
|
|
201
181
|
<span
|
|
@@ -204,10 +184,8 @@ exports[`Path matches the snapshot 1`] = `
|
|
|
204
184
|
10d
|
|
205
185
|
</span>
|
|
206
186
|
</button>
|
|
207
|
-
|
|
208
187
|
</li>
|
|
209
188
|
</ul>
|
|
210
|
-
|
|
211
189
|
<span
|
|
212
190
|
class="gl-path-fade gl-path-fade-right"
|
|
213
191
|
style="display: none;"
|
|
@@ -245,7 +223,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
245
223
|
/>
|
|
246
224
|
</button>
|
|
247
225
|
</span>
|
|
248
|
-
|
|
249
226
|
<ul
|
|
250
227
|
class="gl-path-nav-list"
|
|
251
228
|
>
|
|
@@ -270,7 +247,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
270
247
|
12d
|
|
271
248
|
</span>
|
|
272
249
|
</button>
|
|
273
|
-
|
|
274
250
|
</li>
|
|
275
251
|
<li
|
|
276
252
|
class="gl-path-nav-list-item"
|
|
@@ -279,7 +255,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
279
255
|
<button
|
|
280
256
|
class="gl-path-button"
|
|
281
257
|
>
|
|
282
|
-
<!---->
|
|
283
258
|
|
|
284
259
|
Second
|
|
285
260
|
<span
|
|
@@ -288,7 +263,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
288
263
|
2d
|
|
289
264
|
</span>
|
|
290
265
|
</button>
|
|
291
|
-
|
|
292
266
|
</li>
|
|
293
267
|
<li
|
|
294
268
|
class="gl-path-nav-list-item"
|
|
@@ -297,7 +271,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
297
271
|
<button
|
|
298
272
|
class="gl-path-button"
|
|
299
273
|
>
|
|
300
|
-
<!---->
|
|
301
274
|
|
|
302
275
|
Third
|
|
303
276
|
<span
|
|
@@ -306,7 +279,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
306
279
|
3d
|
|
307
280
|
</span>
|
|
308
281
|
</button>
|
|
309
|
-
|
|
310
282
|
</li>
|
|
311
283
|
<li
|
|
312
284
|
class="gl-path-nav-list-item"
|
|
@@ -315,7 +287,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
315
287
|
<button
|
|
316
288
|
class="gl-path-button"
|
|
317
289
|
>
|
|
318
|
-
<!---->
|
|
319
290
|
|
|
320
291
|
Fourth
|
|
321
292
|
<span
|
|
@@ -324,7 +295,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
324
295
|
4d
|
|
325
296
|
</span>
|
|
326
297
|
</button>
|
|
327
|
-
|
|
328
298
|
</li>
|
|
329
299
|
<li
|
|
330
300
|
class="gl-path-nav-list-item"
|
|
@@ -333,7 +303,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
333
303
|
<button
|
|
334
304
|
class="gl-path-button"
|
|
335
305
|
>
|
|
336
|
-
<!---->
|
|
337
306
|
|
|
338
307
|
Fifth
|
|
339
308
|
<span
|
|
@@ -342,7 +311,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
342
311
|
5d
|
|
343
312
|
</span>
|
|
344
313
|
</button>
|
|
345
|
-
|
|
346
314
|
</li>
|
|
347
315
|
<li
|
|
348
316
|
class="gl-path-nav-list-item"
|
|
@@ -351,7 +319,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
351
319
|
<button
|
|
352
320
|
class="gl-path-button"
|
|
353
321
|
>
|
|
354
|
-
<!---->
|
|
355
322
|
|
|
356
323
|
Sixth
|
|
357
324
|
<span
|
|
@@ -360,7 +327,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
360
327
|
6d
|
|
361
328
|
</span>
|
|
362
329
|
</button>
|
|
363
|
-
|
|
364
330
|
</li>
|
|
365
331
|
<li
|
|
366
332
|
class="gl-path-nav-list-item"
|
|
@@ -369,7 +335,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
369
335
|
<button
|
|
370
336
|
class="gl-path-button"
|
|
371
337
|
>
|
|
372
|
-
<!---->
|
|
373
338
|
|
|
374
339
|
Seventh
|
|
375
340
|
<span
|
|
@@ -378,7 +343,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
378
343
|
7d
|
|
379
344
|
</span>
|
|
380
345
|
</button>
|
|
381
|
-
|
|
382
346
|
</li>
|
|
383
347
|
<li
|
|
384
348
|
class="gl-path-nav-list-item"
|
|
@@ -387,9 +351,8 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
387
351
|
<button
|
|
388
352
|
category="tertiary"
|
|
389
353
|
class="gl-path-button"
|
|
390
|
-
disabled="
|
|
354
|
+
disabled=""
|
|
391
355
|
>
|
|
392
|
-
<!---->
|
|
393
356
|
|
|
394
357
|
Eighth
|
|
395
358
|
<span
|
|
@@ -398,7 +361,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
398
361
|
8d
|
|
399
362
|
</span>
|
|
400
363
|
</button>
|
|
401
|
-
|
|
402
364
|
</li>
|
|
403
365
|
<li
|
|
404
366
|
class="gl-path-nav-list-item"
|
|
@@ -407,7 +369,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
407
369
|
<button
|
|
408
370
|
class="gl-path-button"
|
|
409
371
|
>
|
|
410
|
-
<!---->
|
|
411
372
|
|
|
412
373
|
Ninth
|
|
413
374
|
<span
|
|
@@ -416,7 +377,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
416
377
|
9d
|
|
417
378
|
</span>
|
|
418
379
|
</button>
|
|
419
|
-
|
|
420
380
|
</li>
|
|
421
381
|
<li
|
|
422
382
|
class="gl-path-nav-list-item"
|
|
@@ -425,7 +385,6 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
425
385
|
<button
|
|
426
386
|
class="gl-path-button"
|
|
427
387
|
>
|
|
428
|
-
<!---->
|
|
429
388
|
|
|
430
389
|
Tenth
|
|
431
390
|
<span
|
|
@@ -434,10 +393,8 @@ exports[`Path renders the list of items with icons matches the snapshot 1`] = `
|
|
|
434
393
|
10d
|
|
435
394
|
</span>
|
|
436
395
|
</button>
|
|
437
|
-
|
|
438
396
|
</li>
|
|
439
397
|
</ul>
|
|
440
|
-
|
|
441
398
|
<span
|
|
442
399
|
class="gl-path-fade gl-path-fade-right"
|
|
443
400
|
style="display: none;"
|
|
@@ -475,7 +432,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
475
432
|
/>
|
|
476
433
|
</button>
|
|
477
434
|
</span>
|
|
478
|
-
|
|
479
435
|
<ul
|
|
480
436
|
class="gl-path-nav-list"
|
|
481
437
|
>
|
|
@@ -486,7 +442,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
486
442
|
<button
|
|
487
443
|
class="gl-path-button gl-path-active-item-indigo"
|
|
488
444
|
>
|
|
489
|
-
<!---->
|
|
490
445
|
|
|
491
446
|
First
|
|
492
447
|
<span
|
|
@@ -495,7 +450,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
495
450
|
12d
|
|
496
451
|
</span>
|
|
497
452
|
</button>
|
|
498
|
-
|
|
499
453
|
</li>
|
|
500
454
|
<li
|
|
501
455
|
class="gl-path-nav-list-item"
|
|
@@ -504,7 +458,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
504
458
|
<button
|
|
505
459
|
class="gl-path-button"
|
|
506
460
|
>
|
|
507
|
-
<!---->
|
|
508
461
|
|
|
509
462
|
Second
|
|
510
463
|
<span
|
|
@@ -513,7 +466,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
513
466
|
2d
|
|
514
467
|
</span>
|
|
515
468
|
</button>
|
|
516
|
-
|
|
517
469
|
</li>
|
|
518
470
|
<li
|
|
519
471
|
class="gl-path-nav-list-item"
|
|
@@ -522,7 +474,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
522
474
|
<button
|
|
523
475
|
class="gl-path-button"
|
|
524
476
|
>
|
|
525
|
-
<!---->
|
|
526
477
|
|
|
527
478
|
Third
|
|
528
479
|
<span
|
|
@@ -531,7 +482,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
531
482
|
3d
|
|
532
483
|
</span>
|
|
533
484
|
</button>
|
|
534
|
-
|
|
535
485
|
</li>
|
|
536
486
|
<li
|
|
537
487
|
class="gl-path-nav-list-item"
|
|
@@ -540,7 +490,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
540
490
|
<button
|
|
541
491
|
class="gl-path-button"
|
|
542
492
|
>
|
|
543
|
-
<!---->
|
|
544
493
|
|
|
545
494
|
Fourth
|
|
546
495
|
<span
|
|
@@ -549,7 +498,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
549
498
|
4d
|
|
550
499
|
</span>
|
|
551
500
|
</button>
|
|
552
|
-
|
|
553
501
|
</li>
|
|
554
502
|
<li
|
|
555
503
|
class="gl-path-nav-list-item"
|
|
@@ -558,7 +506,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
558
506
|
<button
|
|
559
507
|
class="gl-path-button"
|
|
560
508
|
>
|
|
561
|
-
<!---->
|
|
562
509
|
|
|
563
510
|
Fifth
|
|
564
511
|
<span
|
|
@@ -567,7 +514,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
567
514
|
5d
|
|
568
515
|
</span>
|
|
569
516
|
</button>
|
|
570
|
-
|
|
571
517
|
</li>
|
|
572
518
|
<li
|
|
573
519
|
class="gl-path-nav-list-item"
|
|
@@ -576,7 +522,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
576
522
|
<button
|
|
577
523
|
class="gl-path-button"
|
|
578
524
|
>
|
|
579
|
-
<!---->
|
|
580
525
|
|
|
581
526
|
Sixth
|
|
582
527
|
<span
|
|
@@ -585,7 +530,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
585
530
|
6d
|
|
586
531
|
</span>
|
|
587
532
|
</button>
|
|
588
|
-
|
|
589
533
|
</li>
|
|
590
534
|
<li
|
|
591
535
|
class="gl-path-nav-list-item"
|
|
@@ -594,7 +538,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
594
538
|
<button
|
|
595
539
|
class="gl-path-button"
|
|
596
540
|
>
|
|
597
|
-
<!---->
|
|
598
541
|
|
|
599
542
|
Seventh
|
|
600
543
|
<span
|
|
@@ -603,7 +546,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
603
546
|
7d
|
|
604
547
|
</span>
|
|
605
548
|
</button>
|
|
606
|
-
|
|
607
549
|
</li>
|
|
608
550
|
<li
|
|
609
551
|
class="gl-path-nav-list-item"
|
|
@@ -612,9 +554,8 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
612
554
|
<button
|
|
613
555
|
category="tertiary"
|
|
614
556
|
class="gl-path-button"
|
|
615
|
-
disabled="
|
|
557
|
+
disabled=""
|
|
616
558
|
>
|
|
617
|
-
<!---->
|
|
618
559
|
|
|
619
560
|
Eighth
|
|
620
561
|
<span
|
|
@@ -623,7 +564,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
623
564
|
8d
|
|
624
565
|
</span>
|
|
625
566
|
</button>
|
|
626
|
-
|
|
627
567
|
</li>
|
|
628
568
|
<li
|
|
629
569
|
class="gl-path-nav-list-item"
|
|
@@ -632,7 +572,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
632
572
|
<button
|
|
633
573
|
class="gl-path-button"
|
|
634
574
|
>
|
|
635
|
-
<!---->
|
|
636
575
|
|
|
637
576
|
Ninth
|
|
638
577
|
<span
|
|
@@ -641,7 +580,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
641
580
|
9d
|
|
642
581
|
</span>
|
|
643
582
|
</button>
|
|
644
|
-
|
|
645
583
|
</li>
|
|
646
584
|
<li
|
|
647
585
|
class="gl-path-nav-list-item"
|
|
@@ -650,7 +588,6 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
650
588
|
<button
|
|
651
589
|
class="gl-path-button"
|
|
652
590
|
>
|
|
653
|
-
<!---->
|
|
654
591
|
|
|
655
592
|
Tenth
|
|
656
593
|
<span
|
|
@@ -659,10 +596,8 @@ exports[`Path renders the list of items with metrics matches the snapshot 1`] =
|
|
|
659
596
|
10d
|
|
660
597
|
</span>
|
|
661
598
|
</button>
|
|
662
|
-
|
|
663
599
|
</li>
|
|
664
600
|
</ul>
|
|
665
|
-
|
|
666
601
|
<span
|
|
667
602
|
class="gl-path-fade gl-path-fade-right"
|
|
668
603
|
style="display: none;"
|