Skip to content

Commit f97a600

Browse files
committed
Document revision.
1 parent 0728df0 commit f97a600

22 files changed

+627
-678
lines changed

typedoc/ja/lib/combo/IgxComboComponent.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
" <igx-combo #combo>",
150150
" ...",
151151
" <ng-template igxComboEmpty>",
152-
" <div class=\"combo--emtpy\">",
152+
" <div class=\"combo--empty\">",
153153
" There are no items to display",
154154
" </div>",
155155
" </ng-template>",
@@ -684,7 +684,7 @@
684684
"```",
685685
"```html",
686686
"<!--set-->",
687-
"<igx-combo [displayKey]='mydisplayKey'></igx-combo>",
687+
"<igx-combo [displayKey]='myDisplayKey'></igx-combo>",
688688
"```"
689689
],
690690
"shortText": "コンボ テキスト データソース プロパティ。"
@@ -701,7 +701,7 @@
701701
"```",
702702
"```html",
703703
"<!--set-->",
704-
"<igx-combo [displayKey]='mydisplayKey'></igx-combo>",
704+
"<igx-combo [displayKey]='myDisplayKey'></igx-combo>",
705705
"```"
706706
],
707707
"shortText": "コンボ テキスト データソース プロパティ。"
@@ -737,7 +737,7 @@
737737
"comment": {
738738
"text": [
739739
"```typescript",
740-
"// get",
740+
"// 取得",
741741
"let valid = this.combo.valid;",
742742
"```"
743743
],
@@ -748,7 +748,7 @@
748748
"comment": {
749749
"text": [
750750
"```typescript",
751-
"// set",
751+
"// 設定",
752752
"this.combo.valid = IgxComboState.INVALID;",
753753
"```"
754754
],

typedoc/ja/lib/dialog/IgxDialogComponent.json

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,41 @@
298298
}
299299
}
300300
},
301+
"positionSettings": {
302+
"getter": {
303+
"comment": {
304+
"shortText": [
305+
"ダイアログで使用される位置とアニメーション設定を取得します。",
306+
"```typescript",
307+
"@ViewChild('alert', { static: true }) public alert: IgxDialogComponent;",
308+
"let currentPosition: PositionSettings = this.alert.positionSettings",
309+
"```"
310+
]
311+
}
312+
},
313+
"setter": {
314+
"comment": {
315+
"shortText": [
316+
"ダイアログで使用される位置とアニメーション設定を設定します。",
317+
"```typescript",
318+
"import { slideInLeft, slideOutRight } from 'igniteui-angular';",
319+
"...",
320+
"@ViewChild('alert', { static: true }) public alert: IgxDialogComponent;",
321+
" public newPositionSettings: PositionSettings = {",
322+
" openAnimation: useAnimation(slideInTop, { params: { duration: '2000ms' } }),",
323+
" closeAnimation: useAnimation(slideOutBottom, { params: { duration: '2000ms'} }),",
324+
" horizontalDirection: HorizontalAlignment.Left,",
325+
" verticalDirection: VerticalAlignment.Middle,",
326+
" horizontalStartPoint: HorizontalAlignment.Left,",
327+
" verticalStartPoint: VerticalAlignment.Middle,",
328+
" minSize: { height: 100, width: 100 }",
329+
" };",
330+
"this.alert.positionSettings = this.newPositionSettings;",
331+
"```"
332+
]
333+
}
334+
}
335+
},
301336
"state": {
302337
"getter": {
303338
"comment": {
@@ -364,4 +399,4 @@
364399
}
365400
}
366401
}
367-
}
402+
}

