@@ -70,8 +70,12 @@ const CUSTOM_VALUE_ACCESSOR_PROVIDER = {
7070 multi: true
7171};<#?#>
7272
73- <#? it.isDeprecated #>/** @deprecated */<#?#>
74- <#? it.docID #>/** @name <#= it.docID #> */<#?#>
73+ /**
74+ * [descr:<#= it.docID #>]
75+ <#? it.isDeprecated #>
76+ * @deprecated [depNote:<#= it.docID #>]
77+ <#?#>
78+ */
7579@Component({
7680 selector: ' <#= it.selector #>' ,
7781 template: ' <#? it.isTranscludedContent #><ng-content></ng-content><#?#>' ,<#? it.isViz #>
@@ -87,8 +91,12 @@ const CUSTOM_VALUE_ACCESSOR_PROVIDER = {
8791export class <#= it.className #>Component extends <#= baseClass #> <#? implementedInterfaces.length #>implements <#= implementedInterfaces.join(' , ' ) #> <#?#>{
8892 instance: <#= it.className #>;
8993<#~ it.properties :prop:i #>
90- <#? prop.isDeprecated #>/** @deprecated */<#?#>
91- <#? prop.docID #>/** @name <#= prop.docID #> */<#?#>
94+ /**
95+ * [descr:<#= prop.docID #>]
96+ <#? prop.isDeprecated #>
97+ * @deprecated [depNote:<#= prop.docID #>]
98+ <#?#>
99+ */
92100 @Input()
93101 get <#= prop.name #>(): <#= prop.type #> {
94102 return this._getOption(' <#= prop.name #>' );
@@ -99,9 +107,16 @@ export class <#= it.className #>Component extends <#= baseClass #> <#? implement
99107
100108<#?#><#~#>
101109<#~ it.events :event:i #>
102- <#? event.isDeprecated #>/** @deprecated */<#?#>
103- <#? event.docID #>/** @name <#= event.docID #> */<#?#>
104- <#? event.isInternal #>/** This member supports the internal infrastructure and is not intended to be used directly from your code. */<#?#>
110+ /**
111+ <#? event.isInternal #>
112+ * This member supports the internal infrastructure and is not intended to be used directly from your code.
113+ <#??#>
114+ * [descr:<#= event.docID #>]
115+ <#? event.isDeprecated #>
116+ * @deprecated [depNote:<#= event.docID #>]
117+ <#?#>
118+ <#?#>
119+ */
105120 @Output() <#= event.emit #>: <#= event.type #>;<#? i < it.events.length-1 #>
106121<#?#><#~#>
107122
0 commit comments