cat-qw-lib 1.0.99 → 1.1.1

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.
@@ -12,7 +12,7 @@ export declare class QueueAdminListComponent extends BaseContainerComponent<Queu
12
12
  queueId: any;
13
13
  ngOnInit(): void;
14
14
  getAllQueueList(): void;
15
- handleQueueData(event: any): void;
15
+ handleQueueId(event: any): void;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<QueueAdminListComponent, never>;
17
17
  static ɵcmp: i0.ɵɵComponentDeclaration<QueueAdminListComponent, "lib-queue-admin-list", never, {}, {}, never, never, false, never>;
18
18
  }
@@ -10,7 +10,6 @@ import { MetaDataModel } from '../../../shared/models/meta-data.model';
10
10
  import { QueueRecordTableBuilderService } from '../../services/queue-record-table-builder.service';
11
11
  import { QueueFilterDropdownComponent } from '../queue-filter-dropdown/queue-filter-dropdown.component';
12
12
  import { QueueFilterDropdownService } from '../../services/queue-filter-dropdown.service';
13
- import { BaseQuery } from '../../../shared';
14
13
  import * as i0 from "@angular/core";
15
14
  /**
16
15
  * Container component for managing queue-related data and interactions.
@@ -23,7 +22,6 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
23
22
  private queueBusinessService;
24
23
  private tableBuilder;
25
24
  private queueFilterDropdownService;
26
- private baseQuery;
27
25
  private destroy$;
28
26
  private searchSubject;
29
27
  queueList: QueueModel[];
@@ -43,9 +41,9 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
43
41
  queryString: string;
44
42
  searchText: string;
45
43
  sortBy: string;
46
- sortOrder: number;
47
- resetSort: boolean;
44
+ sortOrder: string;
48
45
  appliedFilters: any;
46
+ tableHeight: string;
49
47
  placeholder: string;
50
48
  filterDropdown: QueueFilterDropdownComponent;
51
49
  set selectedRowsInput(rows: any[]);
@@ -65,9 +63,7 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
65
63
  }>;
66
64
  rowClick: EventEmitter<any>;
67
65
  selectionChange: EventEmitter<any[]>;
68
- isAllRowSelected: EventEmitter<boolean>;
69
- ExcludedApplicationIds: EventEmitter<any[]>;
70
- constructor(queueStore: QueueStore, queueService: QueueService, baseStore: BaseStore<QueueModel>, queueBusinessService: QueueBusinessService, tableBuilder: QueueRecordTableBuilderService, queueFilterDropdownService: QueueFilterDropdownService, baseQuery: BaseQuery<any>);
66
+ constructor(queueStore: QueueStore, queueService: QueueService, baseStore: BaseStore<QueueModel>, queueBusinessService: QueueBusinessService, tableBuilder: QueueRecordTableBuilderService, queueFilterDropdownService: QueueFilterDropdownService);
71
67
  ngOnInit(): void;
72
68
  ngOnDestroy(): void;
73
69
  onQueueSelected(queueId: string): void;
@@ -78,7 +74,6 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
78
74
  onSearchCleared(): void;
79
75
  onPaginationChanged(event: any): void;
80
76
  onFilterApplied(record: any): void;
81
- get hasActiveFilters(): boolean;
82
77
  onTableRowClick(record: any): void;
83
78
  onTableSelectionChange(selection: any[]): void;
84
79
  onAssignmentDataReady(event: {
@@ -93,13 +88,12 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
93
88
  private initializeComponent;
94
89
  private setupSearchDebounce;
95
90
  private getAllQueueList;
96
- private handleQueueData;
97
- private resetSorting;
91
+ private handleQueueId;
98
92
  private filterQueues;
99
93
  private getQueueRecordsData;
100
- private getSortOrderString;
101
94
  private resetPaginationState;
102
95
  private resetPage;
96
+ private resetSearchState;
103
97
  private clearSelection;
104
98
  private clearFilters;
105
99
  onSearchTermChanged(searchTerm: string): void;
@@ -115,5 +109,5 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
115
109
  isAssignButtonEnabled(): boolean;
116
110
  private getStoredQueueId;
117
111
  static ɵfac: i0.ɵɵFactoryDeclaration<QueueContainerComponent, never>;
118
- 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"; "isAllRowSelected": "isAllRowSelected"; "ExcludedApplicationIds": "ExcludedApplicationIds"; }, never, ["[user-dropdown]"], false, never>;
112
+ static ɵcmp: i0.ɵɵComponentDeclaration<QueueContainerComponent, "lib-queue-container", never, { "tableHeight": { "alias": "tableHeight"; "required": false; }; "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>;
119
113
  }
@@ -1,8 +1,6 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { BaseStore } from '../../../shared';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class QueueItemComponent {
5
- private baseStore;
6
4
  filteredQueueData: any[];
7
5
  selectedQueueId: string | null;
8
6
  selectedStatus: string;
@@ -11,7 +9,6 @@ export declare class QueueItemComponent {
11
9
  queueSelected: EventEmitter<string>;
12
10
  statusChanged: EventEmitter<string>;
13
11
  insertQueueRequested: EventEmitter<void>;
14
- constructor(baseStore: BaseStore<any>);
15
12
  onQueueClick(queueId: string): void;
16
13
  onStatusChange(event: any): void;
17
14
  onInsertQueue(): void;
@@ -1,17 +1,14 @@
1
- import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { EventEmitter } from '@angular/core';
2
2
  import { QueueModel } from '../../models/queue.model';
3
3
  import { TableSecondaryModel } from '../../../shared/table-secondary/models/table-secondary.model';
4
4
  import { MetaDataModel } from '../../../shared/models/meta-data.model';
5
5
  import * as i0 from "@angular/core";
6
- export declare class QueueRecordTableComponent implements OnChanges {
7
- sortField: string;
8
- sortOrder: number;
6
+ export declare class QueueRecordTableComponent {
9
7
  table: TableSecondaryModel;
10
8
  metaData: MetaDataModel;
11
9
  loading: boolean;
12
10
  selectedRows: any[];
13
- resetSort: boolean;
14
- selectedQueue: any;
11
+ tableHeight: string;
15
12
  selectionChange: EventEmitter<any[]>;
16
13
  selectedRowsData: EventEmitter<any[]>;
17
14
  assignmentDataReady: EventEmitter<{
@@ -23,7 +20,6 @@ export declare class QueueRecordTableComponent implements OnChanges {
23
20
  filterApplied: EventEmitter<any>;
24
21
  sortApplied: EventEmitter<any>;
25
22
  onSelectionChange(selection: any[]): void;
26
- ngOnChanges(changes: SimpleChanges): void;
27
23
  onRowClick(record: any): void;
28
24
  onPaginationChange(event: any): void;
29
25
  onFilterApplied(record: any): void;
@@ -31,5 +27,5 @@ export declare class QueueRecordTableComponent implements OnChanges {
31
27
  get hasData(): boolean;
32
28
  get selectedCount(): number;
33
29
  static ɵfac: i0.ɵɵFactoryDeclaration<QueueRecordTableComponent, never>;
34
- 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; }; "resetSort": { "alias": "resetSort"; "required": false; }; "selectedQueue": { "alias": "selectedQueue"; "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>;
35
31
  }
@@ -0,0 +1,18 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { AppConfigService } from '../../shared/services/app-config.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ApplicationAssignmentService {
6
+ private http;
7
+ private appConfigService;
8
+ constructor(http: HttpClient, appConfigService: AppConfigService);
9
+ /**
10
+ * Assign an application to a user
11
+ * @param applicationId - The ID of the application to assign
12
+ * @param underWriterId - The ID of the user to assign the application to
13
+ * @returns Observable of the assignment response
14
+ */
15
+ assignApplication(applicationId: string, underWriterId: string): Observable<any>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationAssignmentService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationAssignmentService>;
18
+ }
@@ -9,15 +9,10 @@ export declare class QueueBusinessService {
9
9
  private destroy$;
10
10
  constructor(router: Router, sessionService: SessionService, queueFilterDropdownService: QueueFilterDropdownService);
11
11
  filterQueuesByStatus(queues: any[], status: string): any[];
12
- /**
13
- * The rest follow in their original order.
14
- */
15
- orderQueuesByPriority(queues: any[]): any[];
16
12
  getFirstQueueId(filteredQueues: any[]): string | null;
17
13
  navigateToQueue(queueId: string, showQueueDataForm: boolean): void;
18
14
  navigateToInsertQueue(): void;
19
15
  getUserRole(): boolean;
20
- getAllUserRole(): any;
21
16
  storeSelectedQueue(queueId: string): void;
22
17
  storeApplicationData(record: any): void;
23
18
  createDebouncedSearch(delay?: number): import("rxjs").Observable<string>;
@@ -2,8 +2,6 @@ import { TableBuilder } from '../../shared/services/table.builder';
2
2
  import { TableSecondaryModel } from '../../shared/table-secondary/models/table-secondary.model';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class QueueRecordTableBuilderService extends TableBuilder {
5
- private columnStyles;
6
- private getInitial;
7
5
  buildSecondaryTable(records: any[], headerWidths?: {
8
6
  [key: string]: string;
9
7
  }, editPermission?: string, deletePermission?: string): TableSecondaryModel;
@@ -112,7 +112,6 @@ export declare class SHARED {
112
112
  static selectedApplicationType: string;
113
113
  static APPLICANTS: string;
114
114
  static SECURITY_ADDRESS: string;
115
- static TASKS: string;
116
115
  }
117
116
  export declare const widgetLayoutTypeList: {
118
117
  name: string;
@@ -262,12 +261,7 @@ export declare const actionTableColumnWidthList: {
262
261
  prompt: string;
263
262
  isActive: string;
264
263
  };
265
- export declare const queuePriorityOrder: string[];
266
264
  export declare const QUEUE_RECORD_TABLE_COLUMN_WIDTH_LIST: {
267
265
  brokerName: string;
268
266
  securityAddress: string;
269
- applicants: string;
270
- };
271
- export declare const FIELD_DISPLAY_NAMES: {
272
- [key: string]: string;
273
267
  };
@@ -18,9 +18,6 @@ export declare class BaseQuery<T extends BaseModel> extends QueryEntity<BaseEnti
18
18
  getIsApiValidated(): Observable<any>;
19
19
  getIsShowMessage(): Observable<any>;
20
20
  getSelectedTemplate(): Observable<any>;
21
- getIsAllRowSelected(): Observable<any>;
22
- getExcludedApplicationIds(): Observable<any>;
23
- getSelectedQueueId(): Observable<any>;
24
21
  getRecordChange(): Observable<any>;
25
22
  getOnDocumentAccept(): Observable<any>;
26
23
  getonDailogClose(): Observable<any>;
@@ -7,7 +7,4 @@ export declare class BaseState {
7
7
  isShowMessage?: boolean;
8
8
  selectedTemplate?: string;
9
9
  updatedData?: any;
10
- isAllRowSelected?: boolean;
11
- isExcludedApplicationIds?: [];
12
- selectedQueueId?: string;
13
10
  }
@@ -31,9 +31,6 @@ export declare class BaseStore<T extends BaseModel> extends EntityStore<BaseEnti
31
31
  setAlertMessage(value: any): void;
32
32
  setQueueList(value: any): void;
33
33
  setUpdatedData(value: any): void;
34
- setIsAllRowSelected(data: any): void;
35
- setIsExcludedApplicationIds(data: any): void;
36
- setSelectedQueueId(data: any): void;
37
34
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseStore<any>, never>;
38
35
  static ɵprov: i0.ɵɵInjectableDeclaration<BaseStore<any>>;
39
36
  }
@@ -6,7 +6,6 @@ import { MetaDataModel } from '../../models/meta-data.model';
6
6
  import { BaseQuery } from '../../state/base.query';
7
7
  import { Paginator } from 'primeng/paginator';
8
8
  import { TableSecondaryModel } from '../models/table-secondary.model';
9
- import { QueueBusinessService } from '../../../queue/services/queue-business.service';
10
9
  import * as i0 from "@angular/core";
11
10
  /**
12
11
  * A reusable table component that displays dynamic data using PrimeNG's Table.
@@ -18,7 +17,6 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
18
17
  private activatedRoute;
19
18
  private baseQuery;
20
19
  private baseStore;
21
- private queueBusinessService;
22
20
  table: TableSecondaryModel;
23
21
  metaData: MetaDataModel;
24
22
  title: string;
@@ -28,7 +26,6 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
28
26
  showSearchBar: boolean;
29
27
  showNewRecordButton: boolean;
30
28
  showRefreshButton: boolean;
31
- isSelectAll: boolean;
32
29
  pathName: string;
33
30
  selectionMode: 'single' | 'multiple' | undefined;
34
31
  selection: any;
@@ -53,13 +50,7 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
53
50
  searchTerm: string;
54
51
  filterQuery: string;
55
52
  onPage: EventEmitter<any>;
56
- tableNgClassExpression: string;
57
- excludedApplicationIds: any[];
58
- userRole: Array<string> | null;
59
- isUwLogin: boolean;
60
- allQueueList: any;
61
- selectedQueueName: string;
62
- constructor(_router: Router, service: BaseService<any>, activatedRoute: ActivatedRoute, baseQuery: BaseQuery<any>, baseStore: BaseStore<any>, queueBusinessService: QueueBusinessService);
53
+ constructor(_router: Router, service: BaseService<any>, activatedRoute: ActivatedRoute, baseQuery: BaseQuery<any>, baseStore: BaseStore<any>);
63
54
  /**
64
55
  * Lifecycle hook that is called after data-bound properties are initialized.
65
56
  * Initializes the record count and validates table headers.
@@ -91,7 +82,6 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
91
82
  * @param {number} id - The ID of the record to edit.
92
83
  */
93
84
  handleEditClick(id: number): void;
94
- handleSelectAllRowData(checked: boolean): void;
95
85
  /**
96
86
  * Logs row data intended for editing.
97
87
  * @param {any} rowData - The data of the row to edit.
@@ -127,8 +117,6 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
127
117
  * @param {any} event - The new selection data.
128
118
  */
129
119
  onSelectionChange(event: any): void;
130
- getProgressColor(percent: number): string;
131
- getProgressBackground(percent: number): string;
132
120
  /**
133
121
  * Emits the selected row when a row is clicked.
134
122
  * @param {any} rowData - The data of the clicked row.
@@ -148,25 +136,6 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
148
136
  */
149
137
  isRowSelected(rowData: any): boolean;
150
138
  onSort(event: any): void;
151
- /**
152
- * Utility: Check if value is array (for template use)
153
- */
154
- isArray(val: any): boolean;
155
- shouldShowValue(col: any, rowData: any): boolean;
156
- /**
157
- * Evaluates ngClass expression for dynamic styling
158
- * @param {string} expression - The ngClass expression to evaluate
159
- * @param {any} rowData - The row data to use in evaluation
160
- * @returns {string} The evaluated CSS classes
161
- */
162
- evaluateNgClass(expression: string, rowData: any): string;
163
- /**
164
- * Evaluates ngStyle expression for dynamic inline styles
165
- * @param {string} expression - The ngStyle expression to evaluate
166
- * @param {any} rowData - The row data to use in evaluation
167
- * @returns {any} The evaluated style object
168
- */
169
- evaluateNgStyle(expression: string, rowData: any): any;
170
139
  static ɵfac: i0.ɵɵFactoryDeclaration<TableSecondaryComponent, never>;
171
- 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; }; "sortField": { "alias": "sortField"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "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>;
140
+ 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>;
172
141
  }
@@ -12,8 +12,6 @@ export declare class WidgetItemComponent implements OnInit, OnChanges, OnDestroy
12
12
  widget: WidgetModel;
13
13
  application: any;
14
14
  widgetKey: string;
15
- keyClass: string;
16
- valueClass: string;
17
15
  fieldKeyStyle: {
18
16
  [key: string]: any;
19
17
  };
@@ -60,7 +58,6 @@ export declare class WidgetItemComponent implements OnInit, OnChanges, OnDestroy
60
58
  * @returns true if there's meaningful content, false otherwise
61
59
  */
62
60
  hasHtmlContent(value: string): boolean;
63
- formatDate(value: string): string;
64
61
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetItemComponent, never>;
65
62
  static ɵcmp: i0.ɵɵComponentDeclaration<WidgetItemComponent, "lib-widget-item", never, { "widgetItem": { "alias": "widgetItem"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "application": { "alias": "application"; "required": false; }; }, {}, never, never, false, never>;
66
63
  }
@@ -32,8 +32,6 @@ export interface WidgetStyleConfig {
32
32
  isConfirmed: string;
33
33
  }
34
34
  export interface StyleConfig {
35
- keyClass: string;
36
- valueClass: string;
37
35
  key: string;
38
36
  value: string;
39
37
  keyIconClass: string;
@@ -20,9 +20,8 @@ import * as i18 from "../shared/shared.module";
20
20
  import * as i19 from "primeng/sidebar";
21
21
  import * as i20 from "primeng/timeline";
22
22
  import * as i21 from "primeng/chart";
23
- import * as i22 from "primeng/skeleton";
24
23
  export declare class WidgetModule {
25
24
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetModule, never>;
26
- static ɵmod: i0.ɵɵNgModuleDeclaration<WidgetModule, [typeof i1.WidgetContainerComponent, typeof i2.WidgetMenuComponent, typeof i3.WidgetMainComponent, typeof i4.WidgetHeaderComponent, typeof i5.WidgetFooterComponent, typeof i6.WidgetBodyComponent, typeof i7.WidgetItemComponent, typeof i8.WidgetRowTileComponent, typeof i9.WidgetMenuContainerComponent, typeof i10.WidgetMenuHeaderComponent, typeof i11.WidgetMenuBodyComponent, typeof i12.WidgetMenuItemComponent, typeof i13.CustomWidgetComponent], [typeof i14.CommonModule, typeof i15.ButtonModule, typeof i16.DividerModule, typeof i17.CardModule, typeof i18.SharedModule, typeof i19.SidebarModule, typeof i20.TimelineModule, typeof i21.ChartModule, typeof i22.SkeletonModule], [typeof i1.WidgetContainerComponent, typeof i9.WidgetMenuContainerComponent, typeof i13.CustomWidgetComponent]>;
25
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WidgetModule, [typeof i1.WidgetContainerComponent, typeof i2.WidgetMenuComponent, typeof i3.WidgetMainComponent, typeof i4.WidgetHeaderComponent, typeof i5.WidgetFooterComponent, typeof i6.WidgetBodyComponent, typeof i7.WidgetItemComponent, typeof i8.WidgetRowTileComponent, typeof i9.WidgetMenuContainerComponent, typeof i10.WidgetMenuHeaderComponent, typeof i11.WidgetMenuBodyComponent, typeof i12.WidgetMenuItemComponent, typeof i13.CustomWidgetComponent], [typeof i14.CommonModule, typeof i15.ButtonModule, typeof i16.DividerModule, typeof i17.CardModule, typeof i18.SharedModule, typeof i19.SidebarModule, typeof i20.TimelineModule, typeof i21.ChartModule], [typeof i1.WidgetContainerComponent, typeof i9.WidgetMenuContainerComponent, typeof i13.CustomWidgetComponent]>;
27
26
  static ɵinj: i0.ɵɵInjectorDeclaration<WidgetModule>;
28
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "1.0.99",
3
+ "version": "1.1.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"