Skip to content

Commit eb42c3e

Browse files
committed
master - 35fece8 ci: fix snapshots (#15908)
1 parent b218a87 commit eb42c3e

16 files changed

+25
-25
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Angular Material
22
=======
33

4-
The sources for this package are in the main [Angular Material](https://github.com/angular/material2) repo. Please file issues and pull requests against that repo.
4+
The sources for this package are in the main [Angular Material](https://github.com/angular/components) repo. Please file issues and pull requests against that repo.
55

6-
License: MIT
6+
License: MIT

bundles/material-examples.umd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5335,7 +5335,7 @@
53355335
}
53365336
ExampleHttpDatabase.prototype.getRepoIssues = function (sort, order, page) {
53375337
var href = 'https://api.github.com/search/issues';
5338-
var requestUrl = href + "?q=repo:angular/material2&sort=" + sort + "&order=" + order + "&page=" + (page + 1);
5338+
var requestUrl = href + "?q=repo:angular/components&sort=" + sort + "&order=" + order + "&page=" + (page + 1);
53395339
return this.http.get(requestUrl);
53405340
};
53415341
return ExampleHttpDatabase;

bundles/material-examples.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/material-examples.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/material-examples.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs-content/examples-highlighted/table-http-example-ts.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
getRepoIssues(sort: <span class="hljs-built_in">string</span>, order: <span class="hljs-built_in">string</span>, page: <span class="hljs-built_in">number</span>): Observable&lt;GithubApi&gt; {
7878
<span class="hljs-keyword">const</span> href = <span class="hljs-string">'https://api.github.com/search/issues'</span>;
7979
<span class="hljs-keyword">const</span> requestUrl =
80-
<span class="hljs-string">`<span class="hljs-subst">${href}</span>?q=repo:angular/material2&amp;sort=<span class="hljs-subst">${sort}</span>&amp;order=<span class="hljs-subst">${order}</span>&amp;page=<span class="hljs-subst">${page + 1}</span>`</span>;
80+
<span class="hljs-string">`<span class="hljs-subst">${href}</span>?q=repo:angular/components&amp;sort=<span class="hljs-subst">${sort}</span>&amp;order=<span class="hljs-subst">${order}</span>&amp;page=<span class="hljs-subst">${page + 1}</span>`</span>;
8181

8282
<span class="hljs-keyword">return</span> <span class="hljs-keyword">this</span>.http.get&lt;GithubApi&gt;(requestUrl);
8383
}

docs-content/examples-source/table-http-example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class ExampleHttpDatabase {
7777
getRepoIssues(sort: string, order: string, page: number): Observable<GithubApi> {
7878
const href = 'https://api.github.com/search/issues';
7979
const requestUrl =
80-
`${href}?q=repo:angular/material2&sort=${sort}&order=${order}&page=${page + 1}`;
80+
`${href}?q=repo:angular/components&sort=${sort}&order=${order}&page=${page + 1}`;
8181

8282
return this.http.get<GithubApi>(requestUrl);
8383
}

docs-content/guides/theming.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ <h4 id="theming-only-certain-components" class="docs-header-link">
163163
<span header-link="theming-only-certain-components"></span>
164164
Theming only certain components
165165
</h4>
166-
<p>The <code>angular-material-theme</code> mixin will output styles for <a href="https://github.com/angular/material2/blob/master/src/material/core/theming/_all-theme.scss">all components in the library</a>.
166+
<p>The <code>angular-material-theme</code> mixin will output styles for <a href="https://github.com/angular/components/blob/master/src/material/core/theming/_all-theme.scss">all components in the library</a>.
167167
If you are only using a subset of the components (or if you want to change the theme for specific
168168
components), you can include component-specific theme mixins. You also will need to include
169169
the <code>mat-core-theme</code> mixin as well, which contains theme-specific styles for common behaviors

docs-content/guides/typography.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ <h3 id="customization" class="docs-header-link">
139139
<pre><code class="language-scss"><span class="hljs-comment">// Override the typography in the core CSS.</span>
140140
@<span class="hljs-keyword">include</span> mat-core(<span class="hljs-variable">$custom-typography</span>);</code></pre>
141141
<p>For more details about the typography functions and default config, see the
142-
<a href="https://github.com/angular/material2/blob/master/src/material/core/typography/_typography.scss">source</a>.</p>
142+
<a href="https://github.com/angular/components/blob/master/src/material/core/typography/_typography.scss">source</a>.</p>
143143

144144
<h3 id="material-typography-in-your-custom-css" class="docs-header-link">
145145
<span header-link="material-typography-in-your-custom-css"></span>

esm2015/table-http/table-http-example.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)