cat-qw-lib 2.5.27 → 2.6.3
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.
- package/README.md +63 -63
- package/fesm2022/cat-qw-lib.mjs +179 -147
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/queue/components/queue-container/queue-container.component.d.ts +2 -0
- package/lib/queue/services/queue-record-table-builder.service.d.ts +4 -1
- package/lib/shared/constant/SHARED.d.ts +3 -0
- package/package.json +1 -1
- package/src/assets/icons/confirm-icon.svg +4 -4
|
@@ -103,6 +103,8 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
|
|
|
103
103
|
private resetPage;
|
|
104
104
|
private clearSelection;
|
|
105
105
|
private clearFilters;
|
|
106
|
+
private isReferredQueue;
|
|
107
|
+
private getDefaultSortOrder;
|
|
106
108
|
onSearchTermChanged(searchTerm: string): void;
|
|
107
109
|
onSelectionChange(selection: any[]): void;
|
|
108
110
|
onAssignmentComplete(event: {
|
|
@@ -18,9 +18,12 @@ export declare class QueueRecordTableBuilderService extends TableBuilder {
|
|
|
18
18
|
* @returns {string} Truncated text
|
|
19
19
|
*/
|
|
20
20
|
private truncateText;
|
|
21
|
+
private getColumnOrder;
|
|
21
22
|
buildSecondaryTable(records: any[], headerWidths?: {
|
|
22
23
|
[key: string]: string;
|
|
23
|
-
}, editPermission?: string, deletePermission?: string
|
|
24
|
+
}, editPermission?: string, deletePermission?: string, options?: {
|
|
25
|
+
isReferredQueue?: boolean;
|
|
26
|
+
}): TableSecondaryModel;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueRecordTableBuilderService, never>;
|
|
25
28
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueueRecordTableBuilderService>;
|
|
26
29
|
}
|
|
@@ -120,6 +120,8 @@ export declare class SHARED {
|
|
|
120
120
|
static BROKER_NAME: string;
|
|
121
121
|
static SECURITY_ADDRESS: string;
|
|
122
122
|
static SLA: string;
|
|
123
|
+
static REFERRED_DATE: string;
|
|
124
|
+
static REFERRED: string;
|
|
123
125
|
static FINANCE: string;
|
|
124
126
|
static VALUATION_STATUS: string;
|
|
125
127
|
static TASKS: string;
|
|
@@ -290,6 +292,7 @@ export declare const QUEUE_RECORD_TABLE_COLUMN_WIDTH_LIST: {
|
|
|
290
292
|
finance: string;
|
|
291
293
|
valuationStatus: string;
|
|
292
294
|
sla: string;
|
|
295
|
+
referredDate: string;
|
|
293
296
|
appId: string;
|
|
294
297
|
tasks: string;
|
|
295
298
|
};
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M0.959961 7.91992C0.959961 4.05393 4.09397 0.919922 7.95996 0.919922C11.826 0.919922 14.96 4.05393 14.96 7.91992C14.96 11.7859 11.826 14.9199 7.95996 14.9199C4.09397 14.9199 0.959961 11.7859 0.959961 7.91992Z" fill="#22C55E"/>
|
|
3
|
-
<path d="M7.12625 9.31121L11.1512 5.28621L11.7638 5.90746L7.12625 10.5537L4.34375 7.76246L4.95625 7.14996L7.12625 9.31121Z" fill="white"/>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.959961 7.91992C0.959961 4.05393 4.09397 0.919922 7.95996 0.919922C11.826 0.919922 14.96 4.05393 14.96 7.91992C14.96 11.7859 11.826 14.9199 7.95996 14.9199C4.09397 14.9199 0.959961 11.7859 0.959961 7.91992Z" fill="#22C55E"/>
|
|
3
|
+
<path d="M7.12625 9.31121L11.1512 5.28621L11.7638 5.90746L7.12625 10.5537L4.34375 7.76246L4.95625 7.14996L7.12625 9.31121Z" fill="white"/>
|
|
4
|
+
</svg>
|