@posiwise/smart-crm 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/package.json
CHANGED
|
@@ -233,7 +233,6 @@ declare class SmartCrmCompanyInfoComponent extends AppBaseComponent implements O
|
|
|
233
233
|
private readonly modalService;
|
|
234
234
|
private readonly authService;
|
|
235
235
|
private readonly cdr;
|
|
236
|
-
private readonly logoCacheService;
|
|
237
236
|
private readonly document;
|
|
238
237
|
private page;
|
|
239
238
|
private totalContacts;
|
|
@@ -319,17 +318,18 @@ declare class SmartCrmCompanyInfoComponent extends AppBaseComponent implements O
|
|
|
319
318
|
};
|
|
320
319
|
canViewContactsTab(): boolean;
|
|
321
320
|
lastSeenAtTextClass(value?: string | null): string;
|
|
322
|
-
constructor(injector: Injector, crmService: CrmService, subscriptionService: SubscriptionService, geoService: GeoService, commonService: CommonService, modalService: NgbModal, authService: AuthService, cdr: ChangeDetectorRef,
|
|
321
|
+
constructor(injector: Injector, crmService: CrmService, subscriptionService: SubscriptionService, geoService: GeoService, commonService: CommonService, modalService: NgbModal, authService: AuthService, cdr: ChangeDetectorRef, document: Document);
|
|
323
322
|
ngOnInit(): void;
|
|
324
323
|
onLazyLoad(event: LazyLoadEvent): void;
|
|
325
324
|
/** Function to call account default values */
|
|
326
325
|
private accountDefaultValues;
|
|
327
|
-
handleImageError(event: Event, fallbackPath: any): void;
|
|
328
326
|
/** Function to call account by ID */
|
|
329
327
|
getAccountDetails(): void;
|
|
330
328
|
get f(): {
|
|
331
329
|
[key: string]: _angular_forms.AbstractControl<any, any, any>;
|
|
332
330
|
};
|
|
331
|
+
/** Resolve a dropdown value to its display label for the read-only (view) mode */
|
|
332
|
+
labelFor(list: unknown[], value: unknown, valueKey?: string, labelKey?: string): string;
|
|
333
333
|
updateAccountInfo(): void;
|
|
334
334
|
onScrollTimeline(): void;
|
|
335
335
|
/** Function to save comment */
|
|
@@ -373,7 +373,6 @@ declare class SmartCrmCompanyInfoComponent extends AppBaseComponent implements O
|
|
|
373
373
|
openModal(content: any): void;
|
|
374
374
|
onClose(): void;
|
|
375
375
|
onUploadOutput(output: UploadOutput): void;
|
|
376
|
-
getAccountLogo(url: string): string;
|
|
377
376
|
navigateToAddOpportunities(): void;
|
|
378
377
|
ngOnDestroy(): void;
|
|
379
378
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCompanyInfoComponent, never>;
|
|
@@ -1187,6 +1186,8 @@ declare class SmartCrmContactInfoComponent extends AppBaseComponent implements O
|
|
|
1187
1186
|
get actionFormControls(): {
|
|
1188
1187
|
[key: string]: _angular_forms.AbstractControl<any, any, any>;
|
|
1189
1188
|
};
|
|
1189
|
+
/** Resolve a dropdown value to its display label for the read-only (view) mode */
|
|
1190
|
+
labelFor(list: unknown[], value: unknown, valueKey?: string, labelKey?: string): string;
|
|
1190
1191
|
updateContactInfo(): void;
|
|
1191
1192
|
private getContactComments;
|
|
1192
1193
|
onSave(): void;
|