@adlfe/campaign-management-library 2.11.4 → 2.11.6
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/bundles/adlfe-campaign-management-library.umd.js +58 -12
- package/bundles/adlfe-campaign-management-library.umd.js.map +1 -1
- package/bundles/adlfe-campaign-management-library.umd.min.js +2 -2
- package/bundles/adlfe-campaign-management-library.umd.min.js.map +1 -1
- package/esm2015/lib/campaign-management/modules/new-campaign/components/general-information-wa/general-information-wa.component.js +52 -7
- package/esm2015/lib/campaign-management/modules/new-campaign/new-campaign.component.js +6 -3
- package/esm5/lib/campaign-management/modules/new-campaign/components/general-information-wa/general-information-wa.component.js +54 -7
- package/esm5/lib/campaign-management/modules/new-campaign/new-campaign.component.js +6 -3
- package/fesm2015/adlfe-campaign-management-library.js +54 -9
- package/fesm2015/adlfe-campaign-management-library.js.map +1 -1
- package/fesm5/adlfe-campaign-management-library.js +56 -9
- package/fesm5/adlfe-campaign-management-library.js.map +1 -1
- package/lib/campaign-management/modules/new-campaign/components/general-information-wa/general-information-wa.component.d.ts +7 -1
- package/lib/campaign-management/modules/new-campaign/new-campaign.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="googlemaps" />
|
|
2
2
|
import { MapsAPILoader } from '@agm/core';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
4
|
import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core';
|
|
4
5
|
import { FormGroup } from '@angular/forms';
|
|
5
6
|
import { ToastrService } from 'ngx-toastr';
|
|
@@ -18,6 +19,7 @@ export declare class GeneralInformationWAComponent implements OnInit, OnDestroy
|
|
|
18
19
|
private mapsAPILoader;
|
|
19
20
|
private apiAdapterService;
|
|
20
21
|
private toastr;
|
|
22
|
+
private httpClient;
|
|
21
23
|
updateGeneralInformationForm: EventEmitter<FormGroup>;
|
|
22
24
|
form: FormGroup;
|
|
23
25
|
msgTypeWAOption: any[];
|
|
@@ -45,7 +47,9 @@ export declare class GeneralInformationWAComponent implements OnInit, OnDestroy
|
|
|
45
47
|
isReadOnlyMode: boolean;
|
|
46
48
|
set isTouchedForm(status: boolean);
|
|
47
49
|
mapSearchRef: ElementRef;
|
|
48
|
-
|
|
50
|
+
isUtility: boolean;
|
|
51
|
+
isCheckUtility: boolean;
|
|
52
|
+
constructor(ngZone: NgZone, mapsAPILoader: MapsAPILoader, apiAdapterService: ApiAdapterServiceService, toastr: ToastrService, httpClient: HttpClient);
|
|
49
53
|
ngOnInit(): void;
|
|
50
54
|
get getCampaignStorage(): any;
|
|
51
55
|
private initForm;
|
|
@@ -55,6 +59,8 @@ export declare class GeneralInformationWAComponent implements OnInit, OnDestroy
|
|
|
55
59
|
formReset(_isMediaType?: boolean): void;
|
|
56
60
|
private initParam;
|
|
57
61
|
private getAccountOptionService;
|
|
62
|
+
private listenBodyChange;
|
|
63
|
+
private validateText;
|
|
58
64
|
getTemplateOptionService(event?: string, filter?: string, isInfinite?: boolean): void;
|
|
59
65
|
private initParameter;
|
|
60
66
|
get getParamHeader(): FormGroup[];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
1
2
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
3
|
import { FormGroup } from '@angular/forms';
|
|
3
4
|
import { MatDialog } from '@angular/material/dialog';
|
|
@@ -8,6 +9,7 @@ export declare class NewCampaignComponent implements OnInit, OnDestroy {
|
|
|
8
9
|
private dialog;
|
|
9
10
|
private apiAdapterService;
|
|
10
11
|
private toastr;
|
|
12
|
+
private httpClient;
|
|
11
13
|
currentView: EventEmitter<MainArea>;
|
|
12
14
|
campaignID: string;
|
|
13
15
|
currentViews: typeof MainArea;
|
|
@@ -28,7 +30,7 @@ export declare class NewCampaignComponent implements OnInit, OnDestroy {
|
|
|
28
30
|
schedulerData: any;
|
|
29
31
|
private isUploadTargetAudience;
|
|
30
32
|
private subscribers;
|
|
31
|
-
constructor(dialog: MatDialog, apiAdapterService: ApiAdapterServiceService, toastr: ToastrService);
|
|
33
|
+
constructor(dialog: MatDialog, apiAdapterService: ApiAdapterServiceService, toastr: ToastrService, httpClient: HttpClient);
|
|
32
34
|
ngOnInit(): void;
|
|
33
35
|
private initWizard;
|
|
34
36
|
private getCampaignDetailService;
|