@@ -70,8 +70,12 @@ const CUSTOM_VALUE_ACCESSOR_PROVIDER = {
70
70
multi: true
71
71
};<#?#>
72
72
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
+ */
75
79
@Component({
76
80
selector: ' <#= it.selector #>' ,
77
81
template: ' <#? it.isTranscludedContent #><ng-content></ng-content><#?#>' ,<#? it.isViz #>
@@ -87,8 +91,12 @@ const CUSTOM_VALUE_ACCESSOR_PROVIDER = {
87
91
export class <#= it.className #>Component extends <#= baseClass #> <#? implementedInterfaces.length #>implements <#= implementedInterfaces.join(' , ' ) #> <#?#>{
88
92
instance: <#= it.className #>;
89
93
<#~ 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
+ */
92
100
@Input()
93
101
get <#= prop.name #>(): <#= prop.type #> {
94
102
return this._getOption(' <#= prop.name #>' );
@@ -99,9 +107,16 @@ export class <#= it.className #>Component extends <#= baseClass #> <#? implement
99
107
100
108
<#?#><#~#>
101
109
<#~ 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
+ */
105
120
@Output() <#= event.emit #>: <#= event.type #>;<#? i < it.events.length-1 #>
106
121
<#?#><#~#>
107
122
0 commit comments