@posiwise/admin-module 0.0.76 → 0.0.78
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/esm2022/lib/components/subscriptions/subscription-product-details/subscription-product-details.component.mjs +7 -7
- package/esm2022/lib/components/subscriptions/subscriptions-list/subscriptions-list.component.mjs +31 -14
- package/fesm2022/posiwise-admin-module.mjs +34 -18
- package/fesm2022/posiwise-admin-module.mjs.map +1 -1
- package/lib/components/subscriptions/subscriptions-list/subscriptions-list.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ import { AdminService } from '@posiwise/admin-module-utils';
|
|
|
6
6
|
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
7
|
import { CommonService } from '@posiwise/common-services';
|
|
8
8
|
import { ProductService } from '@posiwise/common-services';
|
|
9
|
+
import { AutoComplete } from 'primeng/autocomplete';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class SubscriptionsListComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
11
12
|
private adminService;
|
|
@@ -67,6 +68,7 @@ export declare class SubscriptionsListComponent extends AppBaseComponent impleme
|
|
|
67
68
|
buttonBusy: boolean;
|
|
68
69
|
selectedFeatureKeys: any;
|
|
69
70
|
subscriptionInsights: any;
|
|
71
|
+
refProduct: AutoComplete;
|
|
70
72
|
constructor(adminService: AdminService, fb: UntypedFormBuilder, productService: ProductService, commonService: CommonService, injector: Injector, cdr: ChangeDetectorRef);
|
|
71
73
|
ngOnInit(): void;
|
|
72
74
|
getTableState(): void;
|
|
@@ -82,6 +84,8 @@ export declare class SubscriptionsListComponent extends AppBaseComponent impleme
|
|
|
82
84
|
filterByStatus(event: any): void;
|
|
83
85
|
private sortObj;
|
|
84
86
|
searchProduct(event: any): void;
|
|
87
|
+
onProductChange(event: any): void;
|
|
88
|
+
onProductClear(event: any): void;
|
|
85
89
|
private groupProducts;
|
|
86
90
|
getExpiresAtColor(item: any): {
|
|
87
91
|
'text-danger fw-bold': boolean;
|