--- Added: v2.0.0 Status: Active --- # Apps List Component Shows all available apps. ![how-filter-apps](../docassets/images/how-filter-apps.png) ## Basic Usage ```html ``` ## Passing custom no-apps template If we intend to show a custom template if there are no apps present ```html
No apps present
``` ### Properties | Name | Type | Default value | Description | | ---- | ---- | ------------- | ----------- | | layoutType | `string` | `AppsListComponent.LAYOUT_GRID` | (**required**) Defines the layout of the apps. There are two possible values, "GRID" and "LIST". | | filtersAppId | `any[]` | | Provides a way to filter the apps to show. | ### Events | Name | Type | Description | | ---- | ---- | ----------- | | appClick | `EventEmitter` | Emitted when an app entry is clicked. | | error | `EventEmitter` | Emitted when an error occurs. | ## Details ### How filter the activiti apps If you want to show some specific apps you can specify them through the filtersAppId parameters ```html ``` In this specific case only the Tasks app, the app with deploymentId 15037 and the app with "my app name" will be shown. ![how-filter-apps](../docassets/images/how-filter-apps.png) You can use inside the filter one of the following property ```json { "defaultAppId": "string", "deploymentId": "string", "name": "string", "id": "number", "modelId": "number", "tenantId": "number" } ```