@posiwise/admin-module 0.0.74 → 0.0.76
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 +21 -5
- package/fesm2022/posiwise-admin-module.mjs +18 -3
- package/fesm2022/posiwise-admin-module.mjs.map +1 -1
- package/lib/components/subscriptions/subscription-product-details/subscription-product-details.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ import { AdminService } from '@posiwise/admin-module-utils';
|
|
|
5
5
|
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
6
6
|
import { NgbDateCustomParserFormatter } from '@posiwise/common-services';
|
|
7
7
|
import { ProductService } from '@posiwise/common-services';
|
|
8
|
+
import { AutoComplete } from 'primeng/autocomplete';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class SubscriptionProductDetailsComponent extends AppBaseComponent implements OnInit {
|
|
10
11
|
private adminService;
|
|
@@ -52,6 +53,7 @@ export declare class SubscriptionProductDetailsComponent extends AppBaseComponen
|
|
|
52
53
|
productsList: any[];
|
|
53
54
|
disableExpiresAt: boolean;
|
|
54
55
|
isSuperAdmin: boolean;
|
|
56
|
+
refProduct: AutoComplete;
|
|
55
57
|
constructor(injector: Injector, adminService: AdminService, productService: ProductService, dateFormatService: NgbDateCustomParserFormatter, datePipe: DatePipe);
|
|
56
58
|
ngOnInit(): void;
|
|
57
59
|
get f(): {
|
|
@@ -64,6 +66,7 @@ export declare class SubscriptionProductDetailsComponent extends AppBaseComponen
|
|
|
64
66
|
private groupProducts;
|
|
65
67
|
onSave(): void;
|
|
66
68
|
private addValidation;
|
|
69
|
+
onProductChange(event: any): void;
|
|
67
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubscriptionProductDetailsComponent, never>;
|
|
68
71
|
static ɵcmp: i0.ɵɵComponentDeclaration<SubscriptionProductDetailsComponent, "pw-subscription-product-details", never, {}, {}, never, never, false, never>;
|
|
69
72
|
}
|