@posiwise/enterprise-module 0.0.108 → 0.0.110
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/package.json
CHANGED
|
@@ -6,6 +6,8 @@ import { Subscription, User, Plotly } from '@posiwise/common-utilities';
|
|
|
6
6
|
import * as _angular_forms from '@angular/forms';
|
|
7
7
|
import { UntypedFormGroup, UntypedFormArray, UntypedFormBuilder } from '@angular/forms';
|
|
8
8
|
import { AdminService } from '@posiwise/admin-module-utils';
|
|
9
|
+
import * as i23 from '@posiwise/shared-components';
|
|
10
|
+
import { ConfirmDialogService } from '@posiwise/shared-components';
|
|
9
11
|
import * as i25 from 'ngx-uploader';
|
|
10
12
|
import { UploadFile, UploadInput, UploaderOptions, UploadOutput } from 'ngx-uploader';
|
|
11
13
|
import { LazyLoadEvent, MenuItem } from 'primeng/api';
|
|
@@ -23,7 +25,6 @@ import * as i19 from 'primeng/select';
|
|
|
23
25
|
import * as i20 from 'primeng/fileupload';
|
|
24
26
|
import * as i21 from '@posiwise/pipes';
|
|
25
27
|
import * as i22 from '@posiwise/directives';
|
|
26
|
-
import * as i23 from '@posiwise/shared-components';
|
|
27
28
|
import * as i24 from '@angular/router';
|
|
28
29
|
import * as i26 from 'primeng/multiselect';
|
|
29
30
|
import * as i27 from 'ngx-quill';
|
|
@@ -115,6 +116,7 @@ declare class EnterpriseMembersComponent extends AppBaseComponent implements OnI
|
|
|
115
116
|
private readonly authService;
|
|
116
117
|
private readonly adminService;
|
|
117
118
|
private readonly cdr;
|
|
119
|
+
private readonly confirmDialog;
|
|
118
120
|
private readonly token;
|
|
119
121
|
private userSubscription;
|
|
120
122
|
private page;
|
|
@@ -142,7 +144,7 @@ declare class EnterpriseMembersComponent extends AppBaseComponent implements OnI
|
|
|
142
144
|
searchText: string;
|
|
143
145
|
humanizeBytes: (bytes: number) => string;
|
|
144
146
|
buttonBusy: boolean;
|
|
145
|
-
constructor(injector: Injector, formBuilder: UntypedFormBuilder, subscriptionService: SubscriptionService, authService: AuthService, adminService: AdminService, cdr: ChangeDetectorRef);
|
|
147
|
+
constructor(injector: Injector, formBuilder: UntypedFormBuilder, subscriptionService: SubscriptionService, authService: AuthService, adminService: AdminService, cdr: ChangeDetectorRef, confirmDialog: ConfirmDialogService);
|
|
146
148
|
ngOnInit(): void;
|
|
147
149
|
onLazyLoad(event: LazyLoadEvent): void;
|
|
148
150
|
onUploadOutput(output: UploadOutput): void;
|
|
@@ -175,6 +177,7 @@ declare class EnterprisePartnersComponent extends AppBaseComponent implements On
|
|
|
175
177
|
private readonly adminService;
|
|
176
178
|
private readonly productService;
|
|
177
179
|
private readonly cdr;
|
|
180
|
+
private readonly confirmDialog;
|
|
178
181
|
private readonly token;
|
|
179
182
|
private userSubscription;
|
|
180
183
|
private page;
|
|
@@ -212,7 +215,7 @@ declare class EnterprisePartnersComponent extends AppBaseComponent implements On
|
|
|
212
215
|
buttonBusy: boolean;
|
|
213
216
|
unitsText: string;
|
|
214
217
|
currency: string;
|
|
215
|
-
constructor(injector: Injector, formBuilder: UntypedFormBuilder, subscriptionService: SubscriptionService, authService: AuthService, adminService: AdminService, productService: ProductService, cdr: ChangeDetectorRef);
|
|
218
|
+
constructor(injector: Injector, formBuilder: UntypedFormBuilder, subscriptionService: SubscriptionService, authService: AuthService, adminService: AdminService, productService: ProductService, cdr: ChangeDetectorRef, confirmDialog: ConfirmDialogService);
|
|
216
219
|
ngOnInit(): void;
|
|
217
220
|
addItem(): void;
|
|
218
221
|
removeItem(index: any): void;
|