cat-qw-lib 0.34.21 → 0.34.23

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.
@@ -1,23 +1,27 @@
1
- import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
1
+ import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { ActivatedRoute } from '@angular/router';
3
3
  import { WidgetService } from '../../state/widget.service';
4
4
  import { WidgetModel } from '../../models/widget.model';
5
5
  import { WidgetQuery } from '../../state/widget.query';
6
6
  import { WidgetStore } from '../../state/widget.store';
7
7
  import * as i0 from "@angular/core";
8
- export declare class WidgetContainerComponent implements OnInit, OnDestroy {
8
+ export declare class WidgetContainerComponent implements OnInit, OnChanges, OnDestroy {
9
9
  private widgetService;
10
10
  activatedRoute: ActivatedRoute;
11
11
  private widgetQuery;
12
12
  private widgetStore;
13
13
  constructor(widgetService: WidgetService, activatedRoute: ActivatedRoute, widgetQuery: WidgetQuery, widgetStore: WidgetStore);
14
+ private destroy$;
14
15
  widgets: WidgetModel[];
15
16
  private subscription;
16
17
  onViewAllDetails: EventEmitter<any>;
18
+ onViewAllProperties: EventEmitter<any>;
17
19
  showEditionalFeild: boolean;
20
+ isSidebarVisible: boolean;
18
21
  applications: any;
19
22
  ngOnInit(): void;
23
+ ngOnChanges(changes: SimpleChanges): void;
20
24
  ngOnDestroy(): void;
21
25
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetContainerComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<WidgetContainerComponent, "lib-widget-container", never, { "showEditionalFeild": { "alias": "showEditionalFeild"; "required": false; }; "applications": { "alias": "applications"; "required": false; }; }, { "onViewAllDetails": "onViewAllDetails"; }, never, never, false, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<WidgetContainerComponent, "lib-widget-container", never, { "showEditionalFeild": { "alias": "showEditionalFeild"; "required": false; }; "isSidebarVisible": { "alias": "isSidebarVisible"; "required": false; }; "applications": { "alias": "applications"; "required": false; }; }, { "onViewAllDetails": "onViewAllDetails"; "onViewAllProperties": "onViewAllProperties"; }, never, never, false, never>;
23
27
  }
@@ -1,14 +1,20 @@
1
- import { WidgetItem } from '../../models/widget.model';
1
+ import { OnDestroy } from '@angular/core';
2
+ import { WidgetItem, WidgetModel } from '../../models/widget.model';
2
3
  import { StyleBuilderService } from '../../../shared/services/style-builder.service';
4
+ import { WidgetStore } from '../../state/widget.store';
3
5
  import * as i0 from "@angular/core";
4
- export declare class WidgetItemComponent {
6
+ export declare class WidgetItemComponent implements OnDestroy {
5
7
  private styleBulderService;
8
+ private widgetStore;
6
9
  widgetItem: WidgetItem;
10
+ widget: WidgetModel;
7
11
  application: any;
8
- constructor(styleBulderService: StyleBuilderService);
12
+ constructor(styleBulderService: StyleBuilderService, widgetStore: WidgetStore);
9
13
  getStyle(style?: string): {
10
14
  [key: string]: string;
11
15
  };
16
+ onHandleSidebar(): void;
17
+ ngOnDestroy(): void;
12
18
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetItemComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<WidgetItemComponent, "lib-widget-item", never, { "widgetItem": { "alias": "widgetItem"; "required": false; }; "application": { "alias": "application"; "required": false; }; }, {}, never, never, false, never>;
19
+ 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>;
14
20
  }
@@ -10,6 +10,7 @@ export declare class WidgetQuery extends BaseQuery<WidgetModel> {
10
10
  private widgetStore;
11
11
  constructor(store: WidgetStore, widgetStore: WidgetStore);
12
12
  getOnViewAllDetails(): import("rxjs").Observable<any>;
13
+ getViewPropertyDetails(): import("rxjs").Observable<any>;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetQuery, never>;
14
15
  static ɵprov: i0.ɵɵInjectableDeclaration<WidgetQuery>;
15
16
  }
@@ -7,7 +7,9 @@ import * as i0 from "@angular/core";
7
7
  */
8
8
  export declare class WidgetStore extends BaseStore<WidgetModel> {
9
9
  onViewAllDetails$: BehaviorSubject<any>;
10
+ onViewPropertyDetails$: BehaviorSubject<any>;
10
11
  constructor();
12
+ setOnViewPropertyDetails(value: any): void;
11
13
  setOnViewAllDetails(value: any): void;
12
14
  resetOnViewAllDetails(): void;
13
15
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetStore, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "0.34.21",
3
+ "version": "0.34.23",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"