cat-qw-lib 1.0.31 → 1.0.32
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 +9 -6
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/widget/components/widget-item/widget-item.component.d.ts +1 -2
- package/lib/widget/models/widget.model.d.ts +0 -2
- package/package.json +1 -1
- package/lib/queue/services/application-assignment.service.d.ts +0 -18
|
@@ -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,6 +58,7 @@ 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;
|
|
61
|
+
formatDate(value: string): string;
|
|
63
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetItemComponent, never>;
|
|
64
63
|
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>;
|
|
65
64
|
}
|
package/package.json
CHANGED
|
@@ -1,18 +0,0 @@
|
|
|
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
|
-
}
|