mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Documentation update 3.6.0 (#5257)
* documentation update 3.6.0 * documentation update 3.6.0 * update missing doc
This commit is contained in:
@@ -70,6 +70,7 @@ export class DataColumnComponent implements OnInit {
|
||||
@Input()
|
||||
copyContent: boolean;
|
||||
|
||||
/** Toggles the editing support of the column data. */
|
||||
@Input()
|
||||
editable: boolean = false;
|
||||
|
||||
|
@@ -51,6 +51,7 @@ export class HeaderLayoutComponent implements OnInit {
|
||||
/** Emitted when the sidenav button is clicked. */
|
||||
@Output() clicked = new EventEmitter<boolean>();
|
||||
|
||||
/** expandedSidenav: Toggles the expanded state of the component. */
|
||||
@Input() expandedSidenav: boolean = true;
|
||||
|
||||
/** The side of the page that the drawer is attached to (can be 'start' or 'end') */
|
||||
|
@@ -53,22 +53,28 @@ export class SearchTextInputComponent implements OnInit, OnDestroy {
|
||||
@Input()
|
||||
liveSearchEnabled: boolean = true;
|
||||
|
||||
/** Trigger autocomplete results on input change. */
|
||||
@Input()
|
||||
searchAutocomplete: any = false;
|
||||
|
||||
/** Search term preselected */
|
||||
@Input()
|
||||
searchTerm: string = '';
|
||||
|
||||
/** Debounce time in milliseconds. */
|
||||
@Input()
|
||||
debounceTime: number = 0;
|
||||
|
||||
/** Listener for results-list events (focus, blur and focusout). */
|
||||
@Input()
|
||||
focusListener: Observable<FocusEvent>;
|
||||
|
||||
/** Collapse search bar on submit. */
|
||||
@Input()
|
||||
collapseOnSubmit: boolean = true;
|
||||
|
||||
@Input()
|
||||
/** Default state expanded or Collapsed. */
|
||||
@Input()
|
||||
defaultState: SearchTextStateEnum = SearchTextStateEnum.collapsed;
|
||||
|
||||
/** Emitted when the search term is changed. The search term is provided
|
||||
@@ -85,9 +91,11 @@ export class SearchTextInputComponent implements OnInit, OnDestroy {
|
||||
@Output()
|
||||
submit: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/** Emitted when the result list is selected */
|
||||
@Output()
|
||||
selectResult: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/** Emitted when the result list is reset */
|
||||
@Output()
|
||||
reset: EventEmitter<boolean> = new EventEmitter();
|
||||
|
||||
|
@@ -169,6 +169,8 @@ export class ThumbnailService {
|
||||
/**
|
||||
* Gets a thumbnail URL for the given document node.
|
||||
* @param node Node or Node ID to get URL for.
|
||||
* @param attachment Toggles whether to retrieve content as an attachment for download
|
||||
* @param ticket Custom ticket to use for authentication
|
||||
* @returns URL string
|
||||
*/
|
||||
getDocumentThumbnailUrl(node: NodeEntry | string, attachment?: boolean, ticket?: string): string {
|
||||
|
Reference in New Issue
Block a user