mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-2764] Updated doc files with latest script features * [ADF-2764] Rebuilt full index instead of just content services index
23 lines
540 B
Plaintext
23 lines
540 B
Plaintext
<% if (hasInputs) { %>
|
|
### Properties
|
|
|
|
| Name | Type | Default value | Description |
|
|
| -- | -- | -- | -- |
|
|
<% properties.forEach(function(prop) { -%>
|
|
<% if (prop.isInput) { -%>
|
|
| <%= prop.name %> | `<%- prop.type %>` | <%- prop.defaultValue %> | <%- prop.docText %> |
|
|
<% } -%>
|
|
<% }) -%>
|
|
<% } %>
|
|
<% if (hasOutputs) { %>
|
|
|
|
### Events
|
|
|
|
| Name | Type | Description |
|
|
| -- | -- | -- |
|
|
<% properties.forEach(function(prop) { -%>
|
|
<% if (prop.isOutput) { -%>
|
|
| <%= prop.name %> | `<%- prop.type %>` | <%- prop.docText %> |
|
|
<% } -%>
|
|
<% }) -%>
|
|
<% } %> |