[ACS-5761] Demo Shell pages cleanup (#8802)

remove the content that is not covered by e2e testing, preparation steps for the demo shell decommissioning
This commit is contained in:
Denys Vuika
2023-08-08 14:09:41 +01:00
committed by GitHub
parent 17535c9f53
commit 4f2b3bce3c
257 changed files with 528 additions and 15154 deletions

View File

@@ -213,7 +213,7 @@ within the document list.
```html
<data-column
title="{{'DOCUMENT_LIST.COLUMNS.TAG' | translate}}"
title="Tag"
key="id"
sortable="true"
class="full-width ellipsis-cell">

View File

@@ -15,7 +15,7 @@ Formats the tooltip for a [`Node`](https://github.com/Alfresco/alfresco-js-api/b
```html
<data-column
key="name"
title="APP.DOCUMENT_LIST.COLUMNS.NAME">
title="Name">
<ng-template let-value="value" let-context>
<span title="{{ context?.row?.obj | adfNodeNameTooltip }}">{{ value }}</span>
</ng-template>

View File

@@ -67,7 +67,7 @@ Starts a process.
```html
<adf-start-process
[appId]="YOUR_APP_ID"
[title]="'ADF_PROCESS_LIST.START_PROCESS.FORM.TITLE'"
[title]="'Start Process'"
[name]="PROCESS_NAME"
[processDefinitionName]="PROCESS_DEFINITION_NAME">
</adf-start-process>
@@ -186,7 +186,7 @@ Now you can start process based on selected application from the dropdown. The p
```html
<adf-start-process
[appId]="YOUR_APP_ID"
[title]="'ADF_PROCESS_LIST.START_PROCESS.FORM.TITLE'"
[title]="'Start Process'"
[name]="PROCESS_NAME"
[showSelectApplicationDropdown]="true"
[processDefinitionName]="PROCESS_DEFINITION_NAME">
@@ -204,7 +204,7 @@ When an error occurs, the component will emit an error event that can be used to
```html
<adf-start-process
[appId]="YOUR_APP_ID"
[title]="'ADF_PROCESS_LIST.START_PROCESS.FORM.TITLE'"
[title]="'Start Process'"
[name]="PROCESS_NAME"
(error)="onError($event)">
</adf-start-process>

View File

@@ -85,7 +85,7 @@ Two new content actions have been added, the "copy" and the "move" for both fold
<content-action
icon="content_copy"
target="folder"
title="{{'DOCUMENT_LIST.ACTIONS.FOLDER.COPY' | translate}}"
title="Copy"
permission="update"
[disableWithNoPermission]="true"
handler="copy">
@@ -93,7 +93,7 @@ Two new content actions have been added, the "copy" and the "move" for both fold
<content-action
icon="redo"
target="folder"
title="{{'DOCUMENT_LIST.ACTIONS.FOLDER.MOVE' | translate}}"
title="Move"
permission="update"
[disableWithNoPermission]="true"
handler="move">