Skip to content

Commit 26302f2

Browse files
committed
chore: version 17.0.0-rc.5
1 parent 1f4016d commit 26302f2

File tree

3 files changed

+47
-81
lines changed

3 files changed

+47
-81
lines changed

ponyracer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"zone.js": "~0.14.0"
2424
},
2525
"devDependencies": {
26-
"@angular-devkit/build-angular": "^17.0.0-rc.4",
27-
"@angular/cli": "^17.0.0-rc.4",
26+
"@angular-devkit/build-angular": "^17.0.0-rc.5",
27+
"@angular/cli": "^17.0.0-rc.5",
2828
"@angular/compiler-cli": "^17.0.0-next.0",
2929
"@types/jasmine": "~5.1.0",
3030
"jasmine-core": "~5.1.0",

ponyracer/src/app/app.component.html

Lines changed: 45 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
22
<!-- * * * * * * * * * * * The content below * * * * * * * * * * * -->
33
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * -->
4-
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * * -->
4+
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * -->
55
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
6-
<!-- * * * * * * * * * Delete the template below * * * * * * * * * * -->
7-
<!-- * * * * * * * to get started with your project! * * * * * * * * -->
6+
<!-- * * * * * * * * * Delete the template below * * * * * * * * * -->
7+
<!-- * * * * * * * to get started with your project! * * * * * * * -->
88
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
99

1010
<style>
@@ -44,22 +44,16 @@
4444
-moz-osx-font-smoothing: grayscale;
4545
}
4646

47-
h1,
48-
h2,
49-
h3,
50-
h4,
51-
h5,
52-
h6 {
47+
h1 {
48+
font-size: 3.125rem;
5349
color: var(--gray-900);
5450
font-weight: 500;
5551
line-height: 100%;
5652
letter-spacing: -0.125rem;
5753
margin: 0;
58-
font-family: "Inter Tight";
59-
}
60-
61-
h1 {
62-
font-size: 3.125rem;
54+
font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
55+
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
56+
"Segoe UI Symbol";
6357
}
6458

6559
p {
@@ -142,15 +136,14 @@
142136
.pill-group .pill:nth-child(6n + 2) {
143137
--pill-accent: var(--french-violet);
144138
}
145-
.pill-group .pill:nth-child(6n + 3),
139+
.pill-group .pill:nth-child(6n + 3),
146140
.pill-group .pill:nth-child(6n + 4),
147141
.pill-group .pill:nth-child(6n + 5) {
148142
--pill-accent: var(--hot-red);
149143
}
150144

151-
.open-in-new-icon {
145+
.pill-group svg {
152146
margin-inline-start: 0.25rem;
153-
font-size: 1rem;
154147
}
155148

156149
.social-links {
@@ -234,65 +227,37 @@
234227
</svg>
235228
<h1>Hello, {{ title }}</h1>
236229
<p>Congratulations! Your app is running. 🎉</p>
237-
</div>
230+
</div>
238231
<div class="divider" role="separator" aria-label="Divider"></div>
239232
<div class="right-side">
240233
<div class="pill-group">
241-
<a
242-
class="pill"
243-
href="http://angular.dev"
244-
target="_blank"
245-
rel="noopener"
246-
>
247-
<span> Explore the Docs </span>
248-
<i class="material-icons-outlined open-in-new-icon" aria-hidden="true"
249-
>open_in_new</i
234+
@for (item of [
235+
{ title: 'Explore the Docs', link: 'https://angular.dev' },
236+
{ title: 'Learn with Tutorials', link: 'https://angular.dev/tutorials' },
237+
{ title: 'CLI Docs', link: 'https://angular.dev/tools/cli' },
238+
{ title: 'Angular Language Service', link: 'https://angular.dev/tools/language-service' },
239+
{ title: 'Angular DevTools', link: 'https://angular.dev/tools/devtools' },
240+
]; track item.title) {
241+
<a
242+
class="pill"
243+
href="{{ item.link }}"
244+
target="_blank"
245+
rel="noopener"
250246
>
251-
</a>
252-
<a
253-
class="pill"
254-
href="http://angular.dev/tutorials"
255-
target="_blank"
256-
rel="noopener"
257-
>
258-
<span> Learn with Tutorials </span>
259-
<i class="material-icons-outlined open-in-new-icon" aria-hidden="true"
260-
>open_in_new</i
261-
>
262-
</a>
263-
<a
264-
class="pill"
265-
href="http://angular.dev/tools/cli"
266-
target="_blank"
267-
rel="noopener"
268-
>
269-
<span> CLI Docs </span>
270-
<i class="material-icons-outlined open-in-new-icon" aria-hidden="true"
271-
>open_in_new</i
272-
>
273-
</a>
274-
<a
275-
class="pill"
276-
href="http://angular.dev/tools/language-service"
277-
target="_blank"
278-
rel="noopener"
279-
>
280-
<span> Angular Language Service </span>
281-
<i class="material-icons-outlined open-in-new-icon" aria-hidden="true"
282-
>open_in_new</i
283-
>
284-
</a>
285-
<a
286-
class="pill"
287-
href="http://angular.dev/tools/dev-tools"
288-
target="_blank"
289-
rel="noopener"
290-
>
291-
<span> Angular DevTools </span>
292-
<i class="material-icons-outlined open-in-new-icon" aria-hidden="true"
293-
>open_in_new</i
294-
>
295-
</a>
247+
<span>{{ item.title }}</span>
248+
<svg
249+
xmlns="http://www.w3.org/2000/svg"
250+
height="14"
251+
viewBox="0 -960 960 960"
252+
width="14"
253+
fill="currentColor"
254+
>
255+
<path
256+
d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120H200Zm188-212-56-56 372-372H560v-80h280v280h-80v-144L388-332Z"
257+
/>
258+
</svg>
259+
</a>
260+
}
296261
</div>
297262
<div class="social-links">
298263
<a
@@ -359,12 +324,13 @@ <h1>Hello, {{ title }}</h1>
359324
</div>
360325
</main>
361326

362-
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
363-
<!-- * * * * * * * * * * * The content above * * * * * * * * * * * -->
364-
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * -->
365-
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * * -->
366-
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
367-
<!-- * * * * * * * * * * End of Placeholder * * * * * * * * * * * -->
368-
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
327+
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
328+
<!-- * * * * * * * * * * * The content above * * * * * * * * * * * * -->
329+
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * * -->
330+
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * * -->
331+
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
332+
<!-- * * * * * * * * * * End of Placeholder * * * * * * * * * * * * -->
333+
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
334+
369335

370336
<router-outlet></router-outlet>

ponyracer/src/favicon.ico

13.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)