Skip to content

Commit db7ab92

Browse files
authored
docs(multiple): fix heading order (#31736)
1 parent adf3441 commit db7ab92

File tree

8 files changed

+40
-40
lines changed

8 files changed

+40
-40
lines changed

src/dev-app/cdk-experimental-accordion/cdk-accordion-demo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
margin-top: 40px;
2222
}
2323

24-
h4 {
24+
h2 {
2525
height: 36px;
2626
margin-top: 0;
2727
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
<div>
22
<div class="example-accordion-grid">
33
<div class="example-accordion-container">
4-
<h4>Single Expansion</h4>
4+
<h2>Single Expansion</h2>
55
<cdk-accordion-single-expansion-example></cdk-accordion-single-expansion-example>
66
</div>
77

88
<div class="example-accordion-container">
9-
<h4>Multi Expansion</h4>
9+
<h2>Multi Expansion</h2>
1010
<cdk-accordion-multi-expansion-example></cdk-accordion-multi-expansion-example>
1111
</div>
1212

1313
<div class="example-accordion-container">
14-
<h4>Disabled Accordions are Focusable</h4>
14+
<h2>Disabled Accordions are Focusable</h2>
1515
<cdk-accordion-disabled-focusable-example></cdk-accordion-disabled-focusable-example>
1616
</div>
1717

1818
<div class="example-accordion-container">
19-
<h4>Disabled Accordions are Skipped</h4>
19+
<h2>Disabled Accordions are Skipped</h2>
2020
<cdk-accordion-disabled-skipped-example></cdk-accordion-disabled-skipped-example>
2121
</div>
2222

2323
<div class="example-accordion-container">
24-
<h4>Disabled</h4>
24+
<h2>Disabled</h2>
2525
<cdk-accordion-disabled-example></cdk-accordion-disabled-example>
2626
</div>
2727
</div>
2828

2929
<div class="example-configurable-accordion-container">
30-
<h4>Configurable</h4>
30+
<h2>Configurable</h2>
3131
<cdk-accordion-configurable-example></cdk-accordion-configurable-example>
3232
</div>
3333
</div>

src/dev-app/cdk-experimental-listbox/cdk-listbox-demo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
padding-top: 40px;
1616
}
1717

18-
h4 {
18+
h2 {
1919
height: 36px;
2020
}
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,63 @@
11
<div>
22
<div class="example-listbox-grid">
33
<div class="example-listbox-container">
4-
<h4>Multi Select w/ Selection Follows Focus</h4>
4+
<h2>Multi Select w/ Selection Follows Focus</h2>
55
<cdk-listbox-multi-select-follow-focus-example></cdk-listbox-multi-select-follow-focus-example>
66
</div>
77

88
<div class="example-listbox-container">
9-
<h4>Single Select w/ Selection Follows Focus</h4>
9+
<h2>Single Select w/ Selection Follows Focus</h2>
1010
<cdk-listbox-single-select-follow-focus-example></cdk-listbox-single-select-follow-focus-example>
1111
</div>
1212

1313
<div class="example-listbox-container">
14-
<h4>Multi Select</h4>
14+
<h2>Multi Select</h2>
1515
<cdk-listbox-multi-select-example></cdk-listbox-multi-select-example>
1616
</div>
1717

1818
<div class="example-listbox-container">
19-
<h4>Single Select</h4>
19+
<h2>Single Select</h2>
2020
<cdk-listbox-single-select-example></cdk-listbox-single-select-example>
2121
</div>
2222

2323
<div class="example-listbox-container">
24-
<h4>Disabled</h4>
24+
<h2>Disabled</h2>
2525
<cdk-listbox-disabled-example></cdk-listbox-disabled-example>
2626
</div>
2727

2828
<div class="example-listbox-container">
29-
<h4>Readonly</h4>
29+
<h2>Readonly</h2>
3030
<cdk-listbox-readonly-example></cdk-listbox-readonly-example>
3131
</div>
3232

3333
<div class="example-listbox-container">
34-
<h4>Disabled Options are Skipped</h4>
34+
<h2>Disabled Options are Skipped</h2>
3535
<cdk-listbox-disabled-skipped-example></cdk-listbox-disabled-skipped-example>
3636
</div>
3737

3838
<div class="example-listbox-container">
39-
<h4>Disabled Options are Focusable</h4>
39+
<h2>Disabled Options are Focusable</h2>
4040
<cdk-listbox-disabled-focusable-example></cdk-listbox-disabled-focusable-example>
4141
</div>
4242

4343
<div class="example-listbox-container">
44-
<h4>Active Descendant</h4>
44+
<h2>Active Descendant</h2>
4545
<cdk-listbox-active-descendant-example></cdk-listbox-active-descendant-example>
4646
</div>
4747

4848
<div class="example-listbox-container">
49-
<h4 dir="rtl">RTL & Horizontal Orientation</h4>
49+
<h2 dir="rtl">RTL & Horizontal Orientation</h2>
5050
<cdk-listbox-rtl-horizontal-example></cdk-listbox-rtl-horizontal-example>
5151
</div>
5252

5353
<div class="example-listbox-container">
54-
<h4>Horizontal Orientation</h4>
54+
<h2>Horizontal Orientation</h2>
5555
<cdk-listbox-horizontal-example></cdk-listbox-horizontal-example>
5656
</div>
5757
</div>
5858

5959
<div class="example-configurable-listbox-container">
60-
<h4>Configurable</h4>
60+
<h2>Configurable</h2>
6161
<cdk-listbox-configurable-example></cdk-listbox-configurable-example>
6262
</div>
6363
</div>

src/dev-app/cdk-experimental-radio-group/cdk-radio-group-demo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
padding-top: 40px;
1616
}
1717

18-
h4 {
18+
h2 {
1919
height: 36px;
2020
}
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
11
<div>
22
<div class="example-radio-grid">
33
<div class="example-radio-container">
4-
<h4>Standard</h4>
4+
<h2>Standard</h2>
55
<cdk-radio-group-standard-example></cdk-radio-group-standard-example>
66
</div>
77

88
<div class="example-radio-container">
9-
<h4>Horizontal Orientation</h4>
9+
<h2>Horizontal Orientation</h2>
1010
<cdk-radio-group-horizontal-example></cdk-radio-group-horizontal-example>
1111
</div>
1212

1313
<div class="example-radio-container">
14-
<h4 dir="rtl">RTL & Horizontal Orientation</h4>
14+
<h2 dir="rtl">RTL & Horizontal Orientation</h2>
1515
<cdk-radio-group-rtl-horizontal-example></cdk-radio-group-rtl-horizontal-example>
1616
</div>
1717

1818
<div class="example-radio-container">
19-
<h4>Active Descendant</h4>
19+
<h2>Active Descendant</h2>
2020
<cdk-radio-group-active-descendant-example></cdk-radio-group-active-descendant-example>
2121
</div>
2222

2323
<div class="example-radio-container">
24-
<h4>Disabled Radio Buttons are Focusable</h4>
24+
<h2>Disabled Radio Buttons are Focusable</h2>
2525
<cdk-radio-group-disabled-focusable-example></cdk-radio-group-disabled-focusable-example>
2626
</div>
2727

2828
<div class="example-radio-container">
29-
<h4>Disabled Radio Buttons are Skipped</h4>
29+
<h2>Disabled Radio Buttons are Skipped</h2>
3030
<cdk-radio-group-disabled-skipped-example></cdk-radio-group-disabled-skipped-example>
3131
</div>
3232

3333
<div class="example-radio-container">
34-
<h4>Readonly</h4>
34+
<h2>Readonly</h2>
3535
<cdk-radio-group-readonly-example></cdk-radio-group-readonly-example>
3636
</div>
3737

3838
<div class="example-radio-container">
39-
<h4>Disabled</h4>
39+
<h2>Disabled</h2>
4040
<cdk-radio-group-disabled-example></cdk-radio-group-disabled-example>
4141
</div>
4242
</div>
4343

4444
<div class="example-configurable-radio-container">
45-
<h4>Configurable</h4>
45+
<h2>Configurable</h2>
4646
<cdk-radio-group-configurable-example></cdk-radio-group-configurable-example>
4747
</div>
4848
</div>

src/dev-app/cdk-experimental-tabs/cdk-tabs-demo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
padding-top: 40px;
1616
}
1717

18-
h4 {
18+
h2 {
1919
height: 36px;
2020
}
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
<div class="example-tabs-grid">
22
<div class="example-tabs-container">
3-
<h4>Standard</h4>
3+
<h2>Standard</h2>
44
<cdk-tabs-explicit-selection-example></cdk-tabs-explicit-selection-example>
55
</div>
66

77
<div class="example-tabs-container">
8-
<h4>Selection Follows Focus</h4>
8+
<h2>Selection Follows Focus</h2>
99
<cdk-tabs-selection-follows-focus-example></cdk-tabs-selection-follows-focus-example>
1010
</div>
1111

1212
<div class="example-tabs-container">
13-
<h4>Vertical Orientation</h4>
13+
<h2>Vertical Orientation</h2>
1414
<cdk-tabs-vertical-example></cdk-tabs-vertical-example>
1515
</div>
1616

1717
<div class="example-tabs-container">
18-
<h4>RTL</h4>
18+
<h2>RTL</h2>
1919
<cdk-tabs-rtl-example></cdk-tabs-rtl-example>
2020
</div>
2121

2222
<div class="example-tabs-container">
23-
<h4>Active Descendant</h4>
23+
<h2>Active Descendant</h2>
2424
<cdk-tabs-active-descendant-example></cdk-tabs-active-descendant-example>
2525
</div>
2626

2727
<div class="example-tabs-container">
28-
<h4>Disabled Tabs are Focusable</h4>
28+
<h2>Disabled Tabs are Focusable</h2>
2929
<cdk-tabs-disabled-focusable-example></cdk-tabs-disabled-focusable-example>
3030
</div>
3131

3232
<div class="example-tabs-container">
33-
<h4>Disabled Tabs are Skipped</h4>
33+
<h2>Disabled Tabs are Skipped</h2>
3434
<cdk-tabs-disabled-skipped-example></cdk-tabs-disabled-skipped-example>
3535
</div>
3636

3737
<div class="example-tabs-container">
38-
<h4>Disabled</h4>
38+
<h2>Disabled</h2>
3939
<cdk-tabs-disabled-example></cdk-tabs-disabled-example>
4040
</div>
4141
</div>
4242

4343
<div class="example-configurable-tabs-container">
44-
<h4>Configurable</h4>
44+
<h2>Configurable</h2>
4545
<cdk-tabs-configurable-example></cdk-tabs-configurable-example>
4646
</div>

0 commit comments

Comments
 (0)