File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ export function isPublicDoc(doc: ApiDoc) {
3030 if ( _isEnforcedPublicDoc ( doc ) ) {
3131 return true ;
3232 }
33- if ( _hasDocsPrivateTag ( doc ) || doc . name . startsWith ( '_' ) ) {
33+ if ( _hasDocsPrivateTag ( doc ) || doc . name . startsWith ( '_' ) ||
34+ doc . name . startsWith ( 'ngAcceptInputType_' ) ) {
3435 return false ;
3536 } else if ( doc instanceof MemberDoc ) {
3637 return ! _isInternalMember ( doc ) ;
Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ export class DocsPrivateFilter implements Processor {
2727 // Filter out private class members which could be annotated
2828 // with the "@docs-private" tag.
2929 if ( isPublic && doc instanceof ClassExportDoc ) {
30- doc . members = doc . members . filter ( memberDoc => isPublicDoc ( memberDoc ) ) ;
30+ doc . members = doc . members . filter ( isPublicDoc ) ;
31+ doc . statics = doc . statics . filter ( isPublicDoc ) ;
3132 }
3233
3334 return isPublic ;
Original file line number Diff line number Diff line change 2727 {%- endif -%}
2828
2929 < p class ="docs-api-property-name ">
30- < code > {%- if property.isStatic -%}static {%- endif -%}{$ property.name $}: {$ property.type $}</ code >
30+ < code > {%- if property.isStatic -%}static {%- endif -%}{$ property.name $}: {$ property.type $}</ code >
3131 </ p >
3232 </ td >
3333 < td class ="docs-api-property-description "> {$ property.description | marked | safe $}</ td >
You can’t perform that action at this time.
0 commit comments