mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-4152] Moved proc services cloud docs to subfolders * [ADF-4152] Fixed links in PS cloud docs * [ADF-4152] Added subfolders and checked links for extensions and insights docs * [ADF-4152] Moved proc services cloud docs to subfolders * [ADF-4152] Fixed links in PS cloud docs * [ADF-4152] Added subfolders and checked links for extensions and insights docs * [ADF-4152] Fixed links in Proc cloud, Insights and Extensions docs * [ADF-4152] Updated links in user guide * [ADF-4152] Fixed broken links in tutorials * [ADF-4152] Fixed remaining links in core docs * [ADF-4152] Fixed remaining links in proc services docs * [ADF-4152] Fixed remaining links in content services docs * [ADF-4152] Fixed links in breaking changes docs * [ADF-4152] Updated main README index page * [ADF-4152] Fixed glitches with preview ext component docs
2.0 KiB
2.0 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
People Cloud Component | v3.0.0 | Experimental | 2019-01-18 |
People Cloud Component
Allows one or more users to be selected (with auto-suggestion) based on the input parameters.
Basic Usage
<adf-cloud-people
[appName]="'simple-app'"
[mode]="'multiple'">
</adf-cloud-people>
Class members
Properties
Name | Type | Default value | Description |
---|---|---|---|
appName | string |
Name of the application. If specified, this shows the users who have access to the app. | |
mode | string |
User selection mode (single/multiple). | |
preSelectUsers | IdentityUserModel [] |
Array of users to be pre-selected. All users in the array are pre-selected in multi selection mode, but only the first user is pre-selected in single selection mode. Mandatory properties are: id, email, username | |
roles | string[] |
Role names of the users to be listed. | |
validate | Boolean |
false | This flag enables the validation on the preSelectUsers passed as input. In case the flag is true the components call the identity service to verify the validity of the information passed as input. Otherwise, no check will be done. |
Events
Name | Type | Description |
---|---|---|
removeUser | EventEmitter < IdentityUserModel > |
Emitted when a selected user is removed in multi selection mode. |
selectUser | EventEmitter < IdentityUserModel > |
Emitted when a user is selected. |
warning | EventEmitter <any> |
Emitted when an warning occurs. |