cat-qw-lib 1.0.6 → 1.0.8
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/fesm2022/cat-qw-lib.mjs +16 -8
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/queue/components/queue-container/queue-container.component.d.ts +2 -1
- package/lib/queue/components/queue-record-table/queue-record-table.component.d.ts +2 -1
- package/lib/shared/constant/SHARED.d.ts +4 -0
- package/package.json +1 -1
|
@@ -39,6 +39,7 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
|
|
|
39
39
|
searchText: string;
|
|
40
40
|
sortBy: string;
|
|
41
41
|
sortOrder: string;
|
|
42
|
+
tableHeight: string;
|
|
42
43
|
set selectedRowsInput(rows: any[]);
|
|
43
44
|
get selectedRowsInput(): any[];
|
|
44
45
|
assignmentComplete: EventEmitter<{
|
|
@@ -96,5 +97,5 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
|
|
|
96
97
|
}): void;
|
|
97
98
|
isAssignButtonEnabled(): boolean;
|
|
98
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueContainerComponent, never>;
|
|
99
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QueueContainerComponent, "lib-queue-container", never, { "selectedRowsInput": { "alias": "selectedRowsInput"; "required": false; }; }, { "assignmentComplete": "assignmentComplete"; "userAssigned": "userAssigned"; "selectedRowsData": "selectedRowsData"; "assignmentDataReady": "assignmentDataReady"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; }, never, ["[user-dropdown]"], false, never>;
|
|
100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueueContainerComponent, "lib-queue-container", never, { "tableHeight": { "alias": "tableHeight"; "required": false; }; "selectedRowsInput": { "alias": "selectedRowsInput"; "required": false; }; }, { "assignmentComplete": "assignmentComplete"; "userAssigned": "userAssigned"; "selectedRowsData": "selectedRowsData"; "assignmentDataReady": "assignmentDataReady"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; }, never, ["[user-dropdown]"], false, never>;
|
|
100
101
|
}
|
|
@@ -8,6 +8,7 @@ export declare class QueueRecordTableComponent {
|
|
|
8
8
|
metaData: MetaDataModel;
|
|
9
9
|
loading: boolean;
|
|
10
10
|
selectedRows: any[];
|
|
11
|
+
tableHeight: string;
|
|
11
12
|
selectionChange: EventEmitter<any[]>;
|
|
12
13
|
selectedRowsData: EventEmitter<any[]>;
|
|
13
14
|
assignmentDataReady: EventEmitter<{
|
|
@@ -26,5 +27,5 @@ export declare class QueueRecordTableComponent {
|
|
|
26
27
|
get hasData(): boolean;
|
|
27
28
|
get selectedCount(): number;
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueRecordTableComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QueueRecordTableComponent, "app-queue-record-table", never, { "table": { "alias": "table"; "required": false; }; "metaData": { "alias": "metaData"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; }, { "selectionChange": "selectionChange"; "selectedRowsData": "selectedRowsData"; "assignmentDataReady": "assignmentDataReady"; "rowClick": "rowClick"; "paginationChanged": "paginationChanged"; "filterApplied": "filterApplied"; "sortApplied": "sortApplied"; }, never, never, false, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueueRecordTableComponent, "app-queue-record-table", never, { "table": { "alias": "table"; "required": false; }; "metaData": { "alias": "metaData"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; "tableHeight": { "alias": "tableHeight"; "required": false; }; }, { "selectionChange": "selectionChange"; "selectedRowsData": "selectedRowsData"; "assignmentDataReady": "assignmentDataReady"; "rowClick": "rowClick"; "paginationChanged": "paginationChanged"; "filterApplied": "filterApplied"; "sortApplied": "sortApplied"; }, never, never, false, never>;
|
|
30
31
|
}
|