cat-qw-lib 2.1.64 → 2.1.65
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 +57 -63
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/queue/queue.module.d.ts +1 -2
- package/lib/widget/components/widget-row-tile/widget-row-tile.component.d.ts +15 -2
- package/package.json +1 -1
- package/lib/shared/components/skeleton/skeleton.component.d.ts +0 -13
|
@@ -18,9 +18,8 @@ import * as i16 from "primeng/paginator";
|
|
|
18
18
|
import * as i17 from "../shared/shared.module";
|
|
19
19
|
import * as i18 from "primeng/tag";
|
|
20
20
|
import * as i19 from "../shared/table-secondary/components/table-secondary.component";
|
|
21
|
-
import * as i20 from "../shared/components/skeleton/skeleton.component";
|
|
22
21
|
export declare class QueueModule {
|
|
23
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueModule, never>;
|
|
24
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<QueueModule, [typeof i1.QueueContainerComponent, typeof i2.QueueSearchComponent, typeof i3.QueueItemComponent, typeof i4.QueueListComponent, typeof i5.QueueRecordTableComponent, typeof i6.QueueFilterDropdownComponent], [typeof i7.CommonModule, typeof i8.QueueRoutingModule, typeof i9.FormsModule, typeof i10.DropdownModule, typeof i11.MultiSelectModule, typeof i12.RippleModule, typeof i13.ButtonModule, typeof i14.RouterModule, typeof i15.BadgeModule, typeof i16.PaginatorModule, typeof i17.SharedModule, typeof i18.TagModule, typeof i19.TableSecondaryComponent
|
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<QueueModule, [typeof i1.QueueContainerComponent, typeof i2.QueueSearchComponent, typeof i3.QueueItemComponent, typeof i4.QueueListComponent, typeof i5.QueueRecordTableComponent, typeof i6.QueueFilterDropdownComponent], [typeof i7.CommonModule, typeof i8.QueueRoutingModule, typeof i9.FormsModule, typeof i10.DropdownModule, typeof i11.MultiSelectModule, typeof i12.RippleModule, typeof i13.ButtonModule, typeof i14.RouterModule, typeof i15.BadgeModule, typeof i16.PaginatorModule, typeof i17.SharedModule, typeof i18.TagModule, typeof i19.TableSecondaryComponent], [typeof i1.QueueContainerComponent]>;
|
|
25
24
|
static ɵinj: i0.ɵɵInjectorDeclaration<QueueModule>;
|
|
26
25
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { WidgetModel } from '../../models/widget.model';
|
|
3
3
|
import { WidgetService } from '../../state/widget.service';
|
|
4
4
|
import { WidgetStore } from '../../state/widget.store';
|
|
5
|
+
import { StyleBuilderService } from '../../../shared/services/style-builder.service';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* WidgetRowTileComponent is a component that displays a row of widgets in a tile format.
|
|
@@ -10,16 +11,28 @@ import * as i0 from "@angular/core";
|
|
|
10
11
|
export declare class WidgetRowTileComponent implements OnInit, OnChanges, OnDestroy {
|
|
11
12
|
private widgetService;
|
|
12
13
|
private widgetStore;
|
|
14
|
+
private styleBulderService;
|
|
15
|
+
private cdr;
|
|
13
16
|
private destroy$;
|
|
14
17
|
widgets: WidgetModel[];
|
|
15
18
|
isLoading: boolean;
|
|
16
19
|
recordId: string;
|
|
17
20
|
widgetName: string;
|
|
18
21
|
onWidgetUpdate: any;
|
|
19
|
-
|
|
22
|
+
widgetCardStyle: {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
};
|
|
25
|
+
widgetCardStyleExpression: {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
};
|
|
28
|
+
widgetCombinedStyle: {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
};
|
|
31
|
+
constructor(widgetService: WidgetService, widgetStore: WidgetStore, styleBulderService: StyleBuilderService, cdr: ChangeDetectorRef);
|
|
20
32
|
ngOnInit(): void;
|
|
21
33
|
ngOnChanges(changes: SimpleChanges): void;
|
|
22
34
|
getWidgetItemList(): void;
|
|
35
|
+
private updateWidgetStyles;
|
|
23
36
|
ngOnDestroy(): void;
|
|
24
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetRowTileComponent, never>;
|
|
25
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetRowTileComponent, "lib-widget-row-tile", never, { "recordId": { "alias": "recordId"; "required": false; }; "widgetName": { "alias": "widgetName"; "required": false; }; "onWidgetUpdate": { "alias": "onWidgetUpdate"; "required": false; }; }, {}, never, never, false, never>;
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SkeletonComponent implements OnInit {
|
|
4
|
-
products: any[];
|
|
5
|
-
count: number;
|
|
6
|
-
columns: any;
|
|
7
|
-
width: string;
|
|
8
|
-
height: string;
|
|
9
|
-
isAllowCard: boolean;
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "lib-skeleton", never, { "count": { "alias": "count"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "isAllowCard": { "alias": "isAllowCard"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
-
}
|