cat-qw-lib 1.0.55 → 1.0.57
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 +388 -367
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/queue/components/queue-container/queue-container.component.d.ts +1 -2
- package/lib/queue/components/queue-record-table/queue-record-table.component.d.ts +1 -2
- package/lib/shared/table-secondary/components/table-secondary.component.d.ts +14 -7
- package/package.json +1 -1
|
@@ -43,7 +43,6 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
|
|
|
43
43
|
sortBy: string;
|
|
44
44
|
sortOrder: string;
|
|
45
45
|
appliedFilters: any;
|
|
46
|
-
tableHeight: string;
|
|
47
46
|
placeholder: string;
|
|
48
47
|
filterDropdown: QueueFilterDropdownComponent;
|
|
49
48
|
set selectedRowsInput(rows: any[]);
|
|
@@ -109,5 +108,5 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
|
|
|
109
108
|
isAssignButtonEnabled(): boolean;
|
|
110
109
|
private getStoredQueueId;
|
|
111
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueContainerComponent, never>;
|
|
112
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QueueContainerComponent, "lib-queue-container", never, { "
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueueContainerComponent, "lib-queue-container", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "selectedRowsInput": { "alias": "selectedRowsInput"; "required": false; }; }, { "assignmentComplete": "assignmentComplete"; "userAssigned": "userAssigned"; "selectedRowsData": "selectedRowsData"; "assignmentDataReady": "assignmentDataReady"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; }, never, ["[user-dropdown]"], false, never>;
|
|
113
112
|
}
|
|
@@ -8,7 +8,6 @@ export declare class QueueRecordTableComponent {
|
|
|
8
8
|
metaData: MetaDataModel;
|
|
9
9
|
loading: boolean;
|
|
10
10
|
selectedRows: any[];
|
|
11
|
-
tableHeight: string;
|
|
12
11
|
selectionChange: EventEmitter<any[]>;
|
|
13
12
|
selectedRowsData: EventEmitter<any[]>;
|
|
14
13
|
assignmentDataReady: EventEmitter<{
|
|
@@ -27,5 +26,5 @@ export declare class QueueRecordTableComponent {
|
|
|
27
26
|
get hasData(): boolean;
|
|
28
27
|
get selectedCount(): number;
|
|
29
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueRecordTableComponent, 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; };
|
|
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>;
|
|
31
30
|
}
|
|
@@ -106,13 +106,6 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
|
|
|
106
106
|
* @returns {string} A space-separated list of CSS classes for the cell.
|
|
107
107
|
*/
|
|
108
108
|
getRowClass(col: any, rowData: any): string;
|
|
109
|
-
/**
|
|
110
|
-
* Evaluates ngClass expression for dynamic styling
|
|
111
|
-
* @param {string} expression - The ngClass expression to evaluate
|
|
112
|
-
* @param {any} rowData - The row data to use in evaluation
|
|
113
|
-
* @returns {string} The evaluated CSS classes
|
|
114
|
-
*/
|
|
115
|
-
evaluateNgClass(expression: string, rowData: any): string;
|
|
116
109
|
/**
|
|
117
110
|
* Handles pagination and data reload on paginator event.
|
|
118
111
|
* @param {object} event - The PrimeNG paginator event.
|
|
@@ -148,6 +141,20 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
|
|
|
148
141
|
* Utility: Check if value is array (for template use)
|
|
149
142
|
*/
|
|
150
143
|
isArray(val: any): boolean;
|
|
144
|
+
/**
|
|
145
|
+
* Evaluates ngClass expression for dynamic styling
|
|
146
|
+
* @param {string} expression - The ngClass expression to evaluate
|
|
147
|
+
* @param {any} rowData - The row data to use in evaluation
|
|
148
|
+
* @returns {string} The evaluated CSS classes
|
|
149
|
+
*/
|
|
150
|
+
evaluateNgClass(expression: string, rowData: any): string;
|
|
151
|
+
/**
|
|
152
|
+
* Evaluates ngStyle expression for dynamic inline styles
|
|
153
|
+
* @param {string} expression - The ngStyle expression to evaluate
|
|
154
|
+
* @param {any} rowData - The row data to use in evaluation
|
|
155
|
+
* @returns {any} The evaluated style object
|
|
156
|
+
*/
|
|
157
|
+
evaluateNgStyle(expression: string, rowData: any): any;
|
|
151
158
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableSecondaryComponent, never>;
|
|
152
159
|
static ɵcmp: i0.ɵɵComponentDeclaration<TableSecondaryComponent, "lib-table-secondary", never, { "table": { "alias": "table"; "required": false; }; "metaData": { "alias": "metaData"; "required": false; }; "title": { "alias": "title"; "required": false; }; "builder": { "alias": "builder"; "required": false; }; "showStatus": { "alias": "showStatus"; "required": false; }; "showActions": { "alias": "showActions"; "required": false; }; "showSearchBar": { "alias": "showSearchBar"; "required": false; }; "showNewRecordButton": { "alias": "showNewRecordButton"; "required": false; }; "showRefreshButton": { "alias": "showRefreshButton"; "required": false; }; "pathName": { "alias": "pathName"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "usePagination": { "alias": "usePagination"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "rowSelection": { "alias": "rowSelection"; "required": false; }; "enableSelection": { "alias": "enableSelection"; "required": false; }; "noRecordsMessage": { "alias": "noRecordsMessage"; "required": false; }; "searchTerm": { "alias": "searchTerm"; "required": false; }; "filterQuery": { "alias": "filterQuery"; "required": false; }; }, { "selectionChange": "selectionChange"; "rowSelectionChange": "rowSelectionChange"; "sortChanged": "sortChanged"; "onDeleteRow": "onDeleteRow"; "onPage": "onPage"; }, never, never, true, never>;
|
|
153
160
|
}
|