@rangertechnologies/ngnxt 2.0.27

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.
Files changed (45) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +33 -0
  3. package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +73 -0
  4. package/esm2022/lib/components/custom-input/custom-input.component.mjs +46 -0
  5. package/esm2022/lib/components/custom-table/custom-table.component.mjs +51 -0
  6. package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +34 -0
  7. package/esm2022/lib/components/dropdown-with-flag/dropdown-with-flag.component.mjs +34 -0
  8. package/esm2022/lib/components/pick-location/pick-location.component.mjs +134 -0
  9. package/esm2022/lib/components/search-box/search-box.component.mjs +84 -0
  10. package/esm2022/lib/interfaces/apimeta.mjs +2 -0
  11. package/esm2022/lib/nxt-app.component.mjs +22 -0
  12. package/esm2022/lib/nxt-app.module.mjs +262 -0
  13. package/esm2022/lib/nxt-app.service.mjs +14 -0
  14. package/esm2022/lib/pages/booklet/booklet.component.mjs +79 -0
  15. package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +2131 -0
  16. package/esm2022/lib/sample.mjs +433 -0
  17. package/esm2022/lib/services/data.service.mjs +40 -0
  18. package/esm2022/lib/services/salesforce.service.mjs +46 -0
  19. package/esm2022/lib/wrapper.mjs +165 -0
  20. package/esm2022/public-api.mjs +10 -0
  21. package/esm2022/rangertechnologies-ngnxt.mjs +5 -0
  22. package/fesm2022/rangertechnologies-ngnxt.mjs +3610 -0
  23. package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -0
  24. package/index.d.ts +5 -0
  25. package/lib/components/custom-date-picker/custom-date-picker.component.d.ts +14 -0
  26. package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +23 -0
  27. package/lib/components/custom-input/custom-input.component.d.ts +18 -0
  28. package/lib/components/custom-table/custom-table.component.d.ts +23 -0
  29. package/lib/components/custom-text-area/custom-text-area.component.d.ts +14 -0
  30. package/lib/components/dropdown-with-flag/dropdown-with-flag.component.d.ts +14 -0
  31. package/lib/components/pick-location/pick-location.component.d.ts +38 -0
  32. package/lib/components/search-box/search-box.component.d.ts +34 -0
  33. package/lib/interfaces/apimeta.d.ts +5 -0
  34. package/lib/nxt-app.component.d.ts +8 -0
  35. package/lib/nxt-app.module.d.ts +26 -0
  36. package/lib/nxt-app.service.d.ts +6 -0
  37. package/lib/pages/booklet/booklet.component.d.ts +29 -0
  38. package/lib/pages/questionnaire/questionnaire.component.d.ts +207 -0
  39. package/lib/sample.d.ts +10 -0
  40. package/lib/services/data.service.d.ts +9 -0
  41. package/lib/services/salesforce.service.d.ts +11 -0
  42. package/lib/wrapper.d.ts +164 -0
  43. package/package.json +43 -0
  44. package/public-api.d.ts +6 -0
  45. package/rangertechnologies-ngnxt-2.0.27.tgz +0 -0
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@rangertechnologies/ngnxt" />
5
+ export * from './public-api';
@@ -0,0 +1,14 @@
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomDatePickerComponent implements OnInit {
4
+ date: string;
5
+ minDate: any;
6
+ maxDate: any;
7
+ dateChange: EventEmitter<any>;
8
+ dateSelected: any;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ onDateChange(event: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomDatePickerComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomDatePickerComponent, "app-custom-date-picker", never, { "date": "date"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "dateChange": "dateChange"; }, never, never, false>;
14
+ }
@@ -0,0 +1,23 @@
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { HttpClient } from '@angular/common/http';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CustomDropdownComponent implements OnInit {
6
+ private http;
7
+ options: string[];
8
+ placeholder: string;
9
+ apiMeta: string;
10
+ selectedValue: string;
11
+ progressBar: boolean;
12
+ id: string;
13
+ errorMessage: string;
14
+ error: any;
15
+ fromShengel: boolean;
16
+ valueChange: EventEmitter<string>;
17
+ constructor(http: HttpClient);
18
+ ngOnInit(): void;
19
+ apiResponse(endpoint: string): Observable<any>;
20
+ selectChange(event: any): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomDropdownComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomDropdownComponent, "app-custom-dropdown", never, { "options": "options"; "placeholder": "placeholder"; "apiMeta": "apiMeta"; "selectedValue": "selectedValue"; "progressBar": "progressBar"; "id": "id"; "errorMessage": "errorMessage"; "error": "error"; "fromShengel": "fromShengel"; }, { "valueChange": "valueChange"; }, never, never, false>;
23
+ }
@@ -0,0 +1,18 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomInputComponent implements OnInit {
4
+ value: any | any[];
5
+ disabled: boolean;
6
+ placeholder: string;
7
+ error: any;
8
+ fromShengel: boolean;
9
+ ngClassValue: any;
10
+ idValue: any;
11
+ focusEvent: any;
12
+ inputValue: EventEmitter<any>;
13
+ constructor();
14
+ ngOnInit(): void;
15
+ onInputChange(input: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomInputComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomInputComponent, "app-custom-input", never, { "value": "value"; "disabled": "disabled"; "placeholder": "placeholder"; "error": "error"; "fromShengel": "fromShengel"; "ngClassValue": "ngClassValue"; "idValue": "idValue"; "focusEvent": "focusEvent"; }, { "inputValue": "inputValue"; }, never, never, false>;
18
+ }
@@ -0,0 +1,23 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomTableComponent implements OnInit {
4
+ tableHeader: string;
5
+ tableData: tableItem[];
6
+ tableDataChange: EventEmitter<any[]>;
7
+ tableIndex: number;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ addRow(): void;
11
+ updateRadio(item: any, value: string): void;
12
+ updateLabel(rowIndex: number, label: string): void;
13
+ emitTableDataValue(updatedTableData: any[]): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomTableComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomTableComponent, "app-custom-table", never, { "tableHeader": "tableHeader"; "tableData": "tableData"; "tableIndex": "tableIndex"; }, { "tableDataChange": "tableDataChange"; }, never, never, false>;
16
+ }
17
+ export interface tableItem {
18
+ label: string;
19
+ imageSrc: string;
20
+ altText: string;
21
+ name: string;
22
+ value: string;
23
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomTextAreaComponent implements OnInit {
4
+ value: any | any[];
5
+ placeholder: string;
6
+ rows: Number;
7
+ error: any;
8
+ textareaValueChange: EventEmitter<string>;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ onTextareaChange(event: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomTextAreaComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomTextAreaComponent, "app-custom-text-area", never, { "value": "value"; "placeholder": "placeholder"; "rows": "rows"; "error": "error"; }, { "textareaValueChange": "textareaValueChange"; }, never, never, false>;
14
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DropdownWithFlagComponent implements OnInit {
4
+ certified: boolean;
5
+ JobPerformerCertificates: any[];
6
+ flagDropDownChange: EventEmitter<any>;
7
+ selectedValue: string;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ ngOnChanges(): void;
11
+ onJobPerformerCertified(event: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownWithFlagComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownWithFlagComponent, "app-dropdown-with-flag", never, { "certified": "certified"; "JobPerformerCertificates": "JobPerformerCertificates"; }, { "flagDropDownChange": "flagDropDownChange"; }, never, never, false>;
14
+ }
@@ -0,0 +1,38 @@
1
+ /// <reference types="google.maps" />
2
+ import { ElementRef, EventEmitter, NgZone, OnInit } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PickLocationComponent implements OnInit {
5
+ private ngZone;
6
+ latitude: any;
7
+ longitude: any;
8
+ zoom: number;
9
+ private geoCoder;
10
+ searchElementRef: ElementRef<HTMLInputElement>;
11
+ showModal: boolean;
12
+ address: string;
13
+ locationSelected: EventEmitter<any>;
14
+ navigatorGeolocation: any;
15
+ markerPosition: {
16
+ lat: any;
17
+ lng: any;
18
+ };
19
+ center: {
20
+ lat: any;
21
+ lng: any;
22
+ };
23
+ markerOptions: {
24
+ draggable: boolean;
25
+ animation: google.maps.Animation;
26
+ };
27
+ constructor(ngZone: NgZone);
28
+ ngOnInit(): void;
29
+ initAutocomplete(): void;
30
+ onMarkerDragEnd(event: google.maps.MapMouseEvent): void;
31
+ onMapClick(event: google.maps.MapMouseEvent): void;
32
+ private setCurrentLocation;
33
+ getAddress(latitude: number, longitude: number): void;
34
+ openMap(): void;
35
+ closeModal(): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<PickLocationComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<PickLocationComponent, "app-pick-location", never, { "address": "address"; }, { "locationSelected": "locationSelected"; }, never, never, false>;
38
+ }
@@ -0,0 +1,34 @@
1
+ import { OnInit, ElementRef } from "@angular/core";
2
+ import { DataService } from '../../services/data.service';
3
+ import { SalesforceService } from "../../services/salesforce.service";
4
+ import { ActivatedRoute } from "@angular/router";
5
+ import { HttpClient } from '@angular/common/http';
6
+ import { Observable } from 'rxjs';
7
+ import * as i0 from "@angular/core";
8
+ export declare class SearchBoxComponent implements OnInit {
9
+ private sfService;
10
+ private dataService;
11
+ private route;
12
+ private http;
13
+ placeHolderText: string;
14
+ auto: any;
15
+ filterName: string;
16
+ finalResults: any[];
17
+ searchKeyWord: string;
18
+ newResult: any;
19
+ showResult: boolean;
20
+ noResult: boolean;
21
+ showSuggestion: boolean;
22
+ private el;
23
+ private serv;
24
+ private tkn;
25
+ constructor(sfService: SalesforceService, dataService: DataService, route: ActivatedRoute, http: HttpClient, el: ElementRef);
26
+ ngOnInit(): void;
27
+ clearList(): void;
28
+ getSourceDataLocal(event: any): void;
29
+ apiResponse(keyword: string): Observable<any>;
30
+ getSourceData: (keyword: string) => void;
31
+ clickItem(event: any): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBoxComponent, "lib-search-box", never, { "placeHolderText": "placeHolderText"; }, {}, never, never, false>;
34
+ }
@@ -0,0 +1,5 @@
1
+ export interface APIMeta {
2
+ endpoint: string;
3
+ variable: string;
4
+ field: string;
5
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class NxtAppComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NxtAppComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<NxtAppComponent, "lib-nxt-app", never, {}, {}, never, never, false>;
8
+ }
@@ -0,0 +1,26 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./nxt-app.component";
3
+ import * as i2 from "./pages/questionnaire/questionnaire.component";
4
+ import * as i3 from "./components/pick-location/pick-location.component";
5
+ import * as i4 from "./components/custom-input/custom-input.component";
6
+ import * as i5 from "./components/custom-text-area/custom-text-area.component";
7
+ import * as i6 from "./components/custom-table/custom-table.component";
8
+ import * as i7 from "./components/custom-date-picker/custom-date-picker.component";
9
+ import * as i8 from "./components/dropdown-with-flag/dropdown-with-flag.component";
10
+ import * as i9 from "./components/custom-dropdown/custom-dropdown.component";
11
+ import * as i10 from "./pages/booklet/booklet.component";
12
+ import * as i11 from "./components/search-box/search-box.component";
13
+ import * as i12 from "@angular/common";
14
+ import * as i13 from "@angular/forms";
15
+ import * as i14 from "mydatepicker";
16
+ import * as i15 from "ng-pick-datetime";
17
+ import * as i16 from "@angular/common/http";
18
+ import * as i17 from "@ng-select/ng-select";
19
+ import * as i18 from "@angular/google-maps";
20
+ import * as i19 from "ngx-spinner";
21
+ import * as i20 from "ng-circle-progress";
22
+ export declare class NxtAppModule {
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<NxtAppModule, never>;
24
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NxtAppModule, [typeof i1.NxtAppComponent, typeof i2.QuestionnaireComponent, typeof i3.PickLocationComponent, typeof i4.CustomInputComponent, typeof i5.CustomTextAreaComponent, typeof i6.CustomTableComponent, typeof i7.CustomDatePickerComponent, typeof i8.DropdownWithFlagComponent, typeof i9.CustomDropdownComponent, typeof i10.BookletComponent, typeof i11.SearchBoxComponent], [typeof i12.CommonModule, typeof i13.FormsModule, typeof i14.MyDatePickerModule, typeof i15.OwlDateTimeModule, typeof i15.OwlNativeDateTimeModule, typeof i16.HttpClientModule, typeof i17.NgSelectModule, typeof i18.GoogleMapsModule, typeof i13.ReactiveFormsModule, typeof i19.NgxSpinnerModule, typeof i20.NgCircleProgressModule], [typeof i1.NxtAppComponent, typeof i2.QuestionnaireComponent, typeof i10.BookletComponent]>;
25
+ static ɵinj: i0.ɵɵInjectorDeclaration<NxtAppModule>;
26
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class NxtAppService {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<NxtAppService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<NxtAppService>;
6
+ }
@@ -0,0 +1,29 @@
1
+ import { OnInit, EventEmitter, ElementRef } from "@angular/core";
2
+ import { SalesforceService } from "../../services/salesforce.service";
3
+ import { DataService } from '../../services/data.service';
4
+ import { ActivatedRoute } from "@angular/router";
5
+ import { DomSanitizer } from "@angular/platform-browser";
6
+ import * as i0 from "@angular/core";
7
+ export declare class BookletComponent implements OnInit {
8
+ private sfService;
9
+ private dataService;
10
+ private route;
11
+ private sanitizer;
12
+ bookletId: string;
13
+ serv: string;
14
+ tkn: string;
15
+ handleEvent: EventEmitter<any>;
16
+ handlePage: EventEmitter<any>;
17
+ booklet: any[];
18
+ spinnerName: string;
19
+ spinnerType: string;
20
+ constructor(sfService: SalesforceService, dataService: DataService, route: ActivatedRoute, sanitizer: DomSanitizer, el: ElementRef);
21
+ ngOnInit(): void;
22
+ ngOnChanges(): void;
23
+ processBooklet(): void;
24
+ private readBooklet;
25
+ private successReadBooklet;
26
+ private failureReadBooklet;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<BookletComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<BookletComponent, "lib-booklet", never, { "bookletId": "bookletId"; "serv": "serv"; "tkn": "tkn"; }, { "handleEvent": "handleEvent"; "handlePage": "handlePage"; }, never, never, false>;
29
+ }
@@ -0,0 +1,207 @@
1
+ import { OnInit, EventEmitter, ElementRef } from "@angular/core";
2
+ import { ActivatedRoute, Params } from "@angular/router";
3
+ import { SalesforceService } from "../../services/salesforce.service";
4
+ import { IMyDateModel, IMyDpOptions } from "mydatepicker";
5
+ import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
6
+ import { UntypedFormBuilder } from "@angular/forms";
7
+ import { NgxSpinnerService } from "ngx-spinner";
8
+ import { DeviceDetectorService } from 'ngx-device-detector';
9
+ import { DataService } from '../../services/data.service';
10
+ import { Question, QuestionBook, AnswerBook, AnswerWrapper, OptionValue, LocalQuestion } from "../../wrapper";
11
+ import * as i0 from "@angular/core";
12
+ export declare class QuestionnaireComponent implements OnInit {
13
+ private sfService;
14
+ private dataService;
15
+ private route;
16
+ private sanitizer;
17
+ private spinner;
18
+ private _formBuilder;
19
+ private deviceService;
20
+ qbId: string;
21
+ insuranceStartDate: string;
22
+ serv: string;
23
+ tkn: string;
24
+ handleEvent: EventEmitter<any>;
25
+ handlePage: EventEmitter<any>;
26
+ params: Params;
27
+ deviceInfo: any;
28
+ abItem: AnswerBook;
29
+ qbItem: QuestionBook;
30
+ questionItem: Question;
31
+ answerWrap: AnswerWrapper;
32
+ radioFlag: boolean;
33
+ dataFlag: boolean;
34
+ dropdownFlag: boolean;
35
+ checkboxFlag: boolean;
36
+ textFlag: boolean;
37
+ taFlag: boolean;
38
+ dtFlag: boolean;
39
+ timeFlag: boolean;
40
+ dateFlag: boolean;
41
+ fileFlag: boolean;
42
+ emailFlag: boolean;
43
+ numberFlag: boolean;
44
+ alphanumericFlag: boolean;
45
+ bookFlag: boolean;
46
+ listFlag: boolean;
47
+ backButtonFlag: boolean;
48
+ optionValues: OptionValue[];
49
+ subQuestions: Question[];
50
+ inpValue: string;
51
+ answerMap: Map<any, any>;
52
+ dateMap: Map<any, any>;
53
+ selectedhourMap: Map<any, any>;
54
+ selectedminuteMap: Map<any, any>;
55
+ attachmentsMap: Map<any, any>;
56
+ sqOptions: Map<any, any>;
57
+ subAnsMap: Map<any, any>;
58
+ localSubQuestions: LocalQuestion[];
59
+ questionStack: any[];
60
+ questionName: any[];
61
+ attachments: any[];
62
+ attachmentIdList: any[];
63
+ attachmentId: string;
64
+ attachment: any;
65
+ allowedFileExtension: string[];
66
+ fileExceededLimit: boolean;
67
+ fileTypeIncorrect: boolean;
68
+ back: boolean;
69
+ backicon: boolean;
70
+ check: boolean;
71
+ pop: boolean;
72
+ localDate: string;
73
+ currentName: string;
74
+ pathquestion: number;
75
+ percent: number;
76
+ count: number;
77
+ taFocusOut: boolean;
78
+ notValidAccNum: boolean;
79
+ splCCBackClick: boolean;
80
+ summary: any[];
81
+ localSubQMap: Map<any, any>;
82
+ keyIndex: number;
83
+ selDate: any;
84
+ selectDate: string;
85
+ private today;
86
+ private el;
87
+ innerhtml: any;
88
+ possibilities: any;
89
+ innerhtml1: any;
90
+ summaryData: any[];
91
+ tableData1: any[];
92
+ tableData2: any[];
93
+ hours: any[];
94
+ minutes: string[];
95
+ selectedHour: string;
96
+ selectedMinute: string;
97
+ selectedMeridiem: string;
98
+ valueName: string;
99
+ valueName1: string;
100
+ bookFlagAccept: string[];
101
+ recordId: string;
102
+ currentQuestionId: string;
103
+ spinnerType: string;
104
+ spinnerName: string;
105
+ nextValue: string;
106
+ start_date?: any;
107
+ tempoAddress: any[];
108
+ selectedValue: string;
109
+ selectedPostalcode: string;
110
+ selectedProvince: string;
111
+ selectedCity: string;
112
+ selectedArea: string;
113
+ localaddress: any[];
114
+ allAddress: any[];
115
+ PostalCode: string;
116
+ places: any[];
117
+ province: any[];
118
+ progressStyle: string;
119
+ answerCount: number;
120
+ indexCount: number;
121
+ addFlag: boolean;
122
+ myDatePickerOptions: IMyDpOptions;
123
+ individualBookButton: boolean;
124
+ constructor(sfService: SalesforceService, dataService: DataService, route: ActivatedRoute, sanitizer: DomSanitizer, spinner: NgxSpinnerService, _formBuilder: UntypedFormBuilder, deviceService: DeviceDetectorService, el: ElementRef);
125
+ onDateChanged(event: IMyDateModel): void;
126
+ ngOnInit(): void;
127
+ ngOnChanges(): void;
128
+ date_TimeMap(): void;
129
+ day(): void;
130
+ change(): void;
131
+ processQB(): void;
132
+ trimLastDummy(input: string): string;
133
+ getProperTime(def: string, input: string): string;
134
+ handleEditClick(value: string): void;
135
+ handleNextClick(): void;
136
+ AnswerSave(): void;
137
+ next(): void;
138
+ getText(value: any): SafeHtml;
139
+ handleBackClick(): void;
140
+ handleBackClickNew(): void;
141
+ private updateAnswerBook;
142
+ private successupdateAB;
143
+ private failureupdateAB;
144
+ private readQuestionBook;
145
+ private successReadBook;
146
+ private failureReadBook;
147
+ private readAnswerbook;
148
+ private successAnswerBookRead;
149
+ private failureAnswerBookRead;
150
+ private readQuestion;
151
+ private successRead;
152
+ trackId(): void;
153
+ private failureRead;
154
+ private saveAnswer;
155
+ htmlDecode(input: any): string;
156
+ private successSave;
157
+ private failureSave;
158
+ private processQuestion;
159
+ setFlag(typ: any): void;
160
+ resetFlag(typ: any): void;
161
+ setOptions(records: any): void;
162
+ Dropdown(event: any, ques?: any): void;
163
+ setSubQuestions(records: any): void;
164
+ optionChange(selValue: any): void;
165
+ clearError(): void;
166
+ clearLocalSubQuesError(quesId: any): void;
167
+ inputValidate(e: any): boolean;
168
+ CCOnChange(inpValue: string): void;
169
+ isNotValidAccNumber(s: string): boolean;
170
+ clearSQError(quesId: any): void;
171
+ uploadFile(event: any, ques?: any): void;
172
+ private successAttachmentCreate;
173
+ private successAttachmentDelete;
174
+ private failureAttachmentCreate;
175
+ private failureAttachmentDelete;
176
+ handleSubmitClick(): void;
177
+ handleCancelClick(): void;
178
+ private createAttachment;
179
+ deleteAttachment(attachmentId: string): void;
180
+ private deleteSFAttachment;
181
+ getFileName(fileNamewithIdandType: any): any;
182
+ fileUI(): void;
183
+ updateProgress(): void;
184
+ townName(area: any): void;
185
+ getTownLocal(): void;
186
+ clearList(): void;
187
+ setSearchListWidth(): void;
188
+ getCode(): void;
189
+ getPostalcode(value: any): void;
190
+ closeDropdown(): void;
191
+ structLocalSubQuestion(ques: LocalQuestion): void;
192
+ addInputBox(question: LocalQuestion, index: number): void;
193
+ removeAddress(quesUniqueId: string, qName: string): void;
194
+ getLocalSubQuestions(id: String): any;
195
+ Add(question: LocalQuestion): void;
196
+ handleLocationSelected(location: any, ques: any): void;
197
+ selectedInput(input: any, ques: any): void;
198
+ handleTextareaValueChange(value: string): void;
199
+ getData(data: any): void;
200
+ dependentChange(value: any): void;
201
+ displayDate(dateSelected: any, ques: any): void;
202
+ getKey(item: any): any;
203
+ getValue(item: any): any;
204
+ getTableData(ques: any): any[];
205
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuestionnaireComponent, never>;
206
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuestionnaireComponent, "lib-questionnaire", never, { "qbId": "qbId"; "insuranceStartDate": "insuranceStartDate"; "serv": "serv"; "tkn": "tkn"; }, { "handleEvent": "handleEvent"; "handlePage": "handlePage"; }, never, never, false>;
207
+ }
@@ -0,0 +1,10 @@
1
+ import { Question, QuestionBook } from "./wrapper";
2
+ export declare const TESTQB: QuestionBook;
3
+ export declare const TESTQUESTION: Question;
4
+ export declare const DTQUESTION: Question;
5
+ export declare const FILEQUESTION: Question;
6
+ export declare const TAQUESTION: Question;
7
+ export declare const RADIOQUESTION: Question;
8
+ export declare const CHECKQUESTION: Question;
9
+ export declare const GOOGLE_MAP_API_KEY = "AIzaSyA18odJnD-pDsu7EVJ7WiXVM5sVvpjAQxw";
10
+ export declare const BOOKQUESTION: Question;
@@ -0,0 +1,9 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DataService {
4
+ private http;
5
+ constructor(http: HttpClient);
6
+ getAPIData(tkn: string, params: string[], resolve: any, reject: any, config?: any): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<DataService>;
9
+ }
@@ -0,0 +1,11 @@
1
+ import { Router } from '@angular/router';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SalesforceService {
4
+ private _router;
5
+ getSFResource: (path: string) => string;
6
+ getRNXTMethodName: () => string;
7
+ remoteAction(methodName: string, params: string[], resolve: any, reject: any, config?: any): void;
8
+ constructor(_router: Router);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SalesforceService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<SalesforceService>;
11
+ }