Skip to content

Commit ed775b2

Browse files
authored
fix: origin update (#986)
* chore: update origin * fix: migrate origin changes
1 parent 7022de7 commit ed775b2

File tree

100 files changed

+4421
-2393
lines changed

Some content is hidden

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

100 files changed

+4421
-2393
lines changed

.textlintrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@
3838
"max-kanji-continuous-len": {
3939
"allow": [
4040
"二重中括弧構文",
41-
"変更検知戦略"
41+
"変更検知戦略",
42+
"推移的依存関係",
43+
"三重等号演算子"
4244
]
4345
},
4446
"ja-no-mixed-period": false

adev-ja/src/app/features/update/recommendations.en.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,7 @@ export const RECOMMENDATIONS: Step[] = [
20942094
level: ApplicationComplexity.Basic,
20952095
step: 'v17 zone.js support',
20962096
action:
2097-
'Make sure that you are using a supported version of Zone.js before you upgrade your application. Angular v16 supports Zone.js version 0.14.x or later.',
2097+
'Make sure that you are using a supported version of Zone.js before you upgrade your application. Angular v17 supports Zone.js version 0.14.x or later.',
20982098
},
20992099
{
21002100
possibleIn: 1700,

adev-ja/src/app/features/update/recommendations.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,7 @@ export const RECOMMENDATIONS: Step[] = [
20942094
level: ApplicationComplexity.Basic,
20952095
step: 'v17 zone.js support',
20962096
action:
2097-
'Make sure that you are using a supported version of Zone.js before you upgrade your application. Angular v16 supports Zone.js version 0.14.x or later.',
2097+
'Make sure that you are using a supported version of Zone.js before you upgrade your application. Angular v17 supports Zone.js version 0.14.x or later.',
20982098
},
20992099
{
21002100
possibleIn: 1700,

adev-ja/src/app/sub-navigation-data.en.ts

+37-77
Original file line numberDiff line numberDiff line change
@@ -176,112 +176,72 @@ const DOCS_SUB_NAVIGATION_DATA: NavigationItem[] = [
176176
],
177177
},
178178
{
179-
label: 'Template Syntax',
179+
label: 'Templates',
180180
children: [
181181
{
182182
label: 'Overview',
183183
path: 'guide/templates',
184184
contentPath: 'guide/templates/overview',
185185
},
186186
{
187-
label: 'Text interpolation',
188-
path: 'guide/templates/interpolation',
189-
contentPath: 'guide/templates/interpolation',
187+
label: 'Binding dynamic text, properties and attributes',
188+
path: 'guide/templates/binding',
189+
contentPath: 'guide/templates/binding',
190190
},
191191
{
192-
label: 'Template statements',
193-
path: 'guide/templates/template-statements',
194-
contentPath: 'guide/templates/template-statements',
192+
label: 'Adding event listeners',
193+
path: 'guide/templates/event-listeners',
194+
contentPath: 'guide/templates/event-listeners',
195195
},
196196
{
197-
label: 'Understanding binding',
198-
path: 'guide/templates/binding',
199-
contentPath: 'guide/templates/binding',
197+
label: 'Two-way binding',
198+
path: 'guide/templates/two-way-binding',
199+
contentPath: 'guide/templates/two-way-binding',
200200
},
201201
{
202-
label: 'Property binding',
203-
path: 'guide/templates/property-binding',
204-
contentPath: 'guide/templates/property-binding',
202+
label: 'Control flow',
203+
path: 'guide/templates/control-flow',
204+
contentPath: 'guide/templates/control-flow',
205205
},
206206
{
207-
label: 'Property binding best practices',
208-
path: 'guide/templates/property-binding-best-practices',
209-
contentPath: 'guide/templates/property-binding-best-practices',
207+
label: 'Pipes',
208+
path: 'guide/templates/pipes',
209+
contentPath: 'guide/templates/pipes',
210210
},
211211
{
212-
label: 'Attribute binding',
213-
path: 'guide/templates/attribute-binding',
214-
contentPath: 'guide/templates/attribute-binding',
212+
label: 'Slotting child content with ng-content',
213+
path: 'guide/templates/ng-content',
214+
contentPath: 'guide/templates/ng-content',
215215
},
216216
{
217-
label: 'Class and style binding',
218-
path: 'guide/templates/class-binding',
219-
contentPath: 'guide/templates/class-binding',
217+
label: 'Create template fragments with ng-template',
218+
path: 'guide/templates/ng-template',
219+
contentPath: 'guide/templates/ng-template',
220220
},
221221
{
222-
label: 'Event binding',
223-
path: 'guide/templates/event-binding',
224-
contentPath: 'guide/templates/event-binding',
222+
label: 'Grouping elements with ng-container',
223+
path: 'guide/templates/ng-container',
224+
contentPath: 'guide/templates/ng-container',
225225
},
226226
{
227-
label: 'Two-way binding',
228-
path: 'guide/templates/two-way-binding',
229-
contentPath: 'guide/templates/two-way-binding',
227+
label: 'Variables in templates',
228+
path: 'guide/templates/variables',
229+
contentPath: 'guide/templates/variables',
230230
},
231231
{
232-
label: 'Control flow',
233-
path: 'guide/templates/control-flow',
234-
contentPath: 'guide/templates/control-flow',
232+
label: 'Deferred loading with @defer',
233+
path: 'guide/templates/defer',
234+
contentPath: 'guide/templates/defer',
235235
},
236236
{
237-
label: 'Local template variables with @let',
238-
path: 'guide/templates/let-template-variables',
239-
contentPath: 'guide/templates/let-template-variables',
237+
label: 'Expression syntax',
238+
path: 'guide/templates/expression-syntax',
239+
contentPath: 'guide/templates/expression-syntax',
240240
},
241241
{
242-
label: 'Pipes',
243-
children: [
244-
{
245-
label: 'Overview',
246-
path: 'guide/pipes',
247-
contentPath: 'guide/pipes/overview',
248-
},
249-
{
250-
label: 'Using a pipe in a template',
251-
path: 'guide/pipes/template',
252-
contentPath: 'guide/pipes/template',
253-
},
254-
{
255-
label: 'Custom pipes',
256-
path: 'guide/pipes/transform-data',
257-
contentPath: 'guide/pipes/transform-data',
258-
},
259-
{
260-
label: 'Pipe precedence in expressions',
261-
path: 'guide/pipes/precedence',
262-
contentPath: 'guide/pipes/precedence',
263-
},
264-
{
265-
label: 'Change detection with pipes',
266-
path: 'guide/pipes/change-detection',
267-
contentPath: 'guide/pipes/change-detection',
268-
},
269-
{
270-
label: 'Unwrapping data from an observable',
271-
path: 'guide/pipes/unwrapping-data-observables',
272-
contentPath: 'guide/pipes/unwrapping-data-observables',
273-
},
274-
],
275-
},
276-
{
277-
label: 'Template reference variables',
278-
path: 'guide/templates/reference-variables',
279-
contentPath: 'guide/templates/reference-variables',
280-
},
281-
{
282-
label: 'SVG as templates',
283-
path: 'guide/templates/svg-in-templates',
284-
contentPath: 'guide/templates/svg-in-templates',
242+
label: 'Whitespace in templates',
243+
path: 'guide/templates/whitespace',
244+
contentPath: 'guide/templates/whitespace',
285245
},
286246
],
287247
},

adev-ja/src/app/sub-navigation-data.ts

+37-77
Original file line numberDiff line numberDiff line change
@@ -176,112 +176,72 @@ const DOCS_SUB_NAVIGATION_DATA: NavigationItem[] = [
176176
],
177177
},
178178
{
179-
label: 'テンプレート構文',
179+
label: 'テンプレート',
180180
children: [
181181
{
182182
label: '概要',
183183
path: 'guide/templates',
184184
contentPath: 'guide/templates/overview',
185185
},
186186
{
187-
label: 'テキスト補間',
188-
path: 'guide/templates/interpolation',
189-
contentPath: 'guide/templates/interpolation',
187+
label: '動的テキスト、プロパティ、属性のバインディング',
188+
path: 'guide/templates/binding',
189+
contentPath: 'guide/templates/binding',
190190
},
191191
{
192-
label: 'テンプレートステートメント',
193-
path: 'guide/templates/template-statements',
194-
contentPath: 'guide/templates/template-statements',
192+
label: 'イベントリスナーの追加',
193+
path: 'guide/templates/event-listeners',
194+
contentPath: 'guide/templates/event-listeners',
195195
},
196196
{
197-
label: 'バインディングを理解する',
198-
path: 'guide/templates/binding',
199-
contentPath: 'guide/templates/binding',
197+
label: '双方向バインディング',
198+
path: 'guide/templates/two-way-binding',
199+
contentPath: 'guide/templates/two-way-binding',
200200
},
201201
{
202-
label: 'プロパティバインディング',
203-
path: 'guide/templates/property-binding',
204-
contentPath: 'guide/templates/property-binding',
202+
label: '制御フロー',
203+
path: 'guide/templates/control-flow',
204+
contentPath: 'guide/templates/control-flow',
205205
},
206206
{
207-
label: 'プロパティバインディングのベストプラクティス',
208-
path: 'guide/templates/property-binding-best-practices',
209-
contentPath: 'guide/templates/property-binding-best-practices',
207+
label: 'パイプ',
208+
path: 'guide/templates/pipes',
209+
contentPath: 'guide/templates/pipes',
210210
},
211211
{
212-
label: '属性バインディング',
213-
path: 'guide/templates/attribute-binding',
214-
contentPath: 'guide/templates/attribute-binding',
212+
label: 'ng-contentによる子コンテンツのスロット化',
213+
path: 'guide/templates/ng-content',
214+
contentPath: 'guide/templates/ng-content',
215215
},
216216
{
217-
label: 'クラスとスタイルのバインディング',
218-
path: 'guide/templates/class-binding',
219-
contentPath: 'guide/templates/class-binding',
217+
label: 'ng-templateによるテンプレートフラグメントの作成',
218+
path: 'guide/templates/ng-template',
219+
contentPath: 'guide/templates/ng-template',
220220
},
221221
{
222-
label: 'イベントバインディング',
223-
path: 'guide/templates/event-binding',
224-
contentPath: 'guide/templates/event-binding',
222+
label: 'ng-containerによる要素のグループ化',
223+
path: 'guide/templates/ng-container',
224+
contentPath: 'guide/templates/ng-container',
225225
},
226226
{
227-
label: '双方向バインディング',
228-
path: 'guide/templates/two-way-binding',
229-
contentPath: 'guide/templates/two-way-binding',
227+
label: 'テンプレート内の変数',
228+
path: 'guide/templates/variables',
229+
contentPath: 'guide/templates/variables',
230230
},
231231
{
232-
label: '制御フロー',
233-
path: 'guide/templates/control-flow',
234-
contentPath: 'guide/templates/control-flow',
232+
label: '@deferによる遅延読み込み',
233+
path: 'guide/templates/defer',
234+
contentPath: 'guide/templates/defer',
235235
},
236236
{
237-
label: '@letによるローカルテンプレート変数',
238-
path: 'guide/templates/let-template-variables',
239-
contentPath: 'guide/templates/let-template-variables',
237+
label: '式の構文',
238+
path: 'guide/templates/expression-syntax',
239+
contentPath: 'guide/templates/expression-syntax',
240240
},
241241
{
242-
label: 'パイプ',
243-
children: [
244-
{
245-
label: '概要',
246-
path: 'guide/pipes',
247-
contentPath: 'guide/pipes/overview',
248-
},
249-
{
250-
label: 'テンプレートでのパイプの使用',
251-
path: 'guide/pipes/template',
252-
contentPath: 'guide/pipes/template',
253-
},
254-
{
255-
label: 'カスタムパイプ',
256-
path: 'guide/pipes/transform-data',
257-
contentPath: 'guide/pipes/transform-data',
258-
},
259-
{
260-
label: '式におけるパイプの優先順位',
261-
path: 'guide/pipes/precedence',
262-
contentPath: 'guide/pipes/precedence',
263-
},
264-
{
265-
label: 'パイプによる変更検出',
266-
path: 'guide/pipes/change-detection',
267-
contentPath: 'guide/pipes/change-detection',
268-
},
269-
{
270-
label: 'Observableからのデータのアンラップ',
271-
path: 'guide/pipes/unwrapping-data-observables',
272-
contentPath: 'guide/pipes/unwrapping-data-observables',
273-
},
274-
],
275-
},
276-
{
277-
label: 'テンプレート参照変数',
278-
path: 'guide/templates/reference-variables',
279-
contentPath: 'guide/templates/reference-variables',
280-
},
281-
{
282-
label: 'テンプレートとしてのSVG',
283-
path: 'guide/templates/svg-in-templates',
284-
contentPath: 'guide/templates/svg-in-templates',
242+
label: 'テンプレート内の空白',
243+
path: 'guide/templates/whitespace',
244+
contentPath: 'guide/templates/whitespace',
285245
},
286246
],
287247
},

adev-ja/src/content/ecosystem/service-workers/app-shell.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ src
3535
├── app
3636
│ ├── app.config.server.ts # server application configuration
3737
│ └── app-shell # app-shell component
38-
│ ├── app-shell.component.html
39-
│ ├── app-shell.component.scss
40-
│ ├── app-shell.component.spec.ts
41-
│ └── app-shell.component.ts
38+
├── app-shell.component.html
39+
├── app-shell.component.scss
40+
├── app-shell.component.spec.ts
41+
└── app-shell.component.ts
4242
└── main.server.ts # main server application bootstrapping
4343
</docs-code>
4444

adev-ja/src/content/guide/components/queries.en.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class CustomCard {
2929
@ViewChild(CustomCardHeader) header: CustomCardHeader;
3030

3131
ngAfterViewInit() {
32-
console.log(this.header.text);
32+
console.log(this.header.text);
3333
}
3434
}
3535
</docs-code>
@@ -156,7 +156,7 @@ export class UserProfile { }
156156

157157
`@ContentChildren` creates a `QueryList` object that contains the query results. You can subscribe to changes to the query results over time via the `changes` property.
158158

159-
**Queries never piece through component boundaries.** Content queries can only retrieve results from the same template as the component itself.
159+
**Queries never pierce through component boundaries.** Content queries can only retrieve results from the same template as the component itself.
160160

161161
## Query locators
162162

@@ -165,7 +165,7 @@ This first parameter for each query decorator is its **locator**.
165165
Most of the time, you want to use a component or directive as your locator.
166166

167167
You can alternatively specify a string locator corresponding to
168-
a [template reference variable](guide/templates/reference-variables).
168+
a [template reference variable](guide/templates/variables#template-reference-variables).
169169

170170
```angular-ts
171171
@Component({

adev-ja/src/content/guide/components/queries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class CustomCard {
2929
@ViewChild(CustomCardHeader) header: CustomCardHeader;
3030

3131
ngAfterViewInit() {
32-
console.log(this.header.text);
32+
console.log(this.header.text);
3333
}
3434
}
3535
</docs-code>
@@ -164,7 +164,7 @@ export class UserProfile { }
164164

165165
ほとんどの場合、コンポーネントまたはディレクティブをロケーターとして使用します。
166166

167-
代わりに、[テンプレート参照変数](guide/templates/reference-variables)
167+
代わりに、[テンプレート参照変数](guide/templates/variables#template-reference-variables)
168168
に対応する文字列ロケーターを指定できます。
169169

170170
```angular-ts

0 commit comments

Comments
 (0)