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.
@@ -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
  }
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"
@@ -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
- }