@rangertechnologies/ngnxt 2.0.37 → 2.0.39

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 (72) hide show
  1. package/README.md +2 -2
  2. package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +33 -33
  3. package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +94 -82
  4. package/esm2022/lib/components/custom-input/custom-input.component.mjs +76 -76
  5. package/esm2022/lib/components/custom-table/custom-table.component.mjs +53 -53
  6. package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +34 -34
  7. package/esm2022/lib/components/dropdown-with-flag/dropdown-with-flag.component.mjs +34 -34
  8. package/esm2022/lib/components/file-upload/file-upload.component.mjs +110 -159
  9. package/esm2022/lib/components/file-view/file-view.component.mjs +42 -0
  10. package/esm2022/lib/components/pick-location/pick-location.component.mjs +136 -136
  11. package/esm2022/lib/components/search-box/search-box.component.mjs +106 -84
  12. package/esm2022/lib/interfaces/actionMeta.mjs +2 -2
  13. package/esm2022/lib/interfaces/apimeta.mjs +2 -2
  14. package/esm2022/lib/interfaces/dependencyMeta.mjs +2 -2
  15. package/esm2022/lib/model/bookletWrapper.mjs +9 -9
  16. package/esm2022/lib/model/changeWrapper.mjs +8 -8
  17. package/esm2022/lib/model/errorWrapper.mjs +6 -6
  18. package/esm2022/lib/model/tableWrapper.mjs +16 -16
  19. package/esm2022/lib/nxt-app.component.mjs +22 -22
  20. package/esm2022/lib/nxt-app.module.mjs +276 -268
  21. package/esm2022/lib/nxt-app.service.mjs +14 -14
  22. package/esm2022/lib/pages/booklet/booklet.component.mjs +171 -159
  23. package/esm2022/lib/pages/questionbook/questionbook.component.mjs +102 -85
  24. package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +2066 -2066
  25. package/esm2022/lib/pages/summary-page/summary-page.component.mjs +70 -0
  26. package/esm2022/lib/sample.mjs +432 -432
  27. package/esm2022/lib/services/change.service.mjs +38 -33
  28. package/esm2022/lib/services/data.service.mjs +40 -40
  29. package/esm2022/lib/services/salesforce.service.mjs +46 -46
  30. package/esm2022/lib/services/shared.service.mjs +86 -0
  31. package/esm2022/lib/services/storage.service.mjs +41 -41
  32. package/esm2022/lib/wrapper.mjs +161 -161
  33. package/esm2022/public-api.mjs +11 -10
  34. package/esm2022/rangertechnologies-ngnxt.mjs +4 -4
  35. package/fesm2022/rangertechnologies-ngnxt.mjs +4105 -3899
  36. package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
  37. package/index.d.ts +5 -5
  38. package/lib/components/custom-date-picker/custom-date-picker.component.d.ts +14 -14
  39. package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +29 -26
  40. package/lib/components/custom-input/custom-input.component.d.ts +26 -26
  41. package/lib/components/custom-table/custom-table.component.d.ts +20 -20
  42. package/lib/components/custom-text-area/custom-text-area.component.d.ts +14 -14
  43. package/lib/components/dropdown-with-flag/dropdown-with-flag.component.d.ts +14 -14
  44. package/lib/components/file-upload/file-upload.component.d.ts +24 -23
  45. package/lib/components/file-view/file-view.component.d.ts +14 -0
  46. package/lib/components/pick-location/pick-location.component.d.ts +35 -35
  47. package/lib/components/search-box/search-box.component.d.ts +40 -34
  48. package/lib/interfaces/actionMeta.d.ts +5 -5
  49. package/lib/interfaces/apimeta.d.ts +5 -5
  50. package/lib/interfaces/dependencyMeta.d.ts +5 -5
  51. package/lib/model/bookletWrapper.d.ts +5 -5
  52. package/lib/model/changeWrapper.d.ts +7 -7
  53. package/lib/model/errorWrapper.d.ts +5 -5
  54. package/lib/model/tableWrapper.d.ts +15 -15
  55. package/lib/nxt-app.component.d.ts +8 -8
  56. package/lib/nxt-app.module.d.ts +30 -28
  57. package/lib/nxt-app.service.d.ts +6 -6
  58. package/lib/pages/booklet/booklet.component.d.ts +45 -43
  59. package/lib/pages/questionbook/questionbook.component.d.ts +27 -26
  60. package/lib/pages/questionnaire/questionnaire.component.d.ts +206 -206
  61. package/lib/pages/summary-page/summary-page.component.d.ts +18 -0
  62. package/lib/sample.d.ts +10 -10
  63. package/lib/services/change.service.d.ts +16 -13
  64. package/lib/services/data.service.d.ts +9 -9
  65. package/lib/services/salesforce.service.d.ts +11 -11
  66. package/lib/services/shared.service.d.ts +11 -0
  67. package/lib/services/storage.service.d.ts +12 -12
  68. package/lib/wrapper.d.ts +161 -161
  69. package/package.json +1 -1
  70. package/public-api.d.ts +7 -6
  71. package/rangertechnologies-ngnxt-2.0.39.tgz +0 -0
  72. package/rangertechnologies-ngnxt-2.0.37.tgz +0 -0
