cat-qw-lib 0.32.21 → 0.33.0

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.
@@ -92,6 +92,8 @@ export declare class SHARED {
92
92
  static DESC: string;
93
93
  static ACTIVE: string;
94
94
  static IN_ACTIVE: string;
95
+ static SEMICOLON_STRING: string;
96
+ static COLON_STRING: string;
95
97
  }
96
98
  export declare const msgTemplateTypeList: {
97
99
  id: number;
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class StyleBuilderService {
3
+ constructor();
4
+ getStyle(style: string | undefined): {
5
+ [key: string]: string;
6
+ };
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<StyleBuilderService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<StyleBuilderService>;
9
+ }
@@ -1,8 +1,11 @@
1
1
  import { WidgetItem } from '../../models/widget.model';
2
+ import { StyleBuilderService } from '../../../shared/services/style-builder.service';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class WidgetItemComponent {
5
+ private styleBulderService;
4
6
  widgetItem: WidgetItem;
5
- getStyle(style: string | undefined): {
7
+ constructor(styleBulderService: StyleBuilderService);
8
+ getStyle(style?: string): {
6
9
  [key: string]: string;
7
10
  };
8
11
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetItemComponent, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "0.32.21",
3
+ "version": "0.33.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"