mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-3587] Fixed missing docs for accessor properties * [ADF-3587] Fixed badly formed doc comments with deprecated tag * [ADF-3587] Fixed linting issue with doc comment
24 lines
810 B
Plaintext
24 lines
810 B
Plaintext
summary: >-
|
|
<%- (typeof child.comment !== "undefined") ? (child.comment.shortText || "").replace(/[\n\r]+/g, " ").trim() : "" %>
|
|
tags:
|
|
<%_ if ((typeof child.comment !== "undefined") && (typeof child.comment.tags !== "undefined")) { -%>
|
|
<% child.comment.tags.forEach(tag => { -%>
|
|
- name: <%= tag.tag %>
|
|
text: >-
|
|
<%- (tag.text || "").replace(/[\n\r]+/g, " ").trim() %>
|
|
<%_ }) -%>
|
|
<% } -%>
|
|
decorators:
|
|
<%_ if (typeof child.decorators !== "undefined") { -%>
|
|
<% child.decorators.forEach(dec => { -%>
|
|
- name: <%= dec.name %>
|
|
arguments:
|
|
<%_if (typeof dec.arguments !== "undefined") { -%>
|
|
<% Object.keys(dec.arguments).forEach(argName => { -%>
|
|
- id: <%= argName %>
|
|
value: <%- dec.arguments[argName] %>
|
|
<% }) %>
|
|
<% } -%>
|
|
<%_ }) -%>
|
|
<% } -%>
|