mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
update doc (#8386)
This commit is contained in:
@@ -173,9 +173,11 @@ export class DataTableComponent implements OnInit, AfterContentInit, OnChanges,
|
||||
@Output()
|
||||
executeRowAction = new EventEmitter<DataRowActionEvent>();
|
||||
|
||||
/** Emitted when the column order is changed. */
|
||||
@Output()
|
||||
columnOrderChanged = new EventEmitter<DataColumn[]>();
|
||||
|
||||
/** Emitted when the column width is changed. */
|
||||
@Output()
|
||||
columnsWidthChanged = new EventEmitter<DataColumn[]>();
|
||||
|
||||
|
@@ -25,6 +25,7 @@ import { Component, ContentChild, Input, OnInit, TemplateRef } from '@angular/co
|
||||
})
|
||||
export class DataColumnComponent implements OnInit {
|
||||
|
||||
/** Id of the Column */
|
||||
@Input()
|
||||
id: string = '';
|
||||
|
||||
@@ -52,11 +53,11 @@ export class DataColumnComponent implements OnInit {
|
||||
@Input()
|
||||
sortable: boolean = true;
|
||||
|
||||
/* Enable drag and drop for header column */
|
||||
/** Enable drag and drop for header column */
|
||||
@Input()
|
||||
draggable: boolean = false;
|
||||
|
||||
/* Hide column */
|
||||
/** Hide column */
|
||||
@Input()
|
||||
isHidden: boolean = false;
|
||||
|
||||
|
@@ -30,9 +30,11 @@ export class IdentityUserInfoComponent implements OnDestroy {
|
||||
|
||||
@ViewChild(MatMenuTrigger) trigger: MatMenuTrigger;
|
||||
|
||||
/** Is the user logged in */
|
||||
@Input()
|
||||
isLoggedIn: boolean;
|
||||
|
||||
/** User */
|
||||
@Input()
|
||||
identityUser: IdentityUserModel;
|
||||
|
||||
|
@@ -32,6 +32,7 @@ import { LanguageItem } from '../common/services/language-item.interface';
|
||||
})
|
||||
export class LanguageMenuComponent {
|
||||
|
||||
/** Emitted when the language change */
|
||||
@Output()
|
||||
changedLanguage: EventEmitter<LanguageItem> = new EventEmitter<LanguageItem>();
|
||||
|
||||
|
@@ -144,6 +144,7 @@ export class ViewerComponent<T> implements OnDestroy, OnInit, OnChanges {
|
||||
@Input()
|
||||
tracks: Track[] = [];
|
||||
|
||||
/** Overload mimeType*/
|
||||
@Input()
|
||||
mimeType: string;
|
||||
|
||||
|
Reference in New Issue
Block a user