typedoc/ja/lib/directives/IgxGridForOfDirective.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
"getScrollForIndex": {
245245
"comment": {
246246
"shortText": [
247-
"Returns the scroll offset of the element at the specified index.",
247+
"指定したインデックスの要素のスクロール オフセットを返します。",
248248
"```typescript",
249249
"this.parentVirtDir.getScrollForIndex(1);",
250250
"```"

typedoc/ja/lib/drop-down/IgxDropDownComponent.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@
2626
"<igx-drop-down (onOpening)='handleOpening()'></igx-drop-down>",
2727
"```"
2828
],
29-
"shortText": [
30-
"ドロップダウンが開かれる前に発生されます。"
31-
]
29+
"shortText": "ドロップダウンが開かれる前に発生されます。"
3230
}
3331
},
3432
"onOpened": {
@@ -38,9 +36,7 @@
3836
"<igx-drop-down (onOpened)='handleOpened()'></igx-drop-down>",
3937
"```"
4038
],
41-
"shortText": [
42-
"ドロップダウンが開かれた後に発生されます。"
43-
]
39+
"shortText": "ドロップダウンが開かれた後に発生されます。"
4440
}
4541
},
4642
"onClosing": {
@@ -50,9 +46,7 @@
5046
"<igx-drop-down (onClosing)='handleClosing()'></igx-drop-down>",
5147
"```"
5248
],
53-
"shortText": [
54-
"ドロップダウンが閉じられる前に発生されます。"
55-
]
49+
"shortText": "ドロップダウンが閉じられる前に発生されます。"
5650
}
5751
},
5852
"onClosed": {
@@ -62,9 +56,7 @@
6256
"<igx-drop-down (onClosed)='handleClosed()'></igx-drop-down>",
6357
"```"
6458
],
65-
"shortText": [
66-
"ドロップダウンが閉じられた後に発生されます。"
67-
]
59+
"shortText": "ドロップダウンが閉じられた後に発生されます。"
6860
}
6961
},
7062
"allowItemsFocus": {

typedoc/ja/lib/drop-down/IgxDropDownItemBase.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@
4646
"let myComboItemValue = this.combo.items[0].value;",
4747
"```"
4848
],
49-
"shortText": [
50-
"項目がデータにバインドされる場合、項目の値を取得または設定します。"
51-
]
49+
"shortText": "項目がデータにバインドされる場合、項目の値を取得または設定します。"
5250
}
5351
},
5452
"isHeader": {

typedoc/ja/lib/drop-down/IgxDropDownItemComponent.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@
4242
"let myComboItemValue = this.combo.items[0].value;",
4343
"```"
4444
],
45-
"shortText": [
46-
"項目がデータにバインドされる場合、項目の値を取得または設定します。"
47-
]
45+
"shortText": "項目がデータにバインドされる場合、項目の値を取得または設定します。"
4846
}
4947
},
5048
"isHeader": {

typedoc/ja/lib/grids/IGridEditEventArgs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"owner": {
1010
"comment": {
11-
"shortText": "Provides reference to the owner component."
11+
"shortText": "オーナー コンポーネントへの参照を提供します。"
1212
}
1313
}
1414
},

typedoc/ja/lib/grids/IgxColumnGroupComponent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@
12991299
}
13001300
},
13011301
"shortText": [
1302-
"Returns a boolean indicating if the column is a child of a `ColumnLayout` for multi-row layout.",
1302+
"列が複数行レイアウト用の `ColumnLayout` の子であるかどうかを示すブール値を返します。",
13031303
"```typescript",
13041304
"let columnLayoutChild = this.column.columnLayoutChild;",
13051305
"```"

typedoc/ja/lib/grids/IgxGridBaseComponent.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@
2424
},
2525
"shortText": [
2626
"`IgxGridComponent` 列を自動生成する @Input プロパティ。",
27-
"デフォルト値は False です。",
28-
"```html",
29-
"<igx-grid [data]=\"Data\" [autoGenerate]=\"true\"></igx-grid>",
30-
"```"
27+
"デフォルト値は False です。"
3128
]
3229
}
3330
},
@@ -2076,9 +2073,8 @@
20762073
"comment": {
20772074
"shortText": "グリッドのロケールを設定します。"
20782075
}
2079-
2080-
}
2081-
},
2076+
}
2077+
},
20822078
"paging": {
20832079
"getter": {
20842080
"comment": {

0 commit comments

Comments
 (0)