Skip to content

Commit a766112

Browse files
committed
docs: remove mat stylers from docs
1 parent d78a370 commit a766112

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

src/lib/button/button.ts

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {coerceBooleanProperty} from '../core';
1717

1818
/**
1919
* Directive whose purpose is to add the mat- CSS styling to this selector.
20+
* @docs-private
2021
*/
2122
@Directive({
2223
selector: 'button[md-button], button[mat-button], a[md-button], a[mat-button]',
@@ -28,6 +29,7 @@ export class MdButtonCssMatStyler {}
2829

2930
/**
3031
* Directive whose purpose is to add the mat- CSS styling to this selector.
32+
* @docs-private
3133
*/
3234
@Directive({
3335
selector:
@@ -41,6 +43,7 @@ export class MdRaisedButtonCssMatStyler {}
4143

4244
/**
4345
* Directive whose purpose is to add the mat- CSS styling to this selector.
46+
* @docs-private
4447
*/
4548
@Directive({
4649
selector:
@@ -53,6 +56,7 @@ export class MdIconButtonCssMatStyler {}
5356

5457
/**
5558
* Directive whose purpose is to add the mat- CSS styling to this selector.
59+
* @docs-private
5660
*/
5761
@Directive({
5862
selector: 'button[md-fab], button[mat-fab], a[md-fab], a[mat-fab]',
@@ -64,6 +68,7 @@ export class MdFabCssMatStyler {}
6468

6569
/**
6670
* Directive whose purpose is to add the mat- CSS styling to this selector.
71+
* @docs-private
6772
*/
6873
@Directive({
6974
selector: 'button[md-mini-fab], button[mat-mini-fab], a[md-mini-fab], a[mat-mini-fab]',

src/lib/grid-list/grid-tile.ts

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export class MdGridTileText implements AfterContentInit {
6969

7070
/**
7171
* Directive whose purpose is to add the mat- CSS styling to this selector.
72+
* @docs-private
7273
*/
7374
@Directive({
7475
selector: '[md-grid-avatar], [mat-grid-avatar]',
@@ -80,6 +81,7 @@ export class MdGridAvatarCssMatStyler {}
8081

8182
/**
8283
* Directive whose purpose is to add the mat- CSS styling to this selector.
84+
* @docs-private
8385
*/
8486
@Directive({
8587
selector: 'md-grid-tile-header, mat-grid-tile-header',
@@ -91,6 +93,7 @@ export class MdGridTileHeaderCssMatStyler {}
9193

9294
/**
9395
* Directive whose purpose is to add the mat- CSS styling to this selector.
96+
* @docs-private
9497
*/
9598
@Directive({
9699
selector: 'md-grid-tile-footer, mat-grid-tile-footer',

src/lib/list/list.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export class MdList {}
2929

3030
/**
3131
* Directive whose purpose is to add the mat- CSS styling to this selector.
32+
* @docs-private
3233
*/
3334
@Directive({
3435
selector: 'md-list, mat-list',
@@ -40,6 +41,7 @@ export class MdListCssMatStyler {}
4041

4142
/**
4243
* Directive whose purpose is to add the mat- CSS styling to this selector.
44+
* @docs-private
4345
*/
4446
@Directive({
4547
selector: 'md-nav-list, mat-nav-list',
@@ -51,6 +53,7 @@ export class MdNavListCssMatStyler {}
5153

5254
/**
5355
* Directive whose purpose is to add the mat- CSS styling to this selector.
56+
* @docs-private
5457
*/
5558
@Directive({
5659
selector: 'md-divider, mat-divider',
@@ -60,7 +63,10 @@ export class MdNavListCssMatStyler {}
6063
})
6164
export class MdDividerCssMatStyler {}
6265

63-
/* Need directive for a ContentChild query in list-item */
66+
/**
67+
* Directive whose purpose is to add the mat- CSS styling to this selector.
68+
* @docs-private
69+
*/
6470
@Directive({
6571
selector: '[md-list-avatar], [mat-list-avatar]',
6672
host: {
@@ -69,7 +75,10 @@ export class MdDividerCssMatStyler {}
6975
})
7076
export class MdListAvatarCssMatStyler {}
7177

72-
/* Need directive to add mat- CSS styling */
78+
/**
79+
* Directive whose purpose is to add the mat- CSS styling to this selector.
80+
* @docs-private
81+
*/
7382
@Directive({
7483
selector: '[md-list-icon], [mat-list-icon]',
7584
host: {

src/lib/progress-spinner/progress-spinner.ts

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ type EasingFn = (currentTime: number, startValue: number,
3333

3434
/**
3535
* Directive whose purpose is to add the mat- CSS styling to this selector.
36+
* @docs-private
3637
*/
3738
@Directive({
3839
selector: 'md-progress-spinner, mat-progress-spinner',
@@ -45,6 +46,7 @@ export class MdProgressSpinnerCssMatStyler {}
4546

4647
/**
4748
* Directive whose purpose is to add the mat- CSS styling to this selector.
49+
* @docs-private
4850
*/
4951
@Directive({
5052
selector: 'md-progress-circle, mat-progress-circle',

0 commit comments

Comments
 (0)