@@ -0,0 +1,18 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ActionMeta } from '../../interfaces/actionMeta';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SummaryPageComponent implements OnInit {
5
+ answerJson: any;
6
+ api: string;
7
+ booklet: any[];
8
+ bookQuestionsMap: any;
9
+ actions: ActionMeta[];
10
+ private sqOptions;
11
+ questions: any[];
12
+ filteredQuestion: any[];
13
+ constructor();
14
+ ngOnInit(): void;
15
+ processSummary(data: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SummaryPageComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SummaryPageComponent, "lib-summary-page", never, { "answerJson": "answerJson"; "api": "api"; }, {}, never, never, false>;
18
+ }
package/lib/sample.d.ts CHANGED
@@ -1,10 +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;
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;
@@ -1,13 +1,16 @@
1
- import { ChangeWrapper } from '../model/changeWrapper';
2
- import * as i0 from "@angular/core";
3
- export declare class ChangeService {
4
- constructor();
5
- private changeAnnouncedSource;
6
- private changeConfirmedSource;
7
- changeAnnounced$: import("rxjs").Observable<ChangeWrapper>;
8
- changeConfirmed$: import("rxjs").Observable<string>;
9
- announceChange(changeValue: ChangeWrapper): void;
10
- confirmChange(childQuestion: string): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<ChangeService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<ChangeService>;
13
- }
1
+ import { ChangeWrapper } from '../model/changeWrapper';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChangeService {
4
+ constructor();
5
+ private changeAnnouncedSource;
6
+ private changeConfirmedSource;
7
+ private validationSource;
8
+ changeAnnounced$: import("rxjs").Observable<ChangeWrapper>;
9
+ changeConfirmed$: import("rxjs").Observable<string>;
10
+ submitValidate$: import("rxjs").Observable<string>;
11
+ announceChange(changeValue: ChangeWrapper): void;
12
+ confirmChange(childQuestion: string): void;
13
+ submitChange(value: string): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChangeService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChangeService>;
16
+ }
@@ -1,9 +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
- }
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
+ }
@@ -1,11 +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
- }
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
+ }
@@ -0,0 +1,11 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SharedService {
4
+ private __http;
5
+ constructor(__http: HttpClient);
6
+ processViewFile(fileName: string, api: string): void;
7
+ viewFile(fileName: string, api: string): import("rxjs").Observable<Object>;
8
+ docIcon(ext: any): "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PDF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLSX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOCX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-AVI.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOC.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-GIF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-JPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MOV.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP3.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP4.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPEG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PNG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PPT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-TXT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLS.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/ic_document.svg";
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<SharedService>;
11
+ }
@@ -1,12 +1,12 @@
1
- import { Question } from '../wrapper';
2
- import { BookletWrapper } from '../model/bookletWrapper';
3
- import * as i0 from "@angular/core";
4
- export declare class StorageService {
5
- nxtBookletAnswer: BookletWrapper;
6
- constructor();
7
- save(qbJson: BookletWrapper): void;
8
- update(questionWithInput: Question): void;
9
- get(): BookletWrapper;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
11
- static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
12
- }
1
+ import { Question } from '../wrapper';
2
+ import { BookletWrapper } from '../model/bookletWrapper';
3
+ import * as i0 from "@angular/core";
4
+ export declare class StorageService {
5
+ nxtBookletAnswer: BookletWrapper;
6
+ constructor();
7
+ save(qbJson: BookletWrapper): void;
8
+ update(questionWithInput: Question): void;
9
+ get(): BookletWrapper;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
12
+ }
package/lib/wrapper.d.ts CHANGED
@@ -1,161 +1,161 @@
1
- import { ErrorWrapper } from "./model/errorWrapper";
2
- export declare class QuestionBook {
3
- Id: number;
4
- Name: string;
5
- Category__c: string;
6
- Next__c: string;
7
- Cancel__c: string;
8
- Back__c: string;
9
- Submit__c: string;
10
- Edit__c: string;
11
- First_Question__c: string;
12
- Title__c: string;
13
- Next_Tracking_ID__c: string;
14
- Back_Tracking_ID__c: string;
15
- Cancel_Tracking_ID__c: string;
16
- Submit_Tracking_ID__c: string;
17
- Total_Questions__c: number;
18
- Summary_Text__c?: string;
19
- Questions__r?: QuestionR;
20
- Progress_Bar__c: boolean;
21
- SubTitle__c: string;
22
- Question_Type__c: string;
23
- Possibilities__c: string;
24
- Summary_Sub_Text__c: string;
25
- isShengel__c?: boolean;
26
- }
27
- export declare class Question {
28
- Id: string;
29
- Name: string;
30
- Reference_Field__c?: string;
31
- Allowed_File_Extensions__c: string;
32
- Question__c: string;
33
- Question_Text__c: string;
34
- Type__c: string;
35
- Next_Question__c?: string;
36
- Is_Optional__c: boolean;
37
- Title__c: string;
38
- SubTitle__c: string;
39
- Is_Title__c: boolean;
40
- X24_Hours__c: boolean;
41
- Error_Message__c: string;
42
- Is_Date_Backward__c: boolean;
43
- Is_Date_Forward__c: boolean;
44
- Group__c: string;
45
- Question_No__c?: string;
46
- Question_Options__r?: OptionR;
47
- static X24_Hours__c: boolean;
48
- Size__c: number;
49
- Sub_Text__c: string;
50
- Tracking_ID__c: string;
51
- Time_Text__c: string;
52
- Date_Text__c: string;
53
- Additional_Rich__c?: string;
54
- Questions__r?: QuestionR;
55
- RecordType: {
56
- Name: string;
57
- };
58
- input?: any;
59
- error?: ErrorWrapper;
60
- valueName?: string;
61
- dropDownOnly?: boolean;
62
- isDependentPicklist?: boolean;
63
- tableDataValue?: any[];
64
- tableHeader?: string;
65
- startDate?: any;
66
- minDate?: any;
67
- isShengel__c?: boolean;
68
- }
69
- export declare class LocalQuestion {
70
- Id: string;
71
- Name: string;
72
- Allowed_File_Extensions__c: string;
73
- Question__c: string;
74
- Question_Text__c: string;
75
- Type__c: string;
76
- Title__c: string;
77
- SubTitle__c: string;
78
- Next_Question__c?: string;
79
- Is_Optional__c: boolean;
80
- Is_Title__c: boolean;
81
- X24_Hours__c: boolean;
82
- Error_Message__c: string;
83
- Is_Date_Backward__c: boolean;
84
- Is_Date_Forward__c: boolean;
85
- Time_Text__c: string;
86
- Date_Text__c: string;
87
- Group__c: string;
88
- Question_No__c?: string;
89
- Question_Options__r?: OptionR;
90
- Sub_Text__c: string;
91
- Size__c: number;
92
- Tracking_ID__c: string;
93
- Additional_Rich__c?: string;
94
- Questions__r?: QuestionR;
95
- RecordType: {
96
- Name: string;
97
- };
98
- input?: string;
99
- error?: ErrorWrapper;
100
- static X24_Hours__c: boolean;
101
- uniqueSubQId: string;
102
- }
103
- export declare class QuestionR {
104
- records?: Question[];
105
- }
106
- export declare class OptionR {
107
- records?: Option[];
108
- }
109
- export declare class Option {
110
- Id: string;
111
- Name: string;
112
- Value__c: string;
113
- Tracking_ID__c: string;
114
- Next_Question__c?: string;
115
- }
116
- export declare class OptionValue {
117
- Id: string;
118
- Name: string;
119
- Value__c: string;
120
- Next_Question__c?: string;
121
- checked: boolean;
122
- }
123
- export declare class AnswerBook {
124
- Id: string;
125
- Question_Book__c: string;
126
- Status__c: string;
127
- Answers__r?: AnswerR;
128
- }
129
- export declare class Answer {
130
- Id: string;
131
- Question_Rich_Text__c: string;
132
- Answer_Long__c: string;
133
- Question_Type__c: string;
134
- Question_Ref__c: string;
135
- Question_Group_Text__c: string;
136
- }
137
- export declare class AnswerR {
138
- records?: Answer[];
139
- }
140
- export declare class AnswerWrapper {
141
- ansId?: string;
142
- ansNumber?: number;
143
- abId: string;
144
- quesId: string;
145
- quesValue: string;
146
- qTyp: string;
147
- ansValue: string;
148
- groupText: string;
149
- squesValue: string;
150
- }
151
- export declare class AttachmentWrapper {
152
- parentId: string;
153
- fileName: string;
154
- fileContent: string;
155
- }
156
- export declare class Attachment {
157
- attachmentId: string;
158
- attachmentName: string;
159
- attachmentMetaData: any;
160
- constructor(id: string, name: string, metaData: any);
161
- }
1
+ import { ErrorWrapper } from "./model/errorWrapper";
2
+ export declare class QuestionBook {
3
+ Id: number;
4
+ Name: string;
5
+ Category__c: string;
6
+ Next__c: string;
7
+ Cancel__c: string;
8
+ Back__c: string;
9
+ Submit__c: string;
10
+ Edit__c: string;
11
+ First_Question__c: string;
12
+ Title__c: string;
13
+ Next_Tracking_ID__c: string;
14
+ Back_Tracking_ID__c: string;
15
+ Cancel_Tracking_ID__c: string;
16
+ Submit_Tracking_ID__c: string;
17
+ Total_Questions__c: number;
18
+ Summary_Text__c?: string;
19
+ Questions__r?: QuestionR;
20
+ Progress_Bar__c: boolean;
21
+ SubTitle__c: string;
22
+ Question_Type__c: string;
23
+ Possibilities__c: string;
24
+ Summary_Sub_Text__c: string;
25
+ isShengel__c?: boolean;
26
+ }
27
+ export declare class Question {
28
+ Id: string;
29
+ Name: string;
30
+ Reference_Field__c?: string;
31
+ Allowed_File_Extensions__c: string;
32
+ Question__c: string;
33
+ Question_Text__c: string;
34
+ Type__c: string;
35
+ Next_Question__c?: string;
36
+ Is_Optional__c: boolean;
37
+ Title__c: string;
38
+ SubTitle__c: string;
39
+ Is_Title__c: boolean;
40
+ X24_Hours__c: boolean;
41
+ Error_Message__c: string;
42
+ Is_Date_Backward__c: boolean;
43
+ Is_Date_Forward__c: boolean;
44
+ Group__c: string;
45
+ Question_No__c?: string;
46
+ Question_Options__r?: OptionR;
47
+ static X24_Hours__c: boolean;
48
+ Size__c: number;
49
+ Sub_Text__c: string;
50
+ Tracking_ID__c: string;
51
+ Time_Text__c: string;
52
+ Date_Text__c: string;
53
+ Additional_Rich__c?: string;
54
+ Questions__r?: QuestionR;
55
+ RecordType: {
56
+ Name: string;
57
+ };
58
+ input?: any;
59
+ error?: ErrorWrapper;
60
+ valueName?: string;
61
+ dropDownOnly?: boolean;
62
+ isDependentPicklist?: boolean;
63
+ tableDataValue?: any[];
64
+ tableHeader?: string;
65
+ startDate?: any;
66
+ minDate?: any;
67
+ isShengel__c?: boolean;
68
+ }
69
+ export declare class LocalQuestion {
70
+ Id: string;
71
+ Name: string;
72
+ Allowed_File_Extensions__c: string;
73
+ Question__c: string;
74
+ Question_Text__c: string;
75
+ Type__c: string;
76
+ Title__c: string;
77
+ SubTitle__c: string;
78
+ Next_Question__c?: string;
79
+ Is_Optional__c: boolean;
80
+ Is_Title__c: boolean;
81
+ X24_Hours__c: boolean;
82
+ Error_Message__c: string;
83
+ Is_Date_Backward__c: boolean;
84
+ Is_Date_Forward__c: boolean;
85
+ Time_Text__c: string;
86
+ Date_Text__c: string;
87
+ Group__c: string;
88
+ Question_No__c?: string;
89
+ Question_Options__r?: OptionR;
90
+ Sub_Text__c: string;
91
+ Size__c: number;
92
+ Tracking_ID__c: string;
93
+ Additional_Rich__c?: string;
94
+ Questions__r?: QuestionR;
95
+ RecordType: {
96
+ Name: string;
97
+ };
98
+ input?: string;
99
+ error?: ErrorWrapper;
100
+ static X24_Hours__c: boolean;
101
+ uniqueSubQId: string;
102
+ }
103
+ export declare class QuestionR {
104
+ records?: Question[];
105
+ }
106
+ export declare class OptionR {
107
+ records?: Option[];
108
+ }
109
+ export declare class Option {
110
+ Id: string;
111
+ Name: string;
112
+ Value__c: string;
113
+ Tracking_ID__c: string;
114
+ Next_Question__c?: string;
115
+ }
116
+ export declare class OptionValue {
117
+ Id: string;
118
+ Name: string;
119
+ Value__c: string;
120
+ Next_Question__c?: string;
121
+ checked: boolean;
122
+ }
123
+ export declare class AnswerBook {
124
+ Id: string;
125
+ Question_Book__c: string;
126
+ Status__c: string;
127
+ Answers__r?: AnswerR;
128
+ }
129
+ export declare class Answer {
130
+ Id: string;
131
+ Question_Rich_Text__c: string;
132
+ Answer_Long__c: string;
133
+ Question_Type__c: string;
134
+ Question_Ref__c: string;
135
+ Question_Group_Text__c: string;
136
+ }
137
+ export declare class AnswerR {
138
+ records?: Answer[];
139
+ }
140
+ export declare class AnswerWrapper {
141
+ ansId?: string;
142
+ ansNumber?: number;
143
+ abId: string;
144
+ quesId: string;
145
+ quesValue: string;
146
+ qTyp: string;
147
+ ansValue: string;
148
+ groupText: string;
149
+ squesValue: string;
150
+ }
151
+ export declare class AttachmentWrapper {
152
+ parentId: string;
153
+ fileName: string;
154
+ fileContent: string;
155
+ }
156
+ export declare class Attachment {
157
+ attachmentId: string;
158
+ attachmentName: string;
159
+ attachmentMetaData: any;
160
+ constructor(id: string, name: string, metaData: any);
161
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rangertechnologies/ngnxt",
3
- "version": "2.0.37",
3
+ "version": "2.0.39",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.3",
6
6
  "@angular/core": "^14.2.3"
package/public-api.d.ts CHANGED
@@ -1,6 +1,7 @@
1
- export * from './lib/nxt-app.service';
2
- export * from './lib/nxt-app.component';
3
- export * from './lib/nxt-app.module';
4
- export * from './lib/pages/questionnaire/questionnaire.component';
5
- export * from './lib/pages/booklet/booklet.component';
6
- export * from './lib/services/salesforce.service';
1
+ export * from './lib/nxt-app.service';
2
+ export * from './lib/nxt-app.component';
3
+ export * from './lib/nxt-app.module';
4
+ export * from './lib/pages/questionnaire/questionnaire.component';
5
+ export * from './lib/pages/booklet/booklet.component';
6
+ export * from './lib/pages/summary-page/summary-page.component';
7
+ export * from './lib/services/salesforce.service';
Binary file