cat-documents-ng 0.5.18 → 0.5.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,6 +11,7 @@ export declare class DocumentSearchComponent implements OnInit, OnDestroy {
|
|
|
11
11
|
onActionClick: EventEmitter<void>;
|
|
12
12
|
onRequestClick: EventEmitter<void>;
|
|
13
13
|
searchTerm: string;
|
|
14
|
+
showActionsMenu: boolean;
|
|
14
15
|
private destroy$;
|
|
15
16
|
private searchSubject;
|
|
16
17
|
private hasActiveFilters;
|
|
@@ -47,6 +48,30 @@ export declare class DocumentSearchComponent implements OnInit, OnDestroy {
|
|
|
47
48
|
* Determines if the Clear All button should be visible
|
|
48
49
|
*/
|
|
49
50
|
get shouldShowClearAll(): boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Toggles the actions dropdown menu
|
|
53
|
+
*/
|
|
54
|
+
toggleActionsMenu(): void;
|
|
55
|
+
/**
|
|
56
|
+
* Handles upload document action
|
|
57
|
+
*/
|
|
58
|
+
handleUploadDocument(): void;
|
|
59
|
+
/**
|
|
60
|
+
* Handles request document action
|
|
61
|
+
*/
|
|
62
|
+
handleRequestDocument(): void;
|
|
63
|
+
/**
|
|
64
|
+
* Sets up click outside listener to close dropdown
|
|
65
|
+
*/
|
|
66
|
+
private setupClickOutsideListener;
|
|
67
|
+
/**
|
|
68
|
+
* Removes click outside listener
|
|
69
|
+
*/
|
|
70
|
+
private removeClickOutsideListener;
|
|
71
|
+
/**
|
|
72
|
+
* Handles clicks outside the dropdown to close it
|
|
73
|
+
*/
|
|
74
|
+
private handleClickOutside;
|
|
50
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentSearchComponent, never>;
|
|
51
76
|
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentSearchComponent, "document-search", never, { "contextId": { "alias": "contextId"; "required": false; }; }, { "onActionClick": "onActionClick"; "onRequestClick": "onRequestClick"; }, never, never, false, never>;
|
|
52
77
|
}
|