Skip to content

Commit 8524b14

Browse files
committed
main - f96dc4d build: update cross-repo angular dependencies (#33042)
1 parent 9503d0b commit 8524b14

53 files changed

Lines changed: 150 additions & 892 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs-content/guides/creating-a-custom-form-field-control.md.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
<p>For example in this guide we&#39;ll learn how to create a custom input for inputting US telephone
55
numbers and hook it up to work with <code>&lt;mat-form-field&gt;</code>. Here is what we&#39;ll build by the end of this
66
guide:</p>
7-
</div><div material-docs-example="form-field-custom-control"></div><div class="docs-markdown">
8-
9-
<p>In order to learn how to build custom form field controls, let&#39;s start with a simple input component
7+
</div><div material-docs-example="form-field-custom-control"></div><div class="docs-markdown"><p>In order to learn how to build custom form field controls, let&#39;s start with a simple input component
108
that we want to work inside the form field. For example, a phone number input that segments the
119
parts of the number into their own inputs. (Note: this is not intended to be a robust component,
1210
just a starting point for us to learn.)</p>

docs-content/guides/creating-a-custom-stepper-using-the-cdk-stepper.md.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<div class="docs-markdown"><h1>Creating a custom stepper using the CDK stepper</h1><p>The <a href="https://material.angular.dev/cdk/stepper/overview">CDK stepper</a> allows you to build a custom stepper which you can completely style yourself without any specific Material Design styling.</p>
22
<p>In this guide, we&#39;ll learn how to build our own custom stepper using the CDK stepper. Here is what we&#39;ll build by the end of this guide:</p>
33
</div><div material-docs-example="cdk-custom-stepper-without-form"></div><div class="docs-markdown">
4-
5-
64
<h2 id="create-our-custom-stepper-component" class="docs-header-link">
75
<span header-link="create-our-custom-stepper-component"></span>
86
Create our custom stepper component

docs-content/guides/material-2.md.html

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,9 +1330,7 @@ <h3 id="optional-add-backwards-compatibility-styles-for-color-variants" class="d
13301330
enable backwards compatibility styles that restore the behavior of this API. Call the
13311331
<code>color-variants-backwards-compatibility</code> mixin from <code>@angular/material</code> with the M3 theme you want
13321332
to generate color variant styles for.</p>
1333-
<!-- TODO(mmalerba): Upgrade to embedded example -->
1334-
1335-
<pre><code class="language-scss"><span class="hljs-keyword">@use</span> <span class="hljs-string">&#x27;@angular/material&#x27;</span> as mat;
1333+
<!-- TODO(mmalerba): Upgrade to embedded example --><pre><code class="language-scss"><span class="hljs-keyword">@use</span> <span class="hljs-string">&#x27;@angular/material&#x27;</span> as mat;
13361334

13371335
<span class="hljs-variable">$theme</span>: mat.<span class="hljs-built_in">define-theme</span>();
13381336

@@ -1351,9 +1349,7 @@ <h3 id="optional-add-backwards-compatibility-styles-for-typography-hierarchy" cl
13511349
<code>typography-hierarchy</code> mixin does support emitting the old class names in addition to the new ones.
13521350
We have made a best effort to map the M2 classes to reasonable equivalents in M3. To enable these
13531351
styles, pass an additional argument <code>$back-compat: true</code> to the mixin.</p>
1354-
<!-- TODO(mmalerba): Upgrade to embedded example -->
1355-
1356-
<pre><code class="language-scss"><span class="hljs-keyword">@use</span> <span class="hljs-string">&#x27;@angular/material&#x27;</span> as mat;
1352+
<!-- TODO(mmalerba): Upgrade to embedded example --><pre><code class="language-scss"><span class="hljs-keyword">@use</span> <span class="hljs-string">&#x27;@angular/material&#x27;</span> as mat;
13571353

13581354
<span class="hljs-variable">$theme</span>: mat.<span class="hljs-built_in">define-theme</span>();
13591355

docs-content/guides/theming-your-components.md.html

Lines changed: 61 additions & 296 deletions
Large diffs are not rendered by default.

docs-content/guides/using-component-harnesses.md.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
<p>Angular Material offers test harnesses for many of its components. The Angular team strongly
99
encourages developers to use these harnesses for testing to avoid creating brittle tests that rely
1010
on a component&#39;s internals.</p>
11-
<!-- TODO(mmalerba): add list of components that are ready -->
12-
13-
<p>This guide discusses the advantages of using component test harnesses and shows how to use them.</p>
11+
<!-- TODO(mmalerba): add list of components that are ready --><p>This guide discusses the advantages of using component test harnesses and shows how to use them.</p>
1412

1513
<h2 id="benefits-of-component-test-harnesses" class="docs-header-link">
1614
<span header-link="benefits-of-component-test-harnesses"></span>

docs-content/overviews/cdk/a11y/a11y.md.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -175,16 +175,12 @@ <h3 id="focusmonitor" class="docs-header-link">
175175
indicate how the element was focused.</p>
176176
<p>Any element that is monitored by calling <code>monitor</code> should eventually be unmonitored by calling
177177
<code>stopMonitoring</code> with the same element.</p>
178-
</div><div material-docs-example="focus-monitor-overview"></div><div class="docs-markdown">
179-
180-
<p>It is possible to falsify the <code>FocusOrigin</code> when setting the focus programmatically by using the
178+
</div><div material-docs-example="focus-monitor-overview"></div><div class="docs-markdown"><p>It is possible to falsify the <code>FocusOrigin</code> when setting the focus programmatically by using the
181179
<code>focusVia</code> method of <code>FocusMonitor</code>. This method accepts an element to focus and the <code>FocusOrigin</code>
182180
to use. If the element being focused is currently being monitored by the <code>FocusMonitor</code> it will
183181
report the <code>FocusOrigin</code> that was passed in. If the element is not currently being monitored, it
184182
will just be focused like normal.</p>
185183
</div><div material-docs-example="focus-monitor-focus-via"></div><div class="docs-markdown">
186-
187-
188184
<h4 id="cdkmonitorelementfocus-and-cdkmonitorsubtreefocus" class="docs-header-link">
189185
<span header-link="cdkmonitorelementfocus-and-cdkmonitorsubtreefocus"></span>
190186
cdkMonitorElementFocus and cdkMonitorSubtreeFocus
@@ -195,8 +191,6 @@ <h4 id="cdkmonitorelementfocus-and-cdkmonitorsubtreefocus" class="docs-header-li
195191
the host element with <code>checkChildren</code> set to <code>true</code>. Each of these directives has an <code>@Output()</code>
196192
<code>cdkFocusChange</code> that will emit the new <code>FocusOrigin</code> whenever it changes.</p>
197193
</div><div material-docs-example="focus-monitor-directives"></div><div class="docs-markdown">
198-
199-
200194
<h3 id="styling-utilities" class="docs-header-link">
201195
<span header-link="styling-utilities"></span>
202196
Styling utilities

docs-content/overviews/cdk/accordion/accordion.md.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
logic for the accordion interaction pattern without any styles. You can customize the accordion&#39;s
44
appearance based on your application&#39;s needs.</p>
55
</div><div material-docs-example="cdk-accordion-overview"></div><div class="docs-markdown">
6-
7-
86
<h3 id="accessibility" class="docs-header-link">
97
<span header-link="accessibility"></span>
108
Accessibility

docs-content/overviews/cdk/clipboard/clipboard.md.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ <h3 id="click-an-element-to-copy" class="docs-header-link">
77
<p>The <code>cdkCopyToClipboard</code> directive can be used to easily add copy-on-click functionality to an
88
existing element. The directive selector doubles as an <code>@Input()</code> for the text to be copied.</p>
99
<pre><code class="language-html"><span class="hljs-tag">&lt;<span class="hljs-name">img</span> <span class="hljs-attr">src</span>=<span class="hljs-string">&quot;avatar.jpg&quot;</span> <span class="hljs-attr">alt</span>=<span class="hljs-string">&quot;Hero avatar&quot;</span> [<span class="hljs-attr">cdkCopyToClipboard</span>]=<span class="hljs-string">&quot;getShortBio()&quot;</span>&gt;</span></code></pre></div><div material-docs-example="cdk-clipboard-overview"></div><div class="docs-markdown">
10-
11-
1210
<h3 id="programmatically-copy-a-string" class="docs-header-link">
1311
<span header-link="programmatically-copy-a-string"></span>
1412
Programmatically copy a string

docs-content/overviews/cdk/dialog/dialog.md.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ <h3 id="initial-setup" class="docs-header-link">
1212
<pre><code class="language-scss"><span class="hljs-keyword">@import</span> <span class="hljs-string">&#x27;@angular/cdk/overlay-prebuilt.css&#x27;</span>;</code></pre><p>Alternatively, you can include the styles using the <code>cdk.overlay</code> mixin in your Sass file. You can import the mixin as follows:</p>
1313
<pre><code class="language-scss"><span class="hljs-keyword">@use</span> <span class="hljs-string">&#x27;@angular/cdk&#x27;</span> as cdk;
1414

15-
<span class="hljs-keyword">@include</span> cdk.overlay();</code></pre></div><div material-docs-example="cdk-dialog-overview"></div><div class="docs-markdown">
16-
17-
<p>You can open a dialog by calling the <code>open</code> method either with a component or with a <code>TemplateRef</code>
15+
<span class="hljs-keyword">@include</span> cdk.overlay();</code></pre></div><div material-docs-example="cdk-dialog-overview"></div><div class="docs-markdown"><p>You can open a dialog by calling the <code>open</code> method either with a component or with a <code>TemplateRef</code>
1816
representing the dialog content. The method additionally accepts an optional configuration object.
1917
The <code>open</code> method returns a <code>DialogRef</code> instance:</p>
2018
<pre><code class="language-ts"><span class="hljs-keyword">const</span> dialogRef = dialog.<span class="hljs-title function_">open</span>(<span class="hljs-title class_">UserProfileComponent</span>, {
@@ -74,8 +72,6 @@ <h4 id="styling-the-dialog-component" class="docs-header-link">
7472
`</span>]
7573
})
7674
<span class="hljs-keyword">class</span> <span class="hljs-title class_">MyDialog</span> {}</code></pre></div><div material-docs-example="cdk-dialog-styling"></div><div class="docs-markdown">
77-
78-
7975
<h4 id="providing-a-custom-dialog-container" class="docs-header-link">
8076
<span header-link="providing-a-custom-dialog-container"></span>
8177
Providing a custom dialog container
@@ -142,8 +138,6 @@ <h3 id="sharing-data-with-the-dialog-component" class="docs-header-link">
142138
<pre><code class="language-html"><span class="hljs-tag">&lt;<span class="hljs-name">ng-template</span> <span class="hljs-attr">let-data</span> <span class="hljs-attr">let-dialogRef</span>=<span class="hljs-string">&quot;dialogRef&quot;</span>&gt;</span>
143139
Hello, {{data.name}}
144140
<span class="hljs-tag">&lt;/<span class="hljs-name">ng-template</span>&gt;</span></code></pre></div><div material-docs-example="cdk-dialog-data"></div><div class="docs-markdown">
145-
146-
147141
<h3 id="accessibility" class="docs-header-link">
148142
<span header-link="accessibility"></span>
149143
Accessibility

docs-content/overviews/cdk/layout/layout.md.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ <h3 id="breakpointobserver" class="docs-header-link">
99
<p><code>BreakpointObserver</code> lets you evaluate media queries to determine the current screen size and
1010
react to changes when the viewport size crosses a breakpoint.</p>
1111
</div><div material-docs-example="breakpoint-observer-overview"></div><div class="docs-markdown">
12-
13-
1412
<h4 id="check-the-current-viewport-size" class="docs-header-link">
1513
<span header-link="check-the-current-viewport-size"></span>
1614
Check the current viewport size

0 commit comments

Comments
 (0)