@posiwise/smart-crm 0.0.7 → 0.0.8
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/private/components/smart-crm-accounts/smart-crm-accounts.component.mjs +3 -3
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.mjs +5 -4
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.mjs +3 -7
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.mjs +28 -14
- package/fesm2022/posiwise-smart-crm.mjs +34 -19
- package/fesm2022/posiwise-smart-crm.mjs.map +1 -1
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.d.ts +12 -0
- package/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.d.ts +4 -6
- package/package.json +1 -1
|
@@ -10,6 +10,18 @@ export declare class SmartCrmCommunicationsDetailsComponent extends AppBaseCompo
|
|
|
10
10
|
private crmService;
|
|
11
11
|
private commonService;
|
|
12
12
|
subscriptionId: number;
|
|
13
|
+
editorConfig: {
|
|
14
|
+
toolbar: {
|
|
15
|
+
container: any[];
|
|
16
|
+
handlers: {
|
|
17
|
+
image: () => void;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
imageResize: {
|
|
21
|
+
displaySize: boolean;
|
|
22
|
+
};
|
|
23
|
+
noDragDrop: boolean;
|
|
24
|
+
};
|
|
13
25
|
hasAccess: boolean;
|
|
14
26
|
form: UntypedFormGroup;
|
|
15
27
|
user: User;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
2
1
|
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
3
3
|
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
4
|
import { CrmOpportunity } from '../../../../shared/interface/crm-opportunity.interface';
|
|
5
5
|
import { CrmStage } from '../../../../shared/interface/crm-stages.interface';
|
|
@@ -41,24 +41,22 @@ export declare class SmartCrmBoardComponent extends AppBaseComponent implements
|
|
|
41
41
|
};
|
|
42
42
|
masterStages: CrmStage[];
|
|
43
43
|
selectedCategoryId: number;
|
|
44
|
+
private pageSize;
|
|
44
45
|
constructor(crmService: CrmService, injector: Injector);
|
|
45
46
|
ngOnInit(): void;
|
|
46
|
-
/** Function to get all categories */
|
|
47
47
|
private getAllOpportunityCategories;
|
|
48
|
-
/** Function ot get opportunity stages */
|
|
49
48
|
private getStages;
|
|
50
|
-
/** Function to get all opportunities */
|
|
51
49
|
private getAllOpportunities;
|
|
52
50
|
private treefy;
|
|
53
51
|
private flatten;
|
|
54
|
-
/** Function to opportunities group by stages */
|
|
55
52
|
private opportunitiesGroups;
|
|
56
|
-
/** Function to filter opportunities by categories */
|
|
57
53
|
onChangeCategory(event: any): void;
|
|
54
|
+
onColumnScroll(columnIndex: number): void;
|
|
58
55
|
dropItem(event: CdkDragDrop<string[]>): void;
|
|
59
56
|
getConnectedList(): any[];
|
|
60
57
|
dropGroup(event: CdkDragDrop<string[]>): void;
|
|
61
58
|
toggleColumn(event: any, group: any): void;
|
|
59
|
+
hasOpportunities(): boolean;
|
|
62
60
|
ngOnDestroy(): void;
|
|
63
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmBoardComponent, never>;
|
|
64
62
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmBoardComponent, "pw-smart-crm-board", never, {}, {}, never, never, false, never>;